Add support for multi-memory proposal in classic interpreter (#3742)
Implement multi-memory for classic-interpreter. Support core spec (and bulk memory) opcodes now, and will support atomic opcodes, and add multi-memory export APIs in the future. PS: Multi-memory spec test patched a lot for linking test to adapt for multi-module implementation.
This commit is contained in:
@ -664,6 +664,11 @@
|
||||
#define WASM_ENABLE_MEMORY64 0
|
||||
#endif
|
||||
|
||||
/* Disable multi-memory by default */
|
||||
#ifndef WASM_ENABLE_MULTI_MEMORY
|
||||
#define WASM_ENABLE_MULTI_MEMORY 0
|
||||
#endif
|
||||
|
||||
#ifndef WASM_TABLE_MAX_SIZE
|
||||
#define WASM_TABLE_MAX_SIZE 1024
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user