Home
last modified time | relevance | path

Searched refs:CompoundBitSet (Results 1 – 10 of 10) sorted by relevance

/wasmtime-44.0.1/cranelift/bitset/src/
H A Dcompound.rs50 pub struct CompoundBitSet<T = usize> { struct
55 impl core::fmt::Debug for CompoundBitSet { argument
62 impl CompoundBitSet { impl
76 CompoundBitSet::default() in new()
80 impl<T: ScalarBitSetStorage> CompoundBitSet<T> { implementation
556 impl<'a, T: ScalarBitSetStorage> IntoIterator for &'a CompoundBitSet<T> { implementation
569 bitset: &'a CompoundBitSet<T>,
582 return Some(CompoundBitSet::<T>::elem(self.word, bit)); in next()
599 let set = CompoundBitSet::<u32>::with_capacity(0); in zero_capacity_no_allocs()
601 let set = CompoundBitSet::new(); in zero_capacity_no_allocs()
H A Dlib.rs18 pub use compound::CompoundBitSet;
/wasmtime-44.0.1/crates/fuzzing/tests/oom/
H A Dbit_set.rs1 use cranelift_bitset::CompoundBitSet;
8 let _bitset = CompoundBitSet::<usize>::try_with_capacity(32)?; in compound_bit_set_try_with_capacity()
16 let mut bitset = CompoundBitSet::new(); in compound_bit_set_try_ensure_capacity()
/wasmtime-44.0.1/cranelift/filetests/filetests/isa/aarch64/
H A Duser_stack_maps.clif49 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4, 8})], sp_to_sized_stack_slots: No…
54 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4})], sp_to_sized_stack_slots: None }
58 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0})], sp_to_sized_stack_slots: None }
138CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Duser_stack_maps.rs93 use cranelift_bitset::CompoundBitSet;
132 by_type: SmallVec<[(ir::Type, CompoundBitSet); 1]>,
148 let mut by_type = SmallVec::<[(ir::Type, CompoundBitSet); 1]>::default(); in new()
161 by_type.push((entry.ty, CompoundBitSet::with_capacity(offset + 1))); in new()
/wasmtime-44.0.1/cranelift/filetests/filetests/isa/s390x/
H A Duser_stack_maps.clif49 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4, 8})], sp_to_sized_stack_slots: No…
56 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4})], sp_to_sized_stack_slots: None }
61 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0})], sp_to_sized_stack_slots: None }
149CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
/wasmtime-44.0.1/cranelift/filetests/filetests/isa/x64/
H A Duser_stack_maps.clif52 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4, 8})], sp_to_sized_stack_slots: No…
57 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4})], sp_to_sized_stack_slots: None }
61 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0})], sp_to_sized_stack_slots: None }
150CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
/wasmtime-44.0.1/cranelift/filetests/filetests/isa/riscv64/
H A Duser_stack_maps.clif53 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4, 8})], sp_to_sized_stack_slots: No…
58 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0, 4})], sp_to_sized_stack_slots: None }
62 ; ; UserStackMap { by_type: [(types::I32, CompoundBitSet {0})], sp_to_sized_stack_slots: None }
163CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
/wasmtime-44.0.1/cranelift/entity/src/
H A Dset.rs7 use cranelift_bitset::CompoundBitSet;
23 bitset: CompoundBitSet,
39 bitset: CompoundBitSet::default(), in default()
66 bitset: CompoundBitSet::with_capacity(capacity), in with_capacity()
74 bitset: CompoundBitSet::try_with_capacity(capacity)?, in try_with_capacity()
/wasmtime-44.0.1/crates/environ/src/compile/
H A Dstack_maps.rs3 use cranelift_bitset::CompoundBitSet;
116 let mut bits = CompoundBitSet::<u32>::default(); in push()