Home
last modified time | relevance | path

Searched refs:vcode (Results 1 – 14 of 14) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dlower.rs497 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 Dcompile.rs32 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 Dvcode.rs293 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 Dmod.rs72 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 Dtest_compile.rs71 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 Dmod.rs74 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function()
76 let emit_result = vcode.emit(&regalloc_result, want_disasm, flags, ctrl_plane); in compile_function()
86 vcode: emit_result.disasm, in compile_function()
H A Dlower.isle4201 ;; This must be *one* instruction in the vcode because
/wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/
H A Dmod.rs77 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function()
79 let emit_result = vcode.emit(&regalloc_result, want_disasm, &self.flags, ctrl_plane); in compile_function()
89 vcode: emit_result.disasm, in compile_function()
H A Dinst.isle5102 ;; This must be *one* instruction in the vcode because
/wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/
H A Dmod.rs74 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function()
77 let emit_result = vcode.emit(&regalloc_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 Dmod.rs83 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function()
85 let emit_result = vcode.emit(&regalloc_result, want_disasm, &self.flags, ctrl_plane); in compile_function()
95 vcode: emit_result.disasm, in compile_function()
H A Dinst.isle3362 ;; 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 Dmod.rs178 let (vcode, regalloc_result) = self.compile_vcode(func, domtree, ctrl_plane)?; in compile_function()
182 let emit_result = vcode.emit(&regalloc_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 DREADME.md4 clif instructions to vcode's `MachInst`s in Cranelift.