cranelift_codegen::ir

Type Alias JumpTables

Source
pub type JumpTables = PrimaryMap<JumpTable, JumpTableData>;
Expand description

Map of jump tables.

Aliased Type§

struct JumpTables { /* private fields */ }

Implementations

Source§

impl<K, V> PrimaryMap<K, V>
where K: EntityRef,

Source

pub fn new() -> PrimaryMap<K, V>

Create a new empty map.

Source

pub fn with_capacity(capacity: usize) -> PrimaryMap<K, V>

Create a new empty map with the given capacity.

Source

pub fn is_valid(&self, k: K) -> bool

Check if k is a valid key in the map.

Source

pub fn get(&self, k: K) -> Option<&V>

Get the element at k if it exists.

Source

pub fn get_mut(&mut self, k: K) -> Option<&mut V>

Get the element at k if it exists, mutable version.

Source

pub fn is_empty(&self) -> bool

Is this map completely empty?

Source

pub fn len(&self) -> usize

Get the total number of entity references created.

Source

pub fn keys(&self) -> Keys<K>

Iterate over all the keys in this map.

Source

pub fn values(&self) -> Iter<'_, V>

Iterate over all the values in this map.

Source

pub fn values_mut(&mut self) -> IterMut<'_, V>

Iterate over all the values in this map, mutable edition.

Source

pub fn iter(&self) -> Iter<'_, K, V>

Iterate over all the keys and values in this map.

Source

pub fn iter_mut(&mut self) -> IterMut<'_, K, V>

Iterate over all the keys and values in this map, mutable edition.

Source

pub fn clear(&mut self)

Remove all entries from this map.

Source

pub fn next_key(&self) -> K

Get the key that will be assigned to the next pushed value.

Source

pub fn push(&mut self, v: V) -> K

Append v to the mapping, assigning a new key which is returned.

Source

pub fn last(&self) -> Option<(K, &V)>

Returns the last element that was inserted in the map.

Source

pub fn last_mut(&mut self) -> Option<(K, &mut V)>

Returns the last element that was inserted in the map.

Source

pub fn reserve(&mut self, additional: usize)

Reserves capacity for at least additional more elements to be inserted.

Source

pub fn reserve_exact(&mut self, additional: usize)

Reserves the minimum capacity for exactly additional more elements to be inserted.

Source

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of the PrimaryMap as much as possible.

Source

pub fn into_boxed_slice(self) -> BoxedSlice<K, V>

Consumes this PrimaryMap and produces a BoxedSlice.

Source

pub fn get_many_mut<const N: usize>( &mut self, indices: [K; N], ) -> Result<[&mut V; N], GetManyMutError<K>>

Returns mutable references to many elements at once.

Returns an error if an element does not exist, or if the same key was passed more than once.

Source

pub fn binary_search_values_by_key<'a, B, F>( &'a self, b: &B, f: F, ) -> Result<K, K>
where F: FnMut(&'a V) -> B, B: Ord,

Performs a binary search on the values with a key extraction function.

Assumes that the values are sorted by the key extracted by the function.

If the value is found then Ok(K) is returned, containing the entity key of the matching value.

If there are multiple matches, then any one of the matches could be returned.

If the value is not found then Err(K) is returned, containing the entity key where a matching element could be inserted while maintaining sorted order.

Trait Implementations

Source§

impl<K, V> Clone for PrimaryMap<K, V>
where K: Clone + EntityRef, V: Clone,

Source§

fn clone(&self) -> PrimaryMap<K, V>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<K, V> Debug for PrimaryMap<K, V>
where K: Debug + EntityRef, V: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<K, V> Default for PrimaryMap<K, V>
where K: EntityRef,

Source§

fn default() -> PrimaryMap<K, V>

Returns the “default value” for a type. Read more
Source§

impl<'de, K, V> Deserialize<'de> for PrimaryMap<K, V>
where K: EntityRef, V: Deserialize<'de>,

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<PrimaryMap<K, V>, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<K, V> From<Vec<V>> for PrimaryMap<K, V>
where K: EntityRef,

Source§

fn from(elems: Vec<V>) -> PrimaryMap<K, V>

Converts to this type from the input type.
Source§

impl<K, V> FromIterator<V> for PrimaryMap<K, V>
where K: EntityRef,

Source§

fn from_iter<T>(iter: T) -> PrimaryMap<K, V>
where T: IntoIterator<Item = V>,

Creates a value from an iterator. Read more
Source§

impl<K, V> Hash for PrimaryMap<K, V>
where K: Hash + EntityRef, V: Hash,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<K, V> Index<K> for PrimaryMap<K, V>
where K: EntityRef,

Immutable indexing into an PrimaryMap. The indexed value must be in the map.

Source§

type Output = V

The returned type after indexing.
Source§

fn index(&self, k: K) -> &V

Performs the indexing (container[index]) operation. Read more
Source§

impl<K, V> IndexMut<K> for PrimaryMap<K, V>
where K: EntityRef,

Mutable indexing into an PrimaryMap.

Source§

fn index_mut(&mut self, k: K) -> &mut V

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<K, V> IntoIterator for PrimaryMap<K, V>
where K: EntityRef,

Source§

type Item = (K, V)

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<K, V>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <PrimaryMap<K, V> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<K, V> PartialEq for PrimaryMap<K, V>
where K: PartialEq + EntityRef, V: PartialEq,

Source§

fn eq(&self, other: &PrimaryMap<K, V>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<K, V> Serialize for PrimaryMap<K, V>
where K: EntityRef, V: Serialize,

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<K, V> Eq for PrimaryMap<K, V>
where K: Eq + EntityRef, V: Eq,

Source§

impl<K, V> StructuralPartialEq for PrimaryMap<K, V>
where K: EntityRef,