Enum miri::diagnostics::NonHaltingDiagnostic
source · [−]pub enum NonHaltingDiagnostic {
CreatedPointerTag(NonZeroU64, Option<(AllocId, AllocRange)>),
PoppedPointerTag(Item, Option<(ProvenanceExtra, AccessKind)>),
CreatedCallId(CallId),
CreatedAlloc(AllocId, Size, Align, MemoryKind<MiriMemoryKind>),
FreedAlloc(AllocId),
RejectedIsolatedOp(String),
ProgressReport {
block_count: u64,
},
Int2Ptr {
details: bool,
},
WeakMemoryOutdatedLoad,
}
Expand description
Miri specific diagnostics
Variants
CreatedPointerTag(NonZeroU64, Option<(AllocId, AllocRange)>)
PoppedPointerTag(Item, Option<(ProvenanceExtra, AccessKind)>)
This Item
was popped from the borrow stack, either due to an access with the given tag or
a deallocation when the second argument is None
.
CreatedCallId(CallId)
CreatedAlloc(AllocId, Size, Align, MemoryKind<MiriMemoryKind>)
FreedAlloc(AllocId)
RejectedIsolatedOp(String)
ProgressReport
Fields
block_count: u64
Int2Ptr
Fields
details: bool
WeakMemoryOutdatedLoad
Auto Trait Implementations
impl RefUnwindSafe for NonHaltingDiagnostic
impl Send for NonHaltingDiagnostic
impl Sync for NonHaltingDiagnostic
impl Unpin for NonHaltingDiagnostic
impl UnwindSafe for NonHaltingDiagnostic
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
impl<V, T> VZip<V> for Twhere
V: MultiLane<T>,
fn vzip(self) -> V
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 40 bytes
Size for each variant:
CreatedPointerTag
: 39 bytesPoppedPointerTag
: 31 bytesCreatedCallId
: 15 bytesCreatedAlloc
: 23 bytesFreedAlloc
: 15 bytesRejectedIsolatedOp
: 31 bytesProgressReport
: 15 bytesInt2Ptr
: 1 byteWeakMemoryOutdatedLoad
: 0 bytes