Home
last modified time | relevance | path

Searched defs:TrapCode (Results 1 – 20 of 20) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Dtrapcode.rs14 pub struct TrapCode(NonZeroU8); struct
16 impl TrapCode { implementation
24 const fn reserved(byte: u8) -> TrapCode { in reserved()
54 pub const fn user(code: u8) -> Option<TrapCode> { in user()
65 pub const fn unwrap_user(code: u8) -> TrapCode { in unwrap_user()
79 pub const fn from_raw(byte: NonZeroU8) -> TrapCode { in from_raw()
95 impl Display for TrapCode { implementation
109 impl FromStr for TrapCode { implementation
H A Dmemflags.rs355 pub const fn trap_code(self) -> Option<TrapCode> { in trap_code()
H A Dinstructions.rs501 pub fn trap_code(&self) -> Option<TrapCode> { in trap_code()
531 pub fn trap_code_mut(&mut self) -> Option<&mut TrapCode> { in trap_code_mut()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dtrap.rs27 fn trap(&mut self, builder: &mut FunctionBuilder, trap: ir::TrapCode) { in trap() method
55 fn trapz(&mut self, builder: &mut FunctionBuilder, value: ir::Value, trap: ir::TrapCode) { in trapz()
66 fn trapnz(&mut self, builder: &mut FunctionBuilder, value: ir::Value, trap: ir::TrapCode) { in trapnz()
82 trap: ir::TrapCode, in uadd_overflow_trap()
101 trap: ir::TrapCode, in conditionally_trap()
H A Dbounds_checks.rs86 trap: ir::TrapCode, in bounds_check_and_compute_addr()
178 trap: ir::TrapCode, in bounds_check_field_access()
512 trap: ir::TrapCode, in cast_index_to_pointer_ty()
584 trap: ir::TrapCode, in explicit_check_oob_condition_and_compute_addr()
H A Dfunc_environ.rs2132 callee_load_trap_code: Option<ir::TrapCode>, in unchecked_call()
2142 callee_load_trap_code: Option<ir::TrapCode>, in load_code_and_vmctx()
/wasmtime-44.0.1/cranelift/assembler-x64/src/
H A Dapi.rs27 fn add_trap(&mut self, code: TrapCode); in add_trap()
58 fn add_trap(&mut self, _: TrapCode) {} in add_trap()
80 pub struct TrapCode(pub NonZeroU8); struct
82 impl fmt::Display for TrapCode { implementation
H A Dfuzz.rs105 fn add_trap(&mut self, _: TrapCode) {} in add_trap()
H A Dmem.rs32 pub fn trap_code(&self) -> Option<TrapCode> { in trap_code()
/wasmtime-44.0.1/cranelift/codegen/src/legalizer/
H A Dbranch_to_trap.rs43 fn just_trap_block_code(&self, func: &ir::Function, block: ir::Block) -> ir::TrapCode { in just_trap_block_code()
/wasmtime-44.0.1/cranelift/codegen/meta/src/
H A Dpulley.rs38 TrapCode { enumerator
/wasmtime-44.0.1/cranelift/codegen/src/isa/x64/inst/
H A Dexternal.rs459 fn add_trap(&mut self, code: asm::TrapCode) { in add_trap()
488 impl From<asm::TrapCode> for TrapCode { implementation
494 impl From<TrapCode> for asm::TrapCode { implementation
/wasmtime-44.0.1/crates/fuzzing/src/oracles/
H A Ddiff_wasmi.rs43 fn trap_code(&self, err: &Error) -> Option<wasmi::TrapCode> { in trap_code()
/wasmtime-44.0.1/winch/codegen/src/isa/aarch64/
H A Dasm.rs939 pub fn udf(&mut self, code: TrapCode) { in udf()
944 pub fn trapif(&mut self, cc: Cond, code: TrapCode) { in trapif()
952 pub fn trapz(&mut self, rn: Reg, code: TrapCode, size: OperandSize) { in trapz()
H A Dmasm.rs591 trap: TrapCode, in checked_uadd()
/wasmtime-44.0.1/winch/codegen/src/isa/x64/
H A Dasm.rs1647 pub fn trap(&mut self, code: TrapCode) { in trap()
1653 pub fn trapif(&mut self, cc: impl Into<CC>, trap_code: TrapCode) { in trapif()
H A Dmasm.rs518 trap: TrapCode, in checked_uadd()
/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dbuffer.rs1711 pub fn add_trap(&mut self, code: TrapCode) { in add_trap()
/wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/inst/
H A Demit.rs1372 fn put_with_trap(sink: &mut MachBuffer<Inst>, enc: &[u8], trap_code: TrapCode) { in put_with_trap()
/wasmtime-44.0.1/winch/codegen/src/
H A Dmasm.rs1648 trap: TrapCode, in checked_uadd()