Enum rustc_mir::interpret::StackPopCleanup
[−]
[src]
pub enum StackPopCleanup {
MarkStatic(Mutability),
Goto(BasicBlock),
None,
}🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Variants
MarkStatic(Mutability)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
The stackframe existed to compute the initial value of a static/constant, make sure it
isn't modifyable afterwards in case of constants.
In case of static mut, mark the memory to ensure it's never marked as immutable through
references or deallocated
Goto(BasicBlock)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
A regular stackframe added due to a function call will need to get forwarded to the next block
None🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
The main function and diverging functions have nowhere to return to
Trait Implementations
impl Clone for StackPopCleanup[src]
fn clone(&self) -> StackPopCleanup[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for StackPopCleanup[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Eq for StackPopCleanup[src]
impl PartialEq for StackPopCleanup[src]
fn eq(&self, __arg_0: &StackPopCleanup) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &StackPopCleanup) -> bool[src]
This method tests for !=.