Searched refs:EntityList (Results 1 – 5 of 5) sorted by relevance
| /wasmtime-44.0.1/cranelift/entity/src/ |
| H A D | list.rs | 68 pub struct EntityList<T: EntityRef + ReservedValue> { struct 74 impl<T: EntityRef + ReservedValue> Default for EntityList<T> { implementation 177 fn len_of(&self, list: &EntityList<T>) -> Option<usize> { in len_of() 270 impl<T: EntityRef + ReservedValue> EntityList<T> { implementation 697 let mut list = EntityList::<Inst>::default(); in empty_list() 728 let list = EntityList::<Inst>::from_slice(&[], pool); in from_slice() 739 let mut list = EntityList::<Inst>::default(); in push() 800 let mut list = EntityList::<Inst>::default(); in insert_remove() 836 let mut list = EntityList::<Inst>::default(); in growing() 879 let mut list1 = EntityList::from_slice(&[i1, i2, i3], pool); in deep_clone() [all …]
|
| H A D | lib.rs | 285 pub use self::list::{EntityList, ListPool};
|
| /wasmtime-44.0.1/cranelift/entity/ |
| H A D | README.md | 31 - `EntityList`, for allocating many small arrays (such as instruction operand
|
| /wasmtime-44.0.1/cranelift/frontend/src/ |
| H A D | ssa.rs | 14 use cranelift_codegen::entity::{EntityList, EntitySet, ListPool, SecondaryMap}; 85 undef_variables: EntityList<Variable>, 93 undef_variables: EntityList::new(), in default() 101 predecessors: EntityList<Inst>,
|
| /wasmtime-44.0.1/cranelift/codegen/src/ir/ |
| H A D | instructions.rs | 31 pub type ValueList = entity::EntityList<Value>; 58 values: entity::EntityList<Value>,
|