Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "aot_compiler.h"
|
|
|
|
#include "aot_emit_compare.h"
|
|
|
|
#include "aot_emit_conversion.h"
|
|
|
|
#include "aot_emit_memory.h"
|
|
|
|
#include "aot_emit_variable.h"
|
|
|
|
#include "aot_emit_const.h"
|
|
|
|
#include "aot_emit_exception.h"
|
|
|
|
#include "aot_emit_numberic.h"
|
|
|
|
#include "aot_emit_control.h"
|
|
|
|
#include "aot_emit_function.h"
|
|
|
|
#include "aot_emit_parametric.h"
|
2021-04-15 03:29:20 +00:00
|
|
|
#include "aot_emit_table.h"
|
2020-11-05 10:15:15 +00:00
|
|
|
#include "simd/simd_access_lanes.h"
|
|
|
|
#include "simd/simd_bitmask_extracts.h"
|
|
|
|
#include "simd/simd_bit_shifts.h"
|
|
|
|
#include "simd/simd_bitwise_ops.h"
|
|
|
|
#include "simd/simd_bool_reductions.h"
|
|
|
|
#include "simd/simd_comparisons.h"
|
2021-09-17 11:12:57 +00:00
|
|
|
#include "simd/simd_conversions.h"
|
2020-11-05 10:15:15 +00:00
|
|
|
#include "simd/simd_construct_values.h"
|
|
|
|
#include "simd/simd_conversions.h"
|
|
|
|
#include "simd/simd_floating_point.h"
|
|
|
|
#include "simd/simd_int_arith.h"
|
|
|
|
#include "simd/simd_load_store.h"
|
|
|
|
#include "simd/simd_sat_int_arith.h"
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
#include "../aot/aot_runtime.h"
|
|
|
|
#include "../interpreter/wasm_opcode.h"
|
|
|
|
#include <errno.h>
|
|
|
|
|
2021-09-29 05:36:46 +00:00
|
|
|
#if WASM_ENABLE_DEBUG_AOT != 0
|
|
|
|
#include "debug/dwarf_extractor.h"
|
|
|
|
#endif
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
#define CHECK_BUF(buf, buf_end, length) \
|
|
|
|
do { \
|
|
|
|
if (buf + length > buf_end) { \
|
|
|
|
aot_set_last_error("read leb failed: unexpected end."); \
|
|
|
|
return false; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
|
|
|
static bool
|
2021-10-13 07:13:00 +00:00
|
|
|
read_leb(const uint8 *buf, const uint8 *buf_end, uint32 *p_offset,
|
|
|
|
uint32 maxbits, bool sign, uint64 *p_result)
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
{
|
2021-10-13 07:13:00 +00:00
|
|
|
uint64 result = 0;
|
|
|
|
uint32 shift = 0;
|
|
|
|
uint32 bcnt = 0;
|
|
|
|
uint64 byte;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
CHECK_BUF(buf, buf_end, 1);
|
|
|
|
byte = buf[*p_offset];
|
|
|
|
*p_offset += 1;
|
|
|
|
result |= ((byte & 0x7f) << shift);
|
|
|
|
shift += 7;
|
|
|
|
if ((byte & 0x80) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
bcnt += 1;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
2021-12-20 11:22:28 +00:00
|
|
|
if (bcnt > (maxbits + 6) / 7) {
|
|
|
|
aot_set_last_error("read leb failed: "
|
|
|
|
"integer representation too long");
|
2021-10-13 07:13:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (sign && (shift < maxbits) && (byte & 0x40)) {
|
|
|
|
/* Sign extend */
|
|
|
|
result |= (~((uint64)0)) << shift;
|
|
|
|
}
|
|
|
|
*p_result = result;
|
|
|
|
return true;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
#define read_leb_uint32(p, p_end, res) \
|
|
|
|
do { \
|
|
|
|
uint32 off = 0; \
|
|
|
|
uint64 res64; \
|
|
|
|
if (!read_leb(p, p_end, &off, 32, false, &res64)) \
|
|
|
|
return false; \
|
|
|
|
p += off; \
|
|
|
|
res = (uint32)res64; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define read_leb_int32(p, p_end, res) \
|
|
|
|
do { \
|
|
|
|
uint32 off = 0; \
|
|
|
|
uint64 res64; \
|
|
|
|
if (!read_leb(p, p_end, &off, 32, true, &res64)) \
|
|
|
|
return false; \
|
|
|
|
p += off; \
|
|
|
|
res = (int32)res64; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define read_leb_int64(p, p_end, res) \
|
|
|
|
do { \
|
|
|
|
uint32 off = 0; \
|
|
|
|
uint64 res64; \
|
|
|
|
if (!read_leb(p, p_end, &off, 64, true, &res64)) \
|
|
|
|
return false; \
|
|
|
|
p += off; \
|
|
|
|
res = (int64)res64; \
|
|
|
|
} while (0)
|
|
|
|
|
2021-11-18 09:42:49 +00:00
|
|
|
/**
|
|
|
|
* Since Wamrc uses a full feature Wasm loader,
|
|
|
|
* add a post-validator here to run checks according
|
|
|
|
* to options, like enable_tail_call, enable_ref_types,
|
|
|
|
* and so on.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
aot_validate_wasm(AOTCompContext *comp_ctx)
|
|
|
|
{
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
/* Doesn't support multiple tables unless enabling reference type */
|
|
|
|
if (comp_ctx->comp_data->import_table_count
|
|
|
|
+ comp_ctx->comp_data->table_count
|
|
|
|
> 1) {
|
|
|
|
aot_set_last_error("multiple tables");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
#define COMPILE_ATOMIC_RMW(OP, NAME) \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I32_##NAME: \
|
|
|
|
bytes = 4; \
|
|
|
|
op_type = VALUE_TYPE_I32; \
|
|
|
|
goto OP_ATOMIC_##OP; \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_##NAME: \
|
|
|
|
bytes = 8; \
|
|
|
|
op_type = VALUE_TYPE_I64; \
|
|
|
|
goto OP_ATOMIC_##OP; \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I32_##NAME##8_U: \
|
|
|
|
bytes = 1; \
|
|
|
|
op_type = VALUE_TYPE_I32; \
|
|
|
|
goto OP_ATOMIC_##OP; \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I32_##NAME##16_U: \
|
|
|
|
bytes = 2; \
|
|
|
|
op_type = VALUE_TYPE_I32; \
|
|
|
|
goto OP_ATOMIC_##OP; \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_##NAME##8_U: \
|
|
|
|
bytes = 1; \
|
|
|
|
op_type = VALUE_TYPE_I64; \
|
|
|
|
goto OP_ATOMIC_##OP; \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_##NAME##16_U: \
|
|
|
|
bytes = 2; \
|
|
|
|
op_type = VALUE_TYPE_I64; \
|
|
|
|
goto OP_ATOMIC_##OP; \
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_##NAME##32_U: \
|
|
|
|
bytes = 4; \
|
|
|
|
op_type = VALUE_TYPE_I64; \
|
|
|
|
OP_ATOMIC_##OP : bin_op = LLVMAtomicRMWBinOp##OP; \
|
|
|
|
goto build_atomic_rmw;
|
2020-08-03 03:30:26 +00:00
|
|
|
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
static bool
|
|
|
|
aot_compile_func(AOTCompContext *comp_ctx, uint32 func_index)
|
|
|
|
{
|
2021-10-13 07:13:00 +00:00
|
|
|
AOTFuncContext *func_ctx = comp_ctx->func_ctxes[func_index];
|
|
|
|
uint8 *frame_ip = func_ctx->aot_func->code, opcode, *p_f32, *p_f64;
|
|
|
|
uint8 *frame_ip_end = frame_ip + func_ctx->aot_func->code_size;
|
|
|
|
uint8 *param_types = NULL;
|
|
|
|
uint8 *result_types = NULL;
|
|
|
|
uint8 value_type;
|
|
|
|
uint16 param_count;
|
|
|
|
uint16 result_count;
|
|
|
|
uint32 br_depth, *br_depths, br_count;
|
|
|
|
uint32 func_idx, type_idx, mem_idx, local_idx, global_idx, i;
|
|
|
|
uint32 bytes = 4, align, offset;
|
|
|
|
uint32 type_index;
|
|
|
|
bool sign = true;
|
|
|
|
int32 i32_const;
|
|
|
|
int64 i64_const;
|
|
|
|
float32 f32_const;
|
|
|
|
float64 f64_const;
|
|
|
|
AOTFuncType *func_type = NULL;
|
2021-09-29 05:36:46 +00:00
|
|
|
#if WASM_ENABLE_DEBUG_AOT != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
LLVMMetadataRef location;
|
2021-09-29 05:36:46 +00:00
|
|
|
#endif
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
/* Start to translate the opcodes */
|
|
|
|
LLVMPositionBuilderAtEnd(
|
|
|
|
comp_ctx->builder,
|
|
|
|
func_ctx->block_stack.block_list_head->llvm_entry_block);
|
|
|
|
while (frame_ip < frame_ip_end) {
|
|
|
|
opcode = *frame_ip++;
|
2021-09-29 05:36:46 +00:00
|
|
|
|
|
|
|
#if WASM_ENABLE_DEBUG_AOT != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
location = dwarf_gen_location(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
(frame_ip - 1) - comp_ctx->comp_data->wasm_module->buf_code);
|
|
|
|
LLVMSetCurrentDebugLocation2(comp_ctx->builder, location);
|
2021-09-29 05:36:46 +00:00
|
|
|
#endif
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
switch (opcode) {
|
|
|
|
case WASM_OP_UNREACHABLE:
|
|
|
|
if (!aot_compile_op_unreachable(comp_ctx, func_ctx, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_NOP:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_BLOCK:
|
|
|
|
case WASM_OP_LOOP:
|
|
|
|
case WASM_OP_IF:
|
2022-10-18 02:59:28 +00:00
|
|
|
{
|
2021-10-13 07:13:00 +00:00
|
|
|
value_type = *frame_ip++;
|
|
|
|
if (value_type == VALUE_TYPE_I32 || value_type == VALUE_TYPE_I64
|
|
|
|
|| value_type == VALUE_TYPE_F32
|
|
|
|
|| value_type == VALUE_TYPE_F64
|
|
|
|
|| value_type == VALUE_TYPE_V128
|
|
|
|
|| value_type == VALUE_TYPE_VOID
|
|
|
|
|| value_type == VALUE_TYPE_FUNCREF
|
|
|
|
|| value_type == VALUE_TYPE_EXTERNREF) {
|
|
|
|
param_count = 0;
|
|
|
|
param_types = NULL;
|
|
|
|
if (value_type == VALUE_TYPE_VOID) {
|
|
|
|
result_count = 0;
|
|
|
|
result_types = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result_count = 1;
|
|
|
|
result_types = &value_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
frame_ip--;
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, type_index);
|
|
|
|
func_type = comp_ctx->comp_data->func_types[type_index];
|
|
|
|
param_count = func_type->param_count;
|
|
|
|
param_types = func_type->types;
|
|
|
|
result_count = func_type->result_count;
|
|
|
|
result_types = func_type->types + param_count;
|
|
|
|
}
|
|
|
|
if (!aot_compile_op_block(
|
|
|
|
comp_ctx, func_ctx, &frame_ip, frame_ip_end,
|
|
|
|
(uint32)(LABEL_TYPE_BLOCK + opcode - WASM_OP_BLOCK),
|
|
|
|
param_count, param_types, result_count, result_types))
|
|
|
|
return false;
|
|
|
|
break;
|
2022-10-18 02:59:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case EXT_OP_BLOCK:
|
|
|
|
case EXT_OP_LOOP:
|
|
|
|
case EXT_OP_IF:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, type_index);
|
|
|
|
func_type = comp_ctx->comp_data->func_types[type_index];
|
|
|
|
param_count = func_type->param_count;
|
|
|
|
param_types = func_type->types;
|
|
|
|
result_count = func_type->result_count;
|
|
|
|
result_types = func_type->types + param_count;
|
|
|
|
if (!aot_compile_op_block(
|
|
|
|
comp_ctx, func_ctx, &frame_ip, frame_ip_end,
|
|
|
|
(uint32)(LABEL_TYPE_BLOCK + opcode - EXT_OP_BLOCK),
|
|
|
|
param_count, param_types, result_count, result_types))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2021-10-13 07:13:00 +00:00
|
|
|
|
|
|
|
case WASM_OP_ELSE:
|
|
|
|
if (!aot_compile_op_else(comp_ctx, func_ctx, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_END:
|
|
|
|
if (!aot_compile_op_end(comp_ctx, func_ctx, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_BR:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, br_depth);
|
|
|
|
if (!aot_compile_op_br(comp_ctx, func_ctx, br_depth, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_BR_IF:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, br_depth);
|
|
|
|
if (!aot_compile_op_br_if(comp_ctx, func_ctx, br_depth,
|
|
|
|
&frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_BR_TABLE:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, br_count);
|
|
|
|
if (!(br_depths = wasm_runtime_malloc((uint32)sizeof(uint32)
|
|
|
|
* (br_count + 1)))) {
|
|
|
|
aot_set_last_error("allocate memory failed.");
|
|
|
|
goto fail;
|
|
|
|
}
|
2022-04-23 11:15:55 +00:00
|
|
|
#if WASM_ENABLE_FAST_INTERP != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
for (i = 0; i <= br_count; i++)
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, br_depths[i]);
|
2022-04-23 11:15:55 +00:00
|
|
|
#else
|
|
|
|
for (i = 0; i <= br_count; i++)
|
|
|
|
br_depths[i] = *frame_ip++;
|
|
|
|
#endif
|
2021-10-13 07:13:00 +00:00
|
|
|
|
|
|
|
if (!aot_compile_op_br_table(comp_ctx, func_ctx, br_depths,
|
|
|
|
br_count, &frame_ip)) {
|
|
|
|
wasm_runtime_free(br_depths);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
wasm_runtime_free(br_depths);
|
|
|
|
break;
|
|
|
|
|
2022-04-23 11:15:55 +00:00
|
|
|
#if WASM_ENABLE_FAST_INTERP == 0
|
|
|
|
case EXT_OP_BR_TABLE_CACHE:
|
|
|
|
{
|
|
|
|
BrTableCache *node = bh_list_first_elem(
|
|
|
|
comp_ctx->comp_data->wasm_module->br_table_cache_list);
|
|
|
|
BrTableCache *node_next;
|
|
|
|
uint8 *p_opcode = frame_ip - 1;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, br_count);
|
|
|
|
|
|
|
|
while (node) {
|
|
|
|
node_next = bh_list_elem_next(node);
|
|
|
|
if (node->br_table_op_addr == p_opcode) {
|
|
|
|
br_depths = node->br_depths;
|
|
|
|
if (!aot_compile_op_br_table(comp_ctx, func_ctx,
|
|
|
|
br_depths, br_count,
|
|
|
|
&frame_ip)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
node = node_next;
|
|
|
|
}
|
|
|
|
bh_assert(node);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_RETURN:
|
|
|
|
if (!aot_compile_op_return(comp_ctx, func_ctx, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_CALL:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, func_idx);
|
|
|
|
if (!aot_compile_op_call(comp_ctx, func_ctx, func_idx, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_CALL_INDIRECT:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, type_idx);
|
2021-04-15 03:29:20 +00:00
|
|
|
|
|
|
|
#if WASM_ENABLE_REF_TYPES != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
if (comp_ctx->enable_ref_types) {
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
}
|
|
|
|
else
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif
|
2021-10-13 07:13:00 +00:00
|
|
|
{
|
|
|
|
frame_ip++;
|
|
|
|
tbl_idx = 0;
|
|
|
|
}
|
2021-04-15 03:29:20 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
if (!aot_compile_op_call_indirect(comp_ctx, func_ctx, type_idx,
|
|
|
|
tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2020-10-13 00:34:31 +00:00
|
|
|
#if WASM_ENABLE_TAIL_CALL != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_RETURN_CALL:
|
|
|
|
if (!comp_ctx->enable_tail_call) {
|
|
|
|
aot_set_last_error("unsupported opcode");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, func_idx);
|
|
|
|
if (!aot_compile_op_call(comp_ctx, func_ctx, func_idx, true))
|
|
|
|
return false;
|
|
|
|
if (!aot_compile_op_return(comp_ctx, func_ctx, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_RETURN_CALL_INDIRECT:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
if (!comp_ctx->enable_tail_call) {
|
|
|
|
aot_set_last_error("unsupported opcode");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, type_idx);
|
2021-04-15 03:29:20 +00:00
|
|
|
#if WASM_ENABLE_REF_TYPES != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
if (comp_ctx->enable_ref_types) {
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
}
|
|
|
|
else
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif
|
2021-10-13 07:13:00 +00:00
|
|
|
{
|
|
|
|
frame_ip++;
|
|
|
|
tbl_idx = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aot_compile_op_call_indirect(comp_ctx, func_ctx, type_idx,
|
|
|
|
tbl_idx))
|
|
|
|
return false;
|
|
|
|
if (!aot_compile_op_return(comp_ctx, func_ctx, &frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2020-10-13 00:34:31 +00:00
|
|
|
#endif /* end of WASM_ENABLE_TAIL_CALL */
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_DROP:
|
|
|
|
if (!aot_compile_op_drop(comp_ctx, func_ctx, true))
|
|
|
|
return false;
|
|
|
|
break;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_DROP_64:
|
|
|
|
if (!aot_compile_op_drop(comp_ctx, func_ctx, false))
|
|
|
|
return false;
|
|
|
|
break;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_SELECT:
|
|
|
|
if (!aot_compile_op_select(comp_ctx, func_ctx, true))
|
|
|
|
return false;
|
|
|
|
break;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_SELECT_64:
|
|
|
|
if (!aot_compile_op_select(comp_ctx, func_ctx, false))
|
|
|
|
return false;
|
|
|
|
break;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-04-15 03:29:20 +00:00
|
|
|
#if WASM_ENABLE_REF_TYPES != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_SELECT_T:
|
|
|
|
{
|
|
|
|
uint32 vec_len;
|
|
|
|
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, vec_len);
|
|
|
|
bh_assert(vec_len == 1);
|
|
|
|
(void)vec_len;
|
|
|
|
|
|
|
|
type_idx = *frame_ip++;
|
|
|
|
if (!aot_compile_op_select(comp_ctx, func_ctx,
|
|
|
|
(type_idx != VALUE_TYPE_I64)
|
|
|
|
&& (type_idx != VALUE_TYPE_F64)))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_TABLE_GET:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
if (!aot_compile_op_table_get(comp_ctx, func_ctx, tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_TABLE_SET:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
if (!aot_compile_op_table_set(comp_ctx, func_ctx, tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_REF_NULL:
|
|
|
|
{
|
|
|
|
uint32 type;
|
|
|
|
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, type);
|
|
|
|
|
|
|
|
if (!aot_compile_op_ref_null(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
(void)type;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_REF_IS_NULL:
|
|
|
|
{
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aot_compile_op_ref_is_null(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_REF_FUNC:
|
|
|
|
{
|
|
|
|
if (!comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, func_idx);
|
|
|
|
if (!aot_compile_op_ref_func(comp_ctx, func_ctx, func_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_GET_LOCAL:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, local_idx);
|
|
|
|
if (!aot_compile_op_get_local(comp_ctx, func_ctx, local_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_SET_LOCAL:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, local_idx);
|
|
|
|
if (!aot_compile_op_set_local(comp_ctx, func_ctx, local_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_TEE_LOCAL:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, local_idx);
|
|
|
|
if (!aot_compile_op_tee_local(comp_ctx, func_ctx, local_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_GET_GLOBAL:
|
2022-03-24 06:14:42 +00:00
|
|
|
case WASM_OP_GET_GLOBAL_64:
|
2021-10-13 07:13:00 +00:00
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, global_idx);
|
|
|
|
if (!aot_compile_op_get_global(comp_ctx, func_ctx, global_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_SET_GLOBAL:
|
|
|
|
case WASM_OP_SET_GLOBAL_64:
|
|
|
|
case WASM_OP_SET_GLOBAL_AUX_STACK:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, global_idx);
|
|
|
|
if (!aot_compile_op_set_global(
|
|
|
|
comp_ctx, func_ctx, global_idx,
|
|
|
|
opcode == WASM_OP_SET_GLOBAL_AUX_STACK ? true : false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_LOAD:
|
|
|
|
bytes = 4;
|
|
|
|
sign = true;
|
|
|
|
goto op_i32_load;
|
|
|
|
case WASM_OP_I32_LOAD8_S:
|
|
|
|
case WASM_OP_I32_LOAD8_U:
|
|
|
|
bytes = 1;
|
|
|
|
sign = (opcode == WASM_OP_I32_LOAD8_S) ? true : false;
|
|
|
|
goto op_i32_load;
|
|
|
|
case WASM_OP_I32_LOAD16_S:
|
|
|
|
case WASM_OP_I32_LOAD16_U:
|
|
|
|
bytes = 2;
|
|
|
|
sign = (opcode == WASM_OP_I32_LOAD16_S) ? true : false;
|
|
|
|
op_i32_load:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_i32_load(comp_ctx, func_ctx, align, offset,
|
|
|
|
bytes, sign, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_LOAD:
|
|
|
|
bytes = 8;
|
|
|
|
sign = true;
|
|
|
|
goto op_i64_load;
|
|
|
|
case WASM_OP_I64_LOAD8_S:
|
|
|
|
case WASM_OP_I64_LOAD8_U:
|
|
|
|
bytes = 1;
|
|
|
|
sign = (opcode == WASM_OP_I64_LOAD8_S) ? true : false;
|
|
|
|
goto op_i64_load;
|
|
|
|
case WASM_OP_I64_LOAD16_S:
|
|
|
|
case WASM_OP_I64_LOAD16_U:
|
|
|
|
bytes = 2;
|
|
|
|
sign = (opcode == WASM_OP_I64_LOAD16_S) ? true : false;
|
|
|
|
goto op_i64_load;
|
|
|
|
case WASM_OP_I64_LOAD32_S:
|
|
|
|
case WASM_OP_I64_LOAD32_U:
|
|
|
|
bytes = 4;
|
|
|
|
sign = (opcode == WASM_OP_I64_LOAD32_S) ? true : false;
|
|
|
|
op_i64_load:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_i64_load(comp_ctx, func_ctx, align, offset,
|
|
|
|
bytes, sign, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_LOAD:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_f32_load(comp_ctx, func_ctx, align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_LOAD:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_f64_load(comp_ctx, func_ctx, align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_STORE:
|
|
|
|
bytes = 4;
|
|
|
|
goto op_i32_store;
|
|
|
|
case WASM_OP_I32_STORE8:
|
|
|
|
bytes = 1;
|
|
|
|
goto op_i32_store;
|
|
|
|
case WASM_OP_I32_STORE16:
|
|
|
|
bytes = 2;
|
|
|
|
op_i32_store:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_i32_store(comp_ctx, func_ctx, align, offset,
|
|
|
|
bytes, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_STORE:
|
|
|
|
bytes = 8;
|
|
|
|
goto op_i64_store;
|
|
|
|
case WASM_OP_I64_STORE8:
|
|
|
|
bytes = 1;
|
|
|
|
goto op_i64_store;
|
|
|
|
case WASM_OP_I64_STORE16:
|
|
|
|
bytes = 2;
|
|
|
|
goto op_i64_store;
|
|
|
|
case WASM_OP_I64_STORE32:
|
|
|
|
bytes = 4;
|
|
|
|
op_i64_store:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_i64_store(comp_ctx, func_ctx, align, offset,
|
|
|
|
bytes, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_STORE:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_f32_store(comp_ctx, func_ctx, align,
|
|
|
|
offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_STORE:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_op_f64_store(comp_ctx, func_ctx, align,
|
|
|
|
offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_MEMORY_SIZE:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, mem_idx);
|
|
|
|
if (!aot_compile_op_memory_size(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
(void)mem_idx;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_MEMORY_GROW:
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, mem_idx);
|
|
|
|
if (!aot_compile_op_memory_grow(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_CONST:
|
|
|
|
read_leb_int32(frame_ip, frame_ip_end, i32_const);
|
|
|
|
if (!aot_compile_op_i32_const(comp_ctx, func_ctx, i32_const))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_CONST:
|
|
|
|
read_leb_int64(frame_ip, frame_ip_end, i64_const);
|
|
|
|
if (!aot_compile_op_i64_const(comp_ctx, func_ctx, i64_const))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_CONST:
|
|
|
|
p_f32 = (uint8 *)&f32_const;
|
|
|
|
for (i = 0; i < sizeof(float32); i++)
|
|
|
|
*p_f32++ = *frame_ip++;
|
|
|
|
if (!aot_compile_op_f32_const(comp_ctx, func_ctx, f32_const))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_CONST:
|
|
|
|
p_f64 = (uint8 *)&f64_const;
|
|
|
|
for (i = 0; i < sizeof(float64); i++)
|
|
|
|
*p_f64++ = *frame_ip++;
|
|
|
|
if (!aot_compile_op_f64_const(comp_ctx, func_ctx, f64_const))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_EQZ:
|
|
|
|
case WASM_OP_I32_EQ:
|
|
|
|
case WASM_OP_I32_NE:
|
|
|
|
case WASM_OP_I32_LT_S:
|
|
|
|
case WASM_OP_I32_LT_U:
|
|
|
|
case WASM_OP_I32_GT_S:
|
|
|
|
case WASM_OP_I32_GT_U:
|
|
|
|
case WASM_OP_I32_LE_S:
|
|
|
|
case WASM_OP_I32_LE_U:
|
|
|
|
case WASM_OP_I32_GE_S:
|
|
|
|
case WASM_OP_I32_GE_U:
|
|
|
|
if (!aot_compile_op_i32_compare(
|
|
|
|
comp_ctx, func_ctx, INT_EQZ + opcode - WASM_OP_I32_EQZ))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_EQZ:
|
|
|
|
case WASM_OP_I64_EQ:
|
|
|
|
case WASM_OP_I64_NE:
|
|
|
|
case WASM_OP_I64_LT_S:
|
|
|
|
case WASM_OP_I64_LT_U:
|
|
|
|
case WASM_OP_I64_GT_S:
|
|
|
|
case WASM_OP_I64_GT_U:
|
|
|
|
case WASM_OP_I64_LE_S:
|
|
|
|
case WASM_OP_I64_LE_U:
|
|
|
|
case WASM_OP_I64_GE_S:
|
|
|
|
case WASM_OP_I64_GE_U:
|
|
|
|
if (!aot_compile_op_i64_compare(
|
|
|
|
comp_ctx, func_ctx, INT_EQZ + opcode - WASM_OP_I64_EQZ))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_EQ:
|
|
|
|
case WASM_OP_F32_NE:
|
|
|
|
case WASM_OP_F32_LT:
|
|
|
|
case WASM_OP_F32_GT:
|
|
|
|
case WASM_OP_F32_LE:
|
|
|
|
case WASM_OP_F32_GE:
|
|
|
|
if (!aot_compile_op_f32_compare(
|
|
|
|
comp_ctx, func_ctx, FLOAT_EQ + opcode - WASM_OP_F32_EQ))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_EQ:
|
|
|
|
case WASM_OP_F64_NE:
|
|
|
|
case WASM_OP_F64_LT:
|
|
|
|
case WASM_OP_F64_GT:
|
|
|
|
case WASM_OP_F64_LE:
|
|
|
|
case WASM_OP_F64_GE:
|
|
|
|
if (!aot_compile_op_f64_compare(
|
|
|
|
comp_ctx, func_ctx, FLOAT_EQ + opcode - WASM_OP_F64_EQ))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_CLZ:
|
|
|
|
if (!aot_compile_op_i32_clz(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_CTZ:
|
|
|
|
if (!aot_compile_op_i32_ctz(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_POPCNT:
|
|
|
|
if (!aot_compile_op_i32_popcnt(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_ADD:
|
|
|
|
case WASM_OP_I32_SUB:
|
|
|
|
case WASM_OP_I32_MUL:
|
|
|
|
case WASM_OP_I32_DIV_S:
|
|
|
|
case WASM_OP_I32_DIV_U:
|
|
|
|
case WASM_OP_I32_REM_S:
|
|
|
|
case WASM_OP_I32_REM_U:
|
|
|
|
if (!aot_compile_op_i32_arithmetic(
|
|
|
|
comp_ctx, func_ctx, INT_ADD + opcode - WASM_OP_I32_ADD,
|
|
|
|
&frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_AND:
|
|
|
|
case WASM_OP_I32_OR:
|
|
|
|
case WASM_OP_I32_XOR:
|
|
|
|
if (!aot_compile_op_i32_bitwise(
|
|
|
|
comp_ctx, func_ctx, INT_SHL + opcode - WASM_OP_I32_AND))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_SHL:
|
|
|
|
case WASM_OP_I32_SHR_S:
|
|
|
|
case WASM_OP_I32_SHR_U:
|
|
|
|
case WASM_OP_I32_ROTL:
|
|
|
|
case WASM_OP_I32_ROTR:
|
|
|
|
if (!aot_compile_op_i32_shift(
|
|
|
|
comp_ctx, func_ctx, INT_SHL + opcode - WASM_OP_I32_SHL))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_CLZ:
|
|
|
|
if (!aot_compile_op_i64_clz(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_CTZ:
|
|
|
|
if (!aot_compile_op_i64_ctz(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_POPCNT:
|
|
|
|
if (!aot_compile_op_i64_popcnt(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_ADD:
|
|
|
|
case WASM_OP_I64_SUB:
|
|
|
|
case WASM_OP_I64_MUL:
|
|
|
|
case WASM_OP_I64_DIV_S:
|
|
|
|
case WASM_OP_I64_DIV_U:
|
|
|
|
case WASM_OP_I64_REM_S:
|
|
|
|
case WASM_OP_I64_REM_U:
|
|
|
|
if (!aot_compile_op_i64_arithmetic(
|
|
|
|
comp_ctx, func_ctx, INT_ADD + opcode - WASM_OP_I64_ADD,
|
|
|
|
&frame_ip))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_AND:
|
|
|
|
case WASM_OP_I64_OR:
|
|
|
|
case WASM_OP_I64_XOR:
|
|
|
|
if (!aot_compile_op_i64_bitwise(
|
|
|
|
comp_ctx, func_ctx, INT_SHL + opcode - WASM_OP_I64_AND))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_SHL:
|
|
|
|
case WASM_OP_I64_SHR_S:
|
|
|
|
case WASM_OP_I64_SHR_U:
|
|
|
|
case WASM_OP_I64_ROTL:
|
|
|
|
case WASM_OP_I64_ROTR:
|
|
|
|
if (!aot_compile_op_i64_shift(
|
|
|
|
comp_ctx, func_ctx, INT_SHL + opcode - WASM_OP_I64_SHL))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_ABS:
|
|
|
|
case WASM_OP_F32_NEG:
|
|
|
|
case WASM_OP_F32_CEIL:
|
|
|
|
case WASM_OP_F32_FLOOR:
|
|
|
|
case WASM_OP_F32_TRUNC:
|
|
|
|
case WASM_OP_F32_NEAREST:
|
|
|
|
case WASM_OP_F32_SQRT:
|
|
|
|
if (!aot_compile_op_f32_math(comp_ctx, func_ctx,
|
|
|
|
FLOAT_ABS + opcode
|
|
|
|
- WASM_OP_F32_ABS))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_ADD:
|
|
|
|
case WASM_OP_F32_SUB:
|
|
|
|
case WASM_OP_F32_MUL:
|
|
|
|
case WASM_OP_F32_DIV:
|
|
|
|
case WASM_OP_F32_MIN:
|
|
|
|
case WASM_OP_F32_MAX:
|
|
|
|
if (!aot_compile_op_f32_arithmetic(comp_ctx, func_ctx,
|
|
|
|
FLOAT_ADD + opcode
|
|
|
|
- WASM_OP_F32_ADD))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_COPYSIGN:
|
|
|
|
if (!aot_compile_op_f32_copysign(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_ABS:
|
|
|
|
case WASM_OP_F64_NEG:
|
|
|
|
case WASM_OP_F64_CEIL:
|
|
|
|
case WASM_OP_F64_FLOOR:
|
|
|
|
case WASM_OP_F64_TRUNC:
|
|
|
|
case WASM_OP_F64_NEAREST:
|
|
|
|
case WASM_OP_F64_SQRT:
|
|
|
|
if (!aot_compile_op_f64_math(comp_ctx, func_ctx,
|
|
|
|
FLOAT_ABS + opcode
|
|
|
|
- WASM_OP_F64_ABS))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_ADD:
|
|
|
|
case WASM_OP_F64_SUB:
|
|
|
|
case WASM_OP_F64_MUL:
|
|
|
|
case WASM_OP_F64_DIV:
|
|
|
|
case WASM_OP_F64_MIN:
|
|
|
|
case WASM_OP_F64_MAX:
|
|
|
|
if (!aot_compile_op_f64_arithmetic(comp_ctx, func_ctx,
|
|
|
|
FLOAT_ADD + opcode
|
|
|
|
- WASM_OP_F64_ADD))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_COPYSIGN:
|
|
|
|
if (!aot_compile_op_f64_copysign(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_WRAP_I64:
|
|
|
|
if (!aot_compile_op_i32_wrap_i64(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_TRUNC_S_F32:
|
|
|
|
case WASM_OP_I32_TRUNC_U_F32:
|
|
|
|
sign = (opcode == WASM_OP_I32_TRUNC_S_F32) ? true : false;
|
|
|
|
if (!aot_compile_op_i32_trunc_f32(comp_ctx, func_ctx, sign,
|
|
|
|
false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_TRUNC_S_F64:
|
|
|
|
case WASM_OP_I32_TRUNC_U_F64:
|
|
|
|
sign = (opcode == WASM_OP_I32_TRUNC_S_F64) ? true : false;
|
|
|
|
if (!aot_compile_op_i32_trunc_f64(comp_ctx, func_ctx, sign,
|
|
|
|
false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_EXTEND_S_I32:
|
|
|
|
case WASM_OP_I64_EXTEND_U_I32:
|
|
|
|
sign = (opcode == WASM_OP_I64_EXTEND_S_I32) ? true : false;
|
|
|
|
if (!aot_compile_op_i64_extend_i32(comp_ctx, func_ctx, sign))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_TRUNC_S_F32:
|
|
|
|
case WASM_OP_I64_TRUNC_U_F32:
|
|
|
|
sign = (opcode == WASM_OP_I64_TRUNC_S_F32) ? true : false;
|
|
|
|
if (!aot_compile_op_i64_trunc_f32(comp_ctx, func_ctx, sign,
|
|
|
|
false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_TRUNC_S_F64:
|
|
|
|
case WASM_OP_I64_TRUNC_U_F64:
|
|
|
|
sign = (opcode == WASM_OP_I64_TRUNC_S_F64) ? true : false;
|
|
|
|
if (!aot_compile_op_i64_trunc_f64(comp_ctx, func_ctx, sign,
|
|
|
|
false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_CONVERT_S_I32:
|
|
|
|
case WASM_OP_F32_CONVERT_U_I32:
|
|
|
|
sign = (opcode == WASM_OP_F32_CONVERT_S_I32) ? true : false;
|
|
|
|
if (!aot_compile_op_f32_convert_i32(comp_ctx, func_ctx, sign))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_CONVERT_S_I64:
|
|
|
|
case WASM_OP_F32_CONVERT_U_I64:
|
|
|
|
sign = (opcode == WASM_OP_F32_CONVERT_S_I64) ? true : false;
|
|
|
|
if (!aot_compile_op_f32_convert_i64(comp_ctx, func_ctx, sign))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_DEMOTE_F64:
|
|
|
|
if (!aot_compile_op_f32_demote_f64(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_CONVERT_S_I32:
|
|
|
|
case WASM_OP_F64_CONVERT_U_I32:
|
|
|
|
sign = (opcode == WASM_OP_F64_CONVERT_S_I32) ? true : false;
|
|
|
|
if (!aot_compile_op_f64_convert_i32(comp_ctx, func_ctx, sign))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_CONVERT_S_I64:
|
|
|
|
case WASM_OP_F64_CONVERT_U_I64:
|
|
|
|
sign = (opcode == WASM_OP_F64_CONVERT_S_I64) ? true : false;
|
|
|
|
if (!aot_compile_op_f64_convert_i64(comp_ctx, func_ctx, sign))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_PROMOTE_F32:
|
|
|
|
if (!aot_compile_op_f64_promote_f32(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_REINTERPRET_F32:
|
|
|
|
if (!aot_compile_op_i32_reinterpret_f32(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_REINTERPRET_F64:
|
|
|
|
if (!aot_compile_op_i64_reinterpret_f64(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F32_REINTERPRET_I32:
|
|
|
|
if (!aot_compile_op_f32_reinterpret_i32(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_F64_REINTERPRET_I64:
|
|
|
|
if (!aot_compile_op_f64_reinterpret_i64(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_EXTEND8_S:
|
|
|
|
if (!aot_compile_op_i32_extend_i32(comp_ctx, func_ctx, 8))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I32_EXTEND16_S:
|
|
|
|
if (!aot_compile_op_i32_extend_i32(comp_ctx, func_ctx, 16))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_EXTEND8_S:
|
|
|
|
if (!aot_compile_op_i64_extend_i64(comp_ctx, func_ctx, 8))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_EXTEND16_S:
|
|
|
|
if (!aot_compile_op_i64_extend_i64(comp_ctx, func_ctx, 16))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_I64_EXTEND32_S:
|
|
|
|
if (!aot_compile_op_i64_extend_i64(comp_ctx, func_ctx, 32))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_MISC_PREFIX:
|
|
|
|
{
|
|
|
|
uint32 opcode1;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, opcode1);
|
|
|
|
opcode = (uint32)opcode1;
|
|
|
|
|
2021-11-18 09:42:49 +00:00
|
|
|
#if WASM_ENABLE_BULK_MEMORY != 0
|
|
|
|
if (WASM_OP_MEMORY_INIT <= opcode
|
|
|
|
&& opcode <= WASM_OP_MEMORY_FILL
|
|
|
|
&& !comp_ctx->enable_bulk_memory) {
|
|
|
|
goto unsupport_bulk_memory;
|
|
|
|
}
|
|
|
|
#endif
|
2021-04-15 03:29:20 +00:00
|
|
|
|
|
|
|
#if WASM_ENABLE_REF_TYPES != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
if (WASM_OP_TABLE_INIT <= opcode && opcode <= WASM_OP_TABLE_FILL
|
|
|
|
&& !comp_ctx->enable_ref_types) {
|
|
|
|
goto unsupport_ref_types;
|
|
|
|
}
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
switch (opcode) {
|
|
|
|
case WASM_OP_I32_TRUNC_SAT_S_F32:
|
|
|
|
case WASM_OP_I32_TRUNC_SAT_U_F32:
|
|
|
|
sign = (opcode == WASM_OP_I32_TRUNC_SAT_S_F32) ? true
|
|
|
|
: false;
|
|
|
|
if (!aot_compile_op_i32_trunc_f32(comp_ctx, func_ctx,
|
|
|
|
sign, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case WASM_OP_I32_TRUNC_SAT_S_F64:
|
|
|
|
case WASM_OP_I32_TRUNC_SAT_U_F64:
|
|
|
|
sign = (opcode == WASM_OP_I32_TRUNC_SAT_S_F64) ? true
|
|
|
|
: false;
|
|
|
|
if (!aot_compile_op_i32_trunc_f64(comp_ctx, func_ctx,
|
|
|
|
sign, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case WASM_OP_I64_TRUNC_SAT_S_F32:
|
|
|
|
case WASM_OP_I64_TRUNC_SAT_U_F32:
|
|
|
|
sign = (opcode == WASM_OP_I64_TRUNC_SAT_S_F32) ? true
|
|
|
|
: false;
|
|
|
|
if (!aot_compile_op_i64_trunc_f32(comp_ctx, func_ctx,
|
|
|
|
sign, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case WASM_OP_I64_TRUNC_SAT_S_F64:
|
|
|
|
case WASM_OP_I64_TRUNC_SAT_U_F64:
|
|
|
|
sign = (opcode == WASM_OP_I64_TRUNC_SAT_S_F64) ? true
|
|
|
|
: false;
|
|
|
|
if (!aot_compile_op_i64_trunc_f64(comp_ctx, func_ctx,
|
|
|
|
sign, true))
|
|
|
|
return false;
|
|
|
|
break;
|
2020-06-02 06:53:06 +00:00
|
|
|
#if WASM_ENABLE_BULK_MEMORY != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_MEMORY_INIT:
|
|
|
|
{
|
|
|
|
uint32 seg_index;
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, seg_index);
|
|
|
|
frame_ip++;
|
|
|
|
if (!aot_compile_op_memory_init(comp_ctx, func_ctx,
|
|
|
|
seg_index))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_DATA_DROP:
|
|
|
|
{
|
|
|
|
uint32 seg_index;
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, seg_index);
|
|
|
|
if (!aot_compile_op_data_drop(comp_ctx, func_ctx,
|
|
|
|
seg_index))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_MEMORY_COPY:
|
|
|
|
{
|
|
|
|
frame_ip += 2;
|
|
|
|
if (!aot_compile_op_memory_copy(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_MEMORY_FILL:
|
|
|
|
{
|
|
|
|
frame_ip++;
|
|
|
|
if (!aot_compile_op_memory_fill(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2020-06-02 06:53:06 +00:00
|
|
|
#endif /* WASM_ENABLE_BULK_MEMORY */
|
2021-04-15 03:29:20 +00:00
|
|
|
#if WASM_ENABLE_REF_TYPES != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_TABLE_INIT:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx, tbl_seg_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_seg_idx);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
if (!aot_compile_op_table_init(comp_ctx, func_ctx,
|
|
|
|
tbl_idx, tbl_seg_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_ELEM_DROP:
|
|
|
|
{
|
|
|
|
uint32 tbl_seg_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_seg_idx);
|
|
|
|
if (!aot_compile_op_elem_drop(comp_ctx, func_ctx,
|
|
|
|
tbl_seg_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_TABLE_COPY:
|
|
|
|
{
|
|
|
|
uint32 src_tbl_idx, dst_tbl_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, dst_tbl_idx);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, src_tbl_idx);
|
|
|
|
if (!aot_compile_op_table_copy(
|
|
|
|
comp_ctx, func_ctx, src_tbl_idx, dst_tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_TABLE_GROW:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
if (!aot_compile_op_table_grow(comp_ctx, func_ctx,
|
|
|
|
tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WASM_OP_TABLE_SIZE:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
if (!aot_compile_op_table_size(comp_ctx, func_ctx,
|
|
|
|
tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WASM_OP_TABLE_FILL:
|
|
|
|
{
|
|
|
|
uint32 tbl_idx;
|
|
|
|
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, tbl_idx);
|
|
|
|
if (!aot_compile_op_table_fill(comp_ctx, func_ctx,
|
|
|
|
tbl_idx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif /* WASM_ENABLE_REF_TYPES */
|
2021-10-13 07:13:00 +00:00
|
|
|
default:
|
|
|
|
aot_set_last_error("unsupported opcode");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-04-15 03:29:20 +00:00
|
|
|
|
2020-08-03 03:30:26 +00:00
|
|
|
#if WASM_ENABLE_SHARED_MEMORY != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_ATOMIC_PREFIX:
|
|
|
|
{
|
|
|
|
uint8 bin_op, op_type;
|
|
|
|
|
|
|
|
if (frame_ip < frame_ip_end) {
|
|
|
|
opcode = *frame_ip++;
|
|
|
|
}
|
|
|
|
if (opcode != WASM_OP_ATOMIC_FENCE) {
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
}
|
|
|
|
switch (opcode) {
|
|
|
|
case WASM_OP_ATOMIC_WAIT32:
|
|
|
|
if (!aot_compile_op_atomic_wait(comp_ctx, func_ctx,
|
|
|
|
VALUE_TYPE_I32, align,
|
|
|
|
offset, 4))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case WASM_OP_ATOMIC_WAIT64:
|
|
|
|
if (!aot_compile_op_atomic_wait(comp_ctx, func_ctx,
|
|
|
|
VALUE_TYPE_I64, align,
|
|
|
|
offset, 8))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
case WASM_OP_ATOMIC_NOTIFY:
|
|
|
|
if (!aot_compiler_op_atomic_notify(
|
|
|
|
comp_ctx, func_ctx, align, offset, bytes))
|
|
|
|
return false;
|
|
|
|
break;
|
2022-10-13 05:53:09 +00:00
|
|
|
case WASM_OP_ATOMIC_FENCE:
|
|
|
|
/* Skip memory index */
|
|
|
|
frame_ip++;
|
|
|
|
break;
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_ATOMIC_I32_LOAD:
|
|
|
|
bytes = 4;
|
|
|
|
goto op_atomic_i32_load;
|
|
|
|
case WASM_OP_ATOMIC_I32_LOAD8_U:
|
|
|
|
bytes = 1;
|
|
|
|
goto op_atomic_i32_load;
|
|
|
|
case WASM_OP_ATOMIC_I32_LOAD16_U:
|
|
|
|
bytes = 2;
|
|
|
|
op_atomic_i32_load:
|
|
|
|
if (!aot_compile_op_i32_load(comp_ctx, func_ctx, align,
|
|
|
|
offset, bytes, sign, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_ATOMIC_I64_LOAD:
|
|
|
|
bytes = 8;
|
|
|
|
goto op_atomic_i64_load;
|
|
|
|
case WASM_OP_ATOMIC_I64_LOAD8_U:
|
|
|
|
bytes = 1;
|
|
|
|
goto op_atomic_i64_load;
|
|
|
|
case WASM_OP_ATOMIC_I64_LOAD16_U:
|
|
|
|
bytes = 2;
|
|
|
|
goto op_atomic_i64_load;
|
|
|
|
case WASM_OP_ATOMIC_I64_LOAD32_U:
|
|
|
|
bytes = 4;
|
|
|
|
op_atomic_i64_load:
|
|
|
|
if (!aot_compile_op_i64_load(comp_ctx, func_ctx, align,
|
|
|
|
offset, bytes, sign, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_ATOMIC_I32_STORE:
|
|
|
|
bytes = 4;
|
|
|
|
goto op_atomic_i32_store;
|
|
|
|
case WASM_OP_ATOMIC_I32_STORE8:
|
|
|
|
bytes = 1;
|
|
|
|
goto op_atomic_i32_store;
|
|
|
|
case WASM_OP_ATOMIC_I32_STORE16:
|
|
|
|
bytes = 2;
|
|
|
|
op_atomic_i32_store:
|
|
|
|
if (!aot_compile_op_i32_store(comp_ctx, func_ctx, align,
|
|
|
|
offset, bytes, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_ATOMIC_I64_STORE:
|
|
|
|
bytes = 8;
|
|
|
|
goto op_atomic_i64_store;
|
|
|
|
case WASM_OP_ATOMIC_I64_STORE8:
|
|
|
|
bytes = 1;
|
|
|
|
goto op_atomic_i64_store;
|
|
|
|
case WASM_OP_ATOMIC_I64_STORE16:
|
|
|
|
bytes = 2;
|
|
|
|
goto op_atomic_i64_store;
|
|
|
|
case WASM_OP_ATOMIC_I64_STORE32:
|
|
|
|
bytes = 4;
|
|
|
|
op_atomic_i64_store:
|
|
|
|
if (!aot_compile_op_i64_store(comp_ctx, func_ctx, align,
|
|
|
|
offset, bytes, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WASM_OP_ATOMIC_RMW_I32_CMPXCHG:
|
|
|
|
bytes = 4;
|
|
|
|
op_type = VALUE_TYPE_I32;
|
|
|
|
goto op_atomic_cmpxchg;
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_CMPXCHG:
|
|
|
|
bytes = 8;
|
|
|
|
op_type = VALUE_TYPE_I64;
|
|
|
|
goto op_atomic_cmpxchg;
|
|
|
|
case WASM_OP_ATOMIC_RMW_I32_CMPXCHG8_U:
|
|
|
|
bytes = 1;
|
|
|
|
op_type = VALUE_TYPE_I32;
|
|
|
|
goto op_atomic_cmpxchg;
|
|
|
|
case WASM_OP_ATOMIC_RMW_I32_CMPXCHG16_U:
|
|
|
|
bytes = 2;
|
|
|
|
op_type = VALUE_TYPE_I32;
|
|
|
|
goto op_atomic_cmpxchg;
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_CMPXCHG8_U:
|
|
|
|
bytes = 1;
|
|
|
|
op_type = VALUE_TYPE_I64;
|
|
|
|
goto op_atomic_cmpxchg;
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_CMPXCHG16_U:
|
|
|
|
bytes = 2;
|
|
|
|
op_type = VALUE_TYPE_I64;
|
|
|
|
goto op_atomic_cmpxchg;
|
|
|
|
case WASM_OP_ATOMIC_RMW_I64_CMPXCHG32_U:
|
|
|
|
bytes = 4;
|
|
|
|
op_type = VALUE_TYPE_I64;
|
|
|
|
op_atomic_cmpxchg:
|
|
|
|
if (!aot_compile_op_atomic_cmpxchg(comp_ctx, func_ctx,
|
|
|
|
op_type, align,
|
|
|
|
offset, bytes))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
COMPILE_ATOMIC_RMW(Add, ADD);
|
|
|
|
COMPILE_ATOMIC_RMW(Sub, SUB);
|
|
|
|
COMPILE_ATOMIC_RMW(And, AND);
|
|
|
|
COMPILE_ATOMIC_RMW(Or, OR);
|
|
|
|
COMPILE_ATOMIC_RMW(Xor, XOR);
|
|
|
|
COMPILE_ATOMIC_RMW(Xchg, XCHG);
|
|
|
|
|
|
|
|
build_atomic_rmw:
|
|
|
|
if (!aot_compile_op_atomic_rmw(comp_ctx, func_ctx,
|
|
|
|
bin_op, op_type, align,
|
|
|
|
offset, bytes))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aot_set_last_error("unsupported opcode");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2020-08-03 03:30:26 +00:00
|
|
|
#endif /* end of WASM_ENABLE_SHARED_MEMORY */
|
2020-04-30 09:52:11 +00:00
|
|
|
|
2020-11-05 10:15:15 +00:00
|
|
|
#if WASM_ENABLE_SIMD != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
case WASM_OP_SIMD_PREFIX:
|
|
|
|
{
|
|
|
|
if (!comp_ctx->enable_simd) {
|
|
|
|
goto unsupport_simd;
|
|
|
|
}
|
|
|
|
|
|
|
|
opcode = *frame_ip++;
|
|
|
|
/* follow the order of enum WASMSimdEXTOpcode in
|
|
|
|
wasm_opcode.h */
|
|
|
|
switch (opcode) {
|
|
|
|
/* Memory instruction */
|
|
|
|
case SIMD_v128_load:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_v128_load(comp_ctx, func_ctx,
|
|
|
|
align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v128_load8x8_s:
|
|
|
|
case SIMD_v128_load8x8_u:
|
|
|
|
case SIMD_v128_load16x4_s:
|
|
|
|
case SIMD_v128_load16x4_u:
|
|
|
|
case SIMD_v128_load32x2_s:
|
|
|
|
case SIMD_v128_load32x2_u:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_load_extend(
|
|
|
|
comp_ctx, func_ctx, opcode, align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v128_load8_splat:
|
|
|
|
case SIMD_v128_load16_splat:
|
|
|
|
case SIMD_v128_load32_splat:
|
|
|
|
case SIMD_v128_load64_splat:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_load_splat(comp_ctx, func_ctx,
|
|
|
|
opcode, align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v128_store:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_v128_store(comp_ctx, func_ctx,
|
|
|
|
align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Basic operation */
|
|
|
|
case SIMD_v128_const:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_v128_const(comp_ctx, func_ctx,
|
|
|
|
frame_ip))
|
|
|
|
return false;
|
|
|
|
frame_ip += 16;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v8x16_shuffle:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_shuffle(comp_ctx, func_ctx,
|
|
|
|
frame_ip))
|
|
|
|
return false;
|
|
|
|
frame_ip += 16;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v8x16_swizzle:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_swizzle(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Splat operation */
|
|
|
|
case SIMD_i8x16_splat:
|
|
|
|
case SIMD_i16x8_splat:
|
|
|
|
case SIMD_i32x4_splat:
|
|
|
|
case SIMD_i64x2_splat:
|
|
|
|
case SIMD_f32x4_splat:
|
|
|
|
case SIMD_f64x2_splat:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_splat(comp_ctx, func_ctx, opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lane operation */
|
|
|
|
case SIMD_i8x16_extract_lane_s:
|
|
|
|
case SIMD_i8x16_extract_lane_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_extract_i8x16(
|
|
|
|
comp_ctx, func_ctx, *frame_ip++,
|
|
|
|
SIMD_i8x16_extract_lane_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_replace_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_replace_i8x16(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_extract_lane_s:
|
|
|
|
case SIMD_i16x8_extract_lane_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_extract_i16x8(
|
|
|
|
comp_ctx, func_ctx, *frame_ip++,
|
|
|
|
SIMD_i16x8_extract_lane_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_replace_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_replace_i16x8(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_extract_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_extract_i32x4(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_replace_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_replace_i32x4(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_extract_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_extract_i64x2(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_replace_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_replace_i64x2(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_extract_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_extract_f32x4(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_replace_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_replace_f32x4(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_extract_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_extract_f64x2(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_replace_lane:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_replace_f64x2(comp_ctx, func_ctx,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i8x16 Cmp */
|
|
|
|
case SIMD_i8x16_eq:
|
|
|
|
case SIMD_i8x16_ne:
|
|
|
|
case SIMD_i8x16_lt_s:
|
|
|
|
case SIMD_i8x16_lt_u:
|
|
|
|
case SIMD_i8x16_gt_s:
|
|
|
|
case SIMD_i8x16_gt_u:
|
|
|
|
case SIMD_i8x16_le_s:
|
|
|
|
case SIMD_i8x16_le_u:
|
|
|
|
case SIMD_i8x16_ge_s:
|
|
|
|
case SIMD_i8x16_ge_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_compare(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
INT_EQ + opcode - SIMD_i8x16_eq))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i16x8 Cmp */
|
|
|
|
case SIMD_i16x8_eq:
|
|
|
|
case SIMD_i16x8_ne:
|
|
|
|
case SIMD_i16x8_lt_s:
|
|
|
|
case SIMD_i16x8_lt_u:
|
|
|
|
case SIMD_i16x8_gt_s:
|
|
|
|
case SIMD_i16x8_gt_u:
|
|
|
|
case SIMD_i16x8_le_s:
|
|
|
|
case SIMD_i16x8_le_u:
|
|
|
|
case SIMD_i16x8_ge_s:
|
|
|
|
case SIMD_i16x8_ge_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_compare(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
INT_EQ + opcode - SIMD_i16x8_eq))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i32x4 Cmp */
|
|
|
|
case SIMD_i32x4_eq:
|
|
|
|
case SIMD_i32x4_ne:
|
|
|
|
case SIMD_i32x4_lt_s:
|
|
|
|
case SIMD_i32x4_lt_u:
|
|
|
|
case SIMD_i32x4_gt_s:
|
|
|
|
case SIMD_i32x4_gt_u:
|
|
|
|
case SIMD_i32x4_le_s:
|
|
|
|
case SIMD_i32x4_le_u:
|
|
|
|
case SIMD_i32x4_ge_s:
|
|
|
|
case SIMD_i32x4_ge_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_compare(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
INT_EQ + opcode - SIMD_i32x4_eq))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* f32x4 Cmp */
|
|
|
|
case SIMD_f32x4_eq:
|
|
|
|
case SIMD_f32x4_ne:
|
|
|
|
case SIMD_f32x4_lt:
|
|
|
|
case SIMD_f32x4_gt:
|
|
|
|
case SIMD_f32x4_le:
|
|
|
|
case SIMD_f32x4_ge:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_compare(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
FLOAT_EQ + opcode - SIMD_f32x4_eq))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* f64x2 Cmp */
|
|
|
|
case SIMD_f64x2_eq:
|
|
|
|
case SIMD_f64x2_ne:
|
|
|
|
case SIMD_f64x2_lt:
|
|
|
|
case SIMD_f64x2_gt:
|
|
|
|
case SIMD_f64x2_le:
|
|
|
|
case SIMD_f64x2_ge:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_compare(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
FLOAT_EQ + opcode - SIMD_f64x2_eq))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* v128 Op */
|
|
|
|
case SIMD_v128_not:
|
|
|
|
case SIMD_v128_and:
|
|
|
|
case SIMD_v128_andnot:
|
|
|
|
case SIMD_v128_or:
|
|
|
|
case SIMD_v128_xor:
|
|
|
|
case SIMD_v128_bitselect:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_v128_bitwise(comp_ctx, func_ctx,
|
|
|
|
V128_NOT + opcode
|
|
|
|
- SIMD_v128_not))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v128_any_true:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_v128_any_true(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load Lane Op */
|
|
|
|
case SIMD_v128_load8_lane:
|
|
|
|
case SIMD_v128_load16_lane:
|
|
|
|
case SIMD_v128_load32_lane:
|
|
|
|
case SIMD_v128_load64_lane:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_load_lane(comp_ctx, func_ctx,
|
|
|
|
opcode, align, offset,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v128_store8_lane:
|
|
|
|
case SIMD_v128_store16_lane:
|
|
|
|
case SIMD_v128_store32_lane:
|
|
|
|
case SIMD_v128_store64_lane:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_store_lane(comp_ctx, func_ctx,
|
|
|
|
opcode, align, offset,
|
|
|
|
*frame_ip++))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_v128_load32_zero:
|
|
|
|
case SIMD_v128_load64_zero:
|
|
|
|
{
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, align);
|
|
|
|
read_leb_uint32(frame_ip, frame_ip_end, offset);
|
|
|
|
if (!aot_compile_simd_load_zero(comp_ctx, func_ctx,
|
|
|
|
opcode, align, offset))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Float conversion */
|
|
|
|
case SIMD_f32x4_demote_f64x2_zero:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_demote(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_promote_low_f32x4_zero:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_promote(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i8x16 Op */
|
|
|
|
case SIMD_i8x16_abs:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_abs(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_neg:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_neg(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_popcnt:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_popcnt(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_all_true:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_all_true(comp_ctx,
|
|
|
|
func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_bitmask:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_bitmask(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_narrow_i16x8_s:
|
|
|
|
case SIMD_i8x16_narrow_i16x8_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_narrow_i16x8(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
(opcode == SIMD_i8x16_narrow_i16x8_s)))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_ceil:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_ceil(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_floor:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_floor(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_trunc:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_trunc(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_nearest:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_nearest(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_shl:
|
|
|
|
case SIMD_i8x16_shr_s:
|
|
|
|
case SIMD_i8x16_shr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_shift(comp_ctx, func_ctx,
|
|
|
|
INT_SHL + opcode
|
|
|
|
- SIMD_i8x16_shl))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_add:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_arith(comp_ctx, func_ctx,
|
|
|
|
V128_ADD))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_add_sat_s:
|
|
|
|
case SIMD_i8x16_add_sat_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_saturate(
|
|
|
|
comp_ctx, func_ctx, V128_ADD,
|
|
|
|
opcode == SIMD_i8x16_add_sat_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_sub:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_arith(comp_ctx, func_ctx,
|
|
|
|
V128_SUB))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_sub_sat_s:
|
|
|
|
case SIMD_i8x16_sub_sat_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_saturate(
|
|
|
|
comp_ctx, func_ctx, V128_SUB,
|
|
|
|
opcode == SIMD_i8x16_sub_sat_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_ceil:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_ceil(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_floor:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_floor(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_min_s:
|
|
|
|
case SIMD_i8x16_min_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_cmp(
|
|
|
|
comp_ctx, func_ctx, V128_MIN,
|
|
|
|
opcode == SIMD_i8x16_min_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_max_s:
|
|
|
|
case SIMD_i8x16_max_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_cmp(
|
|
|
|
comp_ctx, func_ctx, V128_MAX,
|
|
|
|
opcode == SIMD_i8x16_max_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_trunc:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_trunc(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i8x16_avgr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i8x16_avgr_u(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_extadd_pairwise_i8x16_s:
|
|
|
|
case SIMD_i16x8_extadd_pairwise_i8x16_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_extadd_pairwise_i8x16(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i16x8_extadd_pairwise_i8x16_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_extadd_pairwise_i16x8_s:
|
|
|
|
case SIMD_i32x4_extadd_pairwise_i16x8_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_extadd_pairwise_i16x8(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_extadd_pairwise_i16x8_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i16x8 Op */
|
|
|
|
case SIMD_i16x8_abs:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_abs(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_neg:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_neg(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_q15mulr_sat_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_q15mulr_sat(comp_ctx,
|
|
|
|
func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_all_true:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_all_true(comp_ctx,
|
|
|
|
func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_bitmask:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_bitmask(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_narrow_i32x4_s:
|
|
|
|
case SIMD_i16x8_narrow_i32x4_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_narrow_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i16x8_narrow_i32x4_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_extend_low_i8x16_s:
|
|
|
|
case SIMD_i16x8_extend_high_i8x16_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_extend_i8x16(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i16x8_extend_low_i8x16_s == opcode, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_extend_low_i8x16_u:
|
|
|
|
case SIMD_i16x8_extend_high_i8x16_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_extend_i8x16(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i16x8_extend_low_i8x16_u == opcode, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_shl:
|
|
|
|
case SIMD_i16x8_shr_s:
|
|
|
|
case SIMD_i16x8_shr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_shift(comp_ctx, func_ctx,
|
|
|
|
INT_SHL + opcode
|
|
|
|
- SIMD_i16x8_shl))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_add:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_arith(comp_ctx, func_ctx,
|
|
|
|
V128_ADD))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_add_sat_s:
|
|
|
|
case SIMD_i16x8_add_sat_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_saturate(
|
|
|
|
comp_ctx, func_ctx, V128_ADD,
|
|
|
|
opcode == SIMD_i16x8_add_sat_s ? true : false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_sub:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_arith(comp_ctx, func_ctx,
|
|
|
|
V128_SUB))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_sub_sat_s:
|
|
|
|
case SIMD_i16x8_sub_sat_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_saturate(
|
|
|
|
comp_ctx, func_ctx, V128_SUB,
|
|
|
|
opcode == SIMD_i16x8_sub_sat_s ? true : false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_nearest:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_nearest(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_mul:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_arith(comp_ctx, func_ctx,
|
|
|
|
V128_MUL))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_min_s:
|
|
|
|
case SIMD_i16x8_min_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_cmp(
|
|
|
|
comp_ctx, func_ctx, V128_MIN,
|
|
|
|
opcode == SIMD_i16x8_min_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_max_s:
|
|
|
|
case SIMD_i16x8_max_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_cmp(
|
|
|
|
comp_ctx, func_ctx, V128_MAX,
|
|
|
|
opcode == SIMD_i16x8_max_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_avgr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i16x8_avgr_u(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_extmul_low_i8x16_s:
|
|
|
|
case SIMD_i16x8_extmul_high_i8x16_s:
|
|
|
|
{
|
|
|
|
if (!(aot_compile_simd_i16x8_extmul_i8x16(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i16x8_extmul_low_i8x16_s == opcode, true)))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i16x8_extmul_low_i8x16_u:
|
|
|
|
case SIMD_i16x8_extmul_high_i8x16_u:
|
|
|
|
{
|
|
|
|
if (!(aot_compile_simd_i16x8_extmul_i8x16(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i16x8_extmul_low_i8x16_u == opcode,
|
|
|
|
false)))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i32x4 Op */
|
|
|
|
case SIMD_i32x4_abs:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_abs(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_neg:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_neg(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_all_true:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_all_true(comp_ctx,
|
|
|
|
func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_bitmask:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_bitmask(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_narrow_i64x2_s:
|
|
|
|
case SIMD_i32x4_narrow_i64x2_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_narrow_i64x2(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_narrow_i64x2_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_extend_low_i16x8_s:
|
|
|
|
case SIMD_i32x4_extend_high_i16x8_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_extend_i16x8(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_extend_low_i16x8_s == opcode, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_extend_low_i16x8_u:
|
|
|
|
case SIMD_i32x4_extend_high_i16x8_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_extend_i16x8(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_extend_low_i16x8_u == opcode, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_shl:
|
|
|
|
case SIMD_i32x4_shr_s:
|
|
|
|
case SIMD_i32x4_shr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_shift(comp_ctx, func_ctx,
|
|
|
|
INT_SHL + opcode
|
|
|
|
- SIMD_i32x4_shl))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_add:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_arith(comp_ctx, func_ctx,
|
|
|
|
V128_ADD))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_add_sat_s:
|
|
|
|
case SIMD_i32x4_add_sat_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_saturate(
|
|
|
|
comp_ctx, func_ctx, V128_ADD,
|
|
|
|
opcode == SIMD_i32x4_add_sat_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_sub:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_arith(comp_ctx, func_ctx,
|
|
|
|
V128_SUB))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_sub_sat_s:
|
|
|
|
case SIMD_i32x4_sub_sat_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_saturate(
|
|
|
|
comp_ctx, func_ctx, V128_SUB,
|
|
|
|
opcode == SIMD_i32x4_add_sat_s))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_mul:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_arith(comp_ctx, func_ctx,
|
|
|
|
V128_MUL))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_min_s:
|
|
|
|
case SIMD_i32x4_min_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_cmp(
|
|
|
|
comp_ctx, func_ctx, V128_MIN,
|
|
|
|
SIMD_i32x4_min_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_max_s:
|
|
|
|
case SIMD_i32x4_max_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_cmp(
|
|
|
|
comp_ctx, func_ctx, V128_MAX,
|
|
|
|
SIMD_i32x4_max_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_dot_i16x8_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_dot_i16x8(comp_ctx,
|
|
|
|
func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_avgr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_avgr_u(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_extmul_low_i16x8_s:
|
|
|
|
case SIMD_i32x4_extmul_high_i16x8_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_extmul_i16x8(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_extmul_low_i16x8_s == opcode, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_extmul_low_i16x8_u:
|
|
|
|
case SIMD_i32x4_extmul_high_i16x8_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_extmul_i16x8(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_extmul_low_i16x8_u == opcode, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* i64x2 Op */
|
|
|
|
case SIMD_i64x2_abs:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_abs(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_neg:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_neg(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_all_true:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_all_true(comp_ctx,
|
|
|
|
func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_bitmask:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_bitmask(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_extend_low_i32x4_s:
|
|
|
|
case SIMD_i64x2_extend_high_i32x4_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_extend_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i64x2_extend_low_i32x4_s == opcode, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_extend_low_i32x4_u:
|
|
|
|
case SIMD_i64x2_extend_high_i32x4_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_extend_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i64x2_extend_low_i32x4_u == opcode, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_shl:
|
|
|
|
case SIMD_i64x2_shr_s:
|
|
|
|
case SIMD_i64x2_shr_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_shift(comp_ctx, func_ctx,
|
|
|
|
INT_SHL + opcode
|
|
|
|
- SIMD_i64x2_shl))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_add:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_arith(comp_ctx, func_ctx,
|
|
|
|
V128_ADD))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_sub:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_arith(comp_ctx, func_ctx,
|
|
|
|
V128_SUB))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_mul:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_arith(comp_ctx, func_ctx,
|
|
|
|
V128_MUL))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_eq:
|
|
|
|
case SIMD_i64x2_ne:
|
|
|
|
case SIMD_i64x2_lt_s:
|
|
|
|
case SIMD_i64x2_gt_s:
|
|
|
|
case SIMD_i64x2_le_s:
|
|
|
|
case SIMD_i64x2_ge_s:
|
|
|
|
{
|
|
|
|
IntCond icond[] = { INT_EQ, INT_NE, INT_LT_S,
|
|
|
|
INT_GT_S, INT_LE_S, INT_GE_S };
|
|
|
|
if (!aot_compile_simd_i64x2_compare(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
icond[opcode - SIMD_i64x2_eq]))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_extmul_low_i32x4_s:
|
|
|
|
case SIMD_i64x2_extmul_high_i32x4_s:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_extmul_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i64x2_extmul_low_i32x4_s == opcode, true))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i64x2_extmul_low_i32x4_u:
|
|
|
|
case SIMD_i64x2_extmul_high_i32x4_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i64x2_extmul_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i64x2_extmul_low_i32x4_u == opcode, false))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* f32x4 Op */
|
|
|
|
case SIMD_f32x4_abs:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_abs(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_neg:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_neg(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_round:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_round(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_sqrt:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_sqrt(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_add:
|
|
|
|
case SIMD_f32x4_sub:
|
|
|
|
case SIMD_f32x4_mul:
|
|
|
|
case SIMD_f32x4_div:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_arith(comp_ctx, func_ctx,
|
|
|
|
FLOAT_ADD + opcode
|
|
|
|
- SIMD_f32x4_add))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_min:
|
|
|
|
case SIMD_f32x4_max:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_min_max(
|
|
|
|
comp_ctx, func_ctx, SIMD_f32x4_min == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_pmin:
|
|
|
|
case SIMD_f32x4_pmax:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_pmin_pmax(
|
|
|
|
comp_ctx, func_ctx, SIMD_f32x4_pmin == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* f64x2 Op */
|
|
|
|
|
|
|
|
case SIMD_f64x2_abs:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_abs(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_neg:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_neg(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_round:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_round(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_sqrt:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_sqrt(comp_ctx, func_ctx))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_add:
|
|
|
|
case SIMD_f64x2_sub:
|
|
|
|
case SIMD_f64x2_mul:
|
|
|
|
case SIMD_f64x2_div:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_arith(comp_ctx, func_ctx,
|
|
|
|
FLOAT_ADD + opcode
|
|
|
|
- SIMD_f64x2_add))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_min:
|
|
|
|
case SIMD_f64x2_max:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_min_max(
|
|
|
|
comp_ctx, func_ctx, SIMD_f64x2_min == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_pmin:
|
|
|
|
case SIMD_f64x2_pmax:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_pmin_pmax(
|
|
|
|
comp_ctx, func_ctx, SIMD_f64x2_pmin == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Conversion Op */
|
|
|
|
case SIMD_i32x4_trunc_sat_f32x4_s:
|
|
|
|
case SIMD_i32x4_trunc_sat_f32x4_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_trunc_sat_f32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_trunc_sat_f32x4_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f32x4_convert_i32x4_s:
|
|
|
|
case SIMD_f32x4_convert_i32x4_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f32x4_convert_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_f32x4_convert_i32x4_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_i32x4_trunc_sat_f64x2_s_zero:
|
|
|
|
case SIMD_i32x4_trunc_sat_f64x2_u_zero:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_i32x4_trunc_sat_f64x2(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_i32x4_trunc_sat_f64x2_s_zero == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SIMD_f64x2_convert_low_i32x4_s:
|
|
|
|
case SIMD_f64x2_convert_low_i32x4_u:
|
|
|
|
{
|
|
|
|
if (!aot_compile_simd_f64x2_convert_i32x4(
|
|
|
|
comp_ctx, func_ctx,
|
|
|
|
SIMD_f64x2_convert_low_i32x4_s == opcode))
|
|
|
|
return false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2021-11-18 09:42:49 +00:00
|
|
|
aot_set_last_error("unsupported SIMD opcode");
|
2021-10-13 07:13:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /* end of WASM_ENABLE_SIMD */
|
2020-12-16 07:33:25 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
default:
|
|
|
|
aot_set_last_error("unsupported opcode");
|
|
|
|
return false;
|
2020-11-05 10:15:15 +00:00
|
|
|
}
|
2021-10-13 07:13:00 +00:00
|
|
|
}
|
2020-11-05 10:15:15 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
/* Move func_return block to the bottom */
|
|
|
|
if (func_ctx->func_return_block) {
|
|
|
|
LLVMBasicBlockRef last_block = LLVMGetLastBasicBlock(func_ctx->func);
|
|
|
|
if (last_block != func_ctx->func_return_block)
|
|
|
|
LLVMMoveBasicBlockAfter(func_ctx->func_return_block, last_block);
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
2021-10-13 07:13:00 +00:00
|
|
|
|
|
|
|
/* Move got_exception block to the bottom */
|
|
|
|
if (func_ctx->got_exception_block) {
|
|
|
|
LLVMBasicBlockRef last_block = LLVMGetLastBasicBlock(func_ctx->func);
|
|
|
|
if (last_block != func_ctx->got_exception_block)
|
|
|
|
LLVMMoveBasicBlockAfter(func_ctx->got_exception_block, last_block);
|
|
|
|
}
|
|
|
|
return true;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-04-15 03:29:20 +00:00
|
|
|
#if WASM_ENABLE_SIMD != 0
|
|
|
|
unsupport_simd:
|
2021-10-13 07:13:00 +00:00
|
|
|
aot_set_last_error("SIMD instruction was found, "
|
2021-11-18 09:42:49 +00:00
|
|
|
"try removing --disable-simd option");
|
2021-10-13 07:13:00 +00:00
|
|
|
return false;
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if WASM_ENABLE_REF_TYPES != 0
|
|
|
|
unsupport_ref_types:
|
2021-10-13 07:13:00 +00:00
|
|
|
aot_set_last_error("reference type instruction was found, "
|
2021-11-18 09:42:49 +00:00
|
|
|
"try removing --disable-ref-types option");
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if WASM_ENABLE_BULK_MEMORY != 0
|
|
|
|
unsupport_bulk_memory:
|
|
|
|
aot_set_last_error("bulk memory instruction was found, "
|
|
|
|
"try removing --disable-bulk-memory option");
|
2021-10-13 07:13:00 +00:00
|
|
|
return false;
|
2021-04-15 03:29:20 +00:00
|
|
|
#endif
|
|
|
|
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
fail:
|
2021-10-13 07:13:00 +00:00
|
|
|
return false;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
2022-01-24 03:10:37 +00:00
|
|
|
static bool
|
|
|
|
veriy_module(AOTCompContext *comp_ctx)
|
|
|
|
{
|
|
|
|
char *msg = NULL;
|
|
|
|
bool ret;
|
|
|
|
|
|
|
|
ret = LLVMVerifyModule(comp_ctx->module, LLVMPrintMessageAction, &msg);
|
|
|
|
if (!ret && msg) {
|
|
|
|
if (msg[0] != '\0') {
|
|
|
|
aot_set_last_error(msg);
|
|
|
|
LLVMDisposeMessage(msg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LLVMDisposeMessage(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-11-30 09:10:14 +00:00
|
|
|
/* Check whether the target supports hardware atomic instructions */
|
|
|
|
static bool
|
|
|
|
aot_require_lower_atomic_pass(AOTCompContext *comp_ctx)
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
if (!strncmp(comp_ctx->target_arch, "riscv", 5)) {
|
|
|
|
char *feature =
|
|
|
|
LLVMGetTargetMachineFeatureString(comp_ctx->target_machine);
|
|
|
|
|
|
|
|
if (feature) {
|
|
|
|
if (!strstr(feature, "+a")) {
|
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
LLVMDisposeMessage(feature);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check whether the target needs to expand switch to if/else */
|
|
|
|
static bool
|
|
|
|
aot_require_lower_switch_pass(AOTCompContext *comp_ctx)
|
|
|
|
{
|
|
|
|
bool ret = false;
|
|
|
|
|
2022-08-04 06:42:28 +00:00
|
|
|
/* IR switch/case will cause .rodata relocation on riscv/xtensa */
|
|
|
|
if (!strncmp(comp_ctx->target_arch, "riscv", 5)
|
|
|
|
|| !strncmp(comp_ctx->target_arch, "xtensa", 6)) {
|
2021-11-30 09:10:14 +00:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2022-01-24 03:10:37 +00:00
|
|
|
static bool
|
|
|
|
apply_passes_for_indirect_mode(AOTCompContext *comp_ctx)
|
|
|
|
{
|
|
|
|
LLVMPassManagerRef common_pass_mgr;
|
|
|
|
|
|
|
|
if (!(common_pass_mgr = LLVMCreatePassManager())) {
|
|
|
|
aot_set_last_error("create pass manager failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
aot_add_expand_memory_op_pass(common_pass_mgr);
|
|
|
|
|
|
|
|
if (aot_require_lower_atomic_pass(comp_ctx))
|
|
|
|
LLVMAddLowerAtomicPass(common_pass_mgr);
|
|
|
|
|
|
|
|
if (aot_require_lower_switch_pass(comp_ctx))
|
|
|
|
LLVMAddLowerSwitchPass(common_pass_mgr);
|
|
|
|
|
|
|
|
LLVMRunPassManager(common_pass_mgr, comp_ctx->module);
|
|
|
|
|
|
|
|
LLVMDisposePassManager(common_pass_mgr);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
bool
|
|
|
|
aot_compile_wasm(AOTCompContext *comp_ctx)
|
|
|
|
{
|
2021-10-13 07:13:00 +00:00
|
|
|
uint32 i;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-11-18 09:42:49 +00:00
|
|
|
if (!aot_validate_wasm(comp_ctx)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
bh_print_time("Begin to compile WASM bytecode to LLVM IR");
|
2022-01-24 03:10:37 +00:00
|
|
|
for (i = 0; i < comp_ctx->func_ctx_count; i++) {
|
2021-10-13 07:13:00 +00:00
|
|
|
if (!aot_compile_func(comp_ctx, i)) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-01-24 03:10:37 +00:00
|
|
|
}
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-09-29 05:36:46 +00:00
|
|
|
#if WASM_ENABLE_DEBUG_AOT != 0
|
2021-10-13 07:13:00 +00:00
|
|
|
LLVMDIBuilderFinalize(comp_ctx->debug_builder);
|
2021-09-29 05:36:46 +00:00
|
|
|
#endif
|
|
|
|
|
2022-10-18 12:17:34 +00:00
|
|
|
/* Disable LLVM module verification for jit mode to speedup
|
|
|
|
the compilation process */
|
|
|
|
if (!comp_ctx->is_jit_mode) {
|
|
|
|
bh_print_time("Begin to verify LLVM module");
|
|
|
|
if (!veriy_module(comp_ctx)) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-01-20 10:40:13 +00:00
|
|
|
}
|
2020-03-20 08:06:40 +00:00
|
|
|
|
2022-10-18 12:17:34 +00:00
|
|
|
/* Run IR optimization before feeding in ORCJIT and AOT codegen */
|
2021-10-13 07:13:00 +00:00
|
|
|
if (comp_ctx->optimize) {
|
2022-10-18 12:17:34 +00:00
|
|
|
/* Run passes for AOT/JIT mode.
|
|
|
|
TODO: Apply these passes in the do_ir_transform callback of
|
|
|
|
TransformLayer when compiling each jit function, so as to
|
|
|
|
speedup the launch process. Now there are two issues in the
|
|
|
|
JIT: one is memory leak in do_ir_transform, the other is
|
|
|
|
possible core dump. */
|
|
|
|
bh_print_time("Begin to run llvm optimization passes");
|
|
|
|
aot_apply_llvm_new_pass_manager(comp_ctx, comp_ctx->module);
|
2022-10-24 02:20:05 +00:00
|
|
|
|
|
|
|
/* Run specific passes for AOT indirect mode in last since general
|
|
|
|
optimization may create some intrinsic function calls like
|
|
|
|
llvm.memset, so let's remove these function calls here. */
|
|
|
|
if (!comp_ctx->is_jit_mode && comp_ctx->is_indirect_mode) {
|
|
|
|
bh_print_time("Begin to run optimization passes "
|
|
|
|
"for indirect mode");
|
|
|
|
if (!apply_passes_for_indirect_mode(comp_ctx)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-10-18 12:17:34 +00:00
|
|
|
bh_print_time("Finish llvm optimization passes");
|
2022-01-20 10:40:13 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 12:17:34 +00:00
|
|
|
#ifdef DUMP_MODULE
|
|
|
|
LLVMDumpModule(comp_ctx->module);
|
|
|
|
os_printf("\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (comp_ctx->is_jit_mode) {
|
|
|
|
LLVMErrorRef err;
|
|
|
|
LLVMOrcJITDylibRef orc_main_dylib;
|
|
|
|
LLVMOrcThreadSafeModuleRef orc_thread_safe_module;
|
|
|
|
|
|
|
|
orc_main_dylib = LLVMOrcLLLazyJITGetMainJITDylib(comp_ctx->orc_jit);
|
|
|
|
if (!orc_main_dylib) {
|
|
|
|
aot_set_last_error(
|
|
|
|
"failed to get orc orc_jit main dynmaic library");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-20 10:40:13 +00:00
|
|
|
orc_thread_safe_module = LLVMOrcCreateNewThreadSafeModule(
|
2022-10-18 12:17:34 +00:00
|
|
|
comp_ctx->module, comp_ctx->orc_thread_safe_context);
|
2022-01-20 10:40:13 +00:00
|
|
|
if (!orc_thread_safe_module) {
|
|
|
|
aot_set_last_error("failed to create thread safe module");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-18 12:17:34 +00:00
|
|
|
if ((err = LLVMOrcLLLazyJITAddLLVMIRModule(
|
|
|
|
comp_ctx->orc_jit, orc_main_dylib, orc_thread_safe_module))) {
|
2022-01-20 10:40:13 +00:00
|
|
|
/* If adding the ThreadSafeModule fails then we need to clean it up
|
2022-10-18 12:17:34 +00:00
|
|
|
by ourselves, otherwise the orc orc_jit will manage the memory.
|
|
|
|
*/
|
2022-01-20 10:40:13 +00:00
|
|
|
LLVMOrcDisposeThreadSafeModule(orc_thread_safe_module);
|
|
|
|
aot_handle_llvm_errmsg("failed to addIRModule", err);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
return true;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
2022-06-20 05:13:41 +00:00
|
|
|
#if !(defined(_WIN32) || defined(_WIN32_))
|
|
|
|
char *
|
|
|
|
aot_generate_tempfile_name(const char *prefix, const char *extension,
|
|
|
|
char *buffer, uint32 len)
|
|
|
|
{
|
|
|
|
int fd, name_len;
|
|
|
|
|
|
|
|
name_len = snprintf(buffer, len, "%s-XXXXXX", prefix);
|
|
|
|
|
|
|
|
if ((fd = mkstemp(buffer)) <= 0) {
|
|
|
|
aot_set_last_error("make temp file failed.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* close and remove temp file */
|
|
|
|
close(fd);
|
|
|
|
unlink(buffer);
|
|
|
|
|
|
|
|
/* Check if buffer length is enough */
|
|
|
|
/* name_len + '.' + extension + '\0' */
|
|
|
|
if (name_len + 1 + strlen(extension) + 1 > len) {
|
|
|
|
aot_set_last_error("temp file name too long.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(buffer + name_len, len - name_len, ".%s", extension);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
#endif /* end of !(defined(_WIN32) || defined(_WIN32_)) */
|
|
|
|
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
bool
|
|
|
|
aot_emit_llvm_file(AOTCompContext *comp_ctx, const char *file_name)
|
|
|
|
{
|
2021-10-13 07:13:00 +00:00
|
|
|
char *err = NULL;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
bh_print_time("Begin to emit LLVM IR file");
|
2020-03-20 08:06:40 +00:00
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
if (LLVMPrintModuleToFile(comp_ctx->module, file_name, &err) != 0) {
|
|
|
|
if (err) {
|
|
|
|
LLVMDisposeMessage(err);
|
|
|
|
err = NULL;
|
|
|
|
}
|
|
|
|
aot_set_last_error("emit llvm ir to file failed.");
|
|
|
|
return false;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
return true;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
aot_emit_object_file(AOTCompContext *comp_ctx, char *file_name)
|
|
|
|
{
|
2021-10-13 07:13:00 +00:00
|
|
|
char *err = NULL;
|
|
|
|
LLVMCodeGenFileType file_type = LLVMObjectFile;
|
|
|
|
LLVMTargetRef target = LLVMGetTargetMachineTarget(comp_ctx->target_machine);
|
|
|
|
|
|
|
|
bh_print_time("Begin to emit object file");
|
|
|
|
|
2022-06-20 05:13:41 +00:00
|
|
|
#if !(defined(_WIN32) || defined(_WIN32_))
|
|
|
|
if (comp_ctx->external_llc_compiler || comp_ctx->external_asm_compiler) {
|
|
|
|
char cmd[1024];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (comp_ctx->external_llc_compiler) {
|
|
|
|
char bc_file_name[64];
|
|
|
|
|
|
|
|
if (!aot_generate_tempfile_name("wamrc-bc", "bc", bc_file_name,
|
|
|
|
sizeof(bc_file_name))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LLVMWriteBitcodeToFile(comp_ctx->module, bc_file_name) != 0) {
|
|
|
|
aot_set_last_error("emit llvm bitcode file failed.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(cmd, sizeof(cmd), "%s %s -o %s %s",
|
|
|
|
comp_ctx->external_llc_compiler,
|
|
|
|
comp_ctx->llc_compiler_flags ? comp_ctx->llc_compiler_flags
|
|
|
|
: "-O3 -c",
|
|
|
|
file_name, bc_file_name);
|
|
|
|
LOG_VERBOSE("invoking external LLC compiler:\n\t%s", cmd);
|
|
|
|
|
|
|
|
ret = system(cmd);
|
|
|
|
/* remove temp bitcode file */
|
|
|
|
unlink(bc_file_name);
|
|
|
|
|
|
|
|
if (ret != 0) {
|
|
|
|
aot_set_last_error("failed to compile LLVM bitcode to obj file "
|
|
|
|
"with external LLC compiler.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (comp_ctx->external_asm_compiler) {
|
|
|
|
char asm_file_name[64];
|
|
|
|
|
|
|
|
if (!aot_generate_tempfile_name("wamrc-asm", "s", asm_file_name,
|
|
|
|
sizeof(asm_file_name))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LLVMTargetMachineEmitToFile(comp_ctx->target_machine,
|
|
|
|
comp_ctx->module, asm_file_name,
|
|
|
|
LLVMAssemblyFile, &err)
|
|
|
|
!= 0) {
|
|
|
|
if (err) {
|
|
|
|
LLVMDisposeMessage(err);
|
|
|
|
err = NULL;
|
|
|
|
}
|
|
|
|
aot_set_last_error("emit elf to assembly file failed.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(cmd, sizeof(cmd), "%s %s -o %s %s",
|
|
|
|
comp_ctx->external_asm_compiler,
|
|
|
|
comp_ctx->asm_compiler_flags ? comp_ctx->asm_compiler_flags
|
|
|
|
: "-O3 -c",
|
|
|
|
file_name, asm_file_name);
|
|
|
|
LOG_VERBOSE("invoking external ASM compiler:\n\t%s", cmd);
|
|
|
|
|
|
|
|
ret = system(cmd);
|
|
|
|
/* remove temp assembly file */
|
|
|
|
unlink(asm_file_name);
|
|
|
|
|
|
|
|
if (ret != 0) {
|
|
|
|
aot_set_last_error("failed to compile Assembly file to obj "
|
|
|
|
"file with external ASM compiler.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif /* end of !(defined(_WIN32) || defined(_WIN32_)) */
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
if (!strncmp(LLVMGetTargetName(target), "arc", 3))
|
|
|
|
/* Emit to assmelby file instead for arc target
|
|
|
|
as it cannot emit to object file */
|
|
|
|
file_type = LLVMAssemblyFile;
|
|
|
|
|
|
|
|
if (LLVMTargetMachineEmitToFile(comp_ctx->target_machine, comp_ctx->module,
|
|
|
|
file_name, file_type, &err)
|
|
|
|
!= 0) {
|
|
|
|
if (err) {
|
|
|
|
LLVMDisposeMessage(err);
|
|
|
|
err = NULL;
|
|
|
|
}
|
|
|
|
aot_set_last_error("emit elf to object file failed.");
|
|
|
|
return false;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 07:13:00 +00:00
|
|
|
return true;
|
Enable AoT and wamr-sdk, and change arguments of call wasm API (#157)
* Implement memory profiler, optimize memory usage, modify code indent
* Implement memory.grow and limit heap space base offset to 1G; modify iwasm build type to Release and 64 bit by default
* Add a new extension library: connection
* Fix bug of reading magic number and version in big endian platform
* Re-org platform APIs: move most platform APIs from iwasm to shared-lib
* Enhance wasm loader to fix some security issues
* Fix issue about illegal load of EXC_RETURN into PC on stm32 board
* Updates that let a restricted version of the interpreter run in SGX
* Enable native/app address validation and conversion for wasm app
* Remove wasm_application_exectue_* APIs from wasm_export.h which makes confused
* Refine binary size and fix several minor issues
Optimize interpreter LOAD/STORE opcodes to decrease the binary size
Fix issues when using iwasm library: _bh_log undefined, bh_memory.h not found
Remove unused _stdin/_stdout/_stderr global variables resolve in libc wrapper
Add macros of global heap size, stack size, heap size for Zephyr main.c
Clear compile warning of wasm_application.c
* Add more strict security checks for libc wrapper API's
* Use one libc wrapper copy for sgx and other platforms; remove bh_printf macro for other platform header files
* Enhance security of libc strcpy/sprintf wrapper function
* Fix issue of call native for x86_64/arm/mips, add module inst parameter for native wrapper functions
* Remove get_module_inst() and fix issue of call native
* Refine wgl lib: remove module_inst parameter from widget functions; move function index check to runtime instantiate
* Refine interpreter call native process, refine memory boudary check
* Fix issues of invokeNative function of arm/mips/general version
* Add a switch to build simple sample without gui support
* Add BUILD_TARGET setting in makefile to replace cpu compiler flags in source code
* Re-org shared lib header files, remove unused info; fix compile issues of vxworks
* Add build target general
* Remove unused files
* Update license header
* test push
* Restore file
* Sync up with internal/feature
* Sync up with internal/feature
* Rename build_wamr_app to build_wasm_app
* Fix small issues of README
* Enhance malformed wasm file checking
Fix issue of print hex int and implement utf8 string check
Fix wasi file read/write right issue
Fix minor issue of build wasm app doc
* Sync up with internal/feature
* Sync up with internal/feature: fix interpreter arm issue, fix read leb issue
* Sync up with internal/feature
* Fix bug of config.h and rename wasi config.h to ssp_config.h
* Sync up with internal/feature
* Import wamr aot
* update document
* update document
* Update document, disable WASI in 32bit
* update document
* remove files
* update document
* Update document
* update document
* update document
* update samples
* Sync up with internal repo
2020-01-21 05:26:14 +00:00
|
|
|
}
|