forked from wasm3/wasm3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm3_env.c
1239 lines (959 loc) · 33.6 KB
/
m3_env.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// m3_env.c
//
// Created by Steven Massey on 4/19/19.
// Copyright © 2019 Steven Massey. All rights reserved.
//
#include <stdarg.h>
#include <limits.h>
#include "m3_env.h"
#include "m3_compile.h"
#include "m3_exception.h"
#include "m3_info.h"
IM3Environment m3_NewEnvironment ()
{
IM3Environment env = m3_AllocStruct (M3Environment);
if (env)
{
_try
{
// create FuncTypes for all simple block return ValueTypes
for (u8 t = c_m3Type_none; t <= c_m3Type_f64; t++)
{
IM3FuncType ftype;
_ (AllocFuncType (& ftype, 1));
ftype->numArgs = 0;
ftype->numRets = (t == c_m3Type_none) ? 0 : 1;
ftype->types [0] = t;
Environment_AddFuncType (env, & ftype);
d_m3Assert (t < 5);
env->retFuncTypes [t] = ftype;
}
}
_catch:
if (result)
{
m3_FreeEnvironment (env);
env = NULL;
}
}
return env;
}
void Environment_Release (IM3Environment i_environment)
{
IM3FuncType ftype = i_environment->funcTypes;
while (ftype)
{
IM3FuncType next = ftype->next;
m3_Free (ftype);
ftype = next;
}
m3log (runtime, "freeing %d pages from environment", CountCodePages (i_environment->pagesReleased));
FreeCodePages (& i_environment->pagesReleased);
}
void m3_FreeEnvironment (IM3Environment i_environment)
{
if (i_environment)
{
Environment_Release (i_environment);
m3_Free (i_environment);
}
}
void m3_SetCustomSectionHandler (IM3Environment i_environment, M3SectionHandler i_handler)
{
if (i_environment) i_environment->customSectionHandler = i_handler;
}
// returns the same io_funcType or replaces it with an equivalent that's already in the type linked list
void Environment_AddFuncType (IM3Environment i_environment, IM3FuncType * io_funcType)
{
IM3FuncType addType = * io_funcType;
IM3FuncType newType = i_environment->funcTypes;
while (newType)
{
if (AreFuncTypesEqual (newType, addType))
{
m3_Free (addType);
break;
}
newType = newType->next;
}
if (newType == NULL)
{
newType = addType;
newType->next = i_environment->funcTypes;
i_environment->funcTypes = newType;
}
* io_funcType = newType;
}
IM3CodePage RemoveCodePageOfCapacity (M3CodePage ** io_list, u32 i_minimumLineCount)
{
IM3CodePage prev = NULL;
IM3CodePage page = * io_list;
while (page)
{
if (NumFreeLines (page) >= i_minimumLineCount)
{ d_m3Assert (page->info.usageCount == 0);
IM3CodePage next = page->info.next;
if (prev)
prev->info.next = next; // mid-list
else
* io_list = next; // front of list
break;
}
prev = page;
page = page->info.next;
}
return page;
}
IM3CodePage Environment_AcquireCodePage (IM3Environment i_environment, u32 i_minimumLineCount)
{
return RemoveCodePageOfCapacity (& i_environment->pagesReleased, i_minimumLineCount);
}
void Environment_ReleaseCodePages (IM3Environment i_environment, IM3CodePage i_codePageList)
{
IM3CodePage end = i_codePageList;
while (end)
{
end->info.lineIndex = 0; // reset page
#if d_m3RecordBacktraces
end->info.mapping->size = 0;
#endif // d_m3RecordBacktraces
IM3CodePage next = end->info.next;
if (not next)
break;
end = next;
}
if (end)
{
// push list to front
end->info.next = i_environment->pagesReleased;
i_environment->pagesReleased = i_codePageList;
}
}
IM3Runtime m3_NewRuntime (IM3Environment i_environment, u32 i_stackSizeInBytes, void * i_userdata)
{
IM3Runtime runtime = m3_AllocStruct (M3Runtime);
if (runtime)
{
m3_ResetErrorInfo(runtime);
runtime->environment = i_environment;
runtime->userdata = i_userdata;
runtime->originStack = m3_Malloc ("Wasm Stack", i_stackSizeInBytes + 4*sizeof (m3slot_t)); // TODO: more precise stack checks
if (runtime->originStack)
{
runtime->stack = runtime->originStack;
runtime->numStackSlots = i_stackSizeInBytes / sizeof (m3slot_t); m3log (runtime, "new stack: %p", runtime->originStack);
}
else m3_Free (runtime);
}
return runtime;
}
void * m3_GetUserData (IM3Runtime i_runtime)
{
return i_runtime ? i_runtime->userdata : NULL;
}
void * ForEachModule (IM3Runtime i_runtime, ModuleVisitor i_visitor, void * i_info)
{
void * r = NULL;
IM3Module module = i_runtime->modules;
while (module)
{
IM3Module next = module->next;
r = i_visitor (module, i_info);
if (r)
break;
module = next;
}
return r;
}
void * _FreeModule (IM3Module i_module, void * i_info)
{
m3_FreeModule (i_module);
return NULL;
}
void Runtime_Release (IM3Runtime i_runtime)
{
ForEachModule (i_runtime, _FreeModule, NULL); d_m3Assert (i_runtime->numActiveCodePages == 0);
Environment_ReleaseCodePages (i_runtime->environment, i_runtime->pagesOpen);
Environment_ReleaseCodePages (i_runtime->environment, i_runtime->pagesFull);
m3_Free (i_runtime->originStack);
m3_Free (i_runtime->memory.mallocated);
}
void m3_FreeRuntime (IM3Runtime i_runtime)
{
if (i_runtime)
{
m3_PrintProfilerInfo ();
Runtime_Release (i_runtime);
m3_Free (i_runtime);
}
}
M3Result EvaluateExpression (IM3Module i_module, void * o_expressed, u8 i_type, bytes_t * io_bytes, cbytes_t i_end)
{
M3Result result = m3Err_none;
// OPTZ: use a simplified interpreter for expressions
// create a temporary runtime context
#if defined(d_m3PreferStaticAlloc)
static M3Runtime runtime;
#else
M3Runtime runtime;
#endif
M3_INIT (runtime);
runtime.environment = i_module->runtime->environment;
runtime.numStackSlots = i_module->runtime->numStackSlots;
runtime.stack = i_module->runtime->stack;
m3stack_t stack = (m3stack_t)runtime.stack;
IM3Runtime savedRuntime = i_module->runtime;
i_module->runtime = & runtime;
IM3Compilation o = & runtime.compilation;
o->runtime = & runtime;
o->module = i_module;
o->wasm = * io_bytes;
o->wasmEnd = i_end;
o->lastOpcodeStart = o->wasm;
o->block.depth = -1; // so that root compilation depth = 0
// OPTZ: this code page could be erased after use. maybe have 'empty' list in addition to full and open?
o->page = AcquireCodePage (& runtime); // AcquireUnusedCodePage (...)
if (o->page)
{
IM3FuncType ftype = runtime.environment->retFuncTypes[i_type];
pc_t m3code = GetPagePC (o->page);
result = CompileBlock (o, ftype, c_waOp_block);
if (not result && o->maxStackSlots >= runtime.numStackSlots) {
result = m3Err_trapStackOverflow;
}
if (not result)
{
# if (d_m3EnableOpProfiling || d_m3EnableOpTracing)
m3ret_t r = RunCode (m3code, stack, NULL, d_m3OpDefaultArgs, d_m3BaseCstr);
# else
m3ret_t r = RunCode (m3code, stack, NULL, d_m3OpDefaultArgs);
# endif
if (r == 0)
{ m3log (runtime, "expression result: %s", SPrintValue (stack, i_type));
if (SizeOfType (i_type) == sizeof (u32))
{
* (u32 *) o_expressed = * ((u32 *) stack);
}
else
{
* (u64 *) o_expressed = * ((u64 *) stack);
}
}
}
// TODO: EraseCodePage (...) see OPTZ above
ReleaseCodePage (& runtime, o->page);
}
else result = m3Err_mallocFailedCodePage;
runtime.originStack = NULL; // prevent free(stack) in ReleaseRuntime
Runtime_Release (& runtime);
i_module->runtime = savedRuntime;
* io_bytes = o->wasm;
return result;
}
M3Result InitMemory (IM3Runtime io_runtime, IM3Module i_module)
{
M3Result result = m3Err_none; //d_m3Assert (not io_runtime->memory.wasmPages);
if (not i_module->memoryImported)
{
u32 maxPages = i_module->memoryInfo.maxPages;
u32 pageSize = i_module->memoryInfo.pageSize;
io_runtime->memory.maxPages = maxPages ? maxPages : 65536;
io_runtime->memory.pageSize = pageSize ? pageSize : d_m3DefaultMemPageSize;
result = ResizeMemory (io_runtime, i_module->memoryInfo.initPages);
}
return result;
}
M3Result ResizeMemory (IM3Runtime io_runtime, u32 i_numPages)
{
M3Result result = m3Err_none;
u32 numPagesToAlloc = i_numPages;
M3Memory * memory = & io_runtime->memory;
#if 0 // Temporary fix for memory allocation
if (memory->mallocated) {
memory->numPages = i_numPages;
memory->mallocated->end = memory->wasmPages + (memory->numPages * io_runtime->memory.pageSize);
return result;
}
i_numPagesToAlloc = 256;
#endif
if (numPagesToAlloc <= memory->maxPages)
{
size_t numPageBytes = numPagesToAlloc * io_runtime->memory.pageSize;
#if d_m3MaxLinearMemoryPages > 0
_throwif("linear memory limitation exceeded", numPagesToAlloc > d_m3MaxLinearMemoryPages);
#endif
// Limit the amount of memory that gets actually allocated
if (io_runtime->memoryLimit) {
numPageBytes = M3_MIN (numPageBytes, io_runtime->memoryLimit);
}
size_t numBytes = numPageBytes + sizeof (M3MemoryHeader);
size_t numPreviousBytes = memory->numPages * io_runtime->memory.pageSize;
if (numPreviousBytes)
numPreviousBytes += sizeof (M3MemoryHeader);
void* newMem = m3_Realloc ("Wasm Linear Memory", memory->mallocated, numBytes, numPreviousBytes);
_throwifnull(newMem);
memory->mallocated = (M3MemoryHeader*)newMem;
# if d_m3LogRuntime
M3MemoryHeader * oldMallocated = memory->mallocated;
# endif
memory->numPages = numPagesToAlloc;
memory->mallocated->length = numPageBytes;
memory->mallocated->runtime = io_runtime;
memory->mallocated->maxStack = (m3slot_t *) io_runtime->stack + io_runtime->numStackSlots;
m3log (runtime, "resized old: %p; mem: %p; length: %zu; pages: %d", oldMallocated, memory->mallocated, memory->mallocated->length, memory->numPages);
}
else result = m3Err_wasmMemoryOverflow;
_catch: return result;
}
M3Result InitGlobals (IM3Module io_module)
{
M3Result result = m3Err_none;
if (io_module->numGlobals)
{
// placing the globals in their structs isn't good for cache locality, but i don't really know what the global
// access patterns typically look like yet.
// io_module->globalMemory = m3Alloc (m3reg_t, io_module->numGlobals);
// if (io_module->globalMemory)
{
for (u32 i = 0; i < io_module->numGlobals; ++i)
{
M3Global * g = & io_module->globals [i]; m3log (runtime, "initializing global: %d", i);
if (g->initExpr)
{
bytes_t start = g->initExpr;
result = EvaluateExpression (io_module, & g->i64Value, g->type, & start, g->initExpr + g->initExprSize);
if (not result)
{
// io_module->globalMemory [i] = initValue;
}
else break;
}
else
{ m3log (runtime, "importing global");
}
}
}
// else result = ErrorModule (m3Err_mallocFailed, io_module, "could allocate globals for module: '%s", io_module->name);
}
return result;
}
M3Result InitDataSegments (M3Memory * io_memory, IM3Module io_module)
{
M3Result result = m3Err_none;
_throwif ("unallocated linear memory", !(io_memory->mallocated));
for (u32 i = 0; i < io_module->numDataSegments; ++i)
{
M3DataSegment * segment = & io_module->dataSegments [i];
i32 segmentOffset;
bytes_t start = segment->initExpr;
_ (EvaluateExpression (io_module, & segmentOffset, c_m3Type_i32, & start, segment->initExpr + segment->initExprSize));
m3log (runtime, "loading data segment: %d; size: %d; offset: %d", i, segment->size, segmentOffset);
if (segmentOffset >= 0 && (size_t)(segmentOffset) + segment->size <= io_memory->mallocated->length)
{
u8 * dest = m3MemData (io_memory->mallocated) + segmentOffset;
memcpy (dest, segment->data, segment->size);
} else {
_throw ("data segment out of bounds");
}
}
_catch: return result;
}
M3Result InitElements (IM3Module io_module)
{
M3Result result = m3Err_none;
bytes_t bytes = io_module->elementSection;
cbytes_t end = io_module->elementSectionEnd;
for (u32 i = 0; i < io_module->numElementSegments; ++i)
{
u32 index;
_ (ReadLEB_u32 (& index, & bytes, end));
if (index == 0)
{
i32 offset;
_ (EvaluateExpression (io_module, & offset, c_m3Type_i32, & bytes, end));
_throwif ("table underflow", offset < 0);
u32 numElements;
_ (ReadLEB_u32 (& numElements, & bytes, end));
size_t endElement = (size_t) numElements + offset;
_throwif ("table overflow", endElement > d_m3MaxSaneTableSize);
// is there any requirement that elements must be in increasing sequence?
// make sure the table isn't shrunk.
if (endElement > io_module->table0Size)
{
io_module->table0 = m3_ReallocArray (IM3Function, io_module->table0, endElement, io_module->table0Size);
io_module->table0Size = (u32) endElement;
}
_throwifnull(io_module->table0);
for (u32 e = 0; e < numElements; ++e)
{
u32 functionIndex;
_ (ReadLEB_u32 (& functionIndex, & bytes, end));
_throwif ("function index out of range", functionIndex >= io_module->numFunctions);
IM3Function function = & io_module->functions [functionIndex]; d_m3Assert (function); //printf ("table: %s\n", m3_GetFunctionName(function));
io_module->table0 [e + offset] = function;
}
}
else _throw ("element table index must be zero for MVP");
}
_catch: return result;
}
M3Result m3_CompileModule (IM3Module io_module)
{
M3Result result = m3Err_none;
for (u32 i = 0; i < io_module->numFunctions; ++i)
{
IM3Function f = & io_module->functions [i];
if (f->wasm and not f->compiled)
{
_ (CompileFunction (f));
}
}
_catch: return result;
}
M3Result m3_RunStart (IM3Module io_module)
{
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
// Execution disabled for fuzzing builds
return m3Err_none;
#endif
M3Result result = m3Err_none;
i32 startFunctionTmp = -1;
if (io_module and io_module->startFunction >= 0)
{
IM3Function function = & io_module->functions [io_module->startFunction];
if (not function->compiled)
{
_ (CompileFunction (function));
}
IM3FuncType ftype = function->funcType;
if (ftype->numArgs != 0 || ftype->numRets != 0)
_throw (m3Err_argumentCountMismatch);
IM3Module module = function->module;
IM3Runtime runtime = module->runtime;
startFunctionTmp = io_module->startFunction;
io_module->startFunction = -1;
# if (d_m3EnableOpProfiling || d_m3EnableOpTracing)
result = (M3Result) RunCode (function->compiled, (m3stack_t) runtime->stack, runtime->memory.mallocated, d_m3OpDefaultArgs, d_m3BaseCstr);
# else
result = (M3Result) RunCode (function->compiled, (m3stack_t) runtime->stack, runtime->memory.mallocated, d_m3OpDefaultArgs);
# endif
if (result)
{
io_module->startFunction = startFunctionTmp;
EXCEPTION_PRINT(result);
goto _catch;
}
}
_catch: return result;
}
// TODO: deal with main + side-modules loading efforcement
M3Result m3_LoadModule (IM3Runtime io_runtime, IM3Module io_module)
{
M3Result result = m3Err_none;
if (M3_UNLIKELY(io_module->runtime)) {
return m3Err_moduleAlreadyLinked;
}
io_module->runtime = io_runtime;
M3Memory * memory = & io_runtime->memory;
_ (InitMemory (io_runtime, io_module));
_ (InitGlobals (io_module));
_ (InitDataSegments (memory, io_module));
_ (InitElements (io_module));
// Start func might use imported functions, which are not liked here yet,
// so it will be called before a function call is attempted (in m3_FindFunction)
#ifdef DEBUG
Module_GenerateNames(io_module);
#endif
io_module->next = io_runtime->modules;
io_runtime->modules = io_module;
return result; // ok
_catch:
io_module->runtime = NULL;
return result;
}
IM3Global m3_FindGlobal (IM3Module io_module,
const char * const i_globalName)
{
// Search exports
for (u32 i = 0; i < io_module->numGlobals; ++i)
{
IM3Global g = & io_module->globals [i];
if (g->name and strcmp (g->name, i_globalName) == 0)
{
return g;
}
}
// Search imports
for (u32 i = 0; i < io_module->numGlobals; ++i)
{
IM3Global g = & io_module->globals [i];
if (g->import.moduleUtf8 and g->import.fieldUtf8)
{
if (strcmp (g->import.fieldUtf8, i_globalName) == 0)
{
return g;
}
}
}
return NULL;
}
M3Result m3_GetGlobal (IM3Global i_global,
IM3TaggedValue o_value)
{
if (not i_global) return m3Err_globalLookupFailed;
switch (i_global->type) {
case c_m3Type_i32: o_value->value.i32 = i_global->i32Value; break;
case c_m3Type_i64: o_value->value.i64 = i_global->i64Value; break;
# if d_m3HasFloat
case c_m3Type_f32: o_value->value.f32 = i_global->f32Value; break;
case c_m3Type_f64: o_value->value.f64 = i_global->f64Value; break;
# endif
default: return m3Err_invalidTypeId;
}
o_value->type = (M3ValueType)(i_global->type);
return m3Err_none;
}
M3Result m3_SetGlobal (IM3Global i_global,
const IM3TaggedValue i_value)
{
if (not i_global) return m3Err_globalLookupFailed;
if (not i_global->isMutable) return m3Err_globalNotMutable;
if (i_global->type != i_value->type) return m3Err_globalTypeMismatch;
switch (i_value->type) {
case c_m3Type_i32: i_global->i32Value = i_value->value.i32; break;
case c_m3Type_i64: i_global->i64Value = i_value->value.i64; break;
# if d_m3HasFloat
case c_m3Type_f32: i_global->f32Value = i_value->value.f32; break;
case c_m3Type_f64: i_global->f64Value = i_value->value.f64; break;
# endif
default: return m3Err_invalidTypeId;
}
return m3Err_none;
}
M3ValueType m3_GetGlobalType (IM3Global i_global)
{
return (i_global) ? (M3ValueType)(i_global->type) : c_m3Type_none;
}
void * v_FindFunction (IM3Module i_module, const char * const i_name)
{
// Prefer exported functions
for (u32 i = 0; i < i_module->numFunctions; ++i)
{
IM3Function f = & i_module->functions [i];
if (f->export_name and strcmp (f->export_name, i_name) == 0)
return f;
}
// Search internal functions
for (u32 i = 0; i < i_module->numFunctions; ++i)
{
IM3Function f = & i_module->functions [i];
bool isImported = f->import.moduleUtf8 or f->import.fieldUtf8;
if (isImported)
continue;
for (int j = 0; j < f->numNames; j++)
{
if (f->names [j] and strcmp (f->names [j], i_name) == 0)
return f;
}
}
return NULL;
}
M3Result m3_FindFunction (IM3Function * o_function, IM3Runtime i_runtime, const char * const i_functionName)
{
M3Result result = m3Err_none; d_m3Assert (o_function and i_runtime and i_functionName);
IM3Function function = NULL;
if (not i_runtime->modules) {
_throw ("no modules loaded");
}
function = (IM3Function) ForEachModule (i_runtime, (ModuleVisitor) v_FindFunction, (void *) i_functionName);
if (function)
{
if (not function->compiled)
{
_ (CompileFunction (function))
}
}
else _throw (ErrorModule (m3Err_functionLookupFailed, i_runtime->modules, "'%s'", i_functionName));
_catch:
if (result)
function = NULL;
* o_function = function;
return result;
}
M3Result m3_GetTableFunction (IM3Function * o_function, IM3Module i_module, uint32_t i_index)
{
_try {
if (i_index >= i_module->table0Size)
{
_throw ("function index out of range");
}
IM3Function function = i_module->table0[i_index];
if (function)
{
if (not function->compiled)
{
_ (CompileFunction (function))
}
}
* o_function = function;
} _catch:
return result;
}
static
M3Result checkStartFunction(IM3Module i_module)
{
M3Result result = m3Err_none; d_m3Assert(i_module);
// Check if start function needs to be called
if (i_module->startFunction >= 0)
{
result = m3_RunStart (i_module);
}
return result;
}
uint32_t m3_GetArgCount (IM3Function i_function)
{
if (i_function) {
IM3FuncType ft = i_function->funcType;
if (ft) {
return ft->numArgs;
}
}
return 0;
}
uint32_t m3_GetRetCount (IM3Function i_function)
{
if (i_function) {
IM3FuncType ft = i_function->funcType;
if (ft) {
return ft->numRets;
}
}
return 0;
}
M3ValueType m3_GetArgType (IM3Function i_function, uint32_t index)
{
if (i_function) {
IM3FuncType ft = i_function->funcType;
if (ft and index < ft->numArgs) {
return (M3ValueType)d_FuncArgType(ft, index);
}
}
return c_m3Type_none;
}
M3ValueType m3_GetRetType (IM3Function i_function, uint32_t index)
{
if (i_function) {
IM3FuncType ft = i_function->funcType;
if (ft and index < ft->numRets) {
return (M3ValueType) d_FuncRetType (ft, index);
}
}
return c_m3Type_none;
}
u8 * GetStackPointerForArgs (IM3Function i_function)
{
u64 * stack = (u64 *) i_function->module->runtime->stack;
IM3FuncType ftype = i_function->funcType;
stack += ftype->numRets;
return (u8 *) stack;
}
M3Result m3_CallV (IM3Function i_function, ...)
{
va_list ap;
va_start(ap, i_function);
M3Result r = m3_CallVL(i_function, ap);
va_end(ap);
return r;
}
static
void ReportNativeStackUsage ()
{
# if d_m3LogNativeStack
int stackUsed = m3StackGetMax();
fprintf (stderr, "Native stack used: %d\n", stackUsed);
# endif
}
M3Result m3_CallVL (IM3Function i_function, va_list i_args)
{
IM3Runtime runtime = i_function->module->runtime;
IM3FuncType ftype = i_function->funcType;
M3Result result = m3Err_none;
u8* s = NULL;
if (!i_function->compiled) {
return m3Err_missingCompiledCode;
}
# if d_m3RecordBacktraces
ClearBacktrace (runtime);
# endif
m3StackCheckInit();
_ (checkStartFunction(i_function->module))
s = GetStackPointerForArgs (i_function);
for (u32 i = 0; i < ftype->numArgs; ++i)
{
switch (d_FuncArgType(ftype, i)) {
case c_m3Type_i32: *(i32*)(s) = va_arg(i_args, i32); s += 8; break;
case c_m3Type_i64: *(i64*)(s) = va_arg(i_args, i64); s += 8; break;
# if d_m3HasFloat
case c_m3Type_f32: *(f32*)(s) = va_arg(i_args, f64); s += 8; break; // f32 is passed as f64
case c_m3Type_f64: *(f64*)(s) = va_arg(i_args, f64); s += 8; break;
# endif
default: return "unknown argument type";
}
}
# if (d_m3EnableOpProfiling || d_m3EnableOpTracing)
result = (M3Result) RunCode (i_function->compiled, (m3stack_t)(runtime->stack), runtime->memory.mallocated, d_m3OpDefaultArgs, d_m3BaseCstr);
# else
result = (M3Result) RunCode (i_function->compiled, (m3stack_t)(runtime->stack), runtime->memory.mallocated, d_m3OpDefaultArgs);
# endif
ReportNativeStackUsage ();
runtime->lastCalled = result ? NULL : i_function;
_catch: return result;
}
M3Result m3_Call (IM3Function i_function, uint32_t i_argc, const void * i_argptrs[])
{
IM3Runtime runtime = i_function->module->runtime;
IM3FuncType ftype = i_function->funcType;
M3Result result = m3Err_none;
u8* s = NULL;
if (i_argc != ftype->numArgs) {
return m3Err_argumentCountMismatch;
}
if (!i_function->compiled) {
return m3Err_missingCompiledCode;
}
# if d_m3RecordBacktraces
ClearBacktrace (runtime);
# endif
m3StackCheckInit();
_ (checkStartFunction(i_function->module))
s = GetStackPointerForArgs (i_function);
for (u32 i = 0; i < ftype->numArgs; ++i)
{
switch (d_FuncArgType(ftype, i)) {
case c_m3Type_i32: *(i32*)(s) = *(i32*)i_argptrs[i]; s += 8; break;
case c_m3Type_i64: *(i64*)(s) = *(i64*)i_argptrs[i]; s += 8; break;
# if d_m3HasFloat
case c_m3Type_f32: *(f32*)(s) = *(f32*)i_argptrs[i]; s += 8; break;
case c_m3Type_f64: *(f64*)(s) = *(f64*)i_argptrs[i]; s += 8; break;
# endif
default: return "unknown argument type";
}
}
# if (d_m3EnableOpProfiling || d_m3EnableOpTracing)
result = (M3Result) RunCode (i_function->compiled, (m3stack_t)(runtime->stack), runtime->memory.mallocated, d_m3OpDefaultArgs, d_m3BaseCstr);
# else
result = (M3Result) RunCode (i_function->compiled, (m3stack_t)(runtime->stack), runtime->memory.mallocated, d_m3OpDefaultArgs);
# endif
ReportNativeStackUsage ();
runtime->lastCalled = result ? NULL : i_function;
_catch: return result;
}
M3Result m3_CallArgv (IM3Function i_function, uint32_t i_argc, const char * i_argv[])
{
IM3FuncType ftype = i_function->funcType;
IM3Runtime runtime = i_function->module->runtime;
M3Result result = m3Err_none;
u8* s = NULL;
if (i_argc != ftype->numArgs) {
return m3Err_argumentCountMismatch;
}
if (!i_function->compiled) {
return m3Err_missingCompiledCode;
}
# if d_m3RecordBacktraces
ClearBacktrace (runtime);
# endif
m3StackCheckInit();
_ (checkStartFunction(i_function->module))
s = GetStackPointerForArgs (i_function);
for (u32 i = 0; i < ftype->numArgs; ++i)
{