Searched refs:CondBrTarget (Results 1 – 4 of 4) sorted by relevance
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/inst/ |
| H A D | emit.rs | 1327 CondBrTarget::Label(label) => { in emit_uncompressed() 1338 CondBrTarget::Label(label) => { in emit_uncompressed() 1341 CondBrTarget::Fallthrough => {} in emit_uncompressed() 1461 not_taken: CondBrTarget::Fallthrough, in emit_uncompressed() 1695 not_taken: CondBrTarget::Fallthrough, in emit_uncompressed() 1760 not_taken: CondBrTarget::Fallthrough, in emit_uncompressed() 1797 not_taken: CondBrTarget::Fallthrough, in emit_uncompressed() 2001 taken: CondBrTarget::Label(retry), in emit_uncompressed() 2002 not_taken: CondBrTarget::Fallthrough, in emit_uncompressed() 2195 not_taken: CondBrTarget::Fallthrough, in emit_uncompressed() [all …]
|
| H A D | mod.rs | 65 pub enum CondBrTarget { enum 73 impl CondBrTarget { impl 77 CondBrTarget::Label(l) => Some(l), in as_label() 83 self == &CondBrTarget::Fallthrough in is_fallthrouh() 87 impl Display for CondBrTarget { implementation 90 CondBrTarget::Label(l) => write!(f, "{}", l.to_string()), in fmt() 91 CondBrTarget::Fallthrough => write!(f, "0"), in fmt()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/lower/ |
| H A D | isle.rs | 298 fn label_to_br_target(&mut self, label: MachLabel) -> CondBrTarget { in label_to_br_target() argument 299 CondBrTarget::Label(label) in label_to_br_target()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/ |
| H A D | inst.isle | 138 (taken CondBrTarget) 139 (not_taken CondBrTarget) 807 (type CondBrTarget (primitive CondBrTarget)) 2848 (decl cond_br (IntegerCompare CondBrTarget CondBrTarget) SideEffectNoResult) 2866 (decl label_to_br_target (MachLabel) CondBrTarget) 2868 (convert MachLabel CondBrTarget label_to_br_target)
|