Home
last modified time | relevance | path

Searched refs:CompileOutput (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/
H A Dcompile.rs235 struct CompileOutput<'a> { struct
329 Ok(CompileOutput { in for_component()
362 Ok(CompileOutput { in for_component()
388 Ok(CompileOutput { in for_component()
475 Ok(CompileOutput { in collect_inputs_in_translations()
498 Ok(CompileOutput { in collect_inputs_in_translations()
527 Ok(CompileOutput { in collect_inputs_in_translations()
616 ) -> Result<Vec<CompileOutput<'a>>, Error> { in compile_with_inlining()
694 |output: &mut CompileOutput<'_>| { in compile_with_inlining()
958 Ok(CompileOutput { in compile_required_builtins()
[all …]
/wasmtime-44.0.1/tests/
H A Ddisas.rs193 fn compile(&mut self) -> Result<CompileOutput> { in compile() argument
280 Ok(CompileOutput::Clif(functions)) in compile()
282 TestKind::Compile | TestKind::Winch => Ok(CompileOutput::Elf(elf)), in compile()
287 enum CompileOutput { enum
293 fn assert_output(test: &Test, output: CompileOutput) -> Result<()> { in assert_output()
296 CompileOutput::Clif(funcs) => { in assert_output()
302 CompileOutput::Elf(bytes) => { in assert_output()