| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #include "config.h"
- #include "bh_platform.h"
- #include "bh_common.h"
- #include "bh_assert.h"
- #include "bh_log.h"
- #include "wasm_runtime_common.h"
- #include "wasm_memory.h"
- #if WASM_ENABLE_INTERP != 0
- #include "../interpreter/wasm_runtime.h"
- #endif
- #if WASM_ENABLE_AOT != 0
- #include "../aot/aot_runtime.h"
- #endif
- static void
- set_error_buf(char *error_buf, uint32 error_buf_size, const char *string)
- {
- if (error_buf != NULL)
- snprintf(error_buf, error_buf_size, "%s", string);
- }
- static bool
- wasm_runtime_env_init()
- {
- if (bh_platform_init() != 0)
- return false;
- if (bh_log_init() != 0)
- return false;
- if (vm_thread_sys_init() != 0)
- return false;
- if (wasm_native_init() == false)
- return false;
- return true;
- }
- bool
- wasm_runtime_init()
- {
- if (!wasm_runtime_memory_init(Alloc_With_System_Allocator, NULL))
- return false;
- if (!wasm_runtime_env_init()) {
- wasm_runtime_memory_destroy();
- return false;
- }
- return true;
- }
- void
- wasm_runtime_destroy()
- {
- wasm_native_destroy();
- vm_thread_sys_destroy();
- wasm_runtime_memory_destroy();
- }
- bool
- wasm_runtime_full_init(RuntimeInitArgs *init_args)
- {
- if (!wasm_runtime_memory_init(init_args->mem_alloc_type,
- &init_args->mem_alloc_option))
- return false;
- if (!wasm_runtime_env_init()) {
- wasm_runtime_memory_destroy();
- return false;
- }
- if (init_args->n_native_symbols > 0
- && !wasm_runtime_register_natives(init_args->native_module_name,
- init_args->native_symbols,
- init_args->n_native_symbols)) {
- wasm_runtime_destroy();
- return false;
- }
- return true;
- }
- PackageType
- get_package_type(const uint8 *buf, uint32 size)
- {
- if (buf && size >= 4) {
- if (buf[0] == '\0' && buf[1] == 'a' && buf[2] == 's' && buf[3] == 'm')
- return Wasm_Module_Bytecode;
- if (buf[0] == '\0' && buf[1] == 'a' && buf[2] == 'o' && buf[3] == 't')
- return Wasm_Module_AoT;
- }
- return Package_Type_Unknown;
- }
- WASMModuleCommon *
- wasm_runtime_load(const uint8 *buf, uint32 size,
- char *error_buf, uint32 error_buf_size)
- {
- if (get_package_type(buf, size) == Wasm_Module_Bytecode) {
- #if WASM_ENABLE_AOT != 0 && WASM_ENABLE_JIT != 0
- AOTModule *aot_module;
- WASMModule *module = wasm_load(buf, size, error_buf, error_buf_size);
- if (!module)
- return NULL;
- if (!(aot_module = aot_convert_wasm_module(module,
- error_buf, error_buf_size))) {
- wasm_unload(module);
- return NULL;
- }
- return (WASMModuleCommon*)aot_module;
- #elif WASM_ENABLE_INTERP != 0
- return (WASMModuleCommon*)
- wasm_load(buf, size, error_buf, error_buf_size);
- #endif
- }
- else if (get_package_type(buf, size) == Wasm_Module_AoT) {
- #if WASM_ENABLE_AOT != 0
- return (WASMModuleCommon*)
- aot_load_from_aot_file(buf, size, error_buf, error_buf_size);
- #endif /* end of WASM_ENABLE_AOT */
- }
- if (size < 4)
- set_error_buf(error_buf, error_buf_size,
- "WASM module load failed: unexpected end");
- else
- set_error_buf(error_buf, error_buf_size,
- "WASM module load failed: magic header not detected");
- return NULL;
- }
- WASMModuleCommon *
- wasm_runtime_load_from_sections(WASMSection *section_list, bool is_aot,
- char *error_buf, uint32_t error_buf_size)
- {
- #if WASM_ENABLE_INTERP != 0
- if (!is_aot)
- return (WASMModuleCommon*)
- wasm_load_from_sections(section_list,
- error_buf, error_buf_size);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (is_aot)
- return (WASMModuleCommon*)
- aot_load_from_sections(section_list,
- error_buf, error_buf_size);
- #endif
- set_error_buf(error_buf, error_buf_size,
- "WASM module load failed: invalid section list type");
- return NULL;
- }
- void
- wasm_runtime_unload(WASMModuleCommon *module)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module->module_type == Wasm_Module_Bytecode) {
- wasm_unload((WASMModule*)module);
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module->module_type == Wasm_Module_AoT) {
- aot_unload((AOTModule*)module);
- return;
- }
- #endif
- }
- WASMModuleInstanceCommon *
- wasm_runtime_instantiate(WASMModuleCommon *module,
- uint32 stack_size, uint32 heap_size,
- char *error_buf, uint32 error_buf_size)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module->module_type == Wasm_Module_Bytecode)
- return (WASMModuleInstanceCommon*)
- wasm_instantiate((WASMModule*)module,
- stack_size, heap_size,
- error_buf, error_buf_size);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module->module_type == Wasm_Module_AoT)
- return (WASMModuleInstanceCommon*)
- aot_instantiate((AOTModule*)module,
- stack_size, heap_size,
- error_buf, error_buf_size);
- #endif
- set_error_buf(error_buf, error_buf_size,
- "Instantiate module failed, invalid module type");
- return NULL;
- }
- void
- wasm_runtime_deinstantiate(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- wasm_deinstantiate((WASMModuleInstance*)module_inst);
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- aot_deinstantiate((AOTModuleInstance*)module_inst);
- return;
- }
- #endif
- }
- WASMExecEnv *
- wasm_runtime_create_exec_env(WASMModuleInstanceCommon *module_inst,
- uint32 stack_size)
- {
- return wasm_exec_env_create(module_inst, stack_size);
- }
- void
- wasm_runtime_destroy_exec_env(WASMExecEnv *exec_env)
- {
- wasm_exec_env_destroy(exec_env);
- }
- WASMModuleInstanceCommon *
- wasm_runtime_get_module_inst(WASMExecEnv *exec_env)
- {
- return wasm_exec_env_get_module_inst(exec_env);
- }
- WASMFunctionInstanceCommon *
- wasm_runtime_lookup_function(WASMModuleInstanceCommon * const module_inst,
- const char *name,
- const char *signature)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return (WASMFunctionInstanceCommon*)
- wasm_lookup_function((const WASMModuleInstance*)module_inst,
- name, signature);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return (WASMFunctionInstanceCommon*)
- aot_lookup_function((const AOTModuleInstance*)module_inst,
- name, signature);
- #endif
- return NULL;
- }
- bool
- wasm_runtime_call_wasm(WASMExecEnv *exec_env,
- WASMFunctionInstanceCommon *function,
- unsigned argc, uint32 argv[])
- {
- if (!exec_env
- || !exec_env->module_inst
- || exec_env->wasm_stack_size == 0
- || exec_env->wasm_stack.s.top_boundary !=
- exec_env->wasm_stack.s.bottom + exec_env->wasm_stack_size
- || exec_env->wasm_stack.s.top > exec_env->wasm_stack.s.top_boundary) {
- LOG_ERROR("Invalid exec env stack info.");
- return false;
- }
- exec_env->handle = vm_self_thread();
- #if WASM_ENABLE_INTERP != 0
- if (exec_env->module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_call_function(exec_env,
- (WASMFunctionInstance*)function,
- argc, argv);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (exec_env->module_inst->module_type == Wasm_Module_AoT)
- return aot_call_function(exec_env,
- (AOTFunctionInstance*)function,
- argc, argv);
- #endif
- return false;
- }
- bool
- wasm_runtime_create_exec_env_and_call_wasm(WASMModuleInstanceCommon *module_inst,
- WASMFunctionInstanceCommon *function,
- unsigned argc, uint32 argv[])
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_create_exec_env_and_call_function(
- (WASMModuleInstance*)module_inst,
- (WASMFunctionInstance*)function,
- argc, argv);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_create_exec_env_and_call_function(
- (AOTModuleInstance*)module_inst,
- (AOTFunctionInstance*)function,
- argc, argv);
- #endif
- return false;
- }
- void
- wasm_runtime_set_exception(WASMModuleInstanceCommon *module_inst,
- const char *exception)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- wasm_set_exception((WASMModuleInstance*)module_inst, exception);
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- aot_set_exception((AOTModuleInstance*)module_inst, exception);
- return;
- }
- #endif
- }
- const char*
- wasm_runtime_get_exception(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- return wasm_get_exception((WASMModuleInstance*)module_inst);
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- return aot_get_exception((AOTModuleInstance*)module_inst);
- }
- #endif
- return NULL;
- }
- void
- wasm_runtime_clear_exception(WASMModuleInstanceCommon *module_inst)
- {
- wasm_runtime_set_exception(module_inst, NULL);
- }
- void
- wasm_runtime_set_custom_data(WASMModuleInstanceCommon *module_inst,
- void *custom_data)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- ((WASMModuleInstance*)module_inst)->custom_data = custom_data;
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- ((AOTModuleInstance*)module_inst)->custom_data.ptr = custom_data;
- return;
- }
- #endif
- }
- void*
- wasm_runtime_get_custom_data(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return ((WASMModuleInstance*)module_inst)->custom_data;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return ((AOTModuleInstance*)module_inst)->custom_data.ptr;
- #endif
- return NULL;
- }
- int32
- wasm_runtime_module_malloc(WASMModuleInstanceCommon *module_inst, uint32 size,
- void **p_native_addr)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_module_malloc((WASMModuleInstance*)module_inst, size,
- p_native_addr);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_module_malloc((AOTModuleInstance*)module_inst, size,
- p_native_addr);
- #endif
- return 0;
- }
- void
- wasm_runtime_module_free(WASMModuleInstanceCommon *module_inst, int32 ptr)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- wasm_module_free((WASMModuleInstance*)module_inst, ptr);
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- aot_module_free((AOTModuleInstance*)module_inst, ptr);
- return;
- }
- #endif
- }
- int32
- wasm_runtime_module_dup_data(WASMModuleInstanceCommon *module_inst,
- const char *src, uint32 size)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- return wasm_module_dup_data((WASMModuleInstance*)module_inst, src, size);
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- return aot_module_dup_data((AOTModuleInstance*)module_inst, src, size);
- }
- #endif
- return 0;
- }
- bool
- wasm_runtime_validate_app_addr(WASMModuleInstanceCommon *module_inst,
- int32 app_offset, uint32 size)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_validate_app_addr((WASMModuleInstance*)module_inst,
- app_offset, size);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_validate_app_addr((AOTModuleInstance*)module_inst,
- app_offset, size);
- #endif
- return false;
- }
- bool
- wasm_runtime_validate_app_str_addr(WASMModuleInstanceCommon *module_inst,
- int32 app_str_offset)
- {
- int32 app_end_offset;
- char *str, *str_end;
- if (!wasm_runtime_get_app_addr_range(module_inst, app_str_offset,
- NULL, &app_end_offset))
- goto fail;
- str = wasm_runtime_addr_app_to_native(module_inst, app_str_offset);
- str_end = str + (app_end_offset - app_str_offset);
- while (str < str_end && *str != '\0')
- str++;
- if (str == str_end)
- goto fail;
- return true;
- fail:
- wasm_runtime_set_exception(module_inst, "out of bounds memory access");
- return false;
- }
- bool
- wasm_runtime_validate_native_addr(WASMModuleInstanceCommon *module_inst,
- void *native_ptr, uint32 size)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_validate_native_addr((WASMModuleInstance*)module_inst,
- native_ptr, size);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_validate_native_addr((AOTModuleInstance*)module_inst,
- native_ptr, size);
- #endif
- return false;
- }
- void *
- wasm_runtime_addr_app_to_native(WASMModuleInstanceCommon *module_inst,
- int32 app_offset)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_addr_app_to_native((WASMModuleInstance*)module_inst,
- app_offset);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_addr_app_to_native((AOTModuleInstance*)module_inst,
- app_offset);
- #endif
- return NULL;
- }
- int32
- wasm_runtime_addr_native_to_app(WASMModuleInstanceCommon *module_inst,
- void *native_ptr)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_addr_native_to_app((WASMModuleInstance*)module_inst,
- native_ptr);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_addr_native_to_app((AOTModuleInstance*)module_inst,
- native_ptr);
- #endif
- return 0;
- }
- bool
- wasm_runtime_get_app_addr_range(WASMModuleInstanceCommon *module_inst,
- int32 app_offset,
- int32 *p_app_start_offset,
- int32 *p_app_end_offset)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_get_app_addr_range((WASMModuleInstance*)module_inst,
- app_offset, p_app_start_offset,
- p_app_end_offset);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_get_app_addr_range((AOTModuleInstance*)module_inst,
- app_offset, p_app_start_offset,
- p_app_end_offset);
- #endif
- return false;
- }
- bool
- wasm_runtime_get_native_addr_range(WASMModuleInstanceCommon *module_inst,
- uint8_t *native_ptr,
- uint8_t **p_native_start_addr,
- uint8_t **p_native_end_addr)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return wasm_get_native_addr_range((WASMModuleInstance*)module_inst,
- native_ptr, p_native_start_addr,
- p_native_end_addr);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return aot_get_native_addr_range((AOTModuleInstance*)module_inst,
- native_ptr, p_native_start_addr,
- p_native_end_addr);
- #endif
- return false;
- }
- uint32
- wasm_runtime_get_temp_ret(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return ((WASMModuleInstance*)module_inst)->temp_ret;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return ((AOTModuleInstance*)module_inst)->temp_ret;
- #endif
- return 0;
- }
- void
- wasm_runtime_set_temp_ret(WASMModuleInstanceCommon *module_inst,
- uint32 temp_ret)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- ((WASMModuleInstance*)module_inst)->temp_ret = temp_ret;
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- ((AOTModuleInstance*)module_inst)->temp_ret = temp_ret;
- return;
- }
- #endif
- }
- uint32
- wasm_runtime_get_llvm_stack(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return ((WASMModuleInstance*)module_inst)->llvm_stack;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return ((AOTModuleInstance*)module_inst)->llvm_stack;
- #endif
- return 0;
- }
- void
- wasm_runtime_set_llvm_stack(WASMModuleInstanceCommon *module_inst,
- uint32 llvm_stack)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- ((WASMModuleInstance*)module_inst)->llvm_stack = llvm_stack;
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- ((AOTModuleInstance*)module_inst)->llvm_stack = llvm_stack;
- return;
- }
- #endif
- }
- bool
- wasm_runtime_enlarge_memory(WASMModuleInstanceCommon *module,
- uint32 inc_page_count)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module->module_type == Wasm_Module_Bytecode)
- return wasm_enlarge_memory((WASMModuleInstance*)module,
- inc_page_count);
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module->module_type == Wasm_Module_AoT)
- return aot_enlarge_memory((AOTModuleInstance*)module,
- inc_page_count);
- #endif
- return false;
- }
- #if WASM_ENABLE_LIBC_WASI != 0
- void
- wasm_runtime_set_wasi_args(WASMModuleCommon *module,
- const char *dir_list[], uint32 dir_count,
- const char *map_dir_list[], uint32 map_dir_count,
- const char *env_list[], uint32 env_count,
- char *argv[], int argc)
- {
- WASIArguments *wasi_args = NULL;
- #if WASM_ENABLE_INTERP != 0 || WASM_ENABLE_JIT != 0
- if (module->module_type == Wasm_Module_Bytecode)
- wasi_args = &((WASMModule*)module)->wasi_args;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module->module_type == Wasm_Module_AoT)
- wasi_args = &((AOTModule*)module)->wasi_args;
- #endif
- if (wasi_args) {
- wasi_args->dir_list = dir_list;
- wasi_args->dir_count = dir_count;
- wasi_args->map_dir_list = map_dir_list;
- wasi_args->map_dir_count = map_dir_count;
- wasi_args->env = env_list;
- wasi_args->env_count = env_count;
- wasi_args->argv = argv;
- wasi_args->argc = argc;
- }
- }
- bool
- wasm_runtime_init_wasi(WASMModuleInstanceCommon *module_inst,
- const char *dir_list[], uint32 dir_count,
- const char *map_dir_list[], uint32 map_dir_count,
- const char *env[], uint32 env_count,
- char *argv[], uint32 argc,
- char *error_buf, uint32 error_buf_size)
- {
- WASIContext *wasi_ctx;
- size_t *argv_offsets = NULL;
- char *argv_buf = NULL;
- size_t *env_offsets = NULL;
- char *env_buf = NULL;
- uint64 argv_buf_len = 0, env_buf_len = 0;
- uint32 argv_buf_offset = 0, env_buf_offset = 0;
- struct fd_table *curfds;
- struct fd_prestats *prestats;
- struct argv_environ_values *argv_environ;
- int32 offset_argv_offsets = 0, offset_env_offsets = 0;
- int32 offset_argv_buf = 0, offset_env_buf = 0;
- int32 offset_curfds = 0;
- int32 offset_prestats = 0;
- int32 offset_argv_environ = 0;
- __wasi_fd_t wasm_fd = 3;
- int32 raw_fd;
- char *path, resolved_path[PATH_MAX];
- uint64 total_size;
- uint32 i;
- if (!(wasi_ctx = wasm_runtime_malloc(sizeof(WASIContext)))) {
- set_error_buf(error_buf, error_buf_size,
- "Init wasi environment failed: allocate memory failed.");
- return false;
- }
- memset(wasi_ctx, 0, sizeof(WASIContext));
- wasm_runtime_set_wasi_ctx(module_inst, wasi_ctx);
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode
- && !((WASMModuleInstance*)module_inst)->default_memory)
- return true;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT
- && !((AOTModuleInstance*)module_inst)->memory_data.ptr)
- return true;
- #endif
- /* process argv[0], trip the path and suffix, only keep the program name */
- for (i = 0; i < argc; i++)
- argv_buf_len += strlen(argv[i]) + 1;
- total_size = sizeof(size_t) * (uint64)argc;
- if (total_size >= UINT32_MAX
- || !(offset_argv_offsets = wasm_runtime_module_malloc
- (module_inst, (uint32)total_size,
- (void**)&argv_offsets))
- || argv_buf_len >= UINT32_MAX
- || !(offset_argv_buf = wasm_runtime_module_malloc
- (module_inst, (uint32)argv_buf_len,
- (void**)&argv_buf))) {
- set_error_buf(error_buf, error_buf_size,
- "Init wasi environment failed: allocate memory failed.");
- goto fail;
- }
- for (i = 0; i < argc; i++) {
- argv_offsets[i] = argv_buf_offset;
- bh_strcpy_s(argv_buf + argv_buf_offset,
- (uint32)argv_buf_len - argv_buf_offset, argv[i]);
- argv_buf_offset += (uint32)(strlen(argv[i]) + 1);
- }
- for (i = 0; i < env_count; i++)
- env_buf_len += strlen(env[i]) + 1;
- total_size = sizeof(size_t) * (uint64)argc;
- if (total_size >= UINT32_MAX
- || !(offset_env_offsets = wasm_runtime_module_malloc
- (module_inst, (uint32)total_size,
- (void**)&env_offsets))
- || env_buf_len >= UINT32_MAX
- || !(offset_env_buf = wasm_runtime_module_malloc
- (module_inst, (uint32)env_buf_len,
- (void**)&env_buf))) {
- set_error_buf(error_buf, error_buf_size,
- "Init wasi environment failed: allocate memory failed.");
- goto fail;
- }
- for (i = 0; i < env_count; i++) {
- env_offsets[i] = env_buf_offset;
- bh_strcpy_s(env_buf + env_buf_offset,
- (uint32)env_buf_len - env_buf_offset, env[i]);
- env_buf_offset += (uint32)(strlen(env[i]) + 1);
- }
- if (!(offset_curfds = wasm_runtime_module_malloc
- (module_inst, sizeof(struct fd_table), (void**)&curfds))
- || !(offset_prestats = wasm_runtime_module_malloc
- (module_inst, sizeof(struct fd_prestats), (void**)&prestats))
- || !(offset_argv_environ = wasm_runtime_module_malloc
- (module_inst, sizeof(struct argv_environ_values),
- (void**)&argv_environ))) {
- set_error_buf(error_buf, error_buf_size,
- "Init wasi environment failed: allocate memory failed.");
- goto fail;
- }
- wasi_ctx->curfds = curfds;
- wasi_ctx->prestats = prestats;
- wasi_ctx->argv_environ = argv_environ;
- fd_table_init(curfds);
- fd_prestats_init(prestats);
- if (!argv_environ_init(argv_environ,
- argv_offsets, argc,
- argv_buf, argv_buf_len,
- env_offsets, env_count,
- env_buf, env_buf_len)) {
- set_error_buf(error_buf, error_buf_size,
- "Init wasi environment failed: "
- "init argument environment failed.");
- goto fail;
- }
- /* Prepopulate curfds with stdin, stdout, and stderr file descriptors. */
- if (!fd_table_insert_existing(curfds, 0, 0)
- || !fd_table_insert_existing(curfds, 1, 1)
- || !fd_table_insert_existing(curfds, 2, 2)) {
- set_error_buf(error_buf, error_buf_size,
- "Init wasi environment failed: init fd table failed.");
- goto fail;
- }
- wasm_fd = 3;
- for (i = 0; i < dir_count; i++, wasm_fd++) {
- path = realpath(dir_list[i], resolved_path);
- if (!path) {
- if (error_buf)
- snprintf(error_buf, error_buf_size,
- "error while pre-opening directory %s: %d\n",
- dir_list[i], errno);
- goto fail;
- }
- raw_fd = open(path, O_RDONLY | O_DIRECTORY, 0);
- if (raw_fd == -1) {
- if (error_buf)
- snprintf(error_buf, error_buf_size,
- "error while pre-opening directory %s: %d\n",
- dir_list[i], errno);
- goto fail;
- }
- fd_table_insert_existing(curfds, wasm_fd, raw_fd);
- fd_prestats_insert(prestats, dir_list[i], wasm_fd);
- }
- return true;
- fail:
- if (offset_curfds != 0)
- wasm_runtime_module_free(module_inst, offset_curfds);
- if (offset_prestats != 0)
- wasm_runtime_module_free(module_inst, offset_prestats);
- if (offset_argv_environ != 0)
- wasm_runtime_module_free(module_inst, offset_argv_environ);
- if (offset_argv_buf)
- wasm_runtime_module_free(module_inst, offset_argv_buf);
- if (offset_argv_offsets)
- wasm_runtime_module_free(module_inst, offset_argv_offsets);
- if (offset_env_buf)
- wasm_runtime_module_free(module_inst, offset_env_buf);
- if (offset_env_offsets)
- wasm_runtime_module_free(module_inst, offset_env_offsets);
- return false;
- }
- bool
- wasm_runtime_is_wasi_mode(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode
- && ((WASMModuleInstance*)module_inst)->module->is_wasi_module)
- return true;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT
- && ((AOTModule*)((AOTModuleInstance*)module_inst)->aot_module.ptr)
- ->is_wasi_module)
- return true;
- #endif
- return false;
- }
- WASMFunctionInstanceCommon *
- wasm_runtime_lookup_wasi_start_function(WASMModuleInstanceCommon *module_inst)
- {
- uint32 i;
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- WASMModuleInstance *wasm_inst = (WASMModuleInstance*)module_inst;
- WASMFunctionInstance *func;
- for (i = 0; i < wasm_inst->export_func_count; i++) {
- if (!strcmp(wasm_inst->export_functions[i].name, "_start")) {
- func = wasm_inst->export_functions[i].function;
- if (func->u.func->func_type->param_count != 0
- || func->u.func->func_type->result_count != 0) {
- LOG_ERROR("Lookup wasi _start function failed: "
- "invalid function type.\n");
- return NULL;
- }
- return (WASMFunctionInstanceCommon*)func;
- }
- }
- return NULL;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *aot_inst = (AOTModuleInstance*)module_inst;
- AOTModule *module = (AOTModule*)aot_inst->aot_module.ptr;
- for (i = 0; i < module->export_func_count; i++) {
- if (!strcmp(module->export_funcs[i].func_name, "_start")) {
- AOTFuncType *func_type = module->export_funcs[i].func_type;
- if (func_type->param_count != 0
- || func_type->result_count != 0) {
- LOG_ERROR("Lookup wasi _start function failed: "
- "invalid function type.\n");
- return NULL;
- }
- return (WASMFunctionInstanceCommon*)&module->export_funcs[i];
- }
- }
- return NULL;
- }
- #endif /* end of WASM_ENABLE_AOT */
- return NULL;
- }
- void
- wasm_runtime_destroy_wasi(WASMModuleInstanceCommon *module_inst)
- {
- WASIContext *wasi_ctx = wasm_runtime_get_wasi_ctx(module_inst);
- if (wasi_ctx) {
- if (wasi_ctx->argv_environ)
- argv_environ_destroy(wasi_ctx->argv_environ);
- if (wasi_ctx->curfds)
- fd_table_destroy(wasi_ctx->curfds);
- if (wasi_ctx->prestats)
- fd_prestats_destroy(wasi_ctx->prestats);
- wasm_runtime_free(wasi_ctx);
- }
- }
- WASIContext *
- wasm_runtime_get_wasi_ctx(WASMModuleInstanceCommon *module_inst)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- return ((WASMModuleInstance*)module_inst)->wasi_ctx;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- return ((AOTModuleInstance*)module_inst)->wasi_ctx.ptr;
- #endif
- return NULL;
- }
- void
- wasm_runtime_set_wasi_ctx(WASMModuleInstanceCommon *module_inst,
- WASIContext *wasi_ctx)
- {
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode)
- ((WASMModuleInstance*)module_inst)->wasi_ctx = wasi_ctx;
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- ((AOTModuleInstance*)module_inst)->wasi_ctx.ptr = wasi_ctx;
- #endif
- }
- #endif /* end of WASM_ENABLE_LIBC_WASI */
- /**
- * Implementation of wasm_application_execute_main()
- */
- static WASMFunctionInstanceCommon *
- resolve_main_function(const WASMModuleInstanceCommon *module_inst)
- {
- uint32 i;
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- WASMModuleInstance *wasm_inst = (WASMModuleInstance*)module_inst;
- for (i = 0; i < wasm_inst->export_func_count; i++) {
- if (!strcmp(wasm_inst->export_functions[i].name, "_main")
- || !strcmp(wasm_inst->export_functions[i].name, "main"))
- return (WASMFunctionInstanceCommon*)
- wasm_inst->export_functions[i].function;
- }
- LOG_ERROR("WASM execute application failed: main function not found.\n");
- return NULL;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *aot_inst = (AOTModuleInstance*)module_inst;
- AOTModule *module = (AOTModule*)aot_inst->aot_module.ptr;
- for (i = 0; i < module->export_func_count; i++) {
- if (!strcmp(module->export_funcs[i].func_name, "_main")
- || !strcmp(module->export_funcs[i].func_name, "main"))
- return (WASMFunctionInstanceCommon*)&module->export_funcs[i];
- }
- LOG_ERROR("WASM execute application failed: main function not found.\n");
- return NULL;
- }
- #endif
- return NULL;
- }
- static bool
- check_main_func_type(const WASMType *type)
- {
- if (!(type->param_count == 0 || type->param_count == 2)
- ||type->result_count > 1) {
- LOG_ERROR("WASM execute application failed: invalid main function type.\n");
- return false;
- }
- if (type->param_count == 2
- && !(type->types[0] == VALUE_TYPE_I32
- && type->types[1] == VALUE_TYPE_I32)) {
- LOG_ERROR("WASM execute application failed: invalid main function type.\n");
- return false;
- }
- if (type->result_count
- && type->types[type->param_count] != VALUE_TYPE_I32) {
- LOG_ERROR("WASM execute application failed: invalid main function type.\n");
- return false;
- }
- return true;
- }
- bool
- wasm_application_execute_main(WASMModuleInstanceCommon *module_inst,
- int argc, char *argv[])
- {
- WASMFunctionInstanceCommon *func;
- WASMType *func_type = NULL;
- uint32 argc1 = 0, argv1[2] = { 0 };
- uint32 total_argv_size = 0;
- uint64 total_size;
- int32 argv_buf_offset, i;
- char *argv_buf, *p, *p_end;
- int32 *argv_offsets;
- #if WASM_ENABLE_LIBC_WASI != 0
- if (wasm_runtime_is_wasi_mode(module_inst)) {
- /* In wasi mode, we should call function named "_start"
- which initializes the wasi envrionment and then calls
- the actual main function. Directly call main function
- may cause exception thrown. */
- if ((func = wasm_runtime_lookup_wasi_start_function(module_inst)))
- return wasm_runtime_create_exec_env_and_call_wasm(
- module_inst, func, 0, NULL);
- /* if no start function is found, we execute
- the main function as normal */
- }
- #endif /* end of WASM_ENABLE_LIBC_WASI */
- func = resolve_main_function(module_inst);
- if (!func) {
- wasm_runtime_set_exception(module_inst,
- "lookup main function failed.");
- return false;
- }
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- if (((WASMFunctionInstance*)func)->is_import_func) {
- wasm_runtime_set_exception(module_inst,
- "lookup main function failed.");
- return false;
- }
- func_type = ((WASMFunctionInstance*)func)->u.func->func_type;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT)
- func_type = ((AOTFunctionInstance*)func)->func_type;
- #endif
- if (!check_main_func_type(func_type)) {
- wasm_runtime_set_exception(module_inst,
- "invalid function type of main function.");
- return false;
- }
- if (func_type->param_count) {
- for (i = 0; i < argc; i++)
- total_argv_size += (uint32)(strlen(argv[i]) + 1);
- total_argv_size = align_uint(total_argv_size, 4);
- total_size = (uint64)total_argv_size + sizeof(int32) * (uint64)argc;
- if (total_size >= UINT32_MAX
- || !(argv_buf_offset =
- wasm_runtime_module_malloc(module_inst, (uint32)total_size,
- (void**)&argv_buf))) {
- wasm_runtime_set_exception(module_inst,
- "allocate memory failed.");
- return false;
- }
- p = argv_buf;
- argv_offsets = (int32*)(p + total_argv_size);
- p_end = p + total_size;
- for (i = 0; i < argc; i++) {
- bh_memcpy_s(p, (uint32)(p_end - p), argv[i], (uint32)(strlen(argv[i]) + 1));
- argv_offsets[i] = argv_buf_offset + (int32)(p - argv_buf);
- p += strlen(argv[i]) + 1;
- }
- argc1 = 2;
- argv1[0] = (uint32)argc;
- argv1[1] = (uint32)wasm_runtime_addr_native_to_app(module_inst, argv_offsets);
- }
- return wasm_runtime_create_exec_env_and_call_wasm(module_inst, func,
- argc1, argv1);
- }
- /**
- * Implementation of wasm_application_execute_func()
- */
- static WASMFunctionInstanceCommon*
- resolve_function(const WASMModuleInstanceCommon *module_inst,
- const char *name)
- {
- uint32 i;
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- WASMModuleInstance *wasm_inst = (WASMModuleInstance*)module_inst;
- for (i = 0; i < wasm_inst->export_func_count; i++) {
- if (!strcmp(wasm_inst->export_functions[i].name, name))
- return wasm_inst->export_functions[i].function;
- }
- return NULL;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *aot_inst = (AOTModuleInstance*)module_inst;
- AOTModule *module = (AOTModule*)aot_inst->aot_module.ptr;
- for (i = 0; i < module->export_func_count; i++) {
- if (!strcmp(module->export_funcs[i].func_name, name))
- return (WASMFunctionInstance*)&module->export_funcs[i];
- }
- return NULL;
- }
- #endif
- return NULL;
- }
- union ieee754_float {
- float f;
- /* This is the IEEE 754 single-precision format. */
- union {
- struct {
- unsigned int negative:1;
- unsigned int exponent:8;
- unsigned int mantissa:23;
- } ieee_big_endian;
- struct {
- unsigned int mantissa:23;
- unsigned int exponent:8;
- unsigned int negative:1;
- } ieee_little_endian;
- } ieee;
- };
- union ieee754_double {
- double d;
- /* This is the IEEE 754 double-precision format. */
- union {
- struct {
- unsigned int negative:1;
- unsigned int exponent:11;
- /* Together these comprise the mantissa. */
- unsigned int mantissa0:20;
- unsigned int mantissa1:32;
- } ieee_big_endian;
- struct {
- /* Together these comprise the mantissa. */
- unsigned int mantissa1:32;
- unsigned int mantissa0:20;
- unsigned int exponent:11;
- unsigned int negative:1;
- } ieee_little_endian;
- } ieee;
- };
- static union {
- int a;
- char b;
- } __ue = { .a = 1 };
- #define is_little_endian() (__ue.b == 1)
- bool
- wasm_application_execute_func(WASMModuleInstanceCommon *module_inst,
- const char *name, int argc, char *argv[])
- {
- WASMFunctionInstanceCommon *func;
- WASMType *type = NULL;
- uint32 argc1, *argv1 = NULL;
- int32 i, p;
- uint64 total_size;
- const char *exception;
- char buf[128];
- bh_assert(argc >= 0);
- func = resolve_function(module_inst, name);
- if (!func) {
- snprintf(buf, sizeof(buf), "lookup function %s failed.", name);
- wasm_runtime_set_exception(module_inst, buf);
- goto fail;
- }
- #if WASM_ENABLE_INTERP != 0
- if (module_inst->module_type == Wasm_Module_Bytecode) {
- WASMFunctionInstance *wasm_func = (WASMFunctionInstance*)func;
- if (wasm_func->is_import_func) {
- snprintf(buf, sizeof(buf), "lookup function %s failed.", name);
- wasm_runtime_set_exception(module_inst, buf);
- goto fail;
- }
- type = wasm_func->u.func->func_type;
- argc1 = wasm_func->param_cell_num;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst->module_type == Wasm_Module_AoT) {
- type = ((AOTFunctionInstance*)func)->func_type;
- argc1 = wasm_type_param_cell_num(type);
- }
- #endif
- if (type->param_count != (uint32)argc) {
- wasm_runtime_set_exception(module_inst,
- "invalid input argument count.");
- goto fail;
- }
- total_size = sizeof(uint32) * (uint64)(argc1 > 2 ? argc1 : 2);
- if (total_size >= UINT32_MAX
- || (!(argv1 = wasm_runtime_malloc((uint32)total_size)))) {
- wasm_runtime_set_exception(module_inst, "allocate memory failed.");
- goto fail;
- }
- /* Clear errno before parsing arguments */
- errno = 0;
- /* Parse arguments */
- for (i = 0, p = 0; i < argc; i++) {
- char *endptr = NULL;
- bh_assert(argv[i] != NULL);
- if (argv[i][0] == '\0') {
- snprintf(buf, sizeof(buf), "invalid input argument %d.", i);
- wasm_runtime_set_exception(module_inst, buf);
- goto fail;
- }
- switch (type->types[i]) {
- case VALUE_TYPE_I32:
- argv1[p++] = (uint32)strtoul(argv[i], &endptr, 0);
- break;
- case VALUE_TYPE_I64:
- {
- union { uint64 val; uint32 parts[2]; } u;
- u.val = strtoull(argv[i], &endptr, 0);
- argv1[p++] = u.parts[0];
- argv1[p++] = u.parts[1];
- break;
- }
- case VALUE_TYPE_F32:
- {
- float32 f32 = strtof(argv[i], &endptr);
- if (isnan(f32)) {
- if (argv[i][0] == '-') {
- union ieee754_float u;
- u.f = f32;
- if (is_little_endian())
- u.ieee.ieee_little_endian.negative = 1;
- else
- u.ieee.ieee_big_endian.negative = 1;
- memcpy(&f32, &u.f, sizeof(float));
- }
- if (endptr[0] == ':') {
- uint32 sig;
- union ieee754_float u;
- sig = (uint32)strtoul(endptr + 1, &endptr, 0);
- u.f = f32;
- if (is_little_endian())
- u.ieee.ieee_little_endian.mantissa = sig;
- else
- u.ieee.ieee_big_endian.mantissa = sig;
- memcpy(&f32, &u.f, sizeof(float));
- }
- }
- memcpy(&argv1[p++], &f32, sizeof(float));
- break;
- }
- case VALUE_TYPE_F64:
- {
- union { float64 val; uint32 parts[2]; } u;
- u.val = strtod(argv[i], &endptr);
- if (isnan(u.val)) {
- if (argv[i][0] == '-') {
- union ieee754_double ud;
- ud.d = u.val;
- if (is_little_endian())
- ud.ieee.ieee_little_endian.negative = 1;
- else
- ud.ieee.ieee_big_endian.negative = 1;
- memcpy(&u.val, &ud.d, sizeof(double));
- }
- if (endptr[0] == ':') {
- uint64 sig;
- union ieee754_double ud;
- sig = strtoull(endptr + 1, &endptr, 0);
- ud.d = u.val;
- if (is_little_endian()) {
- ud.ieee.ieee_little_endian.mantissa0 = sig >> 32;
- ud.ieee.ieee_little_endian.mantissa1 = (uint32)sig;
- }
- else {
- ud.ieee.ieee_big_endian.mantissa0 = sig >> 32;
- ud.ieee.ieee_big_endian.mantissa1 = (uint32)sig;
- }
- memcpy(&u.val, &ud.d, sizeof(double));
- }
- }
- argv1[p++] = u.parts[0];
- argv1[p++] = u.parts[1];
- break;
- }
- }
- if (endptr && *endptr != '\0' && *endptr != '_') {
- snprintf(buf, sizeof(buf), "invalid input argument %d: %s.",
- i, argv[i]);
- wasm_runtime_set_exception(module_inst, buf);
- goto fail;
- }
- if (errno != 0) {
- snprintf(buf, sizeof(buf),
- "prepare function argument error, errno: %d.", errno);
- wasm_runtime_set_exception(module_inst, buf);
- goto fail;
- }
- }
- bh_assert(p == (int32)argc1);
- wasm_runtime_set_exception(module_inst, NULL);
- if (!wasm_runtime_create_exec_env_and_call_wasm(module_inst, func,
- argc1, argv1)) {
- goto fail;
- }
- /* print return value */
- switch (type->types[type->param_count]) {
- case VALUE_TYPE_I32:
- bh_printf("0x%x:i32", argv1[0]);
- break;
- case VALUE_TYPE_I64:
- {
- char buf[16];
- union { uint64 val; uint32 parts[2]; } u;
- u.parts[0] = argv1[0];
- u.parts[1] = argv1[1];
- if (sizeof(long) == 4)
- snprintf(buf, sizeof(buf), "%s", "0x%llx:i64");
- else
- snprintf(buf, sizeof(buf), "%s", "0x%lx:i64");
- bh_printf(buf, u.val);
- break;
- }
- case VALUE_TYPE_F32:
- bh_printf("%.7g:f32", *(float32*)argv1);
- break;
- case VALUE_TYPE_F64:
- {
- union { float64 val; uint32 parts[2]; } u;
- u.parts[0] = argv1[0];
- u.parts[1] = argv1[1];
- bh_printf("%.7g:f64", u.val);
- break;
- }
- }
- bh_printf("\n");
- wasm_runtime_free(argv1);
- return true;
- fail:
- if (argv1)
- wasm_runtime_free(argv1);
- exception = wasm_runtime_get_exception(module_inst);
- bh_assert(exception);
- bh_printf("%s\n", exception);
- return false;
- }
- bool
- wasm_runtime_register_natives(const char *module_name,
- NativeSymbol *native_symbols,
- uint32 n_native_symbols)
- {
- return wasm_native_register_natives(module_name,
- native_symbols, n_native_symbols);
- }
- /**
- * Implementation of wasm_runtime_invoke_native()
- */
- static inline void
- word_copy(uint32 *dest, uint32 *src, unsigned num)
- {
- for (; num > 0; num--)
- *dest++ = *src++;
- }
- #define PUT_I64_TO_ADDR(addr, value) do { \
- union { int64 val; uint32 parts[2]; } u; \
- u.val = (value); \
- (addr)[0] = u.parts[0]; \
- (addr)[1] = u.parts[1]; \
- } while (0)
- #define PUT_F64_TO_ADDR(addr, value) do { \
- union { float64 val; uint32 parts[2]; } u; \
- u.val = (value); \
- (addr)[0] = u.parts[0]; \
- (addr)[1] = u.parts[1]; \
- } while (0)
- /* The invoke native implementation on ARM platform with VFP co-processor */
- #if defined(BUILD_TARGET_ARM_VFP) || defined(BUILD_TARGET_THUMB_VFP)
- typedef void (*GenericFunctionPointer)();
- int64 invokeNative(GenericFunctionPointer f, uint32 *args, uint32 n_stacks);
- typedef float64 (*Float64FuncPtr)(GenericFunctionPointer, uint32*, uint32);
- typedef float32 (*Float32FuncPtr)(GenericFunctionPointer, uint32*, uint32);
- typedef int64 (*Int64FuncPtr)(GenericFunctionPointer, uint32*,uint32);
- typedef int32 (*Int32FuncPtr)(GenericFunctionPointer, uint32*, uint32);
- typedef void (*VoidFuncPtr)(GenericFunctionPointer, uint32*, uint32);
- static Float64FuncPtr invokeNative_Float64 = (Float64FuncPtr)invokeNative;
- static Float32FuncPtr invokeNative_Float32 = (Float32FuncPtr)invokeNative;
- static Int64FuncPtr invokeNative_Int64 = (Int64FuncPtr)invokeNative;
- static Int32FuncPtr invokeNative_Int32 = (Int32FuncPtr)invokeNative;
- static VoidFuncPtr invokeNative_Void = (VoidFuncPtr)invokeNative;
- #define MAX_REG_INTS 4
- #define MAX_REG_FLOATS 16
- bool
- wasm_runtime_invoke_native(WASMExecEnv *exec_env, void *func_ptr,
- const WASMType *func_type, const char *signature,
- uint32 *argv, uint32 argc, uint32 *argv_ret)
- {
- WASMModuleInstanceCommon *module = wasm_runtime_get_module_inst(exec_env);
- /* argv buf layout: int args(fix cnt) + float args(fix cnt) + stack args */
- uint32 argv_buf[32], *argv1 = argv_buf, *fps, *ints, *stacks, size;
- uint32 *argv_src = argv, i, argc1, n_ints = 0, n_fps = 0, n_stacks = 0;
- uint32 arg_i32, ptr_len;
- bool ret = false;
- n_ints++; /* exec env */
- /* Traverse firstly to calculate stack args count */
- for (i = 0; i < func_type->param_count; i++) {
- switch (func_type->types[i]) {
- case VALUE_TYPE_I32:
- if (n_ints < MAX_REG_INTS)
- n_ints++;
- else
- n_stacks++;
- break;
- case VALUE_TYPE_I64:
- if (n_ints < MAX_REG_INTS - 1) {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_ints & 1)
- n_ints++;
- n_ints += 2;
- }
- else {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_stacks & 1)
- n_stacks++;
- n_stacks += 2;
- }
- break;
- case VALUE_TYPE_F32:
- if (n_fps < MAX_REG_FLOATS)
- n_fps++;
- else
- n_stacks++;
- break;
- case VALUE_TYPE_F64:
- if (n_fps < MAX_REG_FLOATS - 1) {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_fps & 1)
- n_fps++;
- n_fps += 2;
- }
- else {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_stacks & 1)
- n_stacks++;
- n_stacks += 2;
- }
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- argc1 = MAX_REG_INTS + MAX_REG_FLOATS + n_stacks;
- if (argc1 > sizeof(argv_buf) / sizeof(uint32)) {
- size = sizeof(uint32) * (uint32)argc1;
- if (size >= UINT32_MAX
- || !(argv1 = wasm_runtime_malloc((uint32)size))) {
- wasm_runtime_set_exception(exec_env->module_inst,
- "allocate memory failed.");
- return false;
- }
- }
- ints = argv1;
- fps = ints + MAX_REG_INTS;
- stacks = fps + MAX_REG_FLOATS;
- n_ints = 0;
- n_fps = 0;
- n_stacks = 0;
- ints[n_ints++] = (uint32)(uintptr_t)exec_env;
- /* Traverse secondly to fill in each argument */
- for (i = 0; i < func_type->param_count; i++) {
- switch (func_type->types[i]) {
- case VALUE_TYPE_I32:
- {
- arg_i32 = *argv_src++;
- if (signature) {
- if (signature[i + 1] == '*') {
- /* param is a pointer */
- if (signature[i + 2] == '~')
- /* pointer with length followed */
- ptr_len = *argv_src;
- else
- /* pointer without length followed */
- ptr_len = 1;
- if (!wasm_runtime_validate_app_addr(module, arg_i32, ptr_len))
- goto fail;
- arg_i32 = (uintptr_t)
- wasm_runtime_addr_app_to_native(module, arg_i32);
- }
- else if (signature[i + 1] == '$') {
- /* param is a string */
- if (!wasm_runtime_validate_app_str_addr(module, arg_i32))
- goto fail;
- arg_i32 = (uintptr_t)
- wasm_runtime_addr_app_to_native(module, arg_i32);
- }
- }
- if (n_ints < MAX_REG_INTS)
- ints[n_ints++] = arg_i32;
- else
- stacks[n_stacks++] = arg_i32;
- break;
- }
- case VALUE_TYPE_I64:
- if (n_ints < MAX_REG_INTS - 1) {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_ints & 1)
- n_ints++;
- *(uint64*)&ints[n_ints] = *(uint64*)argv_src;
- n_ints += 2;
- }
- else {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_stacks & 1)
- n_stacks++;
- *(uint64*)&stacks[n_stacks] = *(uint64*)argv_src;
- n_stacks += 2;
- }
- argv_src += 2;
- break;
- case VALUE_TYPE_F32:
- if (n_fps < MAX_REG_FLOATS)
- *(float32*)&fps[n_fps++] = *(float32*)argv_src++;
- else
- *(float32*)&stacks[n_stacks++] = *(float32*)argv_src++;
- break;
- case VALUE_TYPE_F64:
- if (n_fps < MAX_REG_FLOATS - 1) {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_fps & 1)
- n_fps++;
- *(float64*)&fps[n_fps] = *(float64*)argv_src;
- n_fps += 2;
- }
- else {
- /* 64-bit data must be 8 bytes aligned in arm */
- if (n_stacks & 1)
- n_stacks++;
- *(float64*)&stacks[n_stacks] = *(float64*)argv_src;
- n_stacks += 2;
- }
- argv_src += 2;
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- if (func_type->result_count == 0) {
- invokeNative_Void(func_ptr, argv1, n_stacks);
- }
- else {
- switch (func_type->types[func_type->param_count]) {
- case VALUE_TYPE_I32:
- argv_ret[0] = (uint32)invokeNative_Int32(func_ptr, argv1, n_stacks);
- break;
- case VALUE_TYPE_I64:
- PUT_I64_TO_ADDR(argv_ret, invokeNative_Int64(func_ptr, argv1, n_stacks));
- break;
- case VALUE_TYPE_F32:
- *(float32*)argv_ret = invokeNative_Float32(func_ptr, argv1, n_stacks);
- break;
- case VALUE_TYPE_F64:
- PUT_F64_TO_ADDR(argv_ret, invokeNative_Float64(func_ptr, argv1, n_stacks));
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- ret = true;
- fail:
- if (argv1 != argv_buf)
- wasm_runtime_free(argv1);
- return ret;
- }
- #endif /* end of defined(BUILD_TARGET_ARM_VFP) || defined(BUILD_TARGET_THUMB_VFP) */
- #if defined(BUILD_TARGET_X86_32) \
- || defined(BUILD_TARGET_ARM) \
- || defined(BUILD_TARGET_THUMB) \
- || defined(BUILD_TARGET_MIPS) \
- || defined(BUILD_TARGET_XTENSA)
- typedef void (*GenericFunctionPointer)();
- int64 invokeNative(GenericFunctionPointer f, uint32 *args, uint32 sz);
- typedef float64 (*Float64FuncPtr)(GenericFunctionPointer f, uint32*, uint32);
- typedef float32 (*Float32FuncPtr)(GenericFunctionPointer f, uint32*, uint32);
- typedef int64 (*Int64FuncPtr)(GenericFunctionPointer f, uint32*, uint32);
- typedef int32 (*Int32FuncPtr)(GenericFunctionPointer f, uint32*, uint32);
- typedef void (*VoidFuncPtr)(GenericFunctionPointer f, uint32*, uint32);
- static Int64FuncPtr invokeNative_Int64 = (Int64FuncPtr)invokeNative;
- static Int32FuncPtr invokeNative_Int32 = (Int32FuncPtr)invokeNative;
- static Float64FuncPtr invokeNative_Float64 = (Float64FuncPtr)invokeNative;
- static Float32FuncPtr invokeNative_Float32 = (Float32FuncPtr)invokeNative;
- static VoidFuncPtr invokeNative_Void = (VoidFuncPtr)invokeNative;
- bool
- wasm_runtime_invoke_native(WASMExecEnv *exec_env, void *func_ptr,
- const WASMType *func_type, const char *signature,
- uint32 *argv, uint32 argc, uint32 *argv_ret)
- {
- WASMModuleInstanceCommon *module = wasm_runtime_get_module_inst(exec_env);
- uint32 argv_buf[32], *argv1 = argv_buf, argc1, i, j = 0;
- uint32 arg_i32, ptr_len;
- uint64 size;
- bool ret = false;
- #if defined(BUILD_TARGET_X86_32)
- argc1 = argc + 2;
- #else
- /* arm/thumb/mips/xtensa, 64-bit data must be 8 bytes aligned,
- so we need to allocate more memory. */
- argc1 = func_type->param_count * 2 + 2;
- #endif
- if (argc1 > sizeof(argv_buf) / sizeof(uint32)) {
- size = sizeof(uint32) * (uint64)argc1;
- if (size >= UINT_MAX
- || !(argv1 = wasm_runtime_malloc((uint32)size))) {
- wasm_runtime_set_exception(exec_env->module_inst,
- "allocate memory failed.");
- return false;
- }
- }
- for (i = 0; i < sizeof(WASMExecEnv*) / sizeof(uint32); i++)
- argv1[j++] = ((uint32*)&exec_env)[i];
- for (i = 0; i < func_type->param_count; i++) {
- switch (func_type->types[i]) {
- case VALUE_TYPE_I32:
- {
- arg_i32 = *argv++;
- if (signature) {
- if (signature[i + 1] == '*') {
- /* param is a pointer */
- if (signature[i + 2] == '~')
- /* pointer with length followed */
- ptr_len = *argv;
- else
- /* pointer without length followed */
- ptr_len = 1;
- if (!wasm_runtime_validate_app_addr(module, arg_i32, ptr_len))
- goto fail;
- arg_i32 = (uintptr_t)
- wasm_runtime_addr_app_to_native(module, arg_i32);
- }
- else if (signature[i + 1] == '$') {
- /* param is a string */
- if (!wasm_runtime_validate_app_str_addr(module, arg_i32))
- goto fail;
- arg_i32 = (uintptr_t)
- wasm_runtime_addr_app_to_native(module, arg_i32);
- }
- }
- argv1[j++] = arg_i32;
- break;
- }
- case VALUE_TYPE_I64:
- case VALUE_TYPE_F64:
- #if !defined(BUILD_TARGET_X86_32)
- /* 64-bit data must be 8 bytes aligned in arm, thumb, mips
- and xtensa */
- if (j & 1)
- j++;
- #endif
- argv1[j++] = *argv++;
- argv1[j++] = *argv++;
- break;
- case VALUE_TYPE_F32:
- argv1[j++] = *argv++;
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- argc1 = j;
- if (func_type->result_count == 0) {
- invokeNative_Void(func_ptr, argv1, argc1);
- }
- else {
- switch (func_type->types[func_type->param_count]) {
- case VALUE_TYPE_I32:
- argv_ret[0] = (uint32)invokeNative_Int32(func_ptr, argv1, argc1);
- break;
- case VALUE_TYPE_I64:
- PUT_I64_TO_ADDR(argv_ret, invokeNative_Int64(func_ptr, argv1, argc1));
- break;
- case VALUE_TYPE_F32:
- *(float32*)argv_ret = invokeNative_Float32(func_ptr, argv1, argc1);
- break;
- case VALUE_TYPE_F64:
- PUT_F64_TO_ADDR(argv_ret, invokeNative_Float64(func_ptr, argv1, argc1));
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- ret = true;
- fail:
- if (argv1 != argv_buf)
- wasm_runtime_free(argv1);
- return ret;
- }
- #endif /* end of defined(BUILD_TARGET_X86_32) \
- || defined(BUILD_TARGET_ARM) \
- || defined(BUILD_TARGET_THUMB) \
- || defined(BUILD_TARGET_MIPS) \
- || defined(BUILD_TARGET_XTENSA) */
- #if defined(BUILD_TARGET_X86_64) || defined(BUILD_TARGET_AMD_64)
- typedef void (*GenericFunctionPointer)();
- int64 invokeNative(GenericFunctionPointer f, uint64 *args, uint64 n_stacks);
- typedef float64 (*Float64FuncPtr)(GenericFunctionPointer, uint64*, uint64);
- typedef float32 (*Float32FuncPtr)(GenericFunctionPointer, uint64*, uint64);
- typedef int64 (*Int64FuncPtr)(GenericFunctionPointer, uint64*,uint64);
- typedef int32 (*Int32FuncPtr)(GenericFunctionPointer, uint64*, uint64);
- typedef void (*VoidFuncPtr)(GenericFunctionPointer, uint64*, uint64);
- static Float64FuncPtr invokeNative_Float64 = (Float64FuncPtr)invokeNative;
- static Float32FuncPtr invokeNative_Float32 = (Float32FuncPtr)invokeNative;
- static Int64FuncPtr invokeNative_Int64 = (Int64FuncPtr)invokeNative;
- static Int32FuncPtr invokeNative_Int32 = (Int32FuncPtr)invokeNative;
- static VoidFuncPtr invokeNative_Void = (VoidFuncPtr)invokeNative;
- #if defined(_WIN32) || defined(_WIN32_)
- #define MAX_REG_FLOATS 4
- #define MAX_REG_INTS 4
- #else
- #define MAX_REG_FLOATS 8
- #define MAX_REG_INTS 6
- #endif
- bool
- wasm_runtime_invoke_native(WASMExecEnv *exec_env, void *func_ptr,
- const WASMType *func_type, const char *signature,
- uint32 *argv, uint32 argc, uint32 *argv_ret)
- {
- WASMModuleInstanceCommon *module = wasm_runtime_get_module_inst(exec_env);
- uint64 argv_buf[32], *argv1 = argv_buf, *fps, *ints, *stacks, size, arg_i64;
- uint32 *argv_src = argv, i, argc1, n_ints = 0, n_stacks = 0;
- uint32 arg_i32, ptr_len;
- bool ret = false;
- #if defined(_WIN32) || defined(_WIN32_)
- /* important difference in calling conventions */
- #define n_fps n_ints
- #else
- int n_fps = 0;
- #endif
- argc1 = 1 + MAX_REG_FLOATS + func_type->param_count + 2;
- if (argc1 > sizeof(argv_buf) / sizeof(uint64)) {
- size = sizeof(uint64) * (uint64)argc1;
- if (size >= UINT32_MAX
- || !(argv1 = wasm_runtime_malloc((uint32)size))) {
- wasm_runtime_set_exception(exec_env->module_inst,
- "allocate memory failed.");
- return false;
- }
- }
- fps = argv1;
- ints = fps + MAX_REG_FLOATS;
- stacks = ints + MAX_REG_INTS;
- ints[n_ints++] = (uint64)(uintptr_t)exec_env;
- for (i = 0; i < func_type->param_count; i++) {
- switch (func_type->types[i]) {
- case VALUE_TYPE_I32:
- {
- arg_i32 = *argv_src++;
- arg_i64 = arg_i32;
- if (signature) {
- if (signature[i + 1] == '*') {
- /* param is a pointer */
- if (signature[i + 2] == '~')
- /* pointer with length followed */
- ptr_len = *argv_src;
- else
- /* pointer without length followed */
- ptr_len = 1;
- if (!wasm_runtime_validate_app_addr(module, arg_i32, ptr_len))
- goto fail;
- arg_i64 = (uintptr_t)
- wasm_runtime_addr_app_to_native(module, arg_i32);
- }
- else if (signature[i + 1] == '$') {
- /* param is a string */
- if (!wasm_runtime_validate_app_str_addr(module, arg_i32))
- goto fail;
- arg_i64 = (uintptr_t)
- wasm_runtime_addr_app_to_native(module, arg_i32);
- }
- }
- if (n_ints < MAX_REG_INTS)
- ints[n_ints++] = arg_i64;
- else
- stacks[n_stacks++] = arg_i64;
- break;
- }
- case VALUE_TYPE_I64:
- if (n_ints < MAX_REG_INTS)
- ints[n_ints++] = *(uint64*)argv_src;
- else
- stacks[n_stacks++] = *(uint64*)argv_src;
- argv_src += 2;
- break;
- case VALUE_TYPE_F32:
- if (n_fps < MAX_REG_FLOATS)
- *(float32*)&fps[n_fps++] = *(float32*)argv_src++;
- else
- *(float32*)&stacks[n_stacks++] = *(float32*)argv_src++;
- break;
- case VALUE_TYPE_F64:
- if (n_fps < MAX_REG_FLOATS)
- *(float64*)&fps[n_fps++] = *(float64*)argv_src;
- else
- *(float64*)&stacks[n_stacks++] = *(float64*)argv_src;
- argv_src += 2;
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- if (func_type->result_count == 0) {
- invokeNative_Void(func_ptr, argv1, n_stacks);
- }
- else {
- switch (func_type->types[func_type->param_count]) {
- case VALUE_TYPE_I32:
- argv_ret[0] = (uint32)invokeNative_Int32(func_ptr, argv1, n_stacks);
- break;
- case VALUE_TYPE_I64:
- PUT_I64_TO_ADDR(argv_ret, invokeNative_Int64(func_ptr, argv1, n_stacks));
- break;
- case VALUE_TYPE_F32:
- *(float32*)argv_ret = invokeNative_Float32(func_ptr, argv1, n_stacks);
- break;
- case VALUE_TYPE_F64:
- PUT_F64_TO_ADDR(argv_ret, invokeNative_Float64(func_ptr, argv1, n_stacks));
- break;
- default:
- bh_assert(0);
- break;
- }
- }
- ret = true;
- fail:
- if (argv1 != argv_buf)
- wasm_runtime_free(argv1);
- return ret;
- }
- #endif /* end of defined(BUILD_TARGET_X86_64) || defined(BUILD_TARGET_AMD_64) */
|