-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisassembly_fixed.s
38258 lines (38258 loc) · 660 KB
/
disassembly_fixed.s
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
start:
ila $2,253856 # 3dfa0
hbrr label_434,label_43c # 43c
ori $83,$3,0
shlqbyi $81,$4,0
ori $1,$2,0
shlqbyi $82,$5,0
ori $84,$6,0
shlqbyi $85,$7,0
ori $86,$8,0
shlqbyi $87,$9,0
ori $88,$10,0
shlqbyi $89,$11,0
ila $80,194964 # 2f994
label_434:
br label_43c # 43c
label_438:
bisl $0,$3
label_43c:
lqd $5,0($80)
rotqby $3,$5,$80
ai $80,$80,-4
ceqi $4,$3,-1
brz $4,label_438 # 438
hbrr label_478,func_488 # 488
ori $6,$84,0
shlqbyi $7,$85,0
ori $8,$86,0
shlqbyi $9,$87,0
ori $10,$88,0
shlqbyi $11,$89,0
ori $4,$81,0
ori $5,$82,0
shlqbyi $3,$83,0
label_478:
brsl $0,func_488 # 488
brsl $0,func_1e0f8 # 1e0f8
stop
lnop
.global func_488
func_488:
stqd $0,16($1)
stqd $1,-48($1)
ai $1,$1,-48
ai $3,$1,32 # 20
brsl $0,func_4f8 # 4f8
ai $3,$1,32 # 20
brsl $0,func_e40 # e40
il $4,0
cgti $2,$3,-1
shlqbyi $6,$3,0
il $5,0
ai $3,$1,32 # 20
brz $2,label_4cc # 4cc
brsl $0,func_e38 # e38
ai $3,$1,32 # 20
brsl $0,func_1120 # 1120
br label_4e4 # 4e4
label_4cc:
ai $3,$1,32 # 20
ori $5,$6,0
il $4,1
brsl $0,func_e38 # e38
ai $3,$1,32 # 20
brsl $0,func_1028 # 1028
label_4e4:
lqd $0,64($1) # 40
il $3,0
ai $1,$1,48 # 30
bi $0
lnop
.global func_4f8
func_4f8:
ila $4,141384 # 22848
lqd $6,0($3)
cwd $5,0($3)
shufb $2,$4,$6,$5
stqd $2,0($3)
bi $0
.global func_510
func_510:
ila $4,152320 # 25300
stqd $80,-16($1)
ori $80,$3,0
stqd $0,16($1)
stqd $1,-48($1)
ai $1,$1,-48
brsl $0,func_d938 # d938
ori $3,$80,0
ila $4,141008 # 226d0
brsl $0,func_d938 # d938
ori $3,$80,0
ila $4,141040 # 226f0
brsl $0,func_d938 # d938
ori $3,$80,0
ila $4,141072 # 22710
brsl $0,func_d938 # d938
ori $3,$80,0
ila $4,152320 # 25300
brsl $0,func_d938 # d938
ori $3,$80,0
ila $4,141120 # 22740
brsl $0,func_d938 # d938
ori $3,$80,0
lqd $0,64($1) # 40
ai $1,$1,48 # 30
ila $4,152320 # 25300
lqd $80,-16($1)
br func_d938 # d938
.global func_580
func_580:
ai $9,$5,13
hbrr label_5d4,label_654 # 654
stqd $80,-16($1)
stqd $81,-32($1)
ori $80,$5,0
stqd $82,-48($1)
ori $82,$6,0
stqd $83,-64($1)
ori $81,$4,0
stqd $0,16($1)
ori $83,$7,0
stqd $84,-80($1)
ori $3,$81,0
stqd $1,-176($1)
ai $1,$1,-176
lqd $8,0($5)
il $7,-3
ai $4,$1,32 # 20
rotqby $6,$8,$9
ceqbi $5,$6,0
xsbh $2,$5
label_5d4:
brhnz $2,label_654 # 654
lqr $84,data_22810
brsl $0,func_1ab0 # 1ab0
ori $5,$80,0
fsmbi $2,257 # 101
ai $6,$1,48 # 30
brnz $3,label_650 # 650
andbi $7,$2,16
lqd $4,32($1) # 20
cg $3,$81,$7
shufb $3,$3,$3,$84
rotqbyi $4,$4,4
addx $3,$81,$7
brsl $0,func_18e0 # 18e0
hbrr label_64c,label_654 # 654
il $7,0
cdd $6,0($82)
cdd $8,0($83)
brnz $3,label_650 # 650
lqd $18,48($1) # 30
lqd $14,0($82)
cg $17,$81,$18
rotqbyi $12,$18,8
shufb $15,$17,$17,$84
addx $15,$81,$18
shufb $13,$15,$14,$6
stqd $13,0($82)
lqd $11,0($83)
shufb $10,$12,$11,$8
stqd $10,0($83)
label_64c:
br label_654 # 654
label_650:
il $7,-1
label_654:
lqd $0,192($1) # c0
ai $1,$1,176 # b0
shlqbyi $3,$7,0
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
lqd $83,-64($1)
lqd $84,-80($1)
bi $0
.global func_678
func_678:
hbrr label_6a4,func_f3e0 # f3e0
stqd $80,-16($1)
ori $80,$5,0
stqd $81,-32($1)
il $5,1024 # 400
stqd $82,-48($1)
ori $81,$3,0
stqd $0,16($1)
il $82,-1
stqd $1,-112($1)
ai $1,$1,-112
label_6a4:
brsl $0,func_f3e0 # f3e0
ai $6,$1,32 # 20
ceq $5,$3,$82
ori $4,$3,0
gb $2,$5
ila $5,141200 # 22790
cgti $3,$2,11
brnz $3,label_710 # 710
ai $7,$1,48 # 30
ori $3,$81,0
brsl $0,func_580 # 580
brnz $3,label_710 # 710
lqd $6,48($1) # 30
ori $3,$81,0
lqd $4,32($1) # 20
rotqbyi $5,$6,4
brsl $0,func_f3e0 # f3e0
hbrr label_70c,label_714 # 714
lqd $9,0($80)
ceq $11,$3,$82
cdd $4,0($80)
il $6,0
gb $10,$11
shufb $8,$3,$9,$4
cgti $7,$10,11
stqd $8,0($80)
label_70c:
brz $7,label_714 # 714
label_710:
il $6,-1
label_714:
lqd $0,128($1) # 80
ai $1,$1,112 # 70
shlqbyi $3,$6,0
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
bi $0
.global func_730
func_730:
hbrr label_758,label_750 # 750
lqr $5,data_27a00
rotqbyi $4,$5,13
ceqbi $3,$4,0
xsbh $2,$3
brhnz $2,label_768 # 768
il $6,0
wrch $ch23,$6
label_750:
rchcnt $8,$ch23
ceqi $7,$8,1
label_758:
brz $7,label_750 # 750
rdch $2,$ch24
il $9,0
stqr $9,data_27a00
label_768:
il $11,4
il $10,2
wrch $ch22,$11
wrch $ch23,$10
rdch $2,$ch24
bi $0
.global func_780
func_780:
ori $8,$3,0
fsmbi $15,257 # 101
il $5,8
lqr $11,data_22820
il $4,2
lqr $13,data_22810
il $2,64 # 40
hbrr label_7e8,func_730 # 730
andbi $14,$15,15
stqd $80,-16($1)
shlqbyi $7,$3,4
and $10,$3,$14
stqd $0,16($1)
cg $12,$10,$11
stqd $1,-48($1)
shufb $9,$12,$12,$13
ai $1,$1,-48
addx $9,$10,$11
shlqbyi $80,$9,4
ori $6,$80,0
wrch $ch16,$6
wrch $ch17,$8
wrch $ch18,$7
wrch $ch19,$5
wrch $ch20,$4
wrch $ch21,$2
label_7e8:
brsl $0,func_730 # 730
lqd $0,64($1) # 40
ai $1,$1,48 # 30
lqd $3,0($80)
rotqby $3,$3,$80
lqd $80,-16($1)
bi $0
lnop
.global func_808
func_808:
hbrr label_838,func_f3e0 # f3e0
stqd $80,-16($1)
stqd $81,-32($1)
stqd $82,-48($1)
ori $81,$3,0
stqd $83,-64($1)
ori $82,$5,0
stqd $0,16($1)
il $5,1024 # 400
stqd $1,-192($1)
ai $1,$1,-192
fsmbi $83,65535 # ffff
label_838:
brsl $0,func_f3e0 # f3e0
ai $6,$1,32 # 20
ori $80,$3,0
ai $7,$1,96 # 60
ceq $4,$80,$83
gb $3,$4
ori $4,$80,0
cgti $2,$3,11
brnz $2,label_94c # 94c
ila $5,141216 # 227a0
ori $3,$81,0
brsl $0,func_580 # 580
brnz $3,label_94c # 94c
lqd $8,96($1) # 60
ori $3,$81,0
lqd $4,32($1) # 20
rotqbyi $5,$8,4
brsl $0,func_f3e0 # f3e0
ceq $7,$3,$83
gb $6,$7
cgti $5,$6,11
brnz $5,label_94c # 94c
brsl $0,func_780 # 780
hbrr label_8cc,func_580 # 580
il $16,0
shlqbyi $4,$80,0
ila $11,141248 # 227c0
clgt $15,$16,$3
ceq $12,$16,$3
cgt $14,$16,$3
xswd $13,$15
shlqbyi $3,$81,0
ila $10,141232 # 227b0
selb $9,$14,$13,$12
ai $6,$1,80 # 50
selb $5,$11,$10,$9
ai $7,$1,64 # 40
label_8cc:
brsl $0,func_580 # 580
il $5,1024 # 400
brnz $3,label_94c # 94c
ori $3,$81,0
lqd $4,80($1) # 50
brsl $0,func_f3e0 # f3e0
ila $5,141264 # 227d0
ceq $19,$3,$83
shlqbyi $4,$3,0
ai $6,$1,48 # 30
gb $18,$19
ai $7,$1,112 # 70
cgti $17,$18,11
brnz $17,label_94c # 94c
ori $3,$81,0
brsl $0,func_580 # 580
brnz $3,label_94c # 94c
ori $3,$81,0
lqd $26,112($1) # 70
lqd $4,48($1) # 30
rotqbyi $5,$26,4
brsl $0,func_f3e0 # f3e0
hbrr label_948,label_950 # 950
ceq $25,$3,$83
lqd $22,0($82)
il $6,0
cdd $23,0($82)
gb $24,$25
shufb $21,$3,$22,$23
cgti $20,$24,11
stqd $21,0($82)
label_948:
brz $20,label_950 # 950
label_94c:
il $6,-1
label_950:
ori $3,$6,0
lqd $0,208($1) # d0
ai $1,$1,192 # c0
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
lqd $83,-64($1)
bi $0
.global func_970
func_970:
ila $8,253952 # 3e000
hbrr label_9c0,func_730 # 730
il $2,64 # 40
shlqbyi $7,$3,4
stqd $81,-32($1)
ori $81,$5,0
ori $5,$3,0
wrch $ch16,$8
ori $6,$81,0
stqd $80,-16($1)
il $3,2
wrch $ch17,$5
ori $80,$4,0
wrch $ch18,$7
wrch $ch19,$6
stqd $0,16($1)
stqd $1,-64($1)
wrch $ch20,$3
ai $1,$1,-64
wrch $ch21,$2
label_9c0:
brsl $0,func_730 # 730
il $4,0
ila $7,253952 # 3e000
br label_9ec # 9ec
label_9d0:
hbrr label_9f8,0
lqx $12,$4,$7
lqx $10,$4,$80
rotqby $11,$12,$5
shufb $9,$11,$10,$6
stqx $9,$4,$80
ai $4,$4,4
label_9ec:
clgt $13,$81,$4
a $5,$4,$7
cwx $6,$4,$80
label_9f8:
brnz $13,label_9d0 # 9d0
lqd $0,80($1) # 50
ai $1,$1,64 # 40
shlqbyi $3,$81,0
lqd $80,-16($1)
lqd $81,-32($1)
bi $0
lnop
.global func_a18
func_a18:
hbrr label_a5c,func_f3e0 # f3e0
stqd $81,-32($1)
stqd $82,-48($1)
stqd $83,-64($1)
ori $82,$4,0
stqd $84,-80($1)
ori $83,$3,0
stqd $86,-112($1)
ori $86,$5,0
stqd $0,16($1)
il $5,992 # 3e0
stqd $80,-16($1)
il $84,-1
stqd $85,-96($1)
stqd $87,-128($1)
stqd $1,-256($1)
ai $1,$1,-256
label_a5c:
brsl $0,func_f3e0 # f3e0
ori $81,$3,0
ceq $4,$81,$84
gb $3,$4
cgti $2,$3,11
brnz $2,label_c2c # c2c
ori $3,$83,0
brsl $0,func_f2a8 # f2a8
ceqi $5,$3,3
brz $5,label_ac4 # ac4
ori $3,$83,0
brsl $0,func_dc80 # dc80
hbrr label_ab0,func_580 # 580
ila $8,141296 # 227f0
shlqbyi $4,$81,0
ceqi $7,$3,0
shlqbyi $3,$83,0
ila $6,141280 # 227e0
selb $5,$8,$6,$7
ai $6,$1,64 # 40
ai $7,$1,48 # 30
label_ab0:
brsl $0,func_580 # 580
ori $80,$3,0
brnz $3,label_c30 # c30
lqd $82,64($1) # 40
br label_b58 # b58
label_ac4:
ori $3,$83,0
ori $4,$81,0
ila $5,141312 # 22800
ai $6,$1,48 # 30
ai $7,$1,64 # 40
brsl $0,func_580 # 580
ori $80,$3,0
brnz $3,label_c30 # c30
lqd $14,48($1) # 30
ori $3,$83,0
lqr $20,data_22830
il $5,32 # 20
hbrr label_b24,func_f3e0 # f3e0
lqr $80,data_22810
cdd $15,0($1)
bg $19,$81,$14
shufb $16,$19,$19,$20
sfx $16,$81,$14
cg $17,$16,$82
shufb $13,$17,$17,$80
addx $13,$16,$82
ori $4,$13,0
shufb $12,$13,$14,$15
stqd $12,48($1) # 30
label_b24:
brsl $0,func_f3e0 # f3e0
ceq $11,$3,$84
gb $10,$11
cgti $9,$10,11
brnz $9,label_c2c # c2c
ai $4,$1,96 # 60
il $5,32 # 20
brsl $0,func_970 # 970
lqd $21,48($1) # 30
lqd $22,96($1) # 60
cg $23,$21,$22
shufb $82,$23,$23,$80
addx $82,$21,$22
label_b58:
ori $4,$82,0
shlqbyi $3,$83,0
il $5,992 # 3e0
fsmbi $87,65535 # ffff
brsl $0,func_f3e0 # f3e0
hbrr label_bb0,func_580 # 580
ori $4,$3,0
ceq $26,$4,$87
gb $25,$26
cgti $24,$25,11
brnz $24,label_c2c # c2c
fsmbi $84,257 # 101
ori $3,$83,0
lqr $85,data_22810
ila $5,141264 # 227d0
ai $6,$1,32 # 20
andbi $84,$84,16
ai $7,$1,80 # 50
cg $27,$4,$84
shufb $81,$27,$27,$85
addx $81,$4,$84
ori $4,$81,0
label_bb0:
brsl $0,func_580 # 580
ori $80,$3,0
brnz $3,label_c30 # c30
lqd $36,32($1) # 20
cg $45,$82,$84
lqr $44,data_22830
ori $3,$83,0
hbrr label_c08,func_f3e0 # f3e0
shufb $39,$45,$45,$85
lqd $42,80($1) # 50
cdd $37,0($1)
bg $43,$81,$36
addx $39,$82,$84
shufb $38,$43,$43,$44
rotqbyi $5,$42,4
sfx $38,$81,$36
cg $40,$38,$39
shufb $35,$40,$40,$85
addx $35,$38,$39
shufb $34,$35,$36,$37
ori $4,$35,0
stqd $34,32($1) # 20
label_c08:
brsl $0,func_f3e0 # f3e0
lqd $30,0($86)
ceq $33,$3,$87
cdd $31,0($86)
gb $32,$33
shufb $29,$3,$30,$31
cgti $28,$32,11
stqd $29,0($86)
brz $28,label_c30 # c30
label_c2c:
il $80,-1
label_c30:
ori $3,$80,0
lqd $0,272($1) # 110
ai $1,$1,256 # 100
hbr label_c60,$0
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
lqd $83,-64($1)
lqd $84,-80($1)
lqd $85,-96($1)
lqd $86,-112($1)
lqd $87,-128($1)
label_c60:
bi $0
lnop
.global func_c68
func_c68:
hbrr label_c90,func_f2a8 # f2a8
stqd $80,-16($1)
ori $80,$3,0
stqd $81,-32($1)
ori $81,$4,0
stqd $82,-48($1)
ori $82,$5,0
stqd $0,16($1)
stqd $1,-80($1)
ai $1,$1,-80
label_c90:
brsl $0,func_f2a8 # f2a8
hbrr label_cc0,func_a18 # a18
cgti $2,$3,0
shlqbyi $4,$81,0
ori $3,$80,0
shlqbyi $5,$82,0
brz $2,label_cc4 # cc4
lqd $0,96($1) # 60
ai $1,$1,80 # 50
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
label_cc0:
br func_a18 # a18
label_cc4:
hbrr label_ce8,func_808 # 808
ori $3,$80,0
lqd $0,96($1) # 60
ai $1,$1,80 # 50
shlqbyi $4,$81,0
ori $5,$82,0
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
label_ce8:
br func_808 # 808
lnop
.global func_cf0
func_cf0:
hbrr label_d1c,func_f348 # f348
stqd $0,16($1)
stqd $80,-16($1)
stqd $81,-32($1)
stqd $82,-48($1)
stqd $83,-64($1)
ori $82,$4,0
stqd $84,-80($1)
ori $83,$3,0
stqd $1,-112($1)
ai $1,$1,-112
label_d1c:
brsl $0,func_f348 # f348
ori $81,$3,0
shlqbyi $3,$83,0
brsl $0,func_e008 # e008
hbrr label_d5c,func_d548 # d548
ceqbi $29,$3,0
shlqbyi $3,$83,0
ila $26,3176 # c68
xsbh $28,$29
ila $24,3880 # f28
ceqhi $27,$28,0
ila $23,3880 # f28
fsm $25,$27
ila $22,3176 # c68
selb $80,$26,$24,$25
selb $84,$23,$22,$25
label_d5c:
brsl $0,func_d548 # d548
ila $19,3880 # f28
lqd $4,0($83)
ceqbi $20,$3,0
ila $17,3176 # c68
xsbh $3,$20
ceqhi $5,$3,0
ori $3,$83,0
rotqby $15,$4,$83
ori $4,$81,0
fsm $18,$5
ori $5,$82,0
selb $9,$80,$19,$18
selb $84,$84,$17,$18
a $13,$15,$9
andi $14,$9,1
ai $6,$13,-1
ceqbi $12,$14,0
lqd $8,0($6)
xsbh $11,$12
ceqhi $10,$11,0
fsm $7,$10
rotqby $2,$8,$6
selb $80,$9,$2,$7
bisl $0,$80
ori $4,$81,0
shlqbyi $5,$82,0
brz $3,label_e0c # e0c
lqd $39,0($83)
andi $41,$84,1
shlqbyi $3,$83,0
ceqbi $40,$41,0
xsbh $37,$40
rotqby $38,$39,$83
ceqhi $35,$37,0
fsm $31,$35
a $36,$38,$84
ai $34,$36,-1
lqd $33,0($34)
rotqby $32,$33,$34
selb $30,$84,$32,$31
bisl $0,$30
il $2,-1
brnz $3,label_e10 # e10
label_e0c:
il $2,0
label_e10:
ori $3,$2,0
lqd $0,128($1) # 80
ai $1,$1,112 # 70
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
lqd $83,-64($1)
lqd $84,-80($1)
bi $0
lnop
.global func_e38
func_e38:
br func_f590 # f590
lnop
.global func_e40
func_e40:
stqd $81,-32($1)
ori $81,$3,0
stqd $0,16($1)
stqd $80,-16($1)
stqd $1,-80($1)
ai $1,$1,-80
brsl $0,func_10050 # 10050
ori $3,$81,0
brsl $0,func_ff8 # ff8
ori $80,$3,0
brnz $3,label_f0c # f0c
brsl $0,func_d7d8 # d7d8
ori $3,$81,0
lqd $7,0($81)
rotqby $6,$7,$81
ai $2,$6,24 # 18
lqd $5,0($2)
rotqby $4,$5,$2
bisl $0,$4
ori $3,$81,0
brsl $0,func_fc60 # fc60
ai $4,$1,32 # 20
ori $80,$3,0
shlqbyi $3,$81,0
brnz $80,label_f0c # f0c
il $80,-1
brsl $0,func_cf0 # cf0
brz $3,label_eb8 # eb8
brsl $0,func_d808 # d808
br label_f0c # f0c
label_eb8:
brsl $0,func_d5d8 # d5d8
lqd $11,0($81)
ori $3,$81,0
lqd $4,32($1) # 20
rotqby $10,$11,$81
lqd $9,16($10)
rotqby $8,$9,$10
bisl $0,$8
ori $80,$3,0
brz $3,label_eec # eec
il $80,-1
brsl $0,func_d8a0 # d8a0
br label_f0c # f0c
label_eec:
brsl $0,func_d550 # d550
ori $3,$81,0
lqd $16,0($81)
rotqby $15,$16,$81
ai $14,$15,20 # 14
lqd $13,0($14)
rotqby $12,$13,$14
bisl $0,$12
label_f0c:
lqd $0,96($1) # 60
ai $1,$1,80 # 50
shlqbyi $3,$80,0
lqd $80,-16($1)
lqd $81,-32($1)
bi $0
lnop
.global func_f28
func_f28:
hbrr label_f50,func_f2a8 # f2a8
stqd $80,-16($1)
ori $80,$4,0
stqd $81,-32($1)
ori $81,$5,0
stqd $82,-48($1)
ori $82,$3,0
stqd $0,16($1)
stqd $1,-80($1)
ai $1,$1,-80
label_f50:
brsl $0,func_f2a8 # f2a8
ori $4,$80,0
cgti $2,$3,0
shlqbyi $5,$81,0
ori $3,$82,0
brnz $2,label_f80 # f80
lqd $0,96($1) # 60
ai $1,$1,80 # 50
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
br func_678 # 678
label_f80:
il $3,-1
lqd $0,96($1) # 60
ai $1,$1,80 # 50
lqd $80,-16($1)
lqd $81,-32($1)
lqd $82,-48($1)
bi $0
lnop
.global func_fa0
func_fa0:
ceqi $2,$3,1
brz $2,label_fbc # fbc
ila $6,65535 # ffff
ila $3,194992 # 2f9b0
ceq $5,$4,$6
biz $5,$0
br func_26b8 # 26b8
label_fbc:
binz $3,$0
ila $8,65535 # ffff
ila $3,194992 # 2f9b0
ceq $7,$4,$8
biz $7,$0
br func_2818 # 2818
lnop
.global func_fd8
func_fd8:
il $3,0
ila $4,65535 # ffff
br func_fa0 # fa0
lnop
.global func_fe8
func_fe8:
il $3,1
ila $4,65535 # ffff
br func_fa0 # fa0
lnop
.global func_ff8
func_ff8:
stqd $0,16($1)
stqd $1,-48($1)
ai $1,$1,-48
ai $3,$1,32 # 20
brsl $0,func_1740 # 1740
lqd $0,64($1) # 40
ceqi $4,$3,0
fsmbi $3,0
il $2,-5
ai $1,$1,48 # 30
selb $3,$2,$3,$4
bi $0
.global func_1028
func_1028:
il $3,0
il $2,2
wrch $ch64,$3
wrch $ch64,$2
bi $0
lnop
.global func_1040
func_1040:
ori $6,$3,0
fsmbi $18,257 # 101
il $2,32 # 20
lqr $14,data_22820
lqr $16,data_22810
hbrr label_10a8,func_730 # 730
andbi $17,$18,15
shlqbyi $7,$3,4
and $13,$3,$17
il $3,2
cg $15,$13,$14
shufb $12,$15,$15,$16
addx $12,$13,$14
shlqbyi $9,$12,4
ori $11,$9,0
lqd $10,0($9)
cwd $8,0($9)
wrch $ch16,$11
wrch $ch17,$6
wrch $ch18,$7
shufb $5,$4,$10,$8
il $4,4
wrch $ch19,$4
wrch $ch20,$3
stqd $5,0($9)
wrch $ch21,$2
label_10a8:
br func_730 # 730
lnop
.global func_10b0
func_10b0:
il $4,1280 # 500
stqd $0,16($1)
stqd $80,-16($1)
stqd $1,-64($1)
ori $80,$3,0
fsmbi $3,0
ai $1,$1,-64
brsl $0,func_1040 # 1040
ori $3,$80,0
brsl $0,func_f3b8 # f3b8
il $10,0
lqd $9,32($1) # 20
il $5,1
cwd $11,0($1)
hbrr label_111c,func_1040 # 1040
cbd $6,0($1)
cbd $7,1($1)
lqd $0,80($1) # 50
shufb $8,$10,$9,$11
shufb $4,$3,$8,$6
fsmbi $3,257 # 101
shufb $2,$5,$4,$7
andbi $3,$3,4
stqd $2,32($1) # 20
ai $1,$1,64 # 40
shlqbyi $4,$2,0
lqd $80,-16($1)
label_111c:
br func_1040 # 1040
.global func_1120
func_1120:
ila $8,131072 # 20000
hbrr label_1154,func_1040 # 1040
il $4,-2
lqr $6,data_260a0
lqr $5,data_22870
lqr $7,data_22810
stqd $0,16($1)
stqd $1,-32($1)
ai $1,$1,-32
wrch $ch64,$8
cg $3,$6,$5
shufb $3,$3,$3,$7
addx $3,$6,$5
label_1154:
brsl $0,func_1040 # 1040
il $2,2
lqd $0,48($1) # 30
ai $1,$1,32 # 20
wrch $ch64,$2
bi $0
lnop
.global func_1170
func_1170:
ila $4,142072 # 22af8
lqd $7,0($3)
cwd $6,0($3)
shufb $2,$4,$7,$6
stqd $2,0($3)
br func_46a0 # 46a0
.global func_1188
func_1188:
ila $3,194992 # 2f9b0
hbrr label_11b8,func_1e00 # 1e00
stqd $0,16($1)
stqd $82,-48($1)
stqd $83,-64($1)
stqd $84,-80($1)
stqd $80,-16($1)
stqd $81,-32($1)
stqd $1,-496($1)
ai $1,$1,-496
ai $83,$1,240 # f0
cwd $84,0($1)
label_11b8:
brsl $0,func_1e00 # 1e00
ori $3,$83,0
il $4,0
brsl $0,func_4a58 # 4a58
ori $3,$83,0
lqd $6,32($1) # 20
ila $4,253952 # 3e000
il $5,8192 # 2000
shufb $2,$83,$6,$84
stqd $2,32($1) # 20
brsl $0,func_4618 # 4618
hbrr label_1208,func_2210 # 2210
ila $3,194992 # 2f9b0
il $4,1
ila $5,141472 # 228a0
ila $6,141504 # 228c0