Home
last modified time | relevance | path

Searched refs:EntityList (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/cranelift/entity/src/
H A Dlist.rs68 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 Dlib.rs285 pub use self::list::{EntityList, ListPool};
/wasmtime-44.0.1/cranelift/entity/
H A DREADME.md31 - `EntityList`, for allocating many small arrays (such as instruction operand
/wasmtime-44.0.1/cranelift/frontend/src/
H A Dssa.rs14 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 Dinstructions.rs31 pub type ValueList = entity::EntityList<Value>;
58 values: entity::EntityList<Value>,