Refactor APIs and data structures as preliminary work for Memory64 (#3209)
# Change the data type representing linear memory address from u32 to u64
## APIs signature changes
- (Export)wasm_runtime_module_malloc
- wasm_module_malloc
- wasm_module_malloc_internal
- aot_module_malloc
- aot_module_malloc_internal
- wasm_runtime_module_realloc
- wasm_module_realloc
- wasm_module_realloc_internal
- aot_module_realloc
- aot_module_realloc_internal
- (Export)wasm_runtime_module_free
- wasm_module_free
- wasm_module_free_internal
- aot_module_malloc
- aot_module_free_internal
- (Export)wasm_runtime_module_dup_data
- wasm_module_dup_data
- aot_module_dup_data
- (Export)wasm_runtime_validate_app_addr
- (Export)wasm_runtime_validate_app_str_addr
- (Export)wasm_runtime_validate_native_addr
- (Export)wasm_runtime_addr_app_to_native
- (Export)wasm_runtime_addr_native_to_app
- (Export)wasm_runtime_get_app_addr_range
- aot_set_aux_stack
- aot_get_aux_stack
- wasm_set_aux_stack
- wasm_get_aux_stack
- aot_check_app_addr_and_convert, wasm_check_app_addr_and_convert
and jit_check_app_addr_and_convert
- wasm_exec_env_set_aux_stack
- wasm_exec_env_get_aux_stack
- wasm_cluster_create_thread
- wasm_cluster_allocate_aux_stack
- wasm_cluster_free_aux_stack
## Data structure changes
- WASMModule and AOTModule
- field aux_data_end, aux_heap_base and aux_stack_bottom
- WASMExecEnv
- field aux_stack_boundary and aux_stack_bottom
- AOTCompData
- field aux_data_end, aux_heap_base and aux_stack_bottom
- WASMMemoryInstance(AOTMemoryInstance)
- field memory_data_size and change __padding to is_memory64
- WASMModuleInstMemConsumption
- field total_size and memories_size
- WASMDebugExecutionMemory
- field start_offset and current_pos
- WASMCluster
- field stack_tops
## Components that are affected by the APIs and data structure changes
- libc-builtin
- libc-emcc
- libc-uvwasi
- libc-wasi
- Python and Go Language Embedding
- Interpreter Debug engine
- Multi-thread: lib-pthread, wasi-threads and thread manager
This commit is contained in:
@ -309,62 +309,62 @@ func (self *Instance) GetException() string {
|
||||
}
|
||||
|
||||
/* Allocate memory from the heap of the instance */
|
||||
func (self Instance) ModuleMalloc(size uint32) (uint32, *uint8) {
|
||||
var offset C.uint32_t
|
||||
func (self Instance) ModuleMalloc(size uint64) (uint64, *uint8) {
|
||||
var offset C.uint64_t
|
||||
native_addrs := make([]*uint8, 1, 1)
|
||||
ptr := unsafe.Pointer(&native_addrs[0])
|
||||
offset = C.wasm_runtime_module_malloc(self._instance, (C.uint32_t)(size),
|
||||
offset = C.wasm_runtime_module_malloc(self._instance, (C.uint64_t)(size),
|
||||
(*unsafe.Pointer)(ptr))
|
||||
return (uint32)(offset), native_addrs[0]
|
||||
return (uint64)(offset), native_addrs[0]
|
||||
}
|
||||
|
||||
/* Free memory to the heap of the instance */
|
||||
func (self Instance) ModuleFree(offset uint32) {
|
||||
C.wasm_runtime_module_free(self._instance, (C.uint32_t)(offset))
|
||||
func (self Instance) ModuleFree(offset uint64) {
|
||||
C.wasm_runtime_module_free(self._instance, (C.uint64_t)(offset))
|
||||
}
|
||||
|
||||
func (self Instance) ValidateAppAddr(app_offset uint32, size uint32) bool {
|
||||
func (self Instance) ValidateAppAddr(app_offset uint64, size uint64) bool {
|
||||
ret := C.wasm_runtime_validate_app_addr(self._instance,
|
||||
(C.uint32_t)(app_offset),
|
||||
(C.uint32_t)(size))
|
||||
(C.uint64_t)(app_offset),
|
||||
(C.uint64_t)(size))
|
||||
return (bool)(ret)
|
||||
}
|
||||
|
||||
func (self Instance) ValidateStrAddr(app_str_offset uint32) bool {
|
||||
func (self Instance) ValidateStrAddr(app_str_offset uint64) bool {
|
||||
ret := C.wasm_runtime_validate_app_str_addr(self._instance,
|
||||
(C.uint32_t)(app_str_offset))
|
||||
(C.uint64_t)(app_str_offset))
|
||||
return (bool)(ret)
|
||||
}
|
||||
|
||||
func (self Instance) ValidateNativeAddr(native_ptr *uint8, size uint32) bool {
|
||||
func (self Instance) ValidateNativeAddr(native_ptr *uint8, size uint64) bool {
|
||||
native_ptr_C := (unsafe.Pointer)(native_ptr)
|
||||
ret := C.wasm_runtime_validate_native_addr(self._instance,
|
||||
native_ptr_C,
|
||||
(C.uint32_t)(size))
|
||||
(C.uint64_t)(size))
|
||||
return (bool)(ret)
|
||||
}
|
||||
|
||||
func (self Instance) AddrAppToNative(app_offset uint32) *uint8 {
|
||||
func (self Instance) AddrAppToNative(app_offset uint64) *uint8 {
|
||||
native_ptr := C.wasm_runtime_addr_app_to_native(self._instance,
|
||||
(C.uint32_t)(app_offset))
|
||||
(C.uint64_t)(app_offset))
|
||||
return (*uint8)(native_ptr)
|
||||
}
|
||||
|
||||
func (self Instance) AddrNativeToApp(native_ptr *uint8) uint32 {
|
||||
func (self Instance) AddrNativeToApp(native_ptr *uint8) uint64 {
|
||||
native_ptr_C := (unsafe.Pointer)(native_ptr)
|
||||
offset := C.wasm_runtime_addr_native_to_app(self._instance,
|
||||
native_ptr_C)
|
||||
return (uint32)(offset)
|
||||
return (uint64)(offset)
|
||||
}
|
||||
|
||||
func (self Instance) GetAppAddrRange(app_offset uint32) (bool,
|
||||
uint32,
|
||||
uint32) {
|
||||
var start_offset, end_offset C.uint32_t
|
||||
func (self Instance) GetAppAddrRange(app_offset uint64) (bool,
|
||||
uint64,
|
||||
uint64) {
|
||||
var start_offset, end_offset C.uint64_t
|
||||
ret := C.wasm_runtime_get_app_addr_range(self._instance,
|
||||
(C.uint32_t)(app_offset),
|
||||
(C.uint64_t)(app_offset),
|
||||
&start_offset, &end_offset)
|
||||
return (bool)(ret), (uint32)(start_offset), (uint32)(end_offset)
|
||||
return (bool)(ret), (uint64)(start_offset), (uint64)(end_offset)
|
||||
}
|
||||
|
||||
func (self Instance) GetNativeAddrRange(native_ptr *uint8) (bool,
|
||||
|
||||
Reference in New Issue
Block a user