Struct cranelift_codegen::ir::entities::JumpTable
source · pub struct JumpTable(_);
Expand description
An opaque reference to a jump table.
JumpTable
s are used for indirect branching and are specialized for dense,
0-based jump offsets. If you want a jump table which doesn’t start at 0,
or is not contiguous, consider using a Switch
instead.
JumpTable
are used with br_table
.
JumpTable
s can be created with
create_jump_table
.
While the order is stable, it is arbitrary.
Implementations§
Trait Implementations§
source§impl Ord for JumpTable
impl Ord for JumpTable
source§impl PartialEq<JumpTable> for JumpTable
impl PartialEq<JumpTable> for JumpTable
source§impl PartialOrd<JumpTable> for JumpTable
impl PartialOrd<JumpTable> for JumpTable
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ReservedValue for JumpTable
impl ReservedValue for JumpTable
source§fn reserved_value() -> JumpTable
fn reserved_value() -> JumpTable
Create an instance of the reserved value.
source§fn is_reserved_value(&self) -> bool
fn is_reserved_value(&self) -> bool
Checks whether value is the reserved one.
impl Copy for JumpTable
impl Eq for JumpTable
impl StructuralEq for JumpTable
impl StructuralPartialEq for JumpTable
Auto Trait Implementations§
impl RefUnwindSafe for JumpTable
impl Send for JumpTable
impl Sync for JumpTable
impl Unpin for JumpTable
impl UnwindSafe for JumpTable
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
source§impl<T> CallHasher for Twhere
T: Hash + ?Sized,
impl<T> CallHasher for Twhere T: Hash + ?Sized,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.