forked from lcatro/Small-System
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmall_system.map
2955 lines (2890 loc) · 261 KB
/
small_system.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, 5.03 [Build 76] [MDK-ARM Standard]
==============================================================================
Section Cross References
startup_stm32f10x_hd.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f10x_hd.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f10x_hd.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(.text) for Reset_Handler
startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(.text) for NMI_Handler
startup_stm32f10x_hd.o(RESET) refers to rtc_device_api.o(.text) for RTC_IRQHandler
startup_stm32f10x_hd.o(RESET) refers to uart_api.o(.text) for USART1_IRQHandler
startup_stm32f10x_hd.o(RESET) refers to sdio_sdcard.o(.text) for SDIO_IRQHandler
startup_stm32f10x_hd.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
startup_stm32f10x_hd.o(.text) refers to system_stm32f10x.o(.text) for SystemInit
startup_stm32f10x_hd.o(.text) refers to __main.o(!!!main) for __main
startup_stm32f10x_hd.o(.text) refers to startup_stm32f10x_hd.o(HEAP) for Heap_Mem
startup_stm32f10x_hd.o(.text) refers to startup_stm32f10x_hd.o(STACK) for Stack_Mem
stm32f10x_gpio.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphResetCmd
stm32f10x_rcc.o(.text) refers to stm32f10x_rcc.o(.data) for APBAHBPrescTable
stm32f10x_spi.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphResetCmd
stm32f10x_usart.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphResetCmd
stm32f10x_bkp.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_BackupResetCmd
stm32f10x_pwr.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB1PeriphResetCmd
stm32f10x_it.o(.text) refers to kernel_ui_api.o(.text) for kernel_err_report
stm32f10x_it.o(.text) refers to time_api.o(.text) for time_exit
stm32f10x_it.o(.text) refers to stm32f10x_it.o(.constdata) for .constdata
system_stm32f10x.o(.text) refers to system_stm32f10x.o(.data) for SystemCoreClock
system_main.o(.text) refers to delay.o(.text) for delay_init
system_main.o(.text) refers to led_api.o(.text) for led_init
system_main.o(.text) refers to beep_api.o(.text) for beep_init
system_main.o(.text) refers to key_api.o(.text) for key_init
system_main.o(.text) refers to uart_api.o(.text) for uart_init
system_main.o(.text) refers to lcd_api.o(.text) for lcd_init
system_main.o(.text) refers to sram_api.o(.text) for sram_init
system_main.o(.text) refers to time_api.o(.text) for time_init
system_main.o(.text) refers to flash_inside_api.o(.text) for flash_inside_init
system_main.o(.text) refers to flash_outside_api.o(.text) for flash_outside_init
system_main.o(.text) refers to kernel_main.o(.text) for kernel_main
system_interrupt.o(.text) refers to led_api.o(.text) for led_work_on
system_interrupt.o(.text) refers to kernel_notice.o(.text) for hardware_notice
power_api.o(.text) refers to power_api.o(.data) for power_stat
led_api.o(.text) refers to stm32f10x_gpio.o(.text) for GPIO_ResetBits
led_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphClockCmd
beep_api.o(.text) refers to stm32f10x_gpio.o(.text) for GPIO_SetBits
beep_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphClockCmd
key_api.o(.text) refers to stm32f10x_gpio.o(.text) for GPIO_ReadInputDataBit
key_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphClockCmd
sram_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphClockCmd
sram_api.o(.text) refers to stm32f10x_gpio.o(.text) for GPIO_Init
sram_api.o(.text) refers to stm32f10x_fsmc.o(.text) for FSMC_NORSRAMInit
sram_api.o(.text) refers to sram_api.o(.bss) for sram_hardware_information
flash_inside_api.o(.text) refers to stm32f10x_flash.o(.text) for FLASH_Unlock
flash_outside_api.o(.text) refers to flash_device_api.o(.text) for SPI_Flash_Init
flash_device_api.o(.text) refers to flash_device_api.o(.data) for SPI_FLASH_TYPE
flash_device_api.o(.text) refers to flash_device_api.o(.bss) for SPI_FLASH_BUFFER
flash_device_api.o(.text) refers to delay.o(.text) for delay_us
sdio_sdcard.o(.text) refers to sdio_sdcard.o(.data) for DeviceMode
sdio_sdcard.o(.text) refers to sdio_sdcard.o(.bss) for CSD_Tab
sdio_sdcard.o(.text) refers to sys.o(.text) for NVIC_Init_
sdio_sdcard.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
sdio_sdcard.o(.text) refers to llsdiv.o(.text) for __aeabi_ldivmod
uart_api.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
uart_api.o(.text) refers to _printf_s.o(.ARM.Collect$$_printf_percent$$00000014) for _printf_s
uart_api.o(.text) refers to _printf_str.o(.text) for _printf_str
uart_api.o(.text) refers to stm32f10x_usart.o(.text) for USART_ITConfig
uart_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB2PeriphClockCmd
uart_api.o(.text) refers to stm32f10x_gpio.o(.text) for GPIO_Init
uart_api.o(.text) refers to misc.o(.text) for NVIC_Init
uart_api.o(.text) refers to strlen.o(.text) for strlen
uart_api.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
uart_api.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
uart_api.o(.text) refers to delay.o(.text) for delay_us
uart_api.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
uart_api.o(.text) refers to noretval__2sprintf.o(.text) for __2sprintf
uart_api.o(.text) refers to kernel_notice.o(.text) for hardware_notice
uart_api.o(.text) refers to uart_api.o(.bss) for uart_recv_buffer
uart_api.o(.text) refers to uart_api.o(.data) for uart_recv_buffer_length
lcd_api.o(.text) refers to lcd_device_api.o(.text) for LCD_Display_Dir
lcd_api.o(.text) refers to lcd_device_touch.o(.text) for TP_Init
lcd_api.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
lcd_api.o(.text) refers to strlen.o(.text) for strlen
lcd_api.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
lcd_api.o(.text) refers to aeabi_memset.o(.text) for __aeabi_memset
lcd_api.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
lcd_api.o(.text) refers to lcd_device_touch.o(.data) for tp_dev
lcd_api.o(.text) refers to lcd_api.o(.data) for lcd_diplay_state
lcd_api.o(.text) refers to lcd_device_api.o(.data) for POINT_COLOR
lcd_device_api.o(.text) refers to delay.o(.text) for delay_us
lcd_device_api.o(.text) refers to lcd_device_api.o(.bss) for lcddev
lcd_device_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_AHBPeriphClockCmd
lcd_device_api.o(.text) refers to stm32f10x_gpio.o(.text) for GPIO_Init
lcd_device_api.o(.text) refers to stm32f10x_fsmc.o(.text) for FSMC_NORSRAMInit
lcd_device_api.o(.text) refers to lcd_device_api.o(.data) for POINT_COLOR
lcd_device_api.o(.text) refers to lcd_device_api.o(.constdata) for asc2_1206
lcd_device_touch.o(.text) refers to delay.o(.text) for delay_us
lcd_device_touch.o(.text) refers to lcd_device_api.o(.text) for LCD_DrawLine
lcd_device_touch.o(.text) refers to fflt_clz.o(x$fpl$fflt) for __aeabi_i2f
lcd_device_touch.o(.text) refers to fflt_clz.o(x$fpl$ffltu) for __aeabi_ui2f
lcd_device_touch.o(.text) refers to fmul.o(x$fpl$fmul) for __aeabi_fmul
lcd_device_touch.o(.text) refers to faddsub_clz.o(x$fpl$fadd) for __aeabi_fadd
lcd_device_touch.o(.text) refers to ffixu.o(x$fpl$ffixu) for __aeabi_f2uiz
lcd_device_touch.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
lcd_device_touch.o(.text) refers to 24cxx.o(.text) for AT24CXX_WriteLenByte
lcd_device_touch.o(.text) refers to lcd_device_touch.o(.data) for CMD_RDX
lcd_device_touch.o(.text) refers to lcd_device_api.o(.data) for POINT_COLOR
lcd_device_touch.o(.text) refers to fdiv.o(x$fpl$fdiv) for __aeabi_fdiv
lcd_device_touch.o(.text) refers to dflt_clz.o(x$fpl$dfltu) for __aeabi_ui2d
lcd_device_touch.o(.text) refers to sqrt.o(i.sqrt) for sqrt
lcd_device_touch.o(.text) refers to dfixu.o(x$fpl$dfixu) for __aeabi_d2uiz
lcd_device_touch.o(.text) refers to lcd_device_api.o(.bss) for lcddev
lcd_device_touch.o(.text) refers to f2d.o(x$fpl$f2d) for __aeabi_f2d
lcd_device_touch.o(.text) refers to dleqf.o(x$fpl$dleqf) for __aeabi_cdcmple
lcd_device_touch.o(.text) refers to drleqf.o(x$fpl$drleqf) for __aeabi_cdrcmple
lcd_device_touch.o(.text) refers to faddsub_clz.o(x$fpl$fsub) for __aeabi_fsub
lcd_device_touch.o(.text) refers to iic.o(.text) for IIC_Init
lcd_device_touch.o(.data) refers to lcd_device_touch.o(.text) for TP_Init
lcd_device_touch.o(.data) refers to lcd_device_touch.o(.conststring) for .conststring
time_api.o(.text) refers to rtc_device_api.o(.text) for RTC_Exit
time_api.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
time_api.o(.text) refers to time_api.o(.bss) for time_alarm
time_api.o(.text) refers to rtc_device_api.o(.bss) for calendar
rtc_device_api.o(.text) refers to _printf_pad.o(.text) for _printf_pre_padding
rtc_device_api.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
rtc_device_api.o(.text) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d
rtc_device_api.o(.text) refers to _printf_dec.o(.text) for _printf_int_dec
rtc_device_api.o(.text) refers to lcd_api.o(.text) for lcd_on
rtc_device_api.o(.text) refers to misc.o(.text) for NVIC_Init
rtc_device_api.o(.text) refers to stm32f10x_rtc.o(.text) for RTC_ITConfig
rtc_device_api.o(.text) refers to stm32f10x_rcc.o(.text) for RCC_APB1PeriphClockCmd
rtc_device_api.o(.text) refers to stm32f10x_pwr.o(.text) for PWR_BackupAccessCmd
rtc_device_api.o(.text) refers to stm32f10x_bkp.o(.text) for BKP_ReadBackupRegister
rtc_device_api.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
rtc_device_api.o(.text) refers to time_api.o(.text) for time_get
rtc_device_api.o(.text) refers to noretval__2sprintf.o(.text) for __2sprintf
rtc_device_api.o(.text) refers to system_desktop_ui.o(.text) for system_desktop_title
rtc_device_api.o(.text) refers to rtc_device_api.o(.data) for wait_time
rtc_device_api.o(.text) refers to rtc_device_api.o(.constdata) for table_week
rtc_device_api.o(.text) refers to rtc_device_api.o(.bss) for calendar
delay.o(.text) refers to misc.o(.text) for SysTick_CLKSourceConfig
delay.o(.text) refers to system_stm32f10x.o(.data) for SystemCoreClock
delay.o(.text) refers to delay.o(.data) for fac_us
sys.o(.text) refers to misc.o(.text) for NVIC_PriorityGroupConfig
24cxx.o(.text) refers to iic.o(.text) for IIC_Start
24cxx.o(.text) refers to delay.o(.text) for delay_ms
iic.o(.text) refers to delay.o(.text) for delay_us
kernel_notice.o(.text) refers to graphics_window.o(.text) for get_window_front
kernel_notice.o(.text) refers to kernel_expand_gsm.o(.text) for gsm_notice
kernel_notice.o(.text) refers to kernel_notice.o(.bss) for kernel_notice_data
kernel_ui_api.o(.text) refers to graphics_window.o(.text) for create_window
kernel_ui_api.o(.text) refers to lcd_api.o(.text) for lcd_calcu_middle_location
kernel_ui_api.o(.text) refers to graphics_bitmap.o(.text) for graphics_get_bitmap
kernel_ui_api.o(.text) refers to graphics_widget.o(.text) for create_widget
kernel_ui_api.o(.text) refers to strlen.o(.text) for strlen
kernel_ui_api.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
kernel_ui_api.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
kernel_ui_api.o(.text) refers to kernel_ui_api.o(.data) for kernel_load_window
kernel_ui_api.o(.text) refers to kernel_ui_api.o(.constdata) for kernel_logo
kernel_main.o(.text) refers to graphics_window.o(.text) for graphics_init
kernel_main.o(.text) refers to malloc.o(.text) for mem_init
kernel_main.o(.text) refers to kernel_ui_api.o(.text) for kernel_load_enter
kernel_main.o(.text) refers to delay.o(.text) for delay_ms
kernel_main.o(.text) refers to kernel_notice.o(.text) for kernel_notice_init
kernel_main.o(.text) refers to kernel_expand_gsm.o(.text) for gsm_init
kernel_main.o(.text) refers to file_operate.o(.text) for file_system_init
kernel_main.o(.text) refers to system_desktop.o(.text) for system_desktop_init
kernel_main.o(.text) refers to thread_main.o(.text) for thread_main
kernel_main.o(.text) refers to key_api.o(.text) for key_stat
kernel_main.o(.text) refers to kernel_main.o(.constdata) for .constdata
thread_main.o(.text) refers to power_api.o(.text) for power_shutdown
thread_main.o(.text) refers to led_api.o(.text) for led_work_on
thread_main.o(.text) refers to lcd_api.o(.text) for lcd_display_state
thread_main.o(.text) refers to key_api.o(.text) for key_stat
thread_main.o(.text) refers to rtc_device_api.o(.text) for reset_wait_time
thread_main.o(.text) refers to graphics_window.o(.text) for get_window_front
thread_main.o(.text) refers to delay.o(.text) for delay_ms
thread_main.o(.text) refers to kernel_notice.o(.text) for hardware_notice
thread_main.o(.text) refers to thread_main.o(.data) for kernel_power
malloc.o(.text) refers to malloc.o(.constdata) for memtblsize
malloc.o(.text) refers to malloc.o(.data) for mallco_dev
malloc.o(.data) refers to malloc.o(.text) for mem_init
malloc.o(.data) refers to malloc.o(.bss) for mem1base
malloc.o(.data) refers to malloc.o(.ARM.__AT_0x68000000) for mem2base
malloc.o(.data) refers to malloc.o(.ARM.__AT_0x68032000) for mem2mapbase
file_operate.o(.text) refers to exfuns.o(.text) for exfuns_init
file_operate.o(.text) refers to ff.o(.text) for f_mount
file_operate.o(.text) refers to h1_alloc.o(.text) for malloc
file_operate.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
file_operate.o(.text) refers to exfuns.o(.data) for fs
ff.o(.text) refers to diskio.o(.text) for disk_write
ff.o(.text) refers to cc936.o(.text) for ff_wtoupper
ff.o(.text) refers to ff.o(.constdata) for LfnOfs
ff.o(.text) refers to ff.o(.data) for FatFs
diskio.o(.text) refers to sdio_sdcard.o(.text) for SD_Init
diskio.o(.text) refers to malloc.o(.text) for mymalloc
cc936.o(.text) refers to cc936.o(.constdata) for oem2uni
fattester.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
fattester.o(.text) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d
fattester.o(.text) refers to _printf_dec.o(.text) for _printf_int_dec
fattester.o(.text) refers to _printf_c.o(.ARM.Collect$$_printf_percent$$00000013) for _printf_c
fattester.o(.text) refers to _printf_str.o(.text) for _printf_str
fattester.o(.text) refers to _printf_s.o(.ARM.Collect$$_printf_percent$$00000014) for _printf_s
fattester.o(.text) refers to ff.o(.text) for f_mount
fattester.o(.text) refers to noretval__2printf.o(.text) for __2printf
fattester.o(.text) refers to malloc.o(.text) for mymalloc
fattester.o(.text) refers to exfuns.o(.data) for fs
fattester.o(.text) refers to exfuns.o(.bss) for dir
exfuns.o(.text) refers to malloc.o(.text) for mymalloc
exfuns.o(.text) refers to strcpy.o(.text) for strcpy
exfuns.o(.text) refers to strcmpv7m.o(.text) for strcmp
exfuns.o(.text) refers to ff.o(.text) for f_getfree
exfuns.o(.text) refers to exfuns.o(.data) for fs
exfuns.o(.data) refers to exfuns.o(.conststring) for .conststring
graphics_background.o(.text) refers to lcd_api.o(.text) for lcd_draw_point
graphics_bitmap.o(.text) refers to lcd_api.o(.text) for lcd_draw_point
graphics_bitmap.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
graphics_bitmap.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
graphics_font.o(.text) refers to lcd_api.o(.text) for lcd_display_state
graphics_font.o(.text) refers to lcd_device_api.o(.text) for LCD_ShowChar
graphics_font.o(.text) refers to strlen.o(.text) for strlen
graphics_font.o(.text) refers to lcd_device_api.o(.data) for POINT_COLOR
graphics_widget.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
graphics_widget.o(.text) refers to malloc.o(.text) for mymalloc
graphics_widget.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
graphics_widget.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
graphics_widget.o(.text) refers to graphics_window.o(.text) for refresh_window
graphics_widget.o(.text) refers to lcd_api.o(.text) for lcd_draw_rectangle
graphics_widget.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
graphics_widget.o(.text) refers to graphics_font.o(.text) for graphics_draw_font_string
graphics_widget.o(.text) refers to strlen.o(.text) for strlen
graphics_widget.o(.text) refers to graphics_window.o(.bss) for window_list
graphics_widget.o(.text) refers to dflt_clz.o(x$fpl$dfltu) for __aeabi_ui2d
graphics_widget.o(.text) refers to dmul.o(x$fpl$dmul) for __aeabi_dmul
graphics_widget.o(.text) refers to ddiv.o(x$fpl$ddiv) for __aeabi_ddiv
graphics_widget.o(.text) refers to daddsub_clz.o(x$fpl$dadd) for __aeabi_dadd
graphics_widget.o(.text) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
graphics_widget.o(.text) refers to graphics_bitmap.o(.text) for graphics_draw_bitmap
graphics_window.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
graphics_window.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
graphics_window.o(.text) refers to lcd_api.o(.text) for lcd_draw_rectangle
graphics_window.o(.text) refers to graphics_font.o(.text) for graphics_draw_font_string
graphics_window.o(.text) refers to graphics_window.o(.bss) for window_list
graphics_window.o(.text) refers to graphics_widget.o(.text) for draw_widget
graphics_window.o(.text) refers to strlen.o(.text) for strlen
graphics_window.o(.text) refers to graphics_window.o(.data) for window_front
graphics_window.o(.text) refers to graphics_background.o(.text) for graphics_draw_background
graphics_window.o(.text) refers to delay.o(.text) for delay_ms
graphics_window.o(.text) refers to graphics_window.o(.constdata) for messagebox_warning_flag
graphics_window.o(.text) refers to kernel_ui_api.o(.constdata) for kernel_logo
kernel_expand_gsm.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
kernel_expand_gsm.o(.text) refers to _printf_s.o(.ARM.Collect$$_printf_percent$$00000014) for _printf_s
kernel_expand_gsm.o(.text) refers to _printf_str.o(.text) for _printf_str
kernel_expand_gsm.o(.text) refers to uart_api.o(.text) for uart_send
kernel_expand_gsm.o(.text) refers to strcmpv7m.o(.text) for strcmp
kernel_expand_gsm.o(.text) refers to telephone_ui.o(.text) for telephone_dial_init
kernel_expand_gsm.o(.text) refers to strlen.o(.text) for strlen
kernel_expand_gsm.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
kernel_expand_gsm.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
kernel_expand_gsm.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
kernel_expand_gsm.o(.text) refers to noretval__2sprintf.o(.text) for __2sprintf
kernel_expand_gsm.o(.text) refers to kernel_expand_gsm.o(.bss) for ring_number_buffer
system_desktop.o(.text) refers to graphics_window.o(.text) for create_window
system_desktop.o(.text) refers to system_desktop_ui.o(.text) for system_desktop_ui_init
system_desktop.o(.text) refers to kernel_ui_api.o(.text) for kernel_err_report
system_desktop.o(.text) refers to system_desktop.o(.data) for desktop_handle
system_desktop_ui.o(.text) refers to graphics_window.o(.text) for set_window_title
system_desktop_ui.o(.text) refers to telephone_ui.o(.text) for telephone_init
system_desktop_ui.o(.text) refers to alarm_ui.o(.text) for alarm_init
system_desktop_ui.o(.text) refers to system_desktop_application_execute.o(.text) for system_desktop_application_execute_init
system_desktop_ui.o(.text) refers to graphics_widget.o(.text) for set_picture_bitmap
system_desktop_ui.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
system_desktop_ui.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
system_desktop_ui.o(.text) refers to file_operate.o(.text) for folder_enum_count
system_desktop_ui.o(.text) refers to strlen.o(.text) for strlen
system_desktop_ui.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
system_desktop_ui.o(.text) refers to malloc.o(.text) for mymalloc
system_desktop_ui.o(.text) refers to graphics_bitmap.o(.text) for graphics_get_bitmap
system_desktop_ui.o(.text) refers to system_desktop_ui.o(.data) for system_desktop_handle
system_desktop_ui.o(.text) refers to system_desktop_ui.o(.bss) for app_list
system_desktop_ui.o(.text) refers to system_desktop_ui.o(.constdata) for telephone_icon
system_desktop_ui.o(.text) refers to system_desktop.o(.text) for system_desktop_init
system_desktop_application_execute.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
system_desktop_application_execute.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
system_desktop_application_execute.o(.text) refers to strcat.o(.text) for strcat
system_desktop_application_execute.o(.text) refers to file_operate.o(.text) for file_open
system_desktop_application_execute.o(.text) refers to script_hoster.o(.text) for load_script
script_hoster.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
script_hoster.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
script_hoster.o(.text) refers to strcmpv7m.o(.text) for strcmp
script_hoster.o(.text) refers to script_syntax.o(.text) for check_syntax_line
script_hoster.o(.text) refers to strlen.o(.text) for strlen
script_hoster.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
script_hoster.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
script_hoster.o(.text) refers to script_resolve.o(.text) for is_valid_variables_name
script_hoster.o(.text) refers to script_hoster.o(.data) for script_line
script_hoster.o(.text) refers to script_hoster.o(.bss) for globel_variables_table
script_hoster.o(.text) refers to feqf.o(x$fpl$feqf) for __aeabi_cfcmpeq
script_hoster.o(.text) refers to frleqf.o(x$fpl$frleqf) for __aeabi_cfrcmple
script_hoster.o(.text) refers to fleqf.o(x$fpl$fleqf) for __aeabi_cfcmple
script_hoster.o(.text) refers to ffix.o(x$fpl$ffix) for __aeabi_f2iz
script_hoster.o(.text) refers to h1_alloc.o(.text) for malloc
script_hoster.o(.text) refers to h1_free.o(.text) for free
script_hoster.o(.text) refers to fflt_clz.o(x$fpl$fflt) for __aeabi_i2f
script_hoster.o(.text) refers to graphics_window.o(.text) for messagebox
script_hoster.o(.text) refers to file_operate.o(.text) for file_open
script_resolve.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
script_resolve.o(.text) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d
script_resolve.o(.text) refers to _printf_dec.o(.text) for _printf_int_dec
script_resolve.o(.text) refers to strlen.o(.text) for strlen
script_resolve.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
script_resolve.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
script_resolve.o(.text) refers to noretval__2sprintf.o(.text) for __2sprintf
script_resolve.o(.text) refers to dflt_clz.o(x$fpl$dflt) for __aeabi_i2d
script_resolve.o(.text) refers to pow.o(i.pow) for pow
script_resolve.o(.text) refers to dfix.o(x$fpl$dfix) for __aeabi_d2iz
script_resolve.o(.text) refers to fflt_clz.o(x$fpl$fflt) for __aeabi_i2f
script_syntax.o(.text) refers to script_resolve.o(.text) for string_change_low
script_syntax.o(.text) refers to strcmpv7m.o(.text) for strcmp
script_syntax.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
script_syntax.o(.text) refers to strlen.o(.text) for strlen
script_syntax.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
script_syntax.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
telephone_ui.o(.text) refers to strlen.o(.text) for strlen
telephone_ui.o(.text) refers to strcat.o(.text) for strcat
telephone_ui.o(.text) refers to graphics_widget.o(.text) for set_label_caption
telephone_ui.o(.text) refers to kernel_expand_gsm.o(.text) for gsm_handup
telephone_ui.o(.text) refers to graphics_window.o(.text) for close_window
telephone_ui.o(.text) refers to beep_api.o(.text) for beep_off
telephone_ui.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr
telephone_ui.o(.text) refers to telephone_ui.o(.bss) for call_phone_number_buffer
telephone_ui.o(.text) refers to telephone_ui.o(.data) for phone_number_laben_handle
alarm_ui.o(.text) refers to _printf_pad.o(.text) for _printf_pre_padding
alarm_ui.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
alarm_ui.o(.text) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d
alarm_ui.o(.text) refers to _printf_dec.o(.text) for _printf_int_dec
alarm_ui.o(.text) refers to noretval__2sprintf.o(.text) for __2sprintf
alarm_ui.o(.text) refers to graphics_widget.o(.text) for set_label_caption
alarm_ui.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
alarm_ui.o(.text) refers to graphics_window.o(.text) for close_window
alarm_ui.o(.text) refers to beep_api.o(.text) for beep_off
alarm_ui.o(.text) refers to time_api.o(.text) for time_alarm_add
alarm_ui.o(.text) refers to alarm_ui.o(.data) for alarm_select_list_line
alarm_ui.o(.text) refers to alarm_ui.o(.bss) for alarm_list
alarm_ui.o(.text) refers to aeabi_memset.o(.text) for __aeabi_memset
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
malloc.o(.text) refers to heapstubs.o(.text) for __Heap_Alloc
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
free.o(.text) refers to heapstubs.o(.text) for __Heap_Free
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(.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_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 fdtree.o(i._FDTree_Insert) for _FDTree_Insert
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 rt_memcpy_w.o(.text) for __aeabi_memcpy4
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_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 fdtree.o(i._FDTree_Insert) for _FDTree_Insert
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 rt_memcpy_w.o(.text) for __aeabi_memcpy4
llsdiv.o(.text) refers to lludivv7m.o(.text) for __aeabi_uldivmod
__2printf.o(.text) refers to _printf_char_file.o(.text) for _printf_char_file
__2printf.o(.text) refers to stdio_streams.o(.bss) for __stdout
__2sprintf.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
__2sprintf.o(.text) refers to _sputc.o(.text) for _sputc
noretval__2printf.o(.text) refers to _printf_char_file.o(.text) for _printf_char_file
noretval__2printf.o(.text) refers to stdio_streams.o(.bss) for __stdout
noretval__2sprintf.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
noretval__2sprintf.o(.text) refers to _sputc.o(.text) for _sputc
__printf.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
_printf_str.o(.text) refers (Special) to _printf_char.o(.text) for _printf_cs_common
_printf_str.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
_printf_str.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_post_padding
_printf_dec.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
__printf_flags.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags.o(.text) refers to __printf_flags.o(.constdata) for .constdata
__printf_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss.o(.text) refers to __printf_flags_ss.o(.constdata) for .constdata
__printf_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_flags_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_wp.o(.text) refers to __printf_flags_wp.o(.constdata) for .constdata
__printf_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
__printf_flags_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
__printf_flags_ss_wp.o(.text) refers to __printf_flags_ss_wp.o(.constdata) for .constdata
_printf_c.o(.ARM.Collect$$_printf_percent$$00000013) refers (Weak) to _printf_char.o(.text) for _printf_char
_printf_s.o(.ARM.Collect$$_printf_percent$$00000014) refers (Weak) to _printf_char.o(.text) for _printf_string
_printf_d.o(.ARM.Collect$$_printf_percent$$00000009) refers (Weak) to _printf_dec.o(.text) for _printf_int_dec
_printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) refers (Special) to _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017) for _printf_percent_end
rt_memcpy_v6.o(.text) refers to rt_memcpy_w.o(.text) for __aeabi_memcpy4
aeabi_memset.o(.text) refers to rt_memclr.o(.text) for _memset
rt_memclr.o(.text) refers to rt_memclr_w.o(.text) for _memset_w
__main.o(!!!main) refers to rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
daddsub_clz.o(x$fpl$dadd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
daddsub_clz.o(x$fpl$dadd) refers to daddsub_clz.o(x$fpl$dsub) for _dsub1
daddsub_clz.o(x$fpl$dadd) refers to dretinf.o(x$fpl$dretinf) for __fpl_dretinf
daddsub_clz.o(x$fpl$dadd) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
daddsub_clz.o(x$fpl$drsb) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
daddsub_clz.o(x$fpl$drsb) refers to daddsub_clz.o(x$fpl$dadd) for _dadd1
daddsub_clz.o(x$fpl$drsb) refers to daddsub_clz.o(x$fpl$dsub) for _dsub1
daddsub_clz.o(x$fpl$dsub) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
daddsub_clz.o(x$fpl$dsub) refers to daddsub_clz.o(x$fpl$dadd) for _dadd1
daddsub_clz.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
dfixu.o(x$fpl$dfixu) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dfixu.o(x$fpl$dfixu) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
dfixu.o(x$fpl$dfixur) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dfixu.o(x$fpl$dfixur) refers to dnaninf.o(x$fpl$dnaninf) for __fpl_dnaninf
dflt_clz.o(x$fpl$dfltu) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dflt_clz.o(x$fpl$dflt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
dflt_clz.o(x$fpl$dfltn) 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_clz.o(x$fpl$fadd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
faddsub_clz.o(x$fpl$fadd) refers to faddsub_clz.o(x$fpl$fsub) for _fsub1
faddsub_clz.o(x$fpl$fadd) refers to fretinf.o(x$fpl$fretinf) for __fpl_fretinf
faddsub_clz.o(x$fpl$fadd) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
faddsub_clz.o(x$fpl$frsb) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
faddsub_clz.o(x$fpl$frsb) refers to faddsub_clz.o(x$fpl$fadd) for _fadd1
faddsub_clz.o(x$fpl$frsb) refers to faddsub_clz.o(x$fpl$fsub) for _fsub1
faddsub_clz.o(x$fpl$fsub) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
faddsub_clz.o(x$fpl$fsub) refers to faddsub_clz.o(x$fpl$fadd) for _fadd1
faddsub_clz.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
ffixu.o(x$fpl$ffixu) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
ffixu.o(x$fpl$ffixu) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
ffixu.o(x$fpl$ffixur) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
ffixu.o(x$fpl$ffixur) refers to fnaninf.o(x$fpl$fnaninf) for __fpl_fnaninf
fflt_clz.o(x$fpl$ffltu) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fflt_clz.o(x$fpl$fflt) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
fflt_clz.o(x$fpl$ffltn) 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
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_clz.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 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 scalbn.o(x$fpl$scalbn) for __ARM_scalbn
pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
pow.o(i.pow) refers to daddsub_clz.o(x$fpl$dsub) for __aeabi_dsub
pow.o(i.pow) refers to daddsub_clz.o(x$fpl$drsb) for __aeabi_drsub
pow.o(i.pow) refers to qnan.o(.constdata) for __mathlib_zero
pow.o(i.pow) refers to poly.o(i.__kernel_poly) for __kernel_poly
pow.o(i.pow) refers to dflt_clz.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 pow.o(.constdata) for .constdata
pow.o(i.pow) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
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_clz.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_clz.o(x$fpl$dflt) for __aeabi_i2d
pow_x.o(i.__pow$lsc) refers to daddsub_clz.o(x$fpl$dsub) for __aeabi_dsub
pow_x.o(i.__pow$lsc) refers to scalbn.o(x$fpl$scalbn) for __ARM_scalbn
pow_x.o(i.__pow$lsc) refers to daddsub_clz.o(x$fpl$drsb) for __aeabi_drsub
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(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(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
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
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
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
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$$00000003) 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
_rserrno.o(.text) refers to rt_errno_addr_intlibspace.o(.text) for __aeabi_errno_addr
_printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
_printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
_printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_post_padding
_printf_char_common.o(.text) refers to __printf_flags_ss_wp.o(.text) for __printf
_printf_char.o(.text) refers (Weak) to _printf_str.o(.text) for _printf_str
_printf_char_file.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
_printf_char_file.o(.text) refers to ferror.o(.text) for ferror
_printf_char_file.o(.text) refers to fputc.o(i.fputc) for fputc
stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
_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$$00000003) refers (Weak) to init_alloc.o(.text) for _init_alloc
libinit2.o(.ARM.Collect$$libinit$$0000000E) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$0000000D) for .ARM.Collect$$libinit$$0000000D
libinit2.o(.ARM.Collect$$libinit$$00000022) refers (Weak) to initio.o(.text) for _initio
libinit2.o(.ARM.Collect$$libinit$$00000024) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
libinit2.o(.ARM.Collect$$libinit$$00000025) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer
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$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
dunder.o(i.__mathlib_dbl_underflow) refers to scalbn.o(x$fpl$scalbn) for __ARM_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_clz.o(x$fpl$dadd) for __aeabi_dadd
qnan.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_command.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
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 system_main.o(.text) for main
rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit
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$$00000008) for .ARM.Collect$$rtentry$$00000008
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$$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
aeabi_ldiv0_sigfpe.o(.text) refers to rt_div0.o(.text) for __rt_div0
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
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
fputc.o(i.fputc) refers to flsbuf.o(.text) for __flsbuf_byte
initio.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000022) for __rt_lib_init_stdio_2
initio.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) for __rt_lib_shutdown_stdio_2
initio.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
initio.o(.text) refers to fopen.o(.text) for freopen
initio.o(.text) refers to defsig_rtred_outer.o(.text) for __rt_SIGRTRED
initio.o(.text) refers to setvbuf.o(.text) for setvbuf
initio.o(.text) refers to fclose.o(.text) for _fclose_internal
initio.o(.text) refers to h1_free.o(.text) for free
initio.o(.text) refers to stdio_streams.o(.bss) for __stdin
initio.o(.text) refers to stdio_streams.o(.bss) for __stdout
initio.o(.text) refers to stdio_streams.o(.bss) for __stderr
initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdin
initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdout
initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stderr
initio.o(.text) refers to sys_io.o(.constdata) for __stdin_name
initio.o(.text) refers to sys_io.o(.constdata) for __stdout_name
initio.o(.text) refers to sys_io.o(.constdata) for __stderr_name
initio_locked.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000022) for __rt_lib_init_stdio_2
initio_locked.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) for __rt_lib_shutdown_stdio_2
initio_locked.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
initio_locked.o(.text) refers to fopen.o(.text) for freopen
initio_locked.o(.text) refers to defsig_rtred_outer.o(.text) for __rt_SIGRTRED
initio_locked.o(.text) refers to setvbuf.o(.text) for setvbuf
initio_locked.o(.text) refers to fclose.o(.text) for _fclose_internal
initio_locked.o(.text) refers to h1_free.o(.text) for free
initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stdout
initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stderr
initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdin
initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdout
initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stderr
initio_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
initio_locked.o(.text) refers to sys_io.o(.constdata) for __stdin_name
initio_locked.o(.text) refers to sys_io.o(.constdata) for __stdout_name
initio_locked.o(.text) refers to sys_io.o(.constdata) for __stderr_name
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
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_io.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_io.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
sys_io.o(.text) refers to strlen.o(.text) for strlen
sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
sys_stackheap_outer.o(.text) refers to startup_stm32f10x_hd.o(.text) for __user_initial_stackheap
rt_div0.o(.text) refers to defsig_fpe_outer.o(.text) for __rt_SIGFPE
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
term_alloc.o(.text) refers to h1_final.o(.text) for __Heap_Finalize
flsbuf.o(.text) refers to stdio.o(.text) for _deferredlazyseek
flsbuf.o(.text) refers to sys_io.o(.text) for _sys_flen
flsbuf.o(.text) refers to h1_alloc.o(.text) for malloc
streamlock.o(.data) refers (Special) to initio.o(.text) for _initio
fopen.o(.text) refers to fclose.o(.text) for _fclose_internal
fopen.o(.text) refers to sys_io.o(.text) for _sys_open
fopen.o(.text) refers to fseek.o(.text) for _fseek
fopen.o(.text) refers to h1_alloc.o(.text) for malloc
fopen.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
fopen.o(.text) refers to stdio_streams.o(.bss) for __stdin
fclose.o(.text) refers to stdio.o(.text) for _fflush
fclose.o(.text) refers to sys_io.o(.text) for _sys_close
fclose.o(.text) refers to h1_free.o(.text) for free
fclose.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
fopen_locked.o(.text) refers to fclose.o(.text) for _fclose_internal
fopen_locked.o(.text) refers to sys_io.o(.text) for _sys_open
fopen_locked.o(.text) refers to fseek.o(.text) for _fseek
fopen_locked.o(.text) refers to h1_alloc.o(.text) for malloc
fopen_locked.o(.text) refers to rt_memclr_w.o(.text) for __aeabi_memclr4
fopen_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
fopen_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
defsig_rtred_outer.o(.text) refers to defsig_rtred_inner.o(.text) for __rt_SIGRTRED_inner
defsig_rtred_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
defsig_rtred_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
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
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_alloca_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002A) for __rt_lib_init_argv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_atexit_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_clock_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) for __rt_lib_init_cpp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_exceptions_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000002) for __rt_lib_init_fp_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_fp_trap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_getenv_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000008) for __rt_lib_init_heap_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000F) for __rt_lib_init_lc_collate_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_ctype_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_monetary_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_numeric_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_time_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_rand_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000031) for __rt_lib_init_return
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_signal_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_stdio_1
libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_user_alloc_1
libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) refers (Weak) to initio.o(.text) for _terminateio
libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) refers (Weak) to term_alloc.o(.text) for _terminate_alloc
flsbuf_fwide.o(.text) refers to flsbuf.o(.text) for __flsbuf
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
sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_exit.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
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
_printf_char_file_locked.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
_printf_char_file_locked.o(.text) refers to fputc.o(i._fputc$unlocked) for _fputc$unlocked
fseek.o(.text) refers to sys_io.o(.text) for _sys_istty
fseek.o(.text) refers to ftell.o(.text) for _ftell_internal
fseek.o(.text) refers to stdio.o(.text) for _seterr
stdio.o(.text) refers to sys_io.o(.text) for _sys_seek
fwritefast.o(.text) refers to stdio.o(.text) for _writebuf
fwritefast.o(.text) refers to flsbuf.o(.text) for __flsbuf_byte
fwritefast.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
fwritefast_locked.o(.text) refers to stdio.o(.text) for _writebuf
fwritefast_locked.o(.text) refers to flsbuf.o(.text) for __flsbuf_byte
fwritefast_locked.o(.text) refers to rt_memcpy_v6.o(.text) for __aeabi_memcpy
__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
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_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
assert_stdio.o(.text) refers to fputs.o(.text) for fputs
assert_stdio.o(.text) refers to fflush.o(.text) for fflush
assert_stdio.o(.text) refers to stdio_streams.o(.bss) for __stderr
trapv.o(x$fpl$trapveneer) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
sys_wrch.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
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$$00000003) for .ARM.Collect$$rtexit$$00000003
rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004
fflush.o(.text) refers to stdio.o(.text) for _fflush
fflush.o(.text) refers to fseek.o(.text) for _fseek
fflush.o(.text) refers to stdio_streams.o(.bss) for __stdin
fputs.o(.text) refers to fputc.o(i.fputc) for fputc
ftell.o(.text) refers to rt_errno_addr_intlibspace.o(.text) for __aeabi_errno_addr
fflush_locked.o(.text) refers to stdio.o(.text) for _fflush
fflush_locked.o(.text) refers to fseek.o(.text) for _fseek
fflush_locked.o(.text) refers to fflush.o(.text) for _do_fflush
fflush_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
fflush_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
defsig.o(CL$$defsig) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
defsig.o(CL$$defsig) refers to defsig_rtred_inner.o(.text) for __rt_SIGRTRED_inner
defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
defsig_abrt_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
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
==============================================================================
Removing Unused input sections from the image.
Removing core_cm3.o(.emb_text), (32 bytes).
Removing stm32f10x_exti.o(.text), (284 bytes).
Removing stm32f10x_spi.o(.text), (780 bytes).
Removing system_interrupt.o(.text), (36 bytes).
Removing fattester.o(.text), (1496 bytes).
Removing exfuns.o(.bss), (68 bytes).
6 unused section(s) (total 2696 bytes) removed from the image.
==============================================================================
Image Symbol Table
Local Symbols
Symbol Name Value Ov Type Size Object(Section)
../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
../clib/angel/dczerorl2.s 0x00000000 Number 0 __dczerorl2.o ABSOLUTE
../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry4.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE
../clib/angel/kernel.s 0x00000000 Number 0 rtentry.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_errno_addr_intlibspace.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 aeabi_ldiv0_sigfpe.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 aeabi_ldiv0.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_errno_addr.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_div0.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor_intlibspace.o ABSOLUTE
../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor.o ABSOLUTE
../clib/angel/scatter.s 0x00000000 Number 0 __scatter.o ABSOLUTE
../clib/angel/startup.s 0x00000000 Number 0 __main.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE
../clib/angel/sys.s 0x00000000 Number 0 mutex_dummy.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch.o ABSOLUTE
../clib/angel/sysapp.c 0x00000000 Number 0 sys_io.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
../clib/armsys.c 0x00000000 Number 0 _get_argv.o ABSOLUTE
../clib/assert.c 0x00000000 Number 0 assert_stdio.o ABSOLUTE
../clib/fenv.c 0x00000000 Number 0 _rserrno.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_free.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_alloc_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_free_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_init_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_extend_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_extend.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_alloc.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_final.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_final_mt.o ABSOLUTE
../clib/heap1.c 0x00000000 Number 0 h1_init.o ABSOLUTE
../clib/heap2.c 0x00000000 Number 0 fdtree.o ABSOLUTE
../clib/heap2.c 0x00000000 Number 0 heap2.o ABSOLUTE
../clib/heap2.c 0x00000000 Number 0 heap2mt.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 hguard.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 init_alloc.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 malloc.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 free.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 heapstubs.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 term_alloc.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE
../clib/heapaux.c 0x00000000 Number 0 heapauxa.o ABSOLUTE
../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE
../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE
../clib/longlong.s 0x00000000 Number 0 lludivv7m.o ABSOLUTE
../clib/longlong.s 0x00000000 Number 0 llsdiv.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 strcmpv7m.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memclr_w.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memclr.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memcpy_v6.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 aeabi_memset.o ABSOLUTE
../clib/memcpset.s 0x00000000 Number 0 rt_memcpy_w.o ABSOLUTE
../clib/misc.s 0x00000000 Number 0 printf_stubs.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 noretval__2sprintf.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_pad.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_str.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_char_file_locked.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_ss.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags_ss.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_intcommon.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags_ss_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_char_file.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_char.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_ss_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _sputc.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_char_common.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_nopercent.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf_flags_wp.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __printf.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 _printf_dec.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __2printf.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 __2sprintf.o ABSOLUTE
../clib/printf.c 0x00000000 Number 0 noretval__2printf.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_percent.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_percent_end.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_c.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_s.o ABSOLUTE
../clib/printf_percent.s 0x00000000 Number 0 _printf_d.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_fpe_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_fpe_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtred_formal.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtred_outer.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE
../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE
../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fflush_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fputs_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 ftell.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fputs.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 ferror_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fputc_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 initio.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fputc.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 ferror.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fflush.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fwritefast_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 stdio.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fseek.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fwritefast.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fopen_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 setvbuf_locked.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fclose.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 fopen.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 streamlock.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 setvbuf.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 flsbuf.o ABSOLUTE
../clib/stdio.c 0x00000000 Number 0 initio_locked.o ABSOLUTE