wasm-micro-runtime/core/iwasm/interpreter
Jie He be2b561935
[dylink] Add an experimental shared-everything multiple modules link feature. (#1023)
By this patch, an experimental shared-everything modules linking is supported, typically
user could use the feature to dlopen a wasm/aot module, then get the funcref by dlsym, and
call the target function by call indirect instr. Of course, a dlclose is supported too.

Currently, root module could be a regular module, wasi module, or AssemblyScript module;
dependency module MUST be a module built followed the proposal "dynamical linking", that means
it should contain a new dylink section and no mem allocator function exported. User could
get it by clang or emcc. New iwasm switch --enable-dopen is used for enabling the feature and
choosing the launch mode. see the iwasm -h for details.

Multiple modules feature is not well tested, there should be some cases not covered.

Co-authored-by: jhe <hejie.he@antgroup.com>
2022-02-28 18:13:36 +08:00
..
iwasm_interp.cmake Implement wasm mini loader and refine footprint of loader and runtime (#276) 2020-06-08 11:19:09 +08:00
SConscript add porting codes of rt-thread (#494) 2021-01-14 11:26:35 +08:00
wasm_interp_classic.c [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00
wasm_interp_fast.c [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00
wasm_interp.h Apply clang-format for interpreter source files (#772) 2021-10-08 11:44:39 +08:00
wasm_loader.c [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00
wasm_loader.h Enable ref types and bulk memory by default for wamrc (#838) 2021-11-18 17:42:49 +08:00
wasm_mini_loader.c [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00
wasm_opcode.h Apply clang-format for interpreter source files (#772) 2021-10-08 11:44:39 +08:00
wasm_runtime.c [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00
wasm_runtime.h [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00
wasm.h [dylink] Add an experimental shared-everything multiple modules link feature. (#1023) 2022-02-28 18:13:36 +08:00