| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #include "wasm_c_api_internal.h"
- #include "wasm_memory.h"
- #include "wasm_runtime_common.h"
- #if WASM_ENABLE_INTERP != 0
- #include "wasm_runtime.h"
- #endif
- #if WASM_ENABLE_AOT != 0
- #include "aot_runtime.h"
- #endif
- #define ASSERT_NOT_IMPLEMENTED() bh_assert(!"not implemented")
- #define UNREACHABLE() bh_assert(!"unreachable")
- typedef struct wasm_module_ex_t wasm_module_ex_t;
- static void
- wasm_module_delete_internal(wasm_module_t *);
- static void
- wasm_instance_delete_internal(wasm_instance_t *);
- /* temporarily put stubs here */
- static wasm_store_t *
- wasm_store_copy(const wasm_store_t *src)
- {
- (void)src;
- LOG_WARNING("in the stub of %s", __FUNCTION__);
- return NULL;
- }
- wasm_module_t *
- wasm_module_copy(const wasm_module_t *src)
- {
- (void)src;
- LOG_WARNING("in the stub of %s", __FUNCTION__);
- return NULL;
- }
- wasm_instance_t *
- wasm_instance_copy(const wasm_instance_t *src)
- {
- (void)src;
- LOG_WARNING("in the stub of %s", __FUNCTION__);
- return NULL;
- }
- /* ---------------------------------------------------------------------- */
- static inline void *
- malloc_internal(uint64 size)
- {
- void *mem = NULL;
- if (size < UINT32_MAX && (mem = wasm_runtime_malloc((uint32)size))) {
- memset(mem, 0, size);
- }
- return mem;
- }
- /* clang-format off */
- #define RETURN_OBJ(obj, obj_del_func) \
- return obj; \
- failed: \
- obj_del_func(obj); \
- return NULL;
- #define RETURN_VOID(obj, obj_del_func) \
- return; \
- failed: \
- obj_del_func(obj); \
- return;
- /* clang-format on */
- /* Vectors */
- #define INIT_VEC(vector_p, init_func, ...) \
- do { \
- if (!(vector_p = malloc_internal(sizeof(*(vector_p))))) { \
- goto failed; \
- } \
- \
- init_func(vector_p, ##__VA_ARGS__); \
- if (vector_p->size && !vector_p->data) { \
- LOG_DEBUG("%s failed", #init_func); \
- goto failed; \
- } \
- } while (false)
- #define DEINIT_VEC(vector_p, deinit_func) \
- if ((vector_p)) { \
- deinit_func(vector_p); \
- wasm_runtime_free(vector_p); \
- vector_p = NULL; \
- }
- #define WASM_DEFINE_VEC(name) \
- void wasm_##name##_vec_new_empty(own wasm_##name##_vec_t *out) \
- { \
- wasm_##name##_vec_new_uninitialized(out, 0); \
- } \
- void wasm_##name##_vec_new_uninitialized(own wasm_##name##_vec_t *out, \
- size_t size) \
- { \
- wasm_##name##_vec_new(out, size, NULL); \
- }
- /* vectors with no ownership management of elements */
- #define WASM_DEFINE_VEC_PLAIN(name) \
- WASM_DEFINE_VEC(name) \
- void wasm_##name##_vec_new(own wasm_##name##_vec_t *out, size_t size, \
- own wasm_##name##_t const data[]) \
- { \
- if (!out) { \
- return; \
- } \
- \
- memset(out, 0, sizeof(wasm_##name##_vec_t)); \
- \
- if (!size) { \
- return; \
- } \
- \
- if (!bh_vector_init((Vector *)out, size, sizeof(wasm_##name##_t))) { \
- LOG_DEBUG("bh_vector_init failed"); \
- goto failed; \
- } \
- \
- if (data) { \
- uint32 size_in_bytes = 0; \
- size_in_bytes = (uint32)(size * sizeof(wasm_##name##_t)); \
- bh_memcpy_s(out->data, size_in_bytes, data, size_in_bytes); \
- out->num_elems = size; \
- } \
- \
- RETURN_VOID(out, wasm_##name##_vec_delete) \
- } \
- void wasm_##name##_vec_copy(wasm_##name##_vec_t *out, \
- const wasm_##name##_vec_t *src) \
- { \
- wasm_##name##_vec_new(out, src->size, src->data); \
- } \
- void wasm_##name##_vec_delete(wasm_##name##_vec_t *v) \
- { \
- if (v) { \
- bh_vector_destroy((Vector *)v); \
- } \
- }
- /* vectors that own their elements */
- #define WASM_DEFINE_VEC_OWN(name, elem_destroy_func) \
- WASM_DEFINE_VEC(name) \
- void wasm_##name##_vec_new(own wasm_##name##_vec_t *out, size_t size, \
- own wasm_##name##_t *const data[]) \
- { \
- if (!out) { \
- return; \
- } \
- \
- memset(out, 0, sizeof(wasm_##name##_vec_t)); \
- \
- if (!size) { \
- return; \
- } \
- \
- if (!bh_vector_init((Vector *)out, size, \
- sizeof(wasm_##name##_t *))) { \
- LOG_DEBUG("bh_vector_init failed"); \
- goto failed; \
- } \
- \
- if (data) { \
- uint32 size_in_bytes = 0; \
- size_in_bytes = (uint32)(size * sizeof(wasm_##name##_t *)); \
- bh_memcpy_s(out->data, size_in_bytes, data, size_in_bytes); \
- out->num_elems = size; \
- } \
- \
- RETURN_VOID(out, wasm_##name##_vec_delete) \
- } \
- void wasm_##name##_vec_copy(own wasm_##name##_vec_t *out, \
- const wasm_##name##_vec_t *src) \
- { \
- size_t i = 0; \
- memset(out, 0, sizeof(Vector)); \
- \
- if (!src || !src->size) { \
- return; \
- } \
- \
- if (!bh_vector_init((Vector *)out, src->size, \
- sizeof(wasm_##name##_t *))) { \
- LOG_DEBUG("bh_vector_init failed"); \
- goto failed; \
- } \
- \
- for (i = 0; i != src->num_elems; ++i) { \
- if (!(out->data[i] = wasm_##name##_copy(src->data[i]))) { \
- LOG_DEBUG("wasm_%s_copy failed", #name); \
- goto failed; \
- } \
- } \
- out->num_elems = src->num_elems; \
- \
- RETURN_VOID(out, wasm_##name##_vec_delete) \
- } \
- void wasm_##name##_vec_delete(wasm_##name##_vec_t *v) \
- { \
- size_t i = 0; \
- if (!v) { \
- return; \
- } \
- for (i = 0; i != v->num_elems; ++i) { \
- elem_destroy_func(*(v->data + i)); \
- } \
- bh_vector_destroy((Vector *)v); \
- }
- WASM_DEFINE_VEC_PLAIN(byte)
- WASM_DEFINE_VEC_PLAIN(val)
- WASM_DEFINE_VEC_OWN(exporttype, wasm_exporttype_delete)
- WASM_DEFINE_VEC_OWN(extern, wasm_extern_delete)
- WASM_DEFINE_VEC_OWN(frame, wasm_frame_delete)
- WASM_DEFINE_VEC_OWN(functype, wasm_functype_delete)
- WASM_DEFINE_VEC_OWN(importtype, wasm_importtype_delete)
- WASM_DEFINE_VEC_OWN(instance, wasm_instance_delete_internal)
- WASM_DEFINE_VEC_OWN(module, wasm_module_delete_internal)
- WASM_DEFINE_VEC_OWN(store, wasm_store_delete)
- WASM_DEFINE_VEC_OWN(valtype, wasm_valtype_delete)
- /* conflicting declaration between aot_export.h and aot.h */
- #if WASM_ENABLE_AOT != 0 && WASM_ENABLE_JIT != 0
- bool
- aot_compile_wasm_file_init();
- void
- aot_compile_wasm_file_destroy();
- uint8 *
- aot_compile_wasm_file(const uint8 *wasm_file_buf,
- uint32 wasm_file_size,
- uint32 opt_level,
- uint32 size_level,
- char *error_buf,
- uint32 error_buf_size,
- uint32 *p_aot_file_size);
- #endif
- /* Runtime Environment */
- own wasm_config_t *
- wasm_config_new(void)
- {
- return NULL;
- }
- void
- wasm_config_delete(own wasm_config_t *config)
- {
- (void)config;
- }
- static void
- wasm_engine_delete_internal(wasm_engine_t *engine)
- {
- if (engine) {
- DEINIT_VEC(engine->stores, wasm_store_vec_delete);
- wasm_runtime_free(engine);
- }
- #if WASM_ENABLE_AOT != 0 && WASM_ENABLE_JIT != 0
- aot_compile_wasm_file_destroy();
- #endif
- wasm_runtime_destroy();
- }
- static wasm_engine_t *
- wasm_engine_new_internal(mem_alloc_type_t type, const MemAllocOption *opts)
- {
- wasm_engine_t *engine = NULL;
- /* init runtime */
- RuntimeInitArgs init_args = { 0 };
- init_args.mem_alloc_type = type;
- if (type == Alloc_With_Pool) {
- if (!opts) {
- return NULL;
- }
- init_args.mem_alloc_option.pool.heap_buf = opts->pool.heap_buf;
- init_args.mem_alloc_option.pool.heap_size = opts->pool.heap_size;
- }
- else if (type == Alloc_With_Allocator) {
- if (!opts) {
- return NULL;
- }
- init_args.mem_alloc_option.allocator.malloc_func =
- opts->allocator.malloc_func;
- init_args.mem_alloc_option.allocator.free_func =
- opts->allocator.free_func;
- init_args.mem_alloc_option.allocator.realloc_func =
- opts->allocator.realloc_func;
- }
- else {
- init_args.mem_alloc_option.pool.heap_buf = NULL;
- init_args.mem_alloc_option.pool.heap_size = 0;
- }
- if (!wasm_runtime_full_init(&init_args)) {
- LOG_DEBUG("wasm_runtime_full_init failed");
- goto failed;
- }
- #if BH_DEBUG != 0
- bh_log_set_verbose_level(5);
- #else
- bh_log_set_verbose_level(3);
- #endif
- #if WASM_ENABLE_AOT != 0 && WASM_ENABLE_JIT != 0
- if (!aot_compile_wasm_file_init()) {
- goto failed;
- }
- #endif
- /* create wasm_engine_t */
- if (!(engine = malloc_internal(sizeof(wasm_engine_t)))) {
- goto failed;
- }
- /* create wasm_store_vec_t */
- INIT_VEC(engine->stores, wasm_store_vec_new_uninitialized, 1);
- RETURN_OBJ(engine, wasm_engine_delete_internal)
- }
- /* global engine instance */
- static wasm_engine_t *singleton_engine = NULL;
- own wasm_engine_t *
- wasm_engine_new()
- {
- if (!singleton_engine) {
- singleton_engine =
- wasm_engine_new_internal(Alloc_With_System_Allocator, NULL);
- }
- return singleton_engine;
- }
- own wasm_engine_t *
- wasm_engine_new_with_config(own wasm_config_t *config)
- {
- (void)config;
- return wasm_engine_new();
- }
- own wasm_engine_t *
- wasm_engine_new_with_args(mem_alloc_type_t type, const MemAllocOption *opts)
- {
- if (!singleton_engine) {
- singleton_engine = wasm_engine_new_internal(type, opts);
- }
- return singleton_engine;
- }
- /* BE AWARE: will RESET the singleton */
- void
- wasm_engine_delete(wasm_engine_t *engine)
- {
- if (engine) {
- wasm_engine_delete_internal(engine);
- singleton_engine = NULL;
- }
- }
- wasm_store_t *
- wasm_store_new(wasm_engine_t *engine)
- {
- wasm_store_t *store = NULL;
- if (!engine || singleton_engine != engine) {
- return NULL;
- }
- if (!wasm_runtime_init_thread_env()) {
- LOG_ERROR("init thread environment failed");
- return NULL;
- }
- if (!(store = malloc_internal(sizeof(wasm_store_t)))) {
- wasm_runtime_destroy_thread_env();
- return NULL;
- }
- /* new a vector, and new its data */
- INIT_VEC(store->modules, wasm_module_vec_new_uninitialized,
- DEFAULT_VECTOR_INIT_LENGTH);
- INIT_VEC(store->instances, wasm_instance_vec_new_uninitialized,
- DEFAULT_VECTOR_INIT_LENGTH);
- if (!(store->foreigns = malloc_internal(sizeof(Vector)))
- || !(bh_vector_init(store->foreigns, 24, sizeof(Vector *)))) {
- goto failed;
- }
- /* append to a store list of engine */
- if (!bh_vector_append((Vector *)singleton_engine->stores, &store)) {
- LOG_DEBUG("bh_vector_append failed");
- goto failed;
- }
- return store;
- failed:
- wasm_store_delete(store);
- return NULL;
- }
- void
- wasm_store_delete(wasm_store_t *store)
- {
- size_t i, store_count;
- if (!store) {
- return;
- }
- /* remove it from the list in the engine */
- store_count = bh_vector_size((Vector *)singleton_engine->stores);
- for (i = 0; i != store_count; ++i) {
- wasm_store_t *tmp;
- if (!bh_vector_get((Vector *)singleton_engine->stores, (uint32)i,
- &tmp)) {
- break;
- }
- if (tmp == store) {
- bh_vector_remove((Vector *)singleton_engine->stores, (uint32)i,
- NULL);
- break;
- }
- }
- DEINIT_VEC(store->modules, wasm_module_vec_delete);
- DEINIT_VEC(store->instances, wasm_instance_vec_delete);
- if (store->foreigns) {
- bh_vector_destroy(store->foreigns);
- wasm_runtime_free(store->foreigns);
- }
- wasm_runtime_free(store);
- wasm_runtime_destroy_thread_env();
- }
- /* Type Representations */
- static inline wasm_valkind_t
- val_type_rt_2_valkind(uint8 val_type_rt)
- {
- switch (val_type_rt) {
- #define WAMR_VAL_TYPE_2_WASM_VAL_KIND(name) \
- case VALUE_TYPE_##name: \
- return WASM_##name;
- WAMR_VAL_TYPE_2_WASM_VAL_KIND(I32)
- WAMR_VAL_TYPE_2_WASM_VAL_KIND(I64)
- WAMR_VAL_TYPE_2_WASM_VAL_KIND(F32)
- WAMR_VAL_TYPE_2_WASM_VAL_KIND(F64)
- WAMR_VAL_TYPE_2_WASM_VAL_KIND(FUNCREF)
- #undef WAMR_VAL_TYPE_2_WASM_VAL_KIND
- default:
- return WASM_ANYREF;
- }
- }
- static wasm_valtype_t *
- wasm_valtype_new_internal(uint8 val_type_rt)
- {
- return wasm_valtype_new(val_type_rt_2_valkind(val_type_rt));
- }
- wasm_valtype_t *
- wasm_valtype_new(wasm_valkind_t kind)
- {
- wasm_valtype_t *val_type;
- if (!(val_type = malloc_internal(sizeof(wasm_valtype_t)))) {
- return NULL;
- }
- val_type->kind = kind;
- return val_type;
- }
- void
- wasm_valtype_delete(wasm_valtype_t *val_type)
- {
- if (val_type) {
- wasm_runtime_free(val_type);
- }
- }
- wasm_valtype_t *
- wasm_valtype_copy(const wasm_valtype_t *src)
- {
- return src ? wasm_valtype_new(src->kind) : NULL;
- }
- wasm_valkind_t
- wasm_valtype_kind(const wasm_valtype_t *val_type)
- {
- return val_type ? val_type->kind : WASM_ANYREF;
- }
- static wasm_functype_t *
- wasm_functype_new_internal(WASMType *type_rt)
- {
- wasm_functype_t *type = NULL;
- wasm_valtype_t *param_type = NULL, *result_type = NULL;
- uint32 i = 0;
- if (!type_rt) {
- return NULL;
- }
- if (!(type = malloc_internal(sizeof(wasm_functype_t)))) {
- return NULL;
- }
- type->extern_kind = WASM_EXTERN_FUNC;
- /* WASMType->types[0 : type_rt->param_count) -> type->params */
- INIT_VEC(type->params, wasm_valtype_vec_new_uninitialized,
- type_rt->param_count);
- for (i = 0; i < type_rt->param_count; ++i) {
- if (!(param_type = wasm_valtype_new_internal(*(type_rt->types + i)))) {
- goto failed;
- }
- if (!bh_vector_append((Vector *)type->params, ¶m_type)) {
- LOG_DEBUG("bh_vector_append failed");
- goto failed;
- }
- }
- /* WASMType->types[type_rt->param_count : type_rt->result_count) -> type->results */
- INIT_VEC(type->results, wasm_valtype_vec_new_uninitialized,
- type_rt->result_count);
- for (i = 0; i < type_rt->result_count; ++i) {
- if (!(result_type = wasm_valtype_new_internal(
- *(type_rt->types + type_rt->param_count + i)))) {
- goto failed;
- }
- if (!bh_vector_append((Vector *)type->results, &result_type)) {
- LOG_DEBUG("bh_vector_append failed");
- goto failed;
- }
- }
- return type;
- failed:
- wasm_valtype_delete(param_type);
- wasm_valtype_delete(result_type);
- wasm_functype_delete(type);
- return NULL;
- }
- wasm_functype_t *
- wasm_functype_new(own wasm_valtype_vec_t *params,
- own wasm_valtype_vec_t *results)
- {
- wasm_functype_t *type = NULL;
- if (!params) {
- return NULL;
- }
- if (!results) {
- return NULL;
- }
- if (!(type = malloc_internal(sizeof(wasm_functype_t)))) {
- goto failed;
- }
- type->extern_kind = WASM_EXTERN_FUNC;
- /* take ownership */
- if (!(type->params = malloc_internal(sizeof(wasm_valtype_vec_t)))) {
- goto failed;
- }
- bh_memcpy_s(type->params, sizeof(wasm_valtype_vec_t), params,
- sizeof(wasm_valtype_vec_t));
- if (!(type->results = malloc_internal(sizeof(wasm_valtype_vec_t)))) {
- goto failed;
- }
- bh_memcpy_s(type->results, sizeof(wasm_valtype_vec_t), results,
- sizeof(wasm_valtype_vec_t));
- return type;
- failed:
- wasm_functype_delete(type);
- return NULL;
- }
- wasm_functype_t *
- wasm_functype_copy(const wasm_functype_t *src)
- {
- wasm_functype_t *functype;
- wasm_valtype_vec_t params = { 0 }, results = { 0 };
- if (!src) {
- return NULL;
- }
- wasm_valtype_vec_copy(¶ms, src->params);
- if (src->params->size && !params.data) {
- goto failed;
- }
- wasm_valtype_vec_copy(&results, src->results);
- if (src->results->size && !results.data) {
- goto failed;
- }
- if (!(functype = wasm_functype_new(¶ms, &results))) {
- goto failed;
- }
- return functype;
- failed:
- wasm_valtype_vec_delete(¶ms);
- wasm_valtype_vec_delete(&results);
- return NULL;
- }
- void
- wasm_functype_delete(wasm_functype_t *func_type)
- {
- if (!func_type) {
- return;
- }
- DEINIT_VEC(func_type->params, wasm_valtype_vec_delete);
- DEINIT_VEC(func_type->results, wasm_valtype_vec_delete);
- wasm_runtime_free(func_type);
- }
- const wasm_valtype_vec_t *
- wasm_functype_params(const wasm_functype_t *func_type)
- {
- if (!func_type) {
- return NULL;
- }
- return func_type->params;
- }
- const wasm_valtype_vec_t *
- wasm_functype_results(const wasm_functype_t *func_type)
- {
- if (!func_type) {
- return NULL;
- }
- return func_type->results;
- }
- wasm_globaltype_t *
- wasm_globaltype_new(own wasm_valtype_t *val_type, wasm_mutability_t mut)
- {
- wasm_globaltype_t *global_type = NULL;
- if (!val_type) {
- return NULL;
- }
- if (!(global_type = malloc_internal(sizeof(wasm_globaltype_t)))) {
- return NULL;
- }
- global_type->extern_kind = WASM_EXTERN_GLOBAL;
- global_type->val_type = val_type;
- global_type->mutability = mut;
- return global_type;
- }
- wasm_globaltype_t *
- wasm_globaltype_new_internal(uint8 val_type_rt, bool is_mutable)
- {
- wasm_globaltype_t *globaltype;
- wasm_valtype_t *val_type;
- if (!(val_type = wasm_valtype_new(val_type_rt_2_valkind(val_type_rt)))) {
- return NULL;
- }
- if (!(globaltype = wasm_globaltype_new(
- val_type, is_mutable ? WASM_VAR : WASM_CONST))) {
- wasm_valtype_delete(val_type);
- }
- return globaltype;
- }
- void
- wasm_globaltype_delete(wasm_globaltype_t *global_type)
- {
- if (!global_type) {
- return;
- }
- if (global_type->val_type) {
- wasm_valtype_delete(global_type->val_type);
- global_type->val_type = NULL;
- }
- wasm_runtime_free(global_type);
- }
- wasm_globaltype_t *
- wasm_globaltype_copy(const wasm_globaltype_t *src)
- {
- wasm_globaltype_t *global_type;
- wasm_valtype_t *val_type;
- if (!src) {
- return NULL;
- }
- if (!(val_type = wasm_valtype_copy(src->val_type))) {
- return NULL;
- }
- if (!(global_type = wasm_globaltype_new(val_type, src->mutability))) {
- wasm_valtype_delete(val_type);
- }
- return global_type;
- }
- const wasm_valtype_t *
- wasm_globaltype_content(const wasm_globaltype_t *global_type)
- {
- if (!global_type) {
- return NULL;
- }
- return global_type->val_type;
- }
- wasm_mutability_t
- wasm_globaltype_mutability(const wasm_globaltype_t *global_type)
- {
- if (!global_type) {
- return false;
- }
- return global_type->mutability;
- }
- static wasm_tabletype_t *
- wasm_tabletype_new_internal(uint8 val_type_rt,
- uint32 init_size,
- uint32 max_size)
- {
- wasm_tabletype_t *table_type;
- wasm_limits_t limits = { init_size, max_size };
- wasm_valtype_t *val_type;
- if (!(val_type = wasm_valtype_new_internal(val_type_rt))) {
- return NULL;
- }
- if (!(table_type = wasm_tabletype_new(val_type, &limits))) {
- wasm_valtype_delete(val_type);
- }
- return table_type;
- }
- wasm_tabletype_t *
- wasm_tabletype_new(own wasm_valtype_t *val_type, const wasm_limits_t *limits)
- {
- wasm_tabletype_t *table_type = NULL;
- if (!val_type) {
- return NULL;
- }
- if (!(table_type = malloc_internal(sizeof(wasm_tabletype_t)))) {
- return NULL;
- }
- table_type->extern_kind = WASM_EXTERN_TABLE;
- table_type->val_type = val_type;
- table_type->limits.min = limits->min;
- table_type->limits.max = limits->max;
- return table_type;
- }
- wasm_tabletype_t *
- wasm_tabletype_copy(const wasm_tabletype_t *src)
- {
- wasm_tabletype_t *table_type;
- wasm_valtype_t *val_type;
- if (!src) {
- return NULL;
- }
- if (!(val_type = wasm_valtype_copy(src->val_type))) {
- return NULL;
- }
- if (!(table_type = wasm_tabletype_new(val_type, &src->limits))) {
- wasm_valtype_delete(val_type);
- }
- return table_type;
- }
- void
- wasm_tabletype_delete(wasm_tabletype_t *table_type)
- {
- if (!table_type) {
- return;
- }
- if (table_type->val_type) {
- wasm_valtype_delete(table_type->val_type);
- table_type->val_type = NULL;
- }
- wasm_runtime_free(table_type);
- }
- const wasm_valtype_t *
- wasm_tabletype_element(const wasm_tabletype_t *table_type)
- {
- if (!table_type) {
- return NULL;
- }
- return table_type->val_type;
- }
- const wasm_limits_t *
- wasm_tabletype_limits(const wasm_tabletype_t *table_type)
- {
- if (!table_type) {
- return NULL;
- }
- return &(table_type->limits);
- }
- static wasm_memorytype_t *
- wasm_memorytype_new_internal(uint32 min_pages, uint32 max_pages)
- {
- wasm_limits_t limits = { min_pages, max_pages };
- return wasm_memorytype_new(&limits);
- }
- wasm_memorytype_t *
- wasm_memorytype_new(const wasm_limits_t *limits)
- {
- wasm_memorytype_t *memory_type = NULL;
- if (!limits) {
- return NULL;
- }
- if (!(memory_type = malloc_internal(sizeof(wasm_memorytype_t)))) {
- return NULL;
- }
- memory_type->extern_kind = WASM_EXTERN_MEMORY;
- memory_type->limits.min = limits->min;
- memory_type->limits.max = limits->max;
- return memory_type;
- }
- wasm_memorytype_t *
- wasm_memorytype_copy(const wasm_memorytype_t *src)
- {
- if (!src) {
- return NULL;
- }
- return wasm_memorytype_new(&src->limits);
- }
- void
- wasm_memorytype_delete(wasm_memorytype_t *memory_type)
- {
- if (memory_type) {
- wasm_runtime_free(memory_type);
- }
- }
- const wasm_limits_t *
- wasm_memorytype_limits(const wasm_memorytype_t *memory_type)
- {
- if (!memory_type) {
- return NULL;
- }
- return &(memory_type->limits);
- }
- wasm_externkind_t
- wasm_externtype_kind(const wasm_externtype_t *extern_type)
- {
- if (!extern_type) {
- return WASM_EXTERN_FUNC;
- }
- return extern_type->extern_kind;
- }
- #define BASIC_FOUR_TYPE_LIST(V) \
- V(functype) \
- V(globaltype) \
- V(memorytype) \
- V(tabletype)
- #define WASM_EXTERNTYPE_AS_OTHERTYPE(name) \
- wasm_##name##_t *wasm_externtype_as_##name( \
- wasm_externtype_t *extern_type) \
- { \
- return (wasm_##name##_t *)extern_type; \
- }
- BASIC_FOUR_TYPE_LIST(WASM_EXTERNTYPE_AS_OTHERTYPE)
- #undef WASM_EXTERNTYPE_AS_OTHERTYPE
- #define WASM_OTHERTYPE_AS_EXTERNTYPE(name) \
- wasm_externtype_t *wasm_##name##_as_externtype(wasm_##name##_t *other) \
- { \
- return (wasm_externtype_t *)other; \
- }
- BASIC_FOUR_TYPE_LIST(WASM_OTHERTYPE_AS_EXTERNTYPE)
- #undef WASM_OTHERTYPE_AS_EXTERNTYPE
- #define WASM_EXTERNTYPE_AS_OTHERTYPE_CONST(name) \
- const wasm_##name##_t *wasm_externtype_as_##name##_const( \
- const wasm_externtype_t *extern_type) \
- { \
- return (const wasm_##name##_t *)extern_type; \
- }
- BASIC_FOUR_TYPE_LIST(WASM_EXTERNTYPE_AS_OTHERTYPE_CONST)
- #undef WASM_EXTERNTYPE_AS_OTHERTYPE_CONST
- #define WASM_OTHERTYPE_AS_EXTERNTYPE_CONST(name) \
- const wasm_externtype_t *wasm_##name##_as_externtype_const( \
- const wasm_##name##_t *other) \
- { \
- return (const wasm_externtype_t *)other; \
- }
- BASIC_FOUR_TYPE_LIST(WASM_OTHERTYPE_AS_EXTERNTYPE_CONST)
- #undef WASM_OTHERTYPE_AS_EXTERNTYPE_CONST
- wasm_externtype_t *
- wasm_externtype_copy(const wasm_externtype_t *src)
- {
- wasm_externtype_t *extern_type = NULL;
- if (!src) {
- return NULL;
- }
- switch (src->extern_kind) {
- #define COPY_EXTERNTYPE(NAME, name) \
- case WASM_EXTERN_##NAME: \
- { \
- extern_type = wasm_##name##_as_externtype( \
- wasm_##name##_copy(wasm_externtype_as_##name##_const(src))); \
- break; \
- }
- COPY_EXTERNTYPE(FUNC, functype)
- COPY_EXTERNTYPE(GLOBAL, globaltype)
- COPY_EXTERNTYPE(MEMORY, memorytype)
- COPY_EXTERNTYPE(TABLE, tabletype)
- #undef COPY_EXTERNTYPE
- default:
- LOG_WARNING("%s meets unsupported kind", __FUNCTION__,
- src->extern_kind);
- break;
- }
- return extern_type;
- }
- void
- wasm_externtype_delete(wasm_externtype_t *extern_type)
- {
- if (!extern_type) {
- return;
- }
- switch (wasm_externtype_kind(extern_type)) {
- case WASM_EXTERN_FUNC:
- wasm_functype_delete(wasm_externtype_as_functype(extern_type));
- break;
- case WASM_EXTERN_GLOBAL:
- wasm_globaltype_delete(wasm_externtype_as_globaltype(extern_type));
- break;
- case WASM_EXTERN_MEMORY:
- wasm_memorytype_delete(wasm_externtype_as_memorytype(extern_type));
- break;
- case WASM_EXTERN_TABLE:
- wasm_tabletype_delete(wasm_externtype_as_tabletype(extern_type));
- break;
- default:
- LOG_WARNING("%s meets unsupported type", __FUNCTION__,
- extern_type);
- break;
- }
- }
- own wasm_importtype_t *
- wasm_importtype_new(own wasm_byte_vec_t *module_name,
- own wasm_byte_vec_t *field_name,
- own wasm_externtype_t *extern_type)
- {
- wasm_importtype_t *import_type = NULL;
- if (!(import_type = malloc_internal(sizeof(wasm_importtype_t)))) {
- return NULL;
- }
- /* take ownership */
- if (!(import_type->module_name =
- malloc_internal(sizeof(wasm_byte_vec_t)))) {
- goto failed;
- }
- bh_memcpy_s(import_type->module_name, sizeof(wasm_byte_vec_t), module_name,
- sizeof(wasm_byte_vec_t));
- if (!(import_type->name = malloc_internal(sizeof(wasm_byte_vec_t)))) {
- goto failed;
- }
- bh_memcpy_s(import_type->name, sizeof(wasm_byte_vec_t), field_name,
- sizeof(wasm_byte_vec_t));
- import_type->extern_type = extern_type;
- return import_type;
- failed:
- wasm_importtype_delete(import_type);
- return NULL;
- }
- void
- wasm_importtype_delete(own wasm_importtype_t *import_type)
- {
- if (!import_type) {
- return;
- }
- DEINIT_VEC(import_type->module_name, wasm_byte_vec_delete);
- DEINIT_VEC(import_type->name, wasm_byte_vec_delete);
- wasm_externtype_delete(import_type->extern_type);
- wasm_runtime_free(import_type);
- }
- own wasm_importtype_t *
- wasm_importtype_copy(const wasm_importtype_t *src)
- {
- wasm_byte_vec_t module_name = { 0 }, name = { 0 };
- wasm_externtype_t *extern_type = NULL;
- wasm_importtype_t *import_type = NULL;
- if (!src) {
- return NULL;
- }
- wasm_byte_vec_copy(&module_name, src->module_name);
- if (src->module_name->size && !module_name.data) {
- goto failed;
- }
- wasm_byte_vec_copy(&name, src->name);
- if (src->name->size && !name.data) {
- goto failed;
- }
- if (!(extern_type = wasm_externtype_copy(src->extern_type))) {
- goto failed;
- }
- if (!(import_type =
- wasm_importtype_new(&module_name, &name, extern_type))) {
- goto failed;
- }
- return import_type;
- failed:
- wasm_byte_vec_delete(&module_name);
- wasm_byte_vec_delete(&name);
- wasm_externtype_delete(extern_type);
- wasm_importtype_delete(import_type);
- return NULL;
- }
- const wasm_byte_vec_t *
- wasm_importtype_module(const wasm_importtype_t *import_type)
- {
- if (!import_type) {
- return NULL;
- }
- return import_type->module_name;
- }
- const wasm_byte_vec_t *
- wasm_importtype_name(const wasm_importtype_t *import_type)
- {
- if (!import_type) {
- return NULL;
- }
- return import_type->name;
- }
- const wasm_externtype_t *
- wasm_importtype_type(const wasm_importtype_t *import_type)
- {
- if (!import_type) {
- return NULL;
- }
- return import_type->extern_type;
- }
- own wasm_exporttype_t *
- wasm_exporttype_new(own wasm_byte_vec_t *name,
- own wasm_externtype_t *extern_type)
- {
- wasm_exporttype_t *export_type = NULL;
- if (!(export_type = malloc_internal(sizeof(wasm_exporttype_t)))) {
- return NULL;
- }
- if (!(export_type->name = malloc_internal(sizeof(wasm_byte_vec_t)))) {
- wasm_exporttype_delete(export_type);
- return NULL;
- }
- bh_memcpy_s(export_type->name, sizeof(wasm_byte_vec_t), name,
- sizeof(wasm_byte_vec_t));
- export_type->extern_type = extern_type;
- return export_type;
- }
- wasm_exporttype_t *
- wasm_exporttype_copy(const wasm_exporttype_t *src)
- {
- wasm_exporttype_t *export_type;
- wasm_byte_vec_t name = { 0 };
- wasm_externtype_t *extern_type = NULL;
- if (!src) {
- return NULL;
- }
- wasm_byte_vec_copy(&name, src->name);
- if (src->name->size && !name.data) {
- goto failed;
- }
- if (!(extern_type = wasm_externtype_copy(src->extern_type))) {
- goto failed;
- }
- if (!(export_type = wasm_exporttype_new(&name, extern_type))) {
- goto failed;
- }
- return export_type;
- failed:
- wasm_byte_vec_delete(&name);
- wasm_externtype_delete(extern_type);
- return NULL;
- }
- void
- wasm_exporttype_delete(wasm_exporttype_t *export_type)
- {
- if (!export_type) {
- return;
- }
- DEINIT_VEC(export_type->name, wasm_byte_vec_delete);
- wasm_externtype_delete(export_type->extern_type);
- wasm_runtime_free(export_type);
- }
- const wasm_byte_vec_t *
- wasm_exporttype_name(const wasm_exporttype_t *export_type)
- {
- if (!export_type) {
- return NULL;
- }
- return export_type->name;
- }
- const wasm_externtype_t *
- wasm_exporttype_type(const wasm_exporttype_t *export_type)
- {
- if (!export_type) {
- return NULL;
- }
- return export_type->extern_type;
- }
- /* Runtime Objects */
- void
- wasm_val_delete(wasm_val_t *v)
- {
- if (v) {
- wasm_runtime_free(v);
- }
- }
- void
- wasm_val_copy(wasm_val_t *out, const wasm_val_t *src)
- {
- if (!out || !src) {
- return;
- }
- bh_memcpy_s(out, sizeof(wasm_val_t), src, sizeof(wasm_val_t));
- }
- bool
- rt_val_to_wasm_val(const uint8 *data, uint8 val_type_rt, wasm_val_t *out)
- {
- bool ret = true;
- switch (val_type_rt) {
- case VALUE_TYPE_I32:
- out->kind = WASM_I32;
- out->of.i32 = *((int32 *)data);
- break;
- case VALUE_TYPE_F32:
- out->kind = WASM_F32;
- out->of.f32 = *((float32 *)data);
- break;
- case VALUE_TYPE_I64:
- out->kind = WASM_I64;
- out->of.i64 = *((int64 *)data);
- break;
- case VALUE_TYPE_F64:
- out->kind = WASM_F64;
- out->of.f64 = *((float64 *)data);
- break;
- #if WASM_ENABLE_REF_TYPES != 0
- case VALUE_TYPE_EXTERNREF:
- out->kind = WASM_ANYREF;
- if (NULL_REF == *(uint32 *)data) {
- out->of.ref = NULL;
- }
- else {
- ret = wasm_externref_ref2obj(*(uint32 *)data,
- (void **)&out->of.ref);
- }
- break;
- #endif
- default:
- LOG_WARNING("unexpected value type %d", val_type_rt);
- ret = false;
- }
- return ret;
- }
- bool
- wasm_val_to_rt_val(WASMModuleInstanceCommon *inst_comm_rt,
- uint8 val_type_rt,
- const wasm_val_t *v,
- uint8 *data)
- {
- bool ret = true;
- switch (val_type_rt) {
- case VALUE_TYPE_I32:
- bh_assert(WASM_I32 == v->kind);
- *((int32 *)data) = v->of.i32;
- break;
- case VALUE_TYPE_F32:
- bh_assert(WASM_F32 == v->kind);
- *((float32 *)data) = v->of.f32;
- break;
- case VALUE_TYPE_I64:
- bh_assert(WASM_I64 == v->kind);
- *((int64 *)data) = v->of.i64;
- break;
- case VALUE_TYPE_F64:
- bh_assert(WASM_F64 == v->kind);
- *((float64 *)data) = v->of.f64;
- break;
- #if WASM_ENABLE_REF_TYPES != 0
- case VALUE_TYPE_EXTERNREF:
- bh_assert(WASM_ANYREF == v->kind);
- ret =
- wasm_externref_obj2ref(inst_comm_rt, v->of.ref, (uint32 *)data);
- break;
- #endif
- default:
- LOG_WARNING("unexpected value type %d", val_type_rt);
- ret = false;
- break;
- }
- return ret;
- }
- wasm_ref_t *
- wasm_ref_new_internal(wasm_store_t *store,
- enum wasm_reference_kind kind,
- uint32 ref_idx_rt,
- WASMModuleInstanceCommon *inst_comm_rt)
- {
- wasm_ref_t *ref;
- if (!store) {
- return NULL;
- }
- if (!(ref = malloc_internal(sizeof(wasm_ref_t)))) {
- return NULL;
- }
- ref->store = store;
- ref->kind = kind;
- ref->ref_idx_rt = ref_idx_rt;
- ref->inst_comm_rt = inst_comm_rt;
- /* workaround */
- if (WASM_REF_foreign == kind) {
- wasm_foreign_t *foreign;
- if (!(bh_vector_get(ref->store->foreigns, ref->ref_idx_rt, &foreign))
- || !foreign) {
- wasm_runtime_free(ref);
- return NULL;
- }
- foreign->ref_cnt++;
- }
- /* others doesn't include ref counters */
- return ref;
- }
- own wasm_ref_t *
- wasm_ref_copy(const wasm_ref_t *src)
- {
- if (!src)
- return NULL;
- /* host_info are different in wasm_ref_t(s) */
- return wasm_ref_new_internal(src->store, src->kind, src->ref_idx_rt,
- src->inst_comm_rt);
- }
- #define DELETE_HOST_INFO(obj) \
- if (obj->host_info.info) { \
- if (obj->host_info.finalizer) { \
- obj->host_info.finalizer(obj->host_info.info); \
- } \
- }
- void
- wasm_ref_delete(own wasm_ref_t *ref)
- {
- if (!ref)
- return;
- DELETE_HOST_INFO(ref);
- if (WASM_REF_foreign == ref->kind) {
- wasm_foreign_t *foreign = NULL;
- if (bh_vector_get(ref->store->foreigns, ref->ref_idx_rt, &foreign)
- && foreign) {
- wasm_foreign_delete(foreign);
- }
- }
- wasm_runtime_free(ref);
- }
- #define WASM_DEFINE_REF_BASE(name) \
- bool wasm_##name##_same(const wasm_##name##_t *o1, \
- const wasm_##name##_t *o2) \
- { \
- return (!o1 && !o2) ? true \
- : (!o1 || !o2) ? false \
- : (o1->kind != o2->kind) \
- ? false \
- : o1->name##_idx_rt == o2->name##_idx_rt; \
- } \
- \
- void *wasm_##name##_get_host_info(const wasm_##name##_t *obj) \
- { \
- return obj ? obj->host_info.info : NULL; \
- } \
- \
- void wasm_##name##_set_host_info(wasm_##name##_t *obj, void *host_info) \
- { \
- if (obj) { \
- obj->host_info.info = host_info; \
- obj->host_info.finalizer = NULL; \
- } \
- } \
- \
- void wasm_##name##_set_host_info_with_finalizer( \
- wasm_##name##_t *obj, void *host_info, void (*finalizer)(void *)) \
- { \
- if (obj) { \
- obj->host_info.info = host_info; \
- obj->host_info.finalizer = finalizer; \
- } \
- }
- #define WASM_DEFINE_REF(name) \
- WASM_DEFINE_REF_BASE(name) \
- \
- wasm_ref_t *wasm_##name##_as_ref(wasm_##name##_t *name) \
- { \
- if (!name) { \
- return NULL; \
- } \
- \
- return wasm_ref_new_internal(name->store, WASM_REF_##name, \
- name->name##_idx_rt, \
- name->inst_comm_rt); \
- } \
- \
- const wasm_ref_t *wasm_##name##_as_ref_const(const wasm_##name##_t *name) \
- { \
- if (!name) { \
- return NULL; \
- } \
- \
- return wasm_ref_new_internal(name->store, WASM_REF_##name, \
- name->name##_idx_rt, \
- name->inst_comm_rt); \
- } \
- \
- wasm_##name##_t *wasm_ref_as_##name(wasm_ref_t *ref) \
- { \
- if (!ref || WASM_REF_##name != ref->kind) { \
- return NULL; \
- } \
- \
- return wasm_##name##_new_internal(ref->store, ref->ref_idx_rt, \
- ref->inst_comm_rt); \
- } \
- \
- const wasm_##name##_t *wasm_ref_as_##name##_const(const wasm_ref_t *ref) \
- { \
- if (!ref || WASM_REF_##name != ref->kind) { \
- return NULL; \
- } \
- \
- return wasm_##name##_new_internal(ref->store, ref->ref_idx_rt, \
- ref->inst_comm_rt); \
- }
- WASM_DEFINE_REF_BASE(ref)
- WASM_DEFINE_REF(foreign)
- WASM_DEFINE_REF(func)
- WASM_DEFINE_REF(global)
- WASM_DEFINE_REF(memory)
- WASM_DEFINE_REF(table)
- static wasm_frame_t *
- wasm_frame_new(wasm_instance_t *instance,
- size_t module_offset,
- uint32 func_index,
- size_t func_offset)
- {
- wasm_frame_t *frame;
- if (!(frame = malloc_internal(sizeof(wasm_frame_t)))) {
- return NULL;
- }
- frame->instance = instance;
- frame->module_offset = (uint32)module_offset;
- frame->func_index = func_index;
- frame->func_offset = (uint32)func_offset;
- return frame;
- }
- own wasm_frame_t *
- wasm_frame_copy(const wasm_frame_t *src)
- {
- if (!src) {
- return NULL;
- }
- return wasm_frame_new(src->instance, src->module_offset, src->func_index,
- src->func_offset);
- }
- void
- wasm_frame_delete(own wasm_frame_t *frame)
- {
- if (frame) {
- wasm_runtime_free(frame);
- }
- }
- struct wasm_instance_t *
- wasm_frame_instance(const wasm_frame_t *frame)
- {
- return frame ? frame->instance : NULL;
- }
- size_t
- wasm_frame_module_offset(const wasm_frame_t *frame)
- {
- return frame ? frame->module_offset : 0;
- }
- uint32_t
- wasm_frame_func_index(const wasm_frame_t *frame)
- {
- return frame ? frame->func_index : 0;
- }
- size_t
- wasm_frame_func_offset(const wasm_frame_t *frame)
- {
- return frame ? frame->func_offset : 0;
- }
- static wasm_trap_t *
- wasm_trap_new_internal(WASMModuleInstanceCommon *inst_comm_rt,
- const char *default_error_info)
- {
- wasm_trap_t *trap;
- const char *error_info = NULL;
- wasm_instance_vec_t *instances;
- wasm_instance_t *frame_instance = NULL;
- uint32 i;
- if (!singleton_engine || !singleton_engine->stores
- || !singleton_engine->stores->num_elems) {
- return NULL;
- }
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- if (!(error_info =
- wasm_get_exception((WASMModuleInstance *)inst_comm_rt))) {
- return NULL;
- }
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- if (!(error_info =
- aot_get_exception((AOTModuleInstance *)inst_comm_rt))) {
- return NULL;
- }
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (!error_info && !(error_info = default_error_info)) {
- return NULL;
- }
- if (!(trap = malloc_internal(sizeof(wasm_trap_t)))) {
- return NULL;
- }
- if (!(trap->message = malloc_internal(sizeof(wasm_byte_vec_t)))) {
- goto failed;
- }
- wasm_name_new_from_string_nt(trap->message, error_info);
- if (strlen(error_info) && !trap->message->data) {
- goto failed;
- }
- #if WASM_ENABLE_DUMP_CALL_STACK != 0
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- trap->frames = ((WASMModuleInstance *)inst_comm_rt)->frames;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- trap->frames = ((AOTModuleInstance *)inst_comm_rt)->frames.ptr;
- }
- #endif
- #endif /* WASM_ENABLE_DUMP_CALL_STACK != 0 */
- /* allow a NULL frames list */
- if (!trap->frames) {
- return trap;
- }
- if (!(instances = singleton_engine->stores->data[0]->instances)) {
- goto failed;
- }
- for (i = 0; i < instances->num_elems; i++) {
- if (instances->data[i]->inst_comm_rt == inst_comm_rt) {
- frame_instance = instances->data[i];
- break;
- }
- }
- for (i = 0; i < trap->frames->num_elems; i++) {
- (((wasm_frame_t *)trap->frames->data) + i)->instance = frame_instance;
- }
- return trap;
- failed:
- wasm_trap_delete(trap);
- return NULL;
- }
- wasm_trap_t *
- wasm_trap_new(wasm_store_t *store, const wasm_message_t *message)
- {
- wasm_trap_t *trap;
- if (!store || !message) {
- return NULL;
- }
- if (!(trap = malloc_internal(sizeof(wasm_trap_t)))) {
- return NULL;
- }
- INIT_VEC(trap->message, wasm_byte_vec_new, message->size, message->data);
- return trap;
- failed:
- wasm_trap_delete(trap);
- return NULL;
- }
- void
- wasm_trap_delete(wasm_trap_t *trap)
- {
- if (!trap) {
- return;
- }
- DEINIT_VEC(trap->message, wasm_byte_vec_delete);
- /* reuse frames of WASMModuleInstance, do not free it here */
- wasm_runtime_free(trap);
- }
- void
- wasm_trap_message(const wasm_trap_t *trap, own wasm_message_t *out)
- {
- if (!trap || !out) {
- return;
- }
- wasm_byte_vec_copy(out, trap->message);
- }
- own wasm_frame_t *
- wasm_trap_origin(const wasm_trap_t *trap)
- {
- wasm_frame_t *latest_frame;
- if (!trap || !trap->frames || !trap->frames->num_elems) {
- return NULL;
- }
- /* first frame is the latest frame */
- latest_frame = (wasm_frame_t *)trap->frames->data;
- return wasm_frame_copy(latest_frame);
- }
- void
- wasm_trap_trace(const wasm_trap_t *trap, own wasm_frame_vec_t *out)
- {
- uint32 i;
- if (!trap || !out) {
- return;
- }
- if (!trap->frames || !trap->frames->num_elems) {
- wasm_frame_vec_new_empty(out);
- return;
- }
- wasm_frame_vec_new_uninitialized(out, trap->frames->num_elems);
- if (out->size == 0 || !out->data) {
- return;
- }
- for (i = 0; i < trap->frames->num_elems; i++) {
- wasm_frame_t *frame;
- frame = ((wasm_frame_t *)trap->frames->data) + i;
- if (!(out->data[i] =
- wasm_frame_new(frame->instance, frame->module_offset,
- frame->func_index, frame->func_offset))) {
- goto failed;
- }
- out->num_elems++;
- }
- return;
- failed:
- for (i = 0; i < out->num_elems; i++) {
- if (out->data[i]) {
- wasm_runtime_free(out->data[i]);
- }
- }
- wasm_runtime_free(out->data);
- }
- wasm_foreign_t *
- wasm_foreign_new_internal(wasm_store_t *store,
- uint32 foreign_idx_rt,
- WASMModuleInstanceCommon *inst_comm_rt)
- {
- wasm_foreign_t *foreign = NULL;
- if (!store || !store->foreigns)
- return NULL;
- if (!(bh_vector_get(store->foreigns, foreign_idx_rt, &foreign))
- || !foreign) {
- return NULL;
- }
- foreign->ref_cnt++;
- return foreign;
- }
- own wasm_foreign_t *
- wasm_foreign_new(wasm_store_t *store)
- {
- wasm_foreign_t *foreign;
- if (!store)
- return NULL;
- if (!(foreign = malloc_internal(sizeof(wasm_foreign_t))))
- return NULL;
- foreign->store = store;
- foreign->kind = WASM_REF_foreign;
- foreign->foreign_idx_rt = (uint32)bh_vector_size(store->foreigns);
- if (!(bh_vector_append(store->foreigns, &foreign))) {
- wasm_runtime_free(foreign);
- return NULL;
- }
- return foreign;
- }
- void
- wasm_foreign_delete(wasm_foreign_t *foreign)
- {
- if (!foreign)
- return;
- if (foreign->ref_cnt < 1) {
- return;
- }
- foreign->ref_cnt--;
- if (!foreign->ref_cnt) {
- wasm_runtime_free(foreign);
- }
- }
- struct wasm_module_ex_t {
- struct WASMModuleCommon *module_comm_rt;
- wasm_byte_vec_t *binary;
- };
- static inline wasm_module_t *
- module_ext_to_module(wasm_module_ex_t *module_ex)
- {
- return (wasm_module_t *)module_ex;
- }
- static inline wasm_module_ex_t *
- module_to_module_ext(wasm_module_t *module)
- {
- return (wasm_module_ex_t *)module;
- }
- #if WASM_ENABLE_INTERP != 0
- #define MODULE_INTERP(module_comm) ((WASMModule *)(*module_comm))
- #endif
- #if WASM_ENABLE_AOT != 0
- #define MODULE_AOT(module_comm) ((AOTModule *)(*module_comm))
- #endif
- wasm_module_t *
- wasm_module_new(wasm_store_t *store, const wasm_byte_vec_t *binary)
- {
- char error_buf[128] = { 0 };
- wasm_module_ex_t *module_ex = NULL;
- PackageType pkg_type;
- #if WASM_ENABLE_AOT != 0 && WASM_ENABLE_JIT != 0
- uint8 *aot_file_buf = NULL;
- uint32 aot_file_size;
- #endif
- bh_assert(singleton_engine);
- if (!store || !binary || binary->size > UINT32_MAX) {
- LOG_ERROR("%s failed", __FUNCTION__);
- return NULL;
- }
- pkg_type = get_package_type((uint8 *)binary->data, (uint32)binary->size);
- /* whether the combination of compilation flags are compatable with the package type */
- {
- bool result = false;
- #if WASM_ENABLE_INTERP != 0
- result = (pkg_type == Wasm_Module_Bytecode);
- #endif
- #if WASM_ENABLE_AOT != 0
- result = result || (pkg_type == Wasm_Module_AoT);
- #endif
- if (!result) {
- LOG_VERBOSE("current building isn't compatiable with the module,"
- "may need recompile");
- }
- }
- module_ex = malloc_internal(sizeof(wasm_module_ex_t));
- if (!module_ex) {
- goto failed;
- }
- INIT_VEC(module_ex->binary, wasm_byte_vec_new, binary->size, binary->data);
- #if WASM_ENABLE_AOT != 0 && WASM_ENABLE_JIT != 0
- if (Wasm_Module_Bytecode == pkg_type) {
- if (!(aot_file_buf = aot_compile_wasm_file(
- (uint8 *)module_ex->binary->data,
- (uint32)module_ex->binary->size, 3, 3, error_buf,
- (uint32)sizeof(error_buf), &aot_file_size))) {
- LOG_ERROR(error_buf);
- goto failed;
- }
- if (!(module_ex->module_comm_rt =
- wasm_runtime_load(aot_file_buf, aot_file_size, error_buf,
- (uint32)sizeof(error_buf)))) {
- LOG_ERROR(error_buf);
- goto failed;
- }
- }
- else
- #endif
- {
- module_ex->module_comm_rt = wasm_runtime_load(
- (uint8 *)module_ex->binary->data, (uint32)module_ex->binary->size,
- error_buf, (uint32)sizeof(error_buf));
- if (!(module_ex->module_comm_rt)) {
- LOG_ERROR(error_buf);
- goto failed;
- }
- }
- /* add it to a watching list in store */
- if (!bh_vector_append((Vector *)store->modules, &module_ex)) {
- goto failed;
- }
- return module_ext_to_module(module_ex);
- failed:
- LOG_ERROR("%s failed", __FUNCTION__);
- wasm_module_delete_internal(module_ext_to_module(module_ex));
- return NULL;
- }
- bool
- wasm_module_validate(wasm_store_t *store, const wasm_byte_vec_t *binary)
- {
- struct WASMModuleCommon *module_rt;
- char error_buf[128] = { 0 };
- bh_assert(singleton_engine);
- if (!store || !binary || binary->size > UINT32_MAX) {
- LOG_ERROR("%s failed", __FUNCTION__);
- return false;
- }
- if ((module_rt = wasm_runtime_load(
- (uint8 *)binary->data, (uint32)binary->size, error_buf, 128))) {
- wasm_runtime_unload(module_rt);
- return true;
- }
- else {
- LOG_VERBOSE(error_buf);
- return false;
- }
- }
- static void
- wasm_module_delete_internal(wasm_module_t *module)
- {
- wasm_module_ex_t *module_ex;
- if (!module) {
- return;
- }
- module_ex = module_to_module_ext(module);
- DEINIT_VEC(module_ex->binary, wasm_byte_vec_delete);
- if (module_ex->module_comm_rt) {
- wasm_runtime_unload(module_ex->module_comm_rt);
- module_ex->module_comm_rt = NULL;
- }
- wasm_runtime_free(module_ex);
- }
- void
- wasm_module_delete(wasm_module_t *module)
- {
- /* the module will be released when releasing the store */
- }
- void
- wasm_module_imports(const wasm_module_t *module,
- own wasm_importtype_vec_t *out)
- {
- uint32 i, import_func_count = 0, import_memory_count = 0,
- import_global_count = 0, import_table_count = 0,
- import_count = 0;
- wasm_byte_vec_t module_name = { 0 }, name = { 0 };
- wasm_externtype_t *extern_type = NULL;
- wasm_importtype_t *import_type = NULL;
- if (!module || !out) {
- return;
- }
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- import_func_count = MODULE_INTERP(module)->import_function_count;
- import_global_count = MODULE_INTERP(module)->import_global_count;
- import_memory_count = MODULE_INTERP(module)->import_memory_count;
- import_table_count = MODULE_INTERP(module)->import_table_count;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- import_func_count = MODULE_AOT(module)->import_func_count;
- import_global_count = MODULE_AOT(module)->import_global_count;
- import_memory_count = MODULE_AOT(module)->import_memory_count;
- import_table_count = MODULE_AOT(module)->import_table_count;
- }
- #endif
- import_count = import_func_count + import_global_count + import_table_count
- + import_memory_count;
- wasm_importtype_vec_new_uninitialized(out, import_count);
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (!out->data) {
- return;
- }
- for (i = 0; i != import_count; ++i) {
- char *module_name_rt = NULL, *field_name_rt = NULL;
- if (i < import_func_count) {
- wasm_functype_t *type = NULL;
- WASMType *type_rt = NULL;
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- WASMImport *import =
- MODULE_INTERP(module)->import_functions + i;
- module_name_rt = import->u.names.module_name;
- field_name_rt = import->u.names.field_name;
- type_rt = import->u.function.func_type;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- AOTImportFunc *import = MODULE_AOT(module)->import_funcs + i;
- module_name_rt = import->module_name;
- field_name_rt = import->func_name;
- type_rt = import->func_type;
- }
- #endif
- if (!module_name_rt || !field_name_rt || !type_rt) {
- continue;
- }
- wasm_name_new_from_string(&module_name, module_name_rt);
- if (strlen(module_name_rt) && !module_name.data) {
- goto failed;
- }
- wasm_name_new_from_string(&name, field_name_rt);
- if (strlen(field_name_rt) && !name.data) {
- goto failed;
- }
- if (!(type = wasm_functype_new_internal(type_rt))) {
- goto failed;
- }
- extern_type = wasm_functype_as_externtype(type);
- }
- else if (i < import_func_count + import_global_count) {
- wasm_globaltype_t *type = NULL;
- uint8 val_type_rt = 0;
- bool mutability_rt = 0;
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- WASMImport *import = MODULE_INTERP(module)->import_globals
- + (i - import_func_count);
- module_name_rt = import->u.names.module_name;
- field_name_rt = import->u.names.field_name;
- val_type_rt = import->u.global.type;
- mutability_rt = import->u.global.is_mutable;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- AOTImportGlobal *import =
- MODULE_AOT(module)->import_globals + (i - import_func_count);
- module_name_rt = import->module_name;
- field_name_rt = import->global_name;
- val_type_rt = import->type;
- mutability_rt = import->is_mutable;
- }
- #endif
- if (!module_name_rt || !field_name_rt) {
- continue;
- }
- if (!(type = wasm_globaltype_new_internal(val_type_rt,
- mutability_rt))) {
- goto failed;
- }
- extern_type = wasm_globaltype_as_externtype(type);
- }
- else if (i < import_func_count + import_global_count
- + import_memory_count) {
- wasm_memorytype_t *type = NULL;
- uint32 min_page = 0, max_page = 0;
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- WASMImport *import =
- MODULE_INTERP(module)->import_memories
- + (i - import_func_count - import_global_count);
- module_name_rt = import->u.names.module_name;
- field_name_rt = import->u.names.field_name;
- min_page = import->u.memory.init_page_count;
- max_page = import->u.memory.max_page_count;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- AOTImportMemory *import =
- MODULE_AOT(module)->import_memories
- + (i - import_func_count - import_global_count);
- module_name_rt = import->module_name;
- field_name_rt = import->memory_name;
- min_page = import->mem_init_page_count;
- max_page = import->mem_max_page_count;
- }
- #endif
- if (!module_name_rt || !field_name_rt) {
- continue;
- }
- wasm_name_new_from_string(&module_name, module_name_rt);
- if (strlen(module_name_rt) && !module_name.data) {
- goto failed;
- }
- wasm_name_new_from_string(&name, field_name_rt);
- if (strlen(field_name_rt) && !name.data) {
- goto failed;
- }
- if (!(type = wasm_memorytype_new_internal(min_page, max_page))) {
- goto failed;
- }
- extern_type = wasm_memorytype_as_externtype(type);
- }
- else {
- wasm_tabletype_t *type = NULL;
- uint8 elem_type_rt = 0;
- uint32 min_size = 0, max_size = 0;
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- WASMImport *import =
- MODULE_INTERP(module)->import_tables
- + (i - import_func_count - import_global_count
- - import_memory_count);
- module_name_rt = import->u.names.module_name;
- field_name_rt = import->u.names.field_name;
- elem_type_rt = import->u.table.elem_type;
- min_size = import->u.table.init_size;
- max_size = import->u.table.max_size;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- AOTImportTable *import =
- MODULE_AOT(module)->import_tables
- + (i - import_func_count - import_global_count
- - import_memory_count);
- module_name_rt = import->module_name;
- field_name_rt = import->table_name;
- elem_type_rt = VALUE_TYPE_FUNCREF;
- min_size = import->table_init_size;
- max_size = import->table_max_size;
- }
- #endif
- if (!module_name_rt || !field_name_rt) {
- continue;
- }
- if (!(type = wasm_tabletype_new_internal(elem_type_rt, min_size,
- max_size))) {
- goto failed;
- }
- extern_type = wasm_tabletype_as_externtype(type);
- }
- if (!extern_type) {
- continue;
- }
- if (!(import_type =
- wasm_importtype_new(&module_name, &name, extern_type))) {
- goto failed;
- }
- if (!bh_vector_append((Vector *)out, &import_type)) {
- goto failed_importtype_new;
- }
- }
- return;
- failed:
- wasm_byte_vec_delete(&module_name);
- wasm_byte_vec_delete(&name);
- wasm_externtype_delete(extern_type);
- failed_importtype_new:
- wasm_importtype_delete(import_type);
- wasm_importtype_vec_delete(out);
- }
- void
- wasm_module_exports(const wasm_module_t *module, wasm_exporttype_vec_t *out)
- {
- uint32 i, export_count = 0;
- wasm_byte_vec_t name = { 0 };
- wasm_externtype_t *extern_type = NULL;
- wasm_exporttype_t *export_type = NULL;
- if (!module || !out) {
- return;
- }
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- export_count = MODULE_INTERP(module)->export_count;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- export_count = MODULE_AOT(module)->export_count;
- }
- #endif
- wasm_exporttype_vec_new_uninitialized(out, export_count);
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (!out->data) {
- return;
- }
- for (i = 0; i != export_count; i++) {
- WASMExport *export = NULL;
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- export = MODULE_INTERP(module)->exports + i;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- export = MODULE_AOT(module)->exports + i;
- }
- #endif
- if (!export) {
- continue;
- }
- /* byte* -> wasm_byte_vec_t */
- wasm_name_new_from_string(&name, export->name);
- if (strlen(export->name) && !name.data) {
- goto failed;
- }
- /* WASMExport -> (WASMType, (uint8, bool)) -> (wasm_functype_t, wasm_globaltype_t) -> wasm_externtype_t*/
- switch (export->kind) {
- case EXPORT_KIND_FUNC:
- {
- wasm_functype_t *type = NULL;
- WASMType *type_rt;
- if (!wasm_runtime_get_export_func_type(*module, export,
- &type_rt)) {
- goto failed;
- }
- if (!(type = wasm_functype_new_internal(type_rt))) {
- goto failed;
- }
- extern_type = wasm_functype_as_externtype(type);
- break;
- }
- case EXPORT_KIND_GLOBAL:
- {
- wasm_globaltype_t *type = NULL;
- uint8 val_type_rt = 0;
- bool mutability_rt = 0;
- if (!wasm_runtime_get_export_global_type(
- *module, export, &val_type_rt, &mutability_rt)) {
- goto failed;
- }
- if (!(type = wasm_globaltype_new_internal(val_type_rt,
- mutability_rt))) {
- goto failed;
- }
- extern_type = wasm_globaltype_as_externtype(type);
- break;
- }
- case EXPORT_KIND_MEMORY:
- {
- wasm_memorytype_t *type = NULL;
- uint32 min_page = 0, max_page = 0;
- if (!wasm_runtime_get_export_memory_type(
- *module, export, &min_page, &max_page)) {
- goto failed;
- }
- if (!(type =
- wasm_memorytype_new_internal(min_page, max_page))) {
- goto failed;
- }
- extern_type = wasm_memorytype_as_externtype(type);
- break;
- }
- case EXPORT_KIND_TABLE:
- {
- wasm_tabletype_t *type = NULL;
- uint8 elem_type_rt = 0;
- uint32 min_size = 0, max_size = 0;
- if (!wasm_runtime_get_export_table_type(
- *module, export, &elem_type_rt, &min_size, &max_size)) {
- goto failed;
- }
- if (!(type = wasm_tabletype_new_internal(
- elem_type_rt, min_size, max_size))) {
- goto failed;
- }
- extern_type = wasm_tabletype_as_externtype(type);
- break;
- }
- default:
- {
- LOG_WARNING("%s meets unsupported type", __FUNCTION__,
- export->kind);
- break;
- }
- }
- if (!(export_type = wasm_exporttype_new(&name, extern_type))) {
- goto failed;
- }
- if (!(bh_vector_append((Vector *)out, &export_type))) {
- goto failed_exporttype_new;
- }
- }
- return;
- failed:
- wasm_byte_vec_delete(&name);
- wasm_externtype_delete(extern_type);
- failed_exporttype_new:
- wasm_exporttype_delete(export_type);
- wasm_exporttype_vec_delete(out);
- }
- static wasm_func_t *
- wasm_func_new_basic(wasm_store_t *store,
- const wasm_functype_t *type,
- wasm_func_callback_t func_callback)
- {
- wasm_func_t *func = NULL;
- if (!(func = malloc_internal(sizeof(wasm_func_t)))) {
- goto failed;
- }
- func->store = store;
- func->kind = WASM_EXTERN_FUNC;
- func->func_idx_rt = (uint16)-1;
- func->with_env = false;
- func->u.cb = func_callback;
- if (!(func->type = wasm_functype_copy(type))) {
- goto failed;
- }
- RETURN_OBJ(func, wasm_func_delete)
- }
- static wasm_func_t *
- wasm_func_new_with_env_basic(wasm_store_t *store,
- const wasm_functype_t *type,
- wasm_func_callback_with_env_t callback,
- void *env,
- void (*finalizer)(void *))
- {
- wasm_func_t *func = NULL;
- if (!(func = malloc_internal(sizeof(wasm_func_t)))) {
- goto failed;
- }
- func->store = store;
- func->kind = WASM_EXTERN_FUNC;
- func->func_idx_rt = (uint16)-1;
- func->with_env = true;
- func->u.cb_env.cb = callback;
- func->u.cb_env.env = env;
- func->u.cb_env.finalizer = finalizer;
- if (!(func->type = wasm_functype_copy(type))) {
- goto failed;
- }
- RETURN_OBJ(func, wasm_func_delete)
- }
- wasm_func_t *
- wasm_func_new(wasm_store_t *store,
- const wasm_functype_t *type,
- wasm_func_callback_t callback)
- {
- bh_assert(singleton_engine);
- return wasm_func_new_basic(store, type, callback);
- }
- wasm_func_t *
- wasm_func_new_with_env(wasm_store_t *store,
- const wasm_functype_t *type,
- wasm_func_callback_with_env_t callback,
- void *env,
- void (*finalizer)(void *))
- {
- bh_assert(singleton_engine);
- return wasm_func_new_with_env_basic(store, type, callback, env, finalizer);
- }
- wasm_func_t *
- wasm_func_new_internal(wasm_store_t *store,
- uint16 func_idx_rt,
- WASMModuleInstanceCommon *inst_comm_rt)
- {
- wasm_func_t *func = NULL;
- WASMType *type_rt = NULL;
- bh_assert(singleton_engine);
- if (!inst_comm_rt) {
- return NULL;
- }
- func = malloc_internal(sizeof(wasm_func_t));
- if (!func) {
- goto failed;
- }
- func->kind = WASM_EXTERN_FUNC;
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- bh_assert(func_idx_rt
- < ((WASMModuleInstance *)inst_comm_rt)->function_count);
- WASMFunctionInstance *func_interp =
- ((WASMModuleInstance *)inst_comm_rt)->functions + func_idx_rt;
- type_rt = func_interp->is_import_func
- ? func_interp->u.func_import->func_type
- : func_interp->u.func->func_type;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- /* use same index to trace the function type in AOTFuncType **func_types */
- AOTModule *module_aot =
- ((AOTModuleInstance *)inst_comm_rt)->aot_module.ptr;
- if (func_idx_rt < module_aot->import_func_count) {
- type_rt = (module_aot->import_funcs + func_idx_rt)->func_type;
- }
- else {
- type_rt =
- module_aot
- ->func_types[module_aot->func_type_indexes
- [func_idx_rt - module_aot->import_func_count]];
- }
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (!type_rt) {
- goto failed;
- }
- func->type = wasm_functype_new_internal(type_rt);
- if (!func->type) {
- goto failed;
- }
- /* will add name information when processing "exports" */
- func->store = store;
- func->module_name = NULL;
- func->name = NULL;
- func->func_idx_rt = func_idx_rt;
- func->inst_comm_rt = inst_comm_rt;
- return func;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- wasm_func_delete(func);
- return NULL;
- }
- void
- wasm_func_delete(wasm_func_t *func)
- {
- if (!func) {
- return;
- }
- if (func->type) {
- wasm_functype_delete(func->type);
- func->type = NULL;
- }
- if (func->with_env) {
- if (func->u.cb_env.finalizer) {
- func->u.cb_env.finalizer(func->u.cb_env.env);
- func->u.cb_env.finalizer = NULL;
- func->u.cb_env.env = NULL;
- }
- }
- DELETE_HOST_INFO(func)
- wasm_runtime_free(func);
- }
- own wasm_func_t *
- wasm_func_copy(const wasm_func_t *func)
- {
- wasm_func_t *cloned = NULL;
- if (!func) {
- return NULL;
- }
- if (!(cloned = func->with_env ? wasm_func_new_with_env_basic(
- func->store, func->type, func->u.cb_env.cb,
- func->u.cb_env.env, func->u.cb_env.finalizer)
- : wasm_func_new_basic(
- func->store, func->type, func->u.cb))) {
- goto failed;
- }
- cloned->func_idx_rt = func->func_idx_rt;
- cloned->inst_comm_rt = func->inst_comm_rt;
- RETURN_OBJ(cloned, wasm_func_delete)
- }
- own wasm_functype_t *
- wasm_func_type(const wasm_func_t *func)
- {
- if (!func) {
- return NULL;
- }
- return wasm_functype_copy(func->type);
- }
- static uint32
- params_to_argv(WASMModuleInstanceCommon *inst_comm_rt,
- const wasm_val_t *params,
- const wasm_valtype_vec_t *param_defs,
- size_t param_arity,
- uint32 *out)
- {
- size_t i = 0;
- uint32 argc = 0;
- const wasm_val_t *param = NULL;
- if (!param_arity) {
- return 0;
- }
- bh_assert(params && param_defs && out);
- bh_assert(param_defs->num_elems == param_arity);
- for (i = 0; out && i < param_arity; ++i) {
- param = params + i;
- bh_assert((*(param_defs->data + i))->kind == param->kind);
- switch (param->kind) {
- case WASM_I32:
- *(int32 *)out = param->of.i32;
- out += 1;
- argc += 1;
- break;
- case WASM_I64:
- *(int64 *)out = param->of.i64;
- out += 2;
- argc += 2;
- break;
- case WASM_F32:
- *(float32 *)out = param->of.f32;
- out += 1;
- argc += 1;
- break;
- case WASM_F64:
- *(float64 *)out = param->of.f64;
- out += 2;
- argc += 2;
- break;
- #if WASM_ENABLE_REF_TYPES != 0
- case WASM_ANYREF:
- if (!wasm_externref_obj2ref(inst_comm_rt, param->of.ref,
- out)) {
- goto failed;
- }
- out += 1;
- argc += 1;
- break;
- #endif
- default:
- LOG_WARNING("unexpected parameter val type %d", param->kind);
- goto failed;
- }
- }
- return argc;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- return 0;
- }
- static uint32
- argv_to_results(const uint32 *results,
- const wasm_valtype_vec_t *result_defs,
- size_t result_arity,
- wasm_val_t *out)
- {
- size_t i = 0;
- uint32 argc = 0;
- const uint32 *result = results;
- const wasm_valtype_t *def = NULL;
- if (!result_arity) {
- return 0;
- }
- bh_assert(results && result_defs && out);
- bh_assert(result_arity == result_defs->num_elems);
- for (i = 0; out && i < result_arity; i++) {
- def = *(result_defs->data + i);
- switch (def->kind) {
- case WASM_I32:
- {
- out->kind = WASM_I32;
- out->of.i32 = *(int32 *)result;
- result += 1;
- break;
- }
- case WASM_I64:
- {
- out->kind = WASM_I64;
- out->of.i64 = *(int64 *)result;
- result += 2;
- break;
- }
- case WASM_F32:
- {
- out->kind = WASM_F32;
- out->of.f32 = *(float32 *)result;
- result += 1;
- break;
- }
- case WASM_F64:
- {
- out->kind = WASM_F64;
- out->of.f64 = *(float64 *)result;
- result += 2;
- break;
- }
- #if WASM_ENABLE_REF_TYPES != 0
- case WASM_ANYREF:
- {
- out->kind = WASM_ANYREF;
- if (NULL_REF == *(uint32 *)result) {
- out->of.ref = NULL;
- }
- else {
- if (!wasm_externref_ref2obj(*(uint32 *)result,
- (void **)&out->of.ref)) {
- goto failed;
- }
- }
- result += 1;
- break;
- }
- #endif
- default:
- LOG_WARNING("%s meets unsupported type: %d", __FUNCTION__,
- def->kind);
- goto failed;
- }
- out++;
- argc++;
- }
- return argc;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- return 0;
- }
- wasm_trap_t *
- wasm_func_call(const wasm_func_t *func,
- const wasm_val_t params[],
- wasm_val_t results[])
- {
- /* parameters count as if all are uint32 */
- /* a int64 or float64 parameter means 2 */
- uint32 argc = 0;
- /* a parameter list and a return value list */
- uint32 argv_buf[32], *argv = argv_buf;
- WASMFunctionInstanceCommon *func_comm_rt = NULL;
- WASMExecEnv *exec_env = NULL;
- size_t param_count, result_count, alloc_count;
- bh_assert(func && func->type && func->inst_comm_rt);
- #if WASM_ENABLE_INTERP != 0
- if (func->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- func_comm_rt = ((WASMModuleInstance *)func->inst_comm_rt)->functions
- + func->func_idx_rt;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (func->inst_comm_rt->module_type == Wasm_Module_AoT) {
- if (!(func_comm_rt = func->func_comm_rt)) {
- AOTModuleInstance *inst_aot =
- (AOTModuleInstance *)func->inst_comm_rt;
- AOTModule *module_aot = (AOTModule *)inst_aot->aot_module.ptr;
- uint32 export_i = 0, export_func_j = 0;
- for (; export_i < module_aot->export_count; ++export_i) {
- AOTExport *export = module_aot->exports + export_i;
- if (export->kind == EXPORT_KIND_FUNC) {
- if (export->index == func->func_idx_rt) {
- func_comm_rt =
- (AOTFunctionInstance *)inst_aot->export_funcs.ptr
- + export_func_j;
- ((wasm_func_t *)func)->func_comm_rt = func_comm_rt;
- break;
- }
- export_func_j++;
- }
- }
- }
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (!func_comm_rt) {
- goto failed;
- }
- param_count = wasm_func_param_arity(func);
- result_count = wasm_func_result_arity(func);
- alloc_count = (param_count > result_count) ? param_count : result_count;
- if (alloc_count > (size_t)sizeof(argv_buf) / sizeof(uint64)) {
- if (!(argv = malloc_internal(sizeof(uint64) * alloc_count))) {
- goto failed;
- }
- }
- /* copy parametes */
- if (param_count
- && !(argc = params_to_argv(func->inst_comm_rt, params,
- wasm_functype_params(func->type),
- param_count, argv))) {
- goto failed;
- }
- exec_env = wasm_runtime_get_exec_env_singleton(func->inst_comm_rt);
- if (!exec_env) {
- goto failed;
- }
- wasm_runtime_set_exception(func->inst_comm_rt, NULL);
- if (!wasm_runtime_call_wasm(exec_env, func_comm_rt, argc, argv)) {
- if (wasm_runtime_get_exception(func->inst_comm_rt)) {
- LOG_DEBUG(wasm_runtime_get_exception(func->inst_comm_rt));
- goto failed;
- }
- }
- /* copy results */
- if (result_count) {
- if (!(argc = argv_to_results(argv, wasm_functype_results(func->type),
- result_count, results))) {
- goto failed;
- }
- }
- if (argv != argv_buf)
- wasm_runtime_free(argv);
- return NULL;
- failed:
- if (argv != argv_buf)
- wasm_runtime_free(argv);
- /* trap -> exception -> trap */
- if (wasm_runtime_get_exception(func->inst_comm_rt)) {
- return wasm_trap_new_internal(func->inst_comm_rt, NULL);
- }
- else {
- return wasm_trap_new_internal(func->inst_comm_rt,
- "wasm_func_call failed");
- }
- }
- size_t
- wasm_func_param_arity(const wasm_func_t *func)
- {
- if (!func || !func->type || !func->type->params) {
- return 0;
- }
- return func->type->params->num_elems;
- }
- size_t
- wasm_func_result_arity(const wasm_func_t *func)
- {
- if (!func || !func->type || !func->type->results) {
- return 0;
- }
- return func->type->results->num_elems;
- }
- wasm_global_t *
- wasm_global_new(wasm_store_t *store,
- const wasm_globaltype_t *global_type,
- const wasm_val_t *init)
- {
- wasm_global_t *global = NULL;
- bh_assert(singleton_engine);
- global = malloc_internal(sizeof(wasm_global_t));
- if (!global) {
- goto failed;
- }
- global->store = store;
- global->kind = WASM_EXTERN_GLOBAL;
- global->type = wasm_globaltype_copy(global_type);
- if (!global->type) {
- goto failed;
- }
- global->init = malloc_internal(sizeof(wasm_val_t));
- if (!global->init) {
- goto failed;
- }
- wasm_val_copy(global->init, init);
- /* TODO: how to check if above is failed */
- return global;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- wasm_global_delete(global);
- return NULL;
- }
- /* almost same with wasm_global_new */
- wasm_global_t *
- wasm_global_copy(const wasm_global_t *src)
- {
- wasm_global_t *global = NULL;
- if (!src) {
- return NULL;
- }
- global = malloc_internal(sizeof(wasm_global_t));
- if (!global) {
- goto failed;
- }
- global->kind = WASM_EXTERN_GLOBAL;
- global->type = wasm_globaltype_copy(src->type);
- if (!global->type) {
- goto failed;
- }
- global->init = malloc_internal(sizeof(wasm_val_t));
- if (!global->init) {
- goto failed;
- }
- wasm_val_copy(global->init, src->init);
- global->global_idx_rt = src->global_idx_rt;
- global->inst_comm_rt = src->inst_comm_rt;
- return global;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- wasm_global_delete(global);
- return NULL;
- }
- void
- wasm_global_delete(wasm_global_t *global)
- {
- if (!global) {
- return;
- }
- if (global->init) {
- wasm_val_delete(global->init);
- global->init = NULL;
- }
- if (global->type) {
- wasm_globaltype_delete(global->type);
- global->type = NULL;
- }
- DELETE_HOST_INFO(global)
- wasm_runtime_free(global);
- }
- #if WASM_ENABLE_INTERP != 0
- static bool
- interp_global_set(const WASMModuleInstance *inst_interp,
- uint16 global_idx_rt,
- const wasm_val_t *v)
- {
- const WASMGlobalInstance *global_interp =
- inst_interp->globals + global_idx_rt;
- uint8 val_type_rt = global_interp->type;
- #if WASM_ENABLE_MULTI_MODULE != 0
- uint8 *data = global_interp->import_global_inst
- ? global_interp->import_module_inst->global_data
- + global_interp->import_global_inst->data_offset
- : inst_interp->global_data + global_interp->data_offset;
- #else
- uint8 *data = inst_interp->global_data + global_interp->data_offset;
- #endif
- return wasm_val_to_rt_val((WASMModuleInstanceCommon *)inst_interp,
- val_type_rt, v, data);
- }
- static bool
- interp_global_get(const WASMModuleInstance *inst_interp,
- uint16 global_idx_rt,
- wasm_val_t *out)
- {
- WASMGlobalInstance *global_interp = inst_interp->globals + global_idx_rt;
- uint8 val_type_rt = global_interp->type;
- #if WASM_ENABLE_MULTI_MODULE != 0
- uint8 *data = global_interp->import_global_inst
- ? global_interp->import_module_inst->global_data
- + global_interp->import_global_inst->data_offset
- : inst_interp->global_data + global_interp->data_offset;
- #else
- uint8 *data = inst_interp->global_data + global_interp->data_offset;
- #endif
- return rt_val_to_wasm_val(data, val_type_rt, out);
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- static bool
- aot_global_set(const AOTModuleInstance *inst_aot,
- uint16 global_idx_rt,
- const wasm_val_t *v)
- {
- AOTModule *module_aot = inst_aot->aot_module.ptr;
- uint8 val_type_rt = 0;
- uint32 data_offset = 0;
- void *data = NULL;
- if (global_idx_rt < module_aot->import_global_count) {
- data_offset = module_aot->import_globals[global_idx_rt].data_offset;
- val_type_rt = module_aot->import_globals[global_idx_rt].type;
- }
- else {
- data_offset =
- module_aot->globals[global_idx_rt - module_aot->import_global_count]
- .data_offset;
- val_type_rt =
- module_aot->globals[global_idx_rt - module_aot->import_global_count]
- .type;
- }
- data = (void *)((uint8 *)inst_aot->global_data.ptr + data_offset);
- return wasm_val_to_rt_val((WASMModuleInstanceCommon *)inst_aot,
- val_type_rt, v, data);
- }
- static bool
- aot_global_get(const AOTModuleInstance *inst_aot,
- uint16 global_idx_rt,
- wasm_val_t *out)
- {
- AOTModule *module_aot = inst_aot->aot_module.ptr;
- uint8 val_type_rt = 0;
- uint32 data_offset = 0;
- uint8 *data = NULL;
- if (global_idx_rt < module_aot->import_global_count) {
- data_offset = module_aot->import_globals[global_idx_rt].data_offset;
- val_type_rt = module_aot->import_globals[global_idx_rt].type;
- }
- else {
- data_offset =
- module_aot->globals[global_idx_rt - module_aot->import_global_count]
- .data_offset;
- val_type_rt =
- module_aot->globals[global_idx_rt - module_aot->import_global_count]
- .type;
- }
- data = (uint8 *)inst_aot->global_data.ptr + data_offset;
- return rt_val_to_wasm_val(data, val_type_rt, out);
- }
- #endif
- void
- wasm_global_set(wasm_global_t *global, const wasm_val_t *v)
- {
- if (!global || !v) {
- return;
- }
- #if WASM_ENABLE_INTERP != 0
- if (global->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- (void)interp_global_set((WASMModuleInstance *)global->inst_comm_rt,
- global->global_idx_rt, v);
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (global->inst_comm_rt->module_type == Wasm_Module_AoT) {
- (void)aot_global_set((AOTModuleInstance *)global->inst_comm_rt,
- global->global_idx_rt, v);
- return;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- UNREACHABLE();
- }
- void
- wasm_global_get(const wasm_global_t *global, wasm_val_t *out)
- {
- if (!global || !out) {
- return;
- }
- memset(out, 0, sizeof(wasm_val_t));
- #if WASM_ENABLE_INTERP != 0
- if (global->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- (void)interp_global_get((WASMModuleInstance *)global->inst_comm_rt,
- global->global_idx_rt, out);
- return;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (global->inst_comm_rt->module_type == Wasm_Module_AoT) {
- (void)aot_global_get((AOTModuleInstance *)global->inst_comm_rt,
- global->global_idx_rt, out);
- return;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- UNREACHABLE();
- }
- wasm_global_t *
- wasm_global_new_internal(wasm_store_t *store,
- uint16 global_idx_rt,
- WASMModuleInstanceCommon *inst_comm_rt)
- {
- wasm_global_t *global = NULL;
- uint8 val_type_rt = 0;
- bool is_mutable = 0;
- bool init = false;
- bh_assert(singleton_engine);
- if (!inst_comm_rt) {
- return NULL;
- }
- global = malloc_internal(sizeof(wasm_global_t));
- if (!global) {
- goto failed;
- }
- global->store = store;
- global->kind = WASM_EXTERN_GLOBAL;
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- WASMGlobalInstance *global_interp =
- ((WASMModuleInstance *)inst_comm_rt)->globals + global_idx_rt;
- val_type_rt = global_interp->type;
- is_mutable = global_interp->is_mutable;
- init = true;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *inst_aot = (AOTModuleInstance *)inst_comm_rt;
- AOTModule *module_aot = inst_aot->aot_module.ptr;
- init = true;
- if (global_idx_rt < module_aot->import_global_count) {
- AOTImportGlobal *global_import_aot =
- module_aot->import_globals + global_idx_rt;
- val_type_rt = global_import_aot->type;
- is_mutable = global_import_aot->is_mutable;
- }
- else {
- AOTGlobal *global_aot =
- module_aot->globals
- + (global_idx_rt - module_aot->import_global_count);
- val_type_rt = global_aot->type;
- is_mutable = global_aot->is_mutable;
- }
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- if (!init) {
- goto failed;
- }
- global->type = wasm_globaltype_new_internal(val_type_rt, is_mutable);
- if (!global->type) {
- goto failed;
- }
- global->init = malloc_internal(sizeof(wasm_val_t));
- if (!global->init) {
- goto failed;
- }
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- interp_global_get((WASMModuleInstance *)inst_comm_rt, global_idx_rt,
- global->init);
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- aot_global_get((AOTModuleInstance *)inst_comm_rt, global_idx_rt,
- global->init);
- }
- #endif
- global->inst_comm_rt = inst_comm_rt;
- global->global_idx_rt = global_idx_rt;
- return global;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- wasm_global_delete(global);
- return NULL;
- }
- wasm_globaltype_t *
- wasm_global_type(const wasm_global_t *global)
- {
- if (!global) {
- return NULL;
- }
- return wasm_globaltype_copy(global->type);
- }
- static wasm_table_t *
- wasm_table_new_basic(wasm_store_t *store, const wasm_tabletype_t *type)
- {
- wasm_table_t *table = NULL;
- if (!(table = malloc_internal(sizeof(wasm_table_t)))) {
- goto failed;
- }
- table->store = store;
- table->kind = WASM_EXTERN_TABLE;
- if (!(table->type = wasm_tabletype_copy(type))) {
- goto failed;
- }
- RETURN_OBJ(table, wasm_table_delete);
- }
- wasm_table_t *
- wasm_table_new_internal(wasm_store_t *store,
- uint16 table_idx_rt,
- WASMModuleInstanceCommon *inst_comm_rt)
- {
- wasm_table_t *table = NULL;
- uint8 val_type_rt = 0;
- uint32 init_size = 0, max_size = 0;
- bool init_flag = false;
- bh_assert(singleton_engine);
- if (!inst_comm_rt) {
- return NULL;
- }
- if (!(table = malloc_internal(sizeof(wasm_table_t)))) {
- goto failed;
- }
- table->store = store;
- table->kind = WASM_EXTERN_TABLE;
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- WASMTableInstance *table_interp =
- ((WASMModuleInstance *)inst_comm_rt)->tables[table_idx_rt];
- val_type_rt = table_interp->elem_type;
- init_size = table_interp->cur_size;
- max_size = table_interp->max_size;
- init_flag = true;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *inst_aot = (AOTModuleInstance *)inst_comm_rt;
- AOTModule *module_aot = (AOTModule *)inst_aot->aot_module.ptr;
- if (table_idx_rt < module_aot->import_table_count) {
- AOTImportTable *table_aot =
- module_aot->import_tables + table_idx_rt;
- val_type_rt = VALUE_TYPE_FUNCREF;
- init_size = table_aot->table_init_size;
- max_size = table_aot->table_max_size;
- }
- else {
- AOTTable *table_aot =
- module_aot->tables
- + (table_idx_rt - module_aot->import_table_count);
- val_type_rt = VALUE_TYPE_FUNCREF;
- init_size = table_aot->table_init_size;
- max_size = table_aot->table_max_size;
- }
- init_flag = true;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- if (!init_flag) {
- goto failed;
- }
- if (!(table->type =
- wasm_tabletype_new_internal(val_type_rt, init_size, max_size))) {
- goto failed;
- }
- table->inst_comm_rt = inst_comm_rt;
- table->table_idx_rt = table_idx_rt;
- RETURN_OBJ(table, wasm_table_delete);
- }
- /* will not actually apply this new table into the runtime */
- wasm_table_t *
- wasm_table_new(wasm_store_t *store,
- const wasm_tabletype_t *table_type,
- wasm_ref_t *init)
- {
- wasm_table_t *table;
- (void)init;
- bh_assert(singleton_engine);
- if ((table = wasm_table_new_basic(store, table_type))) {
- table->store = store;
- }
- return table;
- }
- wasm_table_t *
- wasm_table_copy(const wasm_table_t *src)
- {
- wasm_table_t *table;
- if (!(table = wasm_table_new_basic(src->store, src->type))) {
- return NULL;
- }
- table->table_idx_rt = src->table_idx_rt;
- table->inst_comm_rt = src->inst_comm_rt;
- return table;
- }
- void
- wasm_table_delete(wasm_table_t *table)
- {
- if (!table) {
- return;
- }
- if (table->type) {
- wasm_tabletype_delete(table->type);
- table->type = NULL;
- }
- DELETE_HOST_INFO(table)
- wasm_runtime_free(table);
- }
- wasm_tabletype_t *
- wasm_table_type(const wasm_table_t *table)
- {
- if (!table) {
- return NULL;
- }
- return wasm_tabletype_copy(table->type);
- }
- own wasm_ref_t *
- wasm_table_get(const wasm_table_t *table, wasm_table_size_t index)
- {
- uint32 func_idx_rt = NULL_REF;
- if (!table) {
- return NULL;
- }
- /* index -> func_idx_rt */
- #if WASM_ENABLE_INTERP != 0
- if (table->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- WASMTableInstance *table_interp =
- ((WASMModuleInstance *)table->inst_comm_rt)
- ->tables[table->table_idx_rt];
- if (index >= table_interp->cur_size) {
- return NULL;
- }
- func_idx_rt = ((uint32 *)table_interp->base_addr)[index];
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (table->inst_comm_rt->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *inst_aot = (AOTModuleInstance *)table->inst_comm_rt;
- AOTTableInstance *table_aot =
- (AOTTableInstance *)inst_aot->tables.ptr + table->table_idx_rt;
- if (index >= table_aot->cur_size) {
- return NULL;
- }
- func_idx_rt = table_aot->data[index];
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (func_idx_rt == NULL_REF) {
- return NULL;
- }
- return wasm_ref_new_internal(table->store, WASM_REF_func, func_idx_rt,
- table->inst_comm_rt);
- }
- bool
- wasm_table_set(wasm_table_t *table,
- wasm_table_size_t index,
- own wasm_ref_t *func_ref)
- {
- uint32 *p_func_idx_rt = NULL;
- uint32 function_count = 0, ref_idx_rt = NULL_REF;
- if (!table) {
- return false;
- }
- if (func_ref && func_ref->kind != WASM_REF_func) {
- return false;
- }
- if (func_ref) {
- ref_idx_rt = func_ref->ref_idx_rt;
- wasm_ref_delete(func_ref);
- }
- /* index -> *p_func_idx_rt */
- #if WASM_ENABLE_INTERP != 0
- if (table->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- WASMTableInstance *table_interp =
- ((WASMModuleInstance *)table->inst_comm_rt)
- ->tables[table->table_idx_rt];
- if (index >= table_interp->cur_size) {
- return false;
- }
- p_func_idx_rt = ((uint32 *)table_interp->base_addr) + index;
- function_count =
- ((WASMModuleInstance *)table->inst_comm_rt)->function_count;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (table->inst_comm_rt->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *inst_aot = (AOTModuleInstance *)table->inst_comm_rt;
- AOTModule *module_aot = (AOTModule *)inst_aot->aot_module.ptr;
- AOTTableInstance *table_aot =
- (AOTTableInstance *)inst_aot->tables.ptr + table->table_idx_rt;
- if (index >= table_aot->cur_size) {
- return false;
- }
- p_func_idx_rt = table_aot->data + index;
- function_count = module_aot->func_count;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- if (!p_func_idx_rt) {
- return false;
- }
- if (NULL_REF != ref_idx_rt) {
- if (ref_idx_rt >= function_count) {
- return false;
- }
- }
- *p_func_idx_rt = ref_idx_rt;
- return true;
- }
- wasm_table_size_t
- wasm_table_size(const wasm_table_t *table)
- {
- if (!table) {
- return 0;
- }
- #if WASM_ENABLE_INTERP != 0
- if (table->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- WASMTableInstance *table_interp =
- ((WASMModuleInstance *)table->inst_comm_rt)
- ->tables[table->table_idx_rt];
- return table_interp->cur_size;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (table->inst_comm_rt->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *inst_aot = (AOTModuleInstance *)table->inst_comm_rt;
- AOTModule *module_aot = (AOTModule *)inst_aot->aot_module.ptr;
- if (table->table_idx_rt < module_aot->import_table_count) {
- AOTImportTable *table_aot =
- module_aot->import_tables + table->table_idx_rt;
- return table_aot->table_init_size;
- }
- else {
- AOTTable *table_aot =
- module_aot->tables
- + (table->table_idx_rt - module_aot->import_table_count);
- return table_aot->table_init_size;
- }
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- return 0;
- }
- bool
- wasm_table_grow(wasm_table_t *table,
- wasm_table_size_t delta,
- own wasm_ref_t *init)
- {
- (void)table;
- (void)delta;
- (void)init;
- LOG_WARNING("Calling wasm_table_grow() by host is not supported."
- "Only allow growing a table via the opcode table.grow");
- return false;
- }
- static wasm_memory_t *
- wasm_memory_new_basic(wasm_store_t *store, const wasm_memorytype_t *type)
- {
- wasm_memory_t *memory = NULL;
- if (!(memory = malloc_internal(sizeof(wasm_memory_t)))) {
- goto failed;
- }
- memory->store = store;
- memory->kind = WASM_EXTERN_MEMORY;
- memory->type = wasm_memorytype_copy(type);
- RETURN_OBJ(memory, wasm_memory_delete)
- }
- wasm_memory_t *
- wasm_memory_new(wasm_store_t *store, const wasm_memorytype_t *type)
- {
- bh_assert(singleton_engine);
- return wasm_memory_new_basic(store, type);
- }
- wasm_memory_t *
- wasm_memory_copy(const wasm_memory_t *src)
- {
- wasm_memory_t *dst = NULL;
- if (!src) {
- return NULL;
- }
- if (!(dst = wasm_memory_new_basic(src->store, src->type))) {
- goto failed;
- }
- dst->memory_idx_rt = src->memory_idx_rt;
- dst->inst_comm_rt = src->inst_comm_rt;
- RETURN_OBJ(dst, wasm_memory_delete)
- }
- wasm_memory_t *
- wasm_memory_new_internal(wasm_store_t *store,
- uint16 memory_idx_rt,
- WASMModuleInstanceCommon *inst_comm_rt)
- {
- wasm_memory_t *memory = NULL;
- uint32 min_pages = 0, max_pages = 0;
- bool init_flag = false;
- bh_assert(singleton_engine);
- if (!inst_comm_rt) {
- return NULL;
- }
- if (!(memory = malloc_internal(sizeof(wasm_memory_t)))) {
- goto failed;
- }
- memory->store = store;
- memory->kind = WASM_EXTERN_MEMORY;
- #if WASM_ENABLE_INTERP != 0
- if (inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- WASMMemoryInstance *memory_interp =
- ((WASMModuleInstance *)inst_comm_rt)->memories[memory_idx_rt];
- min_pages = memory_interp->cur_page_count;
- max_pages = memory_interp->max_page_count;
- init_flag = true;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (inst_comm_rt->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *inst_aot = (AOTModuleInstance *)inst_comm_rt;
- AOTModule *module_aot = (AOTModule *)(inst_aot->aot_module.ptr);
- if (memory_idx_rt < module_aot->import_memory_count) {
- min_pages = module_aot->import_memories->mem_init_page_count;
- max_pages = module_aot->import_memories->mem_max_page_count;
- }
- else {
- min_pages = module_aot->memories->mem_init_page_count;
- max_pages = module_aot->memories->mem_max_page_count;
- }
- init_flag = true;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- if (!init_flag) {
- goto failed;
- }
- if (!(memory->type = wasm_memorytype_new_internal(min_pages, max_pages))) {
- goto failed;
- }
- memory->inst_comm_rt = inst_comm_rt;
- memory->memory_idx_rt = memory_idx_rt;
- RETURN_OBJ(memory, wasm_memory_delete);
- }
- void
- wasm_memory_delete(wasm_memory_t *memory)
- {
- if (!memory) {
- return;
- }
- if (memory->type) {
- wasm_memorytype_delete(memory->type);
- memory->type = NULL;
- }
- DELETE_HOST_INFO(memory)
- wasm_runtime_free(memory);
- }
- wasm_memorytype_t *
- wasm_memory_type(const wasm_memory_t *memory)
- {
- if (!memory) {
- return NULL;
- }
- return wasm_memorytype_copy(memory->type);
- }
- byte_t *
- wasm_memory_data(wasm_memory_t *memory)
- {
- WASMModuleInstanceCommon *module_inst_comm = memory->inst_comm_rt;
- #if WASM_ENABLE_INTERP != 0
- if (module_inst_comm->module_type == Wasm_Module_Bytecode) {
- WASMModuleInstance *module_inst =
- (WASMModuleInstance *)module_inst_comm;
- WASMMemoryInstance *memory_inst =
- module_inst->memories[memory->memory_idx_rt];
- return (byte_t *)memory_inst->memory_data;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst_comm->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *module_inst = (AOTModuleInstance *)module_inst_comm;
- AOTMemoryInstance *memory_inst =
- ((AOTMemoryInstance **)
- module_inst->memories.ptr)[memory->memory_idx_rt];
- return (byte_t *)memory_inst->memory_data.ptr;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- return NULL;
- }
- size_t
- wasm_memory_data_size(const wasm_memory_t *memory)
- {
- WASMModuleInstanceCommon *module_inst_comm = memory->inst_comm_rt;
- #if WASM_ENABLE_INTERP != 0
- if (module_inst_comm->module_type == Wasm_Module_Bytecode) {
- WASMModuleInstance *module_inst =
- (WASMModuleInstance *)module_inst_comm;
- WASMMemoryInstance *memory_inst =
- module_inst->memories[memory->memory_idx_rt];
- return memory_inst->cur_page_count * memory_inst->num_bytes_per_page;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst_comm->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *module_inst = (AOTModuleInstance *)module_inst_comm;
- AOTMemoryInstance *memory_inst =
- ((AOTMemoryInstance **)
- module_inst->memories.ptr)[memory->memory_idx_rt];
- return memory_inst->cur_page_count * memory_inst->num_bytes_per_page;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- return 0;
- }
- wasm_memory_pages_t
- wasm_memory_size(const wasm_memory_t *memory)
- {
- WASMModuleInstanceCommon *module_inst_comm = memory->inst_comm_rt;
- #if WASM_ENABLE_INTERP != 0
- if (module_inst_comm->module_type == Wasm_Module_Bytecode) {
- WASMModuleInstance *module_inst =
- (WASMModuleInstance *)module_inst_comm;
- WASMMemoryInstance *memory_inst =
- module_inst->memories[memory->memory_idx_rt];
- return memory_inst->cur_page_count;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (module_inst_comm->module_type == Wasm_Module_AoT) {
- AOTModuleInstance *module_inst = (AOTModuleInstance *)module_inst_comm;
- AOTMemoryInstance *memory_inst =
- ((AOTMemoryInstance **)
- module_inst->memories.ptr)[memory->memory_idx_rt];
- return memory_inst->cur_page_count;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- return 0;
- }
- bool
- wasm_memory_grow(wasm_memory_t *memory, wasm_memory_pages_t delta)
- {
- (void)memory;
- (void)delta;
- LOG_WARNING("Calling wasm_memory_grow() by host is not supported."
- "Only allow growing a memory via the opcode memory.grow");
- return false;
- }
- #if WASM_ENABLE_INTERP != 0
- static bool
- interp_link_func(const wasm_instance_t *inst,
- const WASMModule *module_interp,
- uint16 func_idx_rt,
- wasm_func_t *import)
- {
- WASMImport *imported_func_interp = NULL;
- wasm_func_t *cloned = NULL;
- bh_assert(inst && module_interp && import);
- bh_assert(func_idx_rt < module_interp->import_function_count);
- bh_assert(WASM_EXTERN_FUNC == import->kind);
- imported_func_interp = module_interp->import_functions + func_idx_rt;
- bh_assert(imported_func_interp);
- if (!(cloned = wasm_func_copy(import))) {
- return false;
- }
- if (!bh_vector_append((Vector *)inst->imports, &cloned)) {
- wasm_func_delete(cloned);
- return false;
- }
- imported_func_interp->u.function.call_conv_wasm_c_api = true;
- imported_func_interp->u.function.wasm_c_api_with_env = import->with_env;
- if (import->with_env) {
- imported_func_interp->u.function.func_ptr_linked = import->u.cb_env.cb;
- imported_func_interp->u.function.attachment = import->u.cb_env.env;
- }
- else {
- imported_func_interp->u.function.func_ptr_linked = import->u.cb;
- imported_func_interp->u.function.attachment = NULL;
- }
- import->func_idx_rt = func_idx_rt;
- return true;
- }
- static bool
- interp_link_global(const WASMModule *module_interp,
- uint16 global_idx_rt,
- wasm_global_t *import)
- {
- WASMImport *imported_global_interp = NULL;
- bh_assert(module_interp && import);
- bh_assert(global_idx_rt < module_interp->import_global_count);
- bh_assert(WASM_EXTERN_GLOBAL == import->kind);
- imported_global_interp = module_interp->import_globals + global_idx_rt;
- bh_assert(imported_global_interp);
- /* set init value */
- switch (wasm_valtype_kind(import->type->val_type)) {
- case WASM_I32:
- bh_assert(VALUE_TYPE_I32 == imported_global_interp->u.global.type);
- imported_global_interp->u.global.global_data_linked.i32 =
- import->init->of.i32;
- break;
- case WASM_I64:
- bh_assert(VALUE_TYPE_I64 == imported_global_interp->u.global.type);
- imported_global_interp->u.global.global_data_linked.i64 =
- import->init->of.i64;
- break;
- case WASM_F32:
- bh_assert(VALUE_TYPE_F32 == imported_global_interp->u.global.type);
- imported_global_interp->u.global.global_data_linked.f32 =
- import->init->of.f32;
- break;
- case WASM_F64:
- bh_assert(VALUE_TYPE_F64 == imported_global_interp->u.global.type);
- imported_global_interp->u.global.global_data_linked.f64 =
- import->init->of.f64;
- break;
- default:
- return false;
- }
- import->global_idx_rt = global_idx_rt;
- imported_global_interp->u.global.is_linked = true;
- return true;
- }
- static uint32
- interp_link(const wasm_instance_t *inst,
- const WASMModule *module_interp,
- wasm_extern_t *imports[])
- {
- uint32 i = 0;
- uint32 import_func_i = 0;
- uint32 import_global_i = 0;
- bh_assert(inst && module_interp && imports);
- for (i = 0; i < module_interp->import_count; ++i) {
- wasm_extern_t *import = imports[i];
- WASMImport *import_rt = module_interp->imports + i;
- switch (import_rt->kind) {
- case IMPORT_KIND_FUNC:
- {
- if (!interp_link_func(inst, module_interp, import_func_i++,
- wasm_extern_as_func(import))) {
- goto failed;
- }
- break;
- }
- case IMPORT_KIND_GLOBAL:
- {
- if (!interp_link_global(module_interp, import_global_i++,
- wasm_extern_as_global(import))) {
- goto failed;
- }
- break;
- }
- case IMPORT_KIND_MEMORY:
- case IMPORT_KIND_TABLE:
- ASSERT_NOT_IMPLEMENTED();
- break;
- default:
- LOG_WARNING("%s meets unsupported kind: %d", __FUNCTION__,
- import_rt->kind);
- goto failed;
- }
- }
- return i;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- return (uint32)-1;
- }
- static bool
- interp_process_export(wasm_store_t *store,
- const WASMModuleInstance *inst_interp,
- wasm_extern_vec_t *externals)
- {
- WASMExport *exports = NULL;
- WASMExport *export = NULL;
- wasm_extern_t *external = NULL;
- uint32 export_cnt = 0;
- uint32 i = 0;
- bh_assert(store && inst_interp && inst_interp->module && externals);
- exports = inst_interp->module->exports;
- export_cnt = inst_interp->module->export_count;
- for (i = 0; i < export_cnt; ++i) {
- export = exports + i;
- switch (export->kind) {
- case EXPORT_KIND_FUNC:
- {
- wasm_func_t *func;
- if (!(func = wasm_func_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_interp))) {
- goto failed;
- }
- external = wasm_func_as_extern(func);
- break;
- }
- case EXPORT_KIND_GLOBAL:
- {
- wasm_global_t *global;
- if (!(global = wasm_global_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_interp))) {
- goto failed;
- }
- external = wasm_global_as_extern(global);
- break;
- }
- case EXPORT_KIND_TABLE:
- {
- wasm_table_t *table;
- if (!(table = wasm_table_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_interp))) {
- goto failed;
- }
- external = wasm_table_as_extern(table);
- break;
- }
- case EXPORT_KIND_MEMORY:
- {
- wasm_memory_t *memory;
- if (!(memory = wasm_memory_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_interp))) {
- goto failed;
- }
- external = wasm_memory_as_extern(memory);
- break;
- }
- default:
- LOG_WARNING("%s meets unsupported kind: %d", __FUNCTION__,
- export->kind);
- goto failed;
- }
- if (!bh_vector_append((Vector *)externals, &external)) {
- goto failed;
- }
- }
- return true;
- failed:
- wasm_extern_delete(external);
- return false;
- }
- #endif /* WASM_ENABLE_INTERP */
- #if WASM_ENABLE_AOT != 0
- static bool
- aot_link_func(const wasm_instance_t *inst,
- const AOTModule *module_aot,
- uint32 import_func_idx_rt,
- wasm_func_t *import)
- {
- AOTImportFunc *import_aot_func = NULL;
- wasm_func_t *cloned = NULL;
- bh_assert(inst && module_aot && import);
- import_aot_func = module_aot->import_funcs + import_func_idx_rt;
- bh_assert(import_aot_func);
- if (!(cloned = wasm_func_copy(import))) {
- return false;
- }
- if (!bh_vector_append((Vector *)inst->imports, &cloned)) {
- wasm_func_delete(cloned);
- return false;
- }
- import_aot_func->call_conv_wasm_c_api = true;
- import_aot_func->wasm_c_api_with_env = import->with_env;
- if (import->with_env) {
- import_aot_func->func_ptr_linked = import->u.cb_env.cb;
- import_aot_func->attachment = import->u.cb_env.env;
- }
- else
- import_aot_func->func_ptr_linked = import->u.cb;
- import->func_idx_rt = import_func_idx_rt;
- return true;
- }
- static bool
- aot_link_global(const AOTModule *module_aot,
- uint16 global_idx_rt,
- wasm_global_t *import)
- {
- AOTImportGlobal *import_aot_global = NULL;
- const wasm_valtype_t *val_type = NULL;
- bh_assert(module_aot && import);
- import_aot_global = module_aot->import_globals + global_idx_rt;
- bh_assert(import_aot_global);
- val_type = wasm_globaltype_content(import->type);
- bh_assert(val_type);
- switch (wasm_valtype_kind(val_type)) {
- case WASM_I32:
- bh_assert(VALUE_TYPE_I32 == import_aot_global->type);
- import_aot_global->global_data_linked.i32 = import->init->of.i32;
- break;
- case WASM_I64:
- bh_assert(VALUE_TYPE_I64 == import_aot_global->type);
- import_aot_global->global_data_linked.i64 = import->init->of.i64;
- break;
- case WASM_F32:
- bh_assert(VALUE_TYPE_F32 == import_aot_global->type);
- import_aot_global->global_data_linked.f32 = import->init->of.f32;
- break;
- case WASM_F64:
- bh_assert(VALUE_TYPE_F64 == import_aot_global->type);
- import_aot_global->global_data_linked.f64 = import->init->of.f64;
- break;
- default:
- goto failed;
- }
- import->global_idx_rt = global_idx_rt;
- return true;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- return false;
- }
- static uint32
- aot_link(const wasm_instance_t *inst,
- const AOTModule *module_aot,
- wasm_extern_t *imports[])
- {
- uint32 i = 0;
- uint32 import_func_i = 0;
- uint32 import_global_i = 0;
- wasm_extern_t *import = NULL;
- wasm_func_t *func = NULL;
- wasm_global_t *global = NULL;
- bh_assert(inst && module_aot && imports);
- while (import_func_i < module_aot->import_func_count
- || import_global_i < module_aot->import_global_count) {
- import = imports[i++];
- bh_assert(import);
- switch (wasm_extern_kind(import)) {
- case WASM_EXTERN_FUNC:
- bh_assert(import_func_i < module_aot->import_func_count);
- func = wasm_extern_as_func((wasm_extern_t *)import);
- if (!aot_link_func(inst, module_aot, import_func_i++, func)) {
- goto failed;
- }
- break;
- case WASM_EXTERN_GLOBAL:
- bh_assert(import_global_i < module_aot->import_global_count);
- global = wasm_extern_as_global((wasm_extern_t *)import);
- if (!aot_link_global(module_aot, import_global_i++, global)) {
- goto failed;
- }
- break;
- case WASM_EXTERN_MEMORY:
- case WASM_EXTERN_TABLE:
- ASSERT_NOT_IMPLEMENTED();
- break;
- default:
- goto failed;
- }
- }
- return i;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- return (uint32)-1;
- }
- static bool
- aot_process_export(wasm_store_t *store,
- const AOTModuleInstance *inst_aot,
- wasm_extern_vec_t *externals)
- {
- uint32 i;
- wasm_extern_t *external = NULL;
- AOTModule *module_aot = NULL;
- bh_assert(store && inst_aot && externals);
- module_aot = (AOTModule *)inst_aot->aot_module.ptr;
- bh_assert(module_aot);
- for (i = 0; i < module_aot->export_count; ++i) {
- AOTExport *export = module_aot->exports + i;
- switch (export->kind) {
- case EXPORT_KIND_FUNC:
- {
- wasm_func_t *func = NULL;
- if (!(func = wasm_func_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_aot))) {
- goto failed;
- }
- external = wasm_func_as_extern(func);
- break;
- }
- case EXPORT_KIND_GLOBAL:
- {
- wasm_global_t *global = NULL;
- if (!(global = wasm_global_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_aot))) {
- goto failed;
- }
- external = wasm_global_as_extern(global);
- break;
- }
- case EXPORT_KIND_TABLE:
- {
- wasm_table_t *table;
- if (!(table = wasm_table_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_aot))) {
- goto failed;
- }
- external = wasm_table_as_extern(table);
- break;
- }
- case EXPORT_KIND_MEMORY:
- {
- wasm_memory_t *memory;
- if (!(memory = wasm_memory_new_internal(
- store, export->index,
- (WASMModuleInstanceCommon *)inst_aot))) {
- goto failed;
- }
- external = wasm_memory_as_extern(memory);
- break;
- }
- default:
- LOG_WARNING("%s meets unsupported kind: %d", __FUNCTION__,
- export->kind);
- goto failed;
- }
- if (!(external->name = malloc_internal(sizeof(wasm_byte_vec_t)))) {
- goto failed;
- }
- wasm_name_new_from_string(external->name, export->name);
- if (strlen(export->name) && !external->name->data) {
- goto failed;
- }
- if (!bh_vector_append((Vector *)externals, &external)) {
- goto failed;
- }
- }
- return true;
- failed:
- wasm_extern_delete(external);
- return false;
- }
- #endif /* WASM_ENABLE_AOT */
- wasm_instance_t *
- wasm_instance_new(wasm_store_t *store,
- const wasm_module_t *module,
- const wasm_extern_t *const imports[],
- own wasm_trap_t **traps)
- {
- return wasm_instance_new_with_args(store, module, imports, traps,
- KILOBYTE(32), KILOBYTE(32));
- }
- wasm_instance_t *
- wasm_instance_new_with_args(wasm_store_t *store,
- const wasm_module_t *module,
- const wasm_extern_t *const imports[],
- own wasm_trap_t **traps,
- const uint32 stack_size,
- const uint32 heap_size)
- {
- char error_buf[128] = { 0 };
- uint32 import_count = 0;
- wasm_instance_t *instance = NULL;
- uint32 i = 0;
- bool processed = false;
- (void)traps;
- bh_assert(singleton_engine);
- if (!module) {
- return NULL;
- }
- instance = malloc_internal(sizeof(wasm_instance_t));
- if (!instance) {
- goto failed;
- }
- /* link module and imports */
- if (imports) {
- #if WASM_ENABLE_INTERP != 0
- if ((*module)->module_type == Wasm_Module_Bytecode) {
- import_count = MODULE_INTERP(module)->import_count;
- INIT_VEC(instance->imports, wasm_extern_vec_new_uninitialized,
- import_count);
- if (import_count) {
- uint32 actual_link_import_count = interp_link(
- instance, MODULE_INTERP(module), (wasm_extern_t **)imports);
- /* make sure a complete import list */
- if ((int32)import_count < 0
- || import_count != actual_link_import_count) {
- goto failed;
- }
- }
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if ((*module)->module_type == Wasm_Module_AoT) {
- import_count = MODULE_AOT(module)->import_func_count
- + MODULE_AOT(module)->import_global_count
- + MODULE_AOT(module)->import_memory_count
- + MODULE_AOT(module)->import_table_count;
- INIT_VEC(instance->imports, wasm_extern_vec_new_uninitialized,
- import_count);
- if (import_count) {
- import_count = aot_link(instance, MODULE_AOT(module),
- (wasm_extern_t **)imports);
- if ((int32)import_count < 0) {
- goto failed;
- }
- }
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * also leads to below branch
- */
- if (!import_count) {
- goto failed;
- }
- }
- instance->inst_comm_rt = wasm_runtime_instantiate(
- *module, stack_size, heap_size, error_buf, sizeof(error_buf));
- if (!instance->inst_comm_rt) {
- LOG_ERROR(error_buf);
- goto failed;
- }
- if (!wasm_runtime_create_exec_env_singleton(instance->inst_comm_rt)) {
- goto failed;
- }
- /* fill with inst */
- for (i = 0; imports && i < (uint32)import_count; ++i) {
- wasm_extern_t *import = (wasm_extern_t *)imports[i];
- switch (import->kind) {
- case WASM_EXTERN_FUNC:
- wasm_extern_as_func(import)->inst_comm_rt =
- instance->inst_comm_rt;
- break;
- case WASM_EXTERN_GLOBAL:
- wasm_extern_as_global(import)->inst_comm_rt =
- instance->inst_comm_rt;
- break;
- case WASM_EXTERN_MEMORY:
- wasm_extern_as_memory(import)->inst_comm_rt =
- instance->inst_comm_rt;
- break;
- case WASM_EXTERN_TABLE:
- wasm_extern_as_table(import)->inst_comm_rt =
- instance->inst_comm_rt;
- break;
- default:
- goto failed;
- }
- }
- /* build the exports list */
- #if WASM_ENABLE_INTERP != 0
- if (instance->inst_comm_rt->module_type == Wasm_Module_Bytecode) {
- uint32 export_cnt =
- ((WASMModuleInstance *)instance->inst_comm_rt)->module->export_count;
- INIT_VEC(instance->exports, wasm_extern_vec_new_uninitialized,
- export_cnt);
- if (!interp_process_export(
- store, (WASMModuleInstance *)instance->inst_comm_rt,
- instance->exports)) {
- goto failed;
- }
- processed = true;
- }
- #endif
- #if WASM_ENABLE_AOT != 0
- if (instance->inst_comm_rt->module_type == Wasm_Module_AoT) {
- uint32 export_cnt =
- ((AOTModuleInstance *)instance->inst_comm_rt)->export_func_count
- + ((AOTModuleInstance *)instance->inst_comm_rt)->export_global_count
- + ((AOTModuleInstance *)instance->inst_comm_rt)->export_tab_count
- + ((AOTModuleInstance *)instance->inst_comm_rt)->export_mem_count;
- INIT_VEC(instance->exports, wasm_extern_vec_new_uninitialized,
- export_cnt);
- if (!aot_process_export(store,
- (AOTModuleInstance *)instance->inst_comm_rt,
- instance->exports)) {
- goto failed;
- }
- processed = true;
- }
- #endif
- /*
- * a wrong combination of module filetype and compilation flags
- * leads to below branch
- */
- if (!processed) {
- goto failed;
- }
- /* add it to a watching list in store */
- if (!bh_vector_append((Vector *)store->instances, &instance)) {
- goto failed;
- }
- return instance;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- wasm_instance_delete_internal(instance);
- return NULL;
- }
- static void
- wasm_instance_delete_internal(wasm_instance_t *instance)
- {
- if (!instance) {
- return;
- }
- DEINIT_VEC(instance->imports, wasm_extern_vec_delete);
- DEINIT_VEC(instance->exports, wasm_extern_vec_delete);
- if (instance->inst_comm_rt) {
- wasm_runtime_deinstantiate(instance->inst_comm_rt);
- instance->inst_comm_rt = NULL;
- }
- wasm_runtime_free(instance);
- }
- void
- wasm_instance_delete(wasm_instance_t *inst)
- {
- DELETE_HOST_INFO(inst)
- /* will release instance when releasing the store */
- }
- void
- wasm_instance_exports(const wasm_instance_t *instance,
- own wasm_extern_vec_t *out)
- {
- if (!instance || !out) {
- return;
- }
- wasm_extern_vec_copy(out, instance->exports);
- }
- wasm_extern_t *
- wasm_extern_copy(const wasm_extern_t *src)
- {
- wasm_extern_t *dst = NULL;
- if (!src) {
- return NULL;
- }
- switch (wasm_extern_kind(src)) {
- case WASM_EXTERN_FUNC:
- dst = wasm_func_as_extern(
- wasm_func_copy(wasm_extern_as_func_const(src)));
- break;
- case WASM_EXTERN_GLOBAL:
- dst = wasm_global_as_extern(
- wasm_global_copy(wasm_extern_as_global_const(src)));
- break;
- case WASM_EXTERN_MEMORY:
- dst = wasm_memory_as_extern(
- wasm_memory_copy(wasm_extern_as_memory_const(src)));
- break;
- case WASM_EXTERN_TABLE:
- dst = wasm_table_as_extern(
- wasm_table_copy(wasm_extern_as_table_const(src)));
- break;
- default:
- LOG_WARNING("%s meets unsupported kind: %d", __FUNCTION__,
- src->kind);
- break;
- }
- if (!dst) {
- goto failed;
- }
- return dst;
- failed:
- LOG_DEBUG("%s failed", __FUNCTION__);
- wasm_extern_delete(dst);
- return NULL;
- }
- void
- wasm_extern_delete(wasm_extern_t *external)
- {
- if (!external) {
- return;
- }
- if (external->name) {
- wasm_byte_vec_delete(external->name);
- wasm_runtime_free(external->name);
- external->name = NULL;
- }
- switch (wasm_extern_kind(external)) {
- case WASM_EXTERN_FUNC:
- wasm_func_delete(wasm_extern_as_func(external));
- break;
- case WASM_EXTERN_GLOBAL:
- wasm_global_delete(wasm_extern_as_global(external));
- break;
- case WASM_EXTERN_MEMORY:
- wasm_memory_delete(wasm_extern_as_memory(external));
- break;
- case WASM_EXTERN_TABLE:
- wasm_table_delete(wasm_extern_as_table(external));
- break;
- default:
- LOG_WARNING("%s meets unsupported kind: %d", __FUNCTION__,
- external->kind);
- break;
- }
- }
- wasm_externkind_t
- wasm_extern_kind(const wasm_extern_t *external)
- {
- if (!external) {
- return WASM_ANYREF;
- }
- return external->kind;
- }
- own wasm_externtype_t *
- wasm_extern_type(const wasm_extern_t *external)
- {
- if (!external) {
- return NULL;
- }
- switch (wasm_extern_kind(external)) {
- case WASM_EXTERN_FUNC:
- return wasm_functype_as_externtype(
- wasm_func_type(wasm_extern_as_func_const(external)));
- case WASM_EXTERN_GLOBAL:
- return wasm_globaltype_as_externtype(
- wasm_global_type(wasm_extern_as_global_const(external)));
- case WASM_EXTERN_MEMORY:
- return wasm_memorytype_as_externtype(
- wasm_memory_type(wasm_extern_as_memory_const(external)));
- case WASM_EXTERN_TABLE:
- return wasm_tabletype_as_externtype(
- wasm_table_type(wasm_extern_as_table_const(external)));
- default:
- LOG_WARNING("%s meets unsupported kind: %d", __FUNCTION__,
- external->kind);
- break;
- }
- return NULL;
- }
- #define BASIC_FOUR_LIST(V) \
- V(func) \
- V(global) \
- V(memory) \
- V(table)
- #define WASM_EXTERN_AS_OTHER(name) \
- wasm_##name##_t *wasm_extern_as_##name(wasm_extern_t *external) \
- { \
- return (wasm_##name##_t *)external; \
- }
- BASIC_FOUR_LIST(WASM_EXTERN_AS_OTHER)
- #undef WASM_EXTERN_AS_OTHER
- #define WASM_OTHER_AS_EXTERN(name) \
- wasm_extern_t *wasm_##name##_as_extern(wasm_##name##_t *other) \
- { \
- return (wasm_extern_t *)other; \
- }
- BASIC_FOUR_LIST(WASM_OTHER_AS_EXTERN)
- #undef WASM_OTHER_AS_EXTERN
- #define WASM_EXTERN_AS_OTHER_CONST(name) \
- const wasm_##name##_t *wasm_extern_as_##name##_const( \
- const wasm_extern_t *external) \
- { \
- return (const wasm_##name##_t *)external; \
- }
- BASIC_FOUR_LIST(WASM_EXTERN_AS_OTHER_CONST)
- #undef WASM_EXTERN_AS_OTHER_CONST
- #define WASM_OTHER_AS_EXTERN_CONST(name) \
- const wasm_extern_t *wasm_##name##_as_extern_const( \
- const wasm_##name##_t *other) \
- { \
- return (const wasm_extern_t *)other; \
- }
- BASIC_FOUR_LIST(WASM_OTHER_AS_EXTERN_CONST)
- #undef WASM_OTHER_AS_EXTERN_CONST
|