-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp_process32.dump
5989 lines (5902 loc) · 254 KB
/
app_process32.dump
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
arm/app_process32: file format elf32-littlearm
Disassembly of section .plt:
000013c4 <__libc_init@plt-0x14>:
13c4: e52de004 push {lr} ; (str lr, [sp, #-4]!)
13c8: e59fe004 ldr lr, [pc, #4] ; 13d4 <__libc_init@plt-0x4>
13cc: e08fe00e add lr, pc, lr
13d0: e5bef008 ldr pc, [lr, #8]!
13d4: 00005b00 andeq r5, r0, r0, lsl #22
000013d8 <__libc_init@plt>:
13d8: e28fc600 add ip, pc, #0, 12
13dc: e28cca05 add ip, ip, #20480 ; 0x5000
13e0: e5bcfb00 ldr pc, [ip, #2816]! ; 0xb00
000013e4 <__cxa_atexit@plt>:
13e4: e28fc600 add ip, pc, #0, 12
13e8: e28cca05 add ip, ip, #20480 ; 0x5000
13ec: e5bcfaf8 ldr pc, [ip, #2808]! ; 0xaf8
000013f0 <__register_atfork@plt>:
13f0: e28fc600 add ip, pc, #0, 12
13f4: e28cca05 add ip, ip, #20480 ; 0x5000
13f8: e5bcfaf0 ldr pc, [ip, #2800]! ; 0xaf0
000013fc <_Znwj@plt>:
13fc: e28fc600 add ip, pc, #0, 12
1400: e28cca05 add ip, ip, #20480 ; 0x5000
1404: e5bcfae8 ldr pc, [ip, #2792]! ; 0xae8
00001408 <__aeabi_memcpy@plt>:
1408: e28fc600 add ip, pc, #0, 12
140c: e28cca05 add ip, ip, #20480 ; 0x5000
1410: e5bcfae0 ldr pc, [ip, #2784]! ; 0xae0
00001414 <_ZN7android4base11GetPropertyERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_@plt>:
1414: e28fc600 add ip, pc, #0, 12
1418: e28cca05 add ip, ip, #20480 ; 0x5000
141c: e5bcfad8 ldr pc, [ip, #2776]! ; 0xad8
00001420 <_ZdlPv@plt>:
1420: e28fc600 add ip, pc, #0, 12
1424: e28cca05 add ip, ip, #20480 ; 0x5000
1428: e5bcfad0 ldr pc, [ip, #2768]! ; 0xad0
0000142c <strncmp@plt>:
142c: e28fc600 add ip, pc, #0, 12
1430: e28cca05 add ip, ip, #20480 ; 0x5000
1434: e5bcfac8 ldr pc, [ip, #2760]! ; 0xac8
00001438 <strlen@plt>:
1438: e28fc600 add ip, pc, #0, 12
143c: e28cca05 add ip, ip, #20480 ; 0x5000
1440: e5bcfac0 ldr pc, [ip, #2752]! ; 0xac0
00001444 <strcmp@plt>:
1444: e28fc600 add ip, pc, #0, 12
1448: e28cca05 add ip, ip, #20480 ; 0x5000
144c: e5bcfab8 ldr pc, [ip, #2744]! ; 0xab8
00001450 <strdup@plt>:
1450: e28fc600 add ip, pc, #0, 12
1454: e28cca05 add ip, ip, #20480 ; 0x5000
1458: e5bcfab0 ldr pc, [ip, #2736]! ; 0xab0
0000145c <_ZN7android14AndroidRuntime9addOptionEPKcPv@plt>:
145c: e28fc600 add ip, pc, #0, 12
1460: e28cca05 add ip, ip, #20480 ; 0x5000
1464: e5bcfaa8 ldr pc, [ip, #2728]! ; 0xaa8
00001468 <_ZN7android7String8C1Ev@plt>:
1468: e28fc600 add ip, pc, #0, 12
146c: e28cca05 add ip, ip, #20480 ; 0x5000
1470: e5bcfaa0 ldr pc, [ip, #2720]! ; 0xaa0
00001474 <_ZN7android7String85setToEPKc@plt>:
1474: e28fc600 add ip, pc, #0, 12
1478: e28cca05 add ip, ip, #20480 ; 0x5000
147c: e5bcfa98 ldr pc, [ip, #2712]! ; 0xa98
00001480 <_ZN7android10VectorImplC2Ejj@plt>:
1480: e28fc600 add ip, pc, #0, 12
1484: e28cca05 add ip, ip, #20480 ; 0x5000
1488: e5bcfa90 ldr pc, [ip, #2704]! ; 0xa90
0000148c <_ZNK7android7String86lengthEv@plt>:
148c: e28fc600 add ip, pc, #0, 12
1490: e28cca05 add ip, ip, #20480 ; 0x5000
1494: e5bcfa88 ldr pc, [ip, #2696]! ; 0xa88
00001498 <getenv@plt>:
1498: e28fc600 add ip, pc, #0, 12
149c: e28cca05 add ip, ip, #20480 ; 0x5000
14a0: e5bcfa80 ldr pc, [ip, #2688]! ; 0xa80
000014a4 <mkdir@plt>:
14a4: e28fc600 add ip, pc, #0, 12
14a8: e28cca05 add ip, ip, #20480 ; 0x5000
14ac: e5bcfa78 ldr pc, [ip, #2680]! ; 0xa78
000014b0 <__errno@plt>:
14b0: e28fc600 add ip, pc, #0, 12
14b4: e28cca05 add ip, ip, #20480 ; 0x5000
14b8: e5bcfa70 ldr pc, [ip, #2672]! ; 0xa70
000014bc <chown@plt>:
14bc: e28fc600 add ip, pc, #0, 12
14c0: e28cca05 add ip, ip, #20480 ; 0x5000
14c4: e5bcfa68 ldr pc, [ip, #2664]! ; 0xa68
000014c8 <chmod@plt>:
14c8: e28fc600 add ip, pc, #0, 12
14cc: e28cca05 add ip, ip, #20480 ; 0x5000
14d0: e5bcfa60 ldr pc, [ip, #2656]! ; 0xa60
000014d4 <_ZN7android7String8C1EPKc@plt>:
14d4: e28fc600 add ip, pc, #0, 12
14d8: e28cca05 add ip, ip, #20480 ; 0x5000
14dc: e5bcfa58 ldr pc, [ip, #2648]! ; 0xa58
000014e0 <_ZN7android10VectorImpl3addEPKv@plt>:
14e0: e28fc600 add ip, pc, #0, 12
14e4: e28cca05 add ip, ip, #20480 ; 0x5000
14e8: e5bcfa50 ldr pc, [ip, #2640]! ; 0xa50
000014ec <_ZN7android7String8D1Ev@plt>:
14ec: e28fc600 add ip, pc, #0, 12
14f0: e28cca05 add ip, ip, #20480 ; 0x5000
14f4: e5bcfa48 ldr pc, [ip, #2632]! ; 0xa48
000014f8 <property_get@plt>:
14f8: e28fc600 add ip, pc, #0, 12
14fc: e28cca05 add ip, ip, #20480 ; 0x5000
1500: e5bcfa40 ldr pc, [ip, #2624]! ; 0xa40
00001504 <_ZN7android7String86appendEPKc@plt>:
1504: e28fc600 add ip, pc, #0, 12
1508: e28cca05 add ip, ip, #20480 ; 0x5000
150c: e5bcfa38 ldr pc, [ip, #2616]! ; 0xa38
00001510 <_ZN7android14AndroidRuntime8setArgv0EPKcb@plt>:
1510: e28fc600 add ip, pc, #0, 12
1514: e28cca05 add ip, ip, #20480 ; 0x5000
1518: e5bcfa30 ldr pc, [ip, #2608]! ; 0xa30
0000151c <_ZN7android14AndroidRuntime5startEPKcRKNS_6VectorINS_7String8EEEb@plt>:
151c: e28fc600 add ip, pc, #0, 12
1520: e28cca05 add ip, ip, #20480 ; 0x5000
1524: e5bcfa28 ldr pc, [ip, #2600]! ; 0xa28
00001528 <_ZN7android10VectorImpl13finish_vectorEv@plt>:
1528: e28fc600 add ip, pc, #0, 12
152c: e28cca05 add ip, ip, #20480 ; 0x5000
1530: e5bcfa20 ldr pc, [ip, #2592]! ; 0xa20
00001534 <_ZN7android10VectorImplD2Ev@plt>:
1534: e28fc600 add ip, pc, #0, 12
1538: e28cca05 add ip, ip, #20480 ; 0x5000
153c: e5bcfa18 ldr pc, [ip, #2584]! ; 0xa18
00001540 <_ZN7android14AndroidRuntimeD2Ev@plt>:
1540: e28fc600 add ip, pc, #0, 12
1544: e28cca05 add ip, ip, #20480 ; 0x5000
1548: e5bcfa10 ldr pc, [ip, #2576]! ; 0xa10
0000154c <__stack_chk_fail@plt>:
154c: e28fc600 add ip, pc, #0, 12
1550: e28cca05 add ip, ip, #20480 ; 0x5000
1554: e5bcfa08 ldr pc, [ip, #2568]! ; 0xa08
00001558 <fwrite@plt>:
1558: e28fc600 add ip, pc, #0, 12
155c: e28cca05 add ip, ip, #20480 ; 0x5000
1560: e5bcfa00 ldr pc, [ip, #2560]! ; 0xa00
00001564 <__android_log_assert@plt>:
1564: e28fc600 add ip, pc, #0, 12
1568: e28cca05 add ip, ip, #20480 ; 0x5000
156c: e5bcf9f8 ldr pc, [ip, #2552]! ; 0x9f8
00001570 <strerror@plt>:
1570: e28fc600 add ip, pc, #0, 12
1574: e28cca05 add ip, ip, #20480 ; 0x5000
1578: e5bcf9f0 ldr pc, [ip, #2544]! ; 0x9f0
0000157c <_ZN7android14AndroidRuntimeC2EPcj@plt>:
157c: e28fc600 add ip, pc, #0, 12
1580: e28cca05 add ip, ip, #20480 ; 0x5000
1584: e5bcf9e8 ldr pc, [ip, #2536]! ; 0x9e8
00001588 <_ZN7android7String85setToERKS0_@plt>:
1588: e28fc600 add ip, pc, #0, 12
158c: e28cca05 add ip, ip, #20480 ; 0x5000
1590: e5bcf9e0 ldr pc, [ip, #2528]! ; 0x9e0
00001594 <_ZN7android14AndroidRuntime16toSlashClassNameEPKc@plt>:
1594: e28fc600 add ip, pc, #0, 12
1598: e28cca05 add ip, ip, #20480 ; 0x5000
159c: e5bcf9d8 ldr pc, [ip, #2520]! ; 0x9d8
000015a0 <__android_log_print@plt>:
15a0: e28fc600 add ip, pc, #0, 12
15a4: e28cca05 add ip, ip, #20480 ; 0x5000
15a8: e5bcf9d0 ldr pc, [ip, #2512]! ; 0x9d0
000015ac <free@plt>:
15ac: e28fc600 add ip, pc, #0, 12
15b0: e28cca05 add ip, ip, #20480 ; 0x5000
15b4: e5bcf9c8 ldr pc, [ip, #2504]! ; 0x9c8
000015b8 <_ZN7android12ProcessState4selfEv@plt>:
15b8: e28fc600 add ip, pc, #0, 12
15bc: e28cca05 add ip, ip, #20480 ; 0x5000
15c0: e5bcf9c0 ldr pc, [ip, #2496]! ; 0x9c0
000015c4 <_ZN7android12ProcessState15startThreadPoolEv@plt>:
15c4: e28fc600 add ip, pc, #0, 12
15c8: e28cca05 add ip, ip, #20480 ; 0x5000
15cc: e5bcf9b8 ldr pc, [ip, #2488]! ; 0x9b8
000015d0 <_ZN7android14AndroidRuntime10getRuntimeEv@plt>:
15d0: e28fc600 add ip, pc, #0, 12
15d4: e28cca05 add ip, ip, #20480 ; 0x5000
15d8: e5bcf9b0 ldr pc, [ip, #2480]! ; 0x9b0
000015dc <_ZN7android14AndroidRuntime8callMainERKNS_7String8EP7_jclassRKNS_6VectorIS1_EE@plt>:
15dc: e28fc600 add ip, pc, #0, 12
15e0: e28cca05 add ip, ip, #20480 ; 0x5000
15e4: e5bcf9a8 ldr pc, [ip, #2472]! ; 0x9a8
000015e8 <_ZN7android14IPCThreadState4selfEv@plt>:
15e8: e28fc600 add ip, pc, #0, 12
15ec: e28cca05 add ip, ip, #20480 ; 0x5000
15f0: e5bcf9a0 ldr pc, [ip, #2464]! ; 0x9a0
000015f4 <_ZN7android14IPCThreadState11stopProcessEb@plt>:
15f4: e28fc600 add ip, pc, #0, 12
15f8: e28cca05 add ip, ip, #20480 ; 0x5000
15fc: e5bcf998 ldr pc, [ip, #2456]! ; 0x998
00001600 <_ZN7android8hardware14IPCThreadState4selfEv@plt>:
1600: e28fc600 add ip, pc, #0, 12
1604: e28cca05 add ip, ip, #20480 ; 0x5000
1608: e5bcf990 ldr pc, [ip, #2448]! ; 0x990
0000160c <_ZN7android8hardware14IPCThreadState11stopProcessEb@plt>:
160c: e28fc600 add ip, pc, #0, 12
1610: e28cca05 add ip, ip, #20480 ; 0x5000
1614: e5bcf988 ldr pc, [ip, #2440]! ; 0x988
00001618 <_ZNK7android7RefBase9decStrongEPKv@plt>:
1618: e28fc600 add ip, pc, #0, 12
161c: e28cca05 add ip, ip, #20480 ; 0x5000
1620: e5bcf980 ldr pc, [ip, #2432]! ; 0x980
00001624 <__vsnprintf_chk@plt>:
1624: e28fc600 add ip, pc, #0, 12
1628: e28cca05 add ip, ip, #20480 ; 0x5000
162c: e5bcf978 ldr pc, [ip, #2424]! ; 0x978
00001630 <_ZN7android7String8C1ERKS0_@plt>:
1630: e28fc600 add ip, pc, #0, 12
1634: e28cca05 add ip, ip, #20480 ; 0x5000
1638: e5bcf970 ldr pc, [ip, #2416]! ; 0x970
0000163c <__aeabi_memmove@plt>:
163c: e28fc600 add ip, pc, #0, 12
1640: e28cca05 add ip, ip, #20480 ; 0x5000
1644: e5bcf968 ldr pc, [ip, #2408]! ; 0x968
00001648 <_ZNSt3__111__call_onceERVmPvPFvS2_E@plt>:
1648: e28fc600 add ip, pc, #0, 12
164c: e28cca05 add ip, ip, #20480 ; 0x5000
1650: e5bcf960 ldr pc, [ip, #2400]! ; 0x960
00001654 <pthread_getspecific@plt>:
1654: e28fc600 add ip, pc, #0, 12
1658: e28cca05 add ip, ip, #20480 ; 0x5000
165c: e5bcf958 ldr pc, [ip, #2392]! ; 0x958
00001660 <sigemptyset64@plt>:
1660: e28fc600 add ip, pc, #0, 12
1664: e28cca05 add ip, ip, #20480 ; 0x5000
1668: e5bcf950 ldr pc, [ip, #2384]! ; 0x950
0000166c <sigismember64@plt>:
166c: e28fc600 add ip, pc, #0, 12
1670: e28cca05 add ip, ip, #20480 ; 0x5000
1674: e5bcf948 ldr pc, [ip, #2376]! ; 0x948
00001678 <sigaddset64@plt>:
1678: e28fc600 add ip, pc, #0, 12
167c: e28cca05 add ip, ip, #20480 ; 0x5000
1680: e5bcf940 ldr pc, [ip, #2368]! ; 0x940
00001684 <pthread_setspecific@plt>:
1684: e28fc600 add ip, pc, #0, 12
1688: e28cca05 add ip, ip, #20480 ; 0x5000
168c: e5bcf938 ldr pc, [ip, #2360]! ; 0x938
00001690 <abort@plt>:
1690: e28fc600 add ip, pc, #0, 12
1694: e28cca05 add ip, ip, #20480 ; 0x5000
1698: e5bcf930 ldr pc, [ip, #2352]! ; 0x930
0000169c <__android_log_write@plt>:
169c: e28fc600 add ip, pc, #0, 12
16a0: e28cca05 add ip, ip, #20480 ; 0x5000
16a4: e5bcf928 ldr pc, [ip, #2344]! ; 0x928
000016a8 <sigemptyset@plt>:
16a8: e28fc600 add ip, pc, #0, 12
16ac: e28cca05 add ip, ip, #20480 ; 0x5000
16b0: e5bcf920 ldr pc, [ip, #2336]! ; 0x920
000016b4 <sigismember@plt>:
16b4: e28fc600 add ip, pc, #0, 12
16b8: e28cca05 add ip, ip, #20480 ; 0x5000
16bc: e5bcf918 ldr pc, [ip, #2328]! ; 0x918
000016c0 <sigdelset@plt>:
16c0: e28fc600 add ip, pc, #0, 12
16c4: e28cca05 add ip, ip, #20480 ; 0x5000
16c8: e5bcf910 ldr pc, [ip, #2320]! ; 0x910
000016cc <sigdelset64@plt>:
16cc: e28fc600 add ip, pc, #0, 12
16d0: e28cca05 add ip, ip, #20480 ; 0x5000
16d4: e5bcf908 ldr pc, [ip, #2312]! ; 0x908
000016d8 <sigfillset64@plt>:
16d8: e28fc600 add ip, pc, #0, 12
16dc: e28cca05 add ip, ip, #20480 ; 0x5000
16e0: e5bcf900 ldr pc, [ip, #2304]! ; 0x900
000016e4 <pthread_key_create@plt>:
16e4: e28fc600 add ip, pc, #0, 12
16e8: e28cca05 add ip, ip, #20480 ; 0x5000
16ec: e5bcf8f8 ldr pc, [ip, #2296]! ; 0x8f8
000016f0 <dlsym@plt>:
16f0: e28fc600 add ip, pc, #0, 12
16f4: e28cca05 add ip, ip, #20480 ; 0x5000
16f8: e5bcf8f0 ldr pc, [ip, #2288]! ; 0x8f0
000016fc <fprintf@plt>:
16fc: e28fc600 add ip, pc, #0, 12
1700: e28cca05 add ip, ip, #20480 ; 0x5000
1704: e5bcf8e8 ldr pc, [ip, #2280]! ; 0x8e8
00001708 <fflush@plt>:
1708: e28fc600 add ip, pc, #0, 12
170c: e28cca05 add ip, ip, #20480 ; 0x5000
1710: e5bcf8e0 ldr pc, [ip, #2272]! ; 0x8e0
00001714 <__aeabi_memclr@plt>:
1714: e28fc600 add ip, pc, #0, 12
1718: e28cca05 add ip, ip, #20480 ; 0x5000
171c: e5bcf8d8 ldr pc, [ip, #2264]! ; 0x8d8
00001720 <dladdr@plt>:
1720: e28fc600 add ip, pc, #0, 12
1724: e28cca05 add ip, ip, #20480 ; 0x5000
1728: e5bcf8d0 ldr pc, [ip, #2256]! ; 0x8d0
0000172c <dl_iterate_phdr@plt>:
172c: e28fc600 add ip, pc, #0, 12
1730: e28cca05 add ip, ip, #20480 ; 0x5000
1734: e5bcf8c8 ldr pc, [ip, #2248]! ; 0x8c8
Disassembly of section .text:
00001738 <sigaction-0xd9c>:
1738: f0004668 ; <UNDEFINED> instruction: 0xf0004668
173c: 0000b801 andeq fp, r0, r1, lsl #16
1740: b084b580 addlt fp, r4, r0, lsl #11
1744: 44794909 ldrbtmi r4, [r9], #-2313 ; 0x909
1748: 91026809 tstls r2, r9, lsl #16
174c: 44794908 ldrbtmi r4, [r9], #-2312 ; 0x908
1750: 91016809 tstls r1, r9, lsl #16
1754: 44794907 ldrbtmi r4, [r9], #-2311 ; 0x907
1758: 91036809 tstls r3, r9, lsl #16
175c: 44794906 ldrbtmi r4, [r9], #-2310 ; 0x906
1760: ab01680a blge 5b790 <EnsureFrontOfChain+0x58b3c>
1764: f0032100 ; <UNDEFINED> instruction: 0xf0032100
1768: bf00fa33 svclt 0x0000fa33
176c: 00005762 andeq r5, r0, r2, ror #14
1770: 0000575e andeq r5, r0, lr, asr r7
1774: 0000575a andeq r5, r0, sl, asr r7
1778: 00005756 andeq r5, r0, r6, asr r7
177c: 4700b100 strmi fp, [r0, -r0, lsl #2]
1780: 00004770 andeq r4, r0, r0, ror r7
1784: 46014a04 strmi r4, [r1], -r4, lsl #20
1788: 44784802 ldrbtmi r4, [r8], #-2050 ; 0x802
178c: f003447a ; <UNDEFINED> instruction: 0xf003447a
1790: bf00ba27 svclt 0x0000ba27
1794: ffffffef ; <UNDEFINED> instruction: 0xffffffef
1798: 00005870 andeq r5, r0, r0, ror r8
179c: 447b4b01 ldrbtmi r4, [fp], #-2817 ; 0xb01
17a0: ba26f003 blt 9bd7b4 <EnsureFrontOfChain+0x9bab60>
17a4: 0000585e andeq r5, r0, lr, asr r8
17a8: 4ff0e92d svcmi 0x00f0e92d
17ac: 5d84f5ad cfstr32pl mvfx15, [r4, #692] ; 0x2b4
17b0: f8dfb085 ; <UNDEFINED> instruction: 0xf8dfb085
17b4: 460564b4 ; <UNDEFINED> instruction: 0x460564b4
17b8: 0918f10d ldmdbeq r8, {r0, r2, r3, r8, ip, sp, lr, pc}
17bc: 447e468a ldrbtmi r4, [lr], #-1674 ; 0x68a
17c0: 68006830 stmdavs r0, {r4, r5, fp, sp, lr}
17c4: 0000f8c9 andeq pc, r0, r9, asr #17
17c8: f0032010 ; <UNDEFINED> instruction: 0xf0032010
17cc: f8dffa19 ; <UNDEFINED> instruction: 0xf8dffa19
17d0: 4604149c ; <UNDEFINED> instruction: 0x4604149c
17d4: 220b2011 andcs r2, fp, #17
17d8: 90239425 eorls r9, r3, r5, lsr #8
17dc: 9024200b eorls r2, r4, fp
17e0: 44794620 ldrbtmi r4, [r9], #-1568 ; 0x620
17e4: fa14f003 blx 53d7f8 <EnsureFrontOfChain+0x53aba4>
17e8: efc02000 svc 0x00c02000
17ec: 72e00010 rscvc r0, r0, #16
17f0: 4611aa10 ; <UNDEFINED> instruction: 0x4611aa10
17f4: 070df941 streq pc, [sp, -r1, asr #18]
17f8: ac206008 stcge 0, cr6, [r0], #-32 ; 0xffffffe0
17fc: 4620a923 strtmi sl, [r0], -r3, lsr #18
1800: fa0ef003 blx 3bd814 <EnsureFrontOfChain+0x3babc0>
1804: 0040f89d umaaleq pc, r0, sp, r8 ; <UNPREDICTABLE>
1808: d00207c0 andle r0, r2, r0, asr #15
180c: f0039812 ; <UNDEFINED> instruction: 0xf0039812
1810: f89dfa0f ; <UNDEFINED> instruction: 0xf89dfa0f
1814: 07c0008c strbeq r0, [r0, ip, lsl #1]
1818: 9825d002 stmdals r5!, {r1, ip, lr, pc}
181c: fa08f003 blx 23d830 <EnsureFrontOfChain+0x23abdc>
1820: 7080f89d umullvc pc, r0, sp, r8 ; <UNPREDICTABLE>
1824: 0001f044 andeq pc, r1, r4, asr #32
1828: f8df9c22 ; <UNDEFINED> instruction: 0xf8df9c22
182c: f0171444 ; <UNDEFINED> instruction: 0xf0171444
1830: 44790f01 ldrbtmi r0, [r9], #-3841 ; 0xf01
1834: 4604bf08 strmi fp, [r4], -r8, lsl #30
1838: 46202207 strtmi r2, [r0], -r7, lsl #4
183c: fa00f003 blx 3d850 <EnsureFrontOfChain+0x3abfc>
1840: f0002800 ; <UNDEFINED> instruction: 0xf0002800
1844: f8df8195 ; <UNDEFINED> instruction: 0xf8df8195
1848: 4620142c strtmi r1, [r0], -ip, lsr #8
184c: 44792207 ldrbtmi r2, [r9], #-519 ; 0x207
1850: f9f6f003 ; <UNDEFINED> instruction: 0xf9f6f003
1854: f0002800 ; <UNDEFINED> instruction: 0xf0002800
1858: f1a5818b ; <UNDEFINED> instruction: 0xf1a5818b
185c: f8da0b01 ; <UNDEFINED> instruction: 0xf8da0b01
1860: f85a7000 ; <UNDEFINED> instruction: 0xf85a7000
1864: 4620402b strtmi r4, [r0], -fp, lsr #32
1868: f9f2f003 ; <UNDEFINED> instruction: 0xf9f2f003
186c: 0101f1c7 smlabteq r1, r7, r1, pc ; <UNPREDICTABLE>
1870: 180a4421 stmdane sl, {r0, r5, sl, lr}
1874: 4639a810 ; <UNDEFINED> instruction: 0x4639a810
1878: fa4ef000 blx 13bd880 <EnsureFrontOfChain+0x13bac2c>
187c: db342d02 blle d0cc8c <EnsureFrontOfChain+0xd0a038>
1880: 27012400 strcs r2, [r1, -r0, lsl #8]
1884: 0940f10d stmdbeq r0, {r0, r2, r3, r8, ip, sp, lr, pc}^
1888: 6027f85a eorvs pc, r7, sl, asr r8 ; <UNPREDICTABLE>
188c: d11d07e0 tstle sp, r0, ror #15
1890: 8480f8df strhi pc, [r0], #2271 ; 0x8df
1894: 44f82500 ldrbtmi r2, [r8], #1280 ; 0x500
1898: 1b04f858 blne 13fa00 <EnsureFrontOfChain+0x13cdac>
189c: f0034630 ; <UNDEFINED> instruction: 0xf0034630
18a0: 2800f9df stmdacs r0, {r0, r1, r2, r3, r4, r6, r7, r8, fp, ip, sp, lr, pc}
18a4: 2401bf08 strcs fp, [r1], #-3848 ; 0xf08
18a8: 2d023501 cfstr32cs mvfx3, [r2, #-4]
18ac: 7830d1f4 ldmdavc r0!, {r2, r4, r5, r6, r7, r8, ip, lr, pc}
18b0: d11c282d tstle ip, sp, lsr #16
18b4: 282d7870 stmdacs sp!, {r4, r5, r6, fp, ip, sp, lr}
18b8: 78b0bf08 ldmvc r0!, {r3, r8, r9, sl, fp, ip, sp, pc}
18bc: 2800bf08 stmdacs r0, {r3, r8, r9, sl, fp, ip, sp, pc}
18c0: 4630d016 ; <UNDEFINED> instruction: 0x4630d016
18c4: f9d4f003 ; <UNDEFINED> instruction: 0xf9d4f003
18c8: e0044601 and r4, r4, r1, lsl #12
18cc: f0034630 ; <UNDEFINED> instruction: 0xf0034630
18d0: 4601f9cf strmi pc, [r1], -pc, asr #19
18d4: 46482400 strbmi r2, [r8], -r0, lsl #8
18d8: f0032200 ; <UNDEFINED> instruction: 0xf0032200
18dc: 1c78f9d1 ldclne 9, cr15, [r8], #-836 ; 0xfffffcbc
18e0: 4607455f ; <UNDEFINED> instruction: 0x4607455f
18e4: 1e47dbd0 vmovne.8 d23[2], sp
18e8: 2700e002 strcs lr, [r0, -r2]
18ec: 3f01e000 svccc 0x0001e000
18f0: f003a80f ; <UNDEFINED> instruction: 0xf003a80f
18f4: a80ef9cd stmdage lr, {r0, r2, r3, r6, r7, r8, fp, ip, sp, lr, pc}
18f8: f9caf003 ; <UNDEFINED> instruction: 0xf9caf003
18fc: 0901f107 stmdbeq r1, {r0, r1, r2, r8, ip, sp, lr, pc}
1900: da4245d9 ble 109306c <EnsureFrontOfChain+0x1090418>
1904: 4dde4edc ldclmi 14, cr4, [lr, #880] ; 0x370
1908: 4fdc1cb8 svcmi 0x00dc1cb8
190c: 91032100 mrsls r2, (UNDEF: 19)
1910: ac0f2100 stfges f2, [pc], {-0}
1914: 21009104 tstcs r0, r4, lsl #2
1918: 447e9105 ldrbtmi r9, [lr], #-261 ; 0x105
191c: 447d447f ldrbtmi r4, [sp], #-1151 ; 0x47f
1920: 46314681 ldrtmi r4, [r1], -r1, lsl #13
1924: 8029f85a eorhi pc, r9, sl, asr r8 ; <UNPREDICTABLE>
1928: f0034640 ; <UNDEFINED> instruction: 0xf0034640
192c: b1c8f999 ; <UNDEFINED> instruction: 0xb1c8f999
1930: 46394640 ldrtmi r4, [r9], -r0, asr #12
1934: f994f003 ; <UNDEFINED> instruction: 0xf994f003
1938: 4640b1e8 strbmi fp, [r0], -r8, ror #3
193c: f0034629 ; <UNDEFINED> instruction: 0xf0034629
1940: b1d8f98f bicslt pc, r8, pc, lsl #19
1944: 13c8f8df bicne pc, r8, #14614528 ; 0xdf0000
1948: 220c4640 andcs r4, ip, #64, 12 ; 0x4000000
194c: f0034479 ; <UNDEFINED> instruction: 0xf0034479
1950: 2800f977 stmdacs r0, {r0, r1, r2, r4, r5, r6, r8, fp, ip, sp, lr, pc}
1954: 811df040 tsthi sp, r0, asr #32
1958: 010cf108 tsteq ip, r8, lsl #2
195c: f0034620 ; <UNDEFINED> instruction: 0xf0034620
1960: e00df99f mul sp, pc, r9 ; <UNPREDICTABLE>
1964: 13a4f8df ; <UNDEFINED> instruction: 0x13a4f8df
1968: 44794620 ldrbtmi r4, [r9], #-1568 ; 0x620
196c: f998f003 ; <UNDEFINED> instruction: 0xf998f003
1970: 90052001 andls r2, r5, r1
1974: 2001e004 andcs lr, r1, r4
1978: e0019004 and r9, r1, r4
197c: 90032001 andls r2, r3, r1
1980: 0001f109 andeq pc, r1, r9, lsl #2
1984: dbcb45d9 blle ff2d30f0 <EnsureFrontOfChain+0xff2d049c>
1988: 2000e005 andcs lr, r0, r5
198c: 20009005 andcs r9, r0, r5
1990: 20009004 andcs r9, r0, r4
1994: a8099003 stmdage r9, {r0, r1, ip, pc}
1998: 22002104 andcs r2, r0, #4, 2
199c: f988f003 ; <UNDEFINED> instruction: 0xf988f003
19a0: 82e4f8df rschi pc, r4, #14614528 ; 0xdf0000
19a4: f10844f8 ; <UNDEFINED> instruction: 0xf10844f8
19a8: 90090008 andls r0, r9, r8
19ac: f003a80e ; <UNDEFINED> instruction: 0xf003a80e
19b0: b138f987 teqlt r8, r7, lsl #19
19b4: f10a9803 ; <UNDEFINED> instruction: 0xf10a9803
19b8: 07c00504 strbeq r0, [r0, r4, lsl #10]
19bc: 49b4d177 ldmibmi r4!, {r0, r1, r2, r4, r5, r6, r8, ip, lr, pc}
19c0: e0764479 rsbs r4, r6, r9, ror r4
19c4: 447848b3 ldrbtmi r4, [r8], #-2227 ; 0x8b3
19c8: f982f003 ; <UNDEFINED> instruction: 0xf982f003
19cc: f0002800 ; <UNDEFINED> instruction: 0xf0002800
19d0: 49b18104 ldmibmi r1!, {r2, r8, pc}
19d4: e9cd4479 stmib sp, {r0, r3, r4, r5, r6, sl, lr}^
19d8: a8230100 stmdage r3!, {r8}
19dc: fae8f000 blx ffa3d9e4 <EnsureFrontOfChain+0xffa3ad90>
19e0: 5f80f5b0 svcpl 0x0080f5b0
19e4: 8101f080 smlabbhi r1, r0, r0, pc ; <UNPREDICTABLE>
19e8: f240a823 vadd.i8 d26, d0, d19
19ec: f00311c9 ; <UNDEFINED> instruction: 0xf00311c9
19f0: f1b0f977 ; <UNDEFINED> instruction: 0xf1b0f977
19f4: dc053fff stcle 15, cr3, [r5], {255} ; 0xff
19f8: f97af003 ; <UNDEFINED> instruction: 0xf97af003
19fc: 28116800 ldmdacs r1, {fp, sp, lr}
1a00: 8125f040 msrhi CPSR_sc, r0, asr #32
1a04: 2100a823 tstcs r0, r3, lsr #16
1a08: f0032200 ; <UNDEFINED> instruction: 0xf0032200
1a0c: f1b0f979 ; <UNDEFINED> instruction: 0xf1b0f979
1a10: f3403fff ; <UNDEFINED> instruction: 0xf3403fff
1a14: a82380f8 stmdage r3!, {r3, r4, r5, r6, r7, pc}
1a18: 11c9f240 bicne pc, r9, r0, asr #4
1a1c: f978f003 ; <UNDEFINED> instruction: 0xf978f003
1a20: 3ffff1b0 svccc 0x00fff1b0
1a24: 80fdf340 rscshi pc, sp, r0, asr #6
1a28: 07c09804 strbeq r9, [r0, r4, lsl #16]
1a2c: 499ed00c ldmibmi lr, {r2, r3, ip, lr, pc}
1a30: 4620ac23 strtmi sl, [r0], -r3, lsr #24
1a34: f0034479 ; <UNDEFINED> instruction: 0xf0034479
1a38: a809f973 stmdage r9, {r0, r1, r4, r5, r6, r8, fp, ip, sp, lr, pc}
1a3c: f0034621 ; <UNDEFINED> instruction: 0xf0034621
1a40: 4620f977 ; <UNDEFINED> instruction: 0x4620f977
1a44: f97cf003 ; <UNDEFINED> instruction: 0xf97cf003
1a48: a9234c98 stmdbge r3!, {r3, r4, r7, sl, fp, lr}
1a4c: 447c2200 ldrbtmi r2, [ip], #-512 ; 0x200
1a50: f0034620 ; <UNDEFINED> instruction: 0xf0034620
1a54: 2800f97d stmdacs r0, {r0, r2, r3, r4, r5, r6, r8, fp, ip, sp, lr, pc}
1a58: 80f1f000 rscshi pc, r1, r0
1a5c: ac084994 stcge 9, cr4, [r8], {148} ; 0x94
1a60: 44794620 ldrbtmi r4, [r9], #-1568 ; 0x620
1a64: f95cf003 ; <UNDEFINED> instruction: 0xf95cf003
1a68: f003a923 ; <UNDEFINED> instruction: 0xf003a923
1a6c: a809f979 stmdage r9, {r0, r3, r4, r5, r6, r8, fp, ip, sp, lr, pc}
1a70: f0034621 ; <UNDEFINED> instruction: 0xf0034621
1a74: 45cbf95d strbmi pc, [fp, #2397] ; 0x95d ; <UNPREDICTABLE>
1a78: eb0add14 bl 2b8ed0 <EnsureFrontOfChain+0x2b627c>
1a7c: ac070089 stcge 0, cr0, [r7], {137} ; 0x89
1a80: 1d07ad09 stcne 13, cr10, [r7, #-36] ; 0xffffffdc
1a84: 1b04f857 blne 13fbe8 <EnsureFrontOfChain+0x13cf94>
1a88: f0034620 ; <UNDEFINED> instruction: 0xf0034620
1a8c: 4628f949 strtmi pc, [r8], -r9, asr #18
1a90: f0034621 ; <UNDEFINED> instruction: 0xf0034621
1a94: 4620f94d strtmi pc, [r0], -sp, asr #18
1a98: f952f003 ; <UNDEFINED> instruction: 0xf952f003
1a9c: 0901f109 stmdbeq r1, {r0, r3, r8, ip, sp, lr, pc}
1aa0: d1ef45d9 ldrdle r4, [pc, #89] ; 1b01 <dl_iterate_phdr@plt+0x3d5>
1aa4: f003a808 ; <UNDEFINED> instruction: 0xf003a808
1aa8: 9f05f94b svcls 0x0005f94b
1aac: 4977e015 ldmdbmi r7!, {r0, r2, r4, sp, lr, pc}^
1ab0: a8234479 stmdage r3!, {r0, r3, r4, r5, r6, sl, lr}
1ab4: f934f003 ; <UNDEFINED> instruction: 0xf934f003
1ab8: a8099f05 stmdage r9, {r0, r2, r8, r9, sl, fp, ip, pc}
1abc: 4621ac23 strtmi sl, [r1], -r3, lsr #24
1ac0: f936f003 ; <UNDEFINED> instruction: 0xf936f003
1ac4: f0034620 ; <UNDEFINED> instruction: 0xf0034620
1ac8: a810f93b ldmdage r0, {r0, r1, r3, r4, r5, r8, fp, ip, sp, lr, pc}
1acc: 0209ebab andeq lr, r9, #175104 ; 0x2ac00
1ad0: 0389eb05 orreq lr, r9, #5120 ; 0x1400
1ad4: f000a90e ; <UNDEFINED> instruction: 0xf000a90e
1ad8: a80ff93d stmdage pc, {r0, r2, r3, r4, r5, r8, fp, ip, sp, lr, pc} ; <UNPREDICTABLE>
1adc: f8f0f003 ; <UNDEFINED> instruction: 0xf8f0f003
1ae0: 2800ae06 stmdacs r0, {r1, r2, r9, sl, fp, sp, pc}
1ae4: 4e8846b1 mcrmi 6, 4, r4, cr8, cr1, {5}
1ae8: d004447e andle r4, r4, lr, ror r4
1aec: a810990f ldmdage r0, {r0, r1, r2, r3, r8, fp, ip, pc}
1af0: f0032201 ; <UNDEFINED> instruction: 0xf0032201
1af4: 07f8f93d ; <UNDEFINED> instruction: 0x07f8f93d
1af8: 980ed108 stmdals lr, {r3, r8, ip, lr, pc}
1afc: d0592800 subsle r2, r9, r0, lsl #16
1b00: a810496d ldmdage r0, {r0, r2, r3, r5, r6, r8, fp, lr}
1b04: 2300aa09 movwcs sl, #2569 ; 0xa09
1b08: e0084479 and r4, r8, r9, ror r4
1b0c: 21012001 tstcs r1, r1
1b10: fdc8f000 stc2l 0, cr15, [r8]
1b14: a8104967 ldmdage r0, {r0, r1, r2, r5, r6, r8, fp, lr}
1b18: 2301aa09 movwcs sl, #6665 ; 0x1a09
1b1c: f0034479 ; <UNDEFINED> instruction: 0xf0034479
1b20: f108f92f ; <UNDEFINED> instruction: 0xf108f92f
1b24: 95090508 strls r0, [r9, #-1288] ; 0x508
1b28: 4620ac09 strtmi sl, [r0], -r9, lsl #24
1b2c: f930f003 ; <UNDEFINED> instruction: 0xf930f003
1b30: f0034620 ; <UNDEFINED> instruction: 0xf0034620
1b34: a80ef935 stmdage lr, {r0, r2, r4, r5, r8, fp, ip, sp, lr, pc}
1b38: f902f003 ; <UNDEFINED> instruction: 0xf902f003
1b3c: f003a80f ; <UNDEFINED> instruction: 0xf003a80f
1b40: 485ef8ff ldmdami lr, {r0, r1, r2, r3, r4, r5, r6, r7, fp, ip, sp, lr, pc}^
1b44: 4478951a ldrbtmi r9, [r8], #-1306 ; 0x51a
1b48: 90103008 andsls r3, r0, r8
1b4c: f105ad10 ; <UNDEFINED> instruction: 0xf105ad10
1b50: 46200428 strtmi r0, [r0], -r8, lsr #8
1b54: f91cf003 ; <UNDEFINED> instruction: 0xf91cf003
1b58: f0034620 ; <UNDEFINED> instruction: 0xf0034620
1b5c: f105f921 ; <UNDEFINED> instruction: 0xf105f921
1b60: f0030024 ; <UNDEFINED> instruction: 0xf0030024
1b64: 4628f8ed strtmi pc, [r8], -sp, ror #17
1b68: f922f003 ; <UNDEFINED> instruction: 0xf922f003
1b6c: 7080f89d umullvc pc, r0, sp, r8 ; <UNPREDICTABLE>
1b70: d00207f8 strdle r0, [r2], -r8
1b74: f0039822 ; <UNDEFINED> instruction: 0xf0039822
1b78: 6830f85b ldmdavs r0!, {r0, r1, r3, r4, r6, fp, ip, sp, lr, pc}
1b7c: f8d96800 ; <UNDEFINED> instruction: 0xf8d96800
1b80: 1a401000 bne 1005b88 <EnsureFrontOfChain+0x1002f34>
1b84: 2000d114 andcs sp, r0, r4, lsl r1
1b88: 5d84f50d cfstr32pl mvfx15, [r4, #52] ; 0x34
1b8c: e8bdb005 pop {r0, r2, ip, sp, pc}
1b90: 493c8ff0 ldmdbmi ip!, {r4, r5, r6, r7, r8, r9, sl, fp, pc}
1b94: 22024640 andcs r4, r2, #64, 12 ; 0x4000000
1b98: f0034479 ; <UNDEFINED> instruction: 0xf0034479
1b9c: b120f851 msrlt CPSR_, r1, asr r8
1ba0: 4641a80e strbmi sl, [r1], -lr, lsl #16
1ba4: f87cf003 ; <UNDEFINED> instruction: 0xf87cf003
1ba8: f1a9e6f5 ; <UNDEFINED> instruction: 0xf1a9e6f5
1bac: e6f20901 ldrbt r0, [r2], r1, lsl #18
1bb0: f906f003 ; <UNDEFINED> instruction: 0xf906f003
1bb4: 212b4842 teqcs fp, r2, asr #16
1bb8: 44782201 ldrbtmi r2, [r8], #-513 ; 0x201
1bbc: 68036800 stmdavs r3, {fp, sp, lr}
1bc0: 44784840 ldrbtmi r4, [r8], #-2112 ; 0x840
1bc4: f904f003 ; <UNDEFINED> instruction: 0xf904f003
1bc8: f8f8f000 ; <UNDEFINED> instruction: 0xf8f8f000
1bcc: 4a3f493e bmi fd40cc <EnsureFrontOfChain+0xfd1478>
1bd0: 44792000 ldrbtmi r2, [r9], #-0
1bd4: f003447a ; <UNDEFINED> instruction: 0xf003447a
1bd8: 4848f903 stmdami r8, {r0, r1, r8, fp, ip, sp, lr, pc}^
1bdc: 4a494948 bmi 1254104 <EnsureFrontOfChain+0x12514b0>
1be0: 44794478 ldrbtmi r4, [r9], #-1144 ; 0x478
1be4: f003447a ; <UNDEFINED> instruction: 0xf003447a
1be8: f003f8fb ; <UNDEFINED> instruction: 0xf003f8fb
1bec: 6800f881 stmdavs r0, {r0, r7, fp, ip, sp, lr, pc}
1bf0: f8fef003 ; <UNDEFINED> instruction: 0xf8fef003
1bf4: 4a40493f bmi 10140f8 <EnsureFrontOfChain+0x10114a4>
1bf8: 483d4603 ldmdami sp!, {r0, r1, r9, sl, lr}
1bfc: 44794478 ldrbtmi r4, [r9], #-1144 ; 0x478
1c00: f003447a ; <UNDEFINED> instruction: 0xf003447a
1c04: f003f8ed ; <UNDEFINED> instruction: 0xf003f8ed
1c08: 6800f873 stmdavs r0, {r0, r1, r4, r5, r6, fp, ip, sp, lr, pc}
1c0c: f8f0f003 ; <UNDEFINED> instruction: 0xf8f0f003
1c10: 4a364935 bmi d940ec <EnsureFrontOfChain+0xd91498>
1c14: 48334603 ldmdami r3!, {r0, r1, r9, sl, lr}
1c18: 44794478 ldrbtmi r4, [r9], #-1144 ; 0x478
1c1c: f003447a ; <UNDEFINED> instruction: 0xf003447a
1c20: f003f8df ; <UNDEFINED> instruction: 0xf003f8df
1c24: 6800f865 stmdavs r0, {r0, r2, r5, r6, fp, ip, sp, lr, pc}
1c28: f8e2f003 ; <UNDEFINED> instruction: 0xf8e2f003
1c2c: 4a2c492b bmi b140e0 <EnsureFrontOfChain+0xb1148c>
1c30: 48294603 stmdami r9!, {r0, r1, r9, sl, lr}
1c34: 44794478 ldrbtmi r4, [r9], #-1144 ; 0x478
1c38: f003447a ; <UNDEFINED> instruction: 0xf003447a
1c3c: 4924f8d1 stmdbmi r4!, {r0, r4, r6, r7, fp, ip, sp, lr, pc}
1c40: 20004a24 andcs r4, r0, r4, lsr #20
1c44: 44794623 ldrbtmi r4, [r9], #-1571 ; 0x623
1c48: f003447a ; <UNDEFINED> instruction: 0xf003447a
1c4c: f003f8c9 ; <UNDEFINED> instruction: 0xf003f8c9
1c50: 9000f8cf andls pc, r0, pc, asr #17
1c54: 49124811 ldmdbmi r2, {r0, r4, fp, lr}
1c58: ab234a12 blge 8d44a8 <EnsureFrontOfChain+0x8d1854>
1c5c: 44794478 ldrbtmi r4, [r9], #-1144 ; 0x478
1c60: f003447a ; <UNDEFINED> instruction: 0xf003447a
1c64: bf00f8bd svclt 0x0000f8bd
1c68: 000056fa strdeq r5, [r0], -sl
1c6c: 00003b5a andeq r3, r0, sl, asr fp
1c70: 00003b16 andeq r3, r0, r6, lsl fp
1c74: 00003b02 andeq r3, r0, r2, lsl #22
1c78: 00003a4d andeq r3, r0, sp, asr #20
1c7c: 00003a54 andeq r3, r0, r4, asr sl
1c80: 00003a68 andeq r3, r0, r8, ror #20
1c84: 00003809 andeq r3, r0, r9, lsl #16
1c88: 00005334 andeq r5, r0, r4, lsr r3
1c8c: 000038f4 strdeq r3, [r0], -r4
1c90: 000039f0 strdeq r3, [r0], -r0
1c94: 00003b19 andeq r3, r0, r9, lsl fp
1c98: 000041ab andeq r4, r0, fp, lsr #3
1c9c: 0000392b andeq r3, r0, fp, lsr #18
1ca0: 0000376b andeq r3, r0, fp, ror #14
1ca4: 00003947 andeq r3, r0, r7, asr #18
1ca8: 00003981 andeq r3, r0, r1, lsl #19
1cac: 00004118 andeq r4, r0, r8, lsl r1
1cb0: 000039ab andeq r3, r0, fp, lsr #19
1cb4: 000038fd strdeq r3, [r0], -sp
1cb8: 00003934 andeq r3, r0, r4, lsr r9
1cbc: 00005172 andeq r5, r0, r2, ror r1
1cc0: 00005302 andeq r5, r0, r2, lsl #6
1cc4: 0000389e muleq r0, lr, r8
1cc8: 000037f7 strdeq r3, [r0], -r7
1ccc: 000038b8 ; <UNDEFINED> instruction: 0x000038b8
1cd0: 00003783 andeq r3, r0, r3, lsl #15
1cd4: 00003789 andeq r3, r0, r9, lsl #15
1cd8: 00003994 muleq r0, r4, r9
1cdc: 00003793 muleq r0, r3, r7
1ce0: 000039c8 andeq r3, r0, r8, asr #19
1ce4: 000039b0 ; <UNDEFINED> instruction: 0x000039b0
1ce8: 000037af andeq r3, r0, pc, lsr #15
1cec: 000039b9 ; <UNDEFINED> instruction: 0x000039b9
1cf0: 0000393f andeq r3, r0, pc, lsr r9
1cf4: 000037cb andeq r3, r0, fp, asr #15
1cf8: 00003962 andeq r3, r0, r2, ror #18
1cfc: 0000390c andeq r3, r0, ip, lsl #18
1d00: 000037e7 andeq r3, r0, r7, ror #15
1d04: 0000391c andeq r3, r0, ip, lsl r9
1d08: 000053d0 ldrdeq r5, [r0], -r0
1d0c: 000041f5 strdeq r4, [r0], -r5
1d10: 00003a48 andeq r3, r0, r8, asr #20
1d14: 0000541a andeq r5, r0, sl, lsl r4
1d18: 4604b5b0 ; <UNDEFINED> instruction: 0x4604b5b0
1d1c: f870f003 ; <UNDEFINED> instruction: 0xf870f003
1d20: 4478480a ldrbtmi r4, [r8], #-2058 ; 0x80a
1d24: 60203008 eorvs r3, r0, r8
1d28: 0024f104 eoreq pc, r4, r4, lsl #2
1d2c: ffb0f002 ; <UNDEFINED> instruction: 0xffb0f002
1d30: 0028f104 eoreq pc, r8, r4, lsl #2
1d34: 22002104 andcs r2, r0, #4, 2
1d38: f0022500 ; <UNDEFINED> instruction: 0xf0022500
1d3c: 4804ffb9 stmdami r4, {r0, r3, r4, r5, r7, r8, r9, sl, fp, ip, sp, lr, pc}
1d40: 447863e5 ldrbtmi r6, [r8], #-997 ; 0x3e5
1d44: 62a03008 adcvs r3, r0, #8
1d48: bdb04620 ldclt 6, cr4, [r0, #128]! ; 0x80
1d4c: 00004f96 muleq r0, r6, pc ; <UNPREDICTABLE>
1d50: 00004f96 muleq r0, r6, pc ; <UNPREDICTABLE>
1d54: 43f0e92d mvnsmi lr, #737280 ; 0xb4000
1d58: f8dfb083 ; <UNDEFINED> instruction: 0xf8dfb083
1d5c: 4606805c ; <UNDEFINED> instruction: 0x4606805c
1d60: 4691461c ; <UNDEFINED> instruction: 0x4691461c
1d64: f8d844f8 ; <UNDEFINED> instruction: 0xf8d844f8
1d68: 68000000 stmdavs r0, {} ; <UNPREDICTABLE>
1d6c: f1069002 ; <UNDEFINED> instruction: 0xf1069002
1d70: f0030024 ; <UNDEFINED> instruction: 0xf0030024
1d74: f1b9f84d ; <UNDEFINED> instruction: 0xf1b9f84d
1d78: db110f01 blle 445984 <EnsureFrontOfChain+0x442d30>
1d7c: 25003628 strcs r3, [r0, #-1576] ; 0x628
1d80: f854af01 ; <UNDEFINED> instruction: 0xf854af01
1d84: 46381b04 ldrtmi r1, [r8], -r4, lsl #22
1d88: ffcaf002 ; <UNDEFINED> instruction: 0xffcaf002
1d8c: 46394630 ; <UNDEFINED> instruction: 0x46394630
1d90: ffcef002 ; <UNDEFINED> instruction: 0xffcef002
1d94: f0024638 ; <UNDEFINED> instruction: 0xf0024638
1d98: 3501ffd3 strcc pc, [r1, #-4051] ; 0xfd3
1d9c: d1f0454d mvnsle r4, sp, asr #10
1da0: 0000f8d8 ldrdeq pc, [r0], -r8
1da4: 99026800 stmdbls r2, {fp, sp, lr}
1da8: d1021a40 tstle r2, r0, asr #20
1dac: e8bdb003 pop {r0, r1, ip, sp, pc}
1db0: f00383f0 ; <UNDEFINED> instruction: 0xf00383f0
1db4: bf00f805 svclt 0x0000f805
1db8: 00005154 andeq r5, r0, r4, asr r1
1dbc: 21454804 cmpcs r5, r4, lsl #16
1dc0: 44782201 ldrbtmi r2, [r8], #-513 ; 0x201
1dc4: 68036800 stmdavs r3, {fp, sp, lr}
1dc8: 44784802 ldrbtmi r4, [r8], #-2050 ; 0x802
1dcc: b800f003 stmdalt r0, {r0, r1, ip, sp, lr, pc}
1dd0: 000050fa strdeq r5, [r0], -sl
1dd4: 00003863 andeq r3, r0, r3, ror #16
1dd8: 4604b510 ; <UNDEFINED> instruction: 0x4604b510
1ddc: 44784805 ldrbtmi r4, [r8], #-2053 ; 0x805
1de0: 60203008 eorvs r3, r0, r8
1de4: f0024620 ; <UNDEFINED> instruction: 0xf0024620
1de8: 4620ffd3 ; <UNDEFINED> instruction: 0x4620ffd3
1dec: 4010e8bd ; <UNDEFINED> instruction: 0x4010e8bd
1df0: bfd6f002 svclt 0x00d6f002
1df4: 00004efa strdeq r4, [r0], -sl
1df8: 4604b570 ; <UNDEFINED> instruction: 0x4604b570
1dfc: 4625480c strtmi r4, [r5], -ip, lsl #16
1e00: 44784626 ldrbtmi r4, [r8], #-1574 ; 0x626
1e04: f8453008 ; <UNDEFINED> instruction: 0xf8453008
1e08: 480a0b24 stmdami sl, {r2, r5, r8, r9, fp}
1e0c: 30084478 andcc r4, r8, r8, ror r4
1e10: 0f28f846 svceq 0x0028f846
1e14: f0024630 ; <UNDEFINED> instruction: 0xf0024630
1e18: 4630ffbb ; <UNDEFINED> instruction: 0x4630ffbb
1e1c: ffc0f002 ; <UNDEFINED> instruction: 0xffc0f002
1e20: f0024628 ; <UNDEFINED> instruction: 0xf0024628
1e24: 4620ff8d strtmi pc, [r0], -sp, lsl #31
1e28: 4070e8bd ldrhtmi lr, [r0], #-141 ; 0xffffff73
1e2c: bfc0f002 svclt 0x00c0f002
1e30: 00004eb6 ; <UNDEFINED> instruction: 0x00004eb6
1e34: 00004ecc andeq r4, r0, ip, asr #29
1e38: 4604b570 ; <UNDEFINED> instruction: 0x4604b570
1e3c: 4625480d strtmi r4, [r5], -sp, lsl #16
1e40: 44784626 ldrbtmi r4, [r8], #-1574 ; 0x626
1e44: f8453008 ; <UNDEFINED> instruction: 0xf8453008
1e48: 480b0b24 stmdami fp, {r2, r5, r8, r9, fp}
1e4c: 30084478 andcc r4, r8, r8, ror r4
1e50: 0f28f846 svceq 0x0028f846
1e54: f0024630 ; <UNDEFINED> instruction: 0xf0024630
1e58: 4630ff9b shadd8mi pc, r0, fp ; <UNPREDICTABLE>
1e5c: ffa0f002 ; <UNDEFINED> instruction: 0xffa0f002
1e60: f0024628 ; <UNDEFINED> instruction: 0xf0024628
1e64: 4620ff6d strtmi pc, [r0], -sp, ror #30
1e68: ffa2f002 ; <UNDEFINED> instruction: 0xffa2f002
1e6c: 4070e8bd ldrhtmi lr, [r0], #-141 ; 0xffffff73
1e70: bedef002 cdplt 0, 13, cr15, cr14, cr2, {0}
1e74: 00004e76 andeq r4, r0, r6, ror lr
1e78: 00004e8c andeq r4, r0, ip, lsl #29
1e7c: b081b5f0 strdlt fp, [r1], r0
1e80: 460d4604 strmi r4, [sp], -r4, lsl #12
1e84: 0624f104 strteq pc, [r4], -r4, lsl #2
1e88: f0024630 ; <UNDEFINED> instruction: 0xf0024630
1e8c: b1e0ff19 mvnlt pc, r9, lsl pc ; <UNPREDICTABLE>
1e90: f0026a60 ; <UNDEFINED> instruction: 0xf0026a60
1e94: 4607ffc5 strmi pc, [r7], -r5, asr #31
1e98: 46396828 ldrtmi r6, [r9], -r8, lsr #16
1e9c: 46286982 strtmi r6, [r8], -r2, lsl #19
1ea0: 28004790 stmdacs r0, {r4, r7, r8, r9, sl, lr}
1ea4: d10763e0 smlattle r7, r0, r3, r6
1ea8: 4a0a4909 bmi 2942d4 <EnsureFrontOfChain+0x291680>
1eac: 20066833 andcs r6, r6, r3, lsr r8
1eb0: 447a4479 ldrbtmi r4, [sl], #-1145 ; 0x479
1eb4: ffbcf002 ; <UNDEFINED> instruction: 0xffbcf002
1eb8: f0024638 ; <UNDEFINED> instruction: 0xf0024638
1ebc: 6828ffc1 stmdavs r8!, {r0, r6, r7, r8, r9, sl, fp, ip, sp, lr, pc}
1ec0: 6d426be1 vstrvs d22, [r2, #-900] ; 0xfffffc7c
1ec4: 47904628 ldrmi r4, [r0, r8, lsr #12]
1ec8: b00163e0 andlt r6, r1, r0, ror #7
1ecc: bf00bdf0 svclt 0x0000bdf0
1ed0: 00003519 andeq r3, r0, r9, lsl r5
1ed4: 0000360b andeq r3, r0, fp, lsl #12
1ed8: b082b570 addlt fp, r2, r0, ror r5
1edc: 46054e15 ; <UNDEFINED> instruction: 0x46054e15
1ee0: 447e466c ldrbtmi r4, [lr], #-1644 ; 0x66c
1ee4: 68006830 stmdavs r0, {r4, r5, fp, sp, lr}
1ee8: 46209001 strtmi r9, [r0], -r1
1eec: ffb0f002 ; <UNDEFINED> instruction: 0xffb0f002
1ef0: f0029800 ; <UNDEFINED> instruction: 0xf0029800
1ef4: f002ffb5 ; <UNDEFINED> instruction: 0xf002ffb5
1ef8: 6beaffbb blvs ffac1dec <EnsureFrontOfChain+0xffabf198>
1efc: 0124f105 msreq CPSR_s, r5, lsl #2
1f00: 0328f105 msreq CPSR_f, #1073741825 ; 0x40000001
1f04: ffbcf002 ; <UNDEFINED> instruction: 0xffbcf002
1f08: ffc2f002 ; <UNDEFINED> instruction: 0xffc2f002
1f0c: f0022101 ; <UNDEFINED> instruction: 0xf0022101
1f10: f002ffc7 ; <UNDEFINED> instruction: 0xf002ffc7
1f14: 2101ffcd smlabtcs r1, sp, pc, pc ; <UNPREDICTABLE>
1f18: ffd2f002 ; <UNDEFINED> instruction: 0xffd2f002
1f1c: f0004620 ; <UNDEFINED> instruction: 0xf0004620
1f20: 6830f839 ldmdavs r0!, {r0, r3, r4, r5, fp, ip, sp, lr, pc}
1f24: 99016800 stmdbls r1, {fp, sp, lr}
1f28: d1011a40 tstle r1, r0, asr #20
1f2c: bd70b002 ldcllt 0, cr11, [r0, #-8]!
1f30: ff46f002 ; <UNDEFINED> instruction: 0xff46f002
1f34: 00004fd6 ldrdeq r4, [r0], -r6
1f38: b082b5b0 ; <UNDEFINED> instruction: 0xb082b5b0
1f3c: 466c4d0b strbtmi r4, [ip], -fp, lsl #26
1f40: 6828447d stmdavs r8!, {r0, r2, r3, r4, r5, r6, sl, lr}
1f44: 90016800 andls r6, r1, r0, lsl #16
1f48: f0024620 ; <UNDEFINED> instruction: 0xf0024620
1f4c: 9800ff81 stmdals r0, {r0, r7, r8, r9, sl, fp, ip, sp, lr, pc}
1f50: ff86f002 ; <UNDEFINED> instruction: 0xff86f002
1f54: f0004620 ; <UNDEFINED> instruction: 0xf0004620
1f58: 6828f81d stmdavs r8!, {r0, r2, r3, r4, fp, ip, sp, lr, pc}
1f5c: 99016800 stmdbls r1, {fp, sp, lr}
1f60: d1011a40 tstle r1, r0, asr #20
1f64: bdb0b002 ldclt 0, cr11, [r0, #8]!
1f68: ff2af002 ; <UNDEFINED> instruction: 0xff2af002
1f6c: 00004f78 andeq r4, r0, r8, ror pc
1f70: 3024b580 eorcc fp, r4, r0, lsl #11
1f74: fea4f002 cdp2 0, 10, cr15, cr4, cr2, {0}
1f78: bd80b100 stfltd f3, [r0]
1f7c: ff88f002 ; <UNDEFINED> instruction: 0xff88f002
1f80: f0022101 ; <UNDEFINED> instruction: 0xf0022101
1f84: f002ff8d ; <UNDEFINED> instruction: 0xf002ff8d
1f88: 2101ff93 ; <UNDEFINED> instruction: 0x2101ff93
1f8c: 4080e8bd ; <UNDEFINED> instruction: 0x4080e8bd
1f90: bf96f002 svclt 0x0096f002
1f94: 4604b510 ; <UNDEFINED> instruction: 0x4604b510
1f98: b1306820 teqlt r0, r0, lsr #16
1f9c: f8516801 ; <UNDEFINED> instruction: 0xf8516801
1fa0: 44081c0c strmi r1, [r8], #-3084 ; 0xc0c
1fa4: f0024621 ; <UNDEFINED> instruction: 0xf0024621
1fa8: 4620ff93 qadd8mi pc, r0, r3 ; <UNPREDICTABLE>
1fac: 0000bd10 andeq fp, r0, r0, lsl sp
1fb0: b084b510 addlt fp, r4, r0, lsl r5
1fb4: 22004c0d andcs r4, r0, #3328 ; 0xd00
1fb8: 5380f44f orrpl pc, r0, #1325400064 ; 0x4f000000
1fbc: 6821447c stmdavs r1!, {r2, r3, r4, r5, r6, sl, lr}
1fc0: 91036809 tstls r3, r9, lsl #16
1fc4: e9cda906 stmib sp, {r1, r2, r8, fp, sp, pc}^
1fc8: 49091101 stmdbmi r9, {r0, r8, ip}
1fcc: 91004479 tstls r0, r9, ror r4
1fd0: 5180f44f orrpl pc, r0, pc, asr #8
1fd4: ff84f002 ; <UNDEFINED> instruction: 0xff84f002
1fd8: 68096821 stmdavs r9, {r0, r5, fp, sp, lr}
1fdc: 1a899a03 bne fe2687f0 <EnsureFrontOfChain+0xfe265b9c>
1fe0: b004d101 andlt sp, r4, r1, lsl #2
1fe4: f002bd10 ; <UNDEFINED> instruction: 0xf002bd10
1fe8: bf00feeb svclt 0x0000feeb
1fec: 00004efc strdeq r4, [r0], -ip
1ff0: 0000355c andeq r3, r0, ip, asr r5
1ff4: 4604b510 ; <UNDEFINED> instruction: 0x4604b510
1ff8: 44784806 ldrbtmi r4, [r8], #-2054 ; 0x806
1ffc: 60203008 eorvs r3, r0, r8
2000: f0024620 ; <UNDEFINED> instruction: 0xf0024620
2004: 4620fec5 strtmi pc, [r0], -r5, asr #29
2008: fecaf002 cdp2 0, 12, cr15, cr10, cr2, {0}
200c: 4010e8bd ; <UNDEFINED> instruction: 0x4010e8bd
2010: be0ef002 cdplt 0, 0, cr15, cr14, cr2, {0}
2014: 00004cde ldrdeq r4, [r0], -lr
2018: 4614b510 ; <UNDEFINED> instruction: 0x4614b510
201c: b1244608 teqlt r4, r8, lsl #12
2020: fe36f002 cdp2 0, 3, cr15, cr6, cr2, {0}
2024: 3c013004 stccc 0, cr3, [r1], {4}
2028: bd10d1fa ldfltd f5, [r0, #-1000] ; 0xfffffc18
202c: 4614b510 ; <UNDEFINED> instruction: 0x4614b510
2030: b1244608 teqlt r4, r8, lsl #12
2034: fe84f002 cdp2 0, 8, cr15, cr4, cr2, {0}
2038: 3c013004 stccc 0, cr3, [r1], {4}
203c: bd10d1fa ldfltd f5, [r0, #-1000] ; 0xfffffc18
2040: 461cb5b0 ; <UNDEFINED> instruction: 0x461cb5b0
2044: 46084615 ; <UNDEFINED> instruction: 0x46084615
2048: 4629b134 ; <UNDEFINED> instruction: 0x4629b134
204c: ff50f002 ; <UNDEFINED> instruction: 0xff50f002
2050: 30043504 andcc r3, r4, r4, lsl #10
2054: d1f83c01 mvnsle r3, r1, lsl #24
2058: b5b0bdb0 ldrlt fp, [r0, #3504]! ; 0xdb0
205c: 4615461c ; <UNDEFINED> instruction: 0x4615461c
2060: b12c4608 teqlt ip, r8, lsl #12
2064: f0024629 ; <UNDEFINED> instruction: 0xf0024629
2068: 3004ff43 andcc pc, r4, r3, asr #30
206c: d1f93c01 mvnsle r3, r1, lsl #24
2070: b580bdb0 strlt fp, [r0, #3504] ; 0xdb0
2074: 4608009b ; <UNDEFINED> instruction: 0x4608009b
2078: 461a4611 ; <UNDEFINED> instruction: 0x461a4611
207c: ff40f002 ; <UNDEFINED> instruction: 0xff40f002
2080: 0000bd80 andeq fp, r0, r0, lsl #27
2084: b084b580 addlt fp, r4, r0, lsl #11
2088: 44784810 ldrbtmi r4, [r8], #-2064 ; 0x810
208c: 68006800 stmdavs r0, {fp, sp, lr}
2090: 480f9003 stmdami pc, {r0, r1, ip, pc} ; <UNPREDICTABLE>
2094: e8d04478 ldm r0, {r3, r4, r5, r6, sl, lr}^
2098: 30010faf andcc r0, r1, pc, lsr #31
209c: 4668d00a strbtmi sp, [r8], -sl
20a0: 90024a0d andls r4, r2, sp, lsl #20
20a4: 9001a802 andls sl, r1, r2, lsl #16
20a8: a901480a stmdbge r1, {r1, r3, fp, lr}
20ac: 4478447a ldrbtmi r4, [r8], #-1146 ; 0x47a
20b0: ff2ef002 ; <UNDEFINED> instruction: 0xff2ef002
20b4: 44784809 ldrbtmi r4, [r8], #-2057 ; 0x809
20b8: 68006800 stmdavs r0, {fp, sp, lr}
20bc: 1a409903 bne 10284d0 <EnsureFrontOfChain+0x102587c>
20c0: b004d101 andlt sp, r4, r1, lsl #2
20c4: f002bd80 ; <UNDEFINED> instruction: 0xf002bd80
20c8: bf00fe7b svclt 0x0000fe7b
20cc: 00004e2e andeq r4, r0, lr, lsr #28
20d0: 00005de8 andeq r5, r0, r8, ror #27
20d4: 00005dce andeq r5, r0, lr, asr #27
20d8: 00000cbd ; <UNDEFINED> instruction: 0x00000cbd
20dc: 00004e02 andeq r4, r0, r2, lsl #28
20e0: 4ff0e92d svcmi 0x00f0e92d
20e4: 4682b087 strmi fp, [r2], r7, lsl #1
20e8: 920048b8 andls r4, r0, #184, 16 ; 0xb80000
20ec: 44784689 ldrbtmi r4, [r8], #-1673 ; 0x689
20f0: 68006800 stmdavs r0, {fp, sp, lr}
20f4: 48b69006 ldmmi r6!, {r1, r2, ip, pc}