Enum miri::NonHaltingDiagnostic
source · pub enum NonHaltingDiagnostic {
CreatedPointerTag(NonZero<u64>, Option<String>, Option<(AllocId, AllocRange, ProvenanceExtra)>),
PoppedPointerTag(Item, String),
CreatedCallId(CallId),
CreatedAlloc(AllocId, Size, Align, MemoryKind),
FreedAlloc(AllocId),
AccessedAlloc(AllocId, AccessKind),
RejectedIsolatedOp(String),
ProgressReport {
block_count: u64,
},
Int2Ptr {
details: bool,
},
WeakMemoryOutdatedLoad {
ptr: Pointer<Option<Provenance>>,
},
}
Expand description
Miri specific diagnostics
Variants§
CreatedPointerTag(NonZero<u64>, Option<String>, Option<(AllocId, AllocRange, ProvenanceExtra)>)
(new_tag, new_perm, (alloc_id, base_offset, orig_tag))
new_perm is None
for base tags.
PoppedPointerTag(Item, String)
This Item
was popped from the borrow stack. The string explains the reason.
CreatedCallId(CallId)
CreatedAlloc(AllocId, Size, Align, MemoryKind)
FreedAlloc(AllocId)
AccessedAlloc(AllocId, AccessKind)
RejectedIsolatedOp(String)
ProgressReport
Int2Ptr
WeakMemoryOutdatedLoad
Fields
§
ptr: Pointer<Option<Provenance>>
Auto Trait Implementations§
impl Freeze for NonHaltingDiagnostic
impl RefUnwindSafe for NonHaltingDiagnostic
impl Send for NonHaltingDiagnostic
impl Sync for NonHaltingDiagnostic
impl Unpin for NonHaltingDiagnostic
impl UnwindSafe for NonHaltingDiagnostic
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more