mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-10-28 20:01:17 +00:00
* shared heap enhancement: modify memory check for aot_check_memory_overflow to accomodate shared heap chain * shared heap enhancement in AOT * use alloca for func ctx shared heap cache value * use correct alloca for func ctx shared heap cache value * enable shared heap chain aot test and bug fix * Fix a missing argument on 32bits platform, still has the shared heap chain iteration problem * Fix shared heap chain iteration problem on 32bits platform * fix AOT bulk memory bounds checks compliation issue * fix AOT bulk memory bounds checks on 64 bits platform * refactor aot memory check * refactor AOT bulk memory bounds checks * add more unit test for shared heap * finished organizing unit test for shared heap and enable x86_32 for shared heap unit test * cover a corner case for bulk memory overflow check * try func call to replace shared heap chain traverse * fix compilation error in JIT and potentially load nullptr * add option for wamrc to enable single shared heap/multi shared heap, and update shared heap unit tests and sample * cr suggestions: 1. check potiential underflow 2. refactor and use separate function for bulk memory and normal memroy 3. static assert 4. add more comments 5. remove unused code
110 lines
3.9 KiB
CMake
110 lines
3.9 KiB
CMake
# Copyright (C) 2024 Xiaomi Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
cmake_minimum_required(VERSION 3.14)
|
|
project(wasm-apps)
|
|
|
|
set(WAMR_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../../..)
|
|
set(WAMRC_ROOT_DIR ${WAMR_ROOT_DIR}/wamr-compiler/build)
|
|
|
|
set(CMAKE_SYSTEM_PROCESSOR wasm32)
|
|
set(CMAKE_SYSROOT ${WAMR_ROOT_DIR}/wamr-sdk/app/libc-builtin-sysroot)
|
|
|
|
if (NOT DEFINED WASI_SDK_DIR)
|
|
set(WASI_SDK_DIR "/opt/wasi-sdk")
|
|
endif ()
|
|
|
|
set(CMAKE_C_FLAGS "-nostdlib -pthread -Qunused-arguments")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -z stack-size=8192 -nostdlib -O0")
|
|
set(CMAKE_C_COMPILER_TARGET "wasm32")
|
|
set(CMAKE_C_COMPILER "${WASI_SDK_DIR}/bin/clang")
|
|
|
|
set(DEFINED_SYMBOLS
|
|
"${WAMR_ROOT_DIR}/wamr-sdk/app/libc-builtin-sysroot/share/defined-symbols.txt")
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS
|
|
"-Wl,--no-entry \
|
|
-Wl,--initial-memory=65536 \
|
|
-Wl,--export-all \
|
|
-Wl,--allow-undefined"
|
|
)
|
|
|
|
if (WAMR_BUILD_TARGET STREQUAL "X86_32")
|
|
set (WAMR_COMPILER_FLAGS --opt-level=3 --bounds-checks=1 --enable-shared-heap --target=i386)
|
|
set (WAMR_COMPILER_CHAIN_FLAGS --opt-level=3 --bounds-checks=1 --enable-shared-chain --target=i386)
|
|
else ()
|
|
set (WAMR_COMPILER_FLAGS --opt-level=3 --bounds-checks=1 --enable-shared-heap)
|
|
set (WAMR_COMPILER_CHAIN_FLAGS --opt-level=3 --bounds-checks=1 --enable-shared-chain)
|
|
endif ()
|
|
|
|
function(copy_wasm TARGET_NAME)
|
|
add_custom_command(TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_BINARY_DIR}/${TARGET_NAME}
|
|
${CMAKE_CURRENT_BINARY_DIR}/../
|
|
COMMENT "Copy ${TARGET_NAME} to the same directory of google test"
|
|
)
|
|
endfunction()
|
|
|
|
function(compile_and_copy_aot_from TARGET_NAME)
|
|
string(REPLACE ".wasm" ".aot" AOT_TARGET ${TARGET_NAME})
|
|
string(REPLACE ".wasm" "_chain.aot" AOT_CHAIN_TARGET ${TARGET_NAME})
|
|
|
|
add_custom_command(TARGET ${TARGET_NAME} POST_BUILD
|
|
COMMAND ${WAMRC_ROOT_DIR}/wamrc ${WAMR_COMPILER_FLAGS}
|
|
-o ${AOT_TARGET}
|
|
${TARGET_NAME}
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_BINARY_DIR}/${AOT_TARGET}
|
|
${CMAKE_CURRENT_BINARY_DIR}/../
|
|
COMMAND ${WAMRC_ROOT_DIR}/wamrc ${WAMR_COMPILER_CHAIN_FLAGS}
|
|
-o ${AOT_CHAIN_TARGET}
|
|
${TARGET_NAME}
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_BINARY_DIR}/${AOT_CHAIN_TARGET}
|
|
${CMAKE_CURRENT_BINARY_DIR}/../
|
|
COMMENT "Compile and copy ${AOT_TARGET} to the same directory of google test"
|
|
)
|
|
endfunction()
|
|
|
|
add_executable(test.wasm test.c)
|
|
target_link_libraries(test.wasm)
|
|
copy_wasm(test.wasm)
|
|
compile_and_copy_aot_from(test.wasm)
|
|
|
|
add_executable(test_addr_conv.wasm test_addr_conv.c)
|
|
target_link_libraries(test_addr_conv.wasm)
|
|
copy_wasm(test_addr_conv.wasm)
|
|
compile_and_copy_aot_from(test_addr_conv.wasm)
|
|
|
|
# copy and compile aot for bulk memory test
|
|
set(SOURCE_WASM ${CMAKE_CURRENT_SOURCE_DIR}/bulk-memory/test_bulk_memory.wasm)
|
|
set(BUILD_WASM ${CMAKE_CURRENT_BINARY_DIR}/../test_bulk_memory.wasm)
|
|
set(OUTPUT_AOT ${CMAKE_CURRENT_BINARY_DIR}/../test_bulk_memory.aot)
|
|
set(OUTPUT_CHAIN_AOT ${CMAKE_CURRENT_BINARY_DIR}/../test_bulk_memory_chain.aot)
|
|
|
|
add_custom_command(
|
|
OUTPUT ${BUILD_WASM}
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${SOURCE_WASM}
|
|
${BUILD_WASM}
|
|
DEPENDS ${SOURCE_WASM}
|
|
COMMENT "Copying bulk memory WASM to build directory"
|
|
)
|
|
|
|
add_custom_command(
|
|
OUTPUT ${OUTPUT_AOT}
|
|
COMMAND ${WAMRC_ROOT_DIR}/wamrc ${WAMR_COMPILER_FLAGS}
|
|
-o ${OUTPUT_AOT}
|
|
${BUILD_WASM}
|
|
COMMAND ${WAMRC_ROOT_DIR}/wamrc ${WAMR_COMPILER_CHAIN_FLAGS}
|
|
-o ${OUTPUT_CHAIN_AOT}
|
|
${BUILD_WASM}
|
|
DEPENDS ${BUILD_WASM}
|
|
COMMENT "Compiling bulk memory AOT from copied WASM"
|
|
)
|
|
|
|
add_custom_target(compile_bulk_memory_aot ALL
|
|
DEPENDS ${OUTPUT_AOT}
|
|
)
|