| /wasmtime-44.0.1/docs/ |
| H A D | examples-multi-value.md | 1 # Using multi-value 6 * [Rust](https://github.com/bytecodealliance/wasmtime/blob/main/examples/multi.rs) 7 * [C](https://github.com/bytecodealliance/wasmtime/blob/main/examples/multi.c) 8 * [C++](https://github.com/bytecodealliance/wasmtime/blob/main/examples/multi.cc) 10 This example shows off how to interact with a wasm module that uses multi-value 16 {{#include ../examples/multi.wat}} 24 {{#include ../examples/multi.rs}} 28 {{#include ../examples/multi.c}} 32 {{#include ../examples/multi.cc}}
|
| H A D | book.toml | 27 "/examples-c-multi-value.html" = "/examples-multi-value.html" 40 "/examples-cpp-multi-value.html" = "/examples-multi-value.html" 54 "/examples-rust-multi-value.html" = "/examples-multi-value.html"
|
| H A D | stability-wasm-proposals.md | 25 | [`multi-value`] | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 31 | [`multi-memory`] | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | 99 [`multi-value`]: https://github.com/WebAssembly/spec/blob/master/proposals/multi-value/Overview.md 112 [`multi-memory`]: https://github.com/WebAssembly/multi-memory/blob/master/proposals/multi-memory/Ov…
|
| H A D | stability-tiers.md | 33 | WebAssembly Proposal | [`multi-value`] | 57 [`multi-value`]: https://github.com/WebAssembly/spec/blob/master/proposals/multi-value/Overview.md 94 [`multi-memory`]: https://github.com/WebAssembly/multi-memory/blob/master/proposals/multi-memory/Ov… 220 | [`multi-value`] | ✅ | ✅ | 226 | [`multi-memory`] | ✅ | ✅ | 270 | [`multi-value`] | ✅ | ❌ | 276 | [`multi-memory`] | ✅ | ❌ | 295 | [`multi-value`] | ✅ | ❌ | 301 | [`multi-memory`] | ✅ | ❌ | 325 | [`multi-value`] | ✅ | ❌ | [all …]
|
| /wasmtime-44.0.1/cranelift/isle/isle/isle_examples/link/ |
| H A D | multi_constructor.isle | 1 (decl multi A (u32) u32) 2 (decl multi B (u32) u32) 3 (decl multi C (u32) u32) 4 (decl multi D (u32) u32)
|
| H A D | multi_extractor.isle | 3 (decl multi E1 (A u32) u32) 7 (decl multi Rule (u32) u32)
|
| /wasmtime-44.0.1/tests/disas/winch/x64/call/ |
| H A D | multi.wat | 4 (func $multi (result i32 i32) 9 call $multi 13 ;; wasm[0]::function[0]::multi:
|
| /wasmtime-44.0.1/examples/ |
| H A D | CMakeLists.txt | 82 create_target(multi multi.c) 83 create_target(multi-cpp multi.cc) 106 create_rust_test(multi)
|
| /wasmtime-44.0.1/tests/disas/winch/aarch64/call/ |
| H A D | multi.wat | 4 (func $multi (result i32 i32) 9 call $multi 13 ;; wasm[0]::function[0]::multi:
|
| /wasmtime-44.0.1/cranelift/isle/isle/isle_examples/fail/ |
| H A D | multi_prio.isle | 1 (decl multi A (u32) u32)
|
| H A D | multi_internal_etor.isle | 1 (decl multi A (u32) u32)
|
| /wasmtime-44.0.1/crates/wasi/ |
| H A D | Cargo.toml | 25 tokio = { workspace = true, features = ["time", "sync", "io-std", "io-util", "rt", "rt-multi-threa… 43 tokio = { workspace = true, features = ["time", "sync", "io-std", "io-util", "rt", "rt-multi-thread…
|
| /wasmtime-44.0.1/crates/wasi-common/ |
| H A D | Cargo.toml | 38 tokio = { workspace = true, features = [ "rt", "fs", "time", "io-util", "net", "io-std", "rt-multi-… 64 tokio = { workspace = true, features = ['macros', 'rt-multi-thread'] }
|
| /wasmtime-44.0.1/cranelift/isle/isle/src/ |
| H A D | sema.rs | 389 pub multi: bool, field 589 let ret_kind = if flags.multi { in extractor_sig() 626 let ret_kind = if flags.multi { in constructor_sig() 790 multi: bool, in add_extract() 869 flags.multi, in visit() 918 multi: bool, in add_construct() 983 flags.multi, in visit() 1479 multi: decl.multi, in collect_term_sigs() 1655 if flags.multi { in collect_extractor_templates() 1978 if flags.multi { in collect_rules() [all …]
|
| H A D | trie_again.rs | 585 multi: bool, in add_extract() 593 let source = if multi { in add_extract() 651 multi: bool, in add_construct() 670 let source = if multi { in add_construct()
|
| H A D | overlap.rs | 111 TermKind::Decl { flags, .. } => flags.multi, in check_overlaps()
|
| /wasmtime-44.0.1/crates/misc/component-async-tests/ |
| H A D | Cargo.toml | 21 "rt-multi-thread",
|
| /wasmtime-44.0.1/cranelift/filetests/filetests/egraph/ |
| H A D | multivalue.clif | 7 ;; handling multi-value operator nodes.
|
| /wasmtime-44.0.1/crates/wasi-threads/ |
| H A D | README.md | 7 > Note: this crate is experimental and not yet suitable for use in multi-tenant
|
| /wasmtime-44.0.1/crates/wasi-tls/ |
| H A D | Cargo.toml | 29 "rt-multi-thread",
|
| /wasmtime-44.0.1/tests/disas/winch/x64/loop/ |
| H A D | multi.wat | 6 (func (export "multi") (result i32)
|
| /wasmtime-44.0.1/crates/wasi-http/ |
| H A D | Cargo.toml | 31 "rt-multi-thread",
|
| /wasmtime-44.0.1/cranelift/codegen/src/ |
| H A D | prelude_opt.isle | 8 (decl multi inst_data_value (Type InstructionData) Value) 20 (decl multi inst_data_value_tupled (TypeAndInstructionData) Value) 61 (decl multi simplify (Value) Value) 110 (decl multi simplify_skeleton (Inst) SkeletonInstSimplification) 164 (decl multi sextend_maybe_etor (Type Value) Value) 166 (decl multi uextend_maybe_etor (Type Value) Value)
|
| /wasmtime-44.0.1/crates/wiggle/ |
| H A D | Cargo.toml | 29 tokio = { version = "1", features = ["rt-multi-thread","time", "macros"] }
|
| /wasmtime-44.0.1/crates/fuzzing/ |
| H A D | Cargo.toml | 77 tokio = { workspace = true, features = ["rt", "time", "macros", "rt-multi-thread"] }
|