| /wasmtime-44.0.1/cranelift/bitset/src/ |
| H A D | compound.rs | 50 pub struct CompoundBitSet<T = usize> { struct 55 impl core::fmt::Debug for CompoundBitSet { argument 62 impl CompoundBitSet { implementation 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 D | lib.rs | 18 pub use compound::CompoundBitSet;
|
| /wasmtime-44.0.1/crates/fuzzing/tests/oom/ |
| H A D | bit_set.rs | 1 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 D | user_stack_maps.clif | 49 ; ; 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 } 138 …CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
|
| /wasmtime-44.0.1/cranelift/codegen/src/ir/ |
| H A D | user_stack_maps.rs | 93 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 D | user_stack_maps.clif | 49 ; ; 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 } 149 …CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
|
| /wasmtime-44.0.1/cranelift/filetests/filetests/isa/x64/ |
| H A D | user_stack_maps.clif | 52 ; ; 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 } 150 …CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
|
| /wasmtime-44.0.1/cranelift/filetests/filetests/isa/riscv64/ |
| H A D | user_stack_maps.clif | 53 ; ; 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 } 163 …CompoundBitSet {0}), (types::I16, CompoundBitSet {8}), (types::I32, CompoundBitSet {16}), (types::…
|
| /wasmtime-44.0.1/cranelift/entity/src/ |
| H A D | set.rs | 7 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 D | stack_maps.rs | 3 use cranelift_bitset::CompoundBitSet; 116 let mut bits = CompoundBitSet::<u32>::default(); in push()
|