Struct wasmtime_jit::trampoline::ir::MemFlags
source · [−]pub struct MemFlags { /* private fields */ }
Expand description
Flags for memory operations like load/store.
Each of these flags introduce a limited form of undefined behavior. The flags each enable certain optimizations that need to make additional assumptions. Generally, the semantics of a program does not change when a flag is removed, but adding a flag will.
In addition, the flags determine the endianness of the memory access. By default, any memory access uses the native endianness determined by the target ISA. This can be overridden for individual accesses by explicitly specifying little- or big-endian semantics via the flags.
Implementations
sourceimpl MemFlags
impl MemFlags
sourcepub fn trusted() -> MemFlags
pub fn trusted() -> MemFlags
Create a set of flags representing an access from a “trusted” address, meaning it’s known to be aligned and non-trapping.
sourcepub fn set_by_name(&mut self, name: &str) -> bool
pub fn set_by_name(&mut self, name: &str) -> bool
Set a flag bit by name.
Returns true if the flag was found and set, false for an unknown flag name. Will also return false when trying to set inconsistent endianness flags.
sourcepub fn endianness(self, native_endianness: Endianness) -> Endianness
pub fn endianness(self, native_endianness: Endianness) -> Endianness
Return endianness of the memory access. This will return the endianness explicitly specified by the flags if any, and will default to the native endianness otherwise. The native endianness has to be provided by the caller since it is not explicitly encoded in CLIF IR – this allows a front end to create IR without having to know the target endianness.
sourcepub fn set_endianness(&mut self, endianness: Endianness)
pub fn set_endianness(&mut self, endianness: Endianness)
Set endianness of the memory access.
sourcepub fn notrap(self) -> bool
pub fn notrap(self) -> bool
Test if the notrap
flag is set.
Normally, trapping is part of the semantics of a load/store operation. If the platform would cause a trap when accessing the effective address, the Cranelift memory operation is also required to trap.
The notrap
flag tells Cranelift that the memory is accessible, which means that
accesses will not trap. This makes it possible to delete an unused load or a dead store
instruction.
sourcepub fn set_notrap(&mut self)
pub fn set_notrap(&mut self)
Set the notrap
flag.
sourcepub fn aligned(self) -> bool
pub fn aligned(self) -> bool
Test if the aligned
flag is set.
By default, Cranelift memory instructions work with any unaligned effective address. If the
aligned
flag is set, the instruction is permitted to trap or return a wrong result if the
effective address is misaligned.
sourcepub fn set_aligned(&mut self)
pub fn set_aligned(&mut self)
Set the aligned
flag.
sourcepub fn readonly(self) -> bool
pub fn readonly(self) -> bool
Test if the readonly
flag is set.
Loads with this flag have no memory dependencies. This results in undefined behavior if the dereferenced memory is mutated at any time between when the function is called and when it is exited.
sourcepub fn set_readonly(&mut self)
pub fn set_readonly(&mut self)
Set the readonly
flag.
Trait Implementations
impl Copy for MemFlags
impl Eq for MemFlags
impl StructuralEq for MemFlags
impl StructuralPartialEq for MemFlags
Auto Trait Implementations
impl RefUnwindSafe for MemFlags
impl Send for MemFlags
impl Sync for MemFlags
impl Unpin for MemFlags
impl UnwindSafe for MemFlags
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcepub fn equivalent(&self, key: &K) -> bool
pub fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more