wasm-micro-runtime/core/shared/platform/common/posix
Wenyong Huang a23fa9f86c
Implement memory64 for classic interpreter (#3266)
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
- Support memory64 memory in related runtime APIs
- Modify main function type check when it's memory64 wasm file
- Modify `wasm_runtime_invoke_native` and `wasm_runtime_invoke_native_raw` to
  handle registered native function pointer argument when memory64 is enabled
- memory64 classic-interpreter spec test in `test_wamr.sh` and in CI

Currently, it supports memory64 memory wasm file that uses core spec
(including bulk memory proposal) opcodes and threads opcodes.

ps.
https://github.com/bytecodealliance/wasm-micro-runtime/issues/3091
https://github.com/bytecodealliance/wasm-micro-runtime/pull/3240
https://github.com/bytecodealliance/wasm-micro-runtime/pull/3260
2024-04-02 15:22:07 +08:00
..
platform_api_posix.cmake shared-platform: Remove dependency on shared-utils' bh_memory_remap_slow (#3153) 2024-02-17 13:44:33 +08:00
posix_blocking_op.c Remove a lot of "unused parameter" warnings (#3075) 2024-01-24 11:21:13 +08:00
posix_clock.c Remove a lot of "unused parameter" warnings (#3075) 2024-01-24 11:21:13 +08:00
posix_file.c posix_file.c: Correct the dirfd argument that passes to fstatat (#3244) 2024-03-22 10:55:39 +08:00
posix_malloc.c Add bh_print_proc_mem() to dump memory info of current process (#1734) 2022-11-25 08:33:44 +08:00
posix_memmap.c Implement memory64 for classic interpreter (#3266) 2024-04-02 15:22:07 +08:00
posix_sleep.c Implement os_usleep for posix (#2517) 2023-09-01 12:10:54 +08:00
posix_socket.c Fix some issues reported by CodeQL (#3064) 2024-01-23 21:38:30 +08:00
posix_thread.c Fix AOT compilation on MacOS (#3102) 2024-01-31 20:06:22 +08:00
posix_time.c Enhancements on wasm function execution time statistic (#2985) 2024-01-17 09:51:54 +08:00