summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-arm/ifunc-8.dd
blob: f14ab34f690cd8659eb7a5e1884f254a702c846d (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017

.*


Disassembly of section \.plt:

00009000 <\.plt>:
    9000:	e52de004 	push	{lr}		; \(str lr, \[sp, #-4\]!\)
    9004:	e59fe004 	ldr	lr, \[pc, #4\]	; 9010 <aaf1-0xff0>
    9008:	e08fe00e 	add	lr, pc, lr
    900c:	e5bef008 	ldr	pc, \[lr, #8\]!
#------------------------------------------------------------------------------
#------ PC-relative offset of .got.plt
#------------------------------------------------------------------------------
    9010:	00007ff0 	\.word	0x00007ff0
#------------------------------------------------------------------------------
#------ thumb entry to atf2's .plt entry
#------------------------------------------------------------------------------
    9014:	4778      	bx	pc
    9016:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ atf2's .plt entry
#------------------------------------------------------------------------------
    9018:	e28fc600 	add	ip, pc, #0
    901c:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9020:	e5bcffec 	ldr	pc, \[ip, #4076\]!	; 0xfec
#------------------------------------------------------------------------------
#------ aaf4's .plt entry
#------------------------------------------------------------------------------
    9024:	e28fc600 	add	ip, pc, #0
    9028:	e28cca07 	add	ip, ip, #28672	; 0x7000
    902c:	e5bcffe4 	ldr	pc, \[ip, #4068\]!	; 0xfe4
#------------------------------------------------------------------------------
#------ thumb entry to ttf2's .plt entry
#------------------------------------------------------------------------------
    9030:	4778      	bx	pc
    9032:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ ttf2's .plt entry
#------------------------------------------------------------------------------
    9034:	e28fc600 	add	ip, pc, #0
    9038:	e28cca07 	add	ip, ip, #28672	; 0x7000
    903c:	e5bcffd8 	ldr	pc, \[ip, #4056\]!	; 0xfd8
#------------------------------------------------------------------------------
#------ thumb entry to tbf2's .plt entry
#------------------------------------------------------------------------------
    9040:	4778      	bx	pc
    9042:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ tbf2's .plt entry
#------------------------------------------------------------------------------
    9044:	e28fc600 	add	ip, pc, #0
    9048:	e28cca07 	add	ip, ip, #28672	; 0x7000
    904c:	e5bcffcc 	ldr	pc, \[ip, #4044\]!	; 0xfcc
#------------------------------------------------------------------------------
#------ taf2's .plt entry
#------------------------------------------------------------------------------
    9050:	e28fc600 	add	ip, pc, #0
    9054:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9058:	e5bcffc4 	ldr	pc, \[ip, #4036\]!	; 0xfc4
#------------------------------------------------------------------------------
#------ aaf2's .plt entry
#------------------------------------------------------------------------------
    905c:	e28fc600 	add	ip, pc, #0
    9060:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9064:	e5bcffbc 	ldr	pc, \[ip, #4028\]!	; 0xfbc
#------------------------------------------------------------------------------
#------ thumb entry to abf4's .plt entry
#------------------------------------------------------------------------------
    9068:	4778      	bx	pc
    906a:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ abf4's .plt entry
#------------------------------------------------------------------------------
    906c:	e28fc600 	add	ip, pc, #0
    9070:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9074:	e5bcffb0 	ldr	pc, \[ip, #4016\]!	; 0xfb0
#------------------------------------------------------------------------------
#------ thumb entry to tbf4's .plt entry
#------------------------------------------------------------------------------
    9078:	4778      	bx	pc
    907a:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ tbf4's .plt entry
#------------------------------------------------------------------------------
    907c:	e28fc600 	add	ip, pc, #0
    9080:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9084:	e5bcffa4 	ldr	pc, \[ip, #4004\]!	; 0xfa4
#------------------------------------------------------------------------------
#------ thumb entry to ttf4's .plt entry
#------------------------------------------------------------------------------
    9088:	4778      	bx	pc
    908a:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ ttf4's .plt entry
#------------------------------------------------------------------------------
    908c:	e28fc600 	add	ip, pc, #0
    9090:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9094:	e5bcff98 	ldr	pc, \[ip, #3992\]!	; 0xf98
#------------------------------------------------------------------------------
#------ thumb entry to atf4's .plt entry
#------------------------------------------------------------------------------
    9098:	4778      	bx	pc
    909a:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ atf4's .plt entry
#------------------------------------------------------------------------------
    909c:	e28fc600 	add	ip, pc, #0
    90a0:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90a4:	e5bcff8c 	ldr	pc, \[ip, #3980\]!	; 0xf8c
#------------------------------------------------------------------------------
#------ taf4's .plt entry
#------------------------------------------------------------------------------
    90a8:	e28fc600 	add	ip, pc, #0
    90ac:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90b0:	e5bcff84 	ldr	pc, \[ip, #3972\]!	; 0xf84
#------------------------------------------------------------------------------
#------ thumb entry to abf2's .plt entry
#------------------------------------------------------------------------------
    90b4:	4778      	bx	pc
    90b6:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ abf2's .plt entry
#------------------------------------------------------------------------------
    90b8:	e28fc600 	add	ip, pc, #0
    90bc:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90c0:	e5bcff78 	ldr	pc, \[ip, #3960\]!	; 0xf78

Disassembly of section \.iplt:

000090c4 <\.iplt>:
#------------------------------------------------------------------------------
#------ aaf1's .iplt entry
#------------------------------------------------------------------------------
    90c4:	e28fc600 	add	ip, pc, #0
    90c8:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90cc:	e5bcff70 	ldr	pc, \[ip, #3952\]!	; 0xf70
#------------------------------------------------------------------------------
#------ thumb entry to atf1's .iplt entry
#------------------------------------------------------------------------------
    90d0:	4778      	bx	pc
    90d2:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ atf1's .iplt entry
#------------------------------------------------------------------------------
    90d4:	e28fc600 	add	ip, pc, #0
    90d8:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90dc:	e5bcff64 	ldr	pc, \[ip, #3940\]!	; 0xf64
#------------------------------------------------------------------------------
#------ thumb entry to abf1's .iplt entry
#------------------------------------------------------------------------------
    90e0:	4778      	bx	pc
    90e2:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ abf1's .iplt entry
#------------------------------------------------------------------------------
    90e4:	e28fc600 	add	ip, pc, #0
    90e8:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90ec:	e5bcff58 	ldr	pc, \[ip, #3928\]!	; 0xf58
#------------------------------------------------------------------------------
#------ taf1's .iplt entry
#------------------------------------------------------------------------------
    90f0:	e28fc600 	add	ip, pc, #0
    90f4:	e28cca07 	add	ip, ip, #28672	; 0x7000
    90f8:	e5bcff50 	ldr	pc, \[ip, #3920\]!	; 0xf50
#------------------------------------------------------------------------------
#------ thumb entry to ttf1's .iplt entry
#------------------------------------------------------------------------------
    90fc:	4778      	bx	pc
    90fe:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ ttf1's .iplt entry
#------------------------------------------------------------------------------
    9100:	e28fc600 	add	ip, pc, #0
    9104:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9108:	e5bcff44 	ldr	pc, \[ip, #3908\]!	; 0xf44
#------------------------------------------------------------------------------
#------ thumb entry to tbf1's .iplt entry
#------------------------------------------------------------------------------
    910c:	4778      	bx	pc
    910e:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ tbf1's .iplt entry
#------------------------------------------------------------------------------
    9110:	e28fc600 	add	ip, pc, #0
    9114:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9118:	e5bcff38 	ldr	pc, \[ip, #3896\]!	; 0xf38
#------------------------------------------------------------------------------
#------ thumb entry to atf3's .iplt entry
#------------------------------------------------------------------------------
    911c:	4778      	bx	pc
    911e:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ atf3's .iplt entry
#------------------------------------------------------------------------------
    9120:	e28fc600 	add	ip, pc, #0
    9124:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9128:	e5bcff2c 	ldr	pc, \[ip, #3884\]!	; 0xf2c
#------------------------------------------------------------------------------
#------ thumb entry to abf3's .iplt entry
#------------------------------------------------------------------------------
    912c:	4778      	bx	pc
    912e:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ abf3's .iplt entry
#------------------------------------------------------------------------------
    9130:	e28fc600 	add	ip, pc, #0
    9134:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9138:	e5bcff20 	ldr	pc, \[ip, #3872\]!	; 0xf20
#------------------------------------------------------------------------------
#------ thumb entry to ttf3's .iplt entry
#------------------------------------------------------------------------------
    913c:	4778      	bx	pc
    913e:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ ttf3's .iplt entry
#------------------------------------------------------------------------------
    9140:	e28fc600 	add	ip, pc, #0
    9144:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9148:	e5bcff14 	ldr	pc, \[ip, #3860\]!	; 0xf14
#------------------------------------------------------------------------------
#------ thumb entry to tbf3's .iplt entry
#------------------------------------------------------------------------------
    914c:	4778      	bx	pc
    914e:	46c0      	nop			; \(mov r8, r8\)
#------------------------------------------------------------------------------
#------ tbf3's .iplt entry
#------------------------------------------------------------------------------
    9150:	e28fc600 	add	ip, pc, #0
    9154:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9158:	e5bcff08 	ldr	pc, \[ip, #3848\]!	; 0xf08
#------------------------------------------------------------------------------
#------ taf3's .iplt entry
#------------------------------------------------------------------------------
    915c:	e28fc600 	add	ip, pc, #0
    9160:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9164:	e5bcff00 	ldr	pc, \[ip, #3840\]!	; 0xf00
#------------------------------------------------------------------------------
#------ aaf3's .iplt entry
#------------------------------------------------------------------------------
    9168:	e28fc600 	add	ip, pc, #0
    916c:	e28cca07 	add	ip, ip, #28672	; 0x7000
    9170:	e5bcfef8 	ldr	pc, \[ip, #3832\]!	; 0xef8

Disassembly of section \.text:

0000a000 <aaf1>:
    a000:	e1a0f00e 	mov	pc, lr

0000a004 <atf1>:
    a004:	e1a0f00e 	mov	pc, lr

0000a008 <abf1>:
    a008:	e1a0f00e 	mov	pc, lr

0000a00c <taf1>:
    a00c:	46f7      	mov	pc, lr

0000a00e <ttf1>:
    a00e:	46f7      	mov	pc, lr

0000a010 <tbf1>:
    a010:	46f7      	mov	pc, lr
	\.\.\.

0000a014 <aaf3>:
    a014:	e1a0f00e 	mov	pc, lr

0000a018 <atf3>:
    a018:	e1a0f00e 	mov	pc, lr

0000a01c <abf3>:
    a01c:	e1a0f00e 	mov	pc, lr

0000a020 <taf3>:
    a020:	46f7      	mov	pc, lr

0000a022 <ttf3>:
    a022:	46f7      	mov	pc, lr

0000a024 <tbf3>:
    a024:	46f7      	mov	pc, lr
	\.\.\.

0000a028 <arm>:
    a028:	eb0017f4 	bl	10000 <foo>
    a02c:	ea0017f3 	b	10000 <foo>
    a030:	0a0017f2 	beq	10000 <foo>
    a034:	e59f4000 	ldr	r4, \[pc\]	; a03c <arm\+0x14>
    a038:	e59f4000 	ldr	r4, \[pc\]	; a040 <arm\+0x18>
#------------------------------------------------------------------------------
#------ .got offset for foo
#------------------------------------------------------------------------------
    a03c:	00000070 	\.word	0x00000070
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for foo
#------------------------------------------------------------------------------
    a040:	0000702c 	\.word	0x0000702c
#------------------------------------------------------------------------------
#------ aaf1's .iplt entry
#------------------------------------------------------------------------------
    a044:	ebfffc1e 	bl	90c4 <aaf1-0xf3c>
#------------------------------------------------------------------------------
#------ aaf1's .iplt entry
#------------------------------------------------------------------------------
    a048:	eafffc1d 	b	90c4 <aaf1-0xf3c>
#------------------------------------------------------------------------------
#------ aaf1's .iplt entry
#------------------------------------------------------------------------------
    a04c:	0afffc1c 	beq	90c4 <aaf1-0xf3c>
    a050:	e59f4000 	ldr	r4, \[pc\]	; a058 <arm\+0x30>
    a054:	e59f4000 	ldr	r4, \[pc\]	; a05c <arm\+0x34>
#------------------------------------------------------------------------------
#------ GP-relative offset of aaf1's .igot.plt entry
#------------------------------------------------------------------------------
    a058:	0000003c 	\.word	0x0000003c
#------------------------------------------------------------------------------
#------ PC-relative offset of aaf1's .igot.plt entry
#------------------------------------------------------------------------------
    a05c:	00006fe0 	\.word	0x00006fe0
#------------------------------------------------------------------------------
#------ taf1's .iplt entry
#------------------------------------------------------------------------------
    a060:	ebfffc22 	bl	90f0 <aaf1-0xf10>
#------------------------------------------------------------------------------
#------ taf1's .iplt entry
#------------------------------------------------------------------------------
    a064:	eafffc21 	b	90f0 <aaf1-0xf10>
#------------------------------------------------------------------------------
#------ taf1's .iplt entry
#------------------------------------------------------------------------------
    a068:	0afffc20 	beq	90f0 <aaf1-0xf10>
    a06c:	e59f4000 	ldr	r4, \[pc\]	; a074 <arm\+0x4c>
    a070:	e59f4000 	ldr	r4, \[pc\]	; a078 <arm\+0x50>
#------------------------------------------------------------------------------
#------ GP-relative offset of taf1's .igot.plt entry
#------------------------------------------------------------------------------
    a074:	00000048 	\.word	0x00000048
#------------------------------------------------------------------------------
#------ PC-relative offset of taf1's .igot.plt entry
#------------------------------------------------------------------------------
    a078:	00006fd0 	\.word	0x00006fd0
#------------------------------------------------------------------------------
#------ abf1's .iplt entry
#------------------------------------------------------------------------------
    a07c:	ebfffc18 	bl	90e4 <aaf1-0xf1c>
#------------------------------------------------------------------------------
#------ abf1's .iplt entry
#------------------------------------------------------------------------------
    a080:	eafffc17 	b	90e4 <aaf1-0xf1c>
#------------------------------------------------------------------------------
#------ abf1's .iplt entry
#------------------------------------------------------------------------------
    a084:	0afffc16 	beq	90e4 <aaf1-0xf1c>
    a088:	e59f4000 	ldr	r4, \[pc\]	; a090 <arm\+0x68>
    a08c:	e59f4000 	ldr	r4, \[pc\]	; a094 <arm\+0x6c>
#------------------------------------------------------------------------------
#------ GP-relative offset of abf1's .igot.plt entry
#------------------------------------------------------------------------------
    a090:	00000044 	\.word	0x00000044
#------------------------------------------------------------------------------
#------ PC-relative offset of abf1's .igot.plt entry
#------------------------------------------------------------------------------
    a094:	00006fb0 	\.word	0x00006fb0
#------------------------------------------------------------------------------
#------ tbf1's .iplt entry
#------------------------------------------------------------------------------
    a098:	ebfffc1c 	bl	9110 <aaf1-0xef0>
#------------------------------------------------------------------------------
#------ tbf1's .iplt entry
#------------------------------------------------------------------------------
    a09c:	eafffc1b 	b	9110 <aaf1-0xef0>
#------------------------------------------------------------------------------
#------ tbf1's .iplt entry
#------------------------------------------------------------------------------
    a0a0:	0afffc1a 	beq	9110 <aaf1-0xef0>
    a0a4:	e59f4000 	ldr	r4, \[pc\]	; a0ac <arm\+0x84>
    a0a8:	e59f4000 	ldr	r4, \[pc\]	; a0b0 <arm\+0x88>
#------------------------------------------------------------------------------
#------ GP-relative offset of tbf1's .igot.plt entry
#------------------------------------------------------------------------------
    a0ac:	00000050 	\.word	0x00000050
#------------------------------------------------------------------------------
#------ PC-relative offset of tbf1's .igot.plt entry
#------------------------------------------------------------------------------
    a0b0:	00006fa0 	\.word	0x00006fa0
#------------------------------------------------------------------------------
#------ aaf2's .plt entry
#------------------------------------------------------------------------------
    a0b4:	ebfffbe8 	bl	905c <aaf1-0xfa4>
#------------------------------------------------------------------------------
#------ aaf2's .plt entry
#------------------------------------------------------------------------------
    a0b8:	eafffbe7 	b	905c <aaf1-0xfa4>
#------------------------------------------------------------------------------
#------ aaf2's .plt entry
#------------------------------------------------------------------------------
    a0bc:	0afffbe6 	beq	905c <aaf1-0xfa4>
    a0c0:	e59f4000 	ldr	r4, \[pc\]	; a0c8 <arm\+0xa0>
    a0c4:	e59f4000 	ldr	r4, \[pc\]	; a0cc <arm\+0xa4>
#------------------------------------------------------------------------------
#------ .got offset for aaf2
#------------------------------------------------------------------------------
    a0c8:	00000088 	\.word	0x00000088
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for aaf2
#------------------------------------------------------------------------------
    a0cc:	00006fbc 	\.word	0x00006fbc
#------------------------------------------------------------------------------
#------ taf2's .plt entry
#------------------------------------------------------------------------------
    a0d0:	ebfffbde 	bl	9050 <aaf1-0xfb0>
#------------------------------------------------------------------------------
#------ taf2's .plt entry
#------------------------------------------------------------------------------
    a0d4:	eafffbdd 	b	9050 <aaf1-0xfb0>
#------------------------------------------------------------------------------
#------ taf2's .plt entry
#------------------------------------------------------------------------------
    a0d8:	0afffbdc 	beq	9050 <aaf1-0xfb0>
    a0dc:	e59f4000 	ldr	r4, \[pc\]	; a0e4 <arm\+0xbc>
    a0e0:	e59f4000 	ldr	r4, \[pc\]	; a0e8 <arm\+0xc0>
#------------------------------------------------------------------------------
#------ .got offset for taf2
#------------------------------------------------------------------------------
    a0e4:	00000084 	\.word	0x00000084
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for taf2
#------------------------------------------------------------------------------
    a0e8:	00006f9c 	\.word	0x00006f9c
#------------------------------------------------------------------------------
#------ abf2's .plt entry
#------------------------------------------------------------------------------
    a0ec:	ebfffbf1 	bl	90b8 <aaf1-0xf48>
#------------------------------------------------------------------------------
#------ abf2's .plt entry
#------------------------------------------------------------------------------
    a0f0:	eafffbf0 	b	90b8 <aaf1-0xf48>
#------------------------------------------------------------------------------
#------ abf2's .plt entry
#------------------------------------------------------------------------------
    a0f4:	0afffbef 	beq	90b8 <aaf1-0xf48>
    a0f8:	e59f4000 	ldr	r4, \[pc\]	; a100 <arm\+0xd8>
    a0fc:	e59f4000 	ldr	r4, \[pc\]	; a104 <arm\+0xdc>
#------------------------------------------------------------------------------
#------ .got offset for abf2
#------------------------------------------------------------------------------
    a100:	000000a0 	\.word	0x000000a0
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for abf2
#------------------------------------------------------------------------------
    a104:	00006f9c 	\.word	0x00006f9c
#------------------------------------------------------------------------------
#------ tbf2's .plt entry
#------------------------------------------------------------------------------
    a108:	ebfffbcd 	bl	9044 <aaf1-0xfbc>
#------------------------------------------------------------------------------
#------ tbf2's .plt entry
#------------------------------------------------------------------------------
    a10c:	eafffbcc 	b	9044 <aaf1-0xfbc>
#------------------------------------------------------------------------------
#------ tbf2's .plt entry
#------------------------------------------------------------------------------
    a110:	0afffbcb 	beq	9044 <aaf1-0xfbc>
    a114:	e59f4000 	ldr	r4, \[pc\]	; a11c <arm\+0xf4>
    a118:	e59f4000 	ldr	r4, \[pc\]	; a120 <arm\+0xf8>
#------------------------------------------------------------------------------
#------ .got offset for tbf2
#------------------------------------------------------------------------------
    a11c:	00000080 	\.word	0x00000080
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for tbf2
#------------------------------------------------------------------------------
    a120:	00006f60 	\.word	0x00006f60
#------------------------------------------------------------------------------
#------ aaf3's .iplt entry
#------------------------------------------------------------------------------
    a124:	ebfffc0f 	bl	9168 <aaf1-0xe98>
#------------------------------------------------------------------------------
#------ aaf3's .iplt entry
#------------------------------------------------------------------------------
    a128:	eafffc0e 	b	9168 <aaf1-0xe98>
#------------------------------------------------------------------------------
#------ aaf3's .iplt entry
#------------------------------------------------------------------------------
    a12c:	0afffc0d 	beq	9168 <aaf1-0xe98>
    a130:	e59f4000 	ldr	r4, \[pc\]	; a138 <arm\+0x110>
    a134:	e59f4000 	ldr	r4, \[pc\]	; a13c <arm\+0x114>
#------------------------------------------------------------------------------
#------ GP-relative offset of aaf3's .igot.plt entry
#------------------------------------------------------------------------------
    a138:	00000068 	\.word	0x00000068
#------------------------------------------------------------------------------
#------ PC-relative offset of aaf3's .igot.plt entry
#------------------------------------------------------------------------------
    a13c:	00006f2c 	\.word	0x00006f2c
#------------------------------------------------------------------------------
#------ taf3's .iplt entry
#------------------------------------------------------------------------------
    a140:	ebfffc05 	bl	915c <aaf1-0xea4>
#------------------------------------------------------------------------------
#------ taf3's .iplt entry
#------------------------------------------------------------------------------
    a144:	eafffc04 	b	915c <aaf1-0xea4>
#------------------------------------------------------------------------------
#------ taf3's .iplt entry
#------------------------------------------------------------------------------
    a148:	0afffc03 	beq	915c <aaf1-0xea4>
    a14c:	e59f4000 	ldr	r4, \[pc\]	; a154 <arm\+0x12c>
    a150:	e59f4000 	ldr	r4, \[pc\]	; a158 <arm\+0x130>
#------------------------------------------------------------------------------
#------ GP-relative offset of taf3's .igot.plt entry
#------------------------------------------------------------------------------
    a154:	00000064 	\.word	0x00000064
#------------------------------------------------------------------------------
#------ PC-relative offset of taf3's .igot.plt entry
#------------------------------------------------------------------------------
    a158:	00006f0c 	\.word	0x00006f0c
#------------------------------------------------------------------------------
#------ abf3's .iplt entry
#------------------------------------------------------------------------------
    a15c:	ebfffbf3 	bl	9130 <aaf1-0xed0>
#------------------------------------------------------------------------------
#------ abf3's .iplt entry
#------------------------------------------------------------------------------
    a160:	eafffbf2 	b	9130 <aaf1-0xed0>
#------------------------------------------------------------------------------
#------ abf3's .iplt entry
#------------------------------------------------------------------------------
    a164:	0afffbf1 	beq	9130 <aaf1-0xed0>
    a168:	e59f4000 	ldr	r4, \[pc\]	; a170 <arm\+0x148>
    a16c:	e59f4000 	ldr	r4, \[pc\]	; a174 <arm\+0x14c>
#------------------------------------------------------------------------------
#------ GP-relative offset of abf3's .igot.plt entry
#------------------------------------------------------------------------------
    a170:	00000058 	\.word	0x00000058
#------------------------------------------------------------------------------
#------ PC-relative offset of abf3's .igot.plt entry
#------------------------------------------------------------------------------
    a174:	00006ee4 	\.word	0x00006ee4
#------------------------------------------------------------------------------
#------ tbf3's .iplt entry
#------------------------------------------------------------------------------
    a178:	ebfffbf4 	bl	9150 <aaf1-0xeb0>
#------------------------------------------------------------------------------
#------ tbf3's .iplt entry
#------------------------------------------------------------------------------
    a17c:	eafffbf3 	b	9150 <aaf1-0xeb0>
#------------------------------------------------------------------------------
#------ tbf3's .iplt entry
#------------------------------------------------------------------------------
    a180:	0afffbf2 	beq	9150 <aaf1-0xeb0>
    a184:	e59f4000 	ldr	r4, \[pc\]	; a18c <arm\+0x164>
    a188:	e59f4000 	ldr	r4, \[pc\]	; a190 <arm\+0x168>
#------------------------------------------------------------------------------
#------ GP-relative offset of tbf3's .igot.plt entry
#------------------------------------------------------------------------------
    a18c:	00000060 	\.word	0x00000060
#------------------------------------------------------------------------------
#------ PC-relative offset of tbf3's .igot.plt entry
#------------------------------------------------------------------------------
    a190:	00006ed0 	\.word	0x00006ed0
#------------------------------------------------------------------------------
#------ aaf4's .plt entry
#------------------------------------------------------------------------------
    a194:	ebfffba2 	bl	9024 <aaf1-0xfdc>
#------------------------------------------------------------------------------
#------ aaf4's .plt entry
#------------------------------------------------------------------------------
    a198:	eafffba1 	b	9024 <aaf1-0xfdc>
#------------------------------------------------------------------------------
#------ aaf4's .plt entry
#------------------------------------------------------------------------------
    a19c:	0afffba0 	beq	9024 <aaf1-0xfdc>
    a1a0:	e59f4000 	ldr	r4, \[pc\]	; a1a8 <arm\+0x180>
    a1a4:	e59f4000 	ldr	r4, \[pc\]	; a1ac <arm\+0x184>
#------------------------------------------------------------------------------
#------ .got offset for aaf4
#------------------------------------------------------------------------------
    a1a8:	00000078 	\.word	0x00000078
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for aaf4
#------------------------------------------------------------------------------
    a1ac:	00006ecc 	\.word	0x00006ecc
#------------------------------------------------------------------------------
#------ taf4's .plt entry
#------------------------------------------------------------------------------
    a1b0:	ebfffbbc 	bl	90a8 <aaf1-0xf58>
#------------------------------------------------------------------------------
#------ taf4's .plt entry
#------------------------------------------------------------------------------
    a1b4:	eafffbbb 	b	90a8 <aaf1-0xf58>
#------------------------------------------------------------------------------
#------ taf4's .plt entry
#------------------------------------------------------------------------------
    a1b8:	0afffbba 	beq	90a8 <aaf1-0xf58>
    a1bc:	e59f4000 	ldr	r4, \[pc\]	; a1c4 <arm\+0x19c>
    a1c0:	e59f4000 	ldr	r4, \[pc\]	; a1c8 <arm\+0x1a0>
#------------------------------------------------------------------------------
#------ .got offset for taf4
#------------------------------------------------------------------------------
    a1c4:	0000009c 	\.word	0x0000009c
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for taf4
#------------------------------------------------------------------------------
    a1c8:	00006ed4 	\.word	0x00006ed4
#------------------------------------------------------------------------------
#------ abf4's .plt entry
#------------------------------------------------------------------------------
    a1cc:	ebfffba6 	bl	906c <aaf1-0xf94>
#------------------------------------------------------------------------------
#------ abf4's .plt entry
#------------------------------------------------------------------------------
    a1d0:	eafffba5 	b	906c <aaf1-0xf94>
#------------------------------------------------------------------------------
#------ abf4's .plt entry
#------------------------------------------------------------------------------
    a1d4:	0afffba4 	beq	906c <aaf1-0xf94>
    a1d8:	e59f4000 	ldr	r4, \[pc\]	; a1e0 <arm\+0x1b8>
    a1dc:	e59f4000 	ldr	r4, \[pc\]	; a1e4 <arm\+0x1bc>
#------------------------------------------------------------------------------
#------ .got offset for abf4
#------------------------------------------------------------------------------
    a1e0:	0000008c 	\.word	0x0000008c
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for abf4
#------------------------------------------------------------------------------
    a1e4:	00006ea8 	\.word	0x00006ea8
#------------------------------------------------------------------------------
#------ tbf4's .plt entry
#------------------------------------------------------------------------------
    a1e8:	ebfffba3 	bl	907c <aaf1-0xf84>
#------------------------------------------------------------------------------
#------ tbf4's .plt entry
#------------------------------------------------------------------------------
    a1ec:	eafffba2 	b	907c <aaf1-0xf84>
#------------------------------------------------------------------------------
#------ tbf4's .plt entry
#------------------------------------------------------------------------------
    a1f0:	0afffba1 	beq	907c <aaf1-0xf84>
    a1f4:	e59f4000 	ldr	r4, \[pc\]	; a1fc <arm\+0x1d4>
    a1f8:	e59f4000 	ldr	r4, \[pc\]	; a200 <arm\+0x1d8>
#------------------------------------------------------------------------------
#------ .got offset for tbf4
#------------------------------------------------------------------------------
    a1fc:	00000090 	\.word	0x00000090
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for tbf4
#------------------------------------------------------------------------------
    a200:	00006e90 	\.word	0x00006e90

0000a204 <_thumb>:
    a204:	f005 fefc 	bl	10000 <foo>
    a208:	f005 befa 	b\.w	10000 <foo>
    a20c:	f005 86f8 	beq\.w	10000 <foo>
    a210:	4c00      	ldr	r4, \[pc, #0\]	; \(a214 <_thumb\+0x10>\)
    a212:	4c01      	ldr	r4, \[pc, #4\]	; \(a218 <_thumb\+0x14>\)
#------------------------------------------------------------------------------
#------ .got offset for foo
#------------------------------------------------------------------------------
    a214:	00000070 	\.word	0x00000070
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for foo
#------------------------------------------------------------------------------
    a218:	00006e54 	\.word	0x00006e54
#------------------------------------------------------------------------------
#------ atf1's .iplt entry
#------------------------------------------------------------------------------
    a21c:	f7fe ef5a 	blx	90d4 <aaf1-0xf2c>
#------------------------------------------------------------------------------
#------ thumb entry to atf1's .iplt entry
#------------------------------------------------------------------------------
    a220:	f7fe bf56 	b\.w	90d0 <aaf1-0xf30>
#------------------------------------------------------------------------------
#------ thumb entry to atf1's .iplt entry
#------------------------------------------------------------------------------
    a224:	f43e af54 	beq\.w	90d0 <aaf1-0xf30>
    a228:	4c00      	ldr	r4, \[pc, #0\]	; \(a22c <_thumb\+0x28>\)
    a22a:	4c01      	ldr	r4, \[pc, #4\]	; \(a230 <_thumb\+0x2c>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of atf1's .igot.plt entry
#------------------------------------------------------------------------------
    a22c:	00000040 	\.word	0x00000040
#------------------------------------------------------------------------------
#------ PC-relative offset of atf1's .igot.plt entry
#------------------------------------------------------------------------------
    a230:	00006e10 	\.word	0x00006e10
#------------------------------------------------------------------------------
#------ ttf1's .iplt entry
#------------------------------------------------------------------------------
    a234:	f7fe ef64 	blx	9100 <aaf1-0xf00>
#------------------------------------------------------------------------------
#------ thumb entry to ttf1's .iplt entry
#------------------------------------------------------------------------------
    a238:	f7fe bf60 	b\.w	90fc <aaf1-0xf04>
#------------------------------------------------------------------------------
#------ thumb entry to ttf1's .iplt entry
#------------------------------------------------------------------------------
    a23c:	f43e af5e 	beq\.w	90fc <aaf1-0xf04>
    a240:	4c00      	ldr	r4, \[pc, #0\]	; \(a244 <_thumb\+0x40>\)
    a242:	4c01      	ldr	r4, \[pc, #4\]	; \(a248 <_thumb\+0x44>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of ttf1's .igot.plt entry
#------------------------------------------------------------------------------
    a244:	0000004c 	\.word	0x0000004c
#------------------------------------------------------------------------------
#------ PC-relative offset of ttf1's .igot.plt entry
#------------------------------------------------------------------------------
    a248:	00006e04 	\.word	0x00006e04
#------------------------------------------------------------------------------
#------ abf1's .iplt entry
#------------------------------------------------------------------------------
    a24c:	f7fe ef4a 	blx	90e4 <aaf1-0xf1c>
#------------------------------------------------------------------------------
#------ thumb entry to abf1's .iplt entry
#------------------------------------------------------------------------------
    a250:	f7fe bf46 	b\.w	90e0 <aaf1-0xf20>
#------------------------------------------------------------------------------
#------ thumb entry to abf1's .iplt entry
#------------------------------------------------------------------------------
    a254:	f43e af44 	beq\.w	90e0 <aaf1-0xf20>
    a258:	4c00      	ldr	r4, \[pc, #0\]	; \(a25c <_thumb\+0x58>\)
    a25a:	4c01      	ldr	r4, \[pc, #4\]	; \(a260 <_thumb\+0x5c>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of abf1's .igot.plt entry
#------------------------------------------------------------------------------
    a25c:	00000044 	\.word	0x00000044
#------------------------------------------------------------------------------
#------ PC-relative offset of abf1's .igot.plt entry
#------------------------------------------------------------------------------
    a260:	00006de4 	\.word	0x00006de4
#------------------------------------------------------------------------------
#------ tbf1's .iplt entry
#------------------------------------------------------------------------------
    a264:	f7fe ef54 	blx	9110 <aaf1-0xef0>
#------------------------------------------------------------------------------
#------ thumb entry to tbf1's .iplt entry
#------------------------------------------------------------------------------
    a268:	f7fe bf50 	b\.w	910c <aaf1-0xef4>
#------------------------------------------------------------------------------
#------ thumb entry to tbf1's .iplt entry
#------------------------------------------------------------------------------
    a26c:	f43e af4e 	beq\.w	910c <aaf1-0xef4>
    a270:	4c00      	ldr	r4, \[pc, #0\]	; \(a274 <_thumb\+0x70>\)
    a272:	4c01      	ldr	r4, \[pc, #4\]	; \(a278 <_thumb\+0x74>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of tbf1's .igot.plt entry
#------------------------------------------------------------------------------
    a274:	00000050 	\.word	0x00000050
#------------------------------------------------------------------------------
#------ PC-relative offset of tbf1's .igot.plt entry
#------------------------------------------------------------------------------
    a278:	00006dd8 	\.word	0x00006dd8
#------------------------------------------------------------------------------
#------ atf2's .plt entry
#------------------------------------------------------------------------------
    a27c:	f7fe eecc 	blx	9018 <aaf1-0xfe8>
#------------------------------------------------------------------------------
#------ thumb entry to atf2's .plt entry
#------------------------------------------------------------------------------
    a280:	f7fe bec8 	b\.w	9014 <aaf1-0xfec>
#------------------------------------------------------------------------------
#------ thumb entry to atf2's .plt entry
#------------------------------------------------------------------------------
    a284:	f43e aec6 	beq\.w	9014 <aaf1-0xfec>
    a288:	4c00      	ldr	r4, \[pc, #0\]	; \(a28c <_thumb\+0x88>\)
    a28a:	4c01      	ldr	r4, \[pc, #4\]	; \(a290 <_thumb\+0x8c>\)
#------------------------------------------------------------------------------
#------ .got offset for atf2
#------------------------------------------------------------------------------
    a28c:	00000074 	\.word	0x00000074
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for atf2
#------------------------------------------------------------------------------
    a290:	00006de4 	\.word	0x00006de4
#------------------------------------------------------------------------------
#------ ttf2's .plt entry
#------------------------------------------------------------------------------
    a294:	f7fe eece 	blx	9034 <aaf1-0xfcc>
#------------------------------------------------------------------------------
#------ thumb entry to ttf2's .plt entry
#------------------------------------------------------------------------------
    a298:	f7fe beca 	b\.w	9030 <aaf1-0xfd0>
#------------------------------------------------------------------------------
#------ thumb entry to ttf2's .plt entry
#------------------------------------------------------------------------------
    a29c:	f43e aec8 	beq\.w	9030 <aaf1-0xfd0>
    a2a0:	4c00      	ldr	r4, \[pc, #0\]	; \(a2a4 <_thumb\+0xa0>\)
    a2a2:	4c01      	ldr	r4, \[pc, #4\]	; \(a2a8 <_thumb\+0xa4>\)
#------------------------------------------------------------------------------
#------ .got offset for ttf2
#------------------------------------------------------------------------------
    a2a4:	0000007c 	\.word	0x0000007c
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for ttf2
#------------------------------------------------------------------------------
    a2a8:	00006dd4 	\.word	0x00006dd4
#------------------------------------------------------------------------------
#------ abf2's .plt entry
#------------------------------------------------------------------------------
    a2ac:	f7fe ef04 	blx	90b8 <aaf1-0xf48>
#------------------------------------------------------------------------------
#------ thumb entry to abf2's .plt entry
#------------------------------------------------------------------------------
    a2b0:	f7fe bf00 	b\.w	90b4 <aaf1-0xf4c>
#------------------------------------------------------------------------------
#------ thumb entry to abf2's .plt entry
#------------------------------------------------------------------------------
    a2b4:	f43e aefe 	beq\.w	90b4 <aaf1-0xf4c>
    a2b8:	4c00      	ldr	r4, \[pc, #0\]	; \(a2bc <_thumb\+0xb8>\)
    a2ba:	4c01      	ldr	r4, \[pc, #4\]	; \(a2c0 <_thumb\+0xbc>\)
#------------------------------------------------------------------------------
#------ .got offset for abf2
#------------------------------------------------------------------------------
    a2bc:	000000a0 	\.word	0x000000a0
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for abf2
#------------------------------------------------------------------------------
    a2c0:	00006de0 	\.word	0x00006de0
#------------------------------------------------------------------------------
#------ tbf2's .plt entry
#------------------------------------------------------------------------------
    a2c4:	f7fe eebe 	blx	9044 <aaf1-0xfbc>
#------------------------------------------------------------------------------
#------ thumb entry to tbf2's .plt entry
#------------------------------------------------------------------------------
    a2c8:	f7fe beba 	b\.w	9040 <aaf1-0xfc0>
#------------------------------------------------------------------------------
#------ thumb entry to tbf2's .plt entry
#------------------------------------------------------------------------------
    a2cc:	f43e aeb8 	beq\.w	9040 <aaf1-0xfc0>
    a2d0:	4c00      	ldr	r4, \[pc, #0\]	; \(a2d4 <_thumb\+0xd0>\)
    a2d2:	4c01      	ldr	r4, \[pc, #4\]	; \(a2d8 <_thumb\+0xd4>\)
#------------------------------------------------------------------------------
#------ .got offset for tbf2
#------------------------------------------------------------------------------
    a2d4:	00000080 	\.word	0x00000080
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for tbf2
#------------------------------------------------------------------------------
    a2d8:	00006da8 	\.word	0x00006da8
#------------------------------------------------------------------------------
#------ atf3's .iplt entry
#------------------------------------------------------------------------------
    a2dc:	f7fe ef20 	blx	9120 <aaf1-0xee0>
#------------------------------------------------------------------------------
#------ thumb entry to atf3's .iplt entry
#------------------------------------------------------------------------------
    a2e0:	f7fe bf1c 	b\.w	911c <aaf1-0xee4>
#------------------------------------------------------------------------------
#------ thumb entry to atf3's .iplt entry
#------------------------------------------------------------------------------
    a2e4:	f43e af1a 	beq\.w	911c <aaf1-0xee4>
    a2e8:	4c00      	ldr	r4, \[pc, #0\]	; \(a2ec <_thumb\+0xe8>\)
    a2ea:	4c01      	ldr	r4, \[pc, #4\]	; \(a2f0 <_thumb\+0xec>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of atf3's .igot.plt entry
#------------------------------------------------------------------------------
    a2ec:	00000054 	\.word	0x00000054
#------------------------------------------------------------------------------
#------ PC-relative offset of atf3's .igot.plt entry
#------------------------------------------------------------------------------
    a2f0:	00006d64 	\.word	0x00006d64
#------------------------------------------------------------------------------
#------ ttf3's .iplt entry
#------------------------------------------------------------------------------
    a2f4:	f7fe ef24 	blx	9140 <aaf1-0xec0>
#------------------------------------------------------------------------------
#------ thumb entry to ttf3's .iplt entry
#------------------------------------------------------------------------------
    a2f8:	f7fe bf20 	b\.w	913c <aaf1-0xec4>
#------------------------------------------------------------------------------
#------ thumb entry to ttf3's .iplt entry
#------------------------------------------------------------------------------
    a2fc:	f43e af1e 	beq\.w	913c <aaf1-0xec4>
    a300:	4c00      	ldr	r4, \[pc, #0\]	; \(a304 <_thumb\+0x100>\)
    a302:	4c01      	ldr	r4, \[pc, #4\]	; \(a308 <_thumb\+0x104>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of ttf3's .igot.plt entry
#------------------------------------------------------------------------------
    a304:	0000005c 	\.word	0x0000005c
#------------------------------------------------------------------------------
#------ PC-relative offset of ttf3's .igot.plt entry
#------------------------------------------------------------------------------
    a308:	00006d54 	\.word	0x00006d54
#------------------------------------------------------------------------------
#------ abf3's .iplt entry
#------------------------------------------------------------------------------
    a30c:	f7fe ef10 	blx	9130 <aaf1-0xed0>
#------------------------------------------------------------------------------
#------ thumb entry to abf3's .iplt entry
#------------------------------------------------------------------------------
    a310:	f7fe bf0c 	b\.w	912c <aaf1-0xed4>
#------------------------------------------------------------------------------
#------ thumb entry to abf3's .iplt entry
#------------------------------------------------------------------------------
    a314:	f43e af0a 	beq\.w	912c <aaf1-0xed4>
    a318:	4c00      	ldr	r4, \[pc, #0\]	; \(a31c <_thumb\+0x118>\)
    a31a:	4c01      	ldr	r4, \[pc, #4\]	; \(a320 <_thumb\+0x11c>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of abf3's .igot.plt entry
#------------------------------------------------------------------------------
    a31c:	00000058 	\.word	0x00000058
#------------------------------------------------------------------------------
#------ PC-relative offset of abf3's .igot.plt entry
#------------------------------------------------------------------------------
    a320:	00006d38 	\.word	0x00006d38
#------------------------------------------------------------------------------
#------ tbf3's .iplt entry
#------------------------------------------------------------------------------
    a324:	f7fe ef14 	blx	9150 <aaf1-0xeb0>
#------------------------------------------------------------------------------
#------ thumb entry to tbf3's .iplt entry
#------------------------------------------------------------------------------
    a328:	f7fe bf10 	b\.w	914c <aaf1-0xeb4>
#------------------------------------------------------------------------------
#------ thumb entry to tbf3's .iplt entry
#------------------------------------------------------------------------------
    a32c:	f43e af0e 	beq\.w	914c <aaf1-0xeb4>
    a330:	4c00      	ldr	r4, \[pc, #0\]	; \(a334 <_thumb\+0x130>\)
    a332:	4c01      	ldr	r4, \[pc, #4\]	; \(a338 <_thumb\+0x134>\)
#------------------------------------------------------------------------------
#------ GP-relative offset of tbf3's .igot.plt entry
#------------------------------------------------------------------------------
    a334:	00000060 	\.word	0x00000060
#------------------------------------------------------------------------------
#------ PC-relative offset of tbf3's .igot.plt entry
#------------------------------------------------------------------------------
    a338:	00006d28 	\.word	0x00006d28
#------------------------------------------------------------------------------
#------ atf4's .plt entry
#------------------------------------------------------------------------------
    a33c:	f7fe eeae 	blx	909c <aaf1-0xf64>
#------------------------------------------------------------------------------
#------ thumb entry to atf4's .plt entry
#------------------------------------------------------------------------------
    a340:	f7fe beaa 	b\.w	9098 <aaf1-0xf68>
#------------------------------------------------------------------------------
#------ thumb entry to atf4's .plt entry
#------------------------------------------------------------------------------
    a344:	f43e aea8 	beq\.w	9098 <aaf1-0xf68>
    a348:	4c00      	ldr	r4, \[pc, #0\]	; \(a34c <_thumb\+0x148>\)
    a34a:	4c01      	ldr	r4, \[pc, #4\]	; \(a350 <_thumb\+0x14c>\)
#------------------------------------------------------------------------------
#------ .got offset for atf4
#------------------------------------------------------------------------------
    a34c:	00000098 	\.word	0x00000098
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for atf4
#------------------------------------------------------------------------------
    a350:	00006d48 	\.word	0x00006d48
#------------------------------------------------------------------------------
#------ ttf4's .plt entry
#------------------------------------------------------------------------------
    a354:	f7fe ee9a 	blx	908c <aaf1-0xf74>
#------------------------------------------------------------------------------
#------ thumb entry to ttf4's .plt entry
#------------------------------------------------------------------------------
    a358:	f7fe be96 	b\.w	9088 <aaf1-0xf78>
#------------------------------------------------------------------------------
#------ thumb entry to ttf4's .plt entry
#------------------------------------------------------------------------------
    a35c:	f43e ae94 	beq\.w	9088 <aaf1-0xf78>
    a360:	4c00      	ldr	r4, \[pc, #0\]	; \(a364 <_thumb\+0x160>\)
    a362:	4c01      	ldr	r4, \[pc, #4\]	; \(a368 <_thumb\+0x164>\)
#------------------------------------------------------------------------------
#------ .got offset for ttf4
#------------------------------------------------------------------------------
    a364:	00000094 	\.word	0x00000094
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for ttf4
#------------------------------------------------------------------------------
    a368:	00006d2c 	\.word	0x00006d2c
#------------------------------------------------------------------------------
#------ abf4's .plt entry
#------------------------------------------------------------------------------
    a36c:	f7fe ee7e 	blx	906c <aaf1-0xf94>
#------------------------------------------------------------------------------
#------ thumb entry to abf4's .plt entry
#------------------------------------------------------------------------------
    a370:	f7fe be7a 	b\.w	9068 <aaf1-0xf98>
#------------------------------------------------------------------------------
#------ thumb entry to abf4's .plt entry
#------------------------------------------------------------------------------
    a374:	f43e ae78 	beq\.w	9068 <aaf1-0xf98>
    a378:	4c00      	ldr	r4, \[pc, #0\]	; \(a37c <_thumb\+0x178>\)
    a37a:	4c01      	ldr	r4, \[pc, #4\]	; \(a380 <_thumb\+0x17c>\)
#------------------------------------------------------------------------------
#------ .got offset for abf4
#------------------------------------------------------------------------------
    a37c:	0000008c 	\.word	0x0000008c
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for abf4
#------------------------------------------------------------------------------
    a380:	00006d0c 	\.word	0x00006d0c
#------------------------------------------------------------------------------
#------ tbf4's .plt entry
#------------------------------------------------------------------------------
    a384:	f7fe ee7a 	blx	907c <aaf1-0xf84>
#------------------------------------------------------------------------------
#------ thumb entry to tbf4's .plt entry
#------------------------------------------------------------------------------
    a388:	f7fe be76 	b\.w	9078 <aaf1-0xf88>
#------------------------------------------------------------------------------
#------ thumb entry to tbf4's .plt entry
#------------------------------------------------------------------------------
    a38c:	f43e ae74 	beq\.w	9078 <aaf1-0xf88>
    a390:	4c00      	ldr	r4, \[pc, #0\]	; \(a394 <_thumb\+0x190>\)
    a392:	4c01      	ldr	r4, \[pc, #4\]	; \(a398 <_thumb\+0x194>\)
#------------------------------------------------------------------------------
#------ .got offset for tbf4
#------------------------------------------------------------------------------
    a394:	00000090 	\.word	0x00000090
#------------------------------------------------------------------------------
#------ PC-relative offset of .got entry for tbf4
#------------------------------------------------------------------------------
    a398:	00006cf8 	\.word	0x00006cf8