wasm-micro-runtime/core/iwasm
TianlongLiang 2c06e22d4a
Basic Memory64 support for classic-interpreter (#3240)
Adding a new CMake flag (cache variable) `WAMR_BUILD_MEMORY64` to enable
the memory64 feature, it can only be enabled on the 64-bit platform/target and
can only use software boundary check. And when it is enabled, it can support both
i32 and i64 linear memory types. The main modifications are:

- wasm loader & mini-loader: loading and bytecode validating process 
- wasm runtime: memory instantiating process
- classic-interpreter: wasm code executing process
- memory64 classic-interpreter spec test in `test_wamr.sh` and in CI

Currently, it supports memory64 memory wasm files that only use core spec
(including bulk memory proposal) opcodes. 

Future TODOs when memory64 is enabled:
1. support threads opcodes in classic-interpreter
2. support memory64 memory in related runtime API
2024-03-26 10:52:45 +08:00
..
aot Fix aot relocation symbols not found on windows 32-bit (#3231) 2024-03-18 09:51:38 +08:00
common Basic Memory64 support for classic-interpreter (#3240) 2024-03-26 10:52:45 +08:00
compilation Fix aot relocation symbols not found on windows 32-bit (#3231) 2024-03-18 09:51:38 +08:00
doc Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00
fast-jit Refactor APIs and data structures as preliminary work for Memory64 (#3209) 2024-03-12 11:38:50 +08:00
include GC: Add wasm_struct_obj_get_field_count API (#3236) 2024-03-18 16:26:30 +08:00
interpreter Basic Memory64 support for classic-interpreter (#3240) 2024-03-26 10:52:45 +08:00
libraries Add wasi_ephemeral_nn module support (#3241) 2024-03-21 21:05:34 +08:00
README.md Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00