Lines Matching refs:CompileError
37 Abi, AddressMapSection, BuiltinFunctionIndex, CacheStore, CompileError, CompiledFunctionBody,
236 ) -> Result<CompiledFunctionBody, CompileError> { in compile_function() argument
333 .map_err(|e| CompileError::Codegen(e.to_string()))?; in compile_function()
358 ) -> Result<CompiledFunctionBody, CompileError> { in compile_array_to_wasm_trampoline() argument
379 ) -> Result<CompiledFunctionBody, CompileError> { in compile_wasm_to_array_trampoline() argument
741 ) -> Result<CompiledFunctionBody, CompileError> { in compile_wasm_to_builtin() argument
1007 ) -> Result<CompiledCode, CompileError> { in compile_maybe_cached() argument
1016 .map_err(|error| CompileError::Codegen(pretty_error(&error.func, error.inner)))?; in compile_maybe_cached()
1036 ) -> Result<CompiledCode, CompileError> { in compile_maybe_cached() argument
1043 ) -> Result<CompiledCode, CompileError> { in compile_uncached() argument
1046 .map_err(|error| CompileError::Codegen(pretty_error(&error.func, error.inner)))?; in compile_uncached()
1319 ) -> Result<CompiledFunctionBody, CompileError> { in array_to_wasm_trampoline() argument
1467 fn finish(self, symbol: &str) -> Result<CompiledFunction, CompileError> { in finish() argument
1475 ) -> Result<CompiledFunction, CompileError> { in finish_with_info() argument
1534 .map_err(|error| CompileError::Codegen(pretty_error(&context.func, error)))?; in finish_with_info()
1558 .map_err(|error| CompileError::Codegen(pretty_error(&context.func, error)))?; in finish_with_info()