Home
last modified time | relevance | path

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

/wasmtime-44.0.1/pulley/src/
H A Ddisas.rs20 start_offset: usize, field
44 start_offset: 0, in new()
81 pub fn start_offset(&mut self, offset: usize) -> &mut Self { in start_offset() method
82 self.start_offset = offset; in start_offset()
98 val.disas(self.start + self.start_offset, &mut self.temp); in disas_op()
109 offset.disas(self.start + self.start_offset, &mut self.temp); in disas_br_table32()
367 write!(&mut self.disas, "{:8x}: ", self.start + self.start_offset).unwrap(); in after_visit()
/wasmtime-44.0.1/cranelift/codegen/src/isa/pulley_shared/inst/
H A Demit.rs123 start_offset: &mut u32, in pulley_emit()
232 *start_offset = sink.cur_offset(); in pulley_emit()
275 *start_offset = sink.cur_offset(); in pulley_emit()
289 *start_offset = sink.cur_offset(); in pulley_emit()
298 *start_offset = sink.cur_offset(); in pulley_emit()
327 sink.use_label_at_offset(*start_offset + 1, *label, LabelUse::PcRel); in pulley_emit()
328 sink.add_uncond_branch(*start_offset, *start_offset + 5, *label); in pulley_emit()
353 let taken_end = *start_offset + len; in pulley_emit()
355 sink.add_cond_branch(*start_offset, taken_end, *taken, &inverted); in pulley_emit()
586 *start_offset = sink.cur_offset(); in pulley_emit()
/wasmtime-44.0.1/crates/unwinder/src/
H A Dexception_table.rs129 start_offset: CodeOffset, in add_func()
133 assert!(start_offset >= self.last_start_offset); in add_func()
134 self.last_start_offset = start_offset; in add_func()
140 let ret_addr = call_site.ret_addr.checked_add(start_offset).unwrap(); in add_func()
152 offset.checked_add(start_offset).unwrap(), in add_func()
160 offset.checked_add(start_offset).unwrap(), in add_func()
/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dabi.rs1249 let start_offset = checked_round_up(unaligned_start_offset, mask) in new() localVariable
1253 end_offset = start_offset in new()
1258 sized_stackslots.push(start_offset); in new()
1271 let start_offset = checked_round_up(unaligned_start_offset, mask) in new() localVariable
1278 end_offset = start_offset in new()
1282 dynamic_stackslots.push(start_offset); in new()
/wasmtime-44.0.1/src/commands/
H A Dobjdump.rs491 disas.start_offset(usize::try_from(addr).unwrap()); in disas_pulley()