-
-
Notifications
You must be signed in to change notification settings - Fork 670
/
Copy pathdate.debug.wat
14023 lines (14023 loc) · 302 KB
/
date.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 $0 (func (param i32) (result i32)))
(type $1 (func (param i32 i32)))
(type $2 (func (param i32 i32) (result i32)))
(type $3 (func (param i32 i32 i32) (result i32)))
(type $4 (func (param i32 i32 i32)))
(type $5 (func (param i32)))
(type $6 (func))
(type $7 (func (param i32 i32 i32 i32)))
(type $8 (func (param i64) (result i32)))
(type $9 (func (param i32 i32 i32) (result i64)))
(type $10 (func (param i32 i32 i32 i32 i32 i32 i32) (result i64)))
(type $11 (func (param i32 i32 i64) (result i32)))
(type $12 (func (result i32)))
(type $13 (func (param i32 i64)))
(type $14 (func (param i32) (result i64)))
(type $15 (func (param i32 i32 i32 i64) (result i64)))
(type $16 (func (param i32 i64 i32)))
(type $17 (func (param i64 i32) (result i32)))
(type $18 (func (param i32 i64 i32 i32)))
(type $19 (func (param i32 i32 i32 i32 i32) (result i32)))
(type $20 (func (param i32 i64) (result i32)))
(type $21 (func (param i32 i64) (result i64)))
(type $22 (func (param i32 i32 i32 i32) (result i32)))
(import "env" "abort" (func $~lib/builtins/abort (param i32 i32 i32 i32)))
(global $~lib/date/_day (mut i32) (i32.const 0))
(global $~lib/date/_month (mut i32) (i32.const 0))
(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 $~argumentsLength (mut i32) (i32.const 0))
(global $~lib/native/ASC_SHRINK_LEVEL i32 (i32.const 0))
(global $~lib/builtins/i32.MAX_VALUE i32 (i32.const 2147483647))
(global $~lib/native/ASC_RUNTIME i32 (i32.const 2))
(global $~lib/rt/__rtti_base i32 (i32.const 7408))
(global $~lib/memory/__data_end i32 (i32.const 7444))
(global $~lib/memory/__stack_pointer (mut i32) (i32.const 40212))
(global $~lib/memory/__heap_base i32 (i32.const 40212))
(global $~started (mut i32) (i32.const 0))
(memory $0 1)
(data $0 (i32.const 12) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\18\00\00\00I\00n\00v\00a\00l\00i\00d\00 \00D\00a\00t\00e\00\00\00\00\00")
(data $1 (i32.const 60) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\18\00\00\00~\00l\00i\00b\00/\00d\00a\00t\00e\00.\00t\00s\00\00\00\00\00")
(data $2 (i32.const 108) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\16\00\00\00s\00t\00d\00/\00d\00a\00t\00e\00.\00t\00s\00\00\00\00\00\00\00")
(data $3 (i32.const 156) "<\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 $4 (i32.const 220) "<\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 $5 (i32.const 288) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $6 (i32.const 320) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $7 (i32.const 348) "<\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 $8 (i32.const 412) ",\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 $9 (i32.const 464) "\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $10 (i32.const 492) "<\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 $11 (i32.const 556) "\00\03\02\05\00\03\05\01\04\06\02\04")
(data $12 (i32.const 572) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00-\00\00\00\00\00\00\00\00\00\00\00")
(data $13 (i32.const 604) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00+\00\00\00\00\00\00\00\00\00\00\00")
(data $14 (i32.const 636) "|\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00d\00\00\00t\00o\00S\00t\00r\00i\00n\00g\00(\00)\00 \00r\00a\00d\00i\00x\00 \00a\00r\00g\00u\00m\00e\00n\00t\00 \00m\00u\00s\00t\00 \00b\00e\00 \00b\00e\00t\00w\00e\00e\00n\00 \002\00 \00a\00n\00d\00 \003\006\00\00\00\00\00\00\00\00\00")
(data $15 (i32.const 764) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\00~\00l\00i\00b\00/\00u\00t\00i\00l\00/\00n\00u\00m\00b\00e\00r\00.\00t\00s\00\00\00\00\00\00\00")
(data $16 (i32.const 828) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\000\00\00\00\00\00\00\00\00\00\00\00")
(data $17 (i32.const 860) "0\000\000\001\000\002\000\003\000\004\000\005\000\006\000\007\000\008\000\009\001\000\001\001\001\002\001\003\001\004\001\005\001\006\001\007\001\008\001\009\002\000\002\001\002\002\002\003\002\004\002\005\002\006\002\007\002\008\002\009\003\000\003\001\003\002\003\003\003\004\003\005\003\006\003\007\003\008\003\009\004\000\004\001\004\002\004\003\004\004\004\005\004\006\004\007\004\008\004\009\005\000\005\001\005\002\005\003\005\004\005\005\005\006\005\007\005\008\005\009\006\000\006\001\006\002\006\003\006\004\006\005\006\006\006\007\006\008\006\009\007\000\007\001\007\002\007\003\007\004\007\005\007\006\007\007\007\008\007\009\008\000\008\001\008\002\008\003\008\004\008\005\008\006\008\007\008\008\008\009\009\000\009\001\009\002\009\003\009\004\009\005\009\006\009\007\009\008\009\009\00")
(data $18 (i32.const 1260) "\1c\04\00\00\00\00\00\00\00\00\00\00\02\00\00\00\00\04\00\000\000\000\001\000\002\000\003\000\004\000\005\000\006\000\007\000\008\000\009\000\00a\000\00b\000\00c\000\00d\000\00e\000\00f\001\000\001\001\001\002\001\003\001\004\001\005\001\006\001\007\001\008\001\009\001\00a\001\00b\001\00c\001\00d\001\00e\001\00f\002\000\002\001\002\002\002\003\002\004\002\005\002\006\002\007\002\008\002\009\002\00a\002\00b\002\00c\002\00d\002\00e\002\00f\003\000\003\001\003\002\003\003\003\004\003\005\003\006\003\007\003\008\003\009\003\00a\003\00b\003\00c\003\00d\003\00e\003\00f\004\000\004\001\004\002\004\003\004\004\004\005\004\006\004\007\004\008\004\009\004\00a\004\00b\004\00c\004\00d\004\00e\004\00f\005\000\005\001\005\002\005\003\005\004\005\005\005\006\005\007\005\008\005\009\005\00a\005\00b\005\00c\005\00d\005\00e\005\00f\006\000\006\001\006\002\006\003\006\004\006\005\006\006\006\007\006\008\006\009\006\00a\006\00b\006\00c\006\00d\006\00e\006\00f\007\000\007\001\007\002\007\003\007\004\007\005\007\006\007\007\007\008\007\009\007\00a\007\00b\007\00c\007\00d\007\00e\007\00f\008\000\008\001\008\002\008\003\008\004\008\005\008\006\008\007\008\008\008\009\008\00a\008\00b\008\00c\008\00d\008\00e\008\00f\009\000\009\001\009\002\009\003\009\004\009\005\009\006\009\007\009\008\009\009\009\00a\009\00b\009\00c\009\00d\009\00e\009\00f\00a\000\00a\001\00a\002\00a\003\00a\004\00a\005\00a\006\00a\007\00a\008\00a\009\00a\00a\00a\00b\00a\00c\00a\00d\00a\00e\00a\00f\00b\000\00b\001\00b\002\00b\003\00b\004\00b\005\00b\006\00b\007\00b\008\00b\009\00b\00a\00b\00b\00b\00c\00b\00d\00b\00e\00b\00f\00c\000\00c\001\00c\002\00c\003\00c\004\00c\005\00c\006\00c\007\00c\008\00c\009\00c\00a\00c\00b\00c\00c\00c\00d\00c\00e\00c\00f\00d\000\00d\001\00d\002\00d\003\00d\004\00d\005\00d\006\00d\007\00d\008\00d\009\00d\00a\00d\00b\00d\00c\00d\00d\00d\00e\00d\00f\00e\000\00e\001\00e\002\00e\003\00e\004\00e\005\00e\006\00e\007\00e\008\00e\009\00e\00a\00e\00b\00e\00c\00e\00d\00e\00e\00e\00f\00f\000\00f\001\00f\002\00f\003\00f\004\00f\005\00f\006\00f\007\00f\008\00f\009\00f\00a\00f\00b\00f\00c\00f\00d\00f\00e\00f\00f\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $19 (i32.const 2316) "\\\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00H\00\00\000\001\002\003\004\005\006\007\008\009\00a\00b\00c\00d\00e\00f\00g\00h\00i\00j\00k\00l\00m\00n\00o\00p\00q\00r\00s\00t\00u\00v\00w\00x\00y\00z\00\00\00\00\00")
(data $20 (i32.const 2412) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $21 (i32.const 2444) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00T\00\00\00\00\00\00\00\00\00\00\00")
(data $22 (i32.const 2476) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00:\00\00\00\00\00\00\00\00\00\00\00")
(data $23 (i32.const 2508) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00.\00\00\00\00\00\00\00\00\00\00\00")
(data $24 (i32.const 2540) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00Z\00\00\00\00\00\00\00\00\00\00\00")
(data $25 (i32.const 2572) "L\00\00\00\03\00\00\00\00\00\00\00\05\00\00\008\00\00\00\00\00\00\00P\02\00\00\00\00\00\00P\02\00\00\00\00\00\00\a0\t\00\00\00\00\00\00\c0\t\00\00\00\00\00\00\c0\t\00\00\00\00\00\00\e0\t\00\00\00\00\00\00\00\n\00\00\00\00\00\00")
(data $26 (i32.const 2652) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\000\00\00\000\000\000\000\00-\000\001\00-\000\001\00T\000\000\00:\000\000\00:\000\000\00.\000\000\000\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $27 (i32.const 2732) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00-\000\000\000\000\000\001\00-\001\002\00-\003\001\00T\002\003\00:\005\009\00:\005\009\00.\009\009\009\00Z\00\00\00\00\00\00\00")
(data $28 (i32.const 2812) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\000\00\00\000\000\000\001\00-\000\004\00-\000\007\00T\002\003\00:\000\006\00:\004\000\00.\000\000\000\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $29 (i32.const 2892) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\000\00\00\002\000\000\009\00-\000\001\00-\000\006\00T\000\008\00:\004\000\00:\003\001\00.\000\002\000\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $30 (i32.const 2972) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\000\00\00\002\000\000\009\00-\000\001\00-\000\006\00T\000\008\00:\004\000\00:\003\001\00.\004\005\006\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $31 (i32.const 3052) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00+\000\001\002\001\008\004\00-\000\004\00-\000\008\00T\001\003\00:\000\007\00:\001\001\00.\000\002\000\00Z\00\00\00\00\00\00\00")
(data $32 (i32.const 3132) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\000\00\00\009\009\009\009\00-\001\002\00-\003\001\00T\002\003\00:\005\009\00:\005\009\00.\009\009\009\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $33 (i32.const 3212) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00+\000\001\000\000\000\000\00-\000\001\00-\000\001\00T\000\000\00:\000\000\00:\000\000\00.\000\000\000\00Z\00\00\00\00\00\00\00")
(data $34 (i32.const 3292) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00-\000\000\000\000\002\002\00-\000\006\00-\001\006\00T\001\007\00:\001\003\00:\005\000\00.\007\007\004\00Z\00\00\00\00\00\00\00")
(data $35 (i32.const 3372) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00S\00u\00n\00 \00\00\00\00\00")
(data $36 (i32.const 3404) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00M\00o\00n\00 \00\00\00\00\00")
(data $37 (i32.const 3436) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00T\00u\00e\00 \00\00\00\00\00")
(data $38 (i32.const 3468) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00W\00e\00d\00 \00\00\00\00\00")
(data $39 (i32.const 3500) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00T\00h\00u\00 \00\00\00\00\00")
(data $40 (i32.const 3532) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00F\00r\00i\00 \00\00\00\00\00")
(data $41 (i32.const 3564) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00S\00a\00t\00 \00\00\00\00\00")
(data $42 (i32.const 3596) ",\00\00\00\00\00\00\00\00\00\00\00\05\00\00\00\1c\00\00\00@\r\00\00`\r\00\00\80\r\00\00\a0\r\00\00\c0\r\00\00\e0\r\00\00\00\0e\00\00")
(data $43 (i32.const 3644) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00J\00a\00n\00 \00\00\00\00\00")
(data $44 (i32.const 3676) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00F\00e\00b\00 \00\00\00\00\00")
(data $45 (i32.const 3708) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00M\00a\00r\00 \00\00\00\00\00")
(data $46 (i32.const 3740) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00A\00p\00r\00 \00\00\00\00\00")
(data $47 (i32.const 3772) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00M\00a\00y\00 \00\00\00\00\00")
(data $48 (i32.const 3804) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00J\00u\00n\00 \00\00\00\00\00")
(data $49 (i32.const 3836) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00J\00u\00l\00 \00\00\00\00\00")
(data $50 (i32.const 3868) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00A\00u\00g\00 \00\00\00\00\00")
(data $51 (i32.const 3900) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00S\00e\00p\00 \00\00\00\00\00")
(data $52 (i32.const 3932) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00O\00c\00t\00 \00\00\00\00\00")
(data $53 (i32.const 3964) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00N\00o\00v\00 \00\00\00\00\00")
(data $54 (i32.const 3996) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00D\00e\00c\00 \00\00\00\00\00")
(data $55 (i32.const 4028) "L\00\00\00\00\00\00\00\00\00\00\00\05\00\00\000\00\00\00P\0e\00\00p\0e\00\00\90\0e\00\00\b0\0e\00\00\d0\0e\00\00\f0\0e\00\00\10\0f\00\000\0f\00\00P\0f\00\00p\0f\00\00\90\0f\00\00\b0\0f\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $56 (i32.const 4108) ",\00\00\00\03\00\00\00\00\00\00\00\05\00\00\00\14\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")
(data $57 (i32.const 4156) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\04\00\00\00 \00-\00\00\00\00\00\00\00\00\00")
(data $58 (i32.const 4188) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\02\00\00\00 \00\00\00\00\00\00\00\00\00\00\00")
(data $59 (i32.const 4220) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00W\00e\00d\00 \00J\00a\00n\00 \000\001\00 \000\000\002\000\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $60 (i32.const 4284) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1e\00\00\00S\00u\00n\00 \00F\00e\00b\00 \000\002\00 \002\000\002\000\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $61 (i32.const 4348) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00 \00\00\00T\00h\00u\00 \00J\00u\00l\00 \000\001\00 \00-\000\000\000\001\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $62 (i32.const 4412) ",\00\00\00\03\00\00\00\00\00\00\00\05\00\00\00\14\00\00\00\00\00\00\00\c0\t\00\00\00\00\00\00\c0\t\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $63 (i32.const 4460) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\10\00\00\000\000\00:\000\000\00:\000\000\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $64 (i32.const 4508) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\10\00\00\002\003\00:\005\009\00:\005\009\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $65 (i32.const 4556) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00S\00u\00n\00,\00 \00\00\00")
(data $66 (i32.const 4588) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00M\00o\00n\00,\00 \00\00\00")
(data $67 (i32.const 4620) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00T\00u\00e\00,\00 \00\00\00")
(data $68 (i32.const 4652) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00W\00e\00d\00,\00 \00\00\00")
(data $69 (i32.const 4684) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00T\00h\00u\00,\00 \00\00\00")
(data $70 (i32.const 4716) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00F\00r\00i\00,\00 \00\00\00")
(data $71 (i32.const 4748) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00S\00a\00t\00,\00 \00\00\00")
(data $72 (i32.const 4780) ",\00\00\00\00\00\00\00\00\00\00\00\05\00\00\00\1c\00\00\00\e0\11\00\00\00\12\00\00 \12\00\00@\12\00\00`\12\00\00\80\12\00\00\a0\12\00\00")
(data $73 (i32.const 4828) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00J\00a\00n\00 \00\00\00")
(data $74 (i32.const 4860) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00F\00e\00b\00 \00\00\00")
(data $75 (i32.const 4892) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00M\00a\00r\00 \00\00\00")
(data $76 (i32.const 4924) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00A\00p\00r\00 \00\00\00")
(data $77 (i32.const 4956) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00M\00a\00y\00 \00\00\00")
(data $78 (i32.const 4988) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00J\00u\00n\00 \00\00\00")
(data $79 (i32.const 5020) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00J\00u\00l\00 \00\00\00")
(data $80 (i32.const 5052) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00A\00u\00g\00 \00\00\00")
(data $81 (i32.const 5084) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00S\00e\00p\00 \00\00\00")
(data $82 (i32.const 5116) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00O\00c\00t\00 \00\00\00")
(data $83 (i32.const 5148) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00N\00o\00v\00 \00\00\00")
(data $84 (i32.const 5180) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\n\00\00\00 \00D\00e\00c\00 \00\00\00")
(data $85 (i32.const 5212) "L\00\00\00\00\00\00\00\00\00\00\00\05\00\00\000\00\00\00\f0\12\00\00\10\13\00\000\13\00\00P\13\00\00p\13\00\00\90\13\00\00\b0\13\00\00\d0\13\00\00\f0\13\00\00\10\14\00\000\14\00\00P\14\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $86 (i32.const 5292) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\00 \00G\00M\00T\00\00\00\00\00")
(data $87 (i32.const 5324) "L\00\00\00\03\00\00\00\00\00\00\00\05\00\00\000\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00p\10\00\00\00\00\00\00\c0\t\00\00\00\00\00\00\c0\t\00\00\00\00\00\00\c0\14\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $88 (i32.const 5404) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00:\00\00\00W\00e\00d\00,\00 \000\001\00 \00J\00a\00n\00 \000\000\002\000\00 \000\000\00:\000\000\00:\000\000\00 \00G\00M\00T\00\00\00")
(data $89 (i32.const 5484) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00:\00\00\00M\00o\00n\00,\00 \000\003\00 \00F\00e\00b\00 \002\000\002\000\00 \001\004\00:\005\003\00:\003\003\00 \00G\00M\00T\00\00\00")
(data $90 (i32.const 5564) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00<\00\00\00T\00h\00u\00,\00 \000\001\00 \00J\00u\00l\00 \00-\000\000\000\001\00 \000\000\00:\000\000\00:\000\000\00 \00G\00M\00T\00")
(data $91 (i32.const 5644) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\001\009\007\006\00-\000\002\00-\000\002\00\00\00\00\00\00\00\00\00")
(data $92 (i32.const 5692) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1a\00\00\00~\00l\00i\00b\00/\00a\00r\00r\00a\00y\00.\00t\00s\00\00\00")
(data $93 (i32.const 5740) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\1c\00\00\00I\00n\00v\00a\00l\00i\00d\00 \00l\00e\00n\00g\00t\00h\00")
(data $94 (i32.const 5788) "|\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00^\00\00\00E\00l\00e\00m\00e\00n\00t\00 \00t\00y\00p\00e\00 \00m\00u\00s\00t\00 \00b\00e\00 \00n\00u\00l\00l\00a\00b\00l\00e\00 \00i\00f\00 \00a\00r\00r\00a\00y\00 \00i\00s\00 \00h\00o\00l\00e\00y\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $95 (i32.const 5916) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\10\00\00\001\009\007\006\00-\002\00-\002\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $96 (i32.const 5964) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\14\00\00\002\003\004\005\00-\001\001\00-\000\004\00\00\00\00\00\00\00\00\00")
(data $97 (i32.const 6012) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00&\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00\00\00\00\00\00\00")
(data $98 (i32.const 6076) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00.\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $99 (i32.const 6156) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\000\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $100 (i32.const 6236) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00:\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\00-\000\008\00:\000\000\00\00\00")
(data $101 (i32.const 6316) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00:\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\00+\000\005\00:\003\000\00\00\00")
(data $102 (i32.const 6396) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00,\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\00")
(data $103 (i32.const 6460) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00.\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\00Z\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $104 (i32.const 6540) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\008\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\00+\000\000\00:\000\000\00\00\00\00\00")
(data $105 (i32.const 6620) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\004\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\007\008\009\00\00\00\00\00\00\00\00\00")
(data $106 (i32.const 6700) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\007\008\009\00Z\00\00\00\00\00\00\00")
(data $107 (i32.const 6780) "\\\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00@\00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00:\005\006\00.\004\005\006\007\008\009\00+\000\000\00:\000\000\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $108 (i32.const 6876) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\000\000\000\000\00\00\00\00\00")
(data $109 (i32.const 6908) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\000\000\000\001\00\00\00\00\00")
(data $110 (i32.const 6940) "\1c\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\08\00\00\001\009\007\006\00\00\00\00\00")
(data $111 (i32.const 6972) ",\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00\0e\00\00\001\009\007\006\00-\000\002\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $112 (i32.const 7020) "<\00\00\00\00\00\00\00\00\00\00\00\02\00\00\00 \00\00\001\009\007\006\00-\000\002\00-\000\002\00T\001\002\00:\003\004\00\00\00\00\00\00\00\00\00\00\00\00\00")
(data $113 (i32.const 7084) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00-\002\007\001\008\002\001\00-\000\004\00-\002\000\00T\000\000\00:\000\000\00:\000\000\00.\000\000\000\00Z\00\00\00\00\00\00\00")
(data $114 (i32.const 7164) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00+\002\007\005\007\006\000\00-\000\009\00-\001\003\00T\000\000\00:\000\000\00:\000\000\00.\000\000\000\00Z\00\00\00\00\00\00\00")
(data $115 (i32.const 7244) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00+\002\007\005\007\006\000\00-\000\009\00-\001\002\00T\002\003\00:\005\009\00:\005\009\00.\009\009\009\00Z\00\00\00\00\00\00\00")
(data $116 (i32.const 7324) "L\00\00\00\00\00\00\00\00\00\00\00\02\00\00\006\00\00\00-\002\007\001\008\002\001\00-\000\004\00-\002\000\00T\000\000\00:\000\000\00:\000\000\00.\000\000\001\00Z\00\00\00\00\00\00\00")
(data $117 (i32.const 7408) "\08\00\00\00 \00\00\00 \00\00\00 \00\00\00\00\00\00\00 \00\00\00\04A\00\00\02A\00\00\02\t\00\00")
(table $0 1 1 funcref)
(elem $0 (i32.const 1))
(export "memory" (memory $0))
(export "_start" (func $~start))
(func $~lib/date/daysSinceEpoch (param $y i32) (param $m i32) (param $d i32) (result i64)
(local $a i32)
(local $b i32)
(local $era i32)
(local $yoe i32)
(local $doy i32)
(local $doe i32)
local.get $y
local.get $m
i32.const 2
i32.le_s
i32.sub
local.set $y
block $~lib/date/floorDiv<i32>|inlined.0 (result i32)
local.get $y
local.set $a
i32.const 400
local.set $b
local.get $a
local.get $a
i32.const 0
i32.lt_s
if (result i32)
local.get $b
i32.const 1
i32.sub
else
i32.const 0
end
i32.sub
local.get $b
i32.div_s
br $~lib/date/floorDiv<i32>|inlined.0
end
local.set $era
local.get $y
local.get $era
i32.const 400
i32.mul
i32.sub
local.set $yoe
i32.const 153
local.get $m
local.get $m
i32.const 2
i32.gt_s
if (result i32)
i32.const -3
else
i32.const 9
end
i32.add
i32.mul
i32.const 2
i32.add
i32.const 5
i32.div_u
local.get $d
i32.add
i32.const 1
i32.sub
local.set $doy
local.get $yoe
i32.const 365
i32.mul
local.get $yoe
i32.const 4
i32.div_u
i32.add
local.get $yoe
i32.const 100
i32.div_u
i32.sub
local.get $doy
i32.add
local.set $doe
local.get $era
i32.const 146097
i32.mul
local.get $doe
i32.add
i32.const 719468
i32.sub
i64.extend_i32_s
return
)
(func $~lib/date/epochMillis (param $year i32) (param $month i32) (param $day i32) (param $hour i32) (param $minute i32) (param $second i32) (param $milliseconds i32) (result i64)
local.get $year
local.get $month
local.get $day
call $~lib/date/daysSinceEpoch
i32.const 86400000
i64.extend_i32_s
i64.mul
local.get $hour
i32.const 3600000
i32.mul
i64.extend_i32_s
i64.add
local.get $minute
i32.const 60000
i32.mul
i64.extend_i32_s
i64.add
local.get $second
i32.const 1000
i32.mul
i64.extend_i32_s
i64.add
local.get $milliseconds
i64.extend_i32_s
i64.add
return
)
(func $~lib/date/invalidDate (param $millis i64) (result i32)
local.get $millis
i64.const 0
i64.const 8640000000000000
i64.sub
i64.lt_s
local.get $millis
i64.const 8640000000000000
i64.gt_s
i32.or
return
)
(func $~lib/date/dateFromEpoch (param $ms i64) (result i32)
(local $a i64)
(local $b i64)
(local $da i32)
(local $a|4 i32)
(local $b|5 i32)
(local $q0 i32)
(local $r1 i32)
(local $u1 i64)
(local $dm1 i32)
(local $n1 i32)
(local $year i32)
(local $mo i32)
block $~lib/date/floorDiv<i64>|inlined.0 (result i64)
local.get $ms
local.set $a
i32.const 86400000
i64.extend_i32_s
local.set $b
local.get $a
local.get $a
i64.const 0
i64.lt_s
if (result i64)
local.get $b
i64.const 1
i64.sub
else
i64.const 0
end
i64.sub
local.get $b
i64.div_s
br $~lib/date/floorDiv<i64>|inlined.0
end
i32.wrap_i64
i32.const 4
i32.mul
i32.const 719468
i32.const 4
i32.mul
i32.add
i32.const 3
i32.or
local.set $da
block $~lib/date/floorDiv<i32>|inlined.1 (result i32)
local.get $da
local.set $a|4
i32.const 146097
local.set $b|5
local.get $a|4
local.get $a|4
i32.const 0
i32.lt_s
if (result i32)
local.get $b|5
i32.const 1
i32.sub
else
i32.const 0
end
i32.sub
local.get $b|5
i32.div_s
br $~lib/date/floorDiv<i32>|inlined.1
end
local.set $q0
local.get $da
local.get $q0
i32.const 146097
i32.mul
i32.sub
local.set $r1
local.get $r1
i32.const 3
i32.or
i64.extend_i32_u
i64.const 2939745
i64.mul
local.set $u1
local.get $u1
i32.wrap_i64
i32.const 11758980
i32.div_u
local.set $dm1
i32.const 2141
local.get $dm1
i32.mul
i32.const 197913
i32.add
local.set $n1
i32.const 100
local.get $q0
i32.mul
local.get $u1
i64.const 32
i64.shr_u
i32.wrap_i64
i32.add
local.set $year
local.get $n1
i32.const 16
i32.shr_u
local.set $mo
local.get $n1
i32.const 65535
i32.and
i32.const 2141
i32.div_s
i32.const 1
i32.add
global.set $~lib/date/_day
local.get $dm1
i32.const 306
i32.ge_u
if
local.get $mo
i32.const 12
i32.sub
local.set $mo
local.get $year
i32.const 1
i32.add
local.set $year
end
local.get $mo
global.set $~lib/date/_month
local.get $year
return
)
(func $~lib/date/Date#set:year (param $this i32) (param $year i32)
local.get $this
local.get $year
i32.store
)
(func $~lib/date/Date#set:month (param $this i32) (param $month i32)
local.get $this
local.get $month
i32.store offset=4
)
(func $~lib/date/Date#set:day (param $this i32) (param $day i32)
local.get $this
local.get $day
i32.store offset=8
)
(func $~lib/rt/itcms/Object#set:nextWithColor (param $this i32) (param $nextWithColor i32)
local.get $this
local.get $nextWithColor
i32.store offset=4
)
(func $~lib/rt/itcms/Object#set:prev (param $this i32) (param $prev i32)
local.get $this
local.get $prev
i32.store offset=8
)
(func $~lib/rt/itcms/initLazy (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
return
)
(func $~lib/rt/itcms/Object#get:nextWithColor (param $this i32) (result i32)
local.get $this
i32.load offset=4
)
(func $~lib/rt/itcms/Object#get:next (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
return
)
(func $~lib/rt/itcms/Object#get:color (param $this i32) (result i32)
local.get $this
call $~lib/rt/itcms/Object#get:nextWithColor
i32.const 3
i32.and
return
)
(func $~lib/rt/itcms/visitRoots (param $cookie i32)
(local $pn i32)
(local $iter 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
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 240
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 (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 (param $this i32) (result i32)
local.get $this
i32.load offset=8
)
(func $~lib/rt/itcms/Object#set:next (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 (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 240
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 240
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 (param $this i32) (result i32)
local.get $this
i32.load offset=12
)
(func $~lib/shared/typeinfo/Typeinfo#get:flags (param $this i32) (result i32)
local.get $this
i32.load
)
(func $~lib/rt/__typeinfo (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
i32.gt_u
if
i32.const 368
i32.const 432
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
return
)
(func $~lib/rt/itcms/Object#get:isPointerfree (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
return
)
(func $~lib/rt/itcms/Object#linkTo (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 (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 240
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 (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 (param $cookie i32)
(local $ptr 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
if
local.get $ptr
i32.load
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 (param $this i32) (result i32)
local.get $this
i32.load
)
(func $~lib/rt/itcms/Object#get:size (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
return
)
(func $~lib/rt/tlsf/Root#set:flMap (param $this i32) (param $flMap i32)
local.get $this
local.get $flMap
i32.store
)
(func $~lib/rt/common/BLOCK#set:mmInfo (param $this i32) (param $mmInfo i32)
local.get $this
local.get $mmInfo
i32.store
)
(func $~lib/rt/tlsf/Block#set:prev (param $this i32) (param $prev i32)
local.get $this
local.get $prev
i32.store offset=4
)
(func $~lib/rt/tlsf/Block#set:next (param $this i32) (param $next i32)
local.get $this
local.get $next
i32.store offset=8
)
(func $~lib/rt/tlsf/Block#get:prev (param $this i32) (result i32)
local.get $this
i32.load offset=4
)
(func $~lib/rt/tlsf/Block#get:next (param $this i32) (result i32)
local.get $this
i32.load offset=8
)
(func $~lib/rt/tlsf/Root#get:flMap (param $this i32) (result i32)
local.get $this
i32.load
)
(func $~lib/rt/tlsf/removeBlock (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 512
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 512
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 512
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
block $~lib/rt/tlsf/GETHEAD|inlined.0 (result i32)
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 offset=96
br $~lib/rt/tlsf/GETHEAD|inlined.0
end
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 offset=96
local.get $next
i32.eqz
if
block $~lib/rt/tlsf/GETSL|inlined.0 (result i32)
local.get $root
local.set $root|18