mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-11-29 10:53:44 +00:00
Implement the shared heap feature for interpreter, aot and llvm jit.
Add below runtime APIs:
```C
wasm_shared_heap_t
wasm_runtime_create_shared_heap(SharedHeapInitArgs *init_args);
bool
wasm_runtime_attach_shared_heap(wasm_module_inst_t module_inst,
wasm_shared_heap_t shared_heap);
void
wasm_runtime_detach_shared_heap(wasm_module_inst_t module_inst);
uint64_t
wasm_runtime_shared_heap_malloc(wasm_module_inst_t module_inst, uint64_t size,
void **p_native_addr);
void
wasm_runtime_shared_heap_free(wasm_module_inst_t module_inst, uint64_t ptr);
```
And allow wasm app to call API shared_heap_malloc and shared_heap_free:
```C
void *shared_heap_malloc(uint32_t size);
void shared_heap_free(void *ptr);
```
|
||
|---|---|---|
| .. | ||
| build_docker_images.yml | ||
| build_iwasm_release.yml | ||
| build_llvm_libraries.yml | ||
| build_wamr_lldb.yml | ||
| build_wamr_sdk.yml | ||
| build_wamr_vscode_ext.yml | ||
| build_wamrc.yml | ||
| codeql.yml | ||
| coding_guidelines.yml | ||
| compilation_on_android_ubuntu.yml | ||
| compilation_on_macos.yml | ||
| compilation_on_nuttx.yml | ||
| compilation_on_sgx.yml | ||
| compilation_on_windows.yml | ||
| create_tag.yml | ||
| hadolint_dockerfiles.yml | ||
| nightly_run.yml | ||
| release_process.yml | ||
| reuse_latest_release_binaries.yml | ||
| spec_test_on_nuttx.yml | ||
| supply_chain.yml | ||