forked from waltYeh/ARM7-based-flight-program
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy.map
2871 lines (2814 loc) · 276 KB
/
my.map
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 Linker, 4.1 [Build 481] [Professional]
==============================================================================
Section Cross References
commons.o(.text) refers to fleqf.o(x$fpl$fleqf) for __aeabi_cfcmple
commons.o(.text) refers to frleqf.o(x$fpl$frleqf) for __aeabi_cfrcmple
timer.o(.text) refers to aeabi_sdiv.o(.text_udiv) for __aeabi_uidivmod
timer.o(.text) refers to spi.o(.text) for spi_dma_refill
timer.o(.text) refers to timer.o(.data) for ppm_ms_clock
timer.o(.text) refers to main.o(.bss) for myusb
timer.o(.text) refers to main.o(.data) for smpl
main.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
main.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
main.o(.text) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
main.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
main.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
main.o(.text) refers to controls.o(.text) for position_control
main.o(.text) refers to timer.o(.text) for timer_get
main.o(.text) refers to usb.o(.text) for USB_write_Raspberry
main.o(.text) refers to ms5611_spi.o(.text) for data2pressure
main.o(.text) refers to positionestimator.o(.text) for baro_pos_corr
main.o(.text) refers to imu.o(.text) for continue_cps_read
main.o(.text) refers to gps.o(.text) for get_gps_data
main.o(.text) refers to radiocontroller.o(.text) for get_rc
main.o(.text) refers to pwm.o(.text) for motor_cut
main.o(.text) refers to pio.o(.text) for led_ctrl
main.o(.text) refers to adc.o(.text) for adc_get_converted
main.o(.text) refers to xbee.o(.text) for refill_tx
main.o(.text) refers to attitudeestimator.o(.text) for attitude_compute
main.o(.text) refers to motormixer.o(.text) for put_motors
main.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
main.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
main.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
main.o(.text) refers to main.o(.data) for cmd
main.o(.text) refers to main.o(.bss) for sens
main.o(.text) refers to pit.o(.text) for pit_init
main.o(.text) refers to twi.o(.text) for twi_init
main.o(.text) refers to hmc5883.o(.text) for hmc5883_config
main.o(.text) refers to spi.o(.text) for spi_init
main.o(.text) refers to mpu6000_spi.o(.text) for mpu6000_config
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj3EEC1Ev) for math::Vector<(unsigned)3>::Vector()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10VectorBaseILj3EEclEj) for math::VectorBase<(unsigned)3>::operator ()(unsigned)
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj3EEC1Efff) for math::Vector<(unsigned)3>::Vector(float, float, float)
test_cpp.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(.text) refers to test_cpp.o(i._ZNK4math6VectorILj3EErmERKS1_) for math::Vector<(unsigned)3>::operator %(const math::Vector<(unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj3EEaSERKS1_) for math::Vector<(unsigned)3>::operator =(const math::Vector<(unsigned)3>&)
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj3EED1Ev) for math::Vector<(unsigned)3>::~Vector()
test_cpp.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
test_cpp.o(.text) refers to cxa_guard_acquire.o(i.__cxa_guard_acquire) for __cxa_guard_acquire
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::Matrix()
test_cpp.o(.text) refers to aeabi_atexit.o(i.__aeabi_atexit) for __aeabi_atexit
test_cpp.o(.text) refers to test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS_6VectorILj3EEE) for math::Matrix<(unsigned)3, (unsigned)3>::operator *(const math::Vector<(unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EE8anti_symERKNS_6VectorILj3EEE) for math::Matrix<(unsigned)3, (unsigned)3>::anti_sym(const math::Vector<(unsigned)3>&)
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj3EEclEjj) for math::MatrixBase<(unsigned)3, (unsigned)3>::operator ()(unsigned, unsigned)
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EED1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj2EEclEjj) for math::MatrixBase<(unsigned)2, (unsigned)2>::operator ()(unsigned, unsigned) const
test_cpp.o(.text) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
test_cpp.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math6MatrixILj2ELj2EEC1Ev) for math::Matrix<(unsigned)2, (unsigned)2>::Matrix()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj2ELj2EEclEjj) for math::MatrixBase<(unsigned)2, (unsigned)2>::operator ()(unsigned, unsigned)
test_cpp.o(.text) refers to test_cpp.o(i._ZSt4fabsf) for std::fabs(float)
test_cpp.o(.text) refers to frleqf.o(x$fpl$frleqf) for __aeabi_cfrcmple
test_cpp.o(.text) refers to faddsub_noclz.o(x$fpl$frsb) for __aeabi_frsub
test_cpp.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEclEjj) for math::MatrixBase<(unsigned)3, (unsigned)3>::operator ()(unsigned, unsigned) const
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj3EE4zeroEv) for math::MatrixBase<(unsigned)3, (unsigned)3>::zero()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj3EE8identityEv) for math::MatrixBase<(unsigned)3, (unsigned)3>::identity()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EE10transposedEv) for math::MatrixBase<(unsigned)3, (unsigned)3>::transposed() const
test_cpp.o(.text) refers to test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKS1_) for math::Matrix<(unsigned)3, (unsigned)3>::operator *(const math::Matrix<(unsigned)3, (unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEplERKNS_6MatrixILj3ELj3EEE) for math::MatrixBase<(unsigned)3, (unsigned)3>::operator +(const math::Matrix<(unsigned)3, (unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10VectorBaseILj3EEC1Ev) for math::VectorBase<(unsigned)3>::VectorBase()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10VectorBaseILj3EEplERKNS_6VectorILj3EEE) for math::VectorBase<(unsigned)3>::operator +(const math::Vector<(unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmiERKNS_6MatrixILj3ELj3EEE) for math::MatrixBase<(unsigned)3, (unsigned)3>::operator -(const math::Matrix<(unsigned)3, (unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEaSERKS1_) for math::Matrix<(unsigned)3, (unsigned)3>::operator =(const math::Matrix<(unsigned)3, (unsigned)3>&)
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math6MatrixILj1ELj3EEC1Ev) for math::Matrix<(unsigned)1, (unsigned)3>::Matrix()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj1ELj3EE4zeroEv) for math::MatrixBase<(unsigned)1, (unsigned)3>::zero()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math6MatrixILj1ELj1EEC1Ev) for math::Matrix<(unsigned)1, (unsigned)1>::Matrix()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj1ELj1EEclEjj) for math::MatrixBase<(unsigned)1, (unsigned)1>::operator ()(unsigned, unsigned)
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj1ELj3EE10transposedEv) for math::MatrixBase<(unsigned)1, (unsigned)3>::transposed() const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj1ELj3EEmlILj3EEENS_6MatrixILj1EXT_EEERKNS3_ILj3EXT_EEE) for math::MatrixBase<(unsigned)1, (unsigned)3>::operator *<(unsigned)3>(const math::Matrix<(unsigned)3, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj1ELj3EEmlILj1EEENS_6MatrixILj1EXT_EEERKNS3_ILj3EXT_EEE) for math::MatrixBase<(unsigned)1, (unsigned)3>::operator *<(unsigned)1>(const math::Matrix<(unsigned)3, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(.constdata) for .constdata
test_cpp.o(.text) refers to test_cpp.o(.data) for _ZGVR1
test_cpp.o(.text) refers to test_cpp.o(.bss) for R1
test_cpp.o(.text) refers to test_cpp.o(.constdata__ZTVN4math10MatrixBaseILj3ELj3EEE) for vtable for math::MatrixBase<(unsigned)3, (unsigned)3>
test_cpp.o(.text) refers to test_cpp.o(.constdata__ZTVN4math6MatrixILj3ELj3EEE) for vtable for math::Matrix<(unsigned)3, (unsigned)3>
test_cpp.o(.text) refers to test_cpp.o(.constdata__ZTVN4math6VectorILj3EEE) for vtable for math::Vector<(unsigned)3>
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj1ELj1EED1Ev) for math::Matrix<(unsigned)1, (unsigned)1>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj1ELj3EED1Ev) for math::Matrix<(unsigned)1, (unsigned)3>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj1EED1Ev) for math::Matrix<(unsigned)3, (unsigned)1>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE) for math::Matrix<(unsigned)3, (unsigned)3>::operator *(const math::Matrix<(unsigned)3, (unsigned)1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj1EEmlILj1EEENS_6MatrixILj3EXT_EEERKNS3_ILj1EXT_EEE) for math::MatrixBase<(unsigned)3, (unsigned)1>::operator *<(unsigned)1>(const math::Matrix<(unsigned)1, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math6VectorILj1EEC1Ev) for math::Vector<(unsigned)1>::Vector()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10VectorBaseILj1EEclEj) for math::VectorBase<(unsigned)1>::operator ()(unsigned)
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math6MatrixILj1ELj3EEmlERKNS_6VectorILj3EEE) for math::Matrix<(unsigned)1, (unsigned)3>::operator *(const math::Vector<(unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math6MatrixILj3ELj1EEmlERKNS_6VectorILj1EEE) for math::Matrix<(unsigned)3, (unsigned)1>::operator *(const math::Vector<(unsigned)1>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj1EED1Ev) for math::Vector<(unsigned)1>::~Vector()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj1EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj1EXT_EEE) for math::MatrixBase<(unsigned)3, (unsigned)1>::operator *<(unsigned)3>(const math::Matrix<(unsigned)1, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math6MatrixILj2ELj3EEC1Ev) for math::Matrix<(unsigned)2, (unsigned)3>::Matrix()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj2ELj3EE4zeroEv) for math::MatrixBase<(unsigned)2, (unsigned)3>::zero()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj2ELj3EEclEjj) for math::MatrixBase<(unsigned)2, (unsigned)3>::operator ()(unsigned, unsigned)
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10MatrixBaseILj2ELj2EE4zeroEv) for math::MatrixBase<(unsigned)2, (unsigned)2>::zero()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EE10transposedEv) for math::MatrixBase<(unsigned)2, (unsigned)3>::transposed() const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) for math::MatrixBase<(unsigned)2, (unsigned)3>::operator *<(unsigned)3>(const math::Matrix<(unsigned)3, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) for math::MatrixBase<(unsigned)2, (unsigned)3>::operator *<(unsigned)2>(const math::Matrix<(unsigned)3, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj2EEplERKNS_6MatrixILj2ELj2EEE) for math::MatrixBase<(unsigned)2, (unsigned)2>::operator +(const math::Matrix<(unsigned)2, (unsigned)2>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj2ELj2EED1Ev) for math::Matrix<(unsigned)2, (unsigned)2>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj2ELj3EED1Ev) for math::Matrix<(unsigned)2, (unsigned)3>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj2EED1Ev) for math::Matrix<(unsigned)3, (unsigned)2>::~Matrix()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_) for math::MatrixBase<(unsigned)3, (unsigned)3>::operator *<(unsigned)2>(const math::Matrix<(unsigned)3, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) for math::MatrixBase<(unsigned)3, (unsigned)2>::operator *<(unsigned)2>(const math::Matrix<(unsigned)2, T1>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj2EEC1Ev) for math::Vector<(unsigned)2>::Vector()
test_cpp.o(.text) refers to test_cpp.o(t._ZN4math10VectorBaseILj2EEclEj) for math::VectorBase<(unsigned)2>::operator ()(unsigned)
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE) for math::Matrix<(unsigned)2, (unsigned)3>::operator *(const math::Vector<(unsigned)3>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10VectorBaseILj2EEmiERKNS_6VectorILj2EEE) for math::VectorBase<(unsigned)2>::operator -(const math::Vector<(unsigned)2>&) const
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE) for math::Matrix<(unsigned)3, (unsigned)2>::operator *(const math::Vector<(unsigned)2>&) const
test_cpp.o(.text) refers to test_cpp.o(i._ZN4math6VectorILj2EED1Ev) for math::Vector<(unsigned)2>::~Vector()
test_cpp.o(.text) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) for math::MatrixBase<(unsigned)3, (unsigned)2>::operator *<(unsigned)3>(const math::Matrix<(unsigned)2, T1>&) const
test_cpp.o(.ARM.exidx) refers to test_cpp.o(.text) for .text
adc.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
adc.o(.text) refers to commons.o(.text) for constrain
gps.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
gps.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
gps.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
gps.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
gps.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
gps.o(.text) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f
gps.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
gps.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
gps.o(.text) refers to gps.o(.data) for buffer_change_times
gps.o(.text) refers to gps.o(.bss) for gps_buffer0
gps.o(.text) refers to main.o(.bss) for gps
pio.o(.text) refers to timer.o(.text) for timer_get
pio.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
pio.o(.text) refers to main.o(.bss) for myusb
pio.o(.text) refers to pio.o(.data) for press_time
pio.o(.text) refers to main.o(.data) for mode
spi.o(.text) refers to imu.o(.text) for gyro_lowpass_biascorr
spi.o(.text) refers to spi.o(.bss) for spibuf_ga_rx
spi.o(.text) refers to main.o(.data) for smpl
spi.o(.text) refers to spi.o(.data) for baro2get
spi.o(.text) refers to main.o(.bss) for baro
spi.o(.text) refers to spi.o(.constdata) for spibuf_ga_tx
twi.o(.text) refers to imu.o(.text) for data_conclude
twi.o(.text) refers to twi.o(.data) for working_reader
twi.o(.text) refers to main.o(.bss) for sens
usb.o(.text) refers to pio.o(.text) for usb_in_pin
usb.o(.text) refers to usb.o(.constdata) for devDescriptor
usb.o(.text) refers to usb.o(.data) for line
usb.o(.text) refers to usb.o(.bss) for pEndpoint
usb.o(.text) refers to main.o(.bss) for myusb
usb.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
usb.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
usb.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
usb.o(.text) refers to rt_memcpy.o(.text) for __aeabi_memcpy
usb.o(.text) refers to main.o(.data) for mode
usb.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
xbee.o(.text) refers to rt_memcpy.o(.text) for __aeabi_memcpy
xbee.o(.text) refers to main.o(.data) for smpl
xbee.o(.text) refers to xbee.o(.bss) for tx_buffer
sam7.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
sam7.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
sam7.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
sam7.o(RESET) refers to sam7.o(STACK) for Stack_Top
sam7.o(RESET) refers to __main.o(!!!main) for __main
sam7.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
sam7.o(.text) refers to sam7.o(HEAP) for Heap_Mem
sam7.o(.text) refers to sam7.o(STACK) for Stack_Mem
attitudeestimator.o(.text) refers to filter.o(.text) for IIR_set_cutoff_freq
attitudeestimator.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
attitudeestimator.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
attitudeestimator.o(.text) refers to faddsub_noclz.o(x$fpl$frsb) for __aeabi_frsub
attitudeestimator.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
attitudeestimator.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
attitudeestimator.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
attitudeestimator.o(.text) refers to sin.o(i.sin) for sin
attitudeestimator.o(.text) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
attitudeestimator.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
attitudeestimator.o(.text) refers to cos.o(i.cos) for cos
attitudeestimator.o(.text) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
attitudeestimator.o(.text) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
attitudeestimator.o(.text) refers to attitudeestimator.o(i.__ARM_isfinitef) for __ARM_isfinitef
attitudeestimator.o(.text) refers to atan2.o(i.atan2) for atan2
attitudeestimator.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
attitudeestimator.o(.text) refers to commons.o(.text) for constrain_f
attitudeestimator.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
attitudeestimator.o(.text) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
attitudeestimator.o(.text) refers to attitudeestimator.o(.bss) for iir_wx
attitudeestimator.o(.text) refers to main.o(.data) for att
attitudeestimator.o(.text) refers to attitudeestimator.o(.data) for q0
attitudeestimator.o(.text) refers to main.o(.bss) for sens
attitudeestimator.o(.text) refers to asin.o(i.asin) for asin
attitudeestimator.o(.text) refers to dleqf.o(x$fpl$dleqf) for __aeabi_cdcmple
attitudeestimator.o(.text) refers to drleqf.o(x$fpl$drleqf) for __aeabi_cdrcmple
attitudeestimator.o(.text) refers to sqrt.o(i.sqrt) for sqrt
attitudeestimator.o(.text) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f
attitudeestimator.o(.text) refers to imu.o(.text) for continue_cps_read
attitudeestimator.o(.text) refers to timer.o(.text) for delay_ms
attitudeestimator.o(.text) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
controls.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
controls.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
controls.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
controls.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
controls.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
controls.o(.text) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
controls.o(.text) refers to commons.o(.text) for constrain
controls.o(.text) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
controls.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
controls.o(.text) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
controls.o(.text) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
controls.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
controls.o(.text) refers to sqrt.o(i.sqrt) for sqrt
controls.o(.text) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f
controls.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
controls.o(.text) refers to sin.o(i.sin) for sin
controls.o(.text) refers to cos.o(i.cos) for cos
controls.o(.text) refers to asin.o(i.asin) for asin
controls.o(.text) refers to atan2.o(i.atan2) for atan2
controls.o(.text) refers to main.o(.data) for cmd
controls.o(.text) refers to main.o(.bss) for pos
controls.o(.text) refers to controls.o(.data) for pos_xPID
controls.o(.text) refers to controls.o(.bss) for R_sp
filter.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
filter.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
filter.o(.text) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
filter.o(.text) refers to tan.o(i.tan) for tan
filter.o(.text) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f
filter.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
filter.o(.text) refers to cos.o(i.cos) for cos
filter.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
filter.o(.text) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
filter.o(.text) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
filter.o(.text) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
filter.o(.text) refers to faddsub_noclz.o(x$fpl$frsb) for __aeabi_frsub
filter.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
imu.o(.text) refers to timer.o(.text) for delay_ms
imu.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
imu.o(.text) refers to twi.o(.text) for twi_cps_read_start
imu.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
imu.o(.text) refers to filter.o(.text) for IIR_apply
imu.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
imu.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
imu.o(.text) refers to imu.o(.data) for gyr_x_bias
imu.o(.text) refers to main.o(.bss) for sens
imu.o(.text) refers to imu.o(.bss) for iir_ax
motormixer.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
motormixer.o(.text) refers to commons.o(.text) for constrain
motormixer.o(.text) refers to pwm.o(.text) for pwm_set_duty_cycle
motormixer.o(.text) refers to motormixer.o(.constdata) for .constdata
motormixer.o(.text) refers to main.o(.data) for cmd
motormixer.o(.text) refers to main.o(.bss) for output
positionestimator.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
positionestimator.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
positionestimator.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
positionestimator.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
positionestimator.o(.text) refers to cos.o(i.cos) for cos
positionestimator.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
positionestimator.o(.text) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
positionestimator.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
positionestimator.o(.text) refers to feqf.o(x$fpl$feqf) for __aeabi_cfcmpeq
positionestimator.o(.text) refers to sin.o(i.sin) for sin
positionestimator.o(.text) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
positionestimator.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
positionestimator.o(.text) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
positionestimator.o(.text) refers to commons.o(.text) for minimum
positionestimator.o(.text) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
positionestimator.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
positionestimator.o(.text) refers to faddsub_noclz.o(x$fpl$frsb) for __aeabi_frsub
positionestimator.o(.text) refers to attitudeestimator.o(.text) for body2glob
positionestimator.o(.text) refers to main.o(.bss) for gps
positionestimator.o(.text) refers to positionestimator.o(.data) for home_lat
positionestimator.o(.text) refers to positionestimator.o(.bss) for est_buf
positionestimator.o(.text) refers to main.o(.data) for att
radiocontroller.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
radiocontroller.o(.text) refers to commons.o(.text) for dead_zone
radiocontroller.o(.text) refers to attitudeestimator.o(.text) for body2glob
radiocontroller.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
radiocontroller.o(.text) refers to main.o(.bss) for pos
radiocontroller.o(.text) refers to main.o(.data) for cmd
eeprom.o(.text) refers to twi.o(.text) for i2c_eeprom_write_byte
eeprom.o(.text) refers to timer.o(.text) for delay_ms
hmc5883.o(.text) refers to twi.o(.text) for i2cwrite
hmc5883.o(.text) refers to timer.o(.text) for delay_ms
mpu6000_spi.o(.text) refers to spi.o(.text) for spi_read_reg
ms5611_spi.o(.text) refers to llsdiv.o(.text) for __aeabi_ldivmod
ms5611_spi.o(.text) refers to fflt_noclz.o(x$fpl$fflt) for __aeabi_i2f
ms5611_spi.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
ms5611_spi.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
ms5611_spi.o(.text) refers to pow.o(i.pow) for pow
ms5611_spi.o(.text) refers to d2f.o(x$fpl$d2f) for __aeabi_d2f
ms5611_spi.o(.text) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
ms5611_spi.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
ms5611_spi.o(.text) refers to spi.o(.text) for spi_read_write
ms5611_spi.o(.text) refers to timer.o(.text) for delay_ms
ms5611_spi.o(.text) refers to main.o(.bss) for baro
ms5611_spi.o(.text) refers to ms5611_spi.o(.data) for C5
pca9685.o(.text) refers to aeabi_sdiv.o(.text) for __aeabi_idivmod
pca9685.o(.text) refers to twi.o(.text) for i2cwtritebyte
pca9685.o(.text) refers to timer.o(.text) for delay_ms
llsdiv.o(.text) refers to lludiv.o(.text) for __aeabi_uldivmod
atexit_cpp.o(.text) refers to cxa_atexit.o(i.__cxa_atexit) for __cxa_atexit
atexit_cpp.o(.ARM.exidx) refers to atexit_cpp.o(.text) for .text
rt_memcpy.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
aeabi_sdiv.o(.text_udiv) refers to aeabi_sdiv.o(.text) for __arm_div2
aeabi_sdiv_div0.o(.text_udiv) refers to aeabi_sdiv_div0.o(.text) for __arm_div2
__main.o(!!!main) refers to rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
delete.o(i._ZdlPv) refers to h1_free.o(.text) for free
delete.o(.ARM.exidx) refers to delete.o(i._ZdlPv) for i._ZdlPv
aeabi_atexit.o(i.__aeabi_atexit) refers (Special) to cxa_finalize.o(i.__cxa_finalize) for __cxa_finalize
aeabi_atexit.o(i.__aeabi_atexit) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) for __rt_lib_shutdown_cpp_1
aeabi_atexit.o(i.__aeabi_atexit) refers to h1_alloc.o(.text) for malloc
aeabi_atexit.o(i.__aeabi_atexit) refers to rt_ddtor_pointer_addr_intlibspace.o(.text) for __rt_ddtor_pointer_addr
aeabi_atexit.o(.ARM.exidx) refers (Special) to cxa_finalize.o(i.__cxa_finalize) for __cxa_finalize
aeabi_atexit.o(.ARM.exidx) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) for __rt_lib_shutdown_cpp_1
aeabi_atexit.o(.ARM.exidx) refers to aeabi_atexit.o(i.__aeabi_atexit) for i.__aeabi_atexit
cxa_guard_acquire.o(.ARM.exidx) refers to cxa_guard_acquire.o(i.__cxa_guard_acquire) for i.__cxa_guard_acquire
cxa_guard_release.o(.ARM.exidx) refers to cxa_guard_release.o(i.__cxa_guard_release) for i.__cxa_guard_release
lib_rtti_impl.o(i._ZN10__cxxabiv116__enum_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv116__enum_type_infoD1Ev) for __cxxabiv1::__enum_type_info::~__enum_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv117__array_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__array_type_infoD1Ev) for __cxxabiv1::__array_type_info::~__array_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv117__class_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__class_type_infoD1Ev) for __cxxabiv1::__class_type_info::~__class_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv117__pbase_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__pbase_type_infoD1Ev) for __cxxabiv1::__pbase_type_info::~__pbase_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv119__pointer_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv119__pointer_type_infoD1Ev) for __cxxabiv1::__pointer_type_info::~__pointer_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv119__pointer_type_infoD1Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__pbase_type_infoD1Ev) for __cxxabiv1::__pbase_type_info::~__pbase_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv120__function_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv120__function_type_infoD1Ev) for __cxxabiv1::__function_type_info::~__function_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv120__si_class_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv120__si_class_type_infoD1Ev) for __cxxabiv1::__si_class_type_info::~__si_class_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv120__si_class_type_infoD1Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__class_type_infoD1Ev) for __cxxabiv1::__class_type_info::~__class_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv121__vmi_class_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv121__vmi_class_type_infoD1Ev) for __cxxabiv1::__vmi_class_type_info::~__vmi_class_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv121__vmi_class_type_infoD1Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__class_type_infoD1Ev) for __cxxabiv1::__class_type_info::~__class_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv123__fundamental_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv123__fundamental_type_infoD1Ev) for __cxxabiv1::__fundamental_type_info::~__fundamental_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev) for __cxxabiv1::__pointer_to_member_type_info::~__pointer_to_member_type_info()
lib_rtti_impl.o(i._ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__pbase_type_infoD1Ev) for __cxxabiv1::__pbase_type_info::~__pbase_type_info()
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv123__fundamental_type_infoD1Ev) for i._ZN10__cxxabiv123__fundamental_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv123__fundamental_type_infoD0Ev) for i._ZN10__cxxabiv123__fundamental_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__array_type_infoD1Ev) for i._ZN10__cxxabiv117__array_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__array_type_infoD0Ev) for i._ZN10__cxxabiv117__array_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv120__function_type_infoD1Ev) for i._ZN10__cxxabiv120__function_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv120__function_type_infoD0Ev) for i._ZN10__cxxabiv120__function_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv116__enum_type_infoD1Ev) for i._ZN10__cxxabiv116__enum_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv116__enum_type_infoD0Ev) for i._ZN10__cxxabiv116__enum_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__class_type_infoD1Ev) for i._ZN10__cxxabiv117__class_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__class_type_infoD0Ev) for i._ZN10__cxxabiv117__class_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv120__si_class_type_infoD1Ev) for i._ZN10__cxxabiv120__si_class_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv120__si_class_type_infoD0Ev) for i._ZN10__cxxabiv120__si_class_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv121__vmi_class_type_infoD1Ev) for i._ZN10__cxxabiv121__vmi_class_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv121__vmi_class_type_infoD0Ev) for i._ZN10__cxxabiv121__vmi_class_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__pbase_type_infoD1Ev) for i._ZN10__cxxabiv117__pbase_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv117__pbase_type_infoD0Ev) for i._ZN10__cxxabiv117__pbase_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv119__pointer_type_infoD1Ev) for i._ZN10__cxxabiv119__pointer_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv119__pointer_type_infoD0Ev) for i._ZN10__cxxabiv119__pointer_type_infoD0Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev) for i._ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev
lib_rtti_impl.o(.ARM.exidx) refers to lib_rtti_impl.o(i._ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev) for i._ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev
d2f.o(x$fpl$d2f) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
d2f.o(x$fpl$d2f) refers to fretinf.o(x$fpl$fretinf) for __fpl_fretinf
d2f.o(x$fpl$d2f) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
daddsub_noclz.o(x$fpl$dadd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
daddsub_noclz.o(x$fpl$dadd) refers to daddsub_noclz.o(x$fpl$dsub) for _dsub1
daddsub_noclz.o(x$fpl$dadd) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
daddsub_noclz.o(x$fpl$dadd) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
daddsub_noclz.o(x$fpl$drsb) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
daddsub_noclz.o(x$fpl$drsb) refers to daddsub_noclz.o(x$fpl$dadd) for _dadd1
daddsub_noclz.o(x$fpl$drsb) refers to daddsub_noclz.o(x$fpl$dsub) for _dsub1
daddsub_noclz.o(x$fpl$dsub) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
daddsub_noclz.o(x$fpl$dsub) refers to daddsub_noclz.o(x$fpl$dadd) for _dadd1
daddsub_noclz.o(x$fpl$dsub) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
ddiv.o(x$fpl$drdiv) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
ddiv.o(x$fpl$drdiv) refers to ddiv.o(x$fpl$ddiv) for ddiv_entry
ddiv.o(x$fpl$ddiv) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
ddiv.o(x$fpl$ddiv) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
ddiv.o(x$fpl$ddiv) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
dfix.o(x$fpl$dfix) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dfix.o(x$fpl$dfix) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
dfix.o(x$fpl$dfixr) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dfix.o(x$fpl$dfixr) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
dflt_noclz.o(x$fpl$dfltu) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dflt_noclz.o(x$fpl$dfltu) refers to dflt_noclz.o(x$fpl$dflt) for __dflt_normalise
dflt_noclz.o(x$fpl$dflt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dleqf.o(x$fpl$dleqf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dleqf.o(x$fpl$dleqf) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
dleqf.o(x$fpl$dleqf) refers to dcmpi.o(x$fpl$dcmpinf) for __fpl_dcmp_Inf
dmul.o(x$fpl$dmul) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dmul.o(x$fpl$dmul) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
dmul.o(x$fpl$dmul) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
drleqf.o(x$fpl$drleqf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
drleqf.o(x$fpl$drleqf) refers to dleqf.o(x$fpl$dleqf) for __fpl_dcmple_InfNaN
f2d.o(x$fpl$f2d) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
f2d.o(x$fpl$f2d) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
f2d.o(x$fpl$f2d) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
faddsub_noclz.o(x$fpl$fadd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
faddsub_noclz.o(x$fpl$fadd) refers to faddsub_noclz.o(x$fpl$fsub) for _fsub1
faddsub_noclz.o(x$fpl$fadd) refers to fretinf.o(x$fpl$fretinf) for __fpl_fretinf
faddsub_noclz.o(x$fpl$fadd) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
faddsub_noclz.o(x$fpl$frsb) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
faddsub_noclz.o(x$fpl$frsb) refers to faddsub_noclz.o(x$fpl$fadd) for _fadd1
faddsub_noclz.o(x$fpl$frsb) refers to faddsub_noclz.o(x$fpl$fsub) for _fsub1
faddsub_noclz.o(x$fpl$fsub) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
faddsub_noclz.o(x$fpl$fsub) refers to faddsub_noclz.o(x$fpl$fadd) for _fadd1
faddsub_noclz.o(x$fpl$fsub) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
fdiv.o(x$fpl$frdiv) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fdiv.o(x$fpl$frdiv) refers to fdiv.o(x$fpl$fdiv) for _fdiv1
fdiv.o(x$fpl$fdiv) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fdiv.o(x$fpl$fdiv) refers to fretinf.o(x$fpl$fretinf) for __fpl_fretinf
fdiv.o(x$fpl$fdiv) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
feqf.o(x$fpl$feqf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
feqf.o(x$fpl$feqf) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
feqf.o(x$fpl$feqf) refers to fcmpi.o(x$fpl$fcmpinf) for __fpl_fcmp_Inf
ffix.o(x$fpl$ffix) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
ffix.o(x$fpl$ffix) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
ffix.o(x$fpl$ffixr) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
ffix.o(x$fpl$ffixr) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
fflt_noclz.o(x$fpl$ffltu) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fflt_noclz.o(x$fpl$ffltu) refers to fflt_noclz.o(x$fpl$fflt) for __fflt_normalise
fflt_noclz.o(x$fpl$fflt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fleqf.o(x$fpl$fleqf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fleqf.o(x$fpl$fleqf) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
fleqf.o(x$fpl$fleqf) refers to fcmpi.o(x$fpl$fcmpinf) for __fpl_fcmp_Inf
fmul.o(x$fpl$fmul) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fmul.o(x$fpl$fmul) refers to fretinf.o(x$fpl$fretinf) for __fpl_fretinf
fmul.o(x$fpl$fmul) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
frleqf.o(x$fpl$frleqf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
frleqf.o(x$fpl$frleqf) refers to fleqf.o(x$fpl$fleqf) for __fpl_fcmple_InfNaN
asin.o(i.__softfp_asin) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
asin.o(i.__softfp_asin) refers to asin.o(i.asin) for asin
asin.o(i.asin) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
asin.o(i.asin) refers to scalbn.o(x$fpl$scalbn) for scalbn
asin.o(i.asin) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
asin.o(i.asin) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
asin.o(i.asin) refers to _rserrno.o(.text) for __set_errno
asin.o(i.asin) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
asin.o(i.asin) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
asin.o(i.asin) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
asin.o(i.asin) refers to poly.o(i.__kernel_poly) for __kernel_poly
asin.o(i.asin) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
asin.o(i.asin) refers to sqrt.o(i.sqrt) for sqrt
asin.o(i.asin) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
asin.o(i.asin) refers to asin.o(.constdata) for .constdata
asin.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
asin_x.o(i.____softfp_asin$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
asin_x.o(i.____softfp_asin$lsc) refers to asin_x.o(i.__asin$lsc) for __asin$lsc
asin_x.o(i.__asin$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
asin_x.o(i.__asin$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
asin_x.o(i.__asin$lsc) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
asin_x.o(i.__asin$lsc) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
asin_x.o(i.__asin$lsc) refers to _rserrno.o(.text) for __set_errno
asin_x.o(i.__asin$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
asin_x.o(i.__asin$lsc) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
asin_x.o(i.__asin$lsc) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
asin_x.o(i.__asin$lsc) refers to sqrt.o(i.sqrt) for sqrt
asin_x.o(i.__asin$lsc) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
asin_x.o(i.__asin$lsc) refers to asin_x.o(.constdata) for .constdata
asin_x.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan2.o(i.__softfp_atan2) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan2.o(i.__softfp_atan2) refers to atan2.o(i.atan2) for atan2
atan2.o(i.atan2) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan2.o(i.atan2) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
atan2.o(i.atan2) refers to atan.o(i.atan) for atan
atan2.o(i.atan2) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
atan2.o(i.atan2) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
atan2.o(i.atan2) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
atan2.o(i.atan2) refers to qnan.o(.constdata) for __mathlib_zero
atan2_x.o(i.____softfp_atan2$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan2_x.o(i.____softfp_atan2$lsc) refers to atan2_x.o(i.__atan2$lsc) for __atan2$lsc
atan2_x.o(i.__atan2$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan2_x.o(i.__atan2$lsc) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
atan2_x.o(i.__atan2$lsc) refers to atan.o(i.atan) for atan
atan2_x.o(i.__atan2$lsc) refers to _rserrno.o(.text) for __set_errno
atan2_x.o(i.__atan2$lsc) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
atan2_x.o(i.__atan2$lsc) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
atan2_x.o(i.__atan2$lsc) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
atan2_x.o(i.__atan2$lsc) refers to qnan.o(.constdata) for __mathlib_zero
cos.o(i.__softfp_cos) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
cos.o(i.__softfp_cos) refers to cos.o(i.cos) for cos
cos.o(i.cos) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
cos.o(i.cos) refers to _rserrno.o(.text) for __set_errno
cos.o(i.cos) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
cos.o(i.cos) refers to scalbn.o(x$fpl$scalbn) for scalbn
cos.o(i.cos) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
cos.o(i.cos) refers to sin_i.o(i.__kernel_sin) for __kernel_sin
cos.o(i.cos) refers to cos_i.o(i.__kernel_cos) for __kernel_cos
cos_x.o(i.____softfp_cos$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
cos_x.o(i.____softfp_cos$lsc) refers to cos_x.o(i.__cos$lsc) for __cos$lsc
cos_x.o(i.__cos$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
cos_x.o(i.__cos$lsc) refers to _rserrno.o(.text) for __set_errno
cos_x.o(i.__cos$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
cos_x.o(i.__cos$lsc) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
cos_x.o(i.__cos$lsc) refers to sin_i.o(i.__kernel_sin) for __kernel_sin
cos_x.o(i.__cos$lsc) refers to cos_i.o(i.__kernel_cos) for __kernel_cos
pow.o(i.__softfp_pow) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
pow.o(i.__softfp_pow) refers to pow.o(i.pow) for pow
pow.o(i.pow) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
pow.o(i.pow) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
pow.o(i.pow) refers to _rserrno.o(.text) for __set_errno
pow.o(i.pow) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
pow.o(i.pow) refers to scalbn.o(x$fpl$scalbn) for scalbn
pow.o(i.pow) refers to sqrt.o(i.sqrt) for sqrt
pow.o(i.pow) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
pow.o(i.pow) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
pow.o(i.pow) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
pow.o(i.pow) refers to poly.o(i.__kernel_poly) for __kernel_poly
pow.o(i.pow) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
pow.o(i.pow) refers to drleqf.o(x$fpl$drleqf) for __aeabi_cdrcmple
pow.o(i.pow) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
pow.o(i.pow) refers to qnan.o(.constdata) for __mathlib_zero
pow.o(i.pow) refers to pow.o(.constdata) for .constdata
pow.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
pow_x.o(i.____softfp_pow$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
pow_x.o(i.____softfp_pow$lsc) refers to pow_x.o(i.__pow$lsc) for __pow$lsc
pow_x.o(i.__pow$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
pow_x.o(i.__pow$lsc) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
pow_x.o(i.__pow$lsc) refers to _rserrno.o(.text) for __set_errno
pow_x.o(i.__pow$lsc) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
pow_x.o(i.__pow$lsc) refers to sqrt.o(i.sqrt) for sqrt
pow_x.o(i.__pow$lsc) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
pow_x.o(i.__pow$lsc) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
pow_x.o(i.__pow$lsc) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
pow_x.o(i.__pow$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
pow_x.o(i.__pow$lsc) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
pow_x.o(i.__pow$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
pow_x.o(i.__pow$lsc) refers to drleqf.o(x$fpl$drleqf) for __aeabi_cdrcmple
pow_x.o(i.__pow$lsc) refers to qnan.o(.constdata) for __mathlib_zero
pow_x.o(i.__pow$lsc) refers to pow_x.o(.constdata) for .constdata
pow_x.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin.o(i.__softfp_sin) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin.o(i.__softfp_sin) refers to sin.o(i.sin) for sin
sin.o(i.sin) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin.o(i.sin) refers to _rserrno.o(.text) for __set_errno
sin.o(i.sin) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
sin.o(i.sin) refers to scalbn.o(x$fpl$scalbn) for scalbn
sin.o(i.sin) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
sin.o(i.sin) refers to cos_i.o(i.__kernel_cos) for __kernel_cos
sin.o(i.sin) refers to sin_i.o(i.__kernel_sin) for __kernel_sin
sin_x.o(i.____softfp_sin$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin_x.o(i.____softfp_sin$lsc) refers to sin_x.o(i.__sin$lsc) for __sin$lsc
sin_x.o(i.__sin$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin_x.o(i.__sin$lsc) refers to _rserrno.o(.text) for __set_errno
sin_x.o(i.__sin$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
sin_x.o(i.__sin$lsc) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
sin_x.o(i.__sin$lsc) refers to cos_i.o(i.__kernel_cos) for __kernel_cos
sin_x.o(i.__sin$lsc) refers to sin_i.o(i.__kernel_sin) for __kernel_sin
sqrt.o(i.__softfp_sqrt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sqrt.o(i.__softfp_sqrt) refers to dsqrt_noumaal.o(x$fpl$dsqrt) for _dsqrt
sqrt.o(i.__softfp_sqrt) refers to _rserrno.o(.text) for __set_errno
sqrt.o(i.sqrt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sqrt.o(i.sqrt) refers to dsqrt_noumaal.o(x$fpl$dsqrt) for _dsqrt
sqrt.o(i.sqrt) refers to _rserrno.o(.text) for __set_errno
sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sqrt_x.o(i.____softfp_sqrt$lsc) refers to dleqf.o(x$fpl$dleqf) for __aeabi_cdcmple
sqrt_x.o(i.____softfp_sqrt$lsc) refers to _rserrno.o(.text) for __set_errno
sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt_noumaal.o(x$fpl$dsqrt) for _dsqrt
sqrt_x.o(i.__sqrt$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sqrt_x.o(i.__sqrt$lsc) refers to dleqf.o(x$fpl$dleqf) for __aeabi_cdcmple
sqrt_x.o(i.__sqrt$lsc) refers to _rserrno.o(.text) for __set_errno
sqrt_x.o(i.__sqrt$lsc) refers to dsqrt_noumaal.o(x$fpl$dsqrt) for _dsqrt
tan.o(i.__softfp_tan) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan.o(i.__softfp_tan) refers to _rserrno.o(.text) for __set_errno
tan.o(i.__softfp_tan) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
tan.o(i.__softfp_tan) refers to scalbn.o(x$fpl$scalbn) for scalbn
tan.o(i.__softfp_tan) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
tan.o(i.__softfp_tan) refers to tan_i.o(i.__kernel_tan) for __kernel_tan
tan.o(i.tan) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan.o(i.tan) refers to _rserrno.o(.text) for __set_errno
tan.o(i.tan) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
tan.o(i.tan) refers to scalbn.o(x$fpl$scalbn) for scalbn
tan.o(i.tan) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
tan.o(i.tan) refers to tan_i.o(i.__kernel_tan) for __kernel_tan
tan_x.o(i.____softfp_tan$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan_x.o(i.____softfp_tan$lsc) refers to _rserrno.o(.text) for __set_errno
tan_x.o(i.____softfp_tan$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
tan_x.o(i.____softfp_tan$lsc) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
tan_x.o(i.____softfp_tan$lsc) refers to tan_i.o(i.__kernel_tan) for __kernel_tan
tan_x.o(i.__tan$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan_x.o(i.__tan$lsc) refers to _rserrno.o(.text) for __set_errno
tan_x.o(i.__tan$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
tan_x.o(i.__tan$lsc) refers to rred.o(i.__ieee754_rem_pio2) for __ieee754_rem_pio2
tan_x.o(i.__tan$lsc) refers to tan_i.o(i.__kernel_tan) for __kernel_tan
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1
rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh
rtentry.o(.ARM.exidx) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
rtentry.o(.ARM.exidx) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
rtentry.o(.ARM.exidx) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1
rtentry.o(.ARM.exidx) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1
rtentry.o(.ARM.exidx) refers (Special) to rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1
rtentry.o(.ARM.exidx) refers (Special) to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh
rtentry.o(.ARM.exidx) refers to rtentry.o(.ARM.Collect$$rtentry$$00000000) for .ARM.Collect$$rtentry$$00000000
aeabi_idiv0_sigfpe.o(.text) refers to rt_div0.o(.text) for __rt_div0
rt_ddtor_pointer_addr.o(.text) refers to rt_ddtor_pointer_addr.o(.bss) for __rt_ddtor_pointer_addr_data
rt_ddtor_pointer_addr_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
malloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
malloc.o(.text) refers (Special) to init_alloc.o(.text) for _init_alloc
malloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
free.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_alloc.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
h1_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_alloc.o(.text) refers to init_alloc.o(.text) for __Heap_Full
h1_free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_alloc_mt.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
h1_alloc_mt.o(.text) refers to init_alloc.o(.text) for __Heap_Full
h1_alloc_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
h1_free_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._FDIterate) refers to heap2.o(i.__ARM_common_call_via_r6) for __ARM_common_call_via_r6
heap2.o(i._FDIterate) refers to heap2.o(.constdata) for .constdata
heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i.___Heap_Stats$realtime) refers to heap2.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
heap2.o(i.___Heap_Stats$realtime) refers to aeabi_sdiv.o(.text_udiv) for __aeabi_uidivmod
heap2.o(i.___Heap_Stats$realtime) refers to heap2.o(i.__ARM_common_call_via_r5) for __ARM_common_call_via_r5
heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(i.__ARM_common_call_via_r5) for __ARM_common_call_via_r5
heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(i._FDIterate) for _FDIterate
heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(.constdata) for .constdata
heap2.o(i._free$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._malloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2.o(i._malloc$realtime) refers to init_alloc.o(.text) for __Heap_Full
heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._posix_memalign$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2.o(i._posix_memalign$realtime) refers to init_alloc.o(.text) for __Heap_Full
heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._realloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2.o(i._realloc$realtime) refers to h1_free.o(.text) for free
heap2.o(i._realloc$realtime) refers to h1_alloc.o(.text) for malloc
heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2.o(i._realloc$realtime) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
heap2mt.o(i._FDIterate) refers to heap2.o(i.__ARM_common_call_via_r6) for __ARM_common_call_via_r6
heap2mt.o(i._FDIterate) refers to heap2mt.o(.constdata) for .constdata
heap2mt.o(i.___Heap_Initialize$realtime$concurrent) refers to mutex_dummy.o(.text) for _mutex_initialize
heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to heap2mt.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to aeabi_sdiv.o(.text_udiv) for __aeabi_uidivmod
heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to heap2.o(i.__ARM_common_call_via_r5) for __ARM_common_call_via_r5
heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2.o(i.__ARM_common_call_via_r5) for __ARM_common_call_via_r5
heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(i._FDIterate) for _FDIterate
heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(.constdata) for .constdata
heap2mt.o(i._free$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._malloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2mt.o(i._malloc$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._realloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
heap2mt.o(i._realloc$realtime$concurrent) refers to h1_free.o(.text) for free
heap2mt.o(i._realloc$realtime$concurrent) refers to h1_alloc.o(.text) for malloc
heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
heap2mt.o(i._realloc$realtime$concurrent) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
_rserrno.o(.text) refers to rt_errno_addr_intlibspace.o(.text) for __aeabi_errno_addr
libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) refers (Weak) to cxa_finalize.o(i.__cxa_finalize) for __cxa_finalize
libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) refers (Weak) to term_alloc.o(.text) for _terminate_alloc
cxa_atexit.o(i.__cxa_atexit) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) for __rt_lib_shutdown_cpp_1
cxa_atexit.o(i.__cxa_atexit) refers to aeabi_atexit.o(i.__aeabi_atexit) for __aeabi_atexit
cxa_atexit.o(.ARM.exidx) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) for __rt_lib_shutdown_cpp_1
cxa_atexit.o(.ARM.exidx) refers to cxa_atexit.o(i.__cxa_atexit) for i.__cxa_atexit
cxa_finalize.o(i.__cxa_finalize) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) for __rt_lib_shutdown_cpp_1
cxa_finalize.o(i.__cxa_finalize) refers to rt_ddtor_pointer_addr_intlibspace.o(.text) for __rt_ddtor_pointer_addr
cxa_finalize.o(i.__cxa_finalize) refers to cxa_finalize.o(i.__ARM_common_call_via_r1) for __ARM_common_call_via_r1
cxa_finalize.o(i.__cxa_finalize) refers to h1_free.o(.text) for free
cxa_finalize.o(.ARM.exidx) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000001) for __rt_lib_shutdown_cpp_1
cxa_finalize.o(.ARM.exidx) refers to cxa_finalize.o(i.__cxa_finalize) for i.__cxa_finalize
type_info_dtor.o(.ARM.exidx) refers to type_info_dtor.o(i._ZNSt9type_infoD1Ev) for i._ZNSt9type_infoD1Ev
type_info_dtor.o(.ARM.exidx) refers to type_info_dtor.o(i._ZNSt9type_infoD0Ev) for i._ZNSt9type_infoD0Ev
dcmpi.o(x$fpl$dcmpinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dnaninf.o(x$fpl$dnaninf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dretinf.o(x$fpl$dretinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dsqrt_noumaal.o(x$fpl$dsqrt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dsqrt_noumaal.o(x$fpl$dsqrt) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
fcmpi.o(x$fpl$fcmpinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fnaninf.o(x$fpl$fnaninf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fretinf.o(x$fpl$fretinf) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
scalbn.o(x$fpl$scalbnl) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
scalbn.o(x$fpl$scalbnl) refers to scalbn.o(x$fpl$scalbn) for scalbn
scalbn.o(x$fpl$scalblnl) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
scalbn.o(x$fpl$scalblnl) refers to scalbn.o(x$fpl$scalbn) for scalbn
scalbn.o(x$fpl$scalbln) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
scalbn.o(x$fpl$scalbln) refers to scalbn.o(x$fpl$scalbn) for scalbn
scalbn.o(x$fpl$scalbn) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
scalbn.o(x$fpl$scalbn) refers to dcheck1.o(x$fpl$dcheck1) for __fpl_dcheck_NaN1
atan.o(i.__softfp_atan) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan.o(i.__softfp_atan) refers to atan.o(i.atan) for atan
atan.o(i.atan) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan.o(i.atan) refers to scalbn.o(x$fpl$scalbn) for scalbn
atan.o(i.atan) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
atan.o(i.atan) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
atan.o(i.atan) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
atan.o(i.atan) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
atan.o(i.atan) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
atan.o(i.atan) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
atan.o(i.atan) refers to poly.o(i.__kernel_poly) for __kernel_poly
atan.o(i.atan) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
atan.o(i.atan) refers to atan.o(.constdata) for .constdata
atan.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan_x.o(i.____softfp_atan$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan_x.o(i.____softfp_atan$lsc) refers to atan_x.o(i.__atan$lsc) for __atan$lsc
atan_x.o(i.__atan$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
atan_x.o(i.__atan$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
atan_x.o(i.__atan$lsc) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
atan_x.o(i.__atan$lsc) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
atan_x.o(i.__atan$lsc) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
atan_x.o(i.__atan$lsc) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
atan_x.o(i.__atan$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
atan_x.o(i.__atan$lsc) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
atan_x.o(i.__atan$lsc) refers to atan_x.o(.constdata) for .constdata
atan_x.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
cos_i.o(i.__kernel_cos) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
cos_i.o(i.__kernel_cos) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
cos_i.o(i.__kernel_cos) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
cos_i.o(i.__kernel_cos) refers to poly.o(i.__kernel_poly) for __kernel_poly
cos_i.o(i.__kernel_cos) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
cos_i.o(i.__kernel_cos) refers to scalbn.o(x$fpl$scalbn) for scalbn
cos_i.o(i.__kernel_cos) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
cos_i.o(i.__kernel_cos) refers to cos_i.o(.constdata) for .constdata
cos_i.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dunder.o(i.__mathlib_dbl_underflow) refers to scalbn.o(x$fpl$scalbn) for scalbn
fpclassify.o(i.__ARM_fpclassify) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
poly.o(i.__kernel_poly) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
poly.o(i.__kernel_poly) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
poly.o(i.__kernel_poly) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
qnan.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
rred.o(i.__ieee754_rem_pio2) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
rred.o(i.__ieee754_rem_pio2) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
rred.o(i.__ieee754_rem_pio2) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
rred.o(i.__ieee754_rem_pio2) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
rred.o(i.__ieee754_rem_pio2) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
rred.o(i.__ieee754_rem_pio2) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
rred.o(i.__ieee754_rem_pio2) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
rred.o(i.__ieee754_rem_pio2) refers to dflt_noclz.o(x$fpl$dfltu) for __aeabi_ui2d
rred.o(i.__ieee754_rem_pio2) refers to scalbn.o(x$fpl$scalbn) for scalbn
rred.o(i.__ieee754_rem_pio2) refers to rred.o(.constdata) for .constdata
rred.o(i.__use_accurate_range_reduction) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
rred.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin_i.o(i.__kernel_sin) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin_i.o(i.__kernel_sin) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
sin_i.o(i.__kernel_sin) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
sin_i.o(i.__kernel_sin) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
sin_i.o(i.__kernel_sin) refers to poly.o(i.__kernel_poly) for __kernel_poly
sin_i.o(i.__kernel_sin) refers to scalbn.o(x$fpl$scalbn) for scalbn
sin_i.o(i.__kernel_sin) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
sin_i.o(i.__kernel_sin) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
sin_i.o(i.__kernel_sin) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
sin_i.o(i.__kernel_sin) refers to sin_i.o(.constdata) for .constdata
sin_i.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin_i_x.o(i.____kernel_sin$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sin_i_x.o(i.____kernel_sin$lsc) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
sin_i_x.o(i.____kernel_sin$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
sin_i_x.o(i.____kernel_sin$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
sin_i_x.o(i.____kernel_sin$lsc) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
sin_i_x.o(i.____kernel_sin$lsc) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
sin_i_x.o(i.____kernel_sin$lsc) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
sin_i_x.o(i.____kernel_sin$lsc) refers to sin_i_x.o(.constdata) for .constdata
sin_i_x.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan_i.o(i.__kernel_tan) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan_i.o(i.__kernel_tan) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
tan_i.o(i.__kernel_tan) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
tan_i.o(i.__kernel_tan) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
tan_i.o(i.__kernel_tan) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
tan_i.o(i.__kernel_tan) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
tan_i.o(i.__kernel_tan) refers to poly.o(i.__kernel_poly) for __kernel_poly
tan_i.o(i.__kernel_tan) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
tan_i.o(i.__kernel_tan) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
tan_i.o(i.__kernel_tan) refers to scalbn.o(x$fpl$scalbn) for scalbn
tan_i.o(i.__kernel_tan) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
tan_i.o(i.__kernel_tan) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
tan_i.o(i.__kernel_tan) refers to tan_i.o(.constdata) for .constdata
tan_i.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan_i_x.o(i.____kernel_tan$lsc) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
tan_i_x.o(i.____kernel_tan$lsc) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
tan_i_x.o(i.____kernel_tan$lsc) refers to daddsub_noclz.o(x$fpl$drsb) for __aeabi_drsub
tan_i_x.o(i.____kernel_tan$lsc) refers to daddsub_noclz.o(x$fpl$dsub) for __aeabi_dsub
tan_i_x.o(i.____kernel_tan$lsc) refers to daddsub_noclz.o(x$fpl$dadd) for __aeabi_dadd
tan_i_x.o(i.____kernel_tan$lsc) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
tan_i_x.o(i.____kernel_tan$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
tan_i_x.o(i.____kernel_tan$lsc) refers to dflt_noclz.o(x$fpl$dflt) for __aeabi_i2d
tan_i_x.o(i.____kernel_tan$lsc) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
tan_i_x.o(i.____kernel_tan$lsc) refers to scalbn.o(x$fpl$scalbn) for scalbn
tan_i_x.o(i.____kernel_tan$lsc) refers to tan_i_x.o(.constdata) for .constdata
tan_i_x.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
libspace.o(.text) refers to libspace.o(.bss) for __libspace_start
rtentry2.o(.ARM.Collect$$rtentry$$00000008) refers to boardinit2.o(.text) for _platform_post_stackheap_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000A) refers to libinit.o(.ARM.Collect$$libinit$$00000000) for __rt_lib_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000B) refers to boardinit3.o(.text) for _platform_post_lib_init
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to main.o(.text) for main
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000001) for .ARM.Collect$$rtentry$$00000001
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000002) for .ARM.Collect$$rtentry$$00000002
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000008) for .ARM.Collect$$rtentry$$00000008
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$00000009) for .ARM.Collect$$rtentry$$00000009
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for .ARM.Collect$$rtentry$$0000000A
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000B) for .ARM.Collect$$rtentry$$0000000B
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for .ARM.Collect$$rtentry$$0000000C
rtentry2.o(.ARM.exidx) refers to rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for .ARM.Collect$$rtentry$$0000000D
rtentry4.o(.ARM.Collect$$rtentry$$00000004) refers to sys_stackheap_outer.o(.text) for __user_setup_stackheap
rtentry4.o(.ARM.exidx) refers to rtentry4.o(.ARM.Collect$$rtentry$$00000004) for .ARM.Collect$$rtentry$$00000004
rt_div0.o(.text) refers to defsig_fpe_outer.o(.text) for __rt_SIGFPE
aeabi_ldiv0_sigfpe.o(.text) refers to rt_div0.o(.text) for __rt_div0
rt_heap_descriptor.o(.text) refers to rt_heap_descriptor.o(.bss) for __rt_heap_descriptor_data
rt_heap_descriptor_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
rt_errno_addr.o(.text) refers to rt_errno_addr.o(.bss) for __aeabi_errno_addr_data
rt_errno_addr_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
init_alloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
init_alloc.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000001) for __rt_lib_init_heap_2
init_alloc.o(.text) refers (Special) to maybetermalloc1.o(.emb_text) for _maybe_terminate_alloc
init_alloc.o(.text) refers to h1_extend.o(.text) for __Heap_ProvideMemory
init_alloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
init_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
init_alloc.o(.text) refers to h1_init.o(.text) for __Heap_Initialize
h1_init_mt.o(.text) refers to mutex_dummy.o(.text) for _mutex_initialize
_get_argv.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
_get_argv.o(.text) refers to h1_alloc.o(.text) for malloc
_get_argv.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
_get_argv.o(.text) refers to sys_command.o(.text) for _sys_command_string
libinit2.o(.ARM.Collect$$libinit$$00000001) refers (Weak) to init_alloc.o(.text) for _init_alloc
libinit2.o(.ARM.Collect$$libinit$$0000000C) refers to libinit2.o(.ARM.Collect$$libinit$$0000000B) for .ARM.Collect$$libinit$$0000000B
libinit2.o(.ARM.Collect$$libinit$$0000000E) refers to libinit2.o(.ARM.Collect$$libinit$$0000000B) for .ARM.Collect$$libinit$$0000000B
libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000B) for .ARM.Collect$$libinit$$0000000B
libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000B) for .ARM.Collect$$libinit$$0000000B
libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000B) for .ARM.Collect$$libinit$$0000000B
libinit2.o(.ARM.Collect$$libinit$$00000022) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
libinit2.o(.ARM.Collect$$libinit$$00000023) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
dcheck1.o(x$fpl$dcheck1) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dcheck1.o(x$fpl$dcheck1) refers to retnan.o(x$fpl$retnan) for __fpl_return_NaN
sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
sys_stackheap_outer.o(.text) refers to sam7.o(.text) for __user_initial_stackheap
maybetermalloc2.o(.emb_text) refers (Special) to term_alloc.o(.text) for _terminate_alloc
h1_extend.o(.text) refers to h1_free.o(.text) for free
h1_extend_mt.o(.text) refers to h1_free_mt.o(.text) for _free_internal
exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
defsig_fpe_outer.o(.text) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
defsig_fpe_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
defsig_fpe_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
defsig_rtmem_outer.o(.text) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
defsig_rtmem_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
defsig_rtmem_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
heapauxa.o(.text) refers to heapauxa.o(.data) for .data
argv_veneer.o(.emb_text) refers to no_argv.o(.text) for __ARM_get_argv
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002A) for __rt_lib_init_alloca_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000028) for __rt_lib_init_argv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_atexit_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_clock_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_cpp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_exceptions_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_fp_trap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_getenv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000006) for __rt_lib_init_heap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000D) for __rt_lib_init_lc_collate_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000F) for __rt_lib_init_lc_ctype_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_monetary_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_numeric_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_time_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_rand_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002F) for __rt_lib_init_return
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_signal_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_stdio_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000008) for __rt_lib_init_user_alloc_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers to fpinit.o(x$fpl$fpinit) for _fp_init
retnan.o(x$fpl$retnan) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
retnan.o(x$fpl$retnan) refers to trapv.o(x$fpl$trapveneer) for __fpl_cmpreturn
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
rtexit.o(.ARM.exidx) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for .ARM.Collect$$rtexit$$00000000
rt_raise.o(.text) refers to __raise.o(.text) for __raise
rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit
term_alloc.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000D) for __rt_lib_shutdown_heap_2
term_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
_get_argv_nomalloc.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
_get_argv_nomalloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
_get_argv_nomalloc.o(.text) refers to sys_command.o(.text) for _sys_command_string
fpinit.o(x$fpl$fpinit) refers to rt_fp_status_addr_intlibspace.o(.text) for __rt_fp_status_addr
trapv.o(x$fpl$trapveneer) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
rtexit2.o(.ARM.Collect$$rtexit$$00000003) refers to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown
rtexit2.o(.ARM.Collect$$rtexit$$00000004) refers to sys_exit.o(.text) for _sys_exit
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000001) for .ARM.Collect$$rtexit$$00000001
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for .ARM.Collect$$rtexit$$00000002
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for .ARM.Collect$$rtexit$$00000003
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004
rt_fp_status_addr.o(.text) refers to rt_fp_status_addr.o(.bss) for __rt_fp_status_addr_data
rt_fp_status_addr_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
__raise.o(.text) refers to __raise.o(i.__ARM_common_call_via_r2) for __ARM_common_call_via_r2
__raise.o(.text) refers to defsig.o(CL$$defsig) for __default_signal_handler
defsig_general.o(.text) refers to sys_wrch.o(.text) for _ttywrch
sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
defsig.o(CL$$defsig) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000006) for __rt_lib_shutdown_fp_trap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E) for __rt_lib_shutdown_heap_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) for __rt_lib_shutdown_return
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000009) for __rt_lib_shutdown_signal_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000003) for __rt_lib_shutdown_stdio_1
libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000B) for __rt_lib_shutdown_user_alloc_1
defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_stak_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_pvfn_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_cppl_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_segv_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig_other.o(.text) refers to defsig_general.o(.text) for __default_signal_display
test_cpp.o(i._ZN4math6VectorILj3EEC1Efff) refers to test_cpp.o(t._ZN4math10VectorBaseILj3EEC1Ev) for math::VectorBase<(unsigned)3>::VectorBase()
test_cpp.o(i._ZN4math6VectorILj3EEC1Efff) refers to test_cpp.o(.constdata__ZTVN4math6VectorILj3EEE) for vtable for math::Vector<(unsigned)3>
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZN4math6VectorILj3EEC1Efff) for i._ZN4math6VectorILj3EEC1Efff
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZN4math6VectorILj3EEaSERKS1_) for i._ZN4math6VectorILj3EEaSERKS1_
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS_6VectorILj3EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS_6VectorILj3EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS_6VectorILj3EEE) refers to test_cpp.o(i._ZN4math6VectorILj3EEC1Efff) for math::Vector<(unsigned)3>::Vector(float, float, float)
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS_6VectorILj3EEE) for i._ZNK4math6MatrixILj3ELj3EEmlERKNS_6VectorILj3EEE
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEaSERKS1_) for i._ZN4math6MatrixILj3ELj3EEaSERKS1_
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj3EE4zeroEv) for math::MatrixBase<(unsigned)3, (unsigned)3>::zero()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) for t._ZNK4math10MatrixBaseILj3ELj2EEmlILj3EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmiERKNS_6MatrixILj3ELj3EEE) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmiERKNS_6MatrixILj3ELj3EEE) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmiERKNS_6MatrixILj3ELj3EEE) for t._ZNK4math10MatrixBaseILj3ELj3EEmiERKNS_6MatrixILj3ELj3EEE
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKS1_) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::Matrix()
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKS1_) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKS1_) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKS1_) for i._ZNK4math6MatrixILj3ELj3EEmlERKS1_
test_cpp.o(t._ZN4math10MatrixBaseILj3ELj3EE8identityEv) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj3EE8identityEv) for t._ZN4math10MatrixBaseILj3ELj3EE8identityEv
test_cpp.o(t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE) refers to test_cpp.o(i._ZN4math6VectorILj2EEC1Ev) for math::Vector<(unsigned)2>::Vector()
test_cpp.o(t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE) refers to test_cpp.o(t._ZN4math10VectorBaseILj2EEclEj) for math::VectorBase<(unsigned)2>::operator ()(unsigned)
test_cpp.o(t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE) for t._ZNK4math6MatrixILj2ELj3EEmlERKNS_6VectorILj3EEE
test_cpp.o(t._ZNK4math10VectorBaseILj2EEmiERKNS_6VectorILj2EEE) refers to test_cpp.o(i._ZN4math6VectorILj2EEC1Ev) for math::Vector<(unsigned)2>::Vector()
test_cpp.o(t._ZNK4math10VectorBaseILj2EEmiERKNS_6VectorILj2EEE) refers to faddsub_noclz.o(x$fpl$fsub) for __aeabi_fsub
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10VectorBaseILj2EEmiERKNS_6VectorILj2EEE) for t._ZNK4math10VectorBaseILj2EEmiERKNS_6VectorILj2EEE
test_cpp.o(t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE) refers to test_cpp.o(i._ZN4math6VectorILj3EEC1Ev) for math::Vector<(unsigned)3>::Vector()
test_cpp.o(t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE) refers to test_cpp.o(t._ZN4math10VectorBaseILj3EEclEj) for math::VectorBase<(unsigned)3>::operator ()(unsigned)
test_cpp.o(t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE) for t._ZNK4math6MatrixILj3ELj2EEmlERKNS_6VectorILj2EEE
test_cpp.o(t._ZNK4math10VectorBaseILj3EEplERKNS_6VectorILj3EEE) refers to test_cpp.o(i._ZN4math6VectorILj3EEC1Ev) for math::Vector<(unsigned)3>::Vector()
test_cpp.o(t._ZNK4math10VectorBaseILj3EEplERKNS_6VectorILj3EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10VectorBaseILj3EEplERKNS_6VectorILj3EEE) for t._ZNK4math10VectorBaseILj3EEplERKNS_6VectorILj3EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EE10transposedEv) refers to test_cpp.o(t._ZN4math6MatrixILj3ELj2EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)2>::Matrix()
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EE10transposedEv) for t._ZNK4math10MatrixBaseILj2ELj3EE10transposedEv
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_) refers to test_cpp.o(t._ZN4math6MatrixILj3ELj2EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)2>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj2EE4zeroEv) for math::MatrixBase<(unsigned)3, (unsigned)2>::zero()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_) for t._ZNK4math10MatrixBaseILj3ELj3EEmlILj2EEENS_6MatrixILj3EXT_EEERKS4_
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to test_cpp.o(t._ZN4math6MatrixILj3ELj2EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)2>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj2EE4zeroEv) for math::MatrixBase<(unsigned)3, (unsigned)2>::zero()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE) for t._ZNK4math10MatrixBaseILj3ELj2EEmlILj2EEENS_6MatrixILj3EXT_EEERKNS3_ILj2EXT_EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to test_cpp.o(t._ZN4math6MatrixILj2ELj3EEC1Ev) for math::Matrix<(unsigned)2, (unsigned)3>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to test_cpp.o(t._ZN4math10MatrixBaseILj2ELj3EE4zeroEv) for math::MatrixBase<(unsigned)2, (unsigned)3>::zero()
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) for t._ZNK4math10MatrixBaseILj2ELj3EEmlILj3EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to test_cpp.o(t._ZN4math6MatrixILj2ELj2EEC1Ev) for math::Matrix<(unsigned)2, (unsigned)2>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to test_cpp.o(t._ZN4math10MatrixBaseILj2ELj2EE4zeroEv) for math::MatrixBase<(unsigned)2, (unsigned)2>::zero()
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE) for t._ZNK4math10MatrixBaseILj2ELj3EEmlILj2EEENS_6MatrixILj2EXT_EEERKNS3_ILj3EXT_EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj2EEplERKNS_6MatrixILj2ELj2EEE) refers to test_cpp.o(t._ZN4math6MatrixILj2ELj2EEC1Ev) for math::Matrix<(unsigned)2, (unsigned)2>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj2EEplERKNS_6MatrixILj2ELj2EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj2ELj2EEplERKNS_6MatrixILj2ELj2EEE) for t._ZNK4math10MatrixBaseILj2ELj2EEplERKNS_6MatrixILj2ELj2EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj1ELj3EE10transposedEv) refers to test_cpp.o(t._ZN4math6MatrixILj3ELj1EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)1>::Matrix()
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj1ELj3EE10transposedEv) for t._ZNK4math10MatrixBaseILj1ELj3EE10transposedEv
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE) refers to test_cpp.o(t._ZN4math6MatrixILj3ELj1EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)1>::Matrix()
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE) refers to test_cpp.o(t._ZN4math10MatrixBaseILj3ELj1EEclEjj) for math::MatrixBase<(unsigned)3, (unsigned)1>::operator ()(unsigned, unsigned)
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE) for i._ZNK4math6MatrixILj3ELj3EEmlERKNS0_ILj3ELj1EEE
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EE10transposedEv) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::Matrix()
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EE10transposedEv) for t._ZNK4math10MatrixBaseILj3ELj3EE10transposedEv
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEplERKNS_6MatrixILj3ELj3EEE) refers to test_cpp.o(i._ZN4math6MatrixILj3ELj3EEC1Ev) for math::Matrix<(unsigned)3, (unsigned)3>::Matrix()
test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEplERKNS_6MatrixILj3ELj3EEE) refers to faddsub_noclz.o(x$fpl$fadd) for __aeabi_fadd
test_cpp.o(.ARM.exidx) refers to test_cpp.o(t._ZNK4math10MatrixBaseILj3ELj3EEplERKNS_6MatrixILj3ELj3EEE) for t._ZNK4math10MatrixBaseILj3ELj3EEplERKNS_6MatrixILj3ELj3EEE
test_cpp.o(.ARM.exidx) refers to test_cpp.o(i._ZN4math6VectorILj3EED1Ev) for i._ZN4math6VectorILj3EED1Ev