Home
last modified time | relevance | path

Searched refs:execute (Results 1 – 25 of 58) sorted by relevance

123

/wasmtime-44.0.1/src/bin/
H A Dwasmtime.rs99 pub fn execute(self) -> Result<()> { in execute() method
107 Subcommand::Run(c) => c.execute(), in execute()
110 Subcommand::Config(c) => c.execute(), in execute()
113 Subcommand::Compile(c) => c.execute(), in execute()
116 Subcommand::Explore(c) => c.execute(), in execute()
119 Subcommand::Serve(c) => c.execute(), in execute()
125 Subcommand::Wast(c) => c.execute(), in execute()
131 Subcommand::Objdump(c) => c.execute(), in execute()
134 Subcommand::Wizer(c) => c.execute(), in execute()
159 pub fn execute(&self) -> Result<()> { in execute() method
[all …]
/wasmtime-44.0.1/src/commands/
H A Dconfig.rs25 pub fn execute(self) -> Result<()> { in execute() method
27 ConfigSubcommand::New(c) => c.execute(), in execute()
42 pub fn execute(self) -> Result<()> { in execute() method
H A Dcompile.rs52 pub fn execute(mut self) -> Result<()> { in execute() method
131 command.execute()?; in test_successful_compile()
176 command.execute()?; in test_x64_flags_compile()
205 command.execute()?; in test_aarch64_flags_compile()
230 command.execute().unwrap_err().to_string(), in test_unsupported_flags_compile()
265 command.execute()?; in test_x64_presets_compile()
H A Dexplore.rs27 pub fn execute(mut self) -> Result<()> { in execute() method
H A Dwast.rs44 pub fn execute(mut self) -> Result<()> { in execute() method
H A Dwizer.rs39 pub fn execute(mut self) -> Result<()> { in execute() method
H A Dsettings.rs108 pub fn execute(self) -> Result<()> { in execute() method
/wasmtime-44.0.1/crates/fuzzing/src/
H A Dsingle_module_fuzzer.rs62 ($execute:ident $generate:ident) => {
65 drop($crate::single_module_fuzzer::execute(
66 data, $execute, $generate,
96 pub fn execute<'a, T, U>( in execute() function
314 if let Ok((module, known_valid)) = execute(&buf[..seed_size], run1, generate) { in changing_configuration_does_not_change_module()
317 if let Ok((module2, known_valid)) = execute(&buf[..new_size], run2, generate) { in changing_configuration_does_not_change_module()
/wasmtime-44.0.1/docs/
H A Dcli.md5 execute WebAssembly modules from the command line.
8 that it contains. In short, however, you can execute a WebAssembly file
16 modules, you can execute
H A Dexamples-pulley.md4 Cranelift compiler to translate WebAssembly to native machine code and execute
6 (32-bit Intel machines) is not supported at this time. To help execute
25 enabled by default. This means that Wasmtime can execute WebAssembly by
29 For platforms in category (2) there is no opt-in necessary to execute Pulley as
31 `x86_64-unknown-linux-gnu`, may still want to execute Pulley to run tests,
69 on the CLI this will execute all WebAssembly in the interpreter rather than via
100 possible to execute any Pulley bytecode created by Cranelift and Wasmtime. This
110 When specified the Pulley interpreter will no longer include code to execute
111 SIMD opcodes. Instead attempting to execute any opcode will raise a "disabled
H A Dexamples-deterministic-wasm-execution.md5 execute Wasm programs fully deterministically, even when the Wasm language spec
34 cannot be made to execute both identically and performantly across different
38 At the cost of worse runtime performance, Wasmtime can deterministically execute
H A Dcontributing-testing.md38 tests you'll need to execute
47 wasmtime-whatever`. For example, to test the `wasmtime-environ` crate, execute
73 the repository you can execute:
102 Similarly if you're testing HTTP-related functionality you can execute:
184 One a test file is added you'll need to add some code to execute the tests as
H A Dexamples-profiling-perf.md34 For example if you're using the CLI, you'll execute:
82 For example if you're using the CLI, you'll execute:
162 To collect perf information for this wasm module we'll execute:
173 And we should have all our information now! We can execute `perf report` for
H A Dexamples-profiling-vtune.md57 With VTune [properly installed][download], if you are using the CLI execute:
98 Then we execute the Wasmtime runtime (built with the `vtune` feature and
101 path. To collect hot spot profiling information, we execute:
H A Dcli-options.md4 provided it'll assume `run`, which is to execute a wasm file. The subcommands
10 can execute any number of the following:
25 other subcommand is provided. The `run` command will execute a WebAssembly
180 official WebAssembly spec test suite. This subcommand will execute the script
H A Dexamples-profiling-samply.md26 For example if you're using the CLI, you'll execute:
H A Dexamples-wasip2.md46 execute the same WASIp2 component from the example above. This example requires the `wasmtime` crat…
H A Dcontributing-building.md65 execute this command:
H A Dcontributing-ci.md37 To force PRs to execute the full test suite, which takes longer than the default
60 mode. Additionally we execute all crate tests on macOS, Windows, and Linux, to
/wasmtime-44.0.1/fuzz/fuzz_targets/
H A Dinstantiate.rs8 wasmtime_fuzzing::single_module_fuzzer!(execute gen_module);
33 fn execute( in execute() function
/wasmtime-44.0.1/crates/environ/examples/
H A Dfactc.rs50 Factc::parse().execute() in main()
54 fn execute(self) -> Result<()> { in execute() method
/wasmtime-44.0.1/examples/min-platform/
H A DREADME.md29 serves as a bit of a test case for Wasmtime itself to execute in CI. The
31 `embedding` project above and execute it to showcase that the code works.
49 program will load the embedding and execute it. This is mostly specific to
/wasmtime-44.0.1/crates/bench-api/src/
H A Dlib.rs368 let result = state.execute().context("failed to execute"); in wasm_bench_execute()
518 fn execute(&mut self) -> Result<()> { in execute() method
/wasmtime-44.0.1/crates/wasi-http/tests/all/
H A Dhttp_server.rs144 fn execute(&self, fut: F) { in execute() function
/wasmtime-44.0.1/crates/fiber/src/
H A Dnostd.rs125 super::Suspend::<A, B, C>::execute(inner, initial, Box::from_raw(arg0.cast::<F>())); in fiber_start()

123