| /wasmtime-44.0.1/cranelift/codegen/src/isa/unwind/ |
| H A D | systemv.rs | 18 pub enum RegisterMappingError { enum 26 impl core::error::Error for RegisterMappingError {} implementation 28 impl core::fmt::Display for RegisterMappingError { implementation 31 RegisterMappingError::MissingBank => write!(f, "unable to find bank for register info"), in fmt() 32 RegisterMappingError::UnsupportedArchitecture => write!( in fmt() 36 RegisterMappingError::UnsupportedRegisterBank(bank) => { in fmt() 136 fn map(&self, reg: Reg) -> Result<Register, RegisterMappingError>; in map() argument 245 .map_err(|e| CodegenError::RegisterMappingError(e))?; in create_unwind_info_from_insts() 255 .map_err(|e| CodegenError::RegisterMappingError(e))?; in create_unwind_info_from_insts()
|
| /wasmtime-44.0.1/cranelift/codegen/src/ |
| H A D | result.rs | 39 RegisterMappingError(crate::isa::unwind::systemv::RegisterMappingError), enumerator 58 CodegenError::RegisterMappingError { .. } => None, in source() 72 CodegenError::RegisterMappingError(_0) => write!(f, "Register mapping error"), in fmt()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/inst/unwind/ |
| H A D | systemv.rs | 4 use crate::isa::unwind::systemv::RegisterMappingError; 32 pub fn map_reg(reg: Reg) -> Result<Register, RegisterMappingError> { in map_reg() argument 46 fn map(&self, reg: Reg) -> Result<u16, RegisterMappingError> { in map() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/inst/unwind/ |
| H A D | systemv.rs | 4 use crate::isa::unwind::systemv::RegisterMappingError; 31 pub fn map_reg(reg: Reg) -> Result<Register, RegisterMappingError> { in map_reg() argument 53 fn map(&self, reg: Reg) -> Result<u16, RegisterMappingError> { in map() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/inst/unwind/ |
| H A D | systemv.rs | 3 use crate::isa::unwind::systemv::RegisterMappingError; 29 pub fn map_reg(reg: Reg) -> Result<Register, RegisterMappingError> { in map_reg() argument 93 fn map(&self, reg: Reg) -> Result<u16, RegisterMappingError> { in map() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/x64/inst/unwind/ |
| H A D | systemv.rs | 3 use crate::isa::unwind::systemv::RegisterMappingError; 33 pub fn map_reg(reg: Reg) -> Result<Register, RegisterMappingError> { in map_reg() argument 86 fn map(&self, reg: Reg) -> Result<u16, RegisterMappingError> { in map() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/ |
| H A D | mod.rs | 52 use crate::isa::unwind::{UnwindInfoKind, systemv::RegisterMappingError}; 322 ) -> Result<u16, RegisterMappingError> { in map_regalloc_reg_to_dwarf() argument 323 Err(RegisterMappingError::UnsupportedArchitecture) in map_regalloc_reg_to_dwarf()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/ |
| H A D | mod.rs | 7 use crate::isa::unwind::systemv::RegisterMappingError; 146 fn map_regalloc_reg_to_dwarf(&self, reg: Reg) -> Result<u16, RegisterMappingError> { in map_regalloc_reg_to_dwarf() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/ |
| H A D | mod.rs | 179 fn map_regalloc_reg_to_dwarf(&self, reg: Reg) -> Result<u16, systemv::RegisterMappingError> { in map_regalloc_reg_to_dwarf() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/ |
| H A D | mod.rs | 151 fn map_regalloc_reg_to_dwarf(&self, reg: Reg) -> Result<u16, systemv::RegisterMappingError> { in map_regalloc_reg_to_dwarf() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/x64/ |
| H A D | mod.rs | 141 fn map_regalloc_reg_to_dwarf(&self, reg: Reg) -> Result<u16, systemv::RegisterMappingError> { in map_regalloc_reg_to_dwarf() argument
|