wasm-micro-runtime/core/iwasm/common
Xiaokang Qin 5418e09712
Add two apis for wasm function call (#375)
Add below two apis:

bool wasm_runtime_call_wasm_a(WASMExecEnv *exec_env,
                                                      WASMFunctionInstanceCommon *function,
                                                      uint32 num_results, wasm_val_t results[],
                                                      uint32 num_args, wasm_val_t args[])

bool wasm_runtime_call_wasm_v(WASMExecEnv *exec_env,
                                                      WASMFunctionInstanceCommon *function,
                                                      uint32 num_results, wasm_val_t results[],
                                                      uint32 num_args, ...)

Signed-off-by: Xiaokang Qin <xiaokang.qxk@antgroup.com>
2020-09-08 13:03:35 +08:00
..
arch fix coding style for windows build patch (#350) 2020-08-13 16:40:19 +08:00
iwasm_common.cmake add win64 support (#348) 2020-08-13 14:41:20 +08:00
wasm_c_api_internal.h Add wamrc AoT compiler building support for Windows(MSVC) (#332) 2020-08-11 11:30:51 +08:00
wasm_c_api.c Change wasm app offset type from int32 to uint32 (#361) 2020-08-26 18:33:29 +08:00
wasm_exec_env.c fix exec_env not checked issue, export __heap_base and __data_end in sample to decrease memory usage (#371) 2020-09-05 14:48:08 +08:00
wasm_exec_env.h enable pthread for AoT && update AOT current version to 2 (#311) 2020-07-16 20:35:04 +08:00
wasm_memory.c re-org ems mem allocator source codes, update prot_wamr.md (#217) 2020-03-30 11:06:39 +08:00
wasm_memory.h Re-org memory allocation interfaces, add --stack-size and --heap-size option (#193) 2020-03-10 19:54:44 +08:00
wasm_native.c fix exec_env not checked issue, export __heap_base and __data_end in sample to decrease memory usage (#371) 2020-09-05 14:48:08 +08:00
wasm_native.h Implement register/call native API with raw (unextracted) arguments (#222) 2020-04-01 12:52:08 +08:00
wasm_runtime_common.c Add two apis for wasm function call (#375) 2020-09-08 13:03:35 +08:00
wasm_runtime_common.h Add two apis for wasm function call (#375) 2020-09-08 13:03:35 +08:00
wasm_shared_memory.c implement atomics opcodes for interpreter (#344) 2020-08-10 19:43:58 +08:00
wasm_shared_memory.h implement atomics opcodes for interpreter (#344) 2020-08-10 19:43:58 +08:00