Home
last modified time | relevance | path

Searched refs:CompiledFunction (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/winch/codegen/src/isa/aarch64/
H A Dmod.rs18 use wasmtime_cranelift::CompiledFunction;
91 ) -> Result<CompiledFunction> { in compile_function() argument
123 Ok(CompiledFunction::new( in compile_function()
/wasmtime-44.0.1/winch/codegen/src/isa/x64/
H A Dmod.rs17 use wasmtime_cranelift::CompiledFunction;
94 ) -> Result<CompiledFunction> { in compile_function() argument
130 Ok(CompiledFunction::new( in compile_function()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dcompiler.rs6 use crate::{CompiledFunction, ModuleTextBuilder, array_call_signature};
203 debug_assert!(b.is::<CompiledFunction>()); in box_dyn_any_compiled_function()
504 debug_assert!(func.is::<CompiledFunction>()); in append_code()
675 debug_assert!(any.is::<CompiledFunction>()); in append_dwarf()
839 debug_assert!(func.is::<CompiledFunction>()); in compiled_function_relocation_targets()
847 debug_assert!(!func_body.code.is::<CompiledFunction>()); in calls()
872 debug_assert!(!func_body.code.is::<CompiledFunction>()); in size()
890 debug_assert!(!func_body.code.is::<CompiledFunction>()); in inline()
956 debug_assert!(!func_body.code.is::<CompiledFunction>()); in finish_compiling()
1475 ) -> Result<CompiledFunction, CompileError> { in finish_with_info() argument
[all …]
H A Dcompiled_function.rs58 pub struct CompiledFunction { struct
74 impl CompiledFunction { impl
H A Dobj.rs16 use crate::CompiledFunction;
122 compiled_func: &'a CompiledFunction, in append_func() argument
/wasmtime-44.0.1/crates/winch/src/
H A Dcompiler.rs7 use wasmtime_cranelift::CompiledFunction;
73 compiled_function: &mut CompiledFunction, in emit_unwind_info() argument
92 fn box_dyn_any_compiled_function(f: CompiledFunction) -> Box<dyn Any + Send + Sync> { in box_dyn_any_compiled_function()
94 debug_assert!(b.is::<CompiledFunction>()); in box_dyn_any_compiled_function()
/wasmtime-44.0.1/winch/codegen/src/isa/
H A Dmod.rs13 use wasmtime_cranelift::CompiledFunction;
177 ) -> Result<CompiledFunction>; in compile_function() argument