Struct cranelift_codegen::ir::jumptable::JumpTableData [−][src]
pub struct JumpTableData { /* fields omitted */ }
Contents of a jump table.
All jump tables use 0-based indexing and are densely populated.
Implementations
impl JumpTableData
[src]
impl JumpTableData
[src]pub fn new() -> Self
[src]
Create a new empty jump table.
pub fn with_capacity(capacity: usize) -> Self
[src]
Create a new empty jump table with the specified capacity.
pub fn len(&self) -> usize
[src]
Get the number of table entries.
pub fn push_entry(&mut self, dest: Block)
[src]
Append a table entry.
pub fn branches_to(&self, block: Block) -> bool
[src]
Checks if any of the entries branch to block
.
pub fn as_slice(&self) -> &[Block]
[src]
Access the whole table as a slice.
pub fn as_mut_slice(&mut self) -> &mut [Block]
[src]
Access the whole table as a mutable slice.
pub fn iter(&self) -> Iter<'_, Block>
[src]
Returns an iterator over the table.
pub fn iter_mut(&mut self) -> IterMut<'_, Block>
[src]
Returns an iterator that allows modifying each value.
Trait Implementations
impl Clone for JumpTableData
[src]
impl Clone for JumpTableData
[src]