| /wasmtime-44.0.1/src/bin/ |
| H A D | wasmtime.rs | 99 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 D | config.rs | 25 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 D | compile.rs | 52 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 D | explore.rs | 27 pub fn execute(mut self) -> Result<()> { in execute() method
|
| H A D | wast.rs | 44 pub fn execute(mut self) -> Result<()> { in execute() method
|
| H A D | wizer.rs | 39 pub fn execute(mut self) -> Result<()> { in execute() method
|
| H A D | settings.rs | 108 pub fn execute(self) -> Result<()> { in execute() method
|
| /wasmtime-44.0.1/crates/fuzzing/src/ |
| H A D | single_module_fuzzer.rs | 62 ($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 D | cli.md | 5 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 D | examples-pulley.md | 4 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 D | examples-deterministic-wasm-execution.md | 5 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 D | contributing-testing.md | 38 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 D | examples-profiling-perf.md | 34 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 D | examples-profiling-vtune.md | 57 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 D | cli-options.md | 4 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 D | examples-profiling-samply.md | 26 For example if you're using the CLI, you'll execute:
|
| H A D | examples-wasip2.md | 46 execute the same WASIp2 component from the example above. This example requires the `wasmtime` crat…
|
| H A D | contributing-building.md | 65 execute this command:
|
| H A D | contributing-ci.md | 37 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 D | instantiate.rs | 8 wasmtime_fuzzing::single_module_fuzzer!(execute gen_module); 33 fn execute( in execute() function
|
| /wasmtime-44.0.1/crates/environ/examples/ |
| H A D | factc.rs | 50 Factc::parse().execute() in main() 54 fn execute(self) -> Result<()> { in execute() method
|
| /wasmtime-44.0.1/examples/min-platform/ |
| H A D | README.md | 29 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 D | lib.rs | 368 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 D | http_server.rs | 144 fn execute(&self, fut: F) { in execute() function
|
| /wasmtime-44.0.1/crates/fiber/src/ |
| H A D | nostd.rs | 125 super::Suspend::<A, B, C>::execute(inner, initial, Box::from_raw(arg0.cast::<F>())); in fiber_start()
|