diff --git a/samples/gui/wasm-apps/out/ui_decrease.wasm b/samples/gui/wasm-apps/out/ui_decrease.wasm new file mode 100755 index 000000000..d7062b476 Binary files /dev/null and b/samples/gui/wasm-apps/out/ui_decrease.wasm differ diff --git a/samples/gui/wasm-apps/out/ui_increase.wasm b/samples/gui/wasm-apps/out/ui_increase.wasm new file mode 100755 index 000000000..196e41e62 Binary files /dev/null and b/samples/gui/wasm-apps/out/ui_increase.wasm differ diff --git a/samples/spawn-thread-copy/CMakeLists.txt b/samples/spawn-thread-copy/CMakeLists.txt new file mode 100644 index 000000000..d93f071dc --- /dev/null +++ b/samples/spawn-thread-copy/CMakeLists.txt @@ -0,0 +1,76 @@ +# Copyright (C) 2019 Intel Corporation. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + +cmake_minimum_required(VERSION 2.8) +project(spawn_thread) + +set(CMAKE_C_COMPILER_WORKS 1) +set(CMAKE_CXX_COMPILER_WORKS 1) + +################ runtime settings ################ +string (TOLOWER ${CMAKE_HOST_SYSTEM_NAME} WAMR_BUILD_PLATFORM) +if (APPLE) + add_definitions(-DBH_PLATFORM_DARWIN) +endif () + +# Resetdefault linker flags +set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") +set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "") + +# WAMR features switch + +# Set WAMR_BUILD_TARGET, currently values supported: +# "X86_64", "AMD_64", "X86_32", "AARCH64[sub]", "ARM[sub]", "THUMB[sub]", +# "MIPS", "XTENSA", "RISCV64[sub]", "RISCV32[sub]" +if (NOT DEFINED WAMR_BUILD_TARGET) + if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm64|aarch64)") + set (WAMR_BUILD_TARGET "AARCH64") + elseif (CMAKE_SYSTEM_PROCESSOR STREQUAL "riscv64") + set (WAMR_BUILD_TARGET "RISCV64") + elseif (CMAKE_SIZEOF_VOID_P EQUAL 8) + # Build as X86_64 by default in 64-bit platform + set (WAMR_BUILD_TARGET "X86_64") + else () + # Build as X86_32 by default in 32-bit platform + set (WAMR_BUILD_TARGET "X86_32") + endif () +endif () + +if (NOT CMAKE_BUILD_TYPE) + set (CMAKE_BUILD_TYPE Release) +endif () + +set(WAMR_BUILD_INTERP 1) +set(WAMR_BUILD_AOT 1) +set(WAMR_BUILD_JIT 0) +set(WAMR_BUILD_LIBC_BUILTIN 1) +set(WAMR_BUILD_FAST_INTERP 1) +set(WAMR_BUILD_LIB_PTHREAD 1) + +# compiling and linking flags +set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pie -fPIE") +if (NOT (CMAKE_C_COMPILER MATCHES ".*clang.*" OR CMAKE_C_COMPILER_ID MATCHES ".*Clang")) + set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--gc-sections") +endif () +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wformat -Wformat-security") + +# build out vmlib +set(WAMR_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR}/../..) +include (${WAMR_ROOT_DIR}/build-scripts/runtime_lib.cmake) + +add_library(vmlib ${WAMR_RUNTIME_LIB_SOURCE}) +################################################ + + +################ wasm application ################ +add_subdirectory(wasm-apps) + +################ wamr runtime ################ +include (${SHARED_DIR}/utils/uncommon/shared_uncommon.cmake) + +set (RUNTIME_SOURCE_ALL + ${CMAKE_CURRENT_LIST_DIR}/src/main.c + ${UNCOMMON_SHARED_SOURCE} +) +add_executable (spawn_thread ${RUNTIME_SOURCE_ALL}) +target_link_libraries(spawn_thread vmlib -lpthread -lm) diff --git a/samples/spawn-thread-copy/src/lua.c b/samples/spawn-thread-copy/src/lua.c new file mode 100644 index 000000000..e69de29bb diff --git a/samples/spawn-thread-copy/src/main.c b/samples/spawn-thread-copy/src/main.c new file mode 100644 index 000000000..514b7cc70 --- /dev/null +++ b/samples/spawn-thread-copy/src/main.c @@ -0,0 +1,180 @@ +/* + * Copyright (C) 2019 Intel Corporation. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + */ + +#include "wasm_export.h" +#include "pthread.h" + +#define THREAD_NUM 10 + +void * +thread(void *arg) +{ + init_env(); + call_func(*arg); + return (void *)(uintptr_t)argv[0]; +} + +void * +wamr_thread_cb(wasm_exec_env_t exec_env, void *arg) +{ + init(*arg); + call_funct(*arg); + return (void *)(uintptr_t)argv[0]; +} + +int +main(int argc, char *argv[]) +{ + char *wasm_file = "wasm-apps/test.wasm"; + uint8 *wasm_file_buf = NULL; + uint32 wasm_file_size, wasm_argv[2], i, threads_created; + uint32 stack_size = 16 * 1024, heap_size = 16 * 1024; + wasm_module_t wasm_module = NULL; + wasm_module_inst_t wasm_module_inst = NULL; + wasm_exec_env_t exec_env = NULL; + RuntimeInitArgs init_args; + ThreadArgs thread_arg[THREAD_NUM]; + pthread_t tid[THREAD_NUM]; + wasm_thread_t wasm_tid[THREAD_NUM]; + uint32 result[THREAD_NUM], sum; + wasm_function_inst_t func; + char error_buf[128] = { 0 }; + + memset(thread_arg, 0, sizeof(ThreadArgs) * THREAD_NUM); + memset(&init_args, 0, sizeof(RuntimeInitArgs)); + init_args.mem_alloc_type = Alloc_With_Allocator; + init_args.mem_alloc_option.allocator.malloc_func = malloc; + init_args.mem_alloc_option.allocator.realloc_func = realloc; + init_args.mem_alloc_option.allocator.free_func = free; + init_args.max_thread_num = THREAD_NUM; + + /* initialize runtime environment */ + if (!wasm_runtime_full_init(&init_args)) { + printf("Init runtime environment failed.\n"); + return -1; + } + + /* load WASM byte buffer from WASM bin file */ + if (!(wasm_file_buf = + (uint8 *)bh_read_file_to_buffer(wasm_file, &wasm_file_size))) + goto fail1; + + /* load WASM module */ + if (!(wasm_module = wasm_runtime_load(wasm_file_buf, wasm_file_size, + error_buf, sizeof(error_buf)))) { + printf("%s\n", error_buf); + goto fail2; + } + + /* instantiate the module */ + if (!(wasm_module_inst = + wasm_runtime_instantiate(wasm_module, stack_size, heap_size, + error_buf, sizeof(error_buf)))) { + printf("%s\n", error_buf); + goto fail3; + } + + /* Create the first exec_env */ + call_func(ThreadArgs *thread_arg) + + /* + * Execute the wasm function in current thread, get the expect result + */ + if (!wasm_runtime_call_wasm(exec_env, func, 2, wasm_argv)) { + printf("%s\n", wasm_runtime_get_exception(wasm_module_inst)); + } + printf("expect result: %d\n", wasm_argv[0]); + + /* + * Run wasm function in multiple thread created by pthread_create + */ + memset(thread_arg, 0, sizeof(ThreadArgs) * THREAD_NUM); + for (i = 0; i < THREAD_NUM; i++) { + wasm_exec_env_t new_exec_env; + thread_arg[i].start = 10 * i; + thread_arg[i].length = 10; + + /* spawn a new exec_env to be executed in other threads */ + new_exec_env = wasm_runtime_spawn_exec_env(exec_env); + if (new_exec_env) + thread_arg[i].exec_env = new_exec_env; + else { + printf("failed to spawn exec_env\n"); + break; + } + + /* If we use: + thread_arg[i].exec_env = exec_env, + we may get wrong result */ + + if (0 != pthread_create(&tid[i], NULL, thread, &thread_arg[i])) { + printf("failed to create thread.\n"); + wasm_runtime_destroy_spawned_exec_env(new_exec_env); + break; + } + } + + threads_created = i; + + sum = 0; + memset(result, 0, sizeof(uint32) * THREAD_NUM); + for (i = 0; i < threads_created; i++) { + pthread_join(tid[i], (void **)&result[i]); + sum += result[i]; + /* destroy the spawned exec_env */ + if (thread_arg[i].exec_env) + wasm_runtime_destroy_spawned_exec_env(thread_arg[i].exec_env); + } + + printf("[pthread]sum result: %d\n", sum); + + /* + * Run wasm function in multiple thread created by wamr spawn API + */ + memset(thread_arg, 0, sizeof(ThreadArgs) * THREAD_NUM); + for (i = 0; i < THREAD_NUM; i++) { + thread_arg[i].start = 10 * i; + thread_arg[i].length = 10; + + /* No need to spawn exec_env manually */ + if (0 + != wasm_runtime_spawn_thread(exec_env, &wasm_tid[i], wamr_thread_cb, + &thread_arg[i])) { + printf("failed to spawn thread.\n"); + break; + } + } + + threads_created = i; + + sum = 0; + memset(result, 0, sizeof(uint32) * THREAD_NUM); + for (i = 0; i < threads_created; i++) { + wasm_runtime_join_thread(wasm_tid[i], (void **)&result[i]); + sum += result[i]; + /* No need to destroy the spawned exec_env */ + } + printf("[spwan_thread]sum result: %d\n", sum); + +fail5: + wasm_runtime_destroy_exec_env(exec_env); + +fail4: + /* destroy the module instance */ + wasm_runtime_deinstantiate(wasm_module_inst); + +fail3: + /* unload the module */ + wasm_runtime_unload(wasm_module); + +fail2: + /* free the file buffer */ + wasm_runtime_free(wasm_file_buf); + +fail1: + /* destroy runtime environment */ + wasm_runtime_destroy(); + return 0; +} diff --git a/samples/spawn-thread-copy/src/wasm.c b/samples/spawn-thread-copy/src/wasm.c new file mode 100644 index 000000000..469125105 --- /dev/null +++ b/samples/spawn-thread-copy/src/wasm.c @@ -0,0 +1,47 @@ +#include "wasm_export.h" +#include "pthread.h" + +typedef struct ThreadArgs { + wasm_exec_env_t exec_env; + int start; + int length; +} ThreadArgs; + +void init(void *arg) +{ + ThreadArgs *thread_arg = (ThreadArgs *)arg; + wasm_exec_env_t exec_env = thread_arg->exec_env; + wasm_module_inst_t module_inst = get_module_inst(exec_env); + wasm_function_inst_t func; + uint32 argv[2]; +} + +init_env() +{ + if (!wasm_runtime_init_thread_env()) { + printf("failed to initialize thread environment"); + return NULL; + } +} + +call_func(void *arg) +{ + init(*arg); + func = wasm_runtime_lookup_function(module_inst, "sum", NULL); + if (!func) { + printf("failed to lookup function sum"); + wasm_runtime_destroy_thread_env(); + return NULL; + } + argv[0] = thread_arg->start; + argv[1] = thread_arg->length; + + /* call the WASM function */ + if (!wasm_runtime_call_wasm(exec_env, func, 2, argv)) { + printf("%s\n", wasm_runtime_get_exception(module_inst)); + wasm_runtime_destroy_thread_env(); + return NULL; + } +} + + diff --git a/samples/spawn-thread-copy/wasm-apps/CMakeLists.txt b/samples/spawn-thread-copy/wasm-apps/CMakeLists.txt new file mode 100644 index 000000000..52ee7d752 --- /dev/null +++ b/samples/spawn-thread-copy/wasm-apps/CMakeLists.txt @@ -0,0 +1,38 @@ +# Copyright (C) 2019 Intel Corporation. All rights reserved. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + +cmake_minimum_required(VERSION 2.8) +project(wasm-apps) + +set(WAMR_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../..) + +if (APPLE) + set (HAVE_FLAG_SEARCH_PATHS_FIRST 0) + set (CMAKE_C_LINK_FLAGS "") + set (CMAKE_CXX_LINK_FLAGS "") +endif () +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=32768") +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,--shared-memory,--max-memory=131072, \ + -Wl,--no-entry,--strip-all,--export=sum, \ + -Wl,--export=__heap_base,--export=__data_end \ + -Wl,--export=__wasm_call_ctors \ + -Wl,--allow-undefined-file=${DEFINED_SYMBOLS}" +) + +add_executable(test.wasm sum.c) +target_link_libraries(test.wasm) diff --git a/samples/spawn-thread-copy/wasm-apps/sum.c b/samples/spawn-thread-copy/wasm-apps/sum.c new file mode 100644 index 000000000..de247f780 --- /dev/null +++ b/samples/spawn-thread-copy/wasm-apps/sum.c @@ -0,0 +1,16 @@ +/* + * Copyright (C) 2019 Intel Corporation. All rights reserved. + * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + */ + +int +sum(int start, int length) +{ + int sum = 0, i; + + for (i = start; i < start + length; i++) { + sum += i; + } + + return sum; +} \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeCache.txt b/samples/wasm-lua-comparison/src/CMakeCache.txt index a7f4e42a1..57c6fc185 100644 --- a/samples/wasm-lua-comparison/src/CMakeCache.txt +++ b/samples/wasm-lua-comparison/src/CMakeCache.txt @@ -235,6 +235,15 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip // Studio IDE projects all commands are done without /nologo. CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE +//Path to a file. +LUA_INCLUDE_DIR:PATH=/usr/local/include + +//Path to a library. +LUA_LIBRARY:FILEPATH=/usr/local/lib/liblua.a + +//Path to a library. +LUA_MATH_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so + //Value Computed by CMake comparison_BINARY_DIR:STATIC=/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src @@ -418,4 +427,12 @@ CMAKE_STRIP-ADVANCED:INTERNAL=1 CMAKE_UNAME:INTERNAL=/usr/bin/uname //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Lua +FIND_PACKAGE_MESSAGE_DETAILS_Lua:INTERNAL=[/usr/local/lib/liblua.a;/usr/lib/x86_64-linux-gnu/libm.so;dl][/usr/local/include][v5.4.4()] +//ADVANCED property for variable: LUA_INCLUDE_DIR +LUA_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: LUA_LIBRARY +LUA_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: LUA_MATH_LIBRARY +LUA_MATH_LIBRARY-ADVANCED:INTERNAL=1 diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Makefile.cmake b/samples/wasm-lua-comparison/src/CMakeFiles/Makefile.cmake index 2e8b7780c..5e6d5c18c 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Makefile.cmake +++ b/samples/wasm-lua-comparison/src/CMakeFiles/Makefile.cmake @@ -26,97 +26,23 @@ set(CMAKE_MAKEFILE_DEPENDS "CMakeFiles/3.23.2/CMakeCXXCompiler.cmake" "CMakeFiles/3.23.2/CMakeSystem.cmake" "../wasm-apps/CMakeLists.txt" - "/usr/share/cmake-3.23/Modules/CMakeASMCompiler.cmake.in" "/usr/share/cmake-3.23/Modules/CMakeASMInformation.cmake" - "/usr/share/cmake-3.23/Modules/CMakeCCompiler.cmake.in" - "/usr/share/cmake-3.23/Modules/CMakeCCompilerABI.c" "/usr/share/cmake-3.23/Modules/CMakeCInformation.cmake" - "/usr/share/cmake-3.23/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake-3.23/Modules/CMakeCXXCompilerABI.cpp" "/usr/share/cmake-3.23/Modules/CMakeCXXInformation.cmake" "/usr/share/cmake-3.23/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake-3.23/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineASMCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineCCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineCompileFeatures.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake-3.23/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake-3.23/Modules/CMakeFindBinUtils.cmake" "/usr/share/cmake-3.23/Modules/CMakeGenericSystem.cmake" "/usr/share/cmake-3.23/Modules/CMakeInitializeConfigs.cmake" "/usr/share/cmake-3.23/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake-3.23/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake-3.23/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake-3.23/Modules/CMakeParseLibraryArchitecture.cmake" - "/usr/share/cmake-3.23/Modules/CMakeSystem.cmake.in" "/usr/share/cmake-3.23/Modules/CMakeSystemSpecificInformation.cmake" "/usr/share/cmake-3.23/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake-3.23/Modules/CMakeTestASMCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeTestCCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake-3.23/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake-3.23/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" "/usr/share/cmake-3.23/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/GHS-DetermineCompiler.cmake" "/usr/share/cmake-3.23/Modules/Compiler/GNU-ASM.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/GNU-C-DetermineCompiler.cmake" "/usr/share/cmake-3.23/Modules/Compiler/GNU-C.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" "/usr/share/cmake-3.23/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/GNU-FindBinUtils.cmake" "/usr/share/cmake-3.23/Modules/Compiler/GNU.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/LCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake-3.23/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake-3.23/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/share/cmake-3.23/Modules/FindLua.cmake" + "/usr/share/cmake-3.23/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.23/Modules/FindPackageMessage.cmake" "/usr/share/cmake-3.23/Modules/Platform/Linux-GNU-C.cmake" "/usr/share/cmake-3.23/Modules/Platform/Linux-GNU-CXX.cmake" "/usr/share/cmake-3.23/Modules/Platform/Linux-GNU.cmake" @@ -132,12 +58,6 @@ set(CMAKE_MAKEFILE_OUTPUTS # Byproducts of CMake generate step: set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.23.2/CMakeSystem.cmake" - "CMakeFiles/3.23.2/CMakeCCompiler.cmake" - "CMakeFiles/3.23.2/CMakeCXXCompiler.cmake" - "CMakeFiles/3.23.2/CMakeCCompiler.cmake" - "CMakeFiles/3.23.2/CMakeCXXCompiler.cmake" - "CMakeFiles/3.23.2/CMakeASMCompiler.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake" "wasm-apps/CMakeFiles/CMakeDirectoryInformation.cmake" ) diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/1 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/1 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/1 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/10 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/10 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/10 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/11 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/11 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/11 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/12 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/12 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/12 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/13 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/13 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/13 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/14 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/14 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/14 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/15 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/15 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/15 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/16 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/16 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/16 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/17 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/17 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/17 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/18 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/18 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/18 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/19 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/19 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/19 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/20 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/20 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/20 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/21 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/21 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/21 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/22 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/22 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/22 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/23 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/23 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/23 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/24 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/24 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/24 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/25 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/25 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/25 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/26 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/26 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/26 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/27 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/27 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/27 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/28 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/28 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/28 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/29 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/29 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/29 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/30 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/30 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/30 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/31 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/31 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/31 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/32 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/32 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/32 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/33 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/33 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/33 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/34 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/34 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/34 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/35 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/35 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/35 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/36 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/36 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/36 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/37 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/37 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/37 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/38 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/38 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/38 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/39 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/39 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/39 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/40 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/40 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/40 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/41 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/41 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/41 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/42 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/42 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/42 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/43 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/43 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/43 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/44 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/44 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/44 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/45 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/45 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/45 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/9 b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/9 deleted file mode 100644 index 7b4d68d70..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/9 +++ /dev/null @@ -1 +0,0 @@ -empty \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/count.txt b/samples/wasm-lua-comparison/src/CMakeFiles/Progress/count.txt deleted file mode 100644 index ea90ee319..000000000 --- a/samples/wasm-lua-comparison/src/CMakeFiles/Progress/count.txt +++ /dev/null @@ -1 +0,0 @@ -45 diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/DependInfo.cmake b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/DependInfo.cmake index 6cf0f02bf..9f88fa1e4 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/DependInfo.cmake +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/DependInfo.cmake @@ -10,7 +10,7 @@ set(CMAKE_DEPENDS_LANGUAGES set(CMAKE_DEPENDS_DEPENDENCY_FILES "/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o" "gcc" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o.d" "/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o" "gcc" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o.d" - "/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/lua.c" "CMakeFiles/comparison.dir/lua.c.o" "gcc" "CMakeFiles/comparison.dir/lua.c.o.d" + "/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/luaModule.c" "CMakeFiles/comparison.dir/luaModule.c.o" "gcc" "CMakeFiles/comparison.dir/luaModule.c.o.d" "/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/main.c" "CMakeFiles/comparison.dir/main.c.o" "gcc" "CMakeFiles/comparison.dir/main.c.o.d" "/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/wasm.c" "CMakeFiles/comparison.dir/wasm.c.o" "gcc" "CMakeFiles/comparison.dir/wasm.c.o.d" ) diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/build.make b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/build.make index 0bb10af3d..d6eba1f37 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/build.make +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/build.make @@ -83,19 +83,19 @@ CMakeFiles/comparison.dir/main.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/comparison.dir/main.c.s" /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/main.c -o CMakeFiles/comparison.dir/main.c.s -CMakeFiles/comparison.dir/lua.c.o: CMakeFiles/comparison.dir/flags.make -CMakeFiles/comparison.dir/lua.c.o: lua.c -CMakeFiles/comparison.dir/lua.c.o: CMakeFiles/comparison.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/comparison.dir/lua.c.o" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/comparison.dir/lua.c.o -MF CMakeFiles/comparison.dir/lua.c.o.d -o CMakeFiles/comparison.dir/lua.c.o -c /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/lua.c +CMakeFiles/comparison.dir/luaModule.c.o: CMakeFiles/comparison.dir/flags.make +CMakeFiles/comparison.dir/luaModule.c.o: luaModule.c +CMakeFiles/comparison.dir/luaModule.c.o: CMakeFiles/comparison.dir/compiler_depend.ts + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/comparison.dir/luaModule.c.o" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/comparison.dir/luaModule.c.o -MF CMakeFiles/comparison.dir/luaModule.c.o.d -o CMakeFiles/comparison.dir/luaModule.c.o -c /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/luaModule.c -CMakeFiles/comparison.dir/lua.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/comparison.dir/lua.c.i" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/lua.c > CMakeFiles/comparison.dir/lua.c.i +CMakeFiles/comparison.dir/luaModule.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/comparison.dir/luaModule.c.i" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/luaModule.c > CMakeFiles/comparison.dir/luaModule.c.i -CMakeFiles/comparison.dir/lua.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/comparison.dir/lua.c.s" - /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/lua.c -o CMakeFiles/comparison.dir/lua.c.s +CMakeFiles/comparison.dir/luaModule.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/comparison.dir/luaModule.c.s" + /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/luaModule.c -o CMakeFiles/comparison.dir/luaModule.c.s CMakeFiles/comparison.dir/wasm.c.o: CMakeFiles/comparison.dir/flags.make CMakeFiles/comparison.dir/wasm.c.o: wasm.c @@ -142,7 +142,7 @@ CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncom # Object files for target comparison comparison_OBJECTS = \ "CMakeFiles/comparison.dir/main.c.o" \ -"CMakeFiles/comparison.dir/lua.c.o" \ +"CMakeFiles/comparison.dir/luaModule.c.o" \ "CMakeFiles/comparison.dir/wasm.c.o" \ "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o" \ "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o" @@ -151,12 +151,14 @@ comparison_OBJECTS = \ comparison_EXTERNAL_OBJECTS = comparison: CMakeFiles/comparison.dir/main.c.o -comparison: CMakeFiles/comparison.dir/lua.c.o +comparison: CMakeFiles/comparison.dir/luaModule.c.o comparison: CMakeFiles/comparison.dir/wasm.c.o comparison: CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o comparison: CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o comparison: CMakeFiles/comparison.dir/build.make comparison: libvmlib.a +comparison: /usr/local/lib/liblua.a +comparison: /usr/lib/x86_64-linux-gnu/libm.so comparison: CMakeFiles/comparison.dir/link.txt @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C executable comparison" $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/comparison.dir/link.txt --verbose=$(VERBOSE) diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/cmake_clean.cmake b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/cmake_clean.cmake index 1500cda74..fa9ad22b3 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/cmake_clean.cmake +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/cmake_clean.cmake @@ -3,8 +3,8 @@ file(REMOVE_RECURSE "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o.d" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o.d" - "CMakeFiles/comparison.dir/lua.c.o" - "CMakeFiles/comparison.dir/lua.c.o.d" + "CMakeFiles/comparison.dir/luaModule.c.o" + "CMakeFiles/comparison.dir/luaModule.c.o.d" "CMakeFiles/comparison.dir/main.c.o" "CMakeFiles/comparison.dir/main.c.o.d" "CMakeFiles/comparison.dir/wasm.c.o" diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.internal b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.internal index 1d9c42f04..e04bd897f 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.internal +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.internal @@ -214,12 +214,9 @@ CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncom /home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.h /home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.h -CMakeFiles/comparison.dir/lua.c.o - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/lua.c +CMakeFiles/comparison.dir/luaModule.c.o + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/luaModule.c /usr/include/stdc-predef.h - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/include/lua.h - /usr/local/include/lauxlib.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/libc-header-start.h /usr/include/features.h @@ -228,85 +225,12 @@ CMakeFiles/comparison.dir/lua.c.o /usr/include/x86_64-linux-gnu/bits/long-double.h /usr/include/x86_64-linux-gnu/gnu/stubs.h /usr/include/x86_64-linux-gnu/gnu/stubs-64.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h - /usr/include/x86_64-linux-gnu/bits/types.h - /usr/include/x86_64-linux-gnu/bits/timesize.h - /usr/include/x86_64-linux-gnu/bits/typesizes.h - /usr/include/x86_64-linux-gnu/bits/time64.h - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h - /usr/include/x86_64-linux-gnu/bits/types/FILE.h - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h - /usr/include/x86_64-linux-gnu/bits/sys_errlist.h - /usr/include/x86_64-linux-gnu/bits/stdio.h - /usr/include/x86_64-linux-gnu/bits/stdio2.h - /usr/local/include/luaconf.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h - /usr/include/limits.h - /usr/include/x86_64-linux-gnu/bits/posix1_lim.h - /usr/include/x86_64-linux-gnu/bits/local_lim.h - /usr/include/linux/limits.h - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h - /usr/include/stdint.h - /usr/include/x86_64-linux-gnu/bits/wchar.h - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h - /usr/local/include/lua.h - /usr/local/include/lualib.h - -CMakeFiles/comparison.dir/main.c.o - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/main.c - /usr/include/stdc-predef.h - /home/szadys/wasm-micro-runtime/core/iwasm/include/wasm_export.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h - /usr/include/stdint.h - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h - /usr/include/features.h - /usr/include/x86_64-linux-gnu/sys/cdefs.h - /usr/include/x86_64-linux-gnu/bits/wordsize.h - /usr/include/x86_64-linux-gnu/bits/long-double.h - /usr/include/x86_64-linux-gnu/gnu/stubs.h - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h - /usr/include/x86_64-linux-gnu/bits/types.h - /usr/include/x86_64-linux-gnu/bits/timesize.h - /usr/include/x86_64-linux-gnu/bits/typesizes.h - /usr/include/x86_64-linux-gnu/bits/time64.h - /usr/include/x86_64-linux-gnu/bits/wchar.h - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdbool.h - /home/szadys/wasm-micro-runtime/core/iwasm/include/lib_export.h - /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_platform.h - /home/szadys/wasm-micro-runtime/core/shared/platform/include/platform_common.h - /home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_internal.h - /usr/include/inttypes.h - /usr/include/assert.h - /usr/include/time.h /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h - /usr/include/x86_64-linux-gnu/bits/time.h - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h - /usr/include/x86_64-linux-gnu/bits/types/time_t.h - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h - /usr/include/x86_64-linux-gnu/bits/endian.h - /usr/include/x86_64-linux-gnu/bits/endianness.h - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h - /usr/include/string.h - /usr/include/strings.h - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h - /usr/include/x86_64-linux-gnu/bits/string_fortified.h - /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h + /usr/include/x86_64-linux-gnu/bits/types.h + /usr/include/x86_64-linux-gnu/bits/timesize.h + /usr/include/x86_64-linux-gnu/bits/typesizes.h + /usr/include/x86_64-linux-gnu/bits/time64.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h @@ -323,7 +247,14 @@ CMakeFiles/comparison.dir/main.c.o /usr/include/x86_64-linux-gnu/bits/floatn.h /usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/x86_64-linux-gnu/sys/types.h + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h + /usr/include/x86_64-linux-gnu/bits/types/time_t.h + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h + /usr/include/x86_64-linux-gnu/bits/endian.h + /usr/include/x86_64-linux-gnu/bits/endianness.h /usr/include/x86_64-linux-gnu/bits/byteswap.h /usr/include/x86_64-linux-gnu/bits/uintn-identity.h /usr/include/x86_64-linux-gnu/sys/select.h @@ -331,6 +262,7 @@ CMakeFiles/comparison.dir/main.c.o /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h /usr/include/x86_64-linux-gnu/bits/select2.h /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h @@ -341,6 +273,111 @@ CMakeFiles/comparison.dir/main.c.o /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h /usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/x86_64-linux-gnu/bits/stdlib.h + /usr/include/time.h + /usr/include/x86_64-linux-gnu/bits/time.h + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h + /usr/local/include/lua.h + /usr/local/include/luaconf.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h + /usr/include/limits.h + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h + /usr/include/x86_64-linux-gnu/bits/local_lim.h + /usr/include/linux/limits.h + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h + /usr/include/stdint.h + /usr/include/x86_64-linux-gnu/bits/wchar.h + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h + /usr/local/include/lualib.h + /usr/local/include/lua.h + /usr/local/include/lauxlib.h + +CMakeFiles/comparison.dir/main.c.o + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/main.c + /usr/include/stdc-predef.h + /usr/include/stdio.h + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h + /usr/include/features.h + /usr/include/x86_64-linux-gnu/sys/cdefs.h + /usr/include/x86_64-linux-gnu/bits/wordsize.h + /usr/include/x86_64-linux-gnu/bits/long-double.h + /usr/include/x86_64-linux-gnu/gnu/stubs.h + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h + /usr/include/x86_64-linux-gnu/bits/types.h + /usr/include/x86_64-linux-gnu/bits/timesize.h + /usr/include/x86_64-linux-gnu/bits/typesizes.h + /usr/include/x86_64-linux-gnu/bits/time64.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h + /usr/include/x86_64-linux-gnu/bits/types/FILE.h + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h + /usr/include/x86_64-linux-gnu/bits/stdio.h + /usr/include/x86_64-linux-gnu/bits/stdio2.h + /usr/include/stdlib.h + /usr/include/x86_64-linux-gnu/bits/waitflags.h + /usr/include/x86_64-linux-gnu/bits/waitstatus.h + /usr/include/x86_64-linux-gnu/bits/floatn.h + /usr/include/x86_64-linux-gnu/bits/floatn-common.h + /usr/include/x86_64-linux-gnu/sys/types.h + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h + /usr/include/x86_64-linux-gnu/bits/types/time_t.h + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h + /usr/include/endian.h + /usr/include/x86_64-linux-gnu/bits/endian.h + /usr/include/x86_64-linux-gnu/bits/endianness.h + /usr/include/x86_64-linux-gnu/bits/byteswap.h + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h + /usr/include/x86_64-linux-gnu/sys/select.h + /usr/include/x86_64-linux-gnu/bits/select.h + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h + /usr/include/x86_64-linux-gnu/bits/select2.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h + /usr/include/alloca.h + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h + /usr/include/x86_64-linux-gnu/bits/stdlib.h + /home/szadys/wasm-micro-runtime/core/iwasm/include/wasm_export.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h + /usr/include/stdint.h + /usr/include/x86_64-linux-gnu/bits/wchar.h + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdbool.h + /home/szadys/wasm-micro-runtime/core/iwasm/include/lib_export.h + /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_platform.h + /home/szadys/wasm-micro-runtime/core/shared/platform/include/platform_common.h + /home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_internal.h + /usr/include/inttypes.h + /usr/include/assert.h + /usr/include/time.h + /usr/include/x86_64-linux-gnu/bits/time.h + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h + /usr/include/string.h + /usr/include/strings.h + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h + /usr/include/x86_64-linux-gnu/bits/string_fortified.h /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h @@ -469,15 +506,15 @@ CMakeFiles/comparison.dir/main.c.o /home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.h /home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.h /home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.h - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/include/lua.h - /home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm.h - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.h - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.h - /usr/local/include/lua.hpp /usr/local/include/lua.h /usr/local/include/luaconf.h /usr/local/include/lualib.h + /usr/local/include/lua.h /usr/local/include/lauxlib.h + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/include/luaModule.h + /home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm.h + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.h + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.h CMakeFiles/comparison.dir/wasm.c.o /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/wasm.c diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.make b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.make index 46240ac3b..dc1504af4 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.make +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/compiler_depend.make @@ -212,11 +212,8 @@ CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncom /home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.h \ /home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.h -CMakeFiles/comparison.dir/lua.c.o: lua.c \ +CMakeFiles/comparison.dir/luaModule.c.o: luaModule.c \ /usr/include/stdc-predef.h \ - ../include/lua.h \ - /usr/local/include/lauxlib.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ /usr/include/stdio.h \ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ /usr/include/features.h \ @@ -225,84 +222,12 @@ CMakeFiles/comparison.dir/lua.c.o: lua.c \ /usr/include/x86_64-linux-gnu/bits/long-double.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ - /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ - /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ - /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h \ - /usr/local/include/luaconf.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \ - /usr/include/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h \ - /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/local/include/lua.h \ - /usr/local/include/lualib.h - -CMakeFiles/comparison.dir/main.c.o: main.c \ - /usr/include/stdc-predef.h \ - /home/szadys/wasm-micro-runtime/core/iwasm/include/wasm_export.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h \ - /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ - /usr/include/features.h \ - /usr/include/x86_64-linux-gnu/sys/cdefs.h \ - /usr/include/x86_64-linux-gnu/bits/wordsize.h \ - /usr/include/x86_64-linux-gnu/bits/long-double.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs.h \ - /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/include/x86_64-linux-gnu/bits/types.h \ - /usr/include/x86_64-linux-gnu/bits/timesize.h \ - /usr/include/x86_64-linux-gnu/bits/typesizes.h \ - /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdbool.h \ - /home/szadys/wasm-micro-runtime/core/iwasm/include/lib_export.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_platform.h \ - /home/szadys/wasm-micro-runtime/core/shared/platform/include/platform_common.h \ - /home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_internal.h \ - /usr/include/inttypes.h \ - /usr/include/assert.h \ - /usr/include/time.h \ /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/string.h \ - /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/stdio.h \ /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ @@ -319,7 +244,14 @@ CMakeFiles/comparison.dir/main.c.o: main.c \ /usr/include/x86_64-linux-gnu/bits/floatn.h \ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ @@ -327,6 +259,7 @@ CMakeFiles/comparison.dir/main.c.o: main.c \ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ @@ -337,6 +270,110 @@ CMakeFiles/comparison.dir/main.c.o: main.c \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/local/include/lua.h \ + /usr/local/include/luaconf.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \ + /usr/include/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/local/include/lualib.h \ + /usr/local/include/lua.h \ + /usr/local/include/lauxlib.h + +CMakeFiles/comparison.dir/main.c.o: main.c \ + /usr/include/stdc-predef.h \ + /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h \ + /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h \ + /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \ + /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /home/szadys/wasm-micro-runtime/core/iwasm/include/wasm_export.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h \ + /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdbool.h \ + /home/szadys/wasm-micro-runtime/core/iwasm/include/lib_export.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_platform.h \ + /home/szadys/wasm-micro-runtime/core/shared/platform/include/platform_common.h \ + /home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_internal.h \ + /usr/include/inttypes.h \ + /usr/include/assert.h \ + /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/string.h \ + /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ /usr/include/math.h \ /usr/include/x86_64-linux-gnu/bits/math-vector.h \ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ @@ -465,15 +502,15 @@ CMakeFiles/comparison.dir/main.c.o: main.c \ /home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.h \ /home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.h \ /home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.h \ - ../include/lua.h \ - /home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.h \ - /usr/local/include/lua.hpp \ /usr/local/include/lua.h \ /usr/local/include/luaconf.h \ /usr/local/include/lualib.h \ - /usr/local/include/lauxlib.h + /usr/local/include/lua.h \ + /usr/local/include/lauxlib.h \ + ../include/luaModule.h \ + /home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.h CMakeFiles/comparison.dir/wasm.c.o: wasm.c \ /usr/include/stdc-predef.h \ @@ -727,14 +764,10 @@ wasm.c: /usr/include/x86_64-linux-gnu/sys/uio.h: -/usr/local/include/lua.hpp: - /usr/include/x86_64-linux-gnu/bits/types/struct_rusage.h: /usr/include/x86_64-linux-gnu/sys/timeb.h: -../include/lua.h: - /usr/include/x86_64-linux-gnu/sys/time.h: /usr/include/x86_64-linux-gnu/sys/mman.h: @@ -815,6 +848,8 @@ wasm.c: /usr/include/x86_64-linux-gnu/bits/string_fortified.h: +../include/luaModule.h: + /usr/include/endian.h: /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h: @@ -887,8 +922,6 @@ wasm.c: /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h: -lua.c: - /usr/include/x86_64-linux-gnu/bits/signal_ext.h: /usr/include/x86_64-linux-gnu/asm/socket.h: @@ -955,6 +988,8 @@ lua.c: /usr/include/x86_64-linux-gnu/gnu/stubs.h: +luaModule.c: + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h: /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h: diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/link.txt b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/link.txt index 4831aaacb..07ee40404 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/link.txt +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/link.txt @@ -1 +1 @@ -/usr/bin/cc -Wall -Wextra -Wformat -Wformat-security -std=gnu99 -ffunction-sections -fdata-sections -Wall -Wno-unused-parameter -Wno-pedantic -fPIC -O3 -DNDEBUG -pie -fPIE -Wl,--gc-sections -fPIC CMakeFiles/comparison.dir/main.c.o CMakeFiles/comparison.dir/lua.c.o CMakeFiles/comparison.dir/wasm.c.o "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o" -o comparison libvmlib.a -lpthread -lm +/usr/bin/cc -Wall -Wextra -Wformat -Wformat-security -std=gnu99 -ffunction-sections -fdata-sections -Wall -Wno-unused-parameter -Wno-pedantic -fPIC -O3 -DNDEBUG -pie -fPIE -Wl,--gc-sections -fPIC CMakeFiles/comparison.dir/main.c.o CMakeFiles/comparison.dir/luaModule.c.o CMakeFiles/comparison.dir/wasm.c.o "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o" "CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o" -o comparison libvmlib.a -lpthread -lm /usr/local/lib/liblua.a -lm -ldl diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/lua.c.o.d b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/lua.c.o.d index e6edcb3c0..533556414 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/lua.c.o.d +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/lua.c.o.d @@ -2,20 +2,33 @@ CMakeFiles/comparison.dir/lua.c.o: \ /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/lua.c \ /usr/include/stdc-predef.h \ /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/include/lua.h \ - /usr/local/include/lauxlib.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h /usr/include/stdio.h \ + /usr/local/include/lua.hpp /usr/local/include/lua.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ + /usr/local/include/luaconf.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \ + /usr/include/limits.h \ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/bits/long-double.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/timesize.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/local/include/lualib.h /usr/local/include/lauxlib.h \ + /usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ @@ -24,15 +37,5 @@ CMakeFiles/comparison.dir/lua.c.o: \ /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ /usr/include/x86_64-linux-gnu/bits/stdio.h \ - /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/local/include/luaconf.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \ - /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ - /usr/include/x86_64-linux-gnu/bits/local_lim.h \ - /usr/include/linux/limits.h \ - /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/local/include/lua.h /usr/local/include/lualib.h + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/local/include/lualib.h \ + /usr/local/include/lauxlib.h diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/luaModule.c.o b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/luaModule.c.o new file mode 100644 index 000000000..d3dd57ba2 Binary files /dev/null and b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/luaModule.c.o differ diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/luaModule.c.o.d b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/luaModule.c.o.d new file mode 100644 index 000000000..508570ebd --- /dev/null +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/luaModule.c.o.d @@ -0,0 +1,71 @@ +CMakeFiles/comparison.dir/luaModule.c.o: \ + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/luaModule.c \ + /usr/include/stdc-predef.h /usr/include/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ + /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ + /usr/include/x86_64-linux-gnu/bits/wordsize.h \ + /usr/include/x86_64-linux-gnu/bits/long-double.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs.h \ + /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ + /usr/include/x86_64-linux-gnu/bits/types.h \ + /usr/include/x86_64-linux-gnu/bits/timesize.h \ + /usr/include/x86_64-linux-gnu/bits/typesizes.h \ + /usr/include/x86_64-linux-gnu/bits/time64.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/FILE.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \ + /usr/include/x86_64-linux-gnu/bits/stdio_lim.h \ + /usr/include/x86_64-linux-gnu/bits/sys_errlist.h \ + /usr/include/x86_64-linux-gnu/bits/stdio.h \ + /usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \ + /usr/include/x86_64-linux-gnu/bits/waitflags.h \ + /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ + /usr/include/x86_64-linux-gnu/bits/floatn.h \ + /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ + /usr/include/x86_64-linux-gnu/bits/byteswap.h \ + /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ + /usr/include/x86_64-linux-gnu/sys/select.h \ + /usr/include/x86_64-linux-gnu/bits/select.h \ + /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ + /usr/include/x86_64-linux-gnu/bits/select2.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ + /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ + /usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \ + /usr/include/x86_64-linux-gnu/bits/struct_mutex.h \ + /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/local/include/lua.h /usr/local/include/luaconf.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/limits.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/syslimits.h \ + /usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \ + /usr/include/x86_64-linux-gnu/bits/local_lim.h \ + /usr/include/linux/limits.h \ + /usr/include/x86_64-linux-gnu/bits/posix2_lim.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/local/include/lualib.h /usr/local/include/lua.h \ + /usr/local/include/lauxlib.h diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o index 4a26fbec7..b4aca4795 100644 Binary files a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o and b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o differ diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o.d b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o.d index c8055d2e9..4f0f6dae9 100644 --- a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o.d +++ b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/main.c.o.d @@ -1,45 +1,18 @@ CMakeFiles/comparison.dir/main.c.o: \ /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/main.c \ - /usr/include/stdc-predef.h \ - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/../../core/iwasm/include/wasm_export.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \ + /usr/include/stdc-predef.h /usr/include/stdio.h \ /usr/include/x86_64-linux-gnu/bits/libc-header-start.h \ /usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \ /usr/include/x86_64-linux-gnu/bits/wordsize.h \ /usr/include/x86_64-linux-gnu/bits/long-double.h \ /usr/include/x86_64-linux-gnu/gnu/stubs.h \ /usr/include/x86_64-linux-gnu/gnu/stubs-64.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/types.h \ /usr/include/x86_64-linux-gnu/bits/timesize.h \ /usr/include/x86_64-linux-gnu/bits/typesizes.h \ /usr/include/x86_64-linux-gnu/bits/time64.h \ - /usr/include/x86_64-linux-gnu/bits/wchar.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-intn.h \ - /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stdbool.h \ - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/../../core/iwasm/include/lib_export.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_platform.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/../platform/include/platform_common.h \ - /home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_internal.h \ - /usr/include/inttypes.h /usr/include/assert.h /usr/include/time.h \ - /usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \ - /usr/include/x86_64-linux-gnu/bits/time.h \ - /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ - /usr/include/x86_64-linux-gnu/bits/endian.h \ - /usr/include/x86_64-linux-gnu/bits/endianness.h \ - /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ - /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ - /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ - /usr/include/string.h /usr/include/strings.h \ - /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ - /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ - /usr/include/stdio.h /usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \ /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \ @@ -54,7 +27,14 @@ CMakeFiles/comparison.dir/main.c.o: \ /usr/include/x86_64-linux-gnu/bits/waitstatus.h \ /usr/include/x86_64-linux-gnu/bits/floatn.h \ /usr/include/x86_64-linux-gnu/bits/floatn-common.h \ - /usr/include/x86_64-linux-gnu/sys/types.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/sys/types.h \ + /usr/include/x86_64-linux-gnu/bits/types/clock_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/time_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/timer_t.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endian.h \ + /usr/include/x86_64-linux-gnu/bits/endianness.h \ /usr/include/x86_64-linux-gnu/bits/byteswap.h \ /usr/include/x86_64-linux-gnu/bits/uintn-identity.h \ /usr/include/x86_64-linux-gnu/sys/select.h \ @@ -62,6 +42,7 @@ CMakeFiles/comparison.dir/main.c.o: \ /usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \ /usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \ /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \ /usr/include/x86_64-linux-gnu/bits/select2.h \ /usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \ /usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \ @@ -70,8 +51,27 @@ CMakeFiles/comparison.dir/main.c.o: \ /usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \ /usr/include/x86_64-linux-gnu/bits/stdlib-float.h \ - /usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/math.h \ - /usr/include/x86_64-linux-gnu/bits/math-vector.h \ + /usr/include/x86_64-linux-gnu/bits/stdlib.h \ + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/../../core/iwasm/include/wasm_export.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \ + /usr/include/x86_64-linux-gnu/bits/wchar.h \ + /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \ + /usr/lib/gcc/x86_64-linux-gnu/9/include/stdbool.h \ + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/../../core/iwasm/include/lib_export.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_platform.h \ + /home/szadys/wasm-micro-runtime/core/shared/utils/../platform/include/platform_common.h \ + /home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_internal.h \ + /usr/include/inttypes.h /usr/include/assert.h /usr/include/time.h \ + /usr/include/x86_64-linux-gnu/bits/time.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \ + /usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \ + /usr/include/x86_64-linux-gnu/bits/types/locale_t.h \ + /usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \ + /usr/include/string.h /usr/include/strings.h \ + /usr/include/x86_64-linux-gnu/bits/strings_fortified.h \ + /usr/include/x86_64-linux-gnu/bits/string_fortified.h \ + /usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \ /usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \ /usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \ /usr/include/x86_64-linux-gnu/bits/fp-logb.h \ @@ -182,10 +182,10 @@ CMakeFiles/comparison.dir/main.c.o: \ /home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.h \ /home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.h \ /home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.h \ - /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/include/lua.h \ + /usr/local/include/lua.h /usr/local/include/luaconf.h \ + /usr/local/include/lualib.h /usr/local/include/lua.h \ + /usr/local/include/lauxlib.h \ + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/include/luaModule.h \ /home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm.h \ /home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.h \ - /home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.h \ - /usr/local/include/lua.hpp /usr/local/include/lua.h \ - /usr/local/include/luaconf.h /usr/local/include/lualib.h \ - /usr/local/include/lauxlib.h + /home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.h diff --git a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/wasm.c.o b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/wasm.c.o index c0f9df220..616b98f16 100644 Binary files a/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/wasm.c.o and b/samples/wasm-lua-comparison/src/CMakeFiles/comparison.dir/wasm.c.o differ diff --git a/samples/wasm-lua-comparison/src/Makefile b/samples/wasm-lua-comparison/src/Makefile new file mode 100644 index 000000000..129dfff47 --- /dev/null +++ b/samples/wasm-lua-comparison/src/Makefile @@ -0,0 +1,1271 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Disable VCS-based implicit rules. +% : %,v + +# Disable VCS-based implicit rules. +% : RCS/% + +# Disable VCS-based implicit rules. +% : RCS/%,v + +# Disable VCS-based implicit rules. +% : SCCS/s.% + +# Disable VCS-based implicit rules. +% : s.% + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Command-line flag to silence nested $(MAKE). +$(VERBOSE)MAKESILENT = -s + +#Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E rm -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src//CMakeFiles/progress.marks + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/src/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named vmlib + +# Build rule for target. +vmlib: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 vmlib +.PHONY : vmlib + +# fast build rule for target. +vmlib/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/build +.PHONY : vmlib/fast + +#============================================================================= +# Target rules for targets named comparison + +# Build rule for target. +comparison: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 comparison +.PHONY : comparison + +# fast build rule for target. +comparison/fast: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/build +.PHONY : comparison/fast + +#============================================================================= +# Target rules for targets named test.wasm + +# Build rule for target. +test.wasm: cmake_check_build_system + $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test.wasm +.PHONY : test.wasm + +# fast build rule for target. +test.wasm/fast: + $(MAKE) $(MAKESILENT) -f wasm-apps/CMakeFiles/test.wasm.dir/build.make wasm-apps/CMakeFiles/test.wasm.dir/build +.PHONY : test.wasm/fast + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.o: home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.i: home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.s: home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.o: home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.s.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.o: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.i: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.s: home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.o: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.i: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.s: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.o: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.i: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.s: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.o: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.i: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.s: home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.o: home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.i: home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.s: home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.o: home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.i: home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.s: home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.c.s + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.o: home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.o + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.i: home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.i + +home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.s: home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.c.s + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.o + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.i + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.c.s + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.o + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.i + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.c.s + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.o + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.i + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.c.s + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.o: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.o + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.i: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.i + +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.s: home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.c.s + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.o + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.i + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.c.s + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.o + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.i + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.c.s + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.o + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.i + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.c.s + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.o + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.i + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.c.s + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.o: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.o + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.i: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.i + +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.s: home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.c.s + +home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.o: home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.o + +home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.i: home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.i + +home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.s: home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.o: home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.i: home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.s: home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.o: home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.i: home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.s: home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/vmlib.dir/build.make CMakeFiles/vmlib.dir/home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.o: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.i: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.s: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.c.s + +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.o: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.o + +# target to build an object file +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.o + +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.i: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.i + +# target to preprocess a source file +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.i + +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.s: home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.s + +# target to generate assembly for a file +home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s +.PHONY : home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.c.s + +luaModule.o: luaModule.c.o +.PHONY : luaModule.o + +# target to build an object file +luaModule.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/luaModule.c.o +.PHONY : luaModule.c.o + +luaModule.i: luaModule.c.i +.PHONY : luaModule.i + +# target to preprocess a source file +luaModule.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/luaModule.c.i +.PHONY : luaModule.c.i + +luaModule.s: luaModule.c.s +.PHONY : luaModule.s + +# target to generate assembly for a file +luaModule.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/luaModule.c.s +.PHONY : luaModule.c.s + +main.o: main.c.o +.PHONY : main.o + +# target to build an object file +main.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/main.c.o +.PHONY : main.c.o + +main.i: main.c.i +.PHONY : main.i + +# target to preprocess a source file +main.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/main.c.i +.PHONY : main.c.i + +main.s: main.c.s +.PHONY : main.s + +# target to generate assembly for a file +main.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/main.c.s +.PHONY : main.c.s + +wasm.o: wasm.c.o +.PHONY : wasm.o + +# target to build an object file +wasm.c.o: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/wasm.c.o +.PHONY : wasm.c.o + +wasm.i: wasm.c.i +.PHONY : wasm.i + +# target to preprocess a source file +wasm.c.i: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/wasm.c.i +.PHONY : wasm.c.i + +wasm.s: wasm.c.s +.PHONY : wasm.s + +# target to generate assembly for a file +wasm.c.s: + $(MAKE) $(MAKESILENT) -f CMakeFiles/comparison.dir/build.make CMakeFiles/comparison.dir/wasm.c.s +.PHONY : wasm.c.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... comparison" + @echo "... test.wasm" + @echo "... vmlib" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_intrinsic.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_loader.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/aot_runtime.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/aot/arch/aot_reloc_x86_64.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/arch/invokeNative_em64.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_application.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_c_api.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_exec_env.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_memory.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_native.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_runtime_common.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/common/wasm_shared_memory.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_interp_fast.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_loader.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/interpreter/wasm_runtime.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/lib-pthread/lib_pthread_wrapper.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/libc-builtin/libc_builtin_wrapper.s" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.o" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.i" + @echo "... home/szadys/wasm-micro-runtime/core/iwasm/libraries/thread-mgr/thread_manager.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_alloc.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_hmu.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/ems/ems_kfc.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/mem-alloc/mem_alloc.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_malloc.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_memmap.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_socket.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_thread.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/common/posix/posix_time.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/platform/linux/platform_init.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_assert.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_common.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_hashmap.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_list.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_log.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_queue.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/bh_vector.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/runtime_timer.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_getopt.s" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.o" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.i" + @echo "... home/szadys/wasm-micro-runtime/core/shared/utils/uncommon/bh_read_file.s" + @echo "... luaModule.o" + @echo "... luaModule.i" + @echo "... luaModule.s" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" + @echo "... wasm.o" + @echo "... wasm.i" + @echo "... wasm.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/samples/wasm-lua-comparison/src/comparison b/samples/wasm-lua-comparison/src/comparison new file mode 100755 index 000000000..0b94f3f60 Binary files /dev/null and b/samples/wasm-lua-comparison/src/comparison differ diff --git a/samples/wasm-lua-comparison/src/core.1002 b/samples/wasm-lua-comparison/src/core.1002 new file mode 100644 index 000000000..20b1b6728 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1002 differ diff --git a/samples/wasm-lua-comparison/src/core.1037 b/samples/wasm-lua-comparison/src/core.1037 new file mode 100644 index 000000000..371f6d8e8 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1037 differ diff --git a/samples/wasm-lua-comparison/src/core.1106 b/samples/wasm-lua-comparison/src/core.1106 new file mode 100644 index 000000000..06d041094 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1106 differ diff --git a/samples/wasm-lua-comparison/src/core.114 b/samples/wasm-lua-comparison/src/core.114 new file mode 100644 index 000000000..d9d6f965a Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.114 differ diff --git a/samples/wasm-lua-comparison/src/core.1211 b/samples/wasm-lua-comparison/src/core.1211 new file mode 100644 index 000000000..623fe2ccd Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1211 differ diff --git a/samples/wasm-lua-comparison/src/core.1235 b/samples/wasm-lua-comparison/src/core.1235 new file mode 100644 index 000000000..732144b0f Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1235 differ diff --git a/samples/wasm-lua-comparison/src/core.1371 b/samples/wasm-lua-comparison/src/core.1371 new file mode 100644 index 000000000..6e6baf033 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1371 differ diff --git a/samples/wasm-lua-comparison/src/core.1406 b/samples/wasm-lua-comparison/src/core.1406 new file mode 100644 index 000000000..13a4ba907 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1406 differ diff --git a/samples/wasm-lua-comparison/src/core.1441 b/samples/wasm-lua-comparison/src/core.1441 new file mode 100644 index 000000000..f1ae91a02 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1441 differ diff --git a/samples/wasm-lua-comparison/src/core.1465 b/samples/wasm-lua-comparison/src/core.1465 new file mode 100644 index 000000000..b8d6a19db Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1465 differ diff --git a/samples/wasm-lua-comparison/src/core.1500 b/samples/wasm-lua-comparison/src/core.1500 new file mode 100644 index 000000000..cce816310 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1500 differ diff --git a/samples/wasm-lua-comparison/src/core.1524 b/samples/wasm-lua-comparison/src/core.1524 new file mode 100644 index 000000000..188f7b6ab Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1524 differ diff --git a/samples/wasm-lua-comparison/src/core.1559 b/samples/wasm-lua-comparison/src/core.1559 new file mode 100644 index 000000000..390b46e85 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1559 differ diff --git a/samples/wasm-lua-comparison/src/core.1594 b/samples/wasm-lua-comparison/src/core.1594 new file mode 100644 index 000000000..f63eb96cd Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1594 differ diff --git a/samples/wasm-lua-comparison/src/core.1726 b/samples/wasm-lua-comparison/src/core.1726 new file mode 100644 index 000000000..5bd1dbaa6 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1726 differ diff --git a/samples/wasm-lua-comparison/src/core.1761 b/samples/wasm-lua-comparison/src/core.1761 new file mode 100644 index 000000000..5fe02ed1e Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1761 differ diff --git a/samples/wasm-lua-comparison/src/core.1796 b/samples/wasm-lua-comparison/src/core.1796 new file mode 100644 index 000000000..4d33e289f Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1796 differ diff --git a/samples/wasm-lua-comparison/src/core.183 b/samples/wasm-lua-comparison/src/core.183 new file mode 100644 index 000000000..96af80f0c Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.183 differ diff --git a/samples/wasm-lua-comparison/src/core.1831 b/samples/wasm-lua-comparison/src/core.1831 new file mode 100644 index 000000000..2280e7632 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1831 differ diff --git a/samples/wasm-lua-comparison/src/core.1855 b/samples/wasm-lua-comparison/src/core.1855 new file mode 100644 index 000000000..6a3eb6e14 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.1855 differ diff --git a/samples/wasm-lua-comparison/src/core.252 b/samples/wasm-lua-comparison/src/core.252 new file mode 100644 index 000000000..31cbcc6e7 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.252 differ diff --git a/samples/wasm-lua-comparison/src/core.303 b/samples/wasm-lua-comparison/src/core.303 new file mode 100644 index 000000000..59724c6f2 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.303 differ diff --git a/samples/wasm-lua-comparison/src/core.356 b/samples/wasm-lua-comparison/src/core.356 new file mode 100644 index 000000000..d2299f3cc Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.356 differ diff --git a/samples/wasm-lua-comparison/src/core.374 b/samples/wasm-lua-comparison/src/core.374 new file mode 100644 index 000000000..4fbce9114 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.374 differ diff --git a/samples/wasm-lua-comparison/src/core.391 b/samples/wasm-lua-comparison/src/core.391 new file mode 100644 index 000000000..daeeca183 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.391 differ diff --git a/samples/wasm-lua-comparison/src/core.414 b/samples/wasm-lua-comparison/src/core.414 new file mode 100644 index 000000000..a21aec6fa Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.414 differ diff --git a/samples/wasm-lua-comparison/src/core.415 b/samples/wasm-lua-comparison/src/core.415 new file mode 100644 index 000000000..21cfd694b Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.415 differ diff --git a/samples/wasm-lua-comparison/src/core.44 b/samples/wasm-lua-comparison/src/core.44 new file mode 100644 index 000000000..f1b368a93 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.44 differ diff --git a/samples/wasm-lua-comparison/src/core.450 b/samples/wasm-lua-comparison/src/core.450 new file mode 100644 index 000000000..bc00c027b Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.450 differ diff --git a/samples/wasm-lua-comparison/src/core.461 b/samples/wasm-lua-comparison/src/core.461 new file mode 100644 index 000000000..d942bf644 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.461 differ diff --git a/samples/wasm-lua-comparison/src/core.485 b/samples/wasm-lua-comparison/src/core.485 new file mode 100644 index 000000000..108bc78c4 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.485 differ diff --git a/samples/wasm-lua-comparison/src/core.538 b/samples/wasm-lua-comparison/src/core.538 new file mode 100644 index 000000000..780fa694f Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.538 differ diff --git a/samples/wasm-lua-comparison/src/core.748 b/samples/wasm-lua-comparison/src/core.748 new file mode 100644 index 000000000..48cbaa668 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.748 differ diff --git a/samples/wasm-lua-comparison/src/core.79 b/samples/wasm-lua-comparison/src/core.79 new file mode 100644 index 000000000..2e10e864e Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.79 differ diff --git a/samples/wasm-lua-comparison/src/core.818 b/samples/wasm-lua-comparison/src/core.818 new file mode 100644 index 000000000..65d674832 Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.818 differ diff --git a/samples/wasm-lua-comparison/src/core.889 b/samples/wasm-lua-comparison/src/core.889 new file mode 100644 index 000000000..779f8ebab Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.889 differ diff --git a/samples/wasm-lua-comparison/src/core.949 b/samples/wasm-lua-comparison/src/core.949 new file mode 100644 index 000000000..ae198b8ff Binary files /dev/null and b/samples/wasm-lua-comparison/src/core.949 differ diff --git a/samples/wasm-lua-comparison/src/luaModule.c b/samples/wasm-lua-comparison/src/luaModule.c index 51da187f9..fd4f0b5ed 100644 --- a/samples/wasm-lua-comparison/src/luaModule.c +++ b/samples/wasm-lua-comparison/src/luaModule.c @@ -2,6 +2,7 @@ #include #include +#include #include #include @@ -29,7 +30,20 @@ void deInit_Lua(lua_State* L) */ void call_lua_function(lua_State* L) { + clock_t start_t, stop_t; + double total_t; printf("%s\n", __FUNCTION__); luaL_openlibs(L); - luaL_dofile(L, "wasm-apps/sum.c"); + luaL_dofile(L, "test.lua"); + lua_getglobal(L, "sum"); + lua_pushnumber(L,2); + lua_pushnumber(L,3); + start_t= clock(); + lua_call(L,2,1); + stop_t= clock(); + int sum = (int)lua_tointeger(L,-1); + lua_pop(L,1); + printf("sum: %d\n", sum); + total_t=(double)(stop_t-start_t)/ CLOCKS_PER_SEC; + printf("Total time = %f\n", total_t); } \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/test.lua b/samples/wasm-lua-comparison/src/test.lua new file mode 100644 index 000000000..3aadecb39 --- /dev/null +++ b/samples/wasm-lua-comparison/src/test.lua @@ -0,0 +1,23 @@ +-- function fib(n) +-- if n == 1 or n == 2 then +-- return 1,1 +-- end +-- prev, prevPrev = fib(n-1) +-- return prev+prevPrev, prev +-- end + +-- print(fib(5)) +-- print(fib(10)) + + function sum(start, length) + local sum =0 + print(start) +for x=0,10000000 do + for x=start,(start+length) do + sum = sum + x; + end + +end +return sum +end +-- print(sum(1)) \ No newline at end of file diff --git a/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.internal b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.internal new file mode 100644 index 000000000..d4d1ed27b --- /dev/null +++ b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.internal @@ -0,0 +1,6 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/wasm-apps/sum.c + diff --git a/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.make b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.make index a6ca05402..504fb69b8 100644 --- a/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.make +++ b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/compiler_depend.make @@ -1,2 +1,7 @@ -# Empty compiler generated dependencies file for test.wasm. -# This may be replaced when dependencies are built. +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.23 + +wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o: ../wasm-apps/sum.c + + +../wasm-apps/sum.c: diff --git a/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o new file mode 100644 index 000000000..635ef96f5 Binary files /dev/null and b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o differ diff --git a/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o.d b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o.d new file mode 100644 index 000000000..ebaef1084 --- /dev/null +++ b/samples/wasm-lua-comparison/src/wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o.d @@ -0,0 +1,2 @@ +wasm-apps/CMakeFiles/test.wasm.dir/sum.c.o: \ + /home/szadys/wasm-micro-runtime/samples/wasm-lua-comparison/wasm-apps/sum.c diff --git a/samples/wasm-lua-comparison/src/wasm-apps/test.wasm b/samples/wasm-lua-comparison/src/wasm-apps/test.wasm new file mode 100755 index 000000000..978cc4fea Binary files /dev/null and b/samples/wasm-lua-comparison/src/wasm-apps/test.wasm differ diff --git a/samples/wasm-lua-comparison/src/wasm.c b/samples/wasm-lua-comparison/src/wasm.c index e8b7a032f..bc2626325 100644 --- a/samples/wasm-lua-comparison/src/wasm.c +++ b/samples/wasm-lua-comparison/src/wasm.c @@ -1,6 +1,7 @@ #include "wasm.h" #include "wasm_export.h" #include "bh_read_file.h" +#include #define THREAD_NUM 10 @@ -88,6 +89,8 @@ void deInit_wasm() */ void call_wasm_function() { + clock_t start_t, stop_t; + double total_t; printf("%s\n", __FUNCTION__); wasm_argv[0] = 0; wasm_argv[1] = THREAD_NUM * 10; @@ -95,9 +98,13 @@ void call_wasm_function() /* * Execute the wasm function in current thread, get the expect result */ + start_t= clock(); if (!wasm_runtime_call_wasm(exec_env, func, 2, wasm_argv)) { printf("%s\n", wasm_runtime_get_exception(wasm_module_inst)); } + stop_t= clock(); printf("expect result: %d\n", wasm_argv[0]); + total_t=(double)(stop_t-start_t)/ CLOCKS_PER_SEC; + printf("Total time = %f\n", total_t); } \ No newline at end of file diff --git a/samples/wasm-lua-comparison/wasm-apps/sum.c b/samples/wasm-lua-comparison/wasm-apps/sum.c index 0bcb8918d..0fdb06c0e 100644 --- a/samples/wasm-lua-comparison/wasm-apps/sum.c +++ b/samples/wasm-lua-comparison/wasm-apps/sum.c @@ -3,14 +3,16 @@ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ + int sum(int start, int length) { - int sum = 0, i; + int sum = 0, i, j; - for (i = start; i < start + length; i++) { - sum += i; + for(j=0; j<10000000; j++){ + for (i = start; i < start + length; i++) { + sum += i; + } } - return sum; } \ No newline at end of file