| /wasmtime-44.0.1/cranelift/codegen/src/machinst/ |
| H A D | lower.rs | 497 vcode, in new() 563 if let Some(insn) = self.vcode.vcode.abi.take_args() { in gen_arg_setup() 665 self.vcode in gen_call_rets() 679 self.vcode in gen_try_call_rets() 831 let start = self.vcode.vcode.num_insts(); in lower_clif_block() 838 let end = self.vcode.vcode.num_insts(); in lower_clif_block() 848 if self.vcode.vcode[iix].is_safepoint() { in lower_clif_block() 869 let end = self.vcode.vcode.num_insts(); in lower_clif_block() 1213 &self.vregs, &self.vcode.vcode in lower() 1215 let vcode = self.vcode.build(self.vregs); in lower() localVariable [all …]
|
| H A D | compile.rs | 32 let vcode = { in compile() localVariable 45 vcode.num_insts() in compile() 47 log::debug!("Number of lowered vcode blocks: {}", vcode.num_blocks()); in compile() 48 trace!("vcode from lowering: \n{:?}", vcode); in compile() 65 regalloc2::run(&vcode, vcode.abi.machine_env(), &options) in compile() 78 let mut checker = regalloc2::checker::Checker::new(&vcode, &vcode.abi.machine_env()); in compile() 89 Ok((vcode, regalloc_result)) in compile()
|
| H A D | vcode.rs | 293 vcode, in new() 300 self.vcode.abi.init_retval_area(&self.vcode.sigs, vregs) in init_retval_area() 305 &self.vcode.abi in abi() 310 &mut self.vcode.abi in abi_mut() 314 &self.vcode.sigs in sigs() 318 &mut self.vcode.sigs in sigs_mut() 345 self.vcode in end_bb() 355 self.vcode in add_branch_args_for_succ() 500 self.vcode in reverse_and_finalize() 508 self.vcode in reverse_and_finalize() [all …]
|
| H A D | mod.rs | 72 pub mod vcode; module 73 pub use vcode::*; 396 pub vcode: Option<String>, field 418 vcode: self.vcode, in apply_params()
|
| /wasmtime-44.0.1/cranelift/filetests/src/ |
| H A D | test_compile.rs | 71 let vcode = compiled_code.vcode.as_ref().unwrap(); in run() localVariable 95 .chain(compiled_code.vcode.as_ref().unwrap().lines()) in run() 102 run_filecheck(&vcode, context) in run()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/ |
| H A D | mod.rs | 74 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function() 76 let emit_result = vcode.emit(®alloc_result, want_disasm, flags, ctrl_plane); in compile_function() 86 vcode: emit_result.disasm, in compile_function()
|
| H A D | lower.isle | 4201 ;; This must be *one* instruction in the vcode because
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/ |
| H A D | mod.rs | 77 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function() 79 let emit_result = vcode.emit(®alloc_result, want_disasm, &self.flags, ctrl_plane); in compile_function() 89 vcode: emit_result.disasm, in compile_function()
|
| H A D | inst.isle | 5102 ;; This must be *one* instruction in the vcode because
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/ |
| H A D | mod.rs | 74 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function() 77 let emit_result = vcode.emit(®alloc_result, want_disasm, &self.flags, ctrl_plane); in compile_function() 87 vcode: emit_result.disasm, in compile_function()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/x64/ |
| H A D | mod.rs | 83 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function() 85 let emit_result = vcode.emit(®alloc_result, want_disasm, &self.flags, ctrl_plane); in compile_function() 95 vcode: emit_result.disasm, in compile_function()
|
| H A D | inst.isle | 3362 ;; This must be *one* instruction in the vcode because we cannot allow regalloc
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/pulley_shared/ |
| H A D | mod.rs | 178 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function() 182 let emit_result = vcode.emit(®alloc_result, want_disasm, &self.flags, ctrl_plane); in compile_function() 192 vcode: emit_result.disasm, in compile_function()
|
| /wasmtime-44.0.1/cranelift/isle/isle/ |
| H A D | README.md | 4 clif instructions to vcode's `MachInst`s in Cranelift.
|