forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class-overloading-cast.debug.wat
3180 lines (3180 loc) · 66.7 KB
/
class-overloading-cast.debug.wat
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
(module
(type $i32_=>_i32 (func_subtype (param i32) (result i32) func))
(type $i32_i32_=>_none (func_subtype (param i32 i32) func))
(type $i32_i32_=>_i32 (func_subtype (param i32 i32) (result i32) func))
(type $i32_=>_none (func_subtype (param i32) func))
(type $none_=>_none (func_subtype func))
(type $i32_f64_=>_i32 (func_subtype (param i32 f64) (result i32) func))
(type $i32_i32_i32_=>_none (func_subtype (param i32 i32 i32) func))
(type $i32_i32_i32_i32_=>_none (func_subtype (param i32 i32 i32 i32) func))
(type $i32_i32_i32_=>_i32 (func_subtype (param i32 i32 i32) (result i32) func))
(type $none_=>_i32 (func_subtype (result i32) func))
(type $i32_i32_i32_i32_i32_=>_i32 (func_subtype (param i32 i32 i32 i32 i32) (result i32) func))
(type $i32_f32_=>_i32 (func_subtype (param i32 f32) (result i32) func))
(import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32)))
(global $~lib/rt/itcms/total (mut i32) (i32.const 0))
(global $~lib/rt/itcms/threshold (mut i32) (i32.const 0))
(global $~lib/rt/itcms/state (mut i32) (i32.const 0))
(global $~lib/rt/itcms/visitCount (mut i32) (i32.const 0))
(global $~lib/rt/itcms/pinSpace (mut i32) (i32.const 0))
(global $~lib/rt/itcms/iter (mut i32) (i32.const 0))
(global $~lib/rt/itcms/toSpace (mut i32) (i32.const 0))
(global $~lib/rt/itcms/white (mut i32) (i32.const 0))
(global $~lib/shared/runtime/Runtime.Stub i32 (i32.const 0))
(global $~lib/shared/runtime/Runtime.Minimal i32 (i32.const 1))
(global $~lib/shared/runtime/Runtime.Incremental i32 (i32.const 2))
(global $~lib/rt/itcms/fromSpace (mut i32) (i32.const 0))
(global $~lib/rt/tlsf/ROOT (mut i32) (i32.const 0))
(global $~lib/native/ASC_LOW_MEMORY_LIMIT i32 (i32.const 0))
(global $class-overloading-cast/v (mut i32) (i32.const 0))
(global $class-overloading-cast/v2 (mut i32) (i32.const 0))
(global $class-overloading-cast/v3 (mut i32) (i32.const 0))
(global $~lib/native/ASC_SHRINK_LEVEL i32 (i32.const 0))
(global $class-overloading-cast/c (mut i32) (i32.const 0))
(global $~lib/rt/__rtti_base i32 (i32.const 624))
(global $~lib/memory/__data_end i32 (i32.const 684))
(global $~lib/memory/__stack_pointer (mut i32) (i32.const 33452))
(global $~lib/memory/__heap_base i32 (i32.const 33452))
(global $~started (mut i32) (i32.const 0))
(memory $0 1)
(data (i32.const 12) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00(\00\00\00A\00l\00l\00o\00c\00a\00t\00i\00o\00n\00 \00t\00o\00o\00 \00l\00a\00r\00g\00e\00\00\00\00\00")
(data (i32.const 76) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00 \00\00\00~\00l\00i\00b\00/\00r\00t\00/\00i\00t\00c\00m\00s\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 144) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 176) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 204) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00$\00\00\00I\00n\00d\00e\00x\00 \00o\00u\00t\00 \00o\00f\00 \00r\00a\00n\00g\00e\00\00\00\00\00\00\00\00\00")
(data (i32.const 268) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\00~\00l\00i\00b\00/\00r\00t\00.\00t\00s\00\00\00\00\00\00\00\00\00")
(data (i32.const 320) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 348) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00~\00l\00i\00b\00/\00r\00t\00/\00t\00l\00s\00f\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 412) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00A\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 444) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00B\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 476) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\002\00\00\00c\00l\00a\00s\00s\00-\00o\00v\00e\00r\00l\00o\00a\00d\00i\00n\00g\00-\00c\00a\00s\00t\00.\00t\00s\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 556) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00a\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 588) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00D\00\00\00\00\00\00\00\00\00\00\00")
(data (i32.const 624) "\0e\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00 \00\00\00")
(table $0 1 1 funcref)
(elem $0 (i32.const 1))
(export "memory" (memory $0))
(export "_start" (func $~start))
(func $~lib/rt/itcms/Object#set:nextWithColor (type $i32_i32_=>_none) (param $this i32) (param $nextWithColor i32)
local.get $this
local.get $nextWithColor
i32.store $0 offset=4
)
(func $~lib/rt/itcms/Object#set:prev (type $i32_i32_=>_none) (param $this i32) (param $prev i32)
local.get $this
local.get $prev
i32.store $0 offset=8
)
(func $~lib/rt/itcms/initLazy (type $i32_=>_i32) (param $space i32) (result i32)
local.get $space
local.get $space
call $~lib/rt/itcms/Object#set:nextWithColor
local.get $space
local.get $space
call $~lib/rt/itcms/Object#set:prev
local.get $space
)
(func $~lib/rt/itcms/Object#get:nextWithColor (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0 offset=4
)
(func $~lib/rt/itcms/Object#get:next (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
call $~lib/rt/itcms/Object#get:nextWithColor
i32.const 3
i32.const -1
i32.xor
i32.and
)
(func $~lib/rt/itcms/Object#get:color (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
call $~lib/rt/itcms/Object#get:nextWithColor
i32.const 3
i32.and
)
(func $~lib/rt/itcms/visitRoots (type $i32_=>_none) (param $cookie i32)
(local $pn i32)
(local $iter i32)
(local $3 i32)
local.get $cookie
call $~lib/rt/__visit_globals
global.get $~lib/rt/itcms/pinSpace
local.set $pn
local.get $pn
call $~lib/rt/itcms/Object#get:next
local.set $iter
loop $while-continue|0
local.get $iter
local.get $pn
i32.ne
local.set $3
local.get $3
if
i32.const 1
drop
local.get $iter
call $~lib/rt/itcms/Object#get:color
i32.const 3
i32.eq
i32.eqz
if
i32.const 0
i32.const 96
i32.const 160
i32.const 16
call $~lib/builtins/abort
unreachable
end
local.get $iter
i32.const 20
i32.add
local.get $cookie
call $~lib/rt/__visit_members
local.get $iter
call $~lib/rt/itcms/Object#get:next
local.set $iter
br $while-continue|0
end
end
)
(func $~lib/rt/itcms/Object#set:color (type $i32_i32_=>_none) (param $this i32) (param $color i32)
local.get $this
local.get $this
call $~lib/rt/itcms/Object#get:nextWithColor
i32.const 3
i32.const -1
i32.xor
i32.and
local.get $color
i32.or
call $~lib/rt/itcms/Object#set:nextWithColor
)
(func $~lib/rt/itcms/Object#get:prev (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0 offset=8
)
(func $~lib/rt/itcms/Object#set:next (type $i32_i32_=>_none) (param $this i32) (param $obj i32)
local.get $this
local.get $obj
local.get $this
call $~lib/rt/itcms/Object#get:nextWithColor
i32.const 3
i32.and
i32.or
call $~lib/rt/itcms/Object#set:nextWithColor
)
(func $~lib/rt/itcms/Object#unlink (type $i32_=>_none) (param $this i32)
(local $next i32)
(local $prev i32)
local.get $this
call $~lib/rt/itcms/Object#get:next
local.set $next
local.get $next
i32.const 0
i32.eq
if
i32.const 1
drop
local.get $this
call $~lib/rt/itcms/Object#get:prev
i32.const 0
i32.eq
if (result i32)
local.get $this
global.get $~lib/memory/__heap_base
i32.lt_u
else
i32.const 0
end
i32.eqz
if
i32.const 0
i32.const 96
i32.const 128
i32.const 18
call $~lib/builtins/abort
unreachable
end
return
end
local.get $this
call $~lib/rt/itcms/Object#get:prev
local.set $prev
i32.const 1
drop
local.get $prev
i32.eqz
if
i32.const 0
i32.const 96
i32.const 132
i32.const 16
call $~lib/builtins/abort
unreachable
end
local.get $next
local.get $prev
call $~lib/rt/itcms/Object#set:prev
local.get $prev
local.get $next
call $~lib/rt/itcms/Object#set:next
)
(func $~lib/rt/itcms/Object#get:rtId (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0 offset=12
)
(func $~lib/shared/typeinfo/Typeinfo#get:flags (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0
)
(func $~lib/rt/__typeinfo (type $i32_=>_i32) (param $id i32) (result i32)
(local $ptr i32)
global.get $~lib/rt/__rtti_base
local.set $ptr
local.get $id
local.get $ptr
i32.load $0
i32.gt_u
if
i32.const 224
i32.const 288
i32.const 21
i32.const 28
call $~lib/builtins/abort
unreachable
end
local.get $ptr
i32.const 4
i32.add
local.get $id
i32.const 4
i32.mul
i32.add
call $~lib/shared/typeinfo/Typeinfo#get:flags
)
(func $~lib/rt/itcms/Object#get:isPointerfree (type $i32_=>_i32) (param $this i32) (result i32)
(local $rtId i32)
local.get $this
call $~lib/rt/itcms/Object#get:rtId
local.set $rtId
local.get $rtId
i32.const 2
i32.le_u
if (result i32)
i32.const 1
else
local.get $rtId
call $~lib/rt/__typeinfo
i32.const 32
i32.and
i32.const 0
i32.ne
end
)
(func $~lib/rt/itcms/Object#linkTo (type $i32_i32_i32_=>_none) (param $this i32) (param $list i32) (param $withColor i32)
(local $prev i32)
local.get $list
call $~lib/rt/itcms/Object#get:prev
local.set $prev
local.get $this
local.get $list
local.get $withColor
i32.or
call $~lib/rt/itcms/Object#set:nextWithColor
local.get $this
local.get $prev
call $~lib/rt/itcms/Object#set:prev
local.get $prev
local.get $this
call $~lib/rt/itcms/Object#set:next
local.get $list
local.get $this
call $~lib/rt/itcms/Object#set:prev
)
(func $~lib/rt/itcms/Object#makeGray (type $i32_=>_none) (param $this i32)
(local $1 i32)
local.get $this
global.get $~lib/rt/itcms/iter
i32.eq
if
local.get $this
call $~lib/rt/itcms/Object#get:prev
local.tee $1
i32.eqz
if (result i32)
i32.const 0
i32.const 96
i32.const 148
i32.const 30
call $~lib/builtins/abort
unreachable
else
local.get $1
end
global.set $~lib/rt/itcms/iter
end
local.get $this
call $~lib/rt/itcms/Object#unlink
local.get $this
global.get $~lib/rt/itcms/toSpace
local.get $this
call $~lib/rt/itcms/Object#get:isPointerfree
if (result i32)
global.get $~lib/rt/itcms/white
i32.eqz
else
i32.const 2
end
call $~lib/rt/itcms/Object#linkTo
)
(func $~lib/rt/itcms/__visit (type $i32_i32_=>_none) (param $ptr i32) (param $cookie i32)
(local $obj i32)
local.get $ptr
i32.eqz
if
return
end
local.get $ptr
i32.const 20
i32.sub
local.set $obj
i32.const 0
drop
local.get $obj
call $~lib/rt/itcms/Object#get:color
global.get $~lib/rt/itcms/white
i32.eq
if
local.get $obj
call $~lib/rt/itcms/Object#makeGray
global.get $~lib/rt/itcms/visitCount
i32.const 1
i32.add
global.set $~lib/rt/itcms/visitCount
end
)
(func $~lib/rt/itcms/visitStack (type $i32_=>_none) (param $cookie i32)
(local $ptr i32)
(local $2 i32)
global.get $~lib/memory/__stack_pointer
local.set $ptr
loop $while-continue|0
local.get $ptr
global.get $~lib/memory/__heap_base
i32.lt_u
local.set $2
local.get $2
if
local.get $ptr
i32.load $0
local.get $cookie
call $~lib/rt/itcms/__visit
local.get $ptr
i32.const 4
i32.add
local.set $ptr
br $while-continue|0
end
end
)
(func $~lib/rt/common/BLOCK#get:mmInfo (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0
)
(func $~lib/rt/itcms/Object#get:size (type $i32_=>_i32) (param $this i32) (result i32)
i32.const 4
local.get $this
call $~lib/rt/common/BLOCK#get:mmInfo
i32.const 3
i32.const -1
i32.xor
i32.and
i32.add
)
(func $~lib/rt/tlsf/Root#set:flMap (type $i32_i32_=>_none) (param $this i32) (param $flMap i32)
local.get $this
local.get $flMap
i32.store $0
)
(func $~lib/rt/common/BLOCK#set:mmInfo (type $i32_i32_=>_none) (param $this i32) (param $mmInfo i32)
local.get $this
local.get $mmInfo
i32.store $0
)
(func $~lib/rt/tlsf/Block#set:prev (type $i32_i32_=>_none) (param $this i32) (param $prev i32)
local.get $this
local.get $prev
i32.store $0 offset=4
)
(func $~lib/rt/tlsf/Block#set:next (type $i32_i32_=>_none) (param $this i32) (param $next i32)
local.get $this
local.get $next
i32.store $0 offset=8
)
(func $~lib/rt/tlsf/Block#get:prev (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0 offset=4
)
(func $~lib/rt/tlsf/Block#get:next (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0 offset=8
)
(func $~lib/rt/tlsf/Root#get:flMap (type $i32_=>_i32) (param $this i32) (result i32)
local.get $this
i32.load $0
)
(func $~lib/rt/tlsf/removeBlock (type $i32_i32_=>_none) (param $root i32) (param $block i32)
(local $blockInfo i32)
(local $size i32)
(local $fl i32)
(local $sl i32)
(local $6 i32)
(local $7 i32)
(local $boundedSize i32)
(local $prev i32)
(local $next i32)
(local $root|11 i32)
(local $fl|12 i32)
(local $sl|13 i32)
(local $root|14 i32)
(local $fl|15 i32)
(local $sl|16 i32)
(local $head i32)
(local $root|18 i32)
(local $fl|19 i32)
(local $slMap i32)
(local $root|21 i32)
(local $fl|22 i32)
(local $slMap|23 i32)
local.get $block
call $~lib/rt/common/BLOCK#get:mmInfo
local.set $blockInfo
i32.const 1
drop
local.get $blockInfo
i32.const 1
i32.and
i32.eqz
if
i32.const 0
i32.const 368
i32.const 268
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $blockInfo
i32.const 3
i32.const -1
i32.xor
i32.and
local.set $size
i32.const 1
drop
local.get $size
i32.const 12
i32.ge_u
i32.eqz
if
i32.const 0
i32.const 368
i32.const 270
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $size
i32.const 256
i32.lt_u
if
i32.const 0
local.set $fl
local.get $size
i32.const 4
i32.shr_u
local.set $sl
else
local.get $size
local.tee $6
i32.const 1073741820
local.tee $7
local.get $6
local.get $7
i32.lt_u
select
local.set $boundedSize
i32.const 31
local.get $boundedSize
i32.clz
i32.sub
local.set $fl
local.get $boundedSize
local.get $fl
i32.const 4
i32.sub
i32.shr_u
i32.const 1
i32.const 4
i32.shl
i32.xor
local.set $sl
local.get $fl
i32.const 8
i32.const 1
i32.sub
i32.sub
local.set $fl
end
i32.const 1
drop
local.get $fl
i32.const 23
i32.lt_u
if (result i32)
local.get $sl
i32.const 16
i32.lt_u
else
i32.const 0
end
i32.eqz
if
i32.const 0
i32.const 368
i32.const 284
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $block
call $~lib/rt/tlsf/Block#get:prev
local.set $prev
local.get $block
call $~lib/rt/tlsf/Block#get:next
local.set $next
local.get $prev
if
local.get $prev
local.get $next
call $~lib/rt/tlsf/Block#set:next
end
local.get $next
if
local.get $next
local.get $prev
call $~lib/rt/tlsf/Block#set:prev
end
local.get $block
local.get $root
local.set $root|11
local.get $fl
local.set $fl|12
local.get $sl
local.set $sl|13
local.get $root|11
local.get $fl|12
i32.const 4
i32.shl
local.get $sl|13
i32.add
i32.const 2
i32.shl
i32.add
i32.load $0 offset=96
i32.eq
if
local.get $root
local.set $root|14
local.get $fl
local.set $fl|15
local.get $sl
local.set $sl|16
local.get $next
local.set $head
local.get $root|14
local.get $fl|15
i32.const 4
i32.shl
local.get $sl|16
i32.add
i32.const 2
i32.shl
i32.add
local.get $head
i32.store $0 offset=96
local.get $next
i32.eqz
if
local.get $root
local.set $root|18
local.get $fl
local.set $fl|19
local.get $root|18
local.get $fl|19
i32.const 2
i32.shl
i32.add
i32.load $0 offset=4
local.set $slMap
local.get $root
local.set $root|21
local.get $fl
local.set $fl|22
local.get $slMap
i32.const 1
local.get $sl
i32.shl
i32.const -1
i32.xor
i32.and
local.tee $slMap
local.set $slMap|23
local.get $root|21
local.get $fl|22
i32.const 2
i32.shl
i32.add
local.get $slMap|23
i32.store $0 offset=4
local.get $slMap
i32.eqz
if
local.get $root
local.get $root
call $~lib/rt/tlsf/Root#get:flMap
i32.const 1
local.get $fl
i32.shl
i32.const -1
i32.xor
i32.and
call $~lib/rt/tlsf/Root#set:flMap
end
end
end
)
(func $~lib/rt/tlsf/insertBlock (type $i32_i32_=>_none) (param $root i32) (param $block i32)
(local $blockInfo i32)
(local $block|3 i32)
(local $right i32)
(local $rightInfo i32)
(local $block|6 i32)
(local $block|7 i32)
(local $left i32)
(local $leftInfo i32)
(local $size i32)
(local $fl i32)
(local $sl i32)
(local $13 i32)
(local $14 i32)
(local $boundedSize i32)
(local $root|16 i32)
(local $fl|17 i32)
(local $sl|18 i32)
(local $head i32)
(local $root|20 i32)
(local $fl|21 i32)
(local $sl|22 i32)
(local $head|23 i32)
(local $root|24 i32)
(local $fl|25 i32)
(local $root|26 i32)
(local $fl|27 i32)
(local $slMap i32)
i32.const 1
drop
local.get $block
i32.eqz
if
i32.const 0
i32.const 368
i32.const 201
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $block
call $~lib/rt/common/BLOCK#get:mmInfo
local.set $blockInfo
i32.const 1
drop
local.get $blockInfo
i32.const 1
i32.and
i32.eqz
if
i32.const 0
i32.const 368
i32.const 203
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $block
local.set $block|3
local.get $block|3
i32.const 4
i32.add
local.get $block|3
call $~lib/rt/common/BLOCK#get:mmInfo
i32.const 3
i32.const -1
i32.xor
i32.and
i32.add
local.set $right
local.get $right
call $~lib/rt/common/BLOCK#get:mmInfo
local.set $rightInfo
local.get $rightInfo
i32.const 1
i32.and
if
local.get $root
local.get $right
call $~lib/rt/tlsf/removeBlock
local.get $block
local.get $blockInfo
i32.const 4
i32.add
local.get $rightInfo
i32.const 3
i32.const -1
i32.xor
i32.and
i32.add
local.tee $blockInfo
call $~lib/rt/common/BLOCK#set:mmInfo
local.get $block
local.set $block|6
local.get $block|6
i32.const 4
i32.add
local.get $block|6
call $~lib/rt/common/BLOCK#get:mmInfo
i32.const 3
i32.const -1
i32.xor
i32.and
i32.add
local.set $right
local.get $right
call $~lib/rt/common/BLOCK#get:mmInfo
local.set $rightInfo
end
local.get $blockInfo
i32.const 2
i32.and
if
local.get $block
local.set $block|7
local.get $block|7
i32.const 4
i32.sub
i32.load $0
local.set $left
local.get $left
call $~lib/rt/common/BLOCK#get:mmInfo
local.set $leftInfo
i32.const 1
drop
local.get $leftInfo
i32.const 1
i32.and
i32.eqz
if
i32.const 0
i32.const 368
i32.const 221
i32.const 16
call $~lib/builtins/abort
unreachable
end
local.get $root
local.get $left
call $~lib/rt/tlsf/removeBlock
local.get $left
local.set $block
local.get $block
local.get $leftInfo
i32.const 4
i32.add
local.get $blockInfo
i32.const 3
i32.const -1
i32.xor
i32.and
i32.add
local.tee $blockInfo
call $~lib/rt/common/BLOCK#set:mmInfo
end
local.get $right
local.get $rightInfo
i32.const 2
i32.or
call $~lib/rt/common/BLOCK#set:mmInfo
local.get $blockInfo
i32.const 3
i32.const -1
i32.xor
i32.and
local.set $size
i32.const 1
drop
local.get $size
i32.const 12
i32.ge_u
i32.eqz
if
i32.const 0
i32.const 368
i32.const 233
i32.const 14
call $~lib/builtins/abort
unreachable
end
i32.const 1
drop
local.get $block
i32.const 4
i32.add
local.get $size
i32.add
local.get $right
i32.eq
i32.eqz
if
i32.const 0
i32.const 368
i32.const 234
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $right
i32.const 4
i32.sub
local.get $block
i32.store $0
local.get $size
i32.const 256
i32.lt_u
if
i32.const 0
local.set $fl
local.get $size
i32.const 4
i32.shr_u
local.set $sl
else
local.get $size
local.tee $13
i32.const 1073741820
local.tee $14
local.get $13
local.get $14
i32.lt_u
select
local.set $boundedSize
i32.const 31
local.get $boundedSize
i32.clz
i32.sub
local.set $fl
local.get $boundedSize
local.get $fl
i32.const 4
i32.sub
i32.shr_u
i32.const 1
i32.const 4
i32.shl
i32.xor
local.set $sl
local.get $fl
i32.const 8
i32.const 1
i32.sub
i32.sub
local.set $fl
end
i32.const 1
drop
local.get $fl
i32.const 23
i32.lt_u
if (result i32)
local.get $sl
i32.const 16
i32.lt_u
else
i32.const 0
end
i32.eqz
if
i32.const 0
i32.const 368
i32.const 251
i32.const 14
call $~lib/builtins/abort
unreachable
end
local.get $root
local.set $root|16
local.get $fl
local.set $fl|17
local.get $sl
local.set $sl|18
local.get $root|16
local.get $fl|17
i32.const 4
i32.shl
local.get $sl|18
i32.add
i32.const 2
i32.shl
i32.add
i32.load $0 offset=96
local.set $head
local.get $block
i32.const 0
call $~lib/rt/tlsf/Block#set:prev
local.get $block
local.get $head
call $~lib/rt/tlsf/Block#set:next
local.get $head
if
local.get $head
local.get $block
call $~lib/rt/tlsf/Block#set:prev
end
local.get $root
local.set $root|20
local.get $fl
local.set $fl|21
local.get $sl
local.set $sl|22
local.get $block
local.set $head|23
local.get $root|20
local.get $fl|21
i32.const 4
i32.shl
local.get $sl|22
i32.add
i32.const 2
i32.shl
i32.add
local.get $head|23
i32.store $0 offset=96
local.get $root
local.get $root
call $~lib/rt/tlsf/Root#get:flMap
i32.const 1
local.get $fl
i32.shl
i32.or
call $~lib/rt/tlsf/Root#set:flMap
local.get $root
local.set $root|26
local.get $fl
local.set $fl|27
local.get $root
local.set $root|24
local.get $fl
local.set $fl|25
local.get $root|24
local.get $fl|25
i32.const 2
i32.shl
i32.add
i32.load $0 offset=4
i32.const 1
local.get $sl
i32.shl
i32.or
local.set $slMap
local.get $root|26
local.get $fl|27
i32.const 2
i32.shl