evtimer.lst
62.3 KB
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
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 1
1 .syntax unified
2 .cpu cortex-m3
3 .fpu softvfp
4 .eabi_attribute 20, 1
5 .eabi_attribute 21, 1
6 .eabi_attribute 23, 3
7 .eabi_attribute 24, 1
8 .eabi_attribute 25, 1
9 .eabi_attribute 26, 1
10 .eabi_attribute 30, 2
11 .eabi_attribute 34, 1
12 .eabi_attribute 18, 4
13 .thumb
14 .file "evtimer.c"
15 .text
16 .Ltext0:
17 .cfi_sections .debug_frame
18 .section .text.tmrcb,"ax",%progbits
19 .align 2
20 .p2align 4,,15
21 .thumb
22 .thumb_func
23 .type tmrcb, %function
24 tmrcb:
25 .LFB7:
26 .file 1 "../..//os/various/evtimer.c"
27 .loc 1 39 0
28 .cfi_startproc
29 @ args = 0, pretend = 0, frame = 0
30 @ frame_needed = 0, uses_anonymous_args = 0
31 .LVL0:
32 0000 10B5 push {r4, lr}
33 .LCFI0:
34 .cfi_def_cfa_offset 8
35 .cfi_offset 4, -8
36 .cfi_offset 14, -4
37 .loc 1 42 0
38 0002 0021 movs r1, #0
39 .loc 1 39 0
40 0004 0446 mov r4, r0
41 .LVL1:
42 .loc 1 42 0
43 0006 00F11400 add r0, r0, #20
44 .LVL2:
45 000a FFF7FEFF bl chEvtBroadcastFlagsI
46 .LVL3:
47 .loc 1 43 0
48 000e A169 ldr r1, [r4, #24]
49 0010 40F20002 movw r2, #:lower16:tmrcb
50 0014 2046 mov r0, r4
51 0016 C0F20002 movt r2, #:upper16:tmrcb
52 001a 2346 mov r3, r4
53 .loc 1 44 0
54 001c BDE81040 pop {r4, lr}
55 .loc 1 43 0
56 0020 FFF7FEBF b chVTSetI
57 .LVL4:
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 2
58 .cfi_endproc
59 .LFE7:
60 .size tmrcb, .-tmrcb
61 0024 AFF30080 .section .text.evtStart,"ax",%progbits
61 AFF30080
61 AFF30080
62 .align 2
63 .p2align 4,,15
64 .global evtStart
65 .thumb
66 .thumb_func
67 .type evtStart, %function
68 evtStart:
69 .LFB8:
70 .loc 1 52 0
71 .cfi_startproc
72 @ args = 0, pretend = 0, frame = 0
73 @ frame_needed = 0, uses_anonymous_args = 0
74 .LVL5:
75 0000 08B5 push {r3, lr}
76 .LCFI1:
77 .cfi_def_cfa_offset 8
78 .cfi_offset 3, -8
79 .cfi_offset 14, -4
80 .loc 1 52 0
81 0002 0346 mov r3, r0
82 .loc 1 54 0
83 @ 54 "../..//os/various/evtimer.c" 1
84 0004 72B6 cpsid i
85 @ 0 "" 2
86 .loc 1 56 0
87 .thumb
88 0006 C268 ldr r2, [r0, #12]
89 0008 0AB1 cbz r2, .L5
90 .loc 1 59 0
91 @ 59 "../..//os/various/evtimer.c" 1
92 000a 62B6 cpsie i
93 @ 0 "" 2
94 .thumb
95 000c 08BD pop {r3, pc}
96 .L5:
97 .loc 1 57 0
98 000e 8169 ldr r1, [r0, #24]
99 0010 024A ldr r2, .L6
100 0012 FFF7FEFF bl chVTSetI
101 .LVL6:
102 .loc 1 59 0
103 @ 59 "../..//os/various/evtimer.c" 1
104 0016 62B6 cpsie i
105 @ 0 "" 2
106 .thumb
107 0018 08BD pop {r3, pc}
108 .L7:
109 001a 00BF .align 2
110 .L6:
111 001c 00000000 .word tmrcb
112 .cfi_endproc
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 3
113 .LFE8:
114 .size evtStart, .-evtStart
115 .section .text.evtStop,"ax",%progbits
116 .align 2
117 .p2align 4,,15
118 .global evtStop
119 .thumb
120 .thumb_func
121 .type evtStop, %function
122 evtStop:
123 .LFB9:
124 .loc 1 68 0
125 .cfi_startproc
126 @ args = 0, pretend = 0, frame = 0
127 @ frame_needed = 0, uses_anonymous_args = 0
128 .LVL7:
129 0000 08B5 push {r3, lr}
130 .LCFI2:
131 .cfi_def_cfa_offset 8
132 .cfi_offset 3, -8
133 .cfi_offset 14, -4
134 .loc 1 70 0
135 @ 70 "../..//os/various/evtimer.c" 1
136 0002 72B6 cpsid i
137 @ 0 "" 2
138 .loc 1 72 0
139 .thumb
140 0004 C368 ldr r3, [r0, #12]
141 0006 0BB1 cbz r3, .L9
142 .loc 1 73 0
143 0008 FFF7FEFF bl chVTResetI
144 .LVL8:
145 .L9:
146 .loc 1 75 0
147 @ 75 "../..//os/various/evtimer.c" 1
148 000c 62B6 cpsie i
149 @ 0 "" 2
150 .thumb
151 000e 08BD pop {r3, pc}
152 .cfi_endproc
153 .LFE9:
154 .size evtStop, .-evtStop
155 .text
156 .Letext0:
157 .file 2 "c:/yagarto/lib/gcc/../../arm-none-eabi/sys-include/stdint.h"
158 .file 3 "../..//os/ports/GCC/ARMCMx/chtypes.h"
159 .file 4 "../..//os/kernel/include/chlists.h"
160 .file 5 "../..//os/kernel/include/chthreads.h"
161 .file 6 "../..//os/ports/GCC/ARMCMx/chcore_v7m.h"
162 .file 7 "../..//os/kernel/include/chvt.h"
163 .file 8 "../..//os/kernel/include/chmtx.h"
164 .file 9 "../..//os/kernel/include/chevents.h"
165 .file 10 "../..//os/various/evtimer.h"
166 .section .debug_info,"",%progbits
167 .Ldebug_info0:
168 0000 25060000 .4byte 0x625
169 0004 0200 .2byte 0x2
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 4
170 0006 00000000 .4byte .Ldebug_abbrev0
171 000a 04 .byte 0x4
172 000b 01 .uleb128 0x1
173 000c 7A010000 .4byte .LASF74
174 0010 01 .byte 0x1
175 0011 EB020000 .4byte .LASF75
176 0015 F9010000 .4byte .LASF76
177 0019 00000000 .4byte .Ldebug_ranges0+0
178 001d 00000000 .4byte 0
179 0021 00000000 .4byte 0
180 0025 00000000 .4byte .Ldebug_line0
181 0029 02 .uleb128 0x2
182 002a 04 .byte 0x4
183 002b 05 .byte 0x5
184 002c 696E7400 .ascii "int\000"
185 0030 03 .uleb128 0x3
186 0031 04 .byte 0x4
187 0032 07 .byte 0x7
188 0033 C7000000 .4byte .LASF0
189 0037 03 .uleb128 0x3
190 0038 01 .byte 0x1
191 0039 06 .byte 0x6
192 003a 57000000 .4byte .LASF1
193 003e 04 .uleb128 0x4
194 003f 0E030000 .4byte .LASF5
195 0043 02 .byte 0x2
196 0044 2A .byte 0x2a
197 0045 49000000 .4byte 0x49
198 0049 03 .uleb128 0x3
199 004a 01 .byte 0x1
200 004b 08 .byte 0x8
201 004c AD010000 .4byte .LASF2
202 0050 03 .uleb128 0x3
203 0051 02 .byte 0x2
204 0052 05 .byte 0x5
205 0053 D1010000 .4byte .LASF3
206 0057 03 .uleb128 0x3
207 0058 02 .byte 0x2
208 0059 07 .byte 0x7
209 005a F6000000 .4byte .LASF4
210 005e 04 .uleb128 0x4
211 005f A5010000 .4byte .LASF6
212 0063 02 .byte 0x2
213 0064 4F .byte 0x4f
214 0065 69000000 .4byte 0x69
215 0069 03 .uleb128 0x3
216 006a 04 .byte 0x4
217 006b 05 .byte 0x5
218 006c 7B000000 .4byte .LASF7
219 0070 04 .uleb128 0x4
220 0071 7D020000 .4byte .LASF8
221 0075 02 .byte 0x2
222 0076 50 .byte 0x50
223 0077 7B000000 .4byte 0x7b
224 007b 03 .uleb128 0x3
225 007c 04 .byte 0x4
226 007d 07 .byte 0x7
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 5
227 007e DC000000 .4byte .LASF9
228 0082 03 .uleb128 0x3
229 0083 08 .byte 0x8
230 0084 05 .byte 0x5
231 0085 49000000 .4byte .LASF10
232 0089 03 .uleb128 0x3
233 008a 08 .byte 0x8
234 008b 07 .byte 0x7
235 008c 19000000 .4byte .LASF11
236 0090 04 .uleb128 0x4
237 0091 17010000 .4byte .LASF12
238 0095 03 .byte 0x3
239 0096 2F .byte 0x2f
240 0097 3E000000 .4byte 0x3e
241 009b 04 .uleb128 0x4
242 009c 84000000 .4byte .LASF13
243 00a0 03 .byte 0x3
244 00a1 30 .byte 0x30
245 00a2 3E000000 .4byte 0x3e
246 00a6 04 .uleb128 0x4
247 00a7 8E010000 .4byte .LASF14
248 00ab 03 .byte 0x3
249 00ac 31 .byte 0x31
250 00ad 3E000000 .4byte 0x3e
251 00b1 04 .uleb128 0x4
252 00b2 9D010000 .4byte .LASF15
253 00b6 03 .byte 0x3
254 00b7 32 .byte 0x32
255 00b8 70000000 .4byte 0x70
256 00bc 04 .uleb128 0x4
257 00bd 09010000 .4byte .LASF16
258 00c1 03 .byte 0x3
259 00c2 33 .byte 0x33
260 00c3 5E000000 .4byte 0x5e
261 00c7 04 .uleb128 0x4
262 00c8 2B010000 .4byte .LASF17
263 00cc 03 .byte 0x3
264 00cd 35 .byte 0x35
265 00ce 70000000 .4byte 0x70
266 00d2 04 .uleb128 0x4
267 00d3 A5020000 .4byte .LASF18
268 00d7 03 .byte 0x3
269 00d8 36 .byte 0x36
270 00d9 70000000 .4byte 0x70
271 00dd 04 .uleb128 0x4
272 00de 60020000 .4byte .LASF19
273 00e2 04 .byte 0x4
274 00e3 2A .byte 0x2a
275 00e4 E8000000 .4byte 0xe8
276 00e8 05 .uleb128 0x5
277 00e9 60020000 .4byte .LASF19
278 00ed 48 .byte 0x48
279 00ee 05 .byte 0x5
280 00ef 5E .byte 0x5e
281 00f0 FF010000 .4byte 0x1ff
282 00f4 06 .uleb128 0x6
283 00f5 EA010000 .4byte .LASF20
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 6
284 00f9 05 .byte 0x5
285 00fa 5F .byte 0x5f
286 00fb 24020000 .4byte 0x224
287 00ff 02 .byte 0x2
288 0100 23 .byte 0x23
289 0101 00 .uleb128 0
290 0102 06 .uleb128 0x6
291 0103 96010000 .4byte .LASF21
292 0107 05 .byte 0x5
293 0108 61 .byte 0x61
294 0109 24020000 .4byte 0x224
295 010d 02 .byte 0x2
296 010e 23 .byte 0x23
297 010f 04 .uleb128 0x4
298 0110 06 .uleb128 0x6
299 0111 42000000 .4byte .LASF22
300 0115 05 .byte 0x5
301 0116 63 .byte 0x63
302 0117 B1000000 .4byte 0xb1
303 011b 02 .byte 0x2
304 011c 23 .byte 0x23
305 011d 08 .uleb128 0x8
306 011e 06 .uleb128 0x6
307 011f 48030000 .4byte .LASF23
308 0123 05 .byte 0x5
309 0124 64 .byte 0x64
310 0125 F1020000 .4byte 0x2f1
311 0129 02 .byte 0x2
312 012a 23 .byte 0x23
313 012b 0C .uleb128 0xc
314 012c 06 .uleb128 0x6
315 012d A2000000 .4byte .LASF24
316 0131 05 .byte 0x5
317 0132 66 .byte 0x66
318 0133 24020000 .4byte 0x224
319 0137 02 .byte 0x2
320 0138 23 .byte 0x23
321 0139 10 .uleb128 0x10
322 013a 06 .uleb128 0x6
323 013b 65010000 .4byte .LASF25
324 013f 05 .byte 0x5
325 0140 67 .byte 0x67
326 0141 24020000 .4byte 0x224
327 0145 02 .byte 0x2
328 0146 23 .byte 0x23
329 0147 14 .uleb128 0x14
330 0148 06 .uleb128 0x6
331 0149 2B030000 .4byte .LASF26
332 014d 05 .byte 0x5
333 014e 6E .byte 0x6e
334 014f 8C040000 .4byte 0x48c
335 0153 02 .byte 0x2
336 0154 23 .byte 0x23
337 0155 18 .uleb128 0x18
338 0156 06 .uleb128 0x6
339 0157 DB010000 .4byte .LASF27
340 015b 05 .byte 0x5
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 7
341 015c 79 .byte 0x79
342 015d 9B000000 .4byte 0x9b
343 0161 02 .byte 0x2
344 0162 23 .byte 0x23
345 0163 1C .uleb128 0x1c
346 0164 06 .uleb128 0x6
347 0165 F1010000 .4byte .LASF28
348 0169 05 .byte 0x5
349 016a 7D .byte 0x7d
350 016b 90000000 .4byte 0x90
351 016f 02 .byte 0x2
352 0170 23 .byte 0x23
353 0171 1D .uleb128 0x1d
354 0172 06 .uleb128 0x6
355 0173 07030000 .4byte .LASF29
356 0177 05 .byte 0x5
357 0178 82 .byte 0x82
358 0179 A6000000 .4byte 0xa6
359 017d 02 .byte 0x2
360 017e 23 .byte 0x23
361 017f 1E .uleb128 0x1e
362 0180 06 .uleb128 0x6
363 0181 CB020000 .4byte .LASF30
364 0185 05 .byte 0x5
365 0186 89 .byte 0x89
366 0187 9C030000 .4byte 0x39c
367 018b 02 .byte 0x2
368 018c 23 .byte 0x23
369 018d 20 .uleb128 0x20
370 018e 07 .uleb128 0x7
371 018f 705F7500 .ascii "p_u\000"
372 0193 05 .byte 0x5
373 0194 AE .byte 0xae
374 0195 57040000 .4byte 0x457
375 0199 02 .byte 0x2
376 019a 23 .byte 0x23
377 019b 24 .uleb128 0x24
378 019c 06 .uleb128 0x6
379 019d 4E030000 .4byte .LASF31
380 01a1 05 .byte 0x5
381 01a2 B3 .byte 0xb3
382 01a3 4C020000 .4byte 0x24c
383 01a7 02 .byte 0x2
384 01a8 23 .byte 0x23
385 01a9 28 .uleb128 0x28
386 01aa 06 .uleb128 0x6
387 01ab D9020000 .4byte .LASF32
388 01af 05 .byte 0x5
389 01b0 B9 .byte 0xb9
390 01b1 2A020000 .4byte 0x22a
391 01b5 02 .byte 0x2
392 01b6 23 .byte 0x23
393 01b7 2C .uleb128 0x2c
394 01b8 06 .uleb128 0x6
395 01b9 0C000000 .4byte .LASF33
396 01bd 05 .byte 0x5
397 01be BD .byte 0xbd
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 8
398 01bf BC000000 .4byte 0xbc
399 01c3 02 .byte 0x2
400 01c4 23 .byte 0x23
401 01c5 34 .uleb128 0x34
402 01c6 06 .uleb128 0x6
403 01c7 72020000 .4byte .LASF34
404 01cb 05 .byte 0x5
405 01cc C3 .byte 0xc3
406 01cd C7000000 .4byte 0xc7
407 01d1 02 .byte 0x2
408 01d2 23 .byte 0x23
409 01d3 38 .uleb128 0x38
410 01d4 06 .uleb128 0x6
411 01d5 C7010000 .4byte .LASF35
412 01d9 05 .byte 0x5
413 01da CA .byte 0xca
414 01db 9E040000 .4byte 0x49e
415 01df 02 .byte 0x2
416 01e0 23 .byte 0x23
417 01e1 3C .uleb128 0x3c
418 01e2 06 .uleb128 0x6
419 01e3 AF020000 .4byte .LASF36
420 01e7 05 .byte 0x5
421 01e8 CE .byte 0xce
422 01e9 B1000000 .4byte 0xb1
423 01ed 02 .byte 0x2
424 01ee 23 .byte 0x23
425 01ef 40 .uleb128 0x40
426 01f0 06 .uleb128 0x6
427 01f1 6B000000 .4byte .LASF37
428 01f5 05 .byte 0x5
429 01f6 D4 .byte 0xd4
430 01f7 62020000 .4byte 0x262
431 01fb 02 .byte 0x2
432 01fc 23 .byte 0x23
433 01fd 44 .uleb128 0x44
434 01fe 00 .byte 0
435 01ff 08 .uleb128 0x8
436 0200 08 .byte 0x8
437 0201 04 .byte 0x4
438 0202 61 .byte 0x61
439 0203 24020000 .4byte 0x224
440 0207 06 .uleb128 0x6
441 0208 EA010000 .4byte .LASF20
442 020c 04 .byte 0x4
443 020d 62 .byte 0x62
444 020e 24020000 .4byte 0x224
445 0212 02 .byte 0x2
446 0213 23 .byte 0x23
447 0214 00 .uleb128 0
448 0215 06 .uleb128 0x6
449 0216 96010000 .4byte .LASF21
450 021a 04 .byte 0x4
451 021b 64 .byte 0x64
452 021c 24020000 .4byte 0x224
453 0220 02 .byte 0x2
454 0221 23 .byte 0x23
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 9
455 0222 04 .uleb128 0x4
456 0223 00 .byte 0
457 0224 09 .uleb128 0x9
458 0225 04 .byte 0x4
459 0226 DD000000 .4byte 0xdd
460 022a 04 .uleb128 0x4
461 022b 6D010000 .4byte .LASF38
462 022f 04 .byte 0x4
463 0230 66 .byte 0x66
464 0231 FF010000 .4byte 0x1ff
465 0235 08 .uleb128 0x8
466 0236 04 .byte 0x4
467 0237 04 .byte 0x4
468 0238 6B .byte 0x6b
469 0239 4C020000 .4byte 0x24c
470 023d 06 .uleb128 0x6
471 023e EA010000 .4byte .LASF20
472 0242 04 .byte 0x4
473 0243 6D .byte 0x6d
474 0244 24020000 .4byte 0x224
475 0248 02 .byte 0x2
476 0249 23 .byte 0x23
477 024a 00 .uleb128 0
478 024b 00 .byte 0
479 024c 04 .uleb128 0x4
480 024d 1F010000 .4byte .LASF39
481 0251 04 .byte 0x4
482 0252 70 .byte 0x70
483 0253 35020000 .4byte 0x235
484 0257 04 .uleb128 0x4
485 0258 AA000000 .4byte .LASF40
486 025c 06 .byte 0x6
487 025d D7 .byte 0xd7
488 025e 62020000 .4byte 0x262
489 0262 0A .uleb128 0xa
490 0263 04 .byte 0x4
491 0264 05 .uleb128 0x5
492 0265 D2020000 .4byte .LASF41
493 0269 24 .byte 0x24
494 026a 06 .byte 0x6
495 026b FE .byte 0xfe
496 026c F1020000 .4byte 0x2f1
497 0270 0B .uleb128 0xb
498 0271 723400 .ascii "r4\000"
499 0274 06 .byte 0x6
500 0275 1101 .2byte 0x111
501 0277 57020000 .4byte 0x257
502 027b 02 .byte 0x2
503 027c 23 .byte 0x23
504 027d 00 .uleb128 0
505 027e 0B .uleb128 0xb
506 027f 723500 .ascii "r5\000"
507 0282 06 .byte 0x6
508 0283 1201 .2byte 0x112
509 0285 57020000 .4byte 0x257
510 0289 02 .byte 0x2
511 028a 23 .byte 0x23
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 10
512 028b 04 .uleb128 0x4
513 028c 0B .uleb128 0xb
514 028d 723600 .ascii "r6\000"
515 0290 06 .byte 0x6
516 0291 1301 .2byte 0x113
517 0293 57020000 .4byte 0x257
518 0297 02 .byte 0x2
519 0298 23 .byte 0x23
520 0299 08 .uleb128 0x8
521 029a 0B .uleb128 0xb
522 029b 723700 .ascii "r7\000"
523 029e 06 .byte 0x6
524 029f 1401 .2byte 0x114
525 02a1 57020000 .4byte 0x257
526 02a5 02 .byte 0x2
527 02a6 23 .byte 0x23
528 02a7 0C .uleb128 0xc
529 02a8 0B .uleb128 0xb
530 02a9 723800 .ascii "r8\000"
531 02ac 06 .byte 0x6
532 02ad 1501 .2byte 0x115
533 02af 57020000 .4byte 0x257
534 02b3 02 .byte 0x2
535 02b4 23 .byte 0x23
536 02b5 10 .uleb128 0x10
537 02b6 0B .uleb128 0xb
538 02b7 723900 .ascii "r9\000"
539 02ba 06 .byte 0x6
540 02bb 1601 .2byte 0x116
541 02bd 57020000 .4byte 0x257
542 02c1 02 .byte 0x2
543 02c2 23 .byte 0x23
544 02c3 14 .uleb128 0x14
545 02c4 0B .uleb128 0xb
546 02c5 72313000 .ascii "r10\000"
547 02c9 06 .byte 0x6
548 02ca 1701 .2byte 0x117
549 02cc 57020000 .4byte 0x257
550 02d0 02 .byte 0x2
551 02d1 23 .byte 0x23
552 02d2 18 .uleb128 0x18
553 02d3 0B .uleb128 0xb
554 02d4 72313100 .ascii "r11\000"
555 02d8 06 .byte 0x6
556 02d9 1801 .2byte 0x118
557 02db 57020000 .4byte 0x257
558 02df 02 .byte 0x2
559 02e0 23 .byte 0x23
560 02e1 1C .uleb128 0x1c
561 02e2 0B .uleb128 0xb
562 02e3 6C7200 .ascii "lr\000"
563 02e6 06 .byte 0x6
564 02e7 1901 .2byte 0x119
565 02e9 57020000 .4byte 0x257
566 02ed 02 .byte 0x2
567 02ee 23 .byte 0x23
568 02ef 20 .uleb128 0x20
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 11
569 02f0 00 .byte 0
570 02f1 0C .uleb128 0xc
571 02f2 EE000000 .4byte .LASF42
572 02f6 04 .byte 0x4
573 02f7 06 .byte 0x6
574 02f8 2301 .2byte 0x123
575 02fa 0E030000 .4byte 0x30e
576 02fe 0B .uleb128 0xb
577 02ff 72313300 .ascii "r13\000"
578 0303 06 .byte 0x6
579 0304 2401 .2byte 0x124
580 0306 0E030000 .4byte 0x30e
581 030a 02 .byte 0x2
582 030b 23 .byte 0x23
583 030c 00 .uleb128 0
584 030d 00 .byte 0
585 030e 09 .uleb128 0x9
586 030f 04 .byte 0x4
587 0310 64020000 .4byte 0x264
588 0314 03 .uleb128 0x3
589 0315 04 .byte 0x4
590 0316 07 .byte 0x7
591 0317 4B010000 .4byte .LASF43
592 031b 04 .uleb128 0x4
593 031c BA020000 .4byte .LASF44
594 0320 07 .byte 0x7
595 0321 61 .byte 0x61
596 0322 26030000 .4byte 0x326
597 0326 09 .uleb128 0x9
598 0327 04 .byte 0x4
599 0328 2C030000 .4byte 0x32c
600 032c 0D .uleb128 0xd
601 032d 01 .byte 0x1
602 032e 38030000 .4byte 0x338
603 0332 0E .uleb128 0xe
604 0333 62020000 .4byte 0x262
605 0337 00 .byte 0
606 0338 04 .uleb128 0x4
607 0339 86020000 .4byte .LASF45
608 033d 07 .byte 0x7
609 033e 66 .byte 0x66
610 033f 43030000 .4byte 0x343
611 0343 05 .uleb128 0x5
612 0344 86020000 .4byte .LASF45
613 0348 14 .byte 0x14
614 0349 07 .byte 0x7
615 034a 6D .byte 0x6d
616 034b 96030000 .4byte 0x396
617 034f 06 .uleb128 0x6
618 0350 D4000000 .4byte .LASF46
619 0354 07 .byte 0x7
620 0355 6E .byte 0x6e
621 0356 96030000 .4byte 0x396
622 035a 02 .byte 0x2
623 035b 23 .byte 0x23
624 035c 00 .uleb128 0
625 035d 06 .uleb128 0x6
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 12
626 035e B3000000 .4byte .LASF47
627 0362 07 .byte 0x7
628 0363 70 .byte 0x70
629 0364 96030000 .4byte 0x396
630 0368 02 .byte 0x2
631 0369 23 .byte 0x23
632 036a 04 .uleb128 0x4
633 036b 06 .uleb128 0x6
634 036c 3D010000 .4byte .LASF48
635 0370 07 .byte 0x7
636 0371 72 .byte 0x72
637 0372 D2000000 .4byte 0xd2
638 0376 02 .byte 0x2
639 0377 23 .byte 0x23
640 0378 08 .uleb128 0x8
641 0379 06 .uleb128 0x6
642 037a 54010000 .4byte .LASF49
643 037e 07 .byte 0x7
644 037f 73 .byte 0x73
645 0380 1B030000 .4byte 0x31b
646 0384 02 .byte 0x2
647 0385 23 .byte 0x23
648 0386 0C .uleb128 0xc
649 0387 06 .uleb128 0x6
650 0388 E4020000 .4byte .LASF50
651 038c 07 .byte 0x7
652 038d 75 .byte 0x75
653 038e 62020000 .4byte 0x262
654 0392 02 .byte 0x2
655 0393 23 .byte 0x23
656 0394 10 .uleb128 0x10
657 0395 00 .byte 0
658 0396 09 .uleb128 0x9
659 0397 04 .byte 0x4
660 0398 38030000 .4byte 0x338
661 039c 0F .uleb128 0xf
662 039d D2000000 .4byte 0xd2
663 03a1 05 .uleb128 0x5
664 03a2 37010000 .4byte .LASF51
665 03a6 10 .byte 0x10
666 03a7 08 .byte 0x8
667 03a8 2C .byte 0x2c
668 03a9 D8030000 .4byte 0x3d8
669 03ad 06 .uleb128 0x6
670 03ae 73000000 .4byte .LASF52
671 03b2 08 .byte 0x8
672 03b3 2D .byte 0x2d
673 03b4 2A020000 .4byte 0x22a
674 03b8 02 .byte 0x2
675 03b9 23 .byte 0x23
676 03ba 00 .uleb128 0
677 03bb 06 .uleb128 0x6
678 03bc 40030000 .4byte .LASF53
679 03c0 08 .byte 0x8
680 03c1 2F .byte 0x2f
681 03c2 24020000 .4byte 0x224
682 03c6 02 .byte 0x2
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 13
683 03c7 23 .byte 0x23
684 03c8 08 .uleb128 0x8
685 03c9 06 .uleb128 0x6
686 03ca 9E020000 .4byte .LASF54
687 03ce 08 .byte 0x8
688 03cf 31 .byte 0x31
689 03d0 D8030000 .4byte 0x3d8
690 03d4 02 .byte 0x2
691 03d5 23 .byte 0x23
692 03d6 0C .uleb128 0xc
693 03d7 00 .byte 0
694 03d8 09 .uleb128 0x9
695 03d9 04 .byte 0x4
696 03da A1030000 .4byte 0x3a1
697 03de 04 .uleb128 0x4
698 03df 37010000 .4byte .LASF51
699 03e3 08 .byte 0x8
700 03e4 33 .byte 0x33
701 03e5 A1030000 .4byte 0x3a1
702 03e9 04 .uleb128 0x4
703 03ea 16030000 .4byte .LASF55
704 03ee 09 .byte 0x9
705 03ef 29 .byte 0x29
706 03f0 F4030000 .4byte 0x3f4
707 03f4 05 .uleb128 0x5
708 03f5 16030000 .4byte .LASF55
709 03f9 0C .byte 0xc
710 03fa 09 .byte 0x9
711 03fb 2E .byte 0x2e
712 03fc 2B040000 .4byte 0x42b
713 0400 06 .uleb128 0x6
714 0401 0F010000 .4byte .LASF56
715 0405 09 .byte 0x9
716 0406 2F .byte 0x2f
717 0407 2B040000 .4byte 0x42b
718 040b 02 .byte 0x2
719 040c 23 .byte 0x23
720 040d 00 .uleb128 0
721 040e 06 .uleb128 0x6
722 040f BB010000 .4byte .LASF57
723 0413 09 .byte 0x9
724 0414 32 .byte 0x32
725 0415 24020000 .4byte 0x224
726 0419 02 .byte 0x2
727 041a 23 .byte 0x23
728 041b 04 .uleb128 0x4
729 041c 06 .uleb128 0x6
730 041d 86010000 .4byte .LASF58
731 0421 09 .byte 0x9
732 0422 34 .byte 0x34
733 0423 C7000000 .4byte 0xc7
734 0427 02 .byte 0x2
735 0428 23 .byte 0x23
736 0429 08 .uleb128 0x8
737 042a 00 .byte 0
738 042b 09 .uleb128 0x9
739 042c 04 .byte 0x4
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 14
740 042d E9030000 .4byte 0x3e9
741 0431 05 .uleb128 0x5
742 0432 BB000000 .4byte .LASF59
743 0436 04 .byte 0x4
744 0437 09 .byte 0x9
745 0438 3C .byte 0x3c
746 0439 4C040000 .4byte 0x44c
747 043d 06 .uleb128 0x6
748 043e 32030000 .4byte .LASF60
749 0442 09 .byte 0x9
750 0443 3D .byte 0x3d
751 0444 2B040000 .4byte 0x42b
752 0448 02 .byte 0x2
753 0449 23 .byte 0x23
754 044a 00 .uleb128 0
755 044b 00 .byte 0
756 044c 04 .uleb128 0x4
757 044d BB000000 .4byte .LASF59
758 0451 09 .byte 0x9
759 0452 40 .byte 0x40
760 0453 31040000 .4byte 0x431
761 0457 10 .uleb128 0x10
762 0458 04 .byte 0x4
763 0459 05 .byte 0x5
764 045a 90 .byte 0x90
765 045b 8C040000 .4byte 0x48c
766 045f 11 .uleb128 0x11
767 0460 12000000 .4byte .LASF61
768 0464 05 .byte 0x5
769 0465 97 .byte 0x97
770 0466 BC000000 .4byte 0xbc
771 046a 11 .uleb128 0x11
772 046b 30000000 .4byte .LASF62
773 046f 05 .byte 0x5
774 0470 9E .byte 0x9e
775 0471 BC000000 .4byte 0xbc
776 0475 11 .uleb128 0x11
777 0476 24030000 .4byte .LASF63
778 047a 05 .byte 0x5
779 047b A5 .byte 0xa5
780 047c 62020000 .4byte 0x262
781 0480 11 .uleb128 0x11
782 0481 E3010000 .4byte .LASF64
783 0485 05 .byte 0x5
784 0486 AC .byte 0xac
785 0487 C7000000 .4byte 0xc7
786 048b 00 .byte 0
787 048c 09 .uleb128 0x9
788 048d 04 .byte 0x4
789 048e 92040000 .4byte 0x492
790 0492 12 .uleb128 0x12
791 0493 97040000 .4byte 0x497
792 0497 03 .uleb128 0x3
793 0498 01 .byte 0x1
794 0499 08 .byte 0x8
795 049a 93020000 .4byte .LASF65
796 049e 09 .uleb128 0x9
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 15
797 049f 04 .byte 0x4
798 04a0 DE030000 .4byte 0x3de
799 04a4 08 .uleb128 0x8
800 04a5 1C .byte 0x1c
801 04a6 0A .byte 0xa
802 04a7 2A .byte 0x2a
803 04a8 D7040000 .4byte 0x4d7
804 04ac 06 .uleb128 0x6
805 04ad 3A030000 .4byte .LASF66
806 04b1 0A .byte 0xa
807 04b2 2B .byte 0x2b
808 04b3 38030000 .4byte 0x338
809 04b7 02 .byte 0x2
810 04b8 23 .byte 0x23
811 04b9 00 .uleb128 0
812 04ba 06 .uleb128 0x6
813 04bb 45010000 .4byte .LASF67
814 04bf 0A .byte 0xa
815 04c0 2C .byte 0x2c
816 04c1 4C040000 .4byte 0x44c
817 04c5 02 .byte 0x2
818 04c6 23 .byte 0x23
819 04c7 14 .uleb128 0x14
820 04c8 06 .uleb128 0x6
821 04c9 00000000 .4byte .LASF68
822 04cd 0A .byte 0xa
823 04ce 2D .byte 0x2d
824 04cf D2000000 .4byte 0xd2
825 04d3 02 .byte 0x2
826 04d4 23 .byte 0x23
827 04d5 18 .uleb128 0x18
828 04d6 00 .byte 0
829 04d7 04 .uleb128 0x4
830 04d8 63000000 .4byte .LASF69
831 04dc 0A .byte 0xa
832 04dd 2E .byte 0x2e
833 04de A4040000 .4byte 0x4a4
834 04e2 13 .uleb128 0x13
835 04e3 98020000 .4byte .LASF77
836 04e7 01 .byte 0x1
837 04e8 27 .byte 0x27
838 04e9 01 .byte 0x1
839 04ea 00000000 .4byte .LFB7
840 04ee 24000000 .4byte .LFE7
841 04f2 00000000 .4byte .LLST0
842 04f6 01 .byte 0x1
843 04f7 51050000 .4byte 0x551
844 04fb 14 .uleb128 0x14
845 04fc 7000 .ascii "p\000"
846 04fe 01 .byte 0x1
847 04ff 27 .byte 0x27
848 0500 62020000 .4byte 0x262
849 0504 20000000 .4byte .LLST1
850 0508 15 .uleb128 0x15
851 0509 65747000 .ascii "etp\000"
852 050d 01 .byte 0x1
853 050e 28 .byte 0x28
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 16
854 050f 51050000 .4byte 0x551
855 0513 3E000000 .4byte .LLST2
856 0517 16 .uleb128 0x16
857 0518 0E000000 .4byte .LVL3
858 051c D6050000 .4byte 0x5d6
859 0520 30050000 .4byte 0x530
860 0524 17 .uleb128 0x17
861 0525 01 .byte 0x1
862 0526 51 .byte 0x51
863 0527 01 .byte 0x1
864 0528 30 .byte 0x30
865 0529 17 .uleb128 0x17
866 052a 01 .byte 0x1
867 052b 50 .byte 0x50
868 052c 02 .byte 0x2
869 052d 74 .byte 0x74
870 052e 14 .sleb128 20
871 052f 00 .byte 0
872 0530 18 .uleb128 0x18
873 0531 24000000 .4byte .LVL4
874 0535 01 .byte 0x1
875 0536 F5050000 .4byte 0x5f5
876 053a 17 .uleb128 0x17
877 053b 01 .byte 0x1
878 053c 53 .byte 0x53
879 053d 02 .byte 0x2
880 053e 74 .byte 0x74
881 053f 00 .sleb128 0
882 0540 17 .uleb128 0x17
883 0541 01 .byte 0x1
884 0542 52 .byte 0x52
885 0543 05 .byte 0x5
886 0544 03 .byte 0x3
887 0545 00000000 .4byte tmrcb
888 0549 17 .uleb128 0x17
889 054a 01 .byte 0x1
890 054b 50 .byte 0x50
891 054c 02 .byte 0x2
892 054d 74 .byte 0x74
893 054e 00 .sleb128 0
894 054f 00 .byte 0
895 0550 00 .byte 0
896 0551 09 .uleb128 0x9
897 0552 04 .byte 0x4
898 0553 D7040000 .4byte 0x4d7
899 0557 19 .uleb128 0x19
900 0558 01 .byte 0x1
901 0559 39000000 .4byte .LASF70
902 055d 01 .byte 0x1
903 055e 34 .byte 0x34
904 055f 01 .byte 0x1
905 0560 00000000 .4byte .LFB8
906 0564 20000000 .4byte .LFE8
907 0568 5C000000 .4byte .LLST3
908 056c 01 .byte 0x1
909 056d 9B050000 .4byte 0x59b
910 0571 14 .uleb128 0x14
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 17
911 0572 65747000 .ascii "etp\000"
912 0576 01 .byte 0x1
913 0577 34 .byte 0x34
914 0578 51050000 .4byte 0x551
915 057c 7C000000 .4byte .LLST4
916 0580 1A .uleb128 0x1a
917 0581 16000000 .4byte .LVL6
918 0585 F5050000 .4byte 0x5f5
919 0589 17 .uleb128 0x17
920 058a 01 .byte 0x1
921 058b 52 .byte 0x52
922 058c 05 .byte 0x5
923 058d 03 .byte 0x3
924 058e 00000000 .4byte tmrcb
925 0592 17 .uleb128 0x17
926 0593 01 .byte 0x1
927 0594 50 .byte 0x50
928 0595 03 .byte 0x3
929 0596 F3 .byte 0xf3
930 0597 01 .uleb128 0x1
931 0598 50 .byte 0x50
932 0599 00 .byte 0
933 059a 00 .byte 0
934 059b 19 .uleb128 0x19
935 059c 01 .byte 0x1
936 059d C3020000 .4byte .LASF71
937 05a1 01 .byte 0x1
938 05a2 44 .byte 0x44
939 05a3 01 .byte 0x1
940 05a4 00000000 .4byte .LFB9
941 05a8 10000000 .4byte .LFE9
942 05ac 9D000000 .4byte .LLST5
943 05b0 01 .byte 0x1
944 05b1 D6050000 .4byte 0x5d6
945 05b5 14 .uleb128 0x14
946 05b6 65747000 .ascii "etp\000"
947 05ba 01 .byte 0x1
948 05bb 44 .byte 0x44
949 05bc 51050000 .4byte 0x551
950 05c0 BD000000 .4byte .LLST6
951 05c4 1A .uleb128 0x1a
952 05c5 0C000000 .4byte .LVL8
953 05c9 18060000 .4byte 0x618
954 05cd 17 .uleb128 0x17
955 05ce 01 .byte 0x1
956 05cf 50 .byte 0x50
957 05d0 03 .byte 0x3
958 05d1 F3 .byte 0xf3
959 05d2 01 .uleb128 0x1
960 05d3 50 .byte 0x50
961 05d4 00 .byte 0
962 05d5 00 .byte 0
963 05d6 1B .uleb128 0x1b
964 05d7 01 .byte 0x1
965 05d8 8D000000 .4byte .LASF72
966 05dc 09 .byte 0x9
967 05dd B3 .byte 0xb3
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 18
968 05de 01 .byte 0x1
969 05df 01 .byte 0x1
970 05e0 EF050000 .4byte 0x5ef
971 05e4 0E .uleb128 0xe
972 05e5 EF050000 .4byte 0x5ef
973 05e9 0E .uleb128 0xe
974 05ea C7000000 .4byte 0xc7
975 05ee 00 .byte 0
976 05ef 09 .uleb128 0x9
977 05f0 04 .byte 0x4
978 05f1 4C040000 .4byte 0x44c
979 05f5 1B .uleb128 0x1b
980 05f6 01 .byte 0x1
981 05f7 5C010000 .4byte .LASF73
982 05fb 07 .byte 0x7
983 05fc BF .byte 0xbf
984 05fd 01 .byte 0x1
985 05fe 01 .byte 0x1
986 05ff 18060000 .4byte 0x618
987 0603 0E .uleb128 0xe
988 0604 96030000 .4byte 0x396
989 0608 0E .uleb128 0xe
990 0609 D2000000 .4byte 0xd2
991 060d 0E .uleb128 0xe
992 060e 1B030000 .4byte 0x31b
993 0612 0E .uleb128 0xe
994 0613 62020000 .4byte 0x262
995 0617 00 .byte 0
996 0618 1C .uleb128 0x1c
997 0619 01 .byte 0x1
998 061a 67020000 .4byte .LASF78
999 061e 07 .byte 0x7
1000 061f C0 .byte 0xc0
1001 0620 01 .byte 0x1
1002 0621 01 .byte 0x1
1003 0622 0E .uleb128 0xe
1004 0623 96030000 .4byte 0x396
1005 0627 00 .byte 0
1006 0628 00 .byte 0
1007 .section .debug_abbrev,"",%progbits
1008 .Ldebug_abbrev0:
1009 0000 01 .uleb128 0x1
1010 0001 11 .uleb128 0x11
1011 0002 01 .byte 0x1
1012 0003 25 .uleb128 0x25
1013 0004 0E .uleb128 0xe
1014 0005 13 .uleb128 0x13
1015 0006 0B .uleb128 0xb
1016 0007 03 .uleb128 0x3
1017 0008 0E .uleb128 0xe
1018 0009 1B .uleb128 0x1b
1019 000a 0E .uleb128 0xe
1020 000b 55 .uleb128 0x55
1021 000c 06 .uleb128 0x6
1022 000d 11 .uleb128 0x11
1023 000e 01 .uleb128 0x1
1024 000f 52 .uleb128 0x52
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 19
1025 0010 01 .uleb128 0x1
1026 0011 10 .uleb128 0x10
1027 0012 06 .uleb128 0x6
1028 0013 00 .byte 0
1029 0014 00 .byte 0
1030 0015 02 .uleb128 0x2
1031 0016 24 .uleb128 0x24
1032 0017 00 .byte 0
1033 0018 0B .uleb128 0xb
1034 0019 0B .uleb128 0xb
1035 001a 3E .uleb128 0x3e
1036 001b 0B .uleb128 0xb
1037 001c 03 .uleb128 0x3
1038 001d 08 .uleb128 0x8
1039 001e 00 .byte 0
1040 001f 00 .byte 0
1041 0020 03 .uleb128 0x3
1042 0021 24 .uleb128 0x24
1043 0022 00 .byte 0
1044 0023 0B .uleb128 0xb
1045 0024 0B .uleb128 0xb
1046 0025 3E .uleb128 0x3e
1047 0026 0B .uleb128 0xb
1048 0027 03 .uleb128 0x3
1049 0028 0E .uleb128 0xe
1050 0029 00 .byte 0
1051 002a 00 .byte 0
1052 002b 04 .uleb128 0x4
1053 002c 16 .uleb128 0x16
1054 002d 00 .byte 0
1055 002e 03 .uleb128 0x3
1056 002f 0E .uleb128 0xe
1057 0030 3A .uleb128 0x3a
1058 0031 0B .uleb128 0xb
1059 0032 3B .uleb128 0x3b
1060 0033 0B .uleb128 0xb
1061 0034 49 .uleb128 0x49
1062 0035 13 .uleb128 0x13
1063 0036 00 .byte 0
1064 0037 00 .byte 0
1065 0038 05 .uleb128 0x5
1066 0039 13 .uleb128 0x13
1067 003a 01 .byte 0x1
1068 003b 03 .uleb128 0x3
1069 003c 0E .uleb128 0xe
1070 003d 0B .uleb128 0xb
1071 003e 0B .uleb128 0xb
1072 003f 3A .uleb128 0x3a
1073 0040 0B .uleb128 0xb
1074 0041 3B .uleb128 0x3b
1075 0042 0B .uleb128 0xb
1076 0043 01 .uleb128 0x1
1077 0044 13 .uleb128 0x13
1078 0045 00 .byte 0
1079 0046 00 .byte 0
1080 0047 06 .uleb128 0x6
1081 0048 0D .uleb128 0xd
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 20
1082 0049 00 .byte 0
1083 004a 03 .uleb128 0x3
1084 004b 0E .uleb128 0xe
1085 004c 3A .uleb128 0x3a
1086 004d 0B .uleb128 0xb
1087 004e 3B .uleb128 0x3b
1088 004f 0B .uleb128 0xb
1089 0050 49 .uleb128 0x49
1090 0051 13 .uleb128 0x13
1091 0052 38 .uleb128 0x38
1092 0053 0A .uleb128 0xa
1093 0054 00 .byte 0
1094 0055 00 .byte 0
1095 0056 07 .uleb128 0x7
1096 0057 0D .uleb128 0xd
1097 0058 00 .byte 0
1098 0059 03 .uleb128 0x3
1099 005a 08 .uleb128 0x8
1100 005b 3A .uleb128 0x3a
1101 005c 0B .uleb128 0xb
1102 005d 3B .uleb128 0x3b
1103 005e 0B .uleb128 0xb
1104 005f 49 .uleb128 0x49
1105 0060 13 .uleb128 0x13
1106 0061 38 .uleb128 0x38
1107 0062 0A .uleb128 0xa
1108 0063 00 .byte 0
1109 0064 00 .byte 0
1110 0065 08 .uleb128 0x8
1111 0066 13 .uleb128 0x13
1112 0067 01 .byte 0x1
1113 0068 0B .uleb128 0xb
1114 0069 0B .uleb128 0xb
1115 006a 3A .uleb128 0x3a
1116 006b 0B .uleb128 0xb
1117 006c 3B .uleb128 0x3b
1118 006d 0B .uleb128 0xb
1119 006e 01 .uleb128 0x1
1120 006f 13 .uleb128 0x13
1121 0070 00 .byte 0
1122 0071 00 .byte 0
1123 0072 09 .uleb128 0x9
1124 0073 0F .uleb128 0xf
1125 0074 00 .byte 0
1126 0075 0B .uleb128 0xb
1127 0076 0B .uleb128 0xb
1128 0077 49 .uleb128 0x49
1129 0078 13 .uleb128 0x13
1130 0079 00 .byte 0
1131 007a 00 .byte 0
1132 007b 0A .uleb128 0xa
1133 007c 0F .uleb128 0xf
1134 007d 00 .byte 0
1135 007e 0B .uleb128 0xb
1136 007f 0B .uleb128 0xb
1137 0080 00 .byte 0
1138 0081 00 .byte 0
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 21
1139 0082 0B .uleb128 0xb
1140 0083 0D .uleb128 0xd
1141 0084 00 .byte 0
1142 0085 03 .uleb128 0x3
1143 0086 08 .uleb128 0x8
1144 0087 3A .uleb128 0x3a
1145 0088 0B .uleb128 0xb
1146 0089 3B .uleb128 0x3b
1147 008a 05 .uleb128 0x5
1148 008b 49 .uleb128 0x49
1149 008c 13 .uleb128 0x13
1150 008d 38 .uleb128 0x38
1151 008e 0A .uleb128 0xa
1152 008f 00 .byte 0
1153 0090 00 .byte 0
1154 0091 0C .uleb128 0xc
1155 0092 13 .uleb128 0x13
1156 0093 01 .byte 0x1
1157 0094 03 .uleb128 0x3
1158 0095 0E .uleb128 0xe
1159 0096 0B .uleb128 0xb
1160 0097 0B .uleb128 0xb
1161 0098 3A .uleb128 0x3a
1162 0099 0B .uleb128 0xb
1163 009a 3B .uleb128 0x3b
1164 009b 05 .uleb128 0x5
1165 009c 01 .uleb128 0x1
1166 009d 13 .uleb128 0x13
1167 009e 00 .byte 0
1168 009f 00 .byte 0
1169 00a0 0D .uleb128 0xd
1170 00a1 15 .uleb128 0x15
1171 00a2 01 .byte 0x1
1172 00a3 27 .uleb128 0x27
1173 00a4 0C .uleb128 0xc
1174 00a5 01 .uleb128 0x1
1175 00a6 13 .uleb128 0x13
1176 00a7 00 .byte 0
1177 00a8 00 .byte 0
1178 00a9 0E .uleb128 0xe
1179 00aa 05 .uleb128 0x5
1180 00ab 00 .byte 0
1181 00ac 49 .uleb128 0x49
1182 00ad 13 .uleb128 0x13
1183 00ae 00 .byte 0
1184 00af 00 .byte 0
1185 00b0 0F .uleb128 0xf
1186 00b1 35 .uleb128 0x35
1187 00b2 00 .byte 0
1188 00b3 49 .uleb128 0x49
1189 00b4 13 .uleb128 0x13
1190 00b5 00 .byte 0
1191 00b6 00 .byte 0
1192 00b7 10 .uleb128 0x10
1193 00b8 17 .uleb128 0x17
1194 00b9 01 .byte 0x1
1195 00ba 0B .uleb128 0xb
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 22
1196 00bb 0B .uleb128 0xb
1197 00bc 3A .uleb128 0x3a
1198 00bd 0B .uleb128 0xb
1199 00be 3B .uleb128 0x3b
1200 00bf 0B .uleb128 0xb
1201 00c0 01 .uleb128 0x1
1202 00c1 13 .uleb128 0x13
1203 00c2 00 .byte 0
1204 00c3 00 .byte 0
1205 00c4 11 .uleb128 0x11
1206 00c5 0D .uleb128 0xd
1207 00c6 00 .byte 0
1208 00c7 03 .uleb128 0x3
1209 00c8 0E .uleb128 0xe
1210 00c9 3A .uleb128 0x3a
1211 00ca 0B .uleb128 0xb
1212 00cb 3B .uleb128 0x3b
1213 00cc 0B .uleb128 0xb
1214 00cd 49 .uleb128 0x49
1215 00ce 13 .uleb128 0x13
1216 00cf 00 .byte 0
1217 00d0 00 .byte 0
1218 00d1 12 .uleb128 0x12
1219 00d2 26 .uleb128 0x26
1220 00d3 00 .byte 0
1221 00d4 49 .uleb128 0x49
1222 00d5 13 .uleb128 0x13
1223 00d6 00 .byte 0
1224 00d7 00 .byte 0
1225 00d8 13 .uleb128 0x13
1226 00d9 2E .uleb128 0x2e
1227 00da 01 .byte 0x1
1228 00db 03 .uleb128 0x3
1229 00dc 0E .uleb128 0xe
1230 00dd 3A .uleb128 0x3a
1231 00de 0B .uleb128 0xb
1232 00df 3B .uleb128 0x3b
1233 00e0 0B .uleb128 0xb
1234 00e1 27 .uleb128 0x27
1235 00e2 0C .uleb128 0xc
1236 00e3 11 .uleb128 0x11
1237 00e4 01 .uleb128 0x1
1238 00e5 12 .uleb128 0x12
1239 00e6 01 .uleb128 0x1
1240 00e7 40 .uleb128 0x40
1241 00e8 06 .uleb128 0x6
1242 00e9 9742 .uleb128 0x2117
1243 00eb 0C .uleb128 0xc
1244 00ec 01 .uleb128 0x1
1245 00ed 13 .uleb128 0x13
1246 00ee 00 .byte 0
1247 00ef 00 .byte 0
1248 00f0 14 .uleb128 0x14
1249 00f1 05 .uleb128 0x5
1250 00f2 00 .byte 0
1251 00f3 03 .uleb128 0x3
1252 00f4 08 .uleb128 0x8
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 23
1253 00f5 3A .uleb128 0x3a
1254 00f6 0B .uleb128 0xb
1255 00f7 3B .uleb128 0x3b
1256 00f8 0B .uleb128 0xb
1257 00f9 49 .uleb128 0x49
1258 00fa 13 .uleb128 0x13
1259 00fb 02 .uleb128 0x2
1260 00fc 06 .uleb128 0x6
1261 00fd 00 .byte 0
1262 00fe 00 .byte 0
1263 00ff 15 .uleb128 0x15
1264 0100 34 .uleb128 0x34
1265 0101 00 .byte 0
1266 0102 03 .uleb128 0x3
1267 0103 08 .uleb128 0x8
1268 0104 3A .uleb128 0x3a
1269 0105 0B .uleb128 0xb
1270 0106 3B .uleb128 0x3b
1271 0107 0B .uleb128 0xb
1272 0108 49 .uleb128 0x49
1273 0109 13 .uleb128 0x13
1274 010a 02 .uleb128 0x2
1275 010b 06 .uleb128 0x6
1276 010c 00 .byte 0
1277 010d 00 .byte 0
1278 010e 16 .uleb128 0x16
1279 010f 898201 .uleb128 0x4109
1280 0112 01 .byte 0x1
1281 0113 11 .uleb128 0x11
1282 0114 01 .uleb128 0x1
1283 0115 31 .uleb128 0x31
1284 0116 13 .uleb128 0x13
1285 0117 01 .uleb128 0x1
1286 0118 13 .uleb128 0x13
1287 0119 00 .byte 0
1288 011a 00 .byte 0
1289 011b 17 .uleb128 0x17
1290 011c 8A8201 .uleb128 0x410a
1291 011f 00 .byte 0
1292 0120 02 .uleb128 0x2
1293 0121 0A .uleb128 0xa
1294 0122 9142 .uleb128 0x2111
1295 0124 0A .uleb128 0xa
1296 0125 00 .byte 0
1297 0126 00 .byte 0
1298 0127 18 .uleb128 0x18
1299 0128 898201 .uleb128 0x4109
1300 012b 01 .byte 0x1
1301 012c 11 .uleb128 0x11
1302 012d 01 .uleb128 0x1
1303 012e 9542 .uleb128 0x2115
1304 0130 0C .uleb128 0xc
1305 0131 31 .uleb128 0x31
1306 0132 13 .uleb128 0x13
1307 0133 00 .byte 0
1308 0134 00 .byte 0
1309 0135 19 .uleb128 0x19
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 24
1310 0136 2E .uleb128 0x2e
1311 0137 01 .byte 0x1
1312 0138 3F .uleb128 0x3f
1313 0139 0C .uleb128 0xc
1314 013a 03 .uleb128 0x3
1315 013b 0E .uleb128 0xe
1316 013c 3A .uleb128 0x3a
1317 013d 0B .uleb128 0xb
1318 013e 3B .uleb128 0x3b
1319 013f 0B .uleb128 0xb
1320 0140 27 .uleb128 0x27
1321 0141 0C .uleb128 0xc
1322 0142 11 .uleb128 0x11
1323 0143 01 .uleb128 0x1
1324 0144 12 .uleb128 0x12
1325 0145 01 .uleb128 0x1
1326 0146 40 .uleb128 0x40
1327 0147 06 .uleb128 0x6
1328 0148 9742 .uleb128 0x2117
1329 014a 0C .uleb128 0xc
1330 014b 01 .uleb128 0x1
1331 014c 13 .uleb128 0x13
1332 014d 00 .byte 0
1333 014e 00 .byte 0
1334 014f 1A .uleb128 0x1a
1335 0150 898201 .uleb128 0x4109
1336 0153 01 .byte 0x1
1337 0154 11 .uleb128 0x11
1338 0155 01 .uleb128 0x1
1339 0156 31 .uleb128 0x31
1340 0157 13 .uleb128 0x13
1341 0158 00 .byte 0
1342 0159 00 .byte 0
1343 015a 1B .uleb128 0x1b
1344 015b 2E .uleb128 0x2e
1345 015c 01 .byte 0x1
1346 015d 3F .uleb128 0x3f
1347 015e 0C .uleb128 0xc
1348 015f 03 .uleb128 0x3
1349 0160 0E .uleb128 0xe
1350 0161 3A .uleb128 0x3a
1351 0162 0B .uleb128 0xb
1352 0163 3B .uleb128 0x3b
1353 0164 0B .uleb128 0xb
1354 0165 27 .uleb128 0x27
1355 0166 0C .uleb128 0xc
1356 0167 3C .uleb128 0x3c
1357 0168 0C .uleb128 0xc
1358 0169 01 .uleb128 0x1
1359 016a 13 .uleb128 0x13
1360 016b 00 .byte 0
1361 016c 00 .byte 0
1362 016d 1C .uleb128 0x1c
1363 016e 2E .uleb128 0x2e
1364 016f 01 .byte 0x1
1365 0170 3F .uleb128 0x3f
1366 0171 0C .uleb128 0xc
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 25
1367 0172 03 .uleb128 0x3
1368 0173 0E .uleb128 0xe
1369 0174 3A .uleb128 0x3a
1370 0175 0B .uleb128 0xb
1371 0176 3B .uleb128 0x3b
1372 0177 0B .uleb128 0xb
1373 0178 27 .uleb128 0x27
1374 0179 0C .uleb128 0xc
1375 017a 3C .uleb128 0x3c
1376 017b 0C .uleb128 0xc
1377 017c 00 .byte 0
1378 017d 00 .byte 0
1379 017e 00 .byte 0
1380 .section .debug_loc,"",%progbits
1381 .Ldebug_loc0:
1382 .LLST0:
1383 0000 00000000 .4byte .LFB7
1384 0004 02000000 .4byte .LCFI0
1385 0008 0200 .2byte 0x2
1386 000a 7D .byte 0x7d
1387 000b 00 .sleb128 0
1388 000c 02000000 .4byte .LCFI0
1389 0010 24000000 .4byte .LFE7
1390 0014 0200 .2byte 0x2
1391 0016 7D .byte 0x7d
1392 0017 08 .sleb128 8
1393 0018 00000000 .4byte 0
1394 001c 00000000 .4byte 0
1395 .LLST1:
1396 0020 00000000 .4byte .LVL0
1397 0024 0A000000 .4byte .LVL2
1398 0028 0100 .2byte 0x1
1399 002a 50 .byte 0x50
1400 002b 0A000000 .4byte .LVL2
1401 002f 24000000 .4byte .LFE7
1402 0033 0100 .2byte 0x1
1403 0035 54 .byte 0x54
1404 0036 00000000 .4byte 0
1405 003a 00000000 .4byte 0
1406 .LLST2:
1407 003e 06000000 .4byte .LVL1
1408 0042 0A000000 .4byte .LVL2
1409 0046 0100 .2byte 0x1
1410 0048 50 .byte 0x50
1411 0049 0A000000 .4byte .LVL2
1412 004d 24000000 .4byte .LFE7
1413 0051 0100 .2byte 0x1
1414 0053 54 .byte 0x54
1415 0054 00000000 .4byte 0
1416 0058 00000000 .4byte 0
1417 .LLST3:
1418 005c 00000000 .4byte .LFB8
1419 0060 02000000 .4byte .LCFI1
1420 0064 0200 .2byte 0x2
1421 0066 7D .byte 0x7d
1422 0067 00 .sleb128 0
1423 0068 02000000 .4byte .LCFI1
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 26
1424 006c 20000000 .4byte .LFE8
1425 0070 0200 .2byte 0x2
1426 0072 7D .byte 0x7d
1427 0073 08 .sleb128 8
1428 0074 00000000 .4byte 0
1429 0078 00000000 .4byte 0
1430 .LLST4:
1431 007c 00000000 .4byte .LVL5
1432 0080 15000000 .4byte .LVL6-1
1433 0084 0100 .2byte 0x1
1434 0086 50 .byte 0x50
1435 0087 15000000 .4byte .LVL6-1
1436 008b 20000000 .4byte .LFE8
1437 008f 0400 .2byte 0x4
1438 0091 F3 .byte 0xf3
1439 0092 01 .uleb128 0x1
1440 0093 50 .byte 0x50
1441 0094 9F .byte 0x9f
1442 0095 00000000 .4byte 0
1443 0099 00000000 .4byte 0
1444 .LLST5:
1445 009d 00000000 .4byte .LFB9
1446 00a1 02000000 .4byte .LCFI2
1447 00a5 0200 .2byte 0x2
1448 00a7 7D .byte 0x7d
1449 00a8 00 .sleb128 0
1450 00a9 02000000 .4byte .LCFI2
1451 00ad 10000000 .4byte .LFE9
1452 00b1 0200 .2byte 0x2
1453 00b3 7D .byte 0x7d
1454 00b4 08 .sleb128 8
1455 00b5 00000000 .4byte 0
1456 00b9 00000000 .4byte 0
1457 .LLST6:
1458 00bd 00000000 .4byte .LVL7
1459 00c1 0B000000 .4byte .LVL8-1
1460 00c5 0100 .2byte 0x1
1461 00c7 50 .byte 0x50
1462 00c8 0B000000 .4byte .LVL8-1
1463 00cc 10000000 .4byte .LFE9
1464 00d0 0400 .2byte 0x4
1465 00d2 F3 .byte 0xf3
1466 00d3 01 .uleb128 0x1
1467 00d4 50 .byte 0x50
1468 00d5 9F .byte 0x9f
1469 00d6 00000000 .4byte 0
1470 00da 00000000 .4byte 0
1471 .section .debug_aranges,"",%progbits
1472 0000 2C000000 .4byte 0x2c
1473 0004 0200 .2byte 0x2
1474 0006 00000000 .4byte .Ldebug_info0
1475 000a 04 .byte 0x4
1476 000b 00 .byte 0
1477 000c 0000 .2byte 0
1478 000e 0000 .2byte 0
1479 0010 00000000 .4byte .LFB7
1480 0014 24000000 .4byte .LFE7-.LFB7
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 27
1481 0018 00000000 .4byte .LFB8
1482 001c 20000000 .4byte .LFE8-.LFB8
1483 0020 00000000 .4byte .LFB9
1484 0024 10000000 .4byte .LFE9-.LFB9
1485 0028 00000000 .4byte 0
1486 002c 00000000 .4byte 0
1487 .section .debug_ranges,"",%progbits
1488 .Ldebug_ranges0:
1489 0000 00000000 .4byte .LFB7
1490 0004 24000000 .4byte .LFE7
1491 0008 00000000 .4byte .LFB8
1492 000c 20000000 .4byte .LFE8
1493 0010 00000000 .4byte .LFB9
1494 0014 10000000 .4byte .LFE9
1495 0018 00000000 .4byte 0
1496 001c 00000000 .4byte 0
1497 .section .debug_line,"",%progbits
1498 .Ldebug_line0:
1499 0000 52010000 .section .debug_str,"MS",%progbits,1
1499 02000E01
1499 00000201
1499 FB0E0D00
1499 01010101
1500 .LASF68:
1501 0000 65745F69 .ascii "et_interval\000"
1501 6E746572
1501 76616C00
1502 .LASF33:
1503 000c 705F6D73 .ascii "p_msg\000"
1503 6700
1504 .LASF61:
1505 0012 7264796D .ascii "rdymsg\000"
1505 736700
1506 .LASF11:
1507 0019 6C6F6E67 .ascii "long long unsigned int\000"
1507 206C6F6E
1507 6720756E
1507 7369676E
1507 65642069
1508 .LASF62:
1509 0030 65786974 .ascii "exitcode\000"
1509 636F6465
1509 00
1510 .LASF70:
1511 0039 65767453 .ascii "evtStart\000"
1511 74617274
1511 00
1512 .LASF22:
1513 0042 705F7072 .ascii "p_prio\000"
1513 696F00
1514 .LASF10:
1515 0049 6C6F6E67 .ascii "long long int\000"
1515 206C6F6E
1515 6720696E
1515 7400
1516 .LASF1:
1517 0057 7369676E .ascii "signed char\000"
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 28
1517 65642063
1517 68617200
1518 .LASF69:
1519 0063 45765469 .ascii "EvTimer\000"
1519 6D657200
1520 .LASF37:
1521 006b 705F6D70 .ascii "p_mpool\000"
1521 6F6F6C00
1522 .LASF52:
1523 0073 6D5F7175 .ascii "m_queue\000"
1523 65756500
1524 .LASF7:
1525 007b 6C6F6E67 .ascii "long int\000"
1525 20696E74
1525 00
1526 .LASF13:
1527 0084 74737461 .ascii "tstate_t\000"
1527 74655F74
1527 00
1528 .LASF72:
1529 008d 63684576 .ascii "chEvtBroadcastFlagsI\000"
1529 7442726F
1529 61646361
1529 7374466C
1529 61677349
1530 .LASF24:
1531 00a2 705F6E65 .ascii "p_newer\000"
1531 77657200
1532 .LASF40:
1533 00aa 72656761 .ascii "regarm_t\000"
1533 726D5F74
1533 00
1534 .LASF47:
1535 00b3 76745F70 .ascii "vt_prev\000"
1535 72657600
1536 .LASF59:
1537 00bb 4576656E .ascii "EventSource\000"
1537 74536F75
1537 72636500
1538 .LASF0:
1539 00c7 756E7369 .ascii "unsigned int\000"
1539 676E6564
1539 20696E74
1539 00
1540 .LASF46:
1541 00d4 76745F6E .ascii "vt_next\000"
1541 65787400
1542 .LASF9:
1543 00dc 6C6F6E67 .ascii "long unsigned int\000"
1543 20756E73
1543 69676E65
1543 6420696E
1543 7400
1544 .LASF42:
1545 00ee 636F6E74 .ascii "context\000"
1545 65787400
1546 .LASF4:
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 29
1547 00f6 73686F72 .ascii "short unsigned int\000"
1547 7420756E
1547 7369676E
1547 65642069
1547 6E7400
1548 .LASF16:
1549 0109 6D73675F .ascii "msg_t\000"
1549 7400
1550 .LASF56:
1551 010f 656C5F6E .ascii "el_next\000"
1551 65787400
1552 .LASF12:
1553 0117 746D6F64 .ascii "tmode_t\000"
1553 655F7400
1554 .LASF39:
1555 011f 54687265 .ascii "ThreadsList\000"
1555 6164734C
1555 69737400
1556 .LASF17:
1557 012b 6576656E .ascii "eventmask_t\000"
1557 746D6173
1557 6B5F7400
1558 .LASF51:
1559 0137 4D757465 .ascii "Mutex\000"
1559 7800
1560 .LASF48:
1561 013d 76745F74 .ascii "vt_time\000"
1561 696D6500
1562 .LASF67:
1563 0145 65745F65 .ascii "et_es\000"
1563 7300
1564 .LASF43:
1565 014b 73697A65 .ascii "sizetype\000"
1565 74797065
1565 00
1566 .LASF49:
1567 0154 76745F66 .ascii "vt_func\000"
1567 756E6300
1568 .LASF73:
1569 015c 63685654 .ascii "chVTSetI\000"
1569 53657449
1569 00
1570 .LASF25:
1571 0165 705F6F6C .ascii "p_older\000"
1571 64657200
1572 .LASF38:
1573 016d 54687265 .ascii "ThreadsQueue\000"
1573 61647351
1573 75657565
1573 00
1574 .LASF74:
1575 017a 474E5520 .ascii "GNU C 4.7.2\000"
1575 4320342E
1575 372E3200
1576 .LASF58:
1577 0186 656C5F6D .ascii "el_mask\000"
1577 61736B00
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 30
1578 .LASF14:
1579 018e 74726566 .ascii "trefs_t\000"
1579 735F7400
1580 .LASF21:
1581 0196 705F7072 .ascii "p_prev\000"
1581 657600
1582 .LASF15:
1583 019d 74707269 .ascii "tprio_t\000"
1583 6F5F7400
1584 .LASF6:
1585 01a5 696E7433 .ascii "int32_t\000"
1585 325F7400
1586 .LASF2:
1587 01ad 756E7369 .ascii "unsigned char\000"
1587 676E6564
1587 20636861
1587 7200
1588 .LASF57:
1589 01bb 656C5F6C .ascii "el_listener\000"
1589 69737465
1589 6E657200
1590 .LASF35:
1591 01c7 705F6D74 .ascii "p_mtxlist\000"
1591 786C6973
1591 7400
1592 .LASF3:
1593 01d1 73686F72 .ascii "short int\000"
1593 7420696E
1593 7400
1594 .LASF27:
1595 01db 705F7374 .ascii "p_state\000"
1595 61746500
1596 .LASF64:
1597 01e3 65776D61 .ascii "ewmask\000"
1597 736B00
1598 .LASF20:
1599 01ea 705F6E65 .ascii "p_next\000"
1599 787400
1600 .LASF28:
1601 01f1 705F666C .ascii "p_flags\000"
1601 61677300
1602 .LASF76:
1603 01f9 433A5C44 .ascii "C:\\Documents and Settings\\Imanol.DEVEL\\My Docume"
1603 6F63756D
1603 656E7473
1603 20616E64
1603 20536574
1604 0229 6E74735C .ascii "nts\\devel\\smartcities\\Project\\applications\\sma"
1604 64657665
1604 6C5C736D
1604 61727463
1604 69746965
1605 0257 72746369 .ascii "rtcities\000"
1605 74696573
1605 00
1606 .LASF19:
1607 0260 54687265 .ascii "Thread\000"
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 31
1607 616400
1608 .LASF78:
1609 0267 63685654 .ascii "chVTResetI\000"
1609 52657365
1609 744900
1610 .LASF34:
1611 0272 705F6570 .ascii "p_epending\000"
1611 656E6469
1611 6E6700
1612 .LASF8:
1613 027d 75696E74 .ascii "uint32_t\000"
1613 33325F74
1613 00
1614 .LASF45:
1615 0286 56697274 .ascii "VirtualTimer\000"
1615 75616C54
1615 696D6572
1615 00
1616 .LASF65:
1617 0293 63686172 .ascii "char\000"
1617 00
1618 .LASF77:
1619 0298 746D7263 .ascii "tmrcb\000"
1619 6200
1620 .LASF54:
1621 029e 6D5F6E65 .ascii "m_next\000"
1621 787400
1622 .LASF18:
1623 02a5 73797374 .ascii "systime_t\000"
1623 696D655F
1623 7400
1624 .LASF36:
1625 02af 705F7265 .ascii "p_realprio\000"
1625 616C7072
1625 696F00
1626 .LASF44:
1627 02ba 76746675 .ascii "vtfunc_t\000"
1627 6E635F74
1627 00
1628 .LASF71:
1629 02c3 65767453 .ascii "evtStop\000"
1629 746F7000
1630 .LASF30:
1631 02cb 705F7469 .ascii "p_time\000"
1631 6D6500
1632 .LASF41:
1633 02d2 696E7463 .ascii "intctx\000"
1633 747800
1634 .LASF32:
1635 02d9 705F6D73 .ascii "p_msgqueue\000"
1635 67717565
1635 756500
1636 .LASF50:
1637 02e4 76745F70 .ascii "vt_par\000"
1637 617200
1638 .LASF75:
1639 02eb 2E2E2F2E .ascii "../..//os/various/evtimer.c\000"
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 32
1639 2E2F2F6F
1639 732F7661
1639 72696F75
1639 732F6576
1640 .LASF29:
1641 0307 705F7265 .ascii "p_refs\000"
1641 667300
1642 .LASF5:
1643 030e 75696E74 .ascii "uint8_t\000"
1643 385F7400
1644 .LASF55:
1645 0316 4576656E .ascii "EventListener\000"
1645 744C6973
1645 74656E65
1645 7200
1646 .LASF63:
1647 0324 77746F62 .ascii "wtobjp\000"
1647 6A7000
1648 .LASF26:
1649 032b 705F6E61 .ascii "p_name\000"
1649 6D6500
1650 .LASF60:
1651 0332 65735F6E .ascii "es_next\000"
1651 65787400
1652 .LASF66:
1653 033a 65745F76 .ascii "et_vt\000"
1653 7400
1654 .LASF53:
1655 0340 6D5F6F77 .ascii "m_owner\000"
1655 6E657200
1656 .LASF23:
1657 0348 705F6374 .ascii "p_ctx\000"
1657 7800
1658 .LASF31:
1659 034e 705F7761 .ascii "p_waiting\000"
1659 6974696E
1659 6700
1660 .ident "GCC: (GNU) 4.7.2"
ARM GAS C:\cygwin\tmp\ccZSdxDg.s page 33
DEFINED SYMBOLS
*ABS*:00000000 evtimer.c
C:\cygwin\tmp\ccZSdxDg.s:19 .text.tmrcb:00000000 $t
C:\cygwin\tmp\ccZSdxDg.s:24 .text.tmrcb:00000000 tmrcb
C:\cygwin\tmp\ccZSdxDg.s:62 .text.evtStart:00000000 $t
C:\cygwin\tmp\ccZSdxDg.s:68 .text.evtStart:00000000 evtStart
C:\cygwin\tmp\ccZSdxDg.s:111 .text.evtStart:0000001c $d
C:\cygwin\tmp\ccZSdxDg.s:116 .text.evtStop:00000000 $t
C:\cygwin\tmp\ccZSdxDg.s:122 .text.evtStop:00000000 evtStop
.debug_frame:00000010 $d
UNDEFINED SYMBOLS
chEvtBroadcastFlagsI
chVTSetI
chVTResetI