wasm-micro-runtime/product-mini/platforms
Wenyong Huang a182926a73
Refactor interpreter/AOT module instance layout (#1559)
Refactor the layout of interpreter and AOT module instance:
- Unify the interp/AOT module instance, use the same WASMModuleInstance/
  WASMMemoryInstance/WASMTableInstance data structures for both interpreter
  and AOT
- Make the offset of most fields the same in module instance for both interpreter
  and AOT, append memory instance structure, global data and table instances to
  the end of module instance for interpreter mode (like AOT mode)
- For extra fields in WASM module instance, use WASMModuleInstanceExtra to
  create a field `e` for interpreter
- Change the LLVM JIT module instance creating process, LLVM JIT uses the WASM
  module and module instance same as interpreter/Fast-JIT mode. So that Fast JIT
  and LLVM JIT can access the same data structures, and make it possible to
  implement the Multi-tier JIT (tier-up from Fast JIT to LLVM JIT) in the future
- Unify some APIs: merge some APIs for module instance and memory instance's
  related operations (only implement one copy)

Note that the AOT ABI is same, the AOT file format, AOT relocation types, how AOT
code accesses the AOT module instance and so on are kept unchanged.

Refer to:
https://github.com/bytecodealliance/wasm-micro-runtime/issues/1384
2022-10-18 10:59:28 +08:00
..
alios-things Fix compile warning on non-x86 targets, fix alios build error (#923) 2021-12-30 10:07:50 +08:00
android Refactor interpreter/AOT module instance layout (#1559) 2022-10-18 10:59:28 +08:00
darwin build_llvm.sh: enable to pass through arguments (#1506) 2022-09-20 17:54:50 +08:00
esp-idf ESP IDF fixes (#927) 2022-01-05 12:50:17 +08:00
ios Add ios support for product-mini (#1602) 2022-10-18 07:52:38 +08:00
linux build_llvm.sh: enable to pass through arguments (#1506) 2022-09-20 17:54:50 +08:00
linux-sgx linux-sgx: Implement SGX IPFS as POSIX backend for file interaction (#1489) 2022-09-28 13:09:58 +08:00
nuttx ci: Cover more configurations & targets on NuttX (#1448) 2022-09-05 12:12:32 +08:00
posix Merge dev/socket into main (#1393) 2022-09-22 21:46:14 +08:00
riot Adapt to RIOT ztimer and ztimer64 (#988) 2022-01-28 18:38:35 +08:00
rt-thread Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +08:00
vxworks Enhance cmake makefiles (#1390) 2022-08-18 16:27:01 +08:00
windows Fix potential warning of printf in main.c of posix and windows (#1440) 2022-09-01 14:11:00 +08:00
zephyr/simple Dockerfile lint errors fix (#1493) 2022-09-22 13:06:11 +08:00