-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler.lua
1024 lines (908 loc) · 28.5 KB
/
compiler.lua
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
local memoryManager = require("memory")
local compiler = {}
local instructions
local kinds = {
Function = 0,
Table = 1,
Memory = 2,
Global = 3
}
local pageSize = 2^16
local function makeMemory(name, size)
return ([[
local %s = ffi.new("uint8_t[%d]")
local %sSize = %d
]]):format(name, size*pageSize, name, size)
end
local function constMemoryStore(memoryName, addr, segment)
local src = ""
for i = 1, #segment do
src = src .. ([[%s[%d] = %d
]]):format(memoryName, addr + i - 1, segment:sub(i, i):byte())
end
return src
end
local function mangleImport(ns, field)
return ns .. "__" .. field
end
local nameDebug = false
nameCounter = 0
nameAB = ("A"):byte()
function makeName()
if nameDebug then
nameCounter = nameCounter + 1
return "var" .. nameCounter
else
local build = ""
local thisCount = nameCounter
repeat
build = string.char(nameAB + (thisCount % 26)) .. build
thisCount = math.floor(thisCount / 26)
until thisCount == 0
nameCounter = nameCounter + 1
return build
end
end
local prefabs = {
unlinked = [[
for k, v in pairs(imports) do
imports[k] = function()
return error("Unlinked function: '" .. k .. "'")
end
end
]],
ifTrue = [[
local function checkCondition(cond)
return cond == true or (cond ~= false and cond ~= 0)
end
]],
memory = [[
local function storeMem(mem, memSize, addr, val, bytes)
if addr < 0 or addr > memSize*(2^16) then
error("Attempt to store outside bounds", 2)
end
if type(val) ~= "number" then
print(debug.traceback(), 8)
error("NaN Value", 2)
end
if bytes == 8 then
ffi.cast("uint" .. bytes .. "_t*", mem + addr)[0] = val
else
ffi.cast("int" .. bytes .. "_t*", mem + addr)[0] = val
end
end
local function storeFloat(mem, memSize, addr, val, bytes)
val = val or 0
if addr < 0 or addr > memSize*(2^16) then
error("Attempt to store outside bounds", 2)
end
if bytes == 8 then
ffi.cast("double*", mem + addr)[0] = val
else
ffi.cast("float*", mem + addr)[0] = val
end
end
local function readMem(mem, memSize, addr, bytes, signed)
if addr < 0 or addr > memSize*(2^16) then
error("Attempt to read outside bounds " .. addr, 2)
end
if signed then
return ffi.cast("int" .. bytes .. "_t*", mem + addr)[0]
else
return ffi.cast("uint" .. bytes .. "_t*", mem + addr)[0]
end
end
]],
cache = [[
local bit = require("bit")
local function clz_64(x)
if x == 0 then return 64 end
local n = 0
-- Hack to get around floor + bit operations not taking 64 bit numbers
local hi32 = math.floor ( tonumber ( x / 2^32 ) )
if hi32 == 0 then
n = n + 32
x = tonumber ( x % 2^32 )
else
x = hi32
end
if bit.band(x, 0xFFFF0000) == 0 then
n = n + 16
x = bit.lshift ( x , 16 )
end
if bit.band(x, 0xFF000000) == 0 then
n = n + 8
x = bit.lshift ( x, 8)
end
if bit.band(x, 0xF0000000) == 0 then
n = n + 4
x = bit.lshift ( x, 4)
end
if bit.band(x, 0xC0000000) == 0 then
n = n + 2
x = bit.lshift ( x, 2)
end
if bit.band(x, 0x80000000) == 0 then
n = n + 1
end
return n
end
local function clz_32(x)
if x == 0 then return 32 end
local n = 0
if bit.band(x, 0xFFFF0000) == 0 then
n = n + 16
x = bit.lshift ( x , 16 )
end
if bit.band(x, 0xFF000000) == 0 then
n = n + 8
x = bit.lshift ( x, 8)
end
if bit.band(x, 0xF0000000) == 0 then
n = n + 4
x = bit.lshift ( x, 4)
end
if bit.band(x, 0xC0000000) == 0 then
n = n + 2
x = bit.lshift ( x, 2)
end
if bit.band(x, 0x80000000) == 0 then
n = n + 1
end
return n
end
local function ctz_32(x)
if x == 0 then return 32 end
local n = 0
if bit.band(x, 0x0000FFFF) == 0 then
n = n + 16
x = bit.arshift ( x , 16 )
end
if bit.band(x, 0x000000FF) == 0 then
n = n + 8
x = bit.arshift ( x, 8)
end
if bit.band(x, 0x0000000F) == 0 then
n = n + 4
x = bit.arshift ( x, 4)
end
if bit.band(x, 0x00000003) == 0 then
n = n + 2
x = bit.arshift ( x, 2)
end
if bit.band(x, 0x00000001) == 0 then
n = n + 1
end
return n
end
]]
}
local function tee(stack, offset)
offset = offset or 0
return stack[#stack - offset]
end
local function pop(stack)
local val = stack[#stack]
stack[#stack] = nil
return val
end
local function push(stack, val)
stack[#stack + 1] = val
end
local function jumpInstr(loopQ)
if loopQ then
return "Start"
else
return "Finish"
end
end
local generators
generators = {
GetLocal = function(stack, instr, argList, fnLocals)
local index = instr.imVal
if index < #argList then
stack[#stack + 1] = argList[index + 1]
else
stack[#stack + 1] = fnLocals[index - #argList + 1]
end
end,
SetLocal = function(stack, instr, argList, fnLocals)
local index = instr.imVal
if index < #argList then
return (" %s = %s\n"):format(argList[index + 1], pop(stack))
else
return (" %s = %s\n"):format(fnLocals[index - #argList + 1], pop(stack))
end
end,
TeeLocal = function(stack, instr, argList, fnLocals)
local index = instr.imVal
if index < #argList then
return (" %s = %s\n"):format(argList[index + 1], tee(stack))
else
return (" %s = %s\n"):format(fnLocals[index - #argList + 1], tee(stack))
end
end,
GetGlobal = function(stack, instr, _, _, _, instance)
push(stack, instance.globals[instr.imVal])
end,
SetGlobal = function(stack, instr, _, _, _, instance)
return (" %s = %s\n"):format(instance.globals[instr.imVal], pop(stack))
end,
Call = function(stack, instr, argList, fnLocals, blockStack, instance)
-- TODO: ability to call imported functions
local realIndex = instr.imVal - instance.functionImportCount
local fnKind, fnName
if realIndex >= 0 then
local fn = instance.functions[instr.imVal]
fnKind = instance.sectionData[3][realIndex]
fnName = fn.name
else
-- Imported function
-- TODO rework this as we allow more import types because it WILL break
fnKind = instance.sectionData[2][instr.imVal].typeIndex
local import = instance.sectionData[2][instr.imVal]
fnName = ("imports['%s']"):format(mangleImport(import.module, import.field))
end
local sig = instance.sectionData[1][fnKind]
local passingArguments = {}
for i = 1, #sig.params do
passingArguments[#sig.params - i + 1] = pop(stack)
end
local results = {}
for i = 1, #sig.returns do
results[#results + 1] = makeName()
push(stack, results[#results])
end
if #results > 0 then
return (" local %s = %s(%s)\n"):format(table.concat(results, ", "), fnName, table.concat(passingArguments, ", "))
else
return (" %s(%s)\n"):format(fnName, table.concat(passingArguments, ", "))
end
end,
CallIndirect = function(stack, instr, argList, fnLocals, blockStack, instance)
local typeIndex = instr.imVal
local sig = instance.sectionData[1][typeIndex]
local tableIndex = pop(stack)
local passingArguments = {}
for i = 1, #sig.params do
passingArguments[#sig.params - i + 1] = pop(stack)
end
local results = {}
for i = 1, #sig.returns do
results[#results + 1] = makeName()
push(stack, results[#results])
end
local tableName = instance.tables[0] -- FIXME: After MVP it won't only have one table
if #results > 0 then
return (" local %s = %s[%s](%s)\n"):format(table.concat(results, ", "), tableName, tableIndex, table.concat(passingArguments, ", "))
else
return (" %s[%s](%s)\n"):format(tableName, tableIndex, table.concat(passingArguments, ", "))
end
end,
I32Add = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(%s + %s)"):format(a, b))
end,
I32Sub = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(%s - %s)"):format(a, b))
end,
I32Mul = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(%s * %s)"):format(a, b))
end,
I32DivU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(math.abs(math.floor(%s / %s)))"):format(a, b))
end,
I32DivS = function(stack)
-- FIXME: This is wrong
local b = pop(stack)
local a = pop(stack)
push(stack, ("(math.floor(%s / %s))"):format(a, b))
end,
I32RemU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(math.floor(%s %% %s))"):format(a, b))
end,
I32Shl = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.lshift(%s, %s))"):format(a, b))
end,
I32ShrU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.rshift(%s, %s))"):format(a, b))
end,
I32ShrS = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.arshift(%s, %s))"):format(a, b))
end,
I32Clz = function(stack)
local a = pop(stack)
push(stack, ("(clz_32(%s))"):format(a))
end,
I32Ctz = function(stack)
local a = pop(stack)
push(stack, ("(ctz_32(%s))"):format(a))
end,
I32And = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.band(%s, %s))"):format(a, b))
end,
I32Xor = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.bxor(%s, %s))"):format(a, b))
end,
I32Or = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.bor(%s, %s))"):format(a, b))
end,
I32Rotr = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.ror(%s, %s))"):format(a, b))
end,
I32Rotl = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(bit.rol(%s, %s))"):format(a, b))
end,
I32Const = function(stack, instr)
push(stack, tostring(instr.imVal))
end,
I32Ne = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("((%s ~= %s) and 1 or 0)"):format(a, b))
end,
I32Eq = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("((%s == %s) and 1 or 0)"):format(a, b))
end,
I32Eqz = function(stack)
local a = pop(stack)
push(stack, ("((%s == 0) and 1 or 0)"):format(a))
end,
I32GtU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("((%s > %s) and 1 or 0)"):format(a, b))
end,
I32GeU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("((%s >= %s) and 1 or 0)"):format(a, b))
end,
I32LtU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("((%s < %s) and 1 or 0)"):format(a, b))
end,
I32LeU = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("((%s <= %s) and 1 or 0)"):format(a, b))
end,
F64Div = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("(%s / %s)"):format(a, b))
end,
F64ConvertUI32 = function(stack)
local a = pop(stack)
push(stack, ("math.abs(%s)"):format(a))
end,
I32TruncUF64 = function(stack)
local a = pop(stack)
push(stack, ("math.floor(math.abs(%s))"):format(a))
end,
I32TruncSF64 = function(stack)
local a = pop(stack)
push(stack, ("math.floor(%s)"):format(a))
end,
F64Trunc = function(stack)
local a = pop(stack)
push(stack, ("math.floor(%s)"):format(a))
end,
F64Abs = function(stack)
local a = pop(stack)
push(stack, ("math.abs(%s)"):format(a))
end,
F64Floor = function(stack)
local a = pop(stack)
push(stack, ("math.floor(%s)"):format(a))
end,
F64Ceil = function(stack)
local a = pop(stack)
push(stack, ("math.ceil(%s)"):format(a))
end,
F64Nearest = function(stack)
-- TODO: actually round
local a = pop(stack)
push(stack, ("math.floor(%s)"):format(a))
end,
F64Sqrt = function(stack)
local a = pop(stack)
push(stack, ("math.sqrt(%s)"):format(a))
end,
F64Min = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("math.min(%s, %s)"):format(a, b))
end,
F64Max = function(stack)
local b = pop(stack)
local a = pop(stack)
push(stack, ("math.max(%s, %s)"):format(a, b))
end,
I64ExtendSI32 = function(stack, instr)
error("TODO")
push(stack, tostring(instr.imVal))
end,
I64ExtendUI32 = function(stack, instr)
push(stack, tostring(instr.imVal))
end,
I32WrapI64 = function(stack)
local a = pop(stack)
push(stack, ("(%s %% 0xffffffff)"):format(a))
end,
Block = function(stack, instr, argList, fnLocals, blockStack, instance, fn, customDo, loopq)
loopq = loopq or false
customDo = customDo or "do"
if instr.imVal == -0x40 then
-- Block does not return anything
local blockLabel = makeName()
push(blockStack, {label = blockLabel, exit = function()
-- We got popped by an 'End', but we have nothing to return
end, loop = loopq})
return (" %s ::%sStart::\n"):format(customDo, blockLabel)
else
-- Block returns something
local blockResult = makeName()
local blockLabel = makeName()
push(blockStack, {label = blockLabel, exit = function(actor, shouldAct, shouldPop)
-- We got popped by an 'End'
local res = shouldPop and pop(stack) or tee(stack)
actor((" %s = %s\n"):format(blockResult, res))
if shouldAct then
push(stack, blockResult)
end
end, loop = loopq})
return (" local %s\n %s ::%sStart::\n"):format(blockResult, customDo, blockLabel)
end
end,
Loop = function(stack, instr, a, b, blockStack)
return generators.Block(stack, instr, a, b, blockStack, nil, nil, nil, true)
end,
If = function(stack, instr, a, b, blockStack, c, d)
local cond = pop(stack)
return generators.Block(stack, instr, a, b, blockStack, c, d, ("if checkCondition(%s) then"):format(cond))
end,
Else = function(stack, _, _, _, blockStack)
local effect = ""
tee(blockStack).exit(function(str)
effect = str
end, false, true)
return effect .. " else\n"
end,
End = function(stack, _, _, _, blockStack)
local effect = ""
local block = pop(blockStack)
block.exit(function(str)
effect = str
end, true, true)
-- TODO: Investigate effect jumping
return (" %s\n ::%sFinish::\n end\n"):format(effect, block.label)
end,
BrTable = function(stack, instr, a, b, blockStack, c, fn) --valueStack, instr, argList, fnLocals, blockStack, t, k
local cond = pop(stack)
local effects = {}
for i = 1, #instr.imVal do
effects[i] = ""
for j = 0, instr.imVal[i] - 1 do
tee(blockStack, j).exit(function(str)
effects[i] = effects[i] .. (str or "")
end, false, false)
end
end
effects.default = ""
for j = 0, instr.imVal.default - 1 do
tee(blockStack, j).exit(function(str)
effects.default = effects.default .. (str or "")
end, false, false)
end
local final = ""
for offset, effect in pairs(effects) do
local depth = instr.imVal[offset]
if depth == #blockStack then -- TODO: Evaluate hygiene of Return Generator in this case
local retInstr = generators.Return(stack, instr, a, b, blockStack, c, fn)
if offset == "default" then
final = final .. (" %s %s\n"):format(effect, retInstr)
else
final = final .. (" if (%s) == %s then\n %s %s\n end\n"):format(cond, offset - 1, effect, retInstr)
end
else
local block = tee(blockStack, depth)
local breakLabel = block.label
local breakInstr = jumpInstr(block.loop)
if offset == "default" then
final = final .. (" %s goto %s%s\n"):format(effect, breakLabel, breakInstr)
else
final = final .. (" if (%s) == %s then\n %s goto %s%s\n end\n"):format(cond, offset - 1, effect, breakLabel, breakInstr)
end
end
end
return final
end,
BrIf = function(stack, instr, a, b, blockStack, c, fn)
local cond = pop(stack)
local effect = ""
for i = 0, instr.imVal - 1 do
tee(blockStack, i).exit(function(str)
effect = effect .. (str or "")
end, false, false)
end
if instr.imVal == #blockStack then
local retInstr = generators.Return(stack, instr, a, b, blockStack, c, fn)
return (" if checkCondition(%s) then\n %s %s\n end\n"):format(cond, effect, retInstr)
else
local block = tee(blockStack, instr.imVal)
local breakLabel = block.label
local breakInstr = jumpInstr(block.loop)
return (" if checkCondition(%s) then\n %s goto %s%s\n end\n"):format(cond, effect, breakLabel, breakInstr)
end
end,
Br = function(stack, instr, a, b, blockStack, c, fn)
local effect = ""
for i = 0, instr.imVal - 1 do
tee(blockStack, i).exit(function(str)
effect = effect .. (str or "")
end, false, false)
end
if instr.imVal == #blockStack then
return generators.Return(stack, instr, a, b, blockStack, c, fn)
end
local block = tee(blockStack, instr.imVal)
local jumpLabel = block.label
local jumpInstr = jumpInstr(block.loop)
return ("%s goto %s%s\n"):format(effect, jumpLabel, jumpInstr)
end,
Drop = function(stack)
pop(stack)
end,
Select = function(stack)
local cond = pop(stack)
local rhs = pop(stack)
local lhs = pop(stack)
push(stack, ("(select(checkCondition(%s) and 1 or 2, (%s), (%s)))"):format(cond, lhs, rhs))
end,
I32Load = function(stack, instr, _, _, _, instance)
local addr = pop(stack)
local offset = instr.imVal.offset
push(stack, ([[(readMem(%s, %sSize, %s + %s, 32, false))]]):format(instance.memories[0], instance.memories[0], addr, offset)) -- ffi.cast("uint32_t*", %s + %s)[0]
end,
I32Load8U = function(stack, instr, _, _, _, instance)
local addr = pop(stack)
local offset = instr.imVal.offset
push(stack, ([[(readMem(%s, %sSize, %s + %s, 8, false))]]):format(instance.memories[0], instance.memories[0], addr, offset)) -- ffi.cast("uint8_t*", %s + %s)[0]
end,
I32Load16U = function(stack, instr, _, _, _, instance)
local addr = pop(stack)
local offset = instr.imVal.offset
push(stack, ([[(readMem(%s, %sSize, %s + %s, 16, false))]]):format(instance.memories[0], instance.memories[0], addr, offset)) -- ffi.cast("uint16_t*", %s + %s)[0]
end,
I32Load8S = function(stack, instr, _, _, _, instance)
local addr = pop(stack)
local offset = instr.imVal.offset
push(stack, ([[(readMem(%s, %sSize, %s + %s, 8, true))]]):format(instance.memories[0], instance.memories[0], addr, offset)) -- ffi.cast("uint8_t*", %s + %s)[0]
end,
I32Store = function(stack, instr, _, _, _, instance)
local value = pop(stack)
local addr = pop(stack)
local offset = instr.imVal.offset
return ([[ storeMem(%s, %sSize, %s + %s, %s, 32)]] .. "\n"):format(instance.memories[0], instance.memories[0], addr, offset, value, "\n") -- ffi.cast("uint32_t*", %s + %s)[0] = %s%s
end,
I32Store8 = function(stack, instr, _, _, _, instance)
local value = pop(stack)
local addr = pop(stack)
local offset = instr.imVal.offset
return ([[ storeMem(%s, %sSize, %s + %s, %s, 8)]] .. "\n"):format(instance.memories[0], instance.memories[0], addr, offset, value, "\n") -- ffi.cast("uint8_t*", %s + %s)[0] = %s%s
end,
I32Store16 = function(stack, instr, _, _, _, instance)
local value = pop(stack)
local addr = pop(stack)
local offset = instr.imVal.offset
return ([[ storeMem(%s, %sSize, %s + %s, %s, 16)]] .. "\n"):format(instance.memories[0], instance.memories[0], addr, offset, value, "\n") -- ffi.cast("uint16_t*", %s + %s)[0] = %s%s
end,
I64Load = function(stack, instr, _, _, _, instance)
local addr = pop(stack)
local offset = instr.imVal.offset
push(stack, ([[(ffi.cast("uint64_t*", %s + %s + %s)[0])]]):format(instance.memories[0], addr, offset))
end,
I64Store = function(stack, instr, _, _, _, instance)
local value = pop(stack)
local addr = pop(stack)
local offset = instr.imVal.offset
return ([[ storeMem(%s, %sSize, %s + %s, %s, 64)]] .. "\n"):format(instance.memories[0], instance.memories[0], addr, offset, value, "\n") -- ffi.cast("uint64_t*", %s + %s)[0] = %s%s
end,
F64Load = function(stack, instr, _, _, _, instance)
local addr = pop(stack)
local offset = instr.imVal.offset
push(stack, ([[(ffi.cast("double*", %s + %s + %s)[0])]]):format(instance.memories[0], addr, offset))
end,
F64Store = function(stack, instr, _, _, _, instance)
local value = pop(stack)
local addr = pop(stack)
local offset = instr.imVal.offset
return ([[ storeFloat(%s, %sSize, %s + %s, %s, 8)]]):format(instance.memories[0], instance.memories[0], addr, offset, value, "\n") -- ffi.cast("double*", %s + %s)[0] = %s%s
end,
MemorySize = function(stack, _, _, _, _, instance)
push(stack, instance.memories[0] .. "Size")
end,
MemoryGrow = function(stack, _, _, _, _, instance)
local temp = makeName()
local delta = pop(stack)
push(stack, 2)
-- TODO: find a better way to do this
local extraLogic = ""
if instance.sectionData[7] then
for k, v in pairs(instance.sectionData[7]) do
if v.kind == kinds.Memory then
-- FIXME: This won't work after wasm MVP, because multiple memories
extraLogic = ([[
exportTable.%s = %s
]]):format(k, instance.memories[0])
end
end
end
return ([[ local %s = ffi.new("uint8_t[" .. (%sSize + %s)*%d .. "]")
ffi.copy(%s, %s, %sSize*%d)
%s, %sSize = %s, (%sSize + %s)
]]):format(temp, instance.memories[0], delta, pageSize,
temp, instance.memories[0], instance.memories[0], pageSize,
instance.memories[0], instance.memories[0], temp, instance.memories[0], delta) .. extraLogic
end,
Return = function(stack, _, _, _, _, instance, fn)
local fnKind = instance.sectionData[3][fn]
local sig = instance.sectionData[1][fnKind]
local results = {}
for i = 1, #sig.returns do
push(results, pop(stack))
end
return (" if true then return %s end\n"):format(table.concat(results, ", "))
end,
Unreachable = function()
return " error(\"Unreachable code reached..\", 2)\n"
end,
Nop = function() end
}
do -- Redundant Generators
local g = generators
g.I64Const = g.I32Const
g.F32Const = g.I32Const
g.F64Const = g.I32Const
g.I64Load32U = g.I32Load
g.I32LtS = g.I32LtU
g.I32LeS = g.I32LeU
g.I32GtS = g.I32GtU
g.I32GeS = g.I32GeU
g.I64LtS = g.I32LtU
g.I64LtU = g.I32LtU
g.I64GtU = g.I32GtU
-- Yikes, look into 64bit binops in the future
g.I64Shl = g.I32Shl
g.I64Or = g.I32Or
g.I64Sub = g.I32Sub
g.I64Mul = g.I32Mul
g.I64DivU = g.I32DivU
g.I64DivS = g.I32DivS
g.F64Ne = g.I32Ne
g.F64Eq = g.I32Eq
g.F64Ge = g.I32GeU
g.F64Gt = g.I32GtU
g.F64Lt = g.I32LtU
g.F64Le = g.I32LeU
g.F64Add = g.I32Add
g.F64Sub = g.I32Sub
g.F64Mul = g.I32Mul
g.F32Div = g.F64Div
g.I32TruncSF32 = g.I32TruncSF64
g.F64ConvertSI32 = g.Nop
end
function compiler.newInstance(sectionData)
local t = {}
t.sectionData = sectionData
-- TODO 'imported' functions DONE?
-- TODO setup memory DONE?
-- TODO setup globals DONE?
-- TODO setup table
print("STARTED COMPILATION")
if shell then shell.draw() end
t.source = ""
t.importTable = {}
t.tables = {}
t.globals = {}
t.memories = {}
t.functions = {}
t.functionImportCount = 0
local importCount = 0
if sectionData[2] then
-- TODO other imports
t.source = t.source .. "local imports = {"
for k, v in pairs(sectionData[2]) do
importCount = importCount + 1
t.functionImportCount = t.functionImportCount + 1
t.source = t.source .. ("['%s'] = 0,"):format(mangleImport(v.module, v.field))
end
t.source = t.source .. "}\n" .. prefabs.unlinked
end
t.source = t.source .. prefabs.cache
t.source = t.source .. prefabs.ifTrue
t.source = t.source .. prefabs.memory
if sectionData[7] then
-- Forward declare export section so that we can swap out entries at runtime
t.source = t.source .. "local exportTable = {}"
end
if sectionData[5] then
-- Setup memory
for k, v in pairs(sectionData[5]) do
local name = makeName()
t.source = t.source .. makeMemory(name, v.limits.initial)
t.memories[k] = name
end
end
if sectionData[6] then
-- Setup globals
for k, v in pairs(sectionData[6]) do
t.globals[k] = makeName()
t.source = t.source .. ("local %s = %d\n"):format(t.globals[k], v.value)
end
end
if sectionData[11] then
for i = 1, #sectionData[11] do
local segment = sectionData[11][i]
t.source = t.source .. constMemoryStore(t.memories[segment.index], segment.addr, segment.data)
end
end
local fnCount = 0
if sectionData[10] then
local names = {}
for k, v in pairs(sectionData[10]) do
names[#names + 1] = makeName()
t.functions[importCount + k] = {name = names[#names], index = k, info = v}
fnCount = fnCount + 1
end
if #names > 0 then
t.source = t.source .. "local " .. table.concat(names, ", ") .. "\n"
end
end
local tableContents
if sectionData[9] then
-- Setup tables TODO:
tableContents = {}
for k, v in pairs(sectionData[9]) do
local name = makeName()
t.tables[k] = name
tableContents[name] = {}
for i, fn in pairs(v) do
table.insert(tableContents[name], ("[%s] = %s"):format(i, t.functions[fn].name))
end
t.source = t.source .. ("local %s\n"):format(name)
end
end
local fnMade = 0
for k, v in pairs(sectionData[10]) do
fnMade = fnMade + 1
print(("Generating func %s/%s"):format(fnMade, fnCount))
-- Generate function body
local argList = {}
local fnKind = t.sectionData[3][k]
local sig = t.sectionData[1][fnKind]
for i = 1, #sig.params do
argList[#argList + 1] = makeName()
end
local fnName = t.functions[importCount + k].name
t.source = t.source .. ("function %s(%s)\n"):format(fnName, table.concat(argList, ", "))
-- Function stack, used only for generation, we can optimize away the stack using inlining
local valueStack = {}
local blockStack = {}
-- Generate function locals
local fnLocals = {}
for i = 1, #v.locals do
fnLocals[i] = makeName()
t.source = t.source .. (" local %s = 0\n"):format(fnLocals[i])
end
-- Generate opcode instructions
for i, instr in ipairs(v.instructions) do
if generators[instr.enum] then
local out = generators[instr.enum](valueStack, instr, argList, fnLocals, blockStack, t, k)
if out then
t.source = t.source .. out
end
else
debugTrace("Source:\n" .. t.source)
do
local handle = fs.open("debug.err.lua", "w")
handle:write(t.source)
handle:close()
end
error("No generator for '" .. instr.enum .. "'")
end
end
if #valueStack > 0 then
-- results
t.source = t.source .. " return " .. table.concat(valueStack, ", ") .. "\n"
end
t.source = t.source .. "end\n"
end
-- Now we can insert Table contents, since all the functions have been declared now
if tableContents then
for tableName, contents in pairs(tableContents) do
t.source = t.source .. ("%s = { %s }\n"):format(tableName, table.concat(contents, ", "))
end
end
-- Exports
if sectionData[7] then
for k, v in pairs(sectionData[7]) do
t.source = t.source .. "exportTable."
if v.kind == kinds.Function then
t.source = t.source .. ("%s = %s\n"):format(k, t.functions[v.index].name)
elseif v.kind == kinds.Memory then
t.source = t.source .. ("%s = %s\n"):format(k, t.memories[v.index])
elseif v.kind == kinds.Table then
t.source = t.source .. ("%s = %s\n"):format(k, t.tables[v.index])
else
error("Unsupported export: '" .. v.kind .. "'", 0)
end
end
end
t.source = t.source .. "return { "
if sectionData[7] then
t.source = t.source .. "exports = exportTable, "
end
-- Import Linking
if sectionData[2] then
-- TODO other imports
t.source = t.source .. "importTable = imports, "
end
if sectionData[8] then
t.source = t.source .. "start = "
.. ("%s "):format(t.functions[sectionData[8]].name)
end
t.source = t.source .. "}\n"
do
local handle = fs.open("debug.out.lua", "w")
handle:write(t.source)
handle:close()
end