mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-10-17 22:41:43 +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
68 lines
1.8 KiB
CMake
68 lines
1.8 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(test-shared-heap)
|
|
|
|
add_definitions(-DRUN_ON_LINUX)
|
|
|
|
set(WAMR_BUILD_APP_FRAMEWORK 0)
|
|
set(WAMR_BUILD_AOT 1)
|
|
set(WAMR_BUILD_INTERP 1)
|
|
set(WAMR_BUILD_FAST_INTERP 1)
|
|
set(WAMR_BUILD_JIT 0)
|
|
if(WAMR_BUILD_TARGET STREQUAL "X86_32")
|
|
set(WAMR_BUILD_MEMORY64 0)
|
|
else()
|
|
set(WAMR_BUILD_MEMORY64 1)
|
|
endif()
|
|
set(WAMR_BUILD_SHARED_HEAP 1)
|
|
|
|
# Compile wasm modules
|
|
add_subdirectory(wasm-apps)
|
|
|
|
if (WAMR_BUILD_MEMORY64 EQUAL 1)
|
|
add_subdirectory(wasm-apps/memory64)
|
|
endif ()
|
|
|
|
# if only load this CMake other than load it as subdirectory
|
|
include(../unit_common.cmake)
|
|
|
|
set(LLVM_SRC_ROOT "${WAMR_ROOT_DIR}/core/deps/llvm")
|
|
|
|
if (NOT EXISTS "${LLVM_SRC_ROOT}/build")
|
|
message(FATAL_ERROR "Cannot find LLVM dir: ${LLVM_SRC_ROOT}/build")
|
|
endif ()
|
|
|
|
set(CMAKE_PREFIX_PATH "${LLVM_SRC_ROOT}/build;${CMAKE_PREFIX_PATH}")
|
|
find_package(LLVM REQUIRED CONFIG)
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
|
add_definitions(${LLVM_DEFINITIONS})
|
|
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
|
|
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
|
|
|
|
include(${IWASM_DIR}/compilation/iwasm_compl.cmake)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
file(GLOB_RECURSE source_all ${CMAKE_CURRENT_SOURCE_DIR}/*.cc)
|
|
|
|
set(UNIT_SOURCE ${source_all})
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
set(unit_test_sources
|
|
${UNIT_SOURCE}
|
|
${WAMR_RUNTIME_LIB_SOURCE}
|
|
${UNCOMMON_SHARED_SOURCE}
|
|
${SRC_LIST}
|
|
)
|
|
|
|
# Now simply link against gtest or gtest_main as needed. Eg
|
|
add_executable(shared_heap_test ${unit_test_sources})
|
|
|
|
target_link_libraries(shared_heap_test ${LLVM_AVAILABLE_LIBS} gtest_main)
|
|
|
|
gtest_discover_tests(shared_heap_test)
|