wasm-micro-runtime/samples
YAMAMOTO Takashi 88b5f6a535
samples/wasm-c-api: remove unused valgrind detection (#4249)
- it's unused
- valgrind is basically a linux-only software.
  it isn't a good idea to make it a hard requirement.
  if we want to use valgrind, it's better to introduce
  a separate option to control it.
2025-05-07 11:32:29 +08:00
..
basic fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
bh-atomic Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
cmake Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
debug-tools Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
file Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
inst-context Remove unused argument in wasm_runtime_lookup_function and refactor WASMModuleInstance (#3218) 2024-03-13 12:28:45 +08:00
inst-context-threads Enable MASM automatically in runtime_lib.cmake (#2634) 2023-10-12 20:42:25 +08:00
linux-perf Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
mem-allocator Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
multi-module Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
multi-thread Fix some compile warnings and typos (#3854) 2024-10-15 16:04:58 +08:00
native-lib Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
native-stack-overflow samples/native-stack-overflow: Examine native functions with signature (#3382) 2024-05-03 09:16:35 +08:00
ref-types Change WASM_ANYREF to WASM_EXTERNREF (#3426) 2024-05-14 11:08:16 +08:00
sgx-ra Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
shared-heap Implement shared heap for AOT (#3815) 2024-09-29 12:50:59 +08:00
shared-module Remove unused argument in wasm_runtime_lookup_function and refactor WASMModuleInstance (#3218) 2024-03-13 12:28:45 +08:00
socket-api Update cmake min to 3.14 (#4175) 2025-04-02 07:13:53 +08:00
spawn-thread Fix some compile warnings and typos (#3854) 2024-10-15 16:04:58 +08:00
terminate Remove unused argument in wasm_runtime_lookup_function and refactor WASMModuleInstance (#3218) 2024-03-13 12:28:45 +08:00
wasi-threads Raise wasi-sdk to 25 and wabt to 1.0.37 (#4187) 2025-04-17 16:41:47 +08:00
wasm-c-api samples/wasm-c-api: remove unused valgrind detection (#4249) 2025-05-07 11:32:29 +08:00
wasm-c-api-imports fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
workload fix: correct typos and improve comments across multiple files by codespell (#4116) 2025-03-07 08:21:54 +08:00
README.md Get location info from function indexes in addr2line script (#3206) 2024-03-08 10:20:04 +08:00

Samples

  • basic: Demonstrating how to use runtime exposed API's to call WASM functions, how to register native functions and call them, and how to call WASM function from native function.
  • file: Demonstrating the supported file interaction API of WASI. This sample can also demonstrate the SGX IPFS (Intel Protected File System), enabling an enclave to seal and unseal data at rest.
  • multi-thread: Demonstrating how to run wasm application which creates multiple threads to execute wasm functions concurrently, and uses mutex/cond by calling pthread related API's.
  • spawn-thread: Demonstrating how to execute wasm functions of the same wasm application concurrently, in threads created by host embedder or runtime, but not the wasm application itself.
  • wasi-threads: Demonstrating how to run wasm application which creates multiple threads to execute wasm functions concurrently based on lib wasi-threads.
  • multi-module: Demonstrating the multiple modules as dependencies feature which implements the load-time dynamic linking.
  • ref-types: Demonstrating how to call wasm functions with argument of externref type introduced by reference types proposal.
  • wasm-c-api: Demonstrating how to run some samples from wasm-c-api proposal and showing the supported API's.
  • socket-api: Demonstrating how to run wasm tcp server and tcp client applications, and how they communicate with each other.
  • native-lib: Demonstrating how to write required interfaces in native library, build it into a shared library and register the shared library to iwasm.
  • sgx-ra: Demonstrating how to execute Remote Attestation on SGX with librats, which enables mutual attestation with other runtimes or other entities that support librats to ensure that each is running within the TEE.
  • workload: Demonstrating how to build and run some complex workloads, e.g. tensorflow-lite, XNNPACK, wasm-av1, meshoptimizer and bwa.
  • debug-tools: Demonstrating how to symbolicate a stack trace.