summaryrefslogtreecommitdiff
path: root/testsuites/libtests/dl05/dl05.scn
blob: c14b6c496d5ea3225e72c1771deb6fb0bcb780eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424


*** BEGIN OF TEST libdl (RTL) 5 ***
rtl: alloc: new: SYMBOL addr=0x209b4d8 size=384
rtl: alloc: new: OBJECT addr=0x209ba68 size=2048
rtl: alloc: new: OBJECT addr=0x209c270 size=2048
rtl: alloc: new: OBJECT addr=0x209ca78 size=2048
rtl: alloc: new: OBJECT addr=0x209d280 size=2048
rtl: alloc: new: OBJECT addr=0x209da88 size=144
rtl: alloc: new: OBJECT addr=0x208fa18 size=13
rtl: alloc: new: OBJECT addr=0x208fa30 size=2
rtl: adding global symbols, table size 29200
rtl: global symbol add: 1082
rtl: alloc: new: SYMBOL addr=0x209db20 size=21640
rtl: esyms: .div -> 0x20115d4
rtl: esyms: .rem -> 0x2011884
rtl: esyms: .udiv -> 0x20115cc
rtl: esyms: .umul -> 0x20114e4
rtl: esyms: .urem -> 0x201187c
rtl: esyms: BSP_output_char -> 0x205f74c
rtl: esyms: BSP_shared_interrupt_init -> 0x201804c
rtl: esyms: CLOCK_SPEED -> 0x20007e0
rtl: esyms: Clock_driver_ticks -> 0x20652ec
rtl: esyms: Clock_exit -> 0x20176f0
rtl: esyms: Clock_initialize -> 0x20177e0
rtl: esyms: Clock_isr -> 0x2017740
rtl: esyms: Configuration -> 0x2046e9c
rtl: esyms: Configuration_POSIX_API -> 0x205ffc4
rtl: esyms: Configuration_RTEMS_API -> 0x205f6b4
rtl: esyms: Console_Configuration_Count -> 0x205f750
rtl: esyms: Console_Configuration_Ports -> 0x205f754
rtl: esyms: Console_Port_Count -> 0x2064e48
rtl: esyms: Console_Port_Data -> 0x2064e40
rtl: esyms: Console_Port_Minor -> 0x2064e3c
rtl: esyms: Console_Port_Tbl -> 0x2064e44
rtl: esyms: ERC32_MEC -> 0x1f80000
rtl: esyms: IMFS_LIMITS_AND_OPTIONS -> 0x205c9c0
rtl: esyms: IMFS_chown -> 0x2018d90
rtl: esyms: IMFS_create_node -> 0x2018df8
rtl: esyms: IMFS_eval_path -> 0x20192d4
rtl: esyms: IMFS_fchmod -> 0x20192ec
rtl: esyms: IMFS_initialize_node -> 0x2019394
rtl: esyms: IMFS_initialize_support -> 0x2019418
rtl: esyms: IMFS_link -> 0x201962c
rtl: esyms: IMFS_memfile_write -> 0x2019f8c
rtl: esyms: IMFS_mknod -> 0x201a1d0
rtl: esyms: IMFS_mknod_control_device -> 0x205ca48
rtl: esyms: IMFS_mknod_control_dir_default -> 0x205c9f0
rtl: esyms: IMFS_mknod_control_enosys -> 0x205ca98
rtl: esyms: IMFS_mknod_control_memfile -> 0x205caf8
rtl: esyms: IMFS_mount -> 0x201a280
rtl: esyms: IMFS_node_clone -> 0x20194cc
rtl: esyms: IMFS_node_destroy -> 0x20194e4
rtl: esyms: IMFS_node_destroy_default -> 0x2019368
rtl: esyms: IMFS_node_free -> 0x2019500
rtl: esyms: IMFS_node_initialize_default -> 0x2019540
rtl: esyms: IMFS_node_initialize_directory -> 0x2018e94
rtl: esyms: IMFS_node_remove_default -> 0x2019344
rtl: esyms: IMFS_node_remove_directory -> 0x2018eac
rtl: esyms: IMFS_readlink -> 0x201a590
rtl: esyms: IMFS_rename -> 0x201a2f4
rtl: esyms: IMFS_rmnod -> 0x201a3f4
rtl: esyms: IMFS_stat -> 0x201a468
rtl: esyms: IMFS_stat_file -> 0x201a4c8
rtl: esyms: IMFS_symlink -> 0x201a52c
rtl: esyms: IMFS_unmount -> 0x201a5f8
rtl: esyms: IMFS_utime -> 0x201a66c
rtl: esyms: Initialization_tasks -> 0x205f714
rtl: esyms: PROM_END -> 0x200000
rtl: esyms: PROM_SIZE -> 0x200000
rtl: esyms: PROM_START ->      0x0
rtl: esyms: RAM_END -> 0x2400000
rtl: esyms: RAM_SIZE -> 0x400000
rtl: esyms: RAM_START -> 0x2000000
rtl: esyms: RTEMS_Malloc_Area -> 0x2065280
rtl: esyms: RTEMS_Malloc_GC_list -> 0x205f888
rtl: esyms: RTEMS_Malloc_Heap -> 0x205f730
rtl: esyms: RTEMS_Malloc_Initialize -> 0x201b290
rtl: esyms: TOD_TICKS_PER_SECOND_method -> 0x202a83c
rtl: esyms: Untar_FromMemory -> 0x202fc44
rtl: esyms: _API_Mutex_Allocate -> 0x2029ff4
rtl: esyms: _API_Mutex_Initialization -> 0x2029fc4
rtl: esyms: _API_Mutex_Lock -> 0x202a058
rtl: esyms: _API_Mutex_Unlock -> 0x202a238
rtl: esyms: _API_extensions_Add -> 0x2029f68
rtl: esyms: _API_extensions_Initialization -> 0x2029f4c
rtl: esyms: _API_extensions_List -> 0x2065b00
rtl: esyms: _API_extensions_Run_postdriver -> 0x2029f80
rtl: esyms: _Balloc -> 0x2033880
rtl: esyms: _Barrier_Information -> 0x2065730
rtl: esyms: _Barrier_Manager_initialization -> 0x20282f0
rtl: esyms: _Bfree -> 0x2033910
rtl: esyms: _CORE_mutex_Flush -> 0x202a4f8
rtl: esyms: _CORE_mutex_Initialize -> 0x202a368
rtl: esyms: _CORE_mutex_Seize_interrupt_blocking -> 0x202a504
rtl: esyms: _CORE_mutex_Surrender -> 0x202a5bc
rtl: esyms: _CORE_semaphore_Initialize -> 0x202a778
rtl: esyms: _CPU_Context_Initialize -> 0x202fa60
rtl: esyms: _CPU_Context_restore -> 0x2018190
rtl: esyms: _CPU_Context_restore_fp -> 0x202fba0
rtl: esyms: _CPU_Context_restore_heir -> 0x20180d0
rtl: esyms: _CPU_Context_save_fp -> 0x202fb54
rtl: esyms: _CPU_Context_switch -> 0x2018094
rtl: esyms: _CPU_Exception_frame_print -> 0x2018560
rtl: esyms: _CPU_Fatal_halt -> 0x2017598
rtl: esyms: _CPU_ISR_Get_level -> 0x202f940
rtl: esyms: _CPU_ISR_install_raw_handler -> 0x202f954
rtl: esyms: _CPU_ISR_install_vector -> 0x202fa24
rtl: esyms: _CPU_Initialize -> 0x202f900
rtl: esyms: _CPU_Null_fp_context -> 0x2065a60
rtl: esyms: _CPU_Trap_slot_template -> 0x205c600
rtl: esyms: _Chain_Append -> 0x202a2e0
rtl: esyms: _Chain_Extract -> 0x202a30c
rtl: esyms: _Chain_Get -> 0x202a330
rtl: esyms: _Chain_Initialize -> 0x202a284
rtl: esyms: _Debug_Level -> 0x20659fc
rtl: esyms: _Debug_Manager_initialization -> 0x20299e8
rtl: esyms: _Dual_ported_memory_Information -> 0x206576c
rtl: esyms: _Dual_ported_memory_Manager_initialization -> 0x2028348
rtl: esyms: _ERC32_MEC -> 0x1f80000
rtl: esyms: _ERC32_MEC_Timer_Control_Mirror -> 0x20007c0
rtl: esyms: _Event_Manager_initialization -> 0x2028380
rtl: esyms: _Event_Seize -> 0x2028408
rtl: esyms: _Event_Surrender -> 0x2028610
rtl: esyms: _Extension_Information -> 0x2065b0c
rtl: esyms: _Extension_Manager_initialization -> 0x2029aec
rtl: esyms: _Freechain_Get -> 0x202a8a0
rtl: esyms: _Freechain_Initialize -> 0x202a85c
rtl: esyms: _Freechain_Put -> 0x202a920
rtl: esyms: _Heap_Allocate_aligned_with_boundary -> 0x202ad68
rtl: esyms: _Heap_Block_allocate -> 0x202ac30
rtl: esyms: _Heap_Free -> 0x202af9c
rtl: esyms: _Heap_Get_first_and_last_block -> 0x202aa74
rtl: esyms: _Heap_Initialize -> 0x202ab0c
rtl: esyms: _Heap_Resize_block -> 0x202b18c
rtl: esyms: _Heap_Size_of_alloc_area -> 0x202b2a4
rtl: esyms: _IO_All_drivers_initialized -> 0x2065b48
rtl: esyms: _IO_Driver_address_table -> 0x205f6e4
rtl: esyms: _IO_Initialize_all_drivers -> 0x2029b60
rtl: esyms: _IO_Number_of_drivers -> 0x2046f74
rtl: esyms: _ISR_Handler -> 0x20181a0
rtl: esyms: _ISR_Handler_initialization -> 0x202b37c
rtl: esyms: _ISR_Vector_table -> 0x2065e74
rtl: esyms: _Internal_Objects -> 0x2065978
rtl: esyms: _Internal_errors_What_happened -> 0x2065e64
rtl: esyms: _Message_queue_Information -> 0x20657a8
rtl: esyms: _Message_queue_Manager_initialization -> 0x2028784
rtl: esyms: _Objects_API_maximum_class -> 0x202bdec
rtl: esyms: _Objects_Allocate -> 0x202bdd4
rtl: esyms: _Objects_Allocate_unprotected -> 0x202bd08
rtl: esyms: _Objects_Close -> 0x202be14
rtl: esyms: _Objects_Extend_information -> 0x202be30
rtl: esyms: _Objects_Free -> 0x202c19c
rtl: esyms: _Objects_Get -> 0x202c240
rtl: esyms: _Objects_Get_information -> 0x202c2f0
rtl: esyms: _Objects_Get_information_id -> 0x202c364
rtl: esyms: _Objects_Get_isr_disable -> 0x202c37c
rtl: esyms: _Objects_Information_table -> 0x2065968
rtl: esyms: _Objects_Initialize_information -> 0x202c3e4
rtl: esyms: _Objects_Namespace_remove -> 0x202c4bc
rtl: esyms: _Objects_Shrink_information -> 0x202c4e4
rtl: esyms: _Once -> 0x202c5e0
rtl: esyms: _Once_Mutex -> 0x20659f4
rtl: esyms: _POSIX_API_Initialize -> 0x2029de8
rtl: esyms: _POSIX_Barrier_Information -> 0x2065cf0
rtl: esyms: _POSIX_Barrier_Manager_initialization -> 0x2027684
rtl: esyms: _POSIX_Condition_variables_Information -> 0x2065d80
rtl: esyms: _POSIX_Condition_variables_Manager_initialization -> 0x2026bbc
rtl: esyms: _POSIX_Key_Manager_initialization -> 0x2026c80
rtl: esyms: _POSIX_Keys_Free_memory -> 0x2026dfc
rtl: esyms: _POSIX_Keys_Information -> 0x2065d44
rtl: esyms: _POSIX_Keys_Key_value_compare -> 0x2026bf4
rtl: esyms: _POSIX_Keys_Key_value_lookup_tree -> 0x2064fb4
rtl: esyms: _POSIX_Keys_Key_value_pair_allocate -> 0x2026c40
rtl: esyms: _POSIX_Keys_Keypool -> 0x2065dbc
rtl: esyms: _POSIX_Keys_Run_destructors -> 0x2026fb0
rtl: esyms: _POSIX_Message_queue_Information -> 0x2065c78
rtl: esyms: _POSIX_Message_queue_Information_fds -> 0x2065dfc
rtl: esyms: _POSIX_Message_queue_Manager_initialization -> 0x20275b8
rtl: esyms: _POSIX_Mutex_Default_attributes -> 0x2065d2c
rtl: esyms: _POSIX_Mutex_Information -> 0x2065cb4
rtl: esyms: _POSIX_Mutex_Manager_initialization -> 0x2027618
rtl: esyms: _POSIX_Objects -> 0x2065dc8
rtl: esyms: _POSIX_RWLock_Information -> 0x2065b4c
rtl: esyms: _POSIX_RWLock_Manager_initialization -> 0x20276bc
rtl: esyms: _POSIX_Semaphore_Information -> 0x2065c00
rtl: esyms: _POSIX_Semaphore_Manager_initialization -> 0x2028284
rtl: esyms: _POSIX_Spinlock_Information -> 0x2065bc4
rtl: esyms: _POSIX_Spinlock_Manager_initialization -> 0x2027cf4
rtl: esyms: _POSIX_Thread_Exit -> 0x2028010
rtl: esyms: _POSIX_Threads_API_extensions -> 0x205f918
rtl: esyms: _POSIX_Threads_Default_attributes -> 0x205f924
rtl: esyms: _POSIX_Threads_Information -> 0x2065b88
rtl: esyms: _POSIX_Threads_Initialize_user_threads_p -> 0x205ffc0
rtl: esyms: _POSIX_Threads_Manager_initialization -> 0x2027fc0
rtl: esyms: _POSIX_Threads_Sporadic_budget_TSR -> 0x2027d84
rtl: esyms: _POSIX_Threads_User_extensions -> 0x205f8e0
rtl: esyms: _POSIX_Threads_cancel_run -> 0x2026b20
rtl: esyms: _POSIX_Timer_Information -> 0x2065c3c
rtl: esyms: _POSIX_Timer_Manager_initialization -> 0x202824c
rtl: esyms: _POSIX_signals_Abnormal_termination_handler -> 0x20276f4
rtl: esyms: _POSIX_signals_Action_handler -> 0x2027704
rtl: esyms: _POSIX_signals_Check_signal -> 0x20278a8
rtl: esyms: _POSIX_signals_Clear_process_signals -> 0x202797c
rtl: esyms: _POSIX_signals_Clear_signals -> 0x20279e4
rtl: esyms: _POSIX_signals_Default_vectors -> 0x205e59c
rtl: esyms: _POSIX_signals_Inactive_siginfo -> 0x206558c
rtl: esyms: _POSIX_signals_Manager_Initialization -> 0x20277f0
rtl: esyms: _POSIX_signals_Pending -> 0x20655ac
rtl: esyms: _POSIX_signals_Set_process_signals -> 0x2027b3c
rtl: esyms: _POSIX_signals_Siginfo -> 0x20655b0
rtl: esyms: _POSIX_signals_Unblock_thread -> 0x2027b60
rtl: esyms: _POSIX_signals_Vectors -> 0x206540c
rtl: esyms: _POSIX_signals_Wait_queue -> 0x2065598
rtl: esyms: _PROM_END -> 0x200000
rtl: esyms: _PROM_SIZE -> 0x200000
rtl: esyms: _PROM_START ->      0x0
rtl: esyms: _Partition_Information -> 0x20657e4
rtl: esyms: _Partition_Manager_initialization -> 0x20287bc
rtl: esyms: _Per_CPU_Information -> 0x20662a0
rtl: esyms: _Protected_heap_Allocate_aligned_with_boundary -> 0x202c644
rtl: esyms: _Protected_heap_Free -> 0x202c67c
rtl: esyms: _Protected_heap_Get_block_size -> 0x202c6ac
rtl: esyms: _Protected_heap_Resize_block -> 0x202c6e0
rtl: esyms: _RAM_END -> 0x2400000
rtl: esyms: _RAM_SIZE -> 0x400000
rtl: esyms: _RAM_START -> 0x2000000
rtl: esyms: _RBTree_Extract -> 0x202c9f4
rtl: esyms: _RBTree_Find -> 0x202cba0
rtl: esyms: _RBTree_Insert -> 0x202cc00
rtl: esyms: _RBTree_Next -> 0x202ce80
rtl: esyms: _RTEMS_API_Initialize -> 0x2029e50
rtl: esyms: _RTEMS_Allocator_Mutex -> 0x20659f8
rtl: esyms: _RTEMS_Objects -> 0x2065e38
rtl: esyms: _RTEMS_Tasks_Invoke_task_variable_dtor -> 0x2029854
rtl: esyms: _RTEMS_tasks_API_extensions -> 0x205f9a8
rtl: esyms: _RTEMS_tasks_Information -> 0x2065914
rtl: esyms: _RTEMS_tasks_Initialize_user_tasks -> 0x20296f4
rtl: esyms: _RTEMS_tasks_Initialize_user_tasks_body -> 0x2029310
rtl: esyms: _RTEMS_tasks_Initialize_user_tasks_p -> 0x205f6a8
rtl: esyms: _RTEMS_tasks_Manager_initialization -> 0x2029750
rtl: esyms: _RTEMS_tasks_User_extensions -> 0x205f970
rtl: esyms: _RTEMS_version -> 0x205c670
rtl: esyms: _Rate_monotonic_Information -> 0x2065820
rtl: esyms: _Rate_monotonic_Manager_initialization -> 0x20287f4
rtl: esyms: _Region_Information -> 0x206585c
rtl: esyms: _Region_Manager_initialization -> 0x202882c
rtl: esyms: _SPARC_Counter -> 0x205fa7c
rtl: esyms: _SPARC_Counter_difference_default -> 0x202fbec
rtl: esyms: _Scheduler_Handler_initialization -> 0x202cf18
rtl: esyms: _Scheduler_Table -> 0x2046f7c
rtl: esyms: _Scheduler_default_Node_destroy -> 0x202cf38
rtl: esyms: _Scheduler_default_Node_initialize -> 0x202cf40
rtl: esyms: _Scheduler_default_Release_job -> 0x202cf48
rtl: esyms: _Scheduler_default_Start_idle -> 0x202cf50
rtl: esyms: _Scheduler_default_Tick -> 0x202cf70
rtl: esyms: _Scheduler_priority_Block -> 0x202d064
rtl: esyms: _Scheduler_priority_Change_priority -> 0x202d1d4
rtl: esyms: _Scheduler_priority_Initialize -> 0x202d014
rtl: esyms: _Scheduler_priority_Priority_compare -> 0x202d3e4
rtl: esyms: _Scheduler_priority_Schedule -> 0x202d3ec
rtl: esyms: _Scheduler_priority_Unblock -> 0x202d4d4
rtl: esyms: _Scheduler_priority_Update_priority -> 0x202d570
rtl: esyms: _Scheduler_priority_Yield -> 0x202d5d4
rtl: esyms: _Semaphore_Information -> 0x20658d8
rtl: esyms: _Semaphore_Manager_initialization -> 0x20288a4
rtl: esyms: _Semaphore_Translate_core_mutex_return_code_ -> 0x205e730
rtl: esyms: _Semaphore_Translate_core_semaphore_return_code_ -> 0x205e71c
rtl: esyms: _Signal_Action_handler -> 0x202900c
rtl: esyms: _Signal_Manager_initialization -> 0x2029004
rtl: esyms: _System_state_Current -> 0x2065e70
rtl: esyms: _TLS_Alignment ->      0x1
rtl: esyms: _TLS_BSS_begin -> 0x205f6a0
rtl: esyms: _TLS_BSS_end -> 0x205f6a0
rtl: esyms: _TLS_BSS_size ->      0x0
rtl: esyms: _TLS_Data_begin -> 0x205f6a0
rtl: esyms: _TLS_Data_size ->      0x0
rtl: esyms: _TLS_Size ->      0x0
rtl: esyms: _TOD -> 0x2065960
rtl: esyms: _TOD_Handler_initialization -> 0x202a7a8
rtl: esyms: _TOD_Tickle_ticks -> 0x202a7dc
rtl: esyms: _Terminate -> 0x202b328
rtl: esyms: _Thread_Allocated_fp -> 0x20659f0
rtl: esyms: _Thread_Change_priority -> 0x202d7a4
rtl: esyms: _Thread_Clear_state -> 0x202d8c4
rtl: esyms: _Thread_Close -> 0x202eb30
rtl: esyms: _Thread_Control_add_on_count -> 0x2046ee0
rtl: esyms: _Thread_Control_add_ons -> 0x2046ee4
rtl: esyms: _Thread_Control_size -> 0x2046f04
rtl: esyms: _Thread_Create_idle -> 0x202d928
rtl: esyms: _Thread_Dispatch -> 0x202dbc4
rtl: esyms: _Thread_Do_dispatch -> 0x202d9d4
rtl: esyms: _Thread_Get -> 0x202dc54
rtl: esyms: _Thread_Get_interrupt_disable -> 0x202dcac
rtl: esyms: _Thread_Global_construction -> 0x202dd04
rtl: esyms: _Thread_Handler -> 0x202dde4
rtl: esyms: _Thread_Handler_initialization -> 0x202d6ec
rtl: esyms: _Thread_Initialize -> 0x202debc
rtl: esyms: _Thread_Internal_information -> 0x2065a1c
rtl: esyms: _Thread_Kill_zombies -> 0x202e8e8
rtl: esyms: _Thread_Life_action_handler -> 0x202e9c4
rtl: esyms: _Thread_Load_environment -> 0x202e194
rtl: esyms: _Thread_Raise_priority -> 0x202d888
rtl: esyms: _Thread_Restart -> 0x202eb88
rtl: esyms: _Thread_Restore_priority -> 0x202d8a4
rtl: esyms: _Thread_Set_life_protection -> 0x202ebc4
rtl: esyms: _Thread_Set_priority -> 0x202ecf0
rtl: esyms: _Thread_Set_state -> 0x202ed08
rtl: esyms: _Thread_Stack_Allocate -> 0x202ed50
rtl: esyms: _Thread_Stack_Free -> 0x202ed90
rtl: esyms: _Thread_Start -> 0x202edb8
rtl: esyms: _Thread_Start_multitasking -> 0x202ee48
rtl: esyms: _Thread_Timeout -> 0x202ee64
rtl: esyms: _Thread_Yield -> 0x202ef08
rtl: esyms: _Thread_queue_Compare_priority -> 0x202e200
rtl: esyms: _Thread_queue_Dequeue -> 0x202e508
rtl: esyms: _Thread_queue_Enqueue_critical -> 0x202e268
rtl: esyms: _Thread_queue_Extract -> 0x202e4c8
rtl: esyms: _Thread_queue_Extract_critical -> 0x202e498
rtl: esyms: _Thread_queue_Extract_locked -> 0x202e3a0
rtl: esyms: _Thread_queue_Extract_with_proxy -> 0x202e55c
rtl: esyms: _Thread_queue_Flush -> 0x202e568
rtl: esyms: _Thread_queue_Initialize -> 0x202e21c
rtl: esyms: _Thread_queue_Operations_FIFO -> 0x205e8e8
rtl: esyms: _Thread_queue_Operations_default -> 0x205e8fc
rtl: esyms: _Thread_queue_Operations_priority -> 0x205e8d4
rtl: esyms: _Thread_queue_Unblock_critical -> 0x202e3d0
rtl: esyms: _Timecounter -> 0x205f9d4
rtl: esyms: _Timecounter_Bintime -> 0x202b874
rtl: esyms: _Timecounter_Binuptime -> 0x202b7b4
rtl: esyms: _Timecounter_Boottimebin -> 0x2066278
rtl: esyms: _Timecounter_Initialize -> 0x202bcd8
rtl: esyms: _Timecounter_Install -> 0x202b960
rtl: esyms: _Timecounter_Microtime -> 0x202b8ec
rtl: esyms: _Timecounter_Set_clock -> 0x202b99c
rtl: esyms: _Timecounter_Tick_simple -> 0x202bb34
rtl: esyms: _Timecounter_Time_second -> 0x205f9cc
rtl: esyms: _Timecounter_Time_uptime -> 0x205f9c8
rtl: esyms: _Timer_Information -> 0x2065898
rtl: esyms: _Timer_Manager_initialization -> 0x2028864
rtl: esyms: _Timer_server -> 0x20658d4
rtl: esyms: _Timespec_To_ticks -> 0x202ef48
rtl: esyms: _Unwind_Backtrace -> 0x2015da0
rtl: esyms: _Unwind_DeleteException -> 0x2015d7c
rtl: esyms: _Unwind_FindEnclosingFunction -> 0x2015940
rtl: esyms: _Unwind_Find_FDE -> 0x201738c
rtl: esyms: _Unwind_ForcedUnwind -> 0x2015ba8
rtl: esyms: _Unwind_GetCFA -> 0x201588c
rtl: esyms: _Unwind_GetDataRelBase -> 0x2015970
rtl: esyms: _Unwind_GetGR -> 0x2015824
rtl: esyms: _Unwind_GetIP -> 0x201590c
rtl: esyms: _Unwind_GetIPInfo -> 0x2015914
rtl: esyms: _Unwind_GetLanguageSpecificData -> 0x2015930
rtl: esyms: _Unwind_GetRegionStart -> 0x2015938
rtl: esyms: _Unwind_GetTextRelBase -> 0x2015978
rtl: esyms: _Unwind_RaiseException -> 0x2015a70
rtl: esyms: _Unwind_Resume -> 0x2015c38
rtl: esyms: _Unwind_Resume_or_Rethrow -> 0x2015cd4
rtl: esyms: _Unwind_SetGR -> 0x2015894
rtl: esyms: _Unwind_SetIP -> 0x2015928
rtl: esyms: _User_extensions_Add_set -> 0x202f03c
rtl: esyms: _User_extensions_Fatal_visitor -> 0x202f194
rtl: esyms: _User_extensions_Handler_initialization -> 0x202effc
rtl: esyms: _User_extensions_Iterate -> 0x202f1e4
rtl: esyms: _User_extensions_List -> 0x205fa70
rtl: esyms: _User_extensions_Switches_list -> 0x205fa64
rtl: esyms: _User_extensions_Thread_begin_visitor -> 0x202f14c
rtl: esyms: _User_extensions_Thread_create_visitor -> 0x202f09c
rtl: esyms: _User_extensions_Thread_delete_visitor -> 0x202f0e0
rtl: esyms: _User_extensions_Thread_exitted_visitor -> 0x202f170
rtl: esyms: _User_extensions_Thread_restart_visitor -> 0x202f128
rtl: esyms: _User_extensions_Thread_start_visitor -> 0x202f104
rtl: esyms: _User_extensions_Thread_terminate_visitor -> 0x202f1c0
rtl: esyms: _Watchdog_Handler_initialization -> 0x202f274
rtl: esyms: _Watchdog_Insert -> 0x202f420
rtl: esyms: _Watchdog_Remove -> 0x202f520
rtl: esyms: _Watchdog_Seconds_header -> 0x2065a00
rtl: esyms: _Watchdog_Tick -> 0x202f638
rtl: esyms: _Watchdog_Tickle -> 0x202f584
rtl: esyms: _Watchdog_Ticks_header -> 0x2065ae8
rtl: esyms: _Watchdog_Ticks_since_boot -> 0x20662d8
rtl: esyms: _Workspace_Allocate -> 0x202f86c
rtl: esyms: _Workspace_Allocate_aligned -> 0x202f88c
rtl: esyms: _Workspace_Allocate_or_fatal_error -> 0x202f8c4
rtl: esyms: _Workspace_Area -> 0x2065988
rtl: esyms: _Workspace_Free -> 0x202f8ac
rtl: esyms: _Workspace_Handler_initialization -> 0x202f694
rtl: esyms: _ZN10__cxxabiv111__terminateEPFvvE -> 0x201053c
rtl: esyms: _ZN10__cxxabiv112__unexpectedEPFvvE -> 0x201060c
rtl: esyms: _ZN10__cxxabiv117__class_type_infoD0Ev -> 0x200172c
rtl: esyms: _ZN10__cxxabiv117__class_type_infoD1Ev -> 0x2001714
rtl: esyms: _ZN10__cxxabiv117__class_type_infoD2Ev -> 0x2001714
rtl: esyms: _ZN10__cxxabiv119__terminate_handlerE -> 0x205f73c
rtl: esyms: _ZN10__cxxabiv120__si_class_type_infoD0Ev -> 0x2010744
rtl: esyms: _ZN10__cxxabiv120__si_class_type_infoD1Ev -> 0x201072c
rtl: esyms: _ZN10__cxxabiv120__si_class_type_infoD2Ev -> 0x201072c
rtl: esyms: _ZN10__cxxabiv120__unexpected_handlerE -> 0x205f738
rtl: esyms: _ZN9__gnu_cxx12__atomic_addEPVii -> 0x2010984
rtl: esyms: _ZN9__gnu_cxx18__exchange_and_addEPVii -> 0x201094c
rtl: esyms: _ZN9__gnu_cxx27__verbose_terminate_handlerEv -> 0x2002084
rtl: esyms: _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj -> 0x20017b4
rtl: esyms: _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE -> 0x200174c
rtl: esyms: _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv -> 0x200169c
rtl: esyms: _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE -> 0x200183c
rtl: esyms: _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ -> 0x20016fc
rtl: esyms: _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE -> 0x20108fc
rtl: esyms: _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE -> 0x2010764
rtl: esyms: _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ -> 0x201087c
rtl: esyms: _ZNKSt11logic_error4whatEv -> 0x20109b4
rtl: esyms: _ZNKSt13bad_exception4whatEv -> 0x2001abc
rtl: esyms: _ZNKSt13runtime_error4whatEv -> 0x20109bc
rtl: esyms: _ZNKSt14error_category10equivalentERKSt10error_codei -> 0x2010e4c
rtl: esyms: _ZNKSt14error_category10equivalentEiRKSt15error_condition -> 0x2010ef4
rtl: esyms: _ZNKSt14error_category23default_error_conditionEi -> 0x2010e38
rtl: esyms: _ZNKSt9bad_alloc4whatEv -> 0x20104f8
rtl: esyms: _ZNKSt9type_info14__is_pointer_pEv -> 0x2001ea8
rtl: esyms: _ZNKSt9type_info15__is_function_pEv -> 0x2001eb0
rtl: esyms: _ZNSt11logic_errorC1ERKSs -> 0x2010adc
rtl: esyms: _ZNSt11logic_errorC2ERKSs -> 0x2010adc
rtl: esyms: _ZNSt11logic_errorD0Ev -> 0x2010a58
rtl: esyms: _ZNSt11logic_errorD1Ev -> 0x20109c4
rtl: esyms: _ZNSt11logic_errorD2Ev -> 0x20109c4
rtl: esyms: _ZNSt12length_errorC1ERKSs -> 0x2010b18
rtl: esyms: _ZNSt12length_errorC2ERKSs -> 0x2010b18
rtl: esyms: _ZNSt12length_errorD0Ev -> 0x2010a38
rtl: esyms: _ZNSt12length_errorD1Ev -> 0x2010a20
rtl: esyms: _ZNSt12length_errorD2Ev -> 0x2010a20
rtl: esyms: _ZNSt13bad_exceptionD0Ev -> 0x2001ac8
rtl: esyms: _ZNSt13bad_exceptionD1Ev -> 0x2001ab4
rtl: esyms: _ZNSt13bad_exceptionD2Ev -> 0x2001ab4
rtl: esyms: _ZNSt13runtime_errorC1ERKSs -> 0x2010b3c
rtl: esyms: _ZNSt13runtime_errorC2ERKSs -> 0x2010b3c
rtl: esyms: _ZNSt13runtime_errorD0Ev -> 0x2010ac8
rtl: esyms: _ZNSt13runtime_errorD1Ev -> 0x2010a6c
rtl: esyms: _ZNSt13runtime_errorD2Ev -> 0x2010a6c
rtl: esyms: _ZNSt9bad_allocD0Ev -> 0x201051c
rtl: esyms: _ZNSt9bad_allocD1Ev -> 0x2010504
rtl: esyms: _ZNSt9bad_allocD2Ev -> 0x2010504
rtl: esyms: _ZNSt9exceptionD1Ev -> 0x2001aac
rtl: esyms: _ZNSt9exceptionD2Ev -> 0x2001aac
rtl: esyms: _ZNSt9type_infoD1Ev -> 0x2001ea0
rtl: esyms: _ZNSt9type_infoD2Ev -> 0x2001ea0
rtl: esyms: _ZSt10unexpectedv -> 0x2010690
rtl: esyms: _ZSt13get_terminatev -> 0x2010588
rtl: esyms: _ZSt14get_unexpectedv -> 0x2010624
rtl: esyms: _ZSt15get_new_handlerv -> 0x2001bc8
rtl: esyms: _ZSt19__throw_logic_errorPKc -> 0x2011264
rtl: esyms: _ZSt20__throw_length_errorPKc -> 0x201130c
rtl: esyms: _ZSt9terminatev -> 0x20105f4
rtl: esyms: _ZdlPv -> 0x2001eb8
rtl: esyms: _Znwj -> 0x2001e28
rtl: esyms: __DTOR_END__ -> 0x2046e78
rtl: esyms: __DYNAMIC ->      0x0
rtl: esyms: __TMC_END__ -> 0x205ffa0
rtl: esyms: __any_on -> 0x20346ec
rtl: esyms: __ascii_wctomb -> 0x203e110
rtl: esyms: __b2d -> 0x2034370
rtl: esyms: __bss_start -> 0x205ffa0
rtl: esyms: __call_exitprocs -> 0x203001c
rtl: esyms: __clz_tab -> 0x205c4f0
rtl: esyms: __copybits -> 0x203466c
rtl: esyms: __ctype_ptr__ -> 0x205fa84
rtl: esyms: __cxa_allocate_exception -> 0x2001c5c
rtl: esyms: __cxa_atexit -> 0x203023c
rtl: esyms: __cxa_begin_catch -> 0x2001ec4
rtl: esyms: __cxa_call_terminate -> 0x20106d0
rtl: esyms: __cxa_call_unexpected -> 0x2002c78
rtl: esyms: __cxa_current_exception_type -> 0x200202c
rtl: esyms: __cxa_demangle -> 0x2010240
rtl: esyms: __cxa_end_catch -> 0x2001f70
rtl: esyms: __cxa_free_exception -> 0x2001d4c
rtl: esyms: __cxa_get_globals -> 0x20019c8
rtl: esyms: __cxa_get_globals_fast -> 0x2001974
rtl: esyms: __cxa_rethrow -> 0x2010474
rtl: esyms: __cxa_throw -> 0x2010400
rtl: esyms: __d2b -> 0x2034490
rtl: esyms: __deregister_frame -> 0x2017360
rtl: esyms: __deregister_frame_info -> 0x2017354
rtl: esyms: __deregister_frame_info_bases -> 0x2017218
rtl: esyms: __divdi3 -> 0x2011bf4
rtl: esyms: __dso_handle -> 0x205f6a4
rtl: esyms: __end -> 0x20662e0
rtl: esyms: __errno -> 0x20317d4
rtl: esyms: __fp_lock_all -> 0x2031f30
rtl: esyms: __fp_unlock_all -> 0x2031f48
rtl: esyms: __fpclassifyd -> 0x20113b4
rtl: esyms: __fputwc -> 0x203228c
rtl: esyms: __frame_state_for -> 0x2015980
rtl: esyms: __gcclibcxx_demangle_callback -> 0x2010384
rtl: esyms: __getreent -> 0x2001318
rtl: esyms: __gxx_personality_v0 -> 0x20027ac
rtl: esyms: __hi0bits -> 0x2033afc
rtl: esyms: __i2b -> 0x2033c50
rtl: esyms: __lo0bits -> 0x2033b84
rtl: esyms: __locale_charset -> 0x2033194
rtl: esyms: __locale_cjk_lang -> 0x20331b8
rtl: esyms: __locale_mb_cur_max -> 0x20331a0
rtl: esyms: __locale_msgcharset -> 0x20331ac
rtl: esyms: __log2table -> 0x205e7c8
rtl: esyms: __lshift -> 0x2033fc8
rtl: esyms: __mb_cur_max -> 0x205fdb0
rtl: esyms: __mcmp -> 0x20340f8
rtl: esyms: __mdiff -> 0x2034164
rtl: esyms: __moddi3 -> 0x2012014
rtl: esyms: __mprec_bigtens -> 0x205ed10
rtl: esyms: __mprec_tens -> 0x205ed38
rtl: esyms: __mprec_tinytens -> 0x205ece8
rtl: esyms: __muldi3 -> 0x2011b2c
rtl: esyms: __multadd -> 0x203393c
rtl: esyms: __multiply -> 0x2033c74
rtl: esyms: __pow5mult -> 0x2033ea4
rtl: esyms: __ratio -> 0x20345a0
rtl: esyms: __register_exitproc -> 0x202ff28
rtl: esyms: __register_frame -> 0x201715c
rtl: esyms: __register_frame_info -> 0x2017128
rtl: esyms: __register_frame_info_bases -> 0x20170f8
rtl: esyms: __register_frame_info_table -> 0x20171e8
rtl: esyms: __register_frame_info_table_bases -> 0x201718c
rtl: esyms: __register_frame_table -> 0x20171fc
rtl: esyms: __s2b -> 0x2033a24
rtl: esyms: __sclose -> 0x2034f30
rtl: esyms: __seofread -> 0x2034e6c
rtl: esyms: __sflags -> 0x2031fc8
rtl: esyms: __sflush_r -> 0x2031934
rtl: esyms: __sfmoreglue -> 0x2031d90
rtl: esyms: __sfp -> 0x2031ddc
rtl: esyms: __sfp_lock_acquire -> 0x2031f10
rtl: esyms: __sfp_lock_release -> 0x2031f18
rtl: esyms: __sfvwrite_r -> 0x2032a50
rtl: esyms: __sinit -> 0x2031eec
rtl: esyms: __sinit_lock_acquire -> 0x2031f20
rtl: esyms: __sinit_lock_release -> 0x2031f28
rtl: esyms: __smakebuf_r -> 0x20331fc
rtl: esyms: __sprint_r -> 0x2039da0
rtl: esyms: __sread -> 0x2034e18
rtl: esyms: __srefill_r -> 0x2034b50
rtl: esyms: __sseek -> 0x2034ebc
rtl: esyms: __ssprint_r -> 0x2035fac
rtl: esyms: __start_set_sysctl_set -> 0x205f6a0
rtl: esyms: __stop_set_sysctl_set -> 0x205f6a0
rtl: esyms: __swbuf -> 0x203dfec
rtl: esyms: __swbuf_r -> 0x203de6c
rtl: esyms: __swrite -> 0x2034e74
rtl: esyms: __swsetup_r -> 0x203e17c
rtl: esyms: __udivdi3 -> 0x2012434
rtl: esyms: __ulp -> 0x20342e0
rtl: esyms: __umoddi3 -> 0x201278c
rtl: esyms: __wctomb -> 0x205fdb4
rtl: esyms: _bss_start -> 0x205ffa0
rtl: esyms: _calloc_r -> 0x201a7f0
rtl: esyms: _cleanup -> 0x2031ed0
rtl: esyms: _cleanup_r -> 0x2031c44
rtl: esyms: _close_r -> 0x201ab10
rtl: esyms: _ctype_ -> 0x205e9c8
rtl: esyms: _data_start -> 0x205f6a0
rtl: esyms: _dtoa_r -> 0x203047c
rtl: esyms: _edata -> 0x205ffa0
rtl: esyms: _end -> 0x20662e0
rtl: esyms: _endtext -> 0x205f6a0
rtl: esyms: _erodata -> 0x205f670
rtl: esyms: _etext -> 0x205f668
rtl: esyms: _exit -> 0x201b8c8
rtl: esyms: _fclose_r -> 0x2031824
rtl: esyms: _fflush_r -> 0x2031bb4
rtl: esyms: _fini -> 0x205f688
rtl: esyms: _fiprintf_r -> 0x2031f60
rtl: esyms: _fopen_r -> 0x2032078
rtl: esyms: _fputc_r -> 0x2032168
rtl: esyms: _fputs_r -> 0x20321e0
rtl: esyms: _fputwc_r -> 0x20323c0
rtl: esyms: _free_r -> 0x201a804
rtl: esyms: _fseek_r -> 0x2032430
rtl: esyms: _fseeko_r -> 0x203246c
rtl: esyms: _fstat_r -> 0x201ac64
rtl: esyms: _fwalk -> 0x2032f44
rtl: esyms: _fwalk_reent -> 0x2032fb8
rtl: esyms: _fwrite_r -> 0x2033038
rtl: esyms: _getpid_r -> 0x201ad44
rtl: esyms: _gettimeofday_r -> 0x201a730
rtl: esyms: _global_atexit -> 0x2065198
rtl: esyms: _global_impure_ptr -> 0x205ecc8
rtl: esyms: _impure_ptr -> 0x205fa88
rtl: esyms: _init -> 0x205f668
rtl: esyms: _isatty -> 0x203018c
rtl: esyms: _isatty_r -> 0x201aef8
rtl: esyms: _kill_r -> 0x2027210
rtl: esyms: _localeconv_r -> 0x20331c0
rtl: esyms: _lseek_r -> 0x201b150
rtl: esyms: _malloc_r -> 0x201a814
rtl: esyms: _mprec_log10 -> 0x203462c
rtl: esyms: _open_r -> 0x201bc30
rtl: esyms: _printf_r -> 0x20347a0
rtl: esyms: _putc_r -> 0x203480c
rtl: esyms: _puts_r -> 0x203495c
rtl: esyms: _raise_r -> 0x20349fc
rtl: esyms: _read_r -> 0x201bdf8
rtl: esyms: _realloc_r -> 0x201a824
rtl: esyms: _reclaim_reent -> 0x2034a4c
rtl: esyms: _rodata_start -> 0x2046e7c
rtl: esyms: _rtld_debug -> 0x2065400
rtl: esyms: _rtld_debug_state -> 0x2020324
rtl: esyms: _rtld_linkmap_add -> 0x202032c
rtl: esyms: _rtld_linkmap_delete -> 0x20203fc
rtl: esyms: _sdata -> 0x205f6a0
rtl: esyms: _setlocale_r -> 0x2033128
rtl: esyms: _sprintf_r -> 0x2034d50
rtl: esyms: _strerror_r -> 0x203548c
rtl: esyms: _strtoul_r -> 0x2035bf8
rtl: esyms: _svfiprintf_r -> 0x2036180
rtl: esyms: _svfprintf_r -> 0x2037420
rtl: esyms: _text_start -> 0x2000000
rtl: esyms: _user_strerror -> 0x2039b68
rtl: esyms: _vfiprintf_r -> 0x2039dc4
rtl: esyms: _vfprintf_r -> 0x203b548
rtl: esyms: _vsnprintf_r -> 0x203dd7c
rtl: esyms: _wcrtomb_r -> 0x203e008
rtl: esyms: _wctomb_r -> 0x203e14c
rtl: esyms: _write_r -> 0x201f9b8
rtl: esyms: abort -> 0x20301f0
rtl: esyms: atexit -> 0x2030208
rtl: esyms: bcopy -> 0x2030224
rtl: esyms: boot_card -> 0x2017538
rtl: esyms: bsp_boot_cmdline -> 0x20652e8
rtl: esyms: bsp_console_select -> 0x2017c98
rtl: esyms: bsp_fatal_extension -> 0x20175e8
rtl: esyms: bsp_idle_thread -> 0x2017660
rtl: esyms: bsp_interrupt_facility_initialize -> 0x201808c
rtl: esyms: bsp_interrupt_handler_default -> 0x2017fbc
rtl: esyms: bsp_interrupt_handler_table -> 0x20652f0
rtl: esyms: bsp_interrupt_initialize -> 0x2017fe0
rtl: esyms: bsp_isr_handler -> 0x20175ac
rtl: esyms: bsp_libc_init -> 0x2017674
rtl: esyms: bsp_postdriver_hook -> 0x2017690
rtl: esyms: bsp_predriver_hook -> 0x20176ac
rtl: esyms: bsp_pretasking_hook -> 0x20176b8
rtl: esyms: bsp_spurious_initialize -> 0x20186c4
rtl: esyms: bsp_start -> 0x20176c4
rtl: esyms: bsp_work_area_initialize -> 0x2017608
rtl: esyms: bss_start -> 0x205ffa0
rtl: esyms: calloc -> 0x201a6c4
rtl: esyms: cleanup_glue -> 0x2034a28
rtl: esyms: close -> 0x201aa94
rtl: esyms: console_close -> 0x2017a9c
rtl: esyms: console_control -> 0x2017c78
rtl: esyms: console_inbyte_nonblocking -> 0x2017e10
rtl: esyms: console_initialize -> 0x2017b1c
rtl: esyms: console_open -> 0x2017950
rtl: esyms: console_outbyte_polled -> 0x2017dc0
rtl: esyms: console_read -> 0x2017c88
rtl: esyms: console_write -> 0x2017d88
rtl: esyms: data_start -> 0x205f6a0
rtl: esyms: device_close -> 0x2018d28
rtl: esyms: device_ftruncate -> 0x2018d88
rtl: esyms: device_ioctl -> 0x2018d70
rtl: esyms: device_open -> 0x2018d10
rtl: esyms: device_read -> 0x2018d40
rtl: esyms: device_write -> 0x2018d58
rtl: esyms: dl_load_test -> 0x2001324
rtl: esyms: dl_tar -> 0x20471f0
rtl: esyms: dl_tar_size -> 0x20471ec
rtl: esyms: dlclose -> 0x201fa54
rtl: esyms: dlerror -> 0x201fb78
rtl: esyms: dlopen -> 0x201f9d0
rtl: esyms: dlsym -> 0x201fad8
rtl: esyms: early_mem -> 0x205f748
rtl: esyms: edata -> 0x205ffa0
rtl: esyms: end -> 0x20662e0
rtl: esyms: erc32_fns -> 0x205c630
rtl: esyms: etext -> 0x205f670
rtl: esyms: exception_base -> 0x2001494
rtl: esyms: exit -> 0x20317e8
rtl: esyms: fastlz_decompress -> 0x201fb98
rtl: esyms: fclose -> 0x2031920
rtl: esyms: fflush -> 0x2031c04
rtl: esyms: fiprintf -> 0x2031f90
rtl: esyms: fopen -> 0x203214c
rtl: esyms: fputc -> 0x20321a0
rtl: esyms: fputs -> 0x2032270
rtl: esyms: fputwc -> 0x20323f0
rtl: esyms: free -> 0x201ab20
rtl: esyms: frexp -> 0x201143c
rtl: esyms: fseek -> 0x203244c
rtl: esyms: fseeko -> 0x2032a24
rtl: esyms: fstat -> 0x201abc4
rtl: esyms: ftruncate -> 0x201ac78
rtl: esyms: fwrite -> 0x20330f0
rtl: esyms: getegid -> 0x201ad0c
rtl: esyms: geteuid -> 0x201ad24
rtl: esyms: getpid -> 0x201ad3c
rtl: esyms: gettimeofday -> 0x201a6f8
rtl: esyms: hard_reset -> 0x2001000
rtl: esyms: imfs_memfile_bytes_per_block -> 0x2064e54
rtl: esyms: imfs_rq_memfile_bytes_per_block -> 0x205f734
rtl: esyms: isatty -> 0x203311c
rtl: esyms: killinfo -> 0x2027228
rtl: esyms: libc_init -> 0x201b8f0
rtl: esyms: libchip_serial_default_probe -> 0x2018440
rtl: esyms: localeconv -> 0x20331e8
rtl: esyms: lseek -> 0x201b0d8
rtl: esyms: malloc -> 0x201b170
rtl: esyms: malloc_deferred_free -> 0x201b278
rtl: esyms: malloc_deferred_frees_process -> 0x201b244
rtl: esyms: malloc_is_system_state_OK -> 0x201b21c
rtl: esyms: memchr -> 0x2033384
rtl: esyms: memcmp -> 0x20334a0
rtl: esyms: memcpy -> 0x203353c
rtl: esyms: memfile_blocks_allocated -> 0x2064e58
rtl: esyms: memmove -> 0x2033630
rtl: esyms: memset -> 0x203376c
rtl: esyms: mkdir -> 0x201b31c
rtl: esyms: mknod -> 0x201b3e4
rtl: esyms: mount -> 0x201b570
rtl: esyms: newlib_create_hook -> 0x201b8f8
rtl: esyms: newlib_terminate_hook -> 0x201b9b0
rtl: esyms: open -> 0x201b9c0
rtl: esyms: printf -> 0x20347d4
rtl: esyms: printk -> 0x201bcbc
rtl: esyms: pthread_exit -> 0x202814c
rtl: esyms: pthread_getspecific -> 0x2026ef4
rtl: esyms: pthread_key_create -> 0x2026cd0
rtl: esyms: pthread_key_delete -> 0x2026d3c
rtl: esyms: pthread_kill -> 0x2028160
rtl: esyms: pthread_self -> 0x2028240
rtl: esyms: pthread_setspecific -> 0x20270b0
rtl: esyms: putc -> 0x20348ac
rtl: esyms: puts -> 0x20349e8
rtl: esyms: raise -> 0x2034a14
rtl: esyms: rdb_start -> 0x20007c0
rtl: esyms: read -> 0x201bd58
rtl: esyms: realloc -> 0x201be10
rtl: esyms: rtems_ada_self -> 0x2065a18
rtl: esyms: rtems_assoc_local_by_remote -> 0x201a838
rtl: esyms: rtems_assoc_local_by_remote_bitfield -> 0x201a868
rtl: esyms: rtems_assoc_ptr_by_local -> 0x201a8b4
rtl: esyms: rtems_assoc_ptr_by_remote -> 0x201a934
rtl: esyms: rtems_assoc_remote_by_local -> 0x201a9b4
rtl: esyms: rtems_cache_get_instruction_line_size -> 0x2018758
rtl: esyms: rtems_cache_get_maximal_line_size -> 0x2018760
rtl: esyms: rtems_cache_instruction_sync_after_code_change -> 0x2018768
rtl: esyms: rtems_cache_invalidate_entire_instruction -> 0x2018750
rtl: esyms: rtems_clock_get_ticks_per_second -> 0x2028328
rtl: esyms: rtems_counter_initialize_converter -> 0x202996c
rtl: esyms: rtems_current_user_env_get -> 0x201bcec
rtl: esyms: rtems_current_user_env_key -> 0x20653f0
rtl: esyms: rtems_deviceio_close -> 0x201c0b8
rtl: esyms: rtems_deviceio_control -> 0x201c1c0
rtl: esyms: rtems_deviceio_open -> 0x201c084
rtl: esyms: rtems_deviceio_read -> 0x201c0e8
rtl: esyms: rtems_deviceio_write -> 0x201c154
rtl: esyms: rtems_event_receive -> 0x2028388
rtl: esyms: rtems_event_send -> 0x20285c8
rtl: esyms: rtems_event_system_send -> 0x20290e4
rtl: esyms: rtems_fatal -> 0x2029b3c
rtl: esyms: rtems_fatal_error_occurred -> 0x2029b24
rtl: esyms: rtems_filesystem_check_access -> 0x201bf94
rtl: esyms: rtems_filesystem_default_are_nodes_equal -> 0x2018920
rtl: esyms: rtems_filesystem_default_close -> 0x2018938
rtl: esyms: rtems_filesystem_default_eval_path -> 0x2018940
rtl: esyms: rtems_filesystem_default_fcntl -> 0x2018954
rtl: esyms: rtems_filesystem_default_freenode -> 0x201895c
rtl: esyms: rtems_filesystem_default_fstat -> 0x2018964
rtl: esyms: rtems_filesystem_default_fsunmount -> 0x2018974
rtl: esyms: rtems_filesystem_default_fsync_or_fdatasync -> 0x201897c
rtl: esyms: rtems_filesystem_default_fsync_or_fdatasync_success -> 0x2018998
rtl: esyms: rtems_filesystem_default_ftruncate -> 0x20189a0
rtl: esyms: rtems_filesystem_default_ftruncate_directory -> 0x20189bc
rtl: esyms: rtems_filesystem_default_ioctl -> 0x20189d8
rtl: esyms: rtems_filesystem_default_kqfilter -> 0x20189f4
rtl: esyms: rtems_filesystem_default_lock -> 0x20189fc
rtl: esyms: rtems_filesystem_default_lseek -> 0x2018a2c
rtl: esyms: rtems_filesystem_default_lseek_directory -> 0x2018a4c
rtl: esyms: rtems_filesystem_default_lseek_file -> 0x2018a94
rtl: esyms: rtems_filesystem_default_open -> 0x2018bb4
rtl: esyms: rtems_filesystem_default_pathconf -> 0x205cd0c
rtl: esyms: rtems_filesystem_default_poll -> 0x2018bbc
rtl: esyms: rtems_filesystem_default_read -> 0x2018bc4
rtl: esyms: rtems_filesystem_default_readv -> 0x2018be0
rtl: esyms: rtems_filesystem_default_statvfs -> 0x2018c5c
rtl: esyms: rtems_filesystem_default_unlock -> 0x2018a18
rtl: esyms: rtems_filesystem_default_write -> 0x2018c78
rtl: esyms: rtems_filesystem_default_writev -> 0x2018c94
rtl: esyms: rtems_filesystem_do_unmount -> 0x201ca00
rtl: esyms: rtems_filesystem_eval_path_check_access -> 0x201c050
rtl: esyms: rtems_filesystem_eval_path_cleanup -> 0x201c62c
rtl: esyms: rtems_filesystem_eval_path_cleanup_with_parent -> 0x201c668
rtl: esyms: rtems_filesystem_eval_path_continue -> 0x201c33c
rtl: esyms: rtems_filesystem_eval_path_eat_delimiter -> 0x201cdd4
rtl: esyms: rtems_filesystem_eval_path_error -> 0x201c240
rtl: esyms: rtems_filesystem_eval_path_generic -> 0x201c794
rtl: esyms: rtems_filesystem_eval_path_next_token -> 0x201ce4c
rtl: esyms: rtems_filesystem_eval_path_recursive -> 0x201c6e0
rtl: esyms: rtems_filesystem_eval_path_restart -> 0x201c67c
rtl: esyms: rtems_filesystem_eval_path_start -> 0x201c508
rtl: esyms: rtems_filesystem_eval_path_start_with_parent -> 0x201c534
rtl: esyms: rtems_filesystem_eval_path_start_with_root_and_current -> 0x201c3b0
rtl: esyms: rtems_filesystem_get_mount_handler -> 0x201b538
rtl: esyms: rtems_filesystem_global_location_assign -> 0x201cc88
rtl: esyms: rtems_filesystem_global_location_null -> 0x205f824
rtl: esyms: rtems_filesystem_global_location_obtain -> 0x201cb34
rtl: esyms: rtems_filesystem_global_location_release -> 0x201cc20
rtl: esyms: rtems_filesystem_handlers_default -> 0x205c984
rtl: esyms: rtems_filesystem_initialize -> 0x201a9e4
rtl: esyms: rtems_filesystem_iterate -> 0x201b474
rtl: esyms: rtems_filesystem_location_clone -> 0x201aa4c
rtl: esyms: rtems_filesystem_location_copy -> 0x201c994
rtl: esyms: rtems_filesystem_location_copy_and_detach -> 0x201cd40
rtl: esyms: rtems_filesystem_location_detach -> 0x201c9e4
rtl: esyms: rtems_filesystem_location_free -> 0x201ab7c
rtl: esyms: rtems_filesystem_location_remove_from_mt_entry -> 0x201ccb0
rtl: esyms: rtems_filesystem_location_transform_to_global -> 0x201cd68
rtl: esyms: rtems_filesystem_mknod -> 0x201b338
rtl: esyms: rtems_filesystem_mount_table -> 0x205f8a0
rtl: esyms: rtems_filesystem_null_handlers -> 0x205cbe0
rtl: esyms: rtems_filesystem_null_mt_entry -> 0x205f848
rtl: esyms: rtems_filesystem_root_configuration -> 0x2046fb8
rtl: esyms: rtems_filesystem_table -> 0x2047034
rtl: esyms: rtems_fs_init_helper -> 0x2047048
rtl: esyms: rtems_get_version_string -> 0x2029b54
rtl: esyms: rtems_global_user_env -> 0x205f7dc
rtl: esyms: rtems_gxx_getspecific -> 0x201adec
rtl: esyms: rtems_gxx_key_create -> 0x201ad58
rtl: esyms: rtems_gxx_key_delete -> 0x201adb0
rtl: esyms: rtems_gxx_mutex_destroy -> 0x201aec0
rtl: esyms: rtems_gxx_mutex_init -> 0x201ae58
rtl: esyms: rtems_gxx_mutex_lock -> 0x201ae9c
rtl: esyms: rtems_gxx_mutex_unlock -> 0x201aedc
rtl: esyms: rtems_gxx_once -> 0x201ad4c
rtl: esyms: rtems_gxx_setspecific -> 0x201ae10
rtl: esyms: rtems_heap_null_extend -> 0x201bf20
rtl: esyms: rtems_initialize_before_drivers -> 0x2029aa0
rtl: esyms: rtems_initialize_data_structures -> 0x20299f4
rtl: esyms: rtems_initialize_device_drivers -> 0x2029aa8
rtl: esyms: rtems_initialize_start_multitasking -> 0x2029abc
rtl: esyms: rtems_interrupt_catch -> 0x2028734
rtl: esyms: rtems_io_close -> 0x2029bac
rtl: esyms: rtems_io_control -> 0x2029c0c
rtl: esyms: rtems_io_initialize -> 0x2029c6c
rtl: esyms: rtems_io_open -> 0x2029cc8
rtl: esyms: rtems_io_read -> 0x2029d28
rtl: esyms: rtems_io_register_name -> 0x201a694
rtl: esyms: rtems_io_write -> 0x2029d88
rtl: esyms: rtems_libio_allocate -> 0x201af3c
rtl: esyms: rtems_libio_exit -> 0x201afd8
rtl: esyms: rtems_libio_exit_helper -> 0x204704c
rtl: esyms: rtems_libio_fcntl_flags -> 0x201af08
rtl: esyms: rtems_libio_free -> 0x201af94
rtl: esyms: rtems_libio_free_user_env -> 0x201bd18
rtl: esyms: rtems_libio_init -> 0x201aff8
rtl: esyms: rtems_libio_init_helper -> 0x2047054
rtl: esyms: rtems_libio_iop_freelist -> 0x20653f4
rtl: esyms: rtems_libio_iops -> 0x20651a0
rtl: esyms: rtems_libio_number_iops -> 0x2047044
rtl: esyms: rtems_libio_post_driver -> 0x201bc48
rtl: esyms: rtems_libio_post_driver_helper -> 0x2047050
rtl: esyms: rtems_libio_semaphore -> 0x20653f8
rtl: esyms: rtems_malloc_dirty_helper -> 0x205fff8
rtl: esyms: rtems_malloc_extend_handler -> 0x2046f78
rtl: esyms: rtems_maximum_priority -> 0x205f6ac
rtl: esyms: rtems_minimum_stack_size -> 0x205f6b0
rtl: esyms: rtems_putc -> 0x201bf28
rtl: esyms: rtems_rtl_alloc_del -> 0x20200bc
rtl: esyms: rtems_rtl_alloc_heap -> 0x201ffa4
rtl: esyms: rtems_rtl_alloc_initialise -> 0x201ffdc
rtl: esyms: rtems_rtl_alloc_module_del -> 0x2020140
rtl: esyms: rtems_rtl_alloc_module_new -> 0x202019c
rtl: esyms: rtems_rtl_alloc_new -> 0x2020018
rtl: esyms: rtems_rtl_base_sym_global_add -> 0x2026a9c
rtl: esyms: rtems_rtl_baseimage -> 0x2026b18
rtl: esyms: rtems_rtl_chain_iterate -> 0x20202dc
rtl: esyms: rtems_rtl_check_handle -> 0x2026748
rtl: esyms: rtems_rtl_elf_file_check -> 0x20211ac
rtl: esyms: rtems_rtl_elf_file_load -> 0x2021278
rtl: esyms: rtems_rtl_elf_file_sig -> 0x20219c4
rtl: esyms: rtems_rtl_elf_file_unload -> 0x20219ac
rtl: esyms: rtems_rtl_elf_find_symbol -> 0x2020b38
rtl: esyms: rtems_rtl_elf_rel_resolve_sym -> 0x2021c8c
rtl: esyms: rtems_rtl_elf_relocate_rel -> 0x2021ec8
rtl: esyms: rtems_rtl_elf_relocate_rela -> 0x2021ca4
rtl: esyms: rtems_rtl_elf_section_flags -> 0x2021c84
rtl: esyms: rtems_rtl_elf_unwind_deregister -> 0x2021efc
rtl: esyms: rtems_rtl_elf_unwind_dw2_deregister -> 0x2026104
rtl: esyms: rtems_rtl_elf_unwind_dw2_parse -> 0x2026060
rtl: esyms: rtems_rtl_elf_unwind_dw2_register -> 0x20260b4
rtl: esyms: rtems_rtl_elf_unwind_parse -> 0x2021ee4
rtl: esyms: rtems_rtl_elf_unwind_register -> 0x2021ef0
rtl: esyms: rtems_rtl_find_file -> 0x2021a74
rtl: esyms: rtems_rtl_find_obj -> 0x2026798
rtl: esyms: rtems_rtl_get_error -> 0x2021a18
rtl: esyms: rtems_rtl_global_symbols -> 0x2026154
rtl: esyms: rtems_rtl_load_object -> 0x2026890
rtl: esyms: rtems_rtl_lock -> 0x2026450
rtl: esyms: rtems_rtl_match_name -> 0x2023008
rtl: esyms: rtems_rtl_obj_add_section -> 0x202370c
rtl: esyms: rtems_rtl_obj_alloc -> 0x2022d3c
rtl: esyms: rtems_rtl_obj_cache_close -> 0x2021f74
rtl: esyms: rtems_rtl_obj_cache_flush -> 0x2021fc4
rtl: esyms: rtems_rtl_obj_cache_open -> 0x2021f08
rtl: esyms: rtems_rtl_obj_cache_read -> 0x202200c
rtl: esyms: rtems_rtl_obj_cache_read_byval -> 0x202248c
rtl: esyms: rtems_rtl_obj_caches -> 0x20261bc
rtl: esyms: rtems_rtl_obj_caches_flush -> 0x202622c
rtl: esyms: rtems_rtl_obj_comp -> 0x202626c
rtl: esyms: rtems_rtl_obj_comp_close -> 0x202256c
rtl: esyms: rtems_rtl_obj_comp_open -> 0x20224f4
rtl: esyms: rtems_rtl_obj_comp_read -> 0x20225c8
rtl: esyms: rtems_rtl_obj_comp_set -> 0x20225ac
rtl: esyms: rtems_rtl_obj_find_file -> 0x2023678
rtl: esyms: rtems_rtl_obj_find_section -> 0x20237e8
rtl: esyms: rtems_rtl_obj_find_section_by_index -> 0x2023814
rtl: esyms: rtems_rtl_obj_free -> 0x2022d7c
rtl: esyms: rtems_rtl_obj_load -> 0x2023df4
rtl: esyms: rtems_rtl_obj_load_sections -> 0x20239a0
rtl: esyms: rtems_rtl_obj_load_symbols -> 0x202392c
rtl: esyms: rtems_rtl_obj_relocate -> 0x2023840
rtl: esyms: rtems_rtl_obj_relocate_unresolved -> 0x2021020
rtl: esyms: rtems_rtl_obj_run_ctors -> 0x2023dd4
rtl: esyms: rtems_rtl_obj_run_dtors -> 0x2023de4
rtl: esyms: rtems_rtl_obj_synchronize_cache -> 0x20238b4
rtl: esyms: rtems_rtl_obj_unload -> 0x2023f50
rtl: esyms: rtems_rtl_parse_name -> 0x2022e88
rtl: esyms: rtems_rtl_rap_file_check -> 0x2024170
rtl: esyms: rtems_rtl_rap_file_load -> 0x2024238
rtl: esyms: rtems_rtl_rap_file_sig -> 0x20250f4
rtl: esyms: rtems_rtl_rap_file_unload -> 0x20250ec
rtl: esyms: rtems_rtl_set_error -> 0x20219d0
rtl: esyms: rtems_rtl_strdup -> 0x2025100
rtl: esyms: rtems_rtl_symbol_global_add -> 0x2025310
rtl: esyms: rtems_rtl_symbol_global_find -> 0x2025250
rtl: esyms: rtems_rtl_symbol_obj_add -> 0x2025614
rtl: esyms: rtems_rtl_symbol_obj_erase -> 0x202568c
rtl: esyms: rtems_rtl_symbol_obj_erase_local -> 0x202565c
rtl: esyms: rtems_rtl_symbol_obj_find -> 0x2025580
rtl: esyms: rtems_rtl_symbol_table_close -> 0x202523c
rtl: esyms: rtems_rtl_symbol_table_open -> 0x202519c
rtl: esyms: rtems_rtl_trace -> 0x2025724
rtl: esyms: rtems_rtl_trace_set_mask -> 0x202573c
rtl: esyms: rtems_rtl_unload_object -> 0x20269b8
rtl: esyms: rtems_rtl_unlock -> 0x202629c
rtl: esyms: rtems_rtl_unresolved -> 0x2026188
rtl: esyms: rtems_rtl_unresolved_add -> 0x2025b84
rtl: esyms: rtems_rtl_unresolved_interate -> 0x20259b8
rtl: esyms: rtems_rtl_unresolved_resolve -> 0x2025e94
rtl: esyms: rtems_rtl_unresolved_table_close -> 0x2025984
rtl: esyms: rtems_rtl_unresolved_table_open -> 0x2025958
rtl: esyms: rtems_semaphore_create -> 0x20288dc
rtl: esyms: rtems_semaphore_delete -> 0x2028af8
rtl: esyms: rtems_semaphore_obtain -> 0x2028c6c
rtl: esyms: rtems_semaphore_release -> 0x2028f20
rtl: esyms: rtems_shutdown_executive -> 0x2029ad4
rtl: esyms: rtems_status_code_to_errno -> 0x20290a0
rtl: esyms: rtems_task_create -> 0x2029130
rtl: esyms: rtems_task_delete -> 0x2029264
rtl: esyms: rtems_task_mode -> 0x20293c4
rtl: esyms: rtems_task_start -> 0x20297a0
rtl: esyms: rtems_task_wake_after -> 0x202989c
rtl: esyms: rtems_termios_baud_table -> 0x205ce10
rtl: esyms: rtems_termios_close -> 0x201dbdc
rtl: esyms: rtems_termios_enqueue_raw_characters -> 0x201eef8
rtl: esyms: rtems_termios_initialize -> 0x201f304
rtl: esyms: rtems_termios_ioctl -> 0x201dcd4
rtl: esyms: rtems_termios_linesw -> 0x2064e68
rtl: esyms: rtems_termios_number_to_baud -> 0x201f2ac
rtl: esyms: rtems_termios_open -> 0x201dae8
rtl: esyms: rtems_termios_puts -> 0x201e17c
rtl: esyms: rtems_termios_read -> 0x201eaa8
rtl: esyms: rtems_termios_set_initial_baud -> 0x201f2c4
rtl: esyms: rtems_termios_ttyMutex -> 0x20653fc
rtl: esyms: rtems_termios_write -> 0x201e9cc
rtl: esyms: rtems_test_begin_with_plugin -> 0x202fbf4
rtl: esyms: rtems_test_end_with_plugin -> 0x202fc18
rtl: esyms: rtems_test_fatal_extension -> 0x202fc3c
rtl: esyms: rtems_test_name -> 0x2047058
rtl: esyms: rtems_timecounter_simple_install -> 0x2029eb8
rtl: esyms: set_vector -> 0x2018448
rtl: esyms: setlocale -> 0x20331cc
rtl: esyms: sigemptyset -> 0x20282bc
rtl: esyms: sparc_syscall_exit -> 0x20188c4
rtl: esyms: sprintf -> 0x2034db0
rtl: esyms: start -> 0x2000000
rtl: esyms: stat -> 0x201bf44
rtl: esyms: strchr -> 0x2034f40
rtl: esyms: strcmp -> 0x2035104
rtl: esyms: strcpy -> 0x20351d0
rtl: esyms: strerror -> 0x20358a8
rtl: esyms: strlen -> 0x20358c4
rtl: esyms: strncmp -> 0x2035984
rtl: esyms: strncpy -> 0x2035ab0
rtl: esyms: strrchr -> 0x2035bb4
rtl: esyms: strtoul -> 0x2035e1c
rtl: esyms: symlink -> 0x201cf64
rtl: esyms: syscall -> 0x20188c0
rtl: esyms: syscall_irqdis -> 0x20188e0
rtl: esyms: syscall_irqen -> 0x2018900
rtl: esyms: text_start -> 0x2000000
rtl: esyms: time -> 0x2039b28
rtl: esyms: trap_table -> 0x2000000
rtl: esyms: unlink -> 0x201f354
rtl: esyms: vfiprintf -> 0x203b314
rtl: esyms: vfprintf -> 0x203dcb4
rtl: esyms: vprintk -> 0x201f3d8
rtl: esyms: vsnprintf -> 0x203de40
rtl: esyms: wcrtomb -> 0x203e088
rtl: esyms: window_flush_trap_handler -> 0x20187fc
rtl: esyms: window_overflow_trap_handler -> 0x2018770
rtl: esyms: window_underflow_trap_handler -> 0x20187ac
rtl: esyms: write -> 0x201f918
rtl: esyms: _ZGVNSt10moneypunctIcLb0EE2idE -> 0x2064d50
rtl: esyms: _ZGVNSt10moneypunctIcLb1EE2idE -> 0x2064d48
rtl: esyms: _ZGVNSt10moneypunctIwLb0EE2idE -> 0x2064cf0
rtl: esyms: _ZGVNSt10moneypunctIwLb1EE2idE -> 0x2064ce8
rtl: esyms: _ZGVNSt11__timepunctIcE2idE -> 0x2064d18
rtl: esyms: _ZGVNSt11__timepunctIwE2idE -> 0x2064cb8
rtl: esyms: _ZGVNSt7collateIcE2idE -> 0x2064cf8
rtl: esyms: _ZGVNSt7collateIwE2idE -> 0x2064c98
rtl: esyms: _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE -> 0x2064d28
rtl: esyms: _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE -> 0x2064cc8
rtl: esyms: _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE -> 0x2064d20
rtl: esyms: _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE -> 0x2064cc0
rtl: esyms: _ZGVNSt8messagesIcE2idE -> 0x2064d00
rtl: esyms: _ZGVNSt8messagesIwE2idE -> 0x2064ca0
rtl: esyms: _ZGVNSt8numpunctIcE2idE -> 0x2064d30
rtl: esyms: _ZGVNSt8numpunctIwE2idE -> 0x2064cd0
rtl: esyms: _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE -> 0x2064d08
rtl: esyms: _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE -> 0x2064ca8
rtl: esyms: _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE -> 0x2064d10
rtl: esyms: _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE -> 0x2064cb0
rtl: esyms: _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE -> 0x2064d40
rtl: esyms: _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE -> 0x2064ce0
rtl: esyms: _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE -> 0x2064d38
rtl: esyms: _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE -> 0x2064cd8
rtl: esyms: _ZN16dl_test_throw_meD1Ev -> 0x200148c
rtl: esyms: _ZN16dl_test_throw_meD2Ev -> 0x200148c
rtl: esyms: _ZN17__eh_globals_initD1Ev -> 0x2001908
rtl: esyms: _ZN17__eh_globals_initD2Ev -> 0x2001908
rtl: esyms: _ZN9__gnu_cxx15_Atomicity_lockILi0EE17_S_atomicity_lockE -> 0x2064c90
rtl: esyms: _ZN9__gnu_cxx24__concurrence_lock_errorD0Ev -> 0x2001b1c
rtl: esyms: _ZN9__gnu_cxx24__concurrence_lock_errorD1Ev -> 0x2001aec
rtl: esyms: _ZN9__gnu_cxx24__concurrence_lock_errorD2Ev -> 0x2001aec
rtl: esyms: _ZN9__gnu_cxx26__concurrence_unlock_errorD0Ev -> 0x2001b3c
rtl: esyms: _ZN9__gnu_cxx26__concurrence_unlock_errorD1Ev -> 0x2001b04
rtl: esyms: _ZN9__gnu_cxx26__concurrence_unlock_errorD2Ev -> 0x2001b04
rtl: esyms: _ZN9__gnu_cxx30__throw_concurrence_lock_errorEv -> 0x2001b68
rtl: esyms: _ZN9__gnu_cxx32__throw_concurrence_unlock_errorEv -> 0x2001b98
rtl: esyms: _ZN9__gnu_cxx7__mutexD1Ev -> 0x2001b5c
rtl: esyms: _ZN9__gnu_cxx7__mutexD2Ev -> 0x2001b5c
rtl: esyms: _ZNK9__gnu_cxx24__concurrence_lock_error4whatEv -> 0x2001ad4
rtl: esyms: _ZNK9__gnu_cxx26__concurrence_unlock_error4whatEv -> 0x2001ae0
rtl: esyms: _ZNSs12_S_constructIPKcEEPcT_S3_RKSaIcESt20forward_iterator_tag -> 0x2011158
rtl: esyms: _ZNSs4_Rep10_M_destroyERKSaIcE -> 0x201104c
rtl: esyms: _ZNSs4_Rep20_S_empty_rep_storageE -> 0x2064d58
rtl: esyms: _ZNSs4_Rep8_M_cloneERKSaIcEj -> 0x2011058
rtl: esyms: _ZNSs4_Rep9_S_createEjjRKSaIcE -> 0x2010fb4
rtl: esyms: _ZNSsC1EPKcRKSaIcE -> 0x20111fc
rtl: esyms: _ZNSsC1ERKSs -> 0x20110f0
rtl: esyms: _ZNSsC2EPKcRKSaIcE -> 0x20111fc
rtl: esyms: _ZNSsC2ERKSs -> 0x20110f0
rtl: esyms: _ZTI16dl_test_throw_me -> 0x20471d0
rtl: esyms: _ZTIN10__cxxabiv115__forced_unwindE -> 0x205ace8
rtl: esyms: _ZTIN10__cxxabiv117__class_type_infoE -> 0x205ac2c
rtl: esyms: _ZTIN10__cxxabiv119__foreign_exceptionE -> 0x205ad14
rtl: esyms: _ZTIN10__cxxabiv120__si_class_type_infoE -> 0x205c128
rtl: esyms: _ZTIN9__gnu_cxx24__concurrence_lock_errorE -> 0x205ad88
rtl: esyms: _ZTIN9__gnu_cxx26__concurrence_unlock_errorE -> 0x205adc0
rtl: esyms: _ZTISt11logic_error -> 0x205c178
rtl: esyms: _ZTISt12length_error -> 0x205c19c
rtl: esyms: _ZTISt13bad_exception -> 0x205acbc
rtl: esyms: _ZTISt13runtime_error -> 0x205c1bc
rtl: esyms: _ZTISt14error_category -> 0x205c2ac
rtl: esyms: _ZTISt9bad_alloc -> 0x205c0d8
rtl: esyms: _ZTISt9exception -> 0x205aca0
rtl: esyms: _ZTISt9type_info -> 0x205ae40
rtl: esyms: _ZTS16dl_test_throw_me -> 0x20471d8
rtl: esyms: _ZTSN10__cxxabiv115__forced_unwindE -> 0x205acc8
rtl: esyms: _ZTSN10__cxxabiv117__class_type_infoE -> 0x205ac08
rtl: esyms: _ZTSN10__cxxabiv119__foreign_exceptionE -> 0x205acf0
rtl: esyms: _ZTSN10__cxxabiv120__si_class_type_infoE -> 0x205c100
rtl: esyms: _ZTSN9__gnu_cxx24__concurrence_lock_errorE -> 0x205ad98
rtl: esyms: _ZTSN9__gnu_cxx26__concurrence_unlock_errorE -> 0x205add0
rtl: esyms: _ZTSSt11logic_error -> 0x205c168
rtl: esyms: _ZTSSt12length_error -> 0x205c188
rtl: esyms: _ZTSSt13bad_exception -> 0x205aca8
rtl: esyms: _ZTSSt13runtime_error -> 0x205c1a8
rtl: esyms: _ZTSSt14error_category -> 0x205c298
rtl: esyms: _ZTSSt9bad_alloc -> 0x205c0c8
rtl: esyms: _ZTSSt9exception -> 0x205ac90
rtl: esyms: _ZTSSt9type_info -> 0x205ae30
rtl: esyms: _ZTVN10__cxxabiv117__class_type_infoE -> 0x205ac38
rtl: esyms: _ZTVN10__cxxabiv120__si_class_type_infoE -> 0x205c138
rtl: esyms: _ZTVN9__gnu_cxx24__concurrence_lock_errorE -> 0x205ae00
rtl: esyms: _ZTVN9__gnu_cxx26__concurrence_unlock_errorE -> 0x205ae18
rtl: esyms: _ZTVSt11logic_error -> 0x205c1c8
rtl: esyms: _ZTVSt12length_error -> 0x205c1e0
rtl: esyms: _ZTVSt13bad_exception -> 0x205ad20
rtl: esyms: _ZTVSt13runtime_error -> 0x205c1f8
rtl: esyms: _ZTVSt9bad_alloc -> 0x205c0e8
rtl: esyms: rtems_rtl_base_global_syms_init -> 0x2001680
rtl: loading '/dl-o5.o'
rtl: alloc: new: OBJECT addr=0x208fa40 size=9
rtl: alloc: del: OBJECT addr=0x0
rtl: alloc: new: OBJECT addr=0x20a2fb0 size=144
rtl: alloc: new: OBJECT addr=0x208fa58 size=9
rtl: alloc: new: OBJECT addr=0x208fa70 size=9
rtl: section header:  0: offset=41488
rtl: section:  0: type=0 flags=00000000 link=0 info=0
rtl: section header:  1: offset=41528
rtl: section:  1: type=17 flags=00000000 link=33 info=21
rtl: unsupported section:  1: type=17 flags=00
rtl: section header:  2: offset=41568
rtl: section:  2: type=17 flags=00000000 link=33 info=38
rtl: unsupported section:  2: type=17 flags=00
rtl: section header:  3: offset=41608
rtl: section:  3: type=17 flags=00000000 link=33 info=48
rtl: unsupported section:  3: type=17 flags=00
rtl: section header:  4: offset=41648
rtl: section:  4: type=1 flags=00000006 link=0 info=0
rtl: section header:  5: offset=41688
rtl: section:  5: type=1 flags=00000003 link=0 info=0
rtl: section header:  6: offset=41728
rtl: section:  6: type=8 flags=00000003 link=0 info=0
rtl: section header:  7: offset=41768
rtl: section:  7: type=1 flags=00000206 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a3048 size=56
rtl: alloc: new: OBJECT addr=0x20a3088 size=32
rtl: sect: 7 : .text._ZN16dl_test_throw_meD2Ev (8)
rtl: section header:  8: offset=41808
rtl: section:  8: type=1 flags=00000032 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a30b0 size=56
rtl: alloc: new: OBJECT addr=0x208fa88 size=15
rtl: sect: 8 : .rodata.str1.8 (181)
rtl: section header:  9: offset=41848
rtl: section:  9: type=1 flags=00000006 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a30f0 size=56
rtl: alloc: new: OBJECT addr=0x20a3130 size=19
rtl: sect: 9 : .text.exception_dl (504)
rtl: section header: 10: offset=41888
rtl: section: 10: type=4 flags=00000040 link=33 info=9
rtl: alloc: new: OBJECT addr=0x20a3150 size=56
rtl: alloc: new: OBJECT addr=0x20a3190 size=24
rtl: sect: 10: .rela.text.exception_dl (732)
rtl: section header: 11: offset=41928
rtl: section: 11: type=1 flags=00000002 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a31b0 size=56
rtl: alloc: new: OBJECT addr=0x20a31f0 size=31
rtl: sect: 11: .gcc_except_table.exception_dl (80)
rtl: section header: 12: offset=41968
rtl: section: 12: type=4 flags=00000040 link=33 info=11
rtl: alloc: new: OBJECT addr=0x20a3218 size=56
rtl: alloc: new: OBJECT addr=0x20a3258 size=36
rtl: sect: 12: .rela.gcc_except_table.exception_dl (24)
rtl: section header: 13: offset=42008
rtl: section: 13: type=1 flags=00000002 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a3288 size=56
rtl: alloc: new: OBJECT addr=0x20a32c8 size=36
rtl: sect: 13: .rodata._ZZ12exception_dlE8__func__ (13)
rtl: section header: 14: offset=42048
rtl: section: 14: type=1 flags=00000202 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a32f8 size=56
rtl: alloc: new: OBJECT addr=0x20a3338 size=31
rtl: sect: 14: .rodata._ZTI16dl_test_throw_me (8)
rtl: section header: 15: offset=42088
rtl: section: 15: type=4 flags=00000040 link=33 info=14
rtl: alloc: new: OBJECT addr=0x20a3360 size=56
rtl: alloc: new: OBJECT addr=0x20a33a0 size=36
rtl: sect: 15: .rela.rodata._ZTI16dl_test_throw_me (24)
rtl: section header: 16: offset=42128
rtl: section: 16: type=1 flags=00000202 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a33d0 size=56
rtl: alloc: new: OBJECT addr=0x20a3410 size=31
rtl: sect: 16: .rodata._ZTS16dl_test_throw_me (19)
rtl: section header: 17: offset=42168
rtl: section: 17: type=1 flags=00000000 link=0 info=0
rtl: section header: 18: offset=42208
rtl: section: 18: type=4 flags=00000040 link=33 info=17
rtl: alloc: new: OBJECT addr=0x20a3438 size=56
rtl: alloc: new: OBJECT addr=0x20a3478 size=17
rtl: sect: 18: .rela.debug_info (9048)
rtl: section header: 19: offset=42248
rtl: section: 19: type=1 flags=00000000 link=0 info=0
rtl: section header: 20: offset=42288
rtl: section: 20: type=1 flags=00000000 link=0 info=0
rtl: section header: 21: offset=42328
rtl: section: 21: type=4 flags=00000040 link=33 info=20
rtl: alloc: new: OBJECT addr=0x20a3498 size=56
rtl: alloc: new: OBJECT addr=0x20a34d8 size=16
rtl: sect: 21: .rela.debug_loc (732)
rtl: section header: 22: offset=42368
rtl: section: 22: type=1 flags=00000000 link=0 info=0
rtl: section header: 23: offset=42408
rtl: section: 23: type=4 flags=00000040 link=33 info=22
rtl: alloc: new: OBJECT addr=0x20a34f0 size=56
rtl: alloc: new: OBJECT addr=0x20a3530 size=20
rtl: sect: 23: .rela.debug_aranges (36)
rtl: section header: 24: offset=42448
rtl: section: 24: type=1 flags=00000000 link=0 info=0
rtl: section header: 25: offset=42488
rtl: section: 25: type=4 flags=00000040 link=33 info=24
rtl: alloc: new: OBJECT addr=0x20a3550 size=56
rtl: alloc: new: OBJECT addr=0x20a3590 size=19
rtl: sect: 25: .rela.debug_ranges (576)
rtl: section header: 26: offset=42528
rtl: section: 26: type=1 flags=00000000 link=0 info=0
rtl: section header: 27: offset=42568
rtl: section: 27: type=4 flags=00000040 link=33 info=26
rtl: alloc: new: OBJECT addr=0x20a35b0 size=56
rtl: alloc: new: OBJECT addr=0x20a35f0 size=17
rtl: sect: 27: .rela.debug_line (24)
rtl: section header: 28: offset=42608
rtl: section: 28: type=1 flags=00000030 link=0 info=0
rtl: section header: 29: offset=42648
rtl: section: 29: type=1 flags=00000030 link=0 info=0
rtl: section header: 30: offset=42688
rtl: section: 30: type=1 flags=00000002 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a3610 size=56
rtl: alloc: new: OBJECT addr=0x20a3650 size=10
rtl: sect: 30: .eh_frame (96)
rtl: section header: 31: offset=42728
rtl: section: 31: type=4 flags=00000040 link=33 info=30
rtl: alloc: new: OBJECT addr=0x20a3668 size=56
rtl: alloc: new: OBJECT addr=0x20a36a8 size=15
rtl: sect: 31: .rela.eh_frame (48)
rtl: section header: 32: offset=42768
rtl: section: 32: type=3 flags=00000000 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a36c0 size=56
rtl: alloc: new: OBJECT addr=0x20a3700 size=10
rtl: sect: 32: .shstrtab (399)
rtl: section header: 33: offset=42808
rtl: section: 33: type=2 flags=00000000 link=34 info=26
rtl: alloc: new: OBJECT addr=0x20a3718 size=56
rtl: alloc: new: OBJECT addr=0x20a3758 size=8
rtl: sect: 33: .symtab (784)
rtl: section header: 34: offset=42848
rtl: section: 34: type=3 flags=00000000 link=0 info=0
rtl: alloc: new: OBJECT addr=0x20a3768 size=56
rtl: alloc: new: OBJECT addr=0x20a37a8 size=8
rtl: sect: 34: .strtab (569)
rtl: alloc: new: READ_EXEC addr=0x20a37b8 size=520
rtl: alloc: new: READ addr=0x20a39c8 size=231
rtl: alloc: new: READ addr=0x20a3ab8 size=176
rtl: load sect: text  - b:0x20a37b8 s:520 a:4
rtl: load sect: const - b:0x20a39c8 s:231 a:8
rtl: load sect: eh    - b:0x20a3ab8 s:176 a:4
rtl: load sect: data  - b:0x0 s:0 a:0
rtl: load sect: bss   - b:0x0 s:0 a:0
rtl: loading: 0: .text._ZN16dl_test_throw_meD2Ev -> 0x20a37b8 (s:8 f:0401 a:4 l:00)
rtl: loading: 1: .text.exception_dl -> 0x20a37c0 (s:504 f:0401 a:4 l:00)
rtl: loading: 0: .rodata.str1.8 -> 0x20a39c8 (s:181 f:0402 a:8 l:00)
rtl: loading: 1: .rodata._ZZ12exception_dlE8__func__ -> 0x20a3a80 (s:13 f:0402 a:8 l:00)
rtl: loading: 2: .rodata._ZTI16dl_test_throw_me -> 0x20a3a90 (s:8 f:0402 a:4 l:00)
rtl: loading: 3: .rodata._ZTS16dl_test_throw_me -> 0x20a3a98 (s:19 f:0402 a:8 l:00)
rtl: loading: 0: .gcc_except_table.exception_dl -> 0x20a3ab8 (s:80 f:0410 a:4 l:00)
rtl: loading: 1: .eh_frame -> 0x20a3b08 (s:96 f:0410 a:4 l:00)
rtl: alloc: new: SYMBOL addr=0x20a3b70 size=48
rtl: alloc: new: SYMBOL addr=0x20a3ba8 size=211
rtl: sym:add:8  name:11:_ZZ12exception_dlE8__func__ bind:0  type:1  val:0x20a3a80 sect:13 size:13
rtl: sym:add:26 name:65:_ZN16dl_test_throw_meD2Ev bind:2  type:2  val:0x20a37b8 sect:7 size:8
rtl: sym:add:27 name:91:_ZN16dl_test_throw_meD1Ev bind:2  type:2  val:0x20a37b8 sect:7 size:8
rtl: sym:add:28 name:117:exception_dl         bind:1  type:2  val:0x20a37c0 sect:9 size:504
rtl: sym:add:38 name:321:_ZTI16dl_test_throw_me bind:2  type:1  val:0x20a3a90 sect:14 size:8
rtl: sym:add:48 name:546:_ZTS16dl_test_throw_me bind:2  type:1  val:0x20a3a98 sect:16 size:19
rtl: relocation: .rela.text.exception_dl, syms:.symtab
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000004 addend:0
rtl: HI22 0x1100828e @ 0x20a37c4 in /dl-o5.o
rtl: rela: sym:puts(30)=020349e8 type:7 off:00000008 addend:0
rtl: WDISP_30 0x7ffe4488 @ 0x20a37c8 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:0000000c addend:0
rtl: LO10 0x901221c8 @ 0x20a37cc in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000010 addend:24
rtl: HI22 0x1100828e @ 0x20a37d0 in /dl-o5.o
rtl: rela: sym:puts(30)=020349e8 type:7 off:00000014 addend:0
rtl: WDISP_30 0x7ffe4485 @ 0x20a37d4 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:00000018 addend:24
rtl: LO10 0x901221e0 @ 0x20a37d8 in /dl-o5.o
rtl: rela: sym:__cxa_allocate_exception(31)=02001c5c type:7 off:00000028 addend:0
rtl: WDISP_30 0x7ffd791d @ 0x20a37e8 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000030 addend:56
rtl: HI22 0x1300828e @ 0x20a37f0 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:00000038 addend:56
rtl: LO10 0x92126200 @ 0x20a37f8 in /dl-o5.o
rtl: rela: sym:_ZNSsC1EPKcRKSaIcE(32)=020111fc type:7 off:00000040 addend:0
rtl: WDISP_30 0x7ffdb67f @ 0x20a3800 in /dl-o5.o
rtl: rela: sym:_ZNSt13runtime_errorC1ERKSs(33)=02010b3c type:7 off:0000004c addend:0
rtl: WDISP_30 0x7ffdb4cc @ 0x20a380c in /dl-o5.o
rtl: rela: sym:_ZNSs4_Rep20_S_empty_rep_storageE(34)=02064d58 type:9 off:00000058 addend:0
rtl: HI22 0x3008193 @ 0x20a3818 in /dl-o5.o
rtl: rela: sym:_ZNSs4_Rep20_S_empty_rep_storageE(34)=02064d58 type:12 off:00000060 addend:0
rtl: LO10 0x82106158 @ 0x20a3820 in /dl-o5.o
rtl: rela: sym:_ZTISt13runtime_error(35)=0205c1bc type:9 off:00000070 addend:0
rtl: HI22 0x13008170 @ 0x20a3830 in /dl-o5.o
rtl: rela: sym:_ZNSt13runtime_errorD1Ev(36)=02010a6c type:9 off:00000074 addend:0
rtl: HI22 0x15008042 @ 0x20a3834 in /dl-o5.o
rtl: rela: sym:_ZTISt13runtime_error(35)=0205c1bc type:12 off:0000007c addend:0
rtl: LO10 0x921261bc @ 0x20a383c in /dl-o5.o
rtl: rela: sym:__cxa_throw(37)=02010400 type:7 off:00000080 addend:0
rtl: WDISP_30 0x7ffdb2f0 @ 0x20a3840 in /dl-o5.o
rtl: rela: sym:_ZNSt13runtime_errorD1Ev(36)=02010a6c type:12 off:00000084 addend:0
rtl: LO10 0x9412a26c @ 0x20a3844 in /dl-o5.o
rtl: rela: sym:__cxa_allocate_exception(31)=02001c5c type:7 off:00000088 addend:0
rtl: WDISP_30 0x7ffd7905 @ 0x20a3848 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000090 addend:88
rtl: HI22 0x300828e @ 0x20a3850 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:00000094 addend:88
rtl: LO10 0x82106220 @ 0x20a3854 in /dl-o5.o
rtl: rela: sym:(null)(38)=020a3a90 type:9 off:00000098 addend:0
rtl: HI22 0x1300828e @ 0x20a3858 in /dl-o5.o
rtl: rela: sym:(null)(27)=020a37b8 type:9 off:0000009c addend:0
rtl: HI22 0x1500828d @ 0x20a385c in /dl-o5.o
rtl: rela: sym:(null)(38)=020a3a90 type:12 off:000000a4 addend:0
rtl: LO10 0x92126290 @ 0x20a3864 in /dl-o5.o
rtl: rela: sym:__cxa_throw(37)=02010400 type:7 off:000000a8 addend:0
rtl: WDISP_30 0x7ffdb2e6 @ 0x20a3868 in /dl-o5.o
rtl: rela: sym:(null)(27)=020a37b8 type:12 off:000000ac addend:0
rtl: LO10 0x9412a3b8 @ 0x20a386c in /dl-o5.o
rtl: rela: sym:_ZN9__gnu_cxx18__exchange_and_addEPVii(39)=0201094c type:7 off:000000b0 addend:0
rtl: WDISP_30 0x7ffdb437 @ 0x20a3870 in /dl-o5.o
rtl: rela: sym:_ZTISt13runtime_error(35)=0205c1bc type:9 off:000000c0 addend:0
rtl: HI22 0x13008170 @ 0x20a3880 in /dl-o5.o
rtl: rela: sym:_ZNSs4_Rep10_M_destroyERKSaIcE(40)=0201104c type:7 off:000000c8 addend:0
rtl: WDISP_30 0x7ffdb5f1 @ 0x20a3888 in /dl-o5.o
rtl: rela: sym:_ZTISt13runtime_error(35)=0205c1bc type:9 off:000000d4 addend:0
rtl: HI22 0x13008170 @ 0x20a3894 in /dl-o5.o
rtl: rela: sym:__cxa_begin_catch(41)=02001ec4 type:7 off:000000f0 addend:0
rtl: WDISP_30 0x7ffd7985 @ 0x20a38b0 in /dl-o5.o
rtl: rela: sym:(null)(10)=020a3a80 type:9 off:00000108 addend:0
rtl: HI22 0x1300828e @ 0x20a38c8 in /dl-o5.o
rtl: rela: sym:(null)(10)=020a3a80 type:12 off:00000110 addend:0
rtl: LO10 0x92126280 @ 0x20a38d0 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000114 addend:120
rtl: HI22 0x1100828e @ 0x20a38d4 in /dl-o5.o
rtl: rela: sym:printf(42)=020347d4 type:7 off:00000118 addend:0
rtl: WDISP_30 0x7ffe43bf @ 0x20a38d8 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:0000011c addend:120
rtl: LO10 0x90122240 @ 0x20a38dc in /dl-o5.o
rtl: rela: sym:__cxa_end_catch(43)=02001f70 type:7 off:00000120 addend:0
rtl: WDISP_30 0x7ffd79a4 @ 0x20a38e0 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000128 addend:136
rtl: HI22 0x1100828e @ 0x20a38e8 in /dl-o5.o
rtl: rela: sym:puts(30)=020349e8 type:7 off:0000012c addend:0
rtl: WDISP_30 0x7ffe443f @ 0x20a38ec in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:00000130 addend:136
rtl: LO10 0x90122250 @ 0x20a38f0 in /dl-o5.o
rtl: rela: sym:_ZNSs4_Rep20_S_empty_rep_storageE(34)=02064d58 type:9 off:00000140 addend:0
rtl: HI22 0x3008193 @ 0x20a3900 in /dl-o5.o
rtl: rela: sym:_ZNSs4_Rep20_S_empty_rep_storageE(34)=02064d58 type:12 off:00000148 addend:0
rtl: LO10 0x82106158 @ 0x20a3908 in /dl-o5.o
rtl: rela: sym:__cxa_free_exception(44)=02001d4c type:7 off:00000158 addend:0
rtl: WDISP_30 0x7ffd790d @ 0x20a3918 in /dl-o5.o
rtl: rela: sym:__cxa_begin_catch(41)=02001ec4 type:7 off:0000016c addend:0
rtl: WDISP_30 0x7ffd7966 @ 0x20a392c in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:00000174 addend:160
rtl: HI22 0x1100828e @ 0x20a3934 in /dl-o5.o
rtl: rela: sym:(null)(10)=020a3a80 type:9 off:00000178 addend:0
rtl: HI22 0x1300828e @ 0x20a3938 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:0000017c addend:160
rtl: LO10 0x90122268 @ 0x20a393c in /dl-o5.o
rtl: rela: sym:printf(42)=020347d4 type:7 off:00000180 addend:0
rtl: WDISP_30 0x7ffe43a5 @ 0x20a3940 in /dl-o5.o
rtl: rela: sym:(null)(10)=020a3a80 type:12 off:00000184 addend:0
rtl: LO10 0x92126280 @ 0x20a3944 in /dl-o5.o
rtl: rela: sym:__cxa_begin_catch(41)=02001ec4 type:7 off:0000018c addend:0
rtl: WDISP_30 0x7ffd795e @ 0x20a394c in /dl-o5.o
rtl: rela: sym:(null)(10)=020a3a80 type:9 off:00000198 addend:0
rtl: HI22 0x1300828e @ 0x20a3958 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:9 off:0000019c addend:120
rtl: HI22 0x1100828e @ 0x20a395c in /dl-o5.o
rtl: rela: sym:(null)(10)=020a3a80 type:12 off:000001a0 addend:0
rtl: LO10 0x92126280 @ 0x20a3960 in /dl-o5.o
rtl: rela: sym:printf(42)=020347d4 type:7 off:000001a4 addend:0
rtl: WDISP_30 0x7ffe439c @ 0x20a3964 in /dl-o5.o
rtl: rela: sym:(null)(6)=020a39c8 type:12 off:000001a8 addend:120
rtl: LO10 0x90122240 @ 0x20a3968 in /dl-o5.o
rtl: rela: sym:__cxa_end_catch(43)=02001f70 type:7 off:000001b0 addend:0
rtl: WDISP_30 0x7ffd7980 @ 0x20a3970 in /dl-o5.o
rtl: rela: sym:_Unwind_Resume(45)=02015c38 type:7 off:000001b8 addend:0
rtl: WDISP_30 0x7ffdc8b0 @ 0x20a3978 in /dl-o5.o
rtl: rela: sym:__cxa_end_catch(43)=02001f70 type:7 off:000001c0 addend:0
rtl: WDISP_30 0x7ffd797c @ 0x20a3980 in /dl-o5.o
rtl: rela: sym:_Unwind_Resume(45)=02015c38 type:7 off:000001c8 addend:0
rtl: WDISP_30 0x7ffdc8ac @ 0x20a3988 in /dl-o5.o
rtl: rela: sym:_ZN9__gnu_cxx18__exchange_and_addEPVii(39)=0201094c type:7 off:000001d4 addend:0
rtl: WDISP_30 0x7ffdb3ee @ 0x20a3994 in /dl-o5.o
rtl: rela: sym:_ZNSs4_Rep10_M_destroyERKSaIcE(40)=0201104c type:7 off:000001ec addend:0
rtl: WDISP_30 0x7ffdb5a8 @ 0x20a39ac in /dl-o5.o
rtl: relocation: .rela.gcc_except_table.exception_dl, syms:.symtab
rtl: rela: sym:_ZTISt9exception(46)=0205aca0 type:3 off:00000048 addend:0
rtl: RELOC_32 0x205aca0 @ 0x20a3b00 in /dl-o5.o
rtl: rela: sym:(null)(38)=020a3a90 type:3 off:0000004c addend:0
rtl: RELOC_32 0x20a3a90 @ 0x20a3b04 in /dl-o5.o
rtl: relocation: .rela.rodata._ZTI16dl_test_throw_me, syms:.symtab
rtl: rela: sym:_ZTVN10__cxxabiv117__class_type_infoE(47)=0205ac38 type:3 off:00000000 addend:8
rtl: RELOC_32 0x205ac40 @ 0x20a3a90 in /dl-o5.o
rtl: rela: sym:(null)(48)=020a3a98 type:3 off:00000004 addend:0
rtl: RELOC_32 0x20a3a98 @ 0x20a3a94 in /dl-o5.o
rtl: relocation: .rela.eh_frame, syms:.symtab
rtl: rela: sym:(null)(5)=020a37b8 type:6 off:0000001c addend:0
rtl: DISP_32 0xfffffc94 @ 0x20a3b24 in /dl-o5.o
rtl: rela: sym:__gxx_personality_v0(29)=020027ac type:23 off:0000003b addend:0
rtl: UA_32 0x0 @ 0x20a3b43 in /dl-o5.o
rtl: rela: sym:(null)(7)=020a37c0 type:6 off:0000004c addend:0
rtl: DISP_32 0xfffffc6c @ 0x20a3b54 in /dl-o5.o
rtl: rela: sym:(null)(9)=020a3ab8 type:23 off:00000055 addend:0
rtl: UA_32 0x0 @ 0x20a3b5d in /dl-o5.o
rtl: alloc: del: SYMBOL addr=0x20a3b70
rtl: alloc: new: OBJECT addr=0x20a3c88 size=148
rtl: linkmap_add
rtl: unresolv: global resolve
exception_base: begin
exception_base: caught: eb: throw std::runtime_error
exception_base: end
exception_dl: begin
exception_dl: throwing...
exception_dl: caught: throw std::runtime_error object
exception_dl: end
rtl: unloading '/dl-o5.o'
rtl: alloc: del: READ_WRITE addr=0x0
rtl: alloc: del: READ_WRITE addr=0x0
rtl: alloc: del: READ addr=0x20a3ab8
rtl: alloc: del: READ addr=0x20a39c8
rtl: alloc: del: READ_EXEC addr=0x20a37b8
rtl: alloc: del: SYMBOL addr=0x20a3ba8
rtl: alloc: del: OBJECT addr=0x208fa58
rtl: alloc: del: OBJECT addr=0x208fa70
rtl: alloc: del: OBJECT addr=0x20a3c88
rtl: alloc: del: OBJECT addr=0x20a2fb0
*** END OF TEST libdl (RTL) 5 ***