Lines Matching refs:CompiledFunction
6 use crate::{CompiledFunction, ModuleTextBuilder, array_call_signature};
201 fn box_dyn_any_compiled_function(f: CompiledFunction) -> Box<dyn Any + Send + Sync> { in box_dyn_any_compiled_function()
203 debug_assert!(b.is::<CompiledFunction>()); in box_dyn_any_compiled_function()
504 debug_assert!(func.is::<CompiledFunction>()); in append_code()
505 let func = func.downcast_ref::<CompiledFunction>().unwrap(); in append_code()
675 debug_assert!(any.is::<CompiledFunction>()); in append_dwarf()
678 any.downcast_ref::<CompiledFunction>().unwrap().metadata(), in append_dwarf()
839 debug_assert!(func.is::<CompiledFunction>()); in compiled_function_relocation_targets()
840 let func = func.downcast_ref::<CompiledFunction>().unwrap(); 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()
930 debug_assert!(!func_body.code.is::<CompiledFunction>()); in inline()
956 debug_assert!(!func_body.code.is::<CompiledFunction>()); in finish_compiling()
1467 fn finish(self, symbol: &str) -> Result<CompiledFunction, CompileError> { in finish() argument
1475 ) -> Result<CompiledFunction, CompileError> { in finish_with_info() argument
1514 let mut compiled_function = CompiledFunction::new( in finish_with_info()