chdynamic.lst
89.2 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
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
ARM GAS C:\cygwin64\tmp\ccdlIsIh.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 "chdynamic.c"
15 .text
16 .Ltext0:
17 .cfi_sections .debug_frame
18 .section .text.chThdAddRef,"ax",%progbits
19 .align 2
20 .p2align 4,,15
21 .global chThdAddRef
22 .thumb
23 .thumb_func
24 .type chThdAddRef, %function
25 chThdAddRef:
26 .LFB7:
27 .file 1 "../..//os/kernel/src/chdynamic.c"
28 .loc 1 52 0
29 .cfi_startproc
30 @ args = 0, pretend = 0, frame = 0
31 @ frame_needed = 0, uses_anonymous_args = 0
32 @ link register save eliminated.
33 .LVL0:
34 .loc 1 54 0
35 @ 54 "../..//os/kernel/src/chdynamic.c" 1
36 0000 72B6 cpsid i
37 @ 0 "" 2
38 .loc 1 56 0
39 .thumb
40 0002 827F ldrb r2, [r0, #30] @ zero_extendqisi2
41 0004 0132 adds r2, r2, #1
42 0006 8277 strb r2, [r0, #30]
43 .loc 1 57 0
44 @ 57 "../..//os/kernel/src/chdynamic.c" 1
45 0008 62B6 cpsie i
46 @ 0 "" 2
47 .loc 1 59 0
48 .thumb
49 000a 7047 bx lr
50 .cfi_endproc
51 .LFE7:
52 .size chThdAddRef, .-chThdAddRef
53 000c AFF30080 .section .text.chThdRelease,"ax",%progbits
54 .align 2
55 .p2align 4,,15
56 .global chThdRelease
57 .thumb
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 2
58 .thumb_func
59 .type chThdRelease, %function
60 chThdRelease:
61 .LFB8:
62 .loc 1 74 0
63 .cfi_startproc
64 @ args = 0, pretend = 0, frame = 0
65 @ frame_needed = 0, uses_anonymous_args = 0
66 @ link register save eliminated.
67 .LVL1:
68 .loc 1 74 0
69 0000 0146 mov r1, r0
70 .loc 1 77 0
71 @ 77 "../..//os/kernel/src/chdynamic.c" 1
72 0002 72B6 cpsid i
73 @ 0 "" 2
74 .loc 1 79 0
75 .thumb
76 0004 837F ldrb r3, [r0, #30] @ zero_extendqisi2
77 0006 013B subs r3, r3, #1
78 0008 DBB2 uxtb r3, r3
79 000a 8377 strb r3, [r0, #30]
80 .LVL2:
81 .loc 1 80 0
82 @ 80 "../..//os/kernel/src/chdynamic.c" 1
83 000c 62B6 cpsie i
84 @ 0 "" 2
85 .loc 1 85 0
86 .thumb
87 000e 13B9 cbnz r3, .L2
88 .loc 1 85 0 is_stmt 0 discriminator 1
89 0010 037F ldrb r3, [r0, #28] @ zero_extendqisi2
90 .LVL3:
91 0012 0E2B cmp r3, #14
92 0014 00D0 beq .L7
93 .L2:
94 0016 7047 bx lr
95 .L7:
96 .loc 1 86 0 is_stmt 1
97 0018 437F ldrb r3, [r0, #29] @ zero_extendqisi2
98 001a 03F00303 and r3, r3, #3
99 001e 012B cmp r3, #1
100 0020 09D0 beq .L4
101 0022 022B cmp r3, #2
102 0024 F7D1 bne .L2
103 .loc 1 98 0
104 0026 4369 ldr r3, [r0, #20]
105 0028 0269 ldr r2, [r0, #16]
106 .loc 1 100 0
107 002a 406C ldr r0, [r0, #68]
108 .LVL4:
109 .loc 1 98 0
110 002c 1A61 str r2, [r3, #16]
111 002e 0A69 ldr r2, [r1, #16]
112 0030 5361 str r3, [r2, #20]
113 .loc 1 105 0
114 .loc 1 100 0
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 3
115 0032 FFF7FEBF b chPoolFree
116 .LVL5:
117 .L4:
118 .loc 1 90 0
119 0036 4369 ldr r3, [r0, #20]
120 0038 0269 ldr r2, [r0, #16]
121 003a 1A61 str r2, [r3, #16]
122 003c 0269 ldr r2, [r0, #16]
123 003e 5361 str r3, [r2, #20]
124 .loc 1 105 0
125 .loc 1 92 0
126 0040 FFF7FEBF b chHeapFree
127 .LVL6:
128 .cfi_endproc
129 .LFE8:
130 .size chThdRelease, .-chThdRelease
131 0044 AFF30080 .section .text.chThdCreateFromHeap,"ax",%progbits
131 AFF30080
131 AFF30080
132 .align 2
133 .p2align 4,,15
134 .global chThdCreateFromHeap
135 .thumb
136 .thumb_func
137 .type chThdCreateFromHeap, %function
138 chThdCreateFromHeap:
139 .LFB9:
140 .loc 1 131 0
141 .cfi_startproc
142 @ args = 4, pretend = 0, frame = 0
143 @ frame_needed = 0, uses_anonymous_args = 0
144 .LVL7:
145 0000 F0B5 push {r4, r5, r6, r7, lr}
146 .LCFI0:
147 .cfi_def_cfa_offset 20
148 .cfi_offset 4, -20
149 .cfi_offset 5, -16
150 .cfi_offset 6, -12
151 .cfi_offset 7, -8
152 .cfi_offset 14, -4
153 0002 83B0 sub sp, sp, #12
154 .LCFI1:
155 .cfi_def_cfa_offset 32
156 .loc 1 131 0
157 0004 0D46 mov r5, r1
158 0006 1746 mov r7, r2
159 0008 1E46 mov r6, r3
160 .loc 1 135 0
161 000a FFF7FEFF bl chHeapAlloc
162 .LVL8:
163 .loc 1 136 0
164 000e 0446 mov r4, r0
165 0010 70B1 cbz r0, .L9
166 .loc 1 148 0
167 @ 148 "../..//os/kernel/src/chdynamic.c" 1
168 0012 72B6 cpsid i
169 @ 0 "" 2
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 4
170 .loc 1 149 0
171 .thumb
172 0014 089C ldr r4, [sp, #32]
173 0016 2946 mov r1, r5
174 0018 3A46 mov r2, r7
175 001a 3346 mov r3, r6
176 001c 0094 str r4, [sp, #0]
177 001e FFF7FEFF bl chThdCreateI
178 .LVL9:
179 .loc 1 150 0
180 0022 0123 movs r3, #1
181 0024 4377 strb r3, [r0, #29]
182 .loc 1 151 0
183 0026 0021 movs r1, #0
184 .loc 1 149 0
185 0028 0446 mov r4, r0
186 .LVL10:
187 .loc 1 151 0
188 002a FFF7FEFF bl chSchWakeupS
189 .LVL11:
190 .loc 1 152 0
191 @ 152 "../..//os/kernel/src/chdynamic.c" 1
192 002e 62B6 cpsie i
193 @ 0 "" 2
194 .LVL12:
195 .thumb
196 .L9:
197 .loc 1 154 0
198 0030 2046 mov r0, r4
199 0032 03B0 add sp, sp, #12
200 0034 F0BD pop {r4, r5, r6, r7, pc}
201 .cfi_endproc
202 .LFE9:
203 .size chThdCreateFromHeap, .-chThdCreateFromHeap
204 0036 00BFAFF3 .section .text.chThdCreateFromMemoryPool,"ax",%progbits
204 0080AFF3
204 0080
205 .align 2
206 .p2align 4,,15
207 .global chThdCreateFromMemoryPool
208 .thumb
209 .thumb_func
210 .type chThdCreateFromMemoryPool, %function
211 chThdCreateFromMemoryPool:
212 .LFB10:
213 .loc 1 180 0
214 .cfi_startproc
215 @ args = 0, pretend = 0, frame = 0
216 @ frame_needed = 0, uses_anonymous_args = 0
217 .LVL13:
218 0000 2DE9F041 push {r4, r5, r6, r7, r8, lr}
219 .LCFI2:
220 .cfi_def_cfa_offset 24
221 .cfi_offset 4, -24
222 .cfi_offset 5, -20
223 .cfi_offset 6, -16
224 .cfi_offset 7, -12
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 5
225 .cfi_offset 8, -8
226 .cfi_offset 14, -4
227 0004 82B0 sub sp, sp, #8
228 .LCFI3:
229 .cfi_def_cfa_offset 32
230 .loc 1 180 0
231 0006 0546 mov r5, r0
232 0008 8846 mov r8, r1
233 000a 1746 mov r7, r2
234 000c 1E46 mov r6, r3
235 .loc 1 186 0
236 000e FFF7FEFF bl chPoolAlloc
237 .LVL14:
238 .loc 1 187 0
239 0012 0446 mov r4, r0
240 0014 70B1 cbz r0, .L12
241 .loc 1 199 0
242 @ 199 "../..//os/kernel/src/chdynamic.c" 1
243 0016 72B6 cpsid i
244 @ 0 "" 2
245 .loc 1 200 0
246 .thumb
247 0018 6968 ldr r1, [r5, #4]
248 001a 4246 mov r2, r8
249 001c 3B46 mov r3, r7
250 001e 0096 str r6, [sp, #0]
251 0020 FFF7FEFF bl chThdCreateI
252 .LVL15:
253 .loc 1 201 0
254 0024 0223 movs r3, #2
255 0026 4377 strb r3, [r0, #29]
256 .loc 1 202 0
257 0028 4564 str r5, [r0, #68]
258 .loc 1 203 0
259 002a 0021 movs r1, #0
260 .loc 1 200 0
261 002c 0446 mov r4, r0
262 .LVL16:
263 .loc 1 203 0
264 002e FFF7FEFF bl chSchWakeupS
265 .LVL17:
266 .loc 1 204 0
267 @ 204 "../..//os/kernel/src/chdynamic.c" 1
268 0032 62B6 cpsie i
269 @ 0 "" 2
270 .LVL18:
271 .thumb
272 .L12:
273 .loc 1 206 0
274 0034 2046 mov r0, r4
275 0036 02B0 add sp, sp, #8
276 0038 BDE8F081 pop {r4, r5, r6, r7, r8, pc}
277 .cfi_endproc
278 .LFE10:
279 .size chThdCreateFromMemoryPool, .-chThdCreateFromMemoryPool
280 003c AFF30080 .text
281 .Letext0:
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 6
282 .file 2 "c:\\yagarto-20121222\\bin\\../lib/gcc/arm-none-eabi/4.7.2/include/stddef.h"
283 .file 3 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/stdint.h"
284 .file 4 "../..//os/ports/GCC/ARMCMx/chtypes.h"
285 .file 5 "../..//os/kernel/include/chlists.h"
286 .file 6 "../..//os/kernel/include/chthreads.h"
287 .file 7 "../..//os/ports/GCC/ARMCMx/chcore_v7m.h"
288 .file 8 "../..//os/kernel/include/chmtx.h"
289 .file 9 "../..//os/kernel/include/chmemcore.h"
290 .file 10 "../..//os/kernel/include/chheap.h"
291 .file 11 "../..//os/kernel/include/chmempools.h"
292 .file 12 "../..//os/kernel/include/chschd.h"
293 .section .debug_info,"",%progbits
294 .Ldebug_info0:
295 0000 FA070000 .4byte 0x7fa
296 0004 0200 .2byte 0x2
297 0006 00000000 .4byte .Ldebug_abbrev0
298 000a 04 .byte 0x4
299 000b 01 .uleb128 0x1
300 000c 68020000 .4byte .LASF85
301 0010 01 .byte 0x1
302 0011 DD010000 .4byte .LASF86
303 0015 25000000 .4byte .LASF87
304 0019 00000000 .4byte .Ldebug_ranges0+0
305 001d 00000000 .4byte 0
306 0021 00000000 .4byte 0
307 0025 00000000 .4byte .Ldebug_line0
308 0029 02 .uleb128 0x2
309 002a 04 .byte 0x4
310 002b 05 .byte 0x5
311 002c 696E7400 .ascii "int\000"
312 0030 03 .uleb128 0x3
313 0031 0E000000 .4byte .LASF2
314 0035 02 .byte 0x2
315 0036 D5 .byte 0xd5
316 0037 3B000000 .4byte 0x3b
317 003b 04 .uleb128 0x4
318 003c 04 .byte 0x4
319 003d 07 .byte 0x7
320 003e 98010000 .4byte .LASF0
321 0042 04 .uleb128 0x4
322 0043 01 .byte 0x1
323 0044 06 .byte 0x6
324 0045 F3000000 .4byte .LASF1
325 0049 03 .uleb128 0x3
326 004a 9A030000 .4byte .LASF3
327 004e 03 .byte 0x3
328 004f 2A .byte 0x2a
329 0050 54000000 .4byte 0x54
330 0054 04 .uleb128 0x4
331 0055 01 .byte 0x1
332 0056 08 .byte 0x8
333 0057 B0020000 .4byte .LASF4
334 005b 04 .uleb128 0x4
335 005c 02 .byte 0x2
336 005d 05 .byte 0x5
337 005e D3020000 .4byte .LASF5
338 0062 04 .uleb128 0x4
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 7
339 0063 02 .byte 0x2
340 0064 07 .byte 0x7
341 0065 C4010000 .4byte .LASF6
342 0069 03 .uleb128 0x3
343 006a A8020000 .4byte .LASF7
344 006e 03 .byte 0x3
345 006f 4F .byte 0x4f
346 0070 74000000 .4byte 0x74
347 0074 04 .uleb128 0x4
348 0075 04 .byte 0x4
349 0076 05 .byte 0x5
350 0077 2D010000 .4byte .LASF8
351 007b 03 .uleb128 0x3
352 007c 32030000 .4byte .LASF9
353 0080 03 .byte 0x3
354 0081 50 .byte 0x50
355 0082 86000000 .4byte 0x86
356 0086 04 .uleb128 0x4
357 0087 04 .byte 0x4
358 0088 07 .byte 0x7
359 0089 A5010000 .4byte .LASF10
360 008d 04 .uleb128 0x4
361 008e 08 .byte 0x8
362 008f 05 .byte 0x5
363 0090 E5000000 .4byte .LASF11
364 0094 03 .uleb128 0x3
365 0095 1C000000 .4byte .LASF12
366 0099 03 .byte 0x3
367 009a 78 .byte 0x78
368 009b 9F000000 .4byte 0x9f
369 009f 04 .uleb128 0x4
370 00a0 08 .byte 0x8
371 00a1 07 .byte 0x7
372 00a2 AC000000 .4byte .LASF13
373 00a6 03 .uleb128 0x3
374 00a7 FE010000 .4byte .LASF14
375 00ab 04 .byte 0x4
376 00ac 2F .byte 0x2f
377 00ad 49000000 .4byte 0x49
378 00b1 03 .uleb128 0x3
379 00b2 4A010000 .4byte .LASF15
380 00b6 04 .byte 0x4
381 00b7 30 .byte 0x30
382 00b8 49000000 .4byte 0x49
383 00bc 03 .uleb128 0x3
384 00bd 8C020000 .4byte .LASF16
385 00c1 04 .byte 0x4
386 00c2 31 .byte 0x31
387 00c3 49000000 .4byte 0x49
388 00c7 03 .uleb128 0x3
389 00c8 A0020000 .4byte .LASF17
390 00cc 04 .byte 0x4
391 00cd 32 .byte 0x32
392 00ce 7B000000 .4byte 0x7b
393 00d2 03 .uleb128 0x3
394 00d3 D7010000 .4byte .LASF18
395 00d7 04 .byte 0x4
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 8
396 00d8 33 .byte 0x33
397 00d9 69000000 .4byte 0x69
398 00dd 03 .uleb128 0x3
399 00de 12020000 .4byte .LASF19
400 00e2 04 .byte 0x4
401 00e3 35 .byte 0x35
402 00e4 7B000000 .4byte 0x7b
403 00e8 03 .uleb128 0x3
404 00e9 4C030000 .4byte .LASF20
405 00ed 04 .byte 0x4
406 00ee 36 .byte 0x36
407 00ef 7B000000 .4byte 0x7b
408 00f3 03 .uleb128 0x3
409 00f4 14030000 .4byte .LASF21
410 00f8 05 .byte 0x5
411 00f9 2A .byte 0x2a
412 00fa FE000000 .4byte 0xfe
413 00fe 05 .uleb128 0x5
414 00ff 14030000 .4byte .LASF21
415 0103 48 .byte 0x48
416 0104 06 .byte 0x6
417 0105 5E .byte 0x5e
418 0106 15020000 .4byte 0x215
419 010a 06 .uleb128 0x6
420 010b F8020000 .4byte .LASF22
421 010f 06 .byte 0x6
422 0110 5F .byte 0x5f
423 0111 3A020000 .4byte 0x23a
424 0115 02 .byte 0x2
425 0116 23 .byte 0x23
426 0117 00 .uleb128 0
427 0118 06 .uleb128 0x6
428 0119 99020000 .4byte .LASF23
429 011d 06 .byte 0x6
430 011e 61 .byte 0x61
431 011f 3A020000 .4byte 0x23a
432 0123 02 .byte 0x2
433 0124 23 .byte 0x23
434 0125 04 .uleb128 0x4
435 0126 06 .uleb128 0x6
436 0127 DE000000 .4byte .LASF24
437 012b 06 .byte 0x6
438 012c 63 .byte 0x63
439 012d C7000000 .4byte 0xc7
440 0131 02 .byte 0x2
441 0132 23 .byte 0x23
442 0133 08 .uleb128 0x8
443 0134 06 .uleb128 0x6
444 0135 CF030000 .4byte .LASF25
445 0139 06 .byte 0x6
446 013a 64 .byte 0x64
447 013b 12030000 .4byte 0x312
448 013f 02 .byte 0x2
449 0140 23 .byte 0x23
450 0141 0C .uleb128 0xc
451 0142 06 .uleb128 0x6
452 0143 5B010000 .4byte .LASF26
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 9
453 0147 06 .byte 0x6
454 0148 66 .byte 0x66
455 0149 3A020000 .4byte 0x23a
456 014d 02 .byte 0x2
457 014e 23 .byte 0x23
458 014f 10 .uleb128 0x10
459 0150 06 .uleb128 0x6
460 0151 44020000 .4byte .LASF27
461 0155 06 .byte 0x6
462 0156 67 .byte 0x67
463 0157 3A020000 .4byte 0x23a
464 015b 02 .byte 0x2
465 015c 23 .byte 0x23
466 015d 14 .uleb128 0x14
467 015e 06 .uleb128 0x6
468 015f C0030000 .4byte .LASF28
469 0163 06 .byte 0x6
470 0164 6E .byte 0x6e
471 0165 EF040000 .4byte 0x4ef
472 0169 02 .byte 0x2
473 016a 23 .byte 0x23
474 016b 18 .uleb128 0x18
475 016c 06 .uleb128 0x6
476 016d DD020000 .4byte .LASF29
477 0171 06 .byte 0x6
478 0172 79 .byte 0x79
479 0173 B1000000 .4byte 0xb1
480 0177 02 .byte 0x2
481 0178 23 .byte 0x23
482 0179 1C .uleb128 0x1c
483 017a 06 .uleb128 0x6
484 017b FF020000 .4byte .LASF30
485 017f 06 .byte 0x6
486 0180 7D .byte 0x7d
487 0181 A6000000 .4byte 0xa6
488 0185 02 .byte 0x2
489 0186 23 .byte 0x23
490 0187 1D .uleb128 0x1d
491 0188 06 .uleb128 0x6
492 0189 93030000 .4byte .LASF31
493 018d 06 .byte 0x6
494 018e 82 .byte 0x82
495 018f BC000000 .4byte 0xbc
496 0193 02 .byte 0x2
497 0194 23 .byte 0x23
498 0195 1E .uleb128 0x1e
499 0196 06 .uleb128 0x6
500 0197 61030000 .4byte .LASF32
501 019b 06 .byte 0x6
502 019c 89 .byte 0x89
503 019d 3C030000 .4byte 0x33c
504 01a1 02 .byte 0x2
505 01a2 23 .byte 0x23
506 01a3 20 .uleb128 0x20
507 01a4 07 .uleb128 0x7
508 01a5 705F7500 .ascii "p_u\000"
509 01a9 06 .byte 0x6
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 10
510 01aa AE .byte 0xae
511 01ab BA040000 .4byte 0x4ba
512 01af 02 .byte 0x2
513 01b0 23 .byte 0x23
514 01b1 24 .uleb128 0x24
515 01b2 06 .uleb128 0x6
516 01b3 D5030000 .4byte .LASF33
517 01b7 06 .byte 0x6
518 01b8 B3 .byte 0xb3
519 01b9 62020000 .4byte 0x262
520 01bd 02 .byte 0x2
521 01be 23 .byte 0x23
522 01bf 28 .uleb128 0x28
523 01c0 06 .uleb128 0x6
524 01c1 6F030000 .4byte .LASF34
525 01c5 06 .byte 0x6
526 01c6 B9 .byte 0xb9
527 01c7 40020000 .4byte 0x240
528 01cb 02 .byte 0x2
529 01cc 23 .byte 0x23
530 01cd 2C .uleb128 0x2c
531 01ce 06 .uleb128 0x6
532 01cf 08000000 .4byte .LASF35
533 01d3 06 .byte 0x6
534 01d4 BD .byte 0xbd
535 01d5 D2000000 .4byte 0xd2
536 01d9 02 .byte 0x2
537 01da 23 .byte 0x23
538 01db 34 .uleb128 0x34
539 01dc 06 .uleb128 0x6
540 01dd 27030000 .4byte .LASF36
541 01e1 06 .byte 0x6
542 01e2 C3 .byte 0xc3
543 01e3 DD000000 .4byte 0xdd
544 01e7 02 .byte 0x2
545 01e8 23 .byte 0x23
546 01e9 38 .uleb128 0x38
547 01ea 06 .uleb128 0x6
548 01eb C9020000 .4byte .LASF37
549 01ef 06 .byte 0x6
550 01f0 CA .byte 0xca
551 01f1 01050000 .4byte 0x501
552 01f5 02 .byte 0x2
553 01f6 23 .byte 0x23
554 01f7 3C .uleb128 0x3c
555 01f8 06 .uleb128 0x6
556 01f9 56030000 .4byte .LASF38
557 01fd 06 .byte 0x6
558 01fe CE .byte 0xce
559 01ff C7000000 .4byte 0xc7
560 0203 02 .byte 0x2
561 0204 23 .byte 0x23
562 0205 40 .uleb128 0x40
563 0206 06 .uleb128 0x6
564 0207 05010000 .4byte .LASF39
565 020b 06 .byte 0x6
566 020c D4 .byte 0xd4
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 11
567 020d 78020000 .4byte 0x278
568 0211 02 .byte 0x2
569 0212 23 .byte 0x23
570 0213 44 .uleb128 0x44
571 0214 00 .byte 0
572 0215 08 .uleb128 0x8
573 0216 08 .byte 0x8
574 0217 05 .byte 0x5
575 0218 61 .byte 0x61
576 0219 3A020000 .4byte 0x23a
577 021d 06 .uleb128 0x6
578 021e F8020000 .4byte .LASF22
579 0222 05 .byte 0x5
580 0223 62 .byte 0x62
581 0224 3A020000 .4byte 0x23a
582 0228 02 .byte 0x2
583 0229 23 .byte 0x23
584 022a 00 .uleb128 0
585 022b 06 .uleb128 0x6
586 022c 99020000 .4byte .LASF23
587 0230 05 .byte 0x5
588 0231 64 .byte 0x64
589 0232 3A020000 .4byte 0x23a
590 0236 02 .byte 0x2
591 0237 23 .byte 0x23
592 0238 04 .uleb128 0x4
593 0239 00 .byte 0
594 023a 09 .uleb128 0x9
595 023b 04 .byte 0x4
596 023c F3000000 .4byte 0xf3
597 0240 03 .uleb128 0x3
598 0241 4C020000 .4byte .LASF40
599 0245 05 .byte 0x5
600 0246 66 .byte 0x66
601 0247 15020000 .4byte 0x215
602 024b 08 .uleb128 0x8
603 024c 04 .byte 0x4
604 024d 05 .byte 0x5
605 024e 6B .byte 0x6b
606 024f 62020000 .4byte 0x262
607 0253 06 .uleb128 0x6
608 0254 F8020000 .4byte .LASF22
609 0258 05 .byte 0x5
610 0259 6D .byte 0x6d
611 025a 3A020000 .4byte 0x23a
612 025e 02 .byte 0x2
613 025f 23 .byte 0x23
614 0260 00 .uleb128 0
615 0261 00 .byte 0
616 0262 03 .uleb128 0x3
617 0263 06020000 .4byte .LASF41
618 0267 05 .byte 0x5
619 0268 70 .byte 0x70
620 0269 4B020000 .4byte 0x24b
621 026d 03 .uleb128 0x3
622 026e 89010000 .4byte .LASF42
623 0272 07 .byte 0x7
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 12
624 0273 D7 .byte 0xd7
625 0274 78020000 .4byte 0x278
626 0278 0A .uleb128 0xa
627 0279 04 .byte 0x4
628 027a 03 .uleb128 0x3
629 027b 30020000 .4byte .LASF43
630 027f 07 .byte 0x7
631 0280 DD .byte 0xdd
632 0281 94000000 .4byte 0x94
633 0285 05 .uleb128 0x5
634 0286 68030000 .4byte .LASF44
635 028a 24 .byte 0x24
636 028b 07 .byte 0x7
637 028c FE .byte 0xfe
638 028d 12030000 .4byte 0x312
639 0291 0B .uleb128 0xb
640 0292 723400 .ascii "r4\000"
641 0295 07 .byte 0x7
642 0296 1101 .2byte 0x111
643 0298 6D020000 .4byte 0x26d
644 029c 02 .byte 0x2
645 029d 23 .byte 0x23
646 029e 00 .uleb128 0
647 029f 0B .uleb128 0xb
648 02a0 723500 .ascii "r5\000"
649 02a3 07 .byte 0x7
650 02a4 1201 .2byte 0x112
651 02a6 6D020000 .4byte 0x26d
652 02aa 02 .byte 0x2
653 02ab 23 .byte 0x23
654 02ac 04 .uleb128 0x4
655 02ad 0B .uleb128 0xb
656 02ae 723600 .ascii "r6\000"
657 02b1 07 .byte 0x7
658 02b2 1301 .2byte 0x113
659 02b4 6D020000 .4byte 0x26d
660 02b8 02 .byte 0x2
661 02b9 23 .byte 0x23
662 02ba 08 .uleb128 0x8
663 02bb 0B .uleb128 0xb
664 02bc 723700 .ascii "r7\000"
665 02bf 07 .byte 0x7
666 02c0 1401 .2byte 0x114
667 02c2 6D020000 .4byte 0x26d
668 02c6 02 .byte 0x2
669 02c7 23 .byte 0x23
670 02c8 0C .uleb128 0xc
671 02c9 0B .uleb128 0xb
672 02ca 723800 .ascii "r8\000"
673 02cd 07 .byte 0x7
674 02ce 1501 .2byte 0x115
675 02d0 6D020000 .4byte 0x26d
676 02d4 02 .byte 0x2
677 02d5 23 .byte 0x23
678 02d6 10 .uleb128 0x10
679 02d7 0B .uleb128 0xb
680 02d8 723900 .ascii "r9\000"
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 13
681 02db 07 .byte 0x7
682 02dc 1601 .2byte 0x116
683 02de 6D020000 .4byte 0x26d
684 02e2 02 .byte 0x2
685 02e3 23 .byte 0x23
686 02e4 14 .uleb128 0x14
687 02e5 0B .uleb128 0xb
688 02e6 72313000 .ascii "r10\000"
689 02ea 07 .byte 0x7
690 02eb 1701 .2byte 0x117
691 02ed 6D020000 .4byte 0x26d
692 02f1 02 .byte 0x2
693 02f2 23 .byte 0x23
694 02f3 18 .uleb128 0x18
695 02f4 0B .uleb128 0xb
696 02f5 72313100 .ascii "r11\000"
697 02f9 07 .byte 0x7
698 02fa 1801 .2byte 0x118
699 02fc 6D020000 .4byte 0x26d
700 0300 02 .byte 0x2
701 0301 23 .byte 0x23
702 0302 1C .uleb128 0x1c
703 0303 0B .uleb128 0xb
704 0304 6C7200 .ascii "lr\000"
705 0307 07 .byte 0x7
706 0308 1901 .2byte 0x119
707 030a 6D020000 .4byte 0x26d
708 030e 02 .byte 0x2
709 030f 23 .byte 0x23
710 0310 20 .uleb128 0x20
711 0311 00 .byte 0
712 0312 0C .uleb128 0xc
713 0313 B7010000 .4byte .LASF45
714 0317 04 .byte 0x4
715 0318 07 .byte 0x7
716 0319 2301 .2byte 0x123
717 031b 2F030000 .4byte 0x32f
718 031f 0B .uleb128 0xb
719 0320 72313300 .ascii "r13\000"
720 0324 07 .byte 0x7
721 0325 2401 .2byte 0x124
722 0327 2F030000 .4byte 0x32f
723 032b 02 .byte 0x2
724 032c 23 .byte 0x23
725 032d 00 .uleb128 0
726 032e 00 .byte 0
727 032f 09 .uleb128 0x9
728 0330 04 .byte 0x4
729 0331 85020000 .4byte 0x285
730 0335 04 .uleb128 0x4
731 0336 04 .byte 0x4
732 0337 07 .byte 0x7
733 0338 3B020000 .4byte .LASF46
734 033c 0D .uleb128 0xd
735 033d E8000000 .4byte 0xe8
736 0341 05 .uleb128 0x5
737 0342 1E020000 .4byte .LASF47
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 14
738 0346 10 .byte 0x10
739 0347 08 .byte 0x8
740 0348 2C .byte 0x2c
741 0349 78030000 .4byte 0x378
742 034d 06 .uleb128 0x6
743 034e 0D010000 .4byte .LASF48
744 0352 08 .byte 0x8
745 0353 2D .byte 0x2d
746 0354 40020000 .4byte 0x240
747 0358 02 .byte 0x2
748 0359 23 .byte 0x23
749 035a 00 .uleb128 0
750 035b 06 .uleb128 0x6
751 035c C7030000 .4byte .LASF49
752 0360 08 .byte 0x8
753 0361 2F .byte 0x2f
754 0362 3A020000 .4byte 0x23a
755 0366 02 .byte 0x2
756 0367 23 .byte 0x23
757 0368 08 .uleb128 0x8
758 0369 06 .uleb128 0x6
759 036a 45030000 .4byte .LASF50
760 036e 08 .byte 0x8
761 036f 31 .byte 0x31
762 0370 78030000 .4byte 0x378
763 0374 02 .byte 0x2
764 0375 23 .byte 0x23
765 0376 0C .uleb128 0xc
766 0377 00 .byte 0
767 0378 09 .uleb128 0x9
768 0379 04 .byte 0x4
769 037a 41030000 .4byte 0x341
770 037e 03 .uleb128 0x3
771 037f 1E020000 .4byte .LASF47
772 0383 08 .byte 0x8
773 0384 33 .byte 0x33
774 0385 41030000 .4byte 0x341
775 0389 03 .uleb128 0x3
776 038a 9F000000 .4byte .LASF51
777 038e 09 .byte 0x9
778 038f 2C .byte 0x2c
779 0390 94030000 .4byte 0x394
780 0394 09 .uleb128 0x9
781 0395 04 .byte 0x4
782 0396 9A030000 .4byte 0x39a
783 039a 0E .uleb128 0xe
784 039b 01 .byte 0x1
785 039c 78020000 .4byte 0x278
786 03a0 AA030000 .4byte 0x3aa
787 03a4 0F .uleb128 0xf
788 03a5 30000000 .4byte 0x30
789 03a9 00 .byte 0
790 03aa 03 .uleb128 0x3
791 03ab 79020000 .4byte .LASF52
792 03af 0A .byte 0xa
793 03b0 34 .byte 0x34
794 03b1 B5030000 .4byte 0x3b5
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 15
795 03b5 05 .uleb128 0x5
796 03b6 DF030000 .4byte .LASF53
797 03ba 20 .byte 0x20
798 03bb 0A .byte 0xa
799 03bc 47 .byte 0x47
800 03bd EC030000 .4byte 0x3ec
801 03c1 06 .uleb128 0x6
802 03c2 BE020000 .4byte .LASF54
803 03c6 0A .byte 0xa
804 03c7 48 .byte 0x48
805 03c8 89030000 .4byte 0x389
806 03cc 02 .byte 0x2
807 03cd 23 .byte 0x23
808 03ce 00 .uleb128 0
809 03cf 06 .uleb128 0x6
810 03d0 CC000000 .4byte .LASF55
811 03d4 0A .byte 0xa
812 03d5 4A .byte 0x4a
813 03d6 0B040000 .4byte 0x40b
814 03da 02 .byte 0x2
815 03db 23 .byte 0x23
816 03dc 08 .uleb128 0x8
817 03dd 06 .uleb128 0x6
818 03de FF000000 .4byte .LASF56
819 03e2 0A .byte 0xa
820 03e3 4C .byte 0x4c
821 03e4 7E030000 .4byte 0x37e
822 03e8 02 .byte 0x2
823 03e9 23 .byte 0x23
824 03ea 10 .uleb128 0x10
825 03eb 00 .byte 0
826 03ec 10 .uleb128 0x10
827 03ed 04 .byte 0x4
828 03ee 0A .byte 0xa
829 03ef 3C .byte 0x3c
830 03f0 0B040000 .4byte 0x40b
831 03f4 11 .uleb128 0x11
832 03f5 D9000000 .4byte .LASF57
833 03f9 0A .byte 0xa
834 03fa 3D .byte 0x3d
835 03fb 2C040000 .4byte 0x42c
836 03ff 11 .uleb128 0x11
837 0400 3B030000 .4byte .LASF58
838 0404 0A .byte 0xa
839 0405 3E .byte 0x3e
840 0406 32040000 .4byte 0x432
841 040a 00 .byte 0
842 040b 12 .uleb128 0x12
843 040c E5020000 .4byte .LASF88
844 0410 08 .byte 0x8
845 0411 0A .byte 0xa
846 0412 39 .byte 0x39
847 0413 2C040000 .4byte 0x42c
848 0417 11 .uleb128 0x11
849 0418 92010000 .4byte .LASF59
850 041c 0A .byte 0xa
851 041d 3A .byte 0x3a
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 16
852 041e 7A020000 .4byte 0x27a
853 0422 13 .uleb128 0x13
854 0423 6800 .ascii "h\000"
855 0425 0A .byte 0xa
856 0426 41 .byte 0x41
857 0427 38040000 .4byte 0x438
858 042b 00 .byte 0
859 042c 09 .uleb128 0x9
860 042d 04 .byte 0x4
861 042e 0B040000 .4byte 0x40b
862 0432 09 .uleb128 0x9
863 0433 04 .byte 0x4
864 0434 AA030000 .4byte 0x3aa
865 0438 08 .uleb128 0x8
866 0439 08 .byte 0x8
867 043a 0A .byte 0xa
868 043b 3B .byte 0x3b
869 043c 5B040000 .4byte 0x45b
870 0440 07 .uleb128 0x7
871 0441 7500 .ascii "u\000"
872 0443 0A .byte 0xa
873 0444 3F .byte 0x3f
874 0445 EC030000 .4byte 0x3ec
875 0449 02 .byte 0x2
876 044a 23 .byte 0x23
877 044b 00 .uleb128 0
878 044c 06 .uleb128 0x6
879 044d BF010000 .4byte .LASF60
880 0451 0A .byte 0xa
881 0452 40 .byte 0x40
882 0453 30000000 .4byte 0x30
883 0457 02 .byte 0x2
884 0458 23 .byte 0x23
885 0459 04 .uleb128 0x4
886 045a 00 .byte 0
887 045b 05 .uleb128 0x5
888 045c 87030000 .4byte .LASF61
889 0460 04 .byte 0x4
890 0461 0B .byte 0xb
891 0462 2C .byte 0x2c
892 0463 76040000 .4byte 0x476
893 0467 06 .uleb128 0x6
894 0468 84020000 .4byte .LASF62
895 046c 0B .byte 0xb
896 046d 2D .byte 0x2d
897 046e 76040000 .4byte 0x476
898 0472 02 .byte 0x2
899 0473 23 .byte 0x23
900 0474 00 .uleb128 0
901 0475 00 .byte 0
902 0476 09 .uleb128 0x9
903 0477 04 .byte 0x4
904 0478 5B040000 .4byte 0x45b
905 047c 08 .uleb128 0x8
906 047d 0C .byte 0xc
907 047e 0B .byte 0xb
908 047f 34 .byte 0x34
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 17
909 0480 AF040000 .4byte 0x4af
910 0484 06 .uleb128 0x6
911 0485 53010000 .4byte .LASF63
912 0489 0B .byte 0xb
913 048a 35 .byte 0x35
914 048b 76040000 .4byte 0x476
915 048f 02 .byte 0x2
916 0490 23 .byte 0x23
917 0491 00 .uleb128 0
918 0492 06 .uleb128 0x6
919 0493 59020000 .4byte .LASF64
920 0497 0B .byte 0xb
921 0498 36 .byte 0x36
922 0499 30000000 .4byte 0x30
923 049d 02 .byte 0x2
924 049e 23 .byte 0x23
925 049f 04 .uleb128 0x4
926 04a0 06 .uleb128 0x6
927 04a1 7D010000 .4byte .LASF65
928 04a5 0B .byte 0xb
929 04a6 38 .byte 0x38
930 04a7 89030000 .4byte 0x389
931 04ab 02 .byte 0x2
932 04ac 23 .byte 0x23
933 04ad 08 .uleb128 0x8
934 04ae 00 .byte 0
935 04af 03 .uleb128 0x3
936 04b0 94000000 .4byte .LASF66
937 04b4 0B .byte 0xb
938 04b5 3A .byte 0x3a
939 04b6 7C040000 .4byte 0x47c
940 04ba 10 .uleb128 0x10
941 04bb 04 .byte 0x4
942 04bc 06 .byte 0x6
943 04bd 90 .byte 0x90
944 04be EF040000 .4byte 0x4ef
945 04c2 11 .uleb128 0x11
946 04c3 15000000 .4byte .LASF67
947 04c7 06 .byte 0x6
948 04c8 97 .byte 0x97
949 04c9 D2000000 .4byte 0xd2
950 04cd 11 .uleb128 0x11
951 04ce C3000000 .4byte .LASF68
952 04d2 06 .byte 0x6
953 04d3 9E .byte 0x9e
954 04d4 D2000000 .4byte 0xd2
955 04d8 11 .uleb128 0x11
956 04d9 B9030000 .4byte .LASF69
957 04dd 06 .byte 0x6
958 04de A5 .byte 0xa5
959 04df 78020000 .4byte 0x278
960 04e3 11 .uleb128 0x11
961 04e4 F1020000 .4byte .LASF70
962 04e8 06 .byte 0x6
963 04e9 AC .byte 0xac
964 04ea DD000000 .4byte 0xdd
965 04ee 00 .byte 0
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 18
966 04ef 09 .uleb128 0x9
967 04f0 04 .byte 0x4
968 04f1 F5040000 .4byte 0x4f5
969 04f5 14 .uleb128 0x14
970 04f6 FA040000 .4byte 0x4fa
971 04fa 04 .uleb128 0x4
972 04fb 01 .byte 0x1
973 04fc 08 .byte 0x8
974 04fd 40030000 .4byte .LASF71
975 0501 09 .uleb128 0x9
976 0502 04 .byte 0x4
977 0503 7E030000 .4byte 0x37e
978 0507 03 .uleb128 0x3
979 0508 00000000 .4byte .LASF72
980 050c 06 .byte 0x6
981 050d DF .byte 0xdf
982 050e 12050000 .4byte 0x512
983 0512 09 .uleb128 0x9
984 0513 04 .byte 0x4
985 0514 18050000 .4byte 0x518
986 0518 0E .uleb128 0xe
987 0519 01 .byte 0x1
988 051a D2000000 .4byte 0xd2
989 051e 28050000 .4byte 0x528
990 0522 0F .uleb128 0xf
991 0523 78020000 .4byte 0x278
992 0527 00 .byte 0
993 0528 15 .uleb128 0x15
994 0529 01 .byte 0x1
995 052a 24020000 .4byte .LASF73
996 052e 01 .byte 0x1
997 052f 34 .byte 0x34
998 0530 01 .byte 0x1
999 0531 3A020000 .4byte 0x23a
1000 0535 00000000 .4byte .LFB7
1001 0539 0C000000 .4byte .LFE7
1002 053d 02 .byte 0x2
1003 053e 7D .byte 0x7d
1004 053f 00 .sleb128 0
1005 0540 01 .byte 0x1
1006 0541 52050000 .4byte 0x552
1007 0545 16 .uleb128 0x16
1008 0546 747000 .ascii "tp\000"
1009 0549 01 .byte 0x1
1010 054a 34 .byte 0x34
1011 054b 3A020000 .4byte 0x23a
1012 054f 01 .byte 0x1
1013 0550 50 .byte 0x50
1014 0551 00 .byte 0
1015 0552 17 .uleb128 0x17
1016 0553 01 .byte 0x1
1017 0554 07030000 .4byte .LASF89
1018 0558 01 .byte 0x1
1019 0559 4A .byte 0x4a
1020 055a 01 .byte 0x1
1021 055b 00000000 .4byte .LFB8
1022 055f 44000000 .4byte .LFE8
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 19
1023 0563 02 .byte 0x2
1024 0564 7D .byte 0x7d
1025 0565 00 .sleb128 0
1026 0566 01 .byte 0x1
1027 0567 B1050000 .4byte 0x5b1
1028 056b 18 .uleb128 0x18
1029 056c 747000 .ascii "tp\000"
1030 056f 01 .byte 0x1
1031 0570 4A .byte 0x4a
1032 0571 3A020000 .4byte 0x23a
1033 0575 00000000 .4byte .LLST0
1034 0579 19 .uleb128 0x19
1035 057a 94020000 .4byte .LASF77
1036 057e 01 .byte 0x1
1037 057f 4B .byte 0x4b
1038 0580 BC000000 .4byte 0xbc
1039 0584 45000000 .4byte .LLST1
1040 0588 1A .uleb128 0x1a
1041 0589 36000000 .4byte .LVL5
1042 058d 01 .byte 0x1
1043 058e 59070000 .4byte 0x759
1044 0592 9E050000 .4byte 0x59e
1045 0596 1B .uleb128 0x1b
1046 0597 01 .byte 0x1
1047 0598 51 .byte 0x51
1048 0599 03 .byte 0x3
1049 059a F3 .byte 0xf3
1050 059b 01 .uleb128 0x1
1051 059c 50 .byte 0x50
1052 059d 00 .byte 0
1053 059e 1C .uleb128 0x1c
1054 059f 44000000 .4byte .LVL6
1055 05a3 01 .byte 0x1
1056 05a4 72070000 .4byte 0x772
1057 05a8 1B .uleb128 0x1b
1058 05a9 01 .byte 0x1
1059 05aa 50 .byte 0x50
1060 05ab 03 .byte 0x3
1061 05ac F3 .byte 0xf3
1062 05ad 01 .uleb128 0x1
1063 05ae 50 .byte 0x50
1064 05af 00 .byte 0
1065 05b0 00 .byte 0
1066 05b1 1D .uleb128 0x1d
1067 05b2 01 .byte 0x1
1068 05b3 36010000 .4byte .LASF74
1069 05b7 01 .byte 0x1
1070 05b8 82 .byte 0x82
1071 05b9 01 .byte 0x1
1072 05ba 3A020000 .4byte 0x23a
1073 05be 00000000 .4byte .LFB9
1074 05c2 36000000 .4byte .LFE9
1075 05c6 94000000 .4byte .LLST2
1076 05ca 01 .byte 0x1
1077 05cb 8D060000 .4byte 0x68d
1078 05cf 1E .uleb128 0x1e
1079 05d0 D3000000 .4byte .LASF75
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 20
1080 05d4 01 .byte 0x1
1081 05d5 82 .byte 0x82
1082 05d6 32040000 .4byte 0x432
1083 05da C0000000 .4byte .LLST3
1084 05de 1E .uleb128 0x1e
1085 05df BF010000 .4byte .LASF60
1086 05e3 01 .byte 0x1
1087 05e4 82 .byte 0x82
1088 05e5 30000000 .4byte 0x30
1089 05e9 E1000000 .4byte .LLST4
1090 05ed 1E .uleb128 0x1e
1091 05ee 74020000 .4byte .LASF76
1092 05f2 01 .byte 0x1
1093 05f3 83 .byte 0x83
1094 05f4 C7000000 .4byte 0xc7
1095 05f8 FF000000 .4byte .LLST5
1096 05fc 18 .uleb128 0x18
1097 05fd 706600 .ascii "pf\000"
1098 0600 01 .byte 0x1
1099 0601 83 .byte 0x83
1100 0602 07050000 .4byte 0x507
1101 0606 1D010000 .4byte .LLST6
1102 060a 16 .uleb128 0x16
1103 060b 61726700 .ascii "arg\000"
1104 060f 01 .byte 0x1
1105 0610 83 .byte 0x83
1106 0611 78020000 .4byte 0x278
1107 0615 02 .byte 0x2
1108 0616 91 .byte 0x91
1109 0617 00 .sleb128 0
1110 0618 1F .uleb128 0x1f
1111 0619 77737000 .ascii "wsp\000"
1112 061d 01 .byte 0x1
1113 061e 84 .byte 0x84
1114 061f 78020000 .4byte 0x278
1115 0623 3B010000 .4byte .LLST7
1116 0627 1F .uleb128 0x1f
1117 0628 747000 .ascii "tp\000"
1118 062b 01 .byte 0x1
1119 062c 85 .byte 0x85
1120 062d 3A020000 .4byte 0x23a
1121 0631 4E010000 .4byte .LLST8
1122 0635 20 .uleb128 0x20
1123 0636 0E000000 .4byte .LVL8
1124 063a 86070000 .4byte 0x786
1125 063e 50060000 .4byte 0x650
1126 0642 1B .uleb128 0x1b
1127 0643 01 .byte 0x1
1128 0644 51 .byte 0x51
1129 0645 02 .byte 0x2
1130 0646 75 .byte 0x75
1131 0647 00 .sleb128 0
1132 0648 1B .uleb128 0x1b
1133 0649 01 .byte 0x1
1134 064a 50 .byte 0x50
1135 064b 03 .byte 0x3
1136 064c F3 .byte 0xf3
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 21
1137 064d 01 .uleb128 0x1
1138 064e 50 .byte 0x50
1139 064f 00 .byte 0
1140 0650 20 .uleb128 0x20
1141 0651 22000000 .4byte .LVL9
1142 0655 A3070000 .4byte 0x7a3
1143 0659 77060000 .4byte 0x677
1144 065d 1B .uleb128 0x1b
1145 065e 01 .byte 0x1
1146 065f 53 .byte 0x53
1147 0660 02 .byte 0x2
1148 0661 76 .byte 0x76
1149 0662 00 .sleb128 0
1150 0663 1B .uleb128 0x1b
1151 0664 01 .byte 0x1
1152 0665 52 .byte 0x52
1153 0666 02 .byte 0x2
1154 0667 77 .byte 0x77
1155 0668 00 .sleb128 0
1156 0669 1B .uleb128 0x1b
1157 066a 01 .byte 0x1
1158 066b 51 .byte 0x51
1159 066c 02 .byte 0x2
1160 066d 75 .byte 0x75
1161 066e 00 .sleb128 0
1162 066f 1B .uleb128 0x1b
1163 0670 02 .byte 0x2
1164 0671 7D .byte 0x7d
1165 0672 00 .sleb128 0
1166 0673 02 .byte 0x2
1167 0674 74 .byte 0x74
1168 0675 00 .sleb128 0
1169 0676 00 .byte 0
1170 0677 21 .uleb128 0x21
1171 0678 2E000000 .4byte .LVL11
1172 067c D0070000 .4byte 0x7d0
1173 0680 1B .uleb128 0x1b
1174 0681 01 .byte 0x1
1175 0682 51 .byte 0x51
1176 0683 01 .byte 0x1
1177 0684 30 .byte 0x30
1178 0685 1B .uleb128 0x1b
1179 0686 01 .byte 0x1
1180 0687 50 .byte 0x50
1181 0688 02 .byte 0x2
1182 0689 74 .byte 0x74
1183 068a 00 .sleb128 0
1184 068b 00 .byte 0
1185 068c 00 .byte 0
1186 068d 1D .uleb128 0x1d
1187 068e 01 .byte 0x1
1188 068f 63010000 .4byte .LASF78
1189 0693 01 .byte 0x1
1190 0694 B3 .byte 0xb3
1191 0695 01 .byte 0x1
1192 0696 3A020000 .4byte 0x23a
1193 069a 00000000 .4byte .LFB10
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 22
1194 069e 3C000000 .4byte .LFE10
1195 06a2 6C010000 .4byte .LLST9
1196 06a6 01 .byte 0x1
1197 06a7 53070000 .4byte 0x753
1198 06ab 18 .uleb128 0x18
1199 06ac 6D7000 .ascii "mp\000"
1200 06af 01 .byte 0x1
1201 06b0 B3 .byte 0xb3
1202 06b1 53070000 .4byte 0x753
1203 06b5 98010000 .4byte .LLST10
1204 06b9 1E .uleb128 0x1e
1205 06ba 74020000 .4byte .LASF76
1206 06be 01 .byte 0x1
1207 06bf B3 .byte 0xb3
1208 06c0 C7000000 .4byte 0xc7
1209 06c4 B6010000 .4byte .LLST11
1210 06c8 18 .uleb128 0x18
1211 06c9 706600 .ascii "pf\000"
1212 06cc 01 .byte 0x1
1213 06cd B4 .byte 0xb4
1214 06ce 07050000 .4byte 0x507
1215 06d2 D4010000 .4byte .LLST12
1216 06d6 18 .uleb128 0x18
1217 06d7 61726700 .ascii "arg\000"
1218 06db 01 .byte 0x1
1219 06dc B4 .byte 0xb4
1220 06dd 78020000 .4byte 0x278
1221 06e1 F2010000 .4byte .LLST13
1222 06e5 1F .uleb128 0x1f
1223 06e6 77737000 .ascii "wsp\000"
1224 06ea 01 .byte 0x1
1225 06eb B5 .byte 0xb5
1226 06ec 78020000 .4byte 0x278
1227 06f0 10020000 .4byte .LLST14
1228 06f4 1F .uleb128 0x1f
1229 06f5 747000 .ascii "tp\000"
1230 06f8 01 .byte 0x1
1231 06f9 B6 .byte 0xb6
1232 06fa 3A020000 .4byte 0x23a
1233 06fe 2E020000 .4byte .LLST15
1234 0702 20 .uleb128 0x20
1235 0703 12000000 .4byte .LVL14
1236 0707 E9070000 .4byte 0x7e9
1237 070b 16070000 .4byte 0x716
1238 070f 1B .uleb128 0x1b
1239 0710 01 .byte 0x1
1240 0711 50 .byte 0x50
1241 0712 02 .byte 0x2
1242 0713 75 .byte 0x75
1243 0714 00 .sleb128 0
1244 0715 00 .byte 0
1245 0716 20 .uleb128 0x20
1246 0717 24000000 .4byte .LVL15
1247 071b A3070000 .4byte 0x7a3
1248 071f 3D070000 .4byte 0x73d
1249 0723 1B .uleb128 0x1b
1250 0724 01 .byte 0x1
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 23
1251 0725 53 .byte 0x53
1252 0726 02 .byte 0x2
1253 0727 77 .byte 0x77
1254 0728 00 .sleb128 0
1255 0729 1B .uleb128 0x1b
1256 072a 01 .byte 0x1
1257 072b 52 .byte 0x52
1258 072c 02 .byte 0x2
1259 072d 78 .byte 0x78
1260 072e 00 .sleb128 0
1261 072f 1B .uleb128 0x1b
1262 0730 01 .byte 0x1
1263 0731 50 .byte 0x50
1264 0732 02 .byte 0x2
1265 0733 74 .byte 0x74
1266 0734 00 .sleb128 0
1267 0735 1B .uleb128 0x1b
1268 0736 02 .byte 0x2
1269 0737 7D .byte 0x7d
1270 0738 00 .sleb128 0
1271 0739 02 .byte 0x2
1272 073a 76 .byte 0x76
1273 073b 00 .sleb128 0
1274 073c 00 .byte 0
1275 073d 21 .uleb128 0x21
1276 073e 32000000 .4byte .LVL17
1277 0742 D0070000 .4byte 0x7d0
1278 0746 1B .uleb128 0x1b
1279 0747 01 .byte 0x1
1280 0748 51 .byte 0x51
1281 0749 01 .byte 0x1
1282 074a 30 .byte 0x30
1283 074b 1B .uleb128 0x1b
1284 074c 01 .byte 0x1
1285 074d 50 .byte 0x50
1286 074e 02 .byte 0x2
1287 074f 74 .byte 0x74
1288 0750 00 .sleb128 0
1289 0751 00 .byte 0
1290 0752 00 .byte 0
1291 0753 09 .uleb128 0x9
1292 0754 04 .byte 0x4
1293 0755 AF040000 .4byte 0x4af
1294 0759 22 .uleb128 0x22
1295 075a 01 .byte 0x1
1296 075b AE030000 .4byte .LASF79
1297 075f 0B .byte 0xb
1298 0760 5C .byte 0x5c
1299 0761 01 .byte 0x1
1300 0762 01 .byte 0x1
1301 0763 72070000 .4byte 0x772
1302 0767 0F .uleb128 0xf
1303 0768 53070000 .4byte 0x753
1304 076c 0F .uleb128 0xf
1305 076d 78020000 .4byte 0x278
1306 0771 00 .byte 0
1307 0772 22 .uleb128 0x22
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 24
1308 0773 01 .byte 0x1
1309 0774 15010000 .4byte .LASF80
1310 0778 0A .byte 0xa
1311 0779 5A .byte 0x5a
1312 077a 01 .byte 0x1
1313 077b 01 .byte 0x1
1314 077c 86070000 .4byte 0x786
1315 0780 0F .uleb128 0xf
1316 0781 78020000 .4byte 0x278
1317 0785 00 .byte 0
1318 0786 23 .uleb128 0x23
1319 0787 01 .byte 0x1
1320 0788 1B030000 .4byte .LASF81
1321 078c 0A .byte 0xa
1322 078d 59 .byte 0x59
1323 078e 01 .byte 0x1
1324 078f 78020000 .4byte 0x278
1325 0793 01 .byte 0x1
1326 0794 A3070000 .4byte 0x7a3
1327 0798 0F .uleb128 0xf
1328 0799 32040000 .4byte 0x432
1329 079d 0F .uleb128 0xf
1330 079e 30000000 .4byte 0x30
1331 07a2 00 .byte 0
1332 07a3 24 .uleb128 0x24
1333 07a4 01 .byte 0x1
1334 07a5 20010000 .4byte .LASF82
1335 07a9 06 .byte 0x6
1336 07aa 6201 .2byte 0x162
1337 07ac 01 .byte 0x1
1338 07ad 3A020000 .4byte 0x23a
1339 07b1 01 .byte 0x1
1340 07b2 D0070000 .4byte 0x7d0
1341 07b6 0F .uleb128 0xf
1342 07b7 78020000 .4byte 0x278
1343 07bb 0F .uleb128 0xf
1344 07bc 30000000 .4byte 0x30
1345 07c0 0F .uleb128 0xf
1346 07c1 C7000000 .4byte 0xc7
1347 07c5 0F .uleb128 0xf
1348 07c6 07050000 .4byte 0x507
1349 07ca 0F .uleb128 0xf
1350 07cb 78020000 .4byte 0x278
1351 07cf 00 .byte 0
1352 07d0 22 .uleb128 0x22
1353 07d1 01 .byte 0x1
1354 07d2 7A030000 .4byte .LASF83
1355 07d6 0C .byte 0xc
1356 07d7 9C .byte 0x9c
1357 07d8 01 .byte 0x1
1358 07d9 01 .byte 0x1
1359 07da E9070000 .4byte 0x7e9
1360 07de 0F .uleb128 0xf
1361 07df 3A020000 .4byte 0x23a
1362 07e3 0F .uleb128 0xf
1363 07e4 D2000000 .4byte 0xd2
1364 07e8 00 .byte 0
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 25
1365 07e9 25 .uleb128 0x25
1366 07ea 01 .byte 0x1
1367 07eb A2030000 .4byte .LASF84
1368 07ef 0B .byte 0xb
1369 07f0 5A .byte 0x5a
1370 07f1 01 .byte 0x1
1371 07f2 78020000 .4byte 0x278
1372 07f6 01 .byte 0x1
1373 07f7 0F .uleb128 0xf
1374 07f8 53070000 .4byte 0x753
1375 07fc 00 .byte 0
1376 07fd 00 .byte 0
1377 .section .debug_abbrev,"",%progbits
1378 .Ldebug_abbrev0:
1379 0000 01 .uleb128 0x1
1380 0001 11 .uleb128 0x11
1381 0002 01 .byte 0x1
1382 0003 25 .uleb128 0x25
1383 0004 0E .uleb128 0xe
1384 0005 13 .uleb128 0x13
1385 0006 0B .uleb128 0xb
1386 0007 03 .uleb128 0x3
1387 0008 0E .uleb128 0xe
1388 0009 1B .uleb128 0x1b
1389 000a 0E .uleb128 0xe
1390 000b 55 .uleb128 0x55
1391 000c 06 .uleb128 0x6
1392 000d 11 .uleb128 0x11
1393 000e 01 .uleb128 0x1
1394 000f 52 .uleb128 0x52
1395 0010 01 .uleb128 0x1
1396 0011 10 .uleb128 0x10
1397 0012 06 .uleb128 0x6
1398 0013 00 .byte 0
1399 0014 00 .byte 0
1400 0015 02 .uleb128 0x2
1401 0016 24 .uleb128 0x24
1402 0017 00 .byte 0
1403 0018 0B .uleb128 0xb
1404 0019 0B .uleb128 0xb
1405 001a 3E .uleb128 0x3e
1406 001b 0B .uleb128 0xb
1407 001c 03 .uleb128 0x3
1408 001d 08 .uleb128 0x8
1409 001e 00 .byte 0
1410 001f 00 .byte 0
1411 0020 03 .uleb128 0x3
1412 0021 16 .uleb128 0x16
1413 0022 00 .byte 0
1414 0023 03 .uleb128 0x3
1415 0024 0E .uleb128 0xe
1416 0025 3A .uleb128 0x3a
1417 0026 0B .uleb128 0xb
1418 0027 3B .uleb128 0x3b
1419 0028 0B .uleb128 0xb
1420 0029 49 .uleb128 0x49
1421 002a 13 .uleb128 0x13
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 26
1422 002b 00 .byte 0
1423 002c 00 .byte 0
1424 002d 04 .uleb128 0x4
1425 002e 24 .uleb128 0x24
1426 002f 00 .byte 0
1427 0030 0B .uleb128 0xb
1428 0031 0B .uleb128 0xb
1429 0032 3E .uleb128 0x3e
1430 0033 0B .uleb128 0xb
1431 0034 03 .uleb128 0x3
1432 0035 0E .uleb128 0xe
1433 0036 00 .byte 0
1434 0037 00 .byte 0
1435 0038 05 .uleb128 0x5
1436 0039 13 .uleb128 0x13
1437 003a 01 .byte 0x1
1438 003b 03 .uleb128 0x3
1439 003c 0E .uleb128 0xe
1440 003d 0B .uleb128 0xb
1441 003e 0B .uleb128 0xb
1442 003f 3A .uleb128 0x3a
1443 0040 0B .uleb128 0xb
1444 0041 3B .uleb128 0x3b
1445 0042 0B .uleb128 0xb
1446 0043 01 .uleb128 0x1
1447 0044 13 .uleb128 0x13
1448 0045 00 .byte 0
1449 0046 00 .byte 0
1450 0047 06 .uleb128 0x6
1451 0048 0D .uleb128 0xd
1452 0049 00 .byte 0
1453 004a 03 .uleb128 0x3
1454 004b 0E .uleb128 0xe
1455 004c 3A .uleb128 0x3a
1456 004d 0B .uleb128 0xb
1457 004e 3B .uleb128 0x3b
1458 004f 0B .uleb128 0xb
1459 0050 49 .uleb128 0x49
1460 0051 13 .uleb128 0x13
1461 0052 38 .uleb128 0x38
1462 0053 0A .uleb128 0xa
1463 0054 00 .byte 0
1464 0055 00 .byte 0
1465 0056 07 .uleb128 0x7
1466 0057 0D .uleb128 0xd
1467 0058 00 .byte 0
1468 0059 03 .uleb128 0x3
1469 005a 08 .uleb128 0x8
1470 005b 3A .uleb128 0x3a
1471 005c 0B .uleb128 0xb
1472 005d 3B .uleb128 0x3b
1473 005e 0B .uleb128 0xb
1474 005f 49 .uleb128 0x49
1475 0060 13 .uleb128 0x13
1476 0061 38 .uleb128 0x38
1477 0062 0A .uleb128 0xa
1478 0063 00 .byte 0
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 27
1479 0064 00 .byte 0
1480 0065 08 .uleb128 0x8
1481 0066 13 .uleb128 0x13
1482 0067 01 .byte 0x1
1483 0068 0B .uleb128 0xb
1484 0069 0B .uleb128 0xb
1485 006a 3A .uleb128 0x3a
1486 006b 0B .uleb128 0xb
1487 006c 3B .uleb128 0x3b
1488 006d 0B .uleb128 0xb
1489 006e 01 .uleb128 0x1
1490 006f 13 .uleb128 0x13
1491 0070 00 .byte 0
1492 0071 00 .byte 0
1493 0072 09 .uleb128 0x9
1494 0073 0F .uleb128 0xf
1495 0074 00 .byte 0
1496 0075 0B .uleb128 0xb
1497 0076 0B .uleb128 0xb
1498 0077 49 .uleb128 0x49
1499 0078 13 .uleb128 0x13
1500 0079 00 .byte 0
1501 007a 00 .byte 0
1502 007b 0A .uleb128 0xa
1503 007c 0F .uleb128 0xf
1504 007d 00 .byte 0
1505 007e 0B .uleb128 0xb
1506 007f 0B .uleb128 0xb
1507 0080 00 .byte 0
1508 0081 00 .byte 0
1509 0082 0B .uleb128 0xb
1510 0083 0D .uleb128 0xd
1511 0084 00 .byte 0
1512 0085 03 .uleb128 0x3
1513 0086 08 .uleb128 0x8
1514 0087 3A .uleb128 0x3a
1515 0088 0B .uleb128 0xb
1516 0089 3B .uleb128 0x3b
1517 008a 05 .uleb128 0x5
1518 008b 49 .uleb128 0x49
1519 008c 13 .uleb128 0x13
1520 008d 38 .uleb128 0x38
1521 008e 0A .uleb128 0xa
1522 008f 00 .byte 0
1523 0090 00 .byte 0
1524 0091 0C .uleb128 0xc
1525 0092 13 .uleb128 0x13
1526 0093 01 .byte 0x1
1527 0094 03 .uleb128 0x3
1528 0095 0E .uleb128 0xe
1529 0096 0B .uleb128 0xb
1530 0097 0B .uleb128 0xb
1531 0098 3A .uleb128 0x3a
1532 0099 0B .uleb128 0xb
1533 009a 3B .uleb128 0x3b
1534 009b 05 .uleb128 0x5
1535 009c 01 .uleb128 0x1
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 28
1536 009d 13 .uleb128 0x13
1537 009e 00 .byte 0
1538 009f 00 .byte 0
1539 00a0 0D .uleb128 0xd
1540 00a1 35 .uleb128 0x35
1541 00a2 00 .byte 0
1542 00a3 49 .uleb128 0x49
1543 00a4 13 .uleb128 0x13
1544 00a5 00 .byte 0
1545 00a6 00 .byte 0
1546 00a7 0E .uleb128 0xe
1547 00a8 15 .uleb128 0x15
1548 00a9 01 .byte 0x1
1549 00aa 27 .uleb128 0x27
1550 00ab 0C .uleb128 0xc
1551 00ac 49 .uleb128 0x49
1552 00ad 13 .uleb128 0x13
1553 00ae 01 .uleb128 0x1
1554 00af 13 .uleb128 0x13
1555 00b0 00 .byte 0
1556 00b1 00 .byte 0
1557 00b2 0F .uleb128 0xf
1558 00b3 05 .uleb128 0x5
1559 00b4 00 .byte 0
1560 00b5 49 .uleb128 0x49
1561 00b6 13 .uleb128 0x13
1562 00b7 00 .byte 0
1563 00b8 00 .byte 0
1564 00b9 10 .uleb128 0x10
1565 00ba 17 .uleb128 0x17
1566 00bb 01 .byte 0x1
1567 00bc 0B .uleb128 0xb
1568 00bd 0B .uleb128 0xb
1569 00be 3A .uleb128 0x3a
1570 00bf 0B .uleb128 0xb
1571 00c0 3B .uleb128 0x3b
1572 00c1 0B .uleb128 0xb
1573 00c2 01 .uleb128 0x1
1574 00c3 13 .uleb128 0x13
1575 00c4 00 .byte 0
1576 00c5 00 .byte 0
1577 00c6 11 .uleb128 0x11
1578 00c7 0D .uleb128 0xd
1579 00c8 00 .byte 0
1580 00c9 03 .uleb128 0x3
1581 00ca 0E .uleb128 0xe
1582 00cb 3A .uleb128 0x3a
1583 00cc 0B .uleb128 0xb
1584 00cd 3B .uleb128 0x3b
1585 00ce 0B .uleb128 0xb
1586 00cf 49 .uleb128 0x49
1587 00d0 13 .uleb128 0x13
1588 00d1 00 .byte 0
1589 00d2 00 .byte 0
1590 00d3 12 .uleb128 0x12
1591 00d4 17 .uleb128 0x17
1592 00d5 01 .byte 0x1
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 29
1593 00d6 03 .uleb128 0x3
1594 00d7 0E .uleb128 0xe
1595 00d8 0B .uleb128 0xb
1596 00d9 0B .uleb128 0xb
1597 00da 3A .uleb128 0x3a
1598 00db 0B .uleb128 0xb
1599 00dc 3B .uleb128 0x3b
1600 00dd 0B .uleb128 0xb
1601 00de 01 .uleb128 0x1
1602 00df 13 .uleb128 0x13
1603 00e0 00 .byte 0
1604 00e1 00 .byte 0
1605 00e2 13 .uleb128 0x13
1606 00e3 0D .uleb128 0xd
1607 00e4 00 .byte 0
1608 00e5 03 .uleb128 0x3
1609 00e6 08 .uleb128 0x8
1610 00e7 3A .uleb128 0x3a
1611 00e8 0B .uleb128 0xb
1612 00e9 3B .uleb128 0x3b
1613 00ea 0B .uleb128 0xb
1614 00eb 49 .uleb128 0x49
1615 00ec 13 .uleb128 0x13
1616 00ed 00 .byte 0
1617 00ee 00 .byte 0
1618 00ef 14 .uleb128 0x14
1619 00f0 26 .uleb128 0x26
1620 00f1 00 .byte 0
1621 00f2 49 .uleb128 0x49
1622 00f3 13 .uleb128 0x13
1623 00f4 00 .byte 0
1624 00f5 00 .byte 0
1625 00f6 15 .uleb128 0x15
1626 00f7 2E .uleb128 0x2e
1627 00f8 01 .byte 0x1
1628 00f9 3F .uleb128 0x3f
1629 00fa 0C .uleb128 0xc
1630 00fb 03 .uleb128 0x3
1631 00fc 0E .uleb128 0xe
1632 00fd 3A .uleb128 0x3a
1633 00fe 0B .uleb128 0xb
1634 00ff 3B .uleb128 0x3b
1635 0100 0B .uleb128 0xb
1636 0101 27 .uleb128 0x27
1637 0102 0C .uleb128 0xc
1638 0103 49 .uleb128 0x49
1639 0104 13 .uleb128 0x13
1640 0105 11 .uleb128 0x11
1641 0106 01 .uleb128 0x1
1642 0107 12 .uleb128 0x12
1643 0108 01 .uleb128 0x1
1644 0109 40 .uleb128 0x40
1645 010a 0A .uleb128 0xa
1646 010b 9742 .uleb128 0x2117
1647 010d 0C .uleb128 0xc
1648 010e 01 .uleb128 0x1
1649 010f 13 .uleb128 0x13
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 30
1650 0110 00 .byte 0
1651 0111 00 .byte 0
1652 0112 16 .uleb128 0x16
1653 0113 05 .uleb128 0x5
1654 0114 00 .byte 0
1655 0115 03 .uleb128 0x3
1656 0116 08 .uleb128 0x8
1657 0117 3A .uleb128 0x3a
1658 0118 0B .uleb128 0xb
1659 0119 3B .uleb128 0x3b
1660 011a 0B .uleb128 0xb
1661 011b 49 .uleb128 0x49
1662 011c 13 .uleb128 0x13
1663 011d 02 .uleb128 0x2
1664 011e 0A .uleb128 0xa
1665 011f 00 .byte 0
1666 0120 00 .byte 0
1667 0121 17 .uleb128 0x17
1668 0122 2E .uleb128 0x2e
1669 0123 01 .byte 0x1
1670 0124 3F .uleb128 0x3f
1671 0125 0C .uleb128 0xc
1672 0126 03 .uleb128 0x3
1673 0127 0E .uleb128 0xe
1674 0128 3A .uleb128 0x3a
1675 0129 0B .uleb128 0xb
1676 012a 3B .uleb128 0x3b
1677 012b 0B .uleb128 0xb
1678 012c 27 .uleb128 0x27
1679 012d 0C .uleb128 0xc
1680 012e 11 .uleb128 0x11
1681 012f 01 .uleb128 0x1
1682 0130 12 .uleb128 0x12
1683 0131 01 .uleb128 0x1
1684 0132 40 .uleb128 0x40
1685 0133 0A .uleb128 0xa
1686 0134 9742 .uleb128 0x2117
1687 0136 0C .uleb128 0xc
1688 0137 01 .uleb128 0x1
1689 0138 13 .uleb128 0x13
1690 0139 00 .byte 0
1691 013a 00 .byte 0
1692 013b 18 .uleb128 0x18
1693 013c 05 .uleb128 0x5
1694 013d 00 .byte 0
1695 013e 03 .uleb128 0x3
1696 013f 08 .uleb128 0x8
1697 0140 3A .uleb128 0x3a
1698 0141 0B .uleb128 0xb
1699 0142 3B .uleb128 0x3b
1700 0143 0B .uleb128 0xb
1701 0144 49 .uleb128 0x49
1702 0145 13 .uleb128 0x13
1703 0146 02 .uleb128 0x2
1704 0147 06 .uleb128 0x6
1705 0148 00 .byte 0
1706 0149 00 .byte 0
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 31
1707 014a 19 .uleb128 0x19
1708 014b 34 .uleb128 0x34
1709 014c 00 .byte 0
1710 014d 03 .uleb128 0x3
1711 014e 0E .uleb128 0xe
1712 014f 3A .uleb128 0x3a
1713 0150 0B .uleb128 0xb
1714 0151 3B .uleb128 0x3b
1715 0152 0B .uleb128 0xb
1716 0153 49 .uleb128 0x49
1717 0154 13 .uleb128 0x13
1718 0155 02 .uleb128 0x2
1719 0156 06 .uleb128 0x6
1720 0157 00 .byte 0
1721 0158 00 .byte 0
1722 0159 1A .uleb128 0x1a
1723 015a 898201 .uleb128 0x4109
1724 015d 01 .byte 0x1
1725 015e 11 .uleb128 0x11
1726 015f 01 .uleb128 0x1
1727 0160 9542 .uleb128 0x2115
1728 0162 0C .uleb128 0xc
1729 0163 31 .uleb128 0x31
1730 0164 13 .uleb128 0x13
1731 0165 01 .uleb128 0x1
1732 0166 13 .uleb128 0x13
1733 0167 00 .byte 0
1734 0168 00 .byte 0
1735 0169 1B .uleb128 0x1b
1736 016a 8A8201 .uleb128 0x410a
1737 016d 00 .byte 0
1738 016e 02 .uleb128 0x2
1739 016f 0A .uleb128 0xa
1740 0170 9142 .uleb128 0x2111
1741 0172 0A .uleb128 0xa
1742 0173 00 .byte 0
1743 0174 00 .byte 0
1744 0175 1C .uleb128 0x1c
1745 0176 898201 .uleb128 0x4109
1746 0179 01 .byte 0x1
1747 017a 11 .uleb128 0x11
1748 017b 01 .uleb128 0x1
1749 017c 9542 .uleb128 0x2115
1750 017e 0C .uleb128 0xc
1751 017f 31 .uleb128 0x31
1752 0180 13 .uleb128 0x13
1753 0181 00 .byte 0
1754 0182 00 .byte 0
1755 0183 1D .uleb128 0x1d
1756 0184 2E .uleb128 0x2e
1757 0185 01 .byte 0x1
1758 0186 3F .uleb128 0x3f
1759 0187 0C .uleb128 0xc
1760 0188 03 .uleb128 0x3
1761 0189 0E .uleb128 0xe
1762 018a 3A .uleb128 0x3a
1763 018b 0B .uleb128 0xb
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 32
1764 018c 3B .uleb128 0x3b
1765 018d 0B .uleb128 0xb
1766 018e 27 .uleb128 0x27
1767 018f 0C .uleb128 0xc
1768 0190 49 .uleb128 0x49
1769 0191 13 .uleb128 0x13
1770 0192 11 .uleb128 0x11
1771 0193 01 .uleb128 0x1
1772 0194 12 .uleb128 0x12
1773 0195 01 .uleb128 0x1
1774 0196 40 .uleb128 0x40
1775 0197 06 .uleb128 0x6
1776 0198 9742 .uleb128 0x2117
1777 019a 0C .uleb128 0xc
1778 019b 01 .uleb128 0x1
1779 019c 13 .uleb128 0x13
1780 019d 00 .byte 0
1781 019e 00 .byte 0
1782 019f 1E .uleb128 0x1e
1783 01a0 05 .uleb128 0x5
1784 01a1 00 .byte 0
1785 01a2 03 .uleb128 0x3
1786 01a3 0E .uleb128 0xe
1787 01a4 3A .uleb128 0x3a
1788 01a5 0B .uleb128 0xb
1789 01a6 3B .uleb128 0x3b
1790 01a7 0B .uleb128 0xb
1791 01a8 49 .uleb128 0x49
1792 01a9 13 .uleb128 0x13
1793 01aa 02 .uleb128 0x2
1794 01ab 06 .uleb128 0x6
1795 01ac 00 .byte 0
1796 01ad 00 .byte 0
1797 01ae 1F .uleb128 0x1f
1798 01af 34 .uleb128 0x34
1799 01b0 00 .byte 0
1800 01b1 03 .uleb128 0x3
1801 01b2 08 .uleb128 0x8
1802 01b3 3A .uleb128 0x3a
1803 01b4 0B .uleb128 0xb
1804 01b5 3B .uleb128 0x3b
1805 01b6 0B .uleb128 0xb
1806 01b7 49 .uleb128 0x49
1807 01b8 13 .uleb128 0x13
1808 01b9 02 .uleb128 0x2
1809 01ba 06 .uleb128 0x6
1810 01bb 00 .byte 0
1811 01bc 00 .byte 0
1812 01bd 20 .uleb128 0x20
1813 01be 898201 .uleb128 0x4109
1814 01c1 01 .byte 0x1
1815 01c2 11 .uleb128 0x11
1816 01c3 01 .uleb128 0x1
1817 01c4 31 .uleb128 0x31
1818 01c5 13 .uleb128 0x13
1819 01c6 01 .uleb128 0x1
1820 01c7 13 .uleb128 0x13
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 33
1821 01c8 00 .byte 0
1822 01c9 00 .byte 0
1823 01ca 21 .uleb128 0x21
1824 01cb 898201 .uleb128 0x4109
1825 01ce 01 .byte 0x1
1826 01cf 11 .uleb128 0x11
1827 01d0 01 .uleb128 0x1
1828 01d1 31 .uleb128 0x31
1829 01d2 13 .uleb128 0x13
1830 01d3 00 .byte 0
1831 01d4 00 .byte 0
1832 01d5 22 .uleb128 0x22
1833 01d6 2E .uleb128 0x2e
1834 01d7 01 .byte 0x1
1835 01d8 3F .uleb128 0x3f
1836 01d9 0C .uleb128 0xc
1837 01da 03 .uleb128 0x3
1838 01db 0E .uleb128 0xe
1839 01dc 3A .uleb128 0x3a
1840 01dd 0B .uleb128 0xb
1841 01de 3B .uleb128 0x3b
1842 01df 0B .uleb128 0xb
1843 01e0 27 .uleb128 0x27
1844 01e1 0C .uleb128 0xc
1845 01e2 3C .uleb128 0x3c
1846 01e3 0C .uleb128 0xc
1847 01e4 01 .uleb128 0x1
1848 01e5 13 .uleb128 0x13
1849 01e6 00 .byte 0
1850 01e7 00 .byte 0
1851 01e8 23 .uleb128 0x23
1852 01e9 2E .uleb128 0x2e
1853 01ea 01 .byte 0x1
1854 01eb 3F .uleb128 0x3f
1855 01ec 0C .uleb128 0xc
1856 01ed 03 .uleb128 0x3
1857 01ee 0E .uleb128 0xe
1858 01ef 3A .uleb128 0x3a
1859 01f0 0B .uleb128 0xb
1860 01f1 3B .uleb128 0x3b
1861 01f2 0B .uleb128 0xb
1862 01f3 27 .uleb128 0x27
1863 01f4 0C .uleb128 0xc
1864 01f5 49 .uleb128 0x49
1865 01f6 13 .uleb128 0x13
1866 01f7 3C .uleb128 0x3c
1867 01f8 0C .uleb128 0xc
1868 01f9 01 .uleb128 0x1
1869 01fa 13 .uleb128 0x13
1870 01fb 00 .byte 0
1871 01fc 00 .byte 0
1872 01fd 24 .uleb128 0x24
1873 01fe 2E .uleb128 0x2e
1874 01ff 01 .byte 0x1
1875 0200 3F .uleb128 0x3f
1876 0201 0C .uleb128 0xc
1877 0202 03 .uleb128 0x3
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 34
1878 0203 0E .uleb128 0xe
1879 0204 3A .uleb128 0x3a
1880 0205 0B .uleb128 0xb
1881 0206 3B .uleb128 0x3b
1882 0207 05 .uleb128 0x5
1883 0208 27 .uleb128 0x27
1884 0209 0C .uleb128 0xc
1885 020a 49 .uleb128 0x49
1886 020b 13 .uleb128 0x13
1887 020c 3C .uleb128 0x3c
1888 020d 0C .uleb128 0xc
1889 020e 01 .uleb128 0x1
1890 020f 13 .uleb128 0x13
1891 0210 00 .byte 0
1892 0211 00 .byte 0
1893 0212 25 .uleb128 0x25
1894 0213 2E .uleb128 0x2e
1895 0214 01 .byte 0x1
1896 0215 3F .uleb128 0x3f
1897 0216 0C .uleb128 0xc
1898 0217 03 .uleb128 0x3
1899 0218 0E .uleb128 0xe
1900 0219 3A .uleb128 0x3a
1901 021a 0B .uleb128 0xb
1902 021b 3B .uleb128 0x3b
1903 021c 0B .uleb128 0xb
1904 021d 27 .uleb128 0x27
1905 021e 0C .uleb128 0xc
1906 021f 49 .uleb128 0x49
1907 0220 13 .uleb128 0x13
1908 0221 3C .uleb128 0x3c
1909 0222 0C .uleb128 0xc
1910 0223 00 .byte 0
1911 0224 00 .byte 0
1912 0225 00 .byte 0
1913 .section .debug_loc,"",%progbits
1914 .Ldebug_loc0:
1915 .LLST0:
1916 0000 00000000 .4byte .LVL1
1917 0004 2C000000 .4byte .LVL4
1918 0008 0100 .2byte 0x1
1919 000a 50 .byte 0x50
1920 000b 2C000000 .4byte .LVL4
1921 000f 35000000 .4byte .LVL5-1
1922 0013 0100 .2byte 0x1
1923 0015 51 .byte 0x51
1924 0016 35000000 .4byte .LVL5-1
1925 001a 36000000 .4byte .LVL5
1926 001e 0400 .2byte 0x4
1927 0020 F3 .byte 0xf3
1928 0021 01 .uleb128 0x1
1929 0022 50 .byte 0x50
1930 0023 9F .byte 0x9f
1931 0024 36000000 .4byte .LVL5
1932 0028 43000000 .4byte .LVL6-1
1933 002c 0100 .2byte 0x1
1934 002e 50 .byte 0x50
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 35
1935 002f 43000000 .4byte .LVL6-1
1936 0033 44000000 .4byte .LFE8
1937 0037 0400 .2byte 0x4
1938 0039 F3 .byte 0xf3
1939 003a 01 .uleb128 0x1
1940 003b 50 .byte 0x50
1941 003c 9F .byte 0x9f
1942 003d 00000000 .4byte 0
1943 0041 00000000 .4byte 0
1944 .LLST1:
1945 0045 0C000000 .4byte .LVL2
1946 0049 12000000 .4byte .LVL3
1947 004d 0100 .2byte 0x1
1948 004f 53 .byte 0x53
1949 0050 12000000 .4byte .LVL3
1950 0054 2C000000 .4byte .LVL4
1951 0058 0A00 .2byte 0xa
1952 005a 70 .byte 0x70
1953 005b 1E .sleb128 30
1954 005c 94 .byte 0x94
1955 005d 01 .byte 0x1
1956 005e 08 .byte 0x8
1957 005f FF .byte 0xff
1958 0060 1A .byte 0x1a
1959 0061 31 .byte 0x31
1960 0062 1C .byte 0x1c
1961 0063 9F .byte 0x9f
1962 0064 2C000000 .4byte .LVL4
1963 0068 35000000 .4byte .LVL5-1
1964 006c 0A00 .2byte 0xa
1965 006e 71 .byte 0x71
1966 006f 1E .sleb128 30
1967 0070 94 .byte 0x94
1968 0071 01 .byte 0x1
1969 0072 08 .byte 0x8
1970 0073 FF .byte 0xff
1971 0074 1A .byte 0x1a
1972 0075 31 .byte 0x31
1973 0076 1C .byte 0x1c
1974 0077 9F .byte 0x9f
1975 0078 36000000 .4byte .LVL5
1976 007c 43000000 .4byte .LVL6-1
1977 0080 0A00 .2byte 0xa
1978 0082 70 .byte 0x70
1979 0083 1E .sleb128 30
1980 0084 94 .byte 0x94
1981 0085 01 .byte 0x1
1982 0086 08 .byte 0x8
1983 0087 FF .byte 0xff
1984 0088 1A .byte 0x1a
1985 0089 31 .byte 0x31
1986 008a 1C .byte 0x1c
1987 008b 9F .byte 0x9f
1988 008c 00000000 .4byte 0
1989 0090 00000000 .4byte 0
1990 .LLST2:
1991 0094 00000000 .4byte .LFB9
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 36
1992 0098 02000000 .4byte .LCFI0
1993 009c 0200 .2byte 0x2
1994 009e 7D .byte 0x7d
1995 009f 00 .sleb128 0
1996 00a0 02000000 .4byte .LCFI0
1997 00a4 04000000 .4byte .LCFI1
1998 00a8 0200 .2byte 0x2
1999 00aa 7D .byte 0x7d
2000 00ab 14 .sleb128 20
2001 00ac 04000000 .4byte .LCFI1
2002 00b0 36000000 .4byte .LFE9
2003 00b4 0200 .2byte 0x2
2004 00b6 7D .byte 0x7d
2005 00b7 20 .sleb128 32
2006 00b8 00000000 .4byte 0
2007 00bc 00000000 .4byte 0
2008 .LLST3:
2009 00c0 00000000 .4byte .LVL7
2010 00c4 0D000000 .4byte .LVL8-1
2011 00c8 0100 .2byte 0x1
2012 00ca 50 .byte 0x50
2013 00cb 0D000000 .4byte .LVL8-1
2014 00cf 36000000 .4byte .LFE9
2015 00d3 0400 .2byte 0x4
2016 00d5 F3 .byte 0xf3
2017 00d6 01 .uleb128 0x1
2018 00d7 50 .byte 0x50
2019 00d8 9F .byte 0x9f
2020 00d9 00000000 .4byte 0
2021 00dd 00000000 .4byte 0
2022 .LLST4:
2023 00e1 00000000 .4byte .LVL7
2024 00e5 0D000000 .4byte .LVL8-1
2025 00e9 0100 .2byte 0x1
2026 00eb 51 .byte 0x51
2027 00ec 0D000000 .4byte .LVL8-1
2028 00f0 36000000 .4byte .LFE9
2029 00f4 0100 .2byte 0x1
2030 00f6 55 .byte 0x55
2031 00f7 00000000 .4byte 0
2032 00fb 00000000 .4byte 0
2033 .LLST5:
2034 00ff 00000000 .4byte .LVL7
2035 0103 0D000000 .4byte .LVL8-1
2036 0107 0100 .2byte 0x1
2037 0109 52 .byte 0x52
2038 010a 0D000000 .4byte .LVL8-1
2039 010e 36000000 .4byte .LFE9
2040 0112 0100 .2byte 0x1
2041 0114 57 .byte 0x57
2042 0115 00000000 .4byte 0
2043 0119 00000000 .4byte 0
2044 .LLST6:
2045 011d 00000000 .4byte .LVL7
2046 0121 0D000000 .4byte .LVL8-1
2047 0125 0100 .2byte 0x1
2048 0127 53 .byte 0x53
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 37
2049 0128 0D000000 .4byte .LVL8-1
2050 012c 36000000 .4byte .LFE9
2051 0130 0100 .2byte 0x1
2052 0132 56 .byte 0x56
2053 0133 00000000 .4byte 0
2054 0137 00000000 .4byte 0
2055 .LLST7:
2056 013b 0E000000 .4byte .LVL8
2057 013f 21000000 .4byte .LVL9-1
2058 0143 0100 .2byte 0x1
2059 0145 50 .byte 0x50
2060 0146 00000000 .4byte 0
2061 014a 00000000 .4byte 0
2062 .LLST8:
2063 014e 2A000000 .4byte .LVL10
2064 0152 2D000000 .4byte .LVL11-1
2065 0156 0100 .2byte 0x1
2066 0158 50 .byte 0x50
2067 0159 2D000000 .4byte .LVL11-1
2068 015d 30000000 .4byte .LVL12
2069 0161 0100 .2byte 0x1
2070 0163 54 .byte 0x54
2071 0164 00000000 .4byte 0
2072 0168 00000000 .4byte 0
2073 .LLST9:
2074 016c 00000000 .4byte .LFB10
2075 0170 04000000 .4byte .LCFI2
2076 0174 0200 .2byte 0x2
2077 0176 7D .byte 0x7d
2078 0177 00 .sleb128 0
2079 0178 04000000 .4byte .LCFI2
2080 017c 06000000 .4byte .LCFI3
2081 0180 0200 .2byte 0x2
2082 0182 7D .byte 0x7d
2083 0183 18 .sleb128 24
2084 0184 06000000 .4byte .LCFI3
2085 0188 3C000000 .4byte .LFE10
2086 018c 0200 .2byte 0x2
2087 018e 7D .byte 0x7d
2088 018f 20 .sleb128 32
2089 0190 00000000 .4byte 0
2090 0194 00000000 .4byte 0
2091 .LLST10:
2092 0198 00000000 .4byte .LVL13
2093 019c 11000000 .4byte .LVL14-1
2094 01a0 0100 .2byte 0x1
2095 01a2 50 .byte 0x50
2096 01a3 11000000 .4byte .LVL14-1
2097 01a7 3C000000 .4byte .LFE10
2098 01ab 0100 .2byte 0x1
2099 01ad 55 .byte 0x55
2100 01ae 00000000 .4byte 0
2101 01b2 00000000 .4byte 0
2102 .LLST11:
2103 01b6 00000000 .4byte .LVL13
2104 01ba 11000000 .4byte .LVL14-1
2105 01be 0100 .2byte 0x1
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 38
2106 01c0 51 .byte 0x51
2107 01c1 11000000 .4byte .LVL14-1
2108 01c5 3C000000 .4byte .LFE10
2109 01c9 0100 .2byte 0x1
2110 01cb 58 .byte 0x58
2111 01cc 00000000 .4byte 0
2112 01d0 00000000 .4byte 0
2113 .LLST12:
2114 01d4 00000000 .4byte .LVL13
2115 01d8 11000000 .4byte .LVL14-1
2116 01dc 0100 .2byte 0x1
2117 01de 52 .byte 0x52
2118 01df 11000000 .4byte .LVL14-1
2119 01e3 3C000000 .4byte .LFE10
2120 01e7 0100 .2byte 0x1
2121 01e9 57 .byte 0x57
2122 01ea 00000000 .4byte 0
2123 01ee 00000000 .4byte 0
2124 .LLST13:
2125 01f2 00000000 .4byte .LVL13
2126 01f6 11000000 .4byte .LVL14-1
2127 01fa 0100 .2byte 0x1
2128 01fc 53 .byte 0x53
2129 01fd 11000000 .4byte .LVL14-1
2130 0201 3C000000 .4byte .LFE10
2131 0205 0100 .2byte 0x1
2132 0207 56 .byte 0x56
2133 0208 00000000 .4byte 0
2134 020c 00000000 .4byte 0
2135 .LLST14:
2136 0210 12000000 .4byte .LVL14
2137 0214 23000000 .4byte .LVL15-1
2138 0218 0100 .2byte 0x1
2139 021a 50 .byte 0x50
2140 021b 23000000 .4byte .LVL15-1
2141 021f 2E000000 .4byte .LVL16
2142 0223 0100 .2byte 0x1
2143 0225 54 .byte 0x54
2144 0226 00000000 .4byte 0
2145 022a 00000000 .4byte 0
2146 .LLST15:
2147 022e 2E000000 .4byte .LVL16
2148 0232 31000000 .4byte .LVL17-1
2149 0236 0100 .2byte 0x1
2150 0238 50 .byte 0x50
2151 0239 31000000 .4byte .LVL17-1
2152 023d 34000000 .4byte .LVL18
2153 0241 0100 .2byte 0x1
2154 0243 54 .byte 0x54
2155 0244 00000000 .4byte 0
2156 0248 00000000 .4byte 0
2157 .section .debug_aranges,"",%progbits
2158 0000 34000000 .4byte 0x34
2159 0004 0200 .2byte 0x2
2160 0006 00000000 .4byte .Ldebug_info0
2161 000a 04 .byte 0x4
2162 000b 00 .byte 0
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 39
2163 000c 0000 .2byte 0
2164 000e 0000 .2byte 0
2165 0010 00000000 .4byte .LFB7
2166 0014 0C000000 .4byte .LFE7-.LFB7
2167 0018 00000000 .4byte .LFB8
2168 001c 44000000 .4byte .LFE8-.LFB8
2169 0020 00000000 .4byte .LFB9
2170 0024 36000000 .4byte .LFE9-.LFB9
2171 0028 00000000 .4byte .LFB10
2172 002c 3C000000 .4byte .LFE10-.LFB10
2173 0030 00000000 .4byte 0
2174 0034 00000000 .4byte 0
2175 .section .debug_ranges,"",%progbits
2176 .Ldebug_ranges0:
2177 0000 00000000 .4byte .LFB7
2178 0004 0C000000 .4byte .LFE7
2179 0008 00000000 .4byte .LFB8
2180 000c 44000000 .4byte .LFE8
2181 0010 00000000 .4byte .LFB9
2182 0014 36000000 .4byte .LFE9
2183 0018 00000000 .4byte .LFB10
2184 001c 3C000000 .4byte .LFE10
2185 0020 00000000 .4byte 0
2186 0024 00000000 .4byte 0
2187 .section .debug_line,"",%progbits
2188 .Ldebug_line0:
2189 0000 FA010000 .section .debug_str,"MS",%progbits,1
2189 02007901
2189 00000201
2189 FB0E0D00
2189 01010101
2190 .LASF72:
2191 0000 7466756E .ascii "tfunc_t\000"
2191 635F7400
2192 .LASF35:
2193 0008 705F6D73 .ascii "p_msg\000"
2193 6700
2194 .LASF2:
2195 000e 73697A65 .ascii "size_t\000"
2195 5F7400
2196 .LASF67:
2197 0015 7264796D .ascii "rdymsg\000"
2197 736700
2198 .LASF12:
2199 001c 75696E74 .ascii "uint64_t\000"
2199 36345F74
2199 00
2200 .LASF87:
2201 0025 433A5C44 .ascii "C:\\Documents and Settings\\maria\\Mis documentos\\"
2201 6F63756D
2201 656E7473
2201 20616E64
2201 20536574
2202 0054 756E695C .ascii "uni\\tercer\\Q2\\PAET\\SmartCities\\Project\\applic"
2202 74657263
2202 65725C51
2202 325C5041
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 40
2202 45545C53
2203 0081 6174696F .ascii "ations\\smartcities\000"
2203 6E735C73
2203 6D617274
2203 63697469
2203 657300
2204 .LASF66:
2205 0094 4D656D6F .ascii "MemoryPool\000"
2205 7279506F
2205 6F6C00
2206 .LASF51:
2207 009f 6D656D67 .ascii "memgetfunc_t\000"
2207 65746675
2207 6E635F74
2207 00
2208 .LASF13:
2209 00ac 6C6F6E67 .ascii "long long unsigned int\000"
2209 206C6F6E
2209 6720756E
2209 7369676E
2209 65642069
2210 .LASF68:
2211 00c3 65786974 .ascii "exitcode\000"
2211 636F6465
2211 00
2212 .LASF55:
2213 00cc 685F6672 .ascii "h_free\000"
2213 656500
2214 .LASF75:
2215 00d3 68656170 .ascii "heapp\000"
2215 7000
2216 .LASF57:
2217 00d9 6E657874 .ascii "next\000"
2217 00
2218 .LASF24:
2219 00de 705F7072 .ascii "p_prio\000"
2219 696F00
2220 .LASF11:
2221 00e5 6C6F6E67 .ascii "long long int\000"
2221 206C6F6E
2221 6720696E
2221 7400
2222 .LASF1:
2223 00f3 7369676E .ascii "signed char\000"
2223 65642063
2223 68617200
2224 .LASF56:
2225 00ff 685F6D74 .ascii "h_mtx\000"
2225 7800
2226 .LASF39:
2227 0105 705F6D70 .ascii "p_mpool\000"
2227 6F6F6C00
2228 .LASF48:
2229 010d 6D5F7175 .ascii "m_queue\000"
2229 65756500
2230 .LASF80:
2231 0115 63684865 .ascii "chHeapFree\000"
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 41
2231 61704672
2231 656500
2232 .LASF82:
2233 0120 63685468 .ascii "chThdCreateI\000"
2233 64437265
2233 61746549
2233 00
2234 .LASF8:
2235 012d 6C6F6E67 .ascii "long int\000"
2235 20696E74
2235 00
2236 .LASF74:
2237 0136 63685468 .ascii "chThdCreateFromHeap\000"
2237 64437265
2237 61746546
2237 726F6D48
2237 65617000
2238 .LASF15:
2239 014a 74737461 .ascii "tstate_t\000"
2239 74655F74
2239 00
2240 .LASF63:
2241 0153 6D705F6E .ascii "mp_next\000"
2241 65787400
2242 .LASF26:
2243 015b 705F6E65 .ascii "p_newer\000"
2243 77657200
2244 .LASF78:
2245 0163 63685468 .ascii "chThdCreateFromMemoryPool\000"
2245 64437265
2245 61746546
2245 726F6D4D
2245 656D6F72
2246 .LASF65:
2247 017d 6D705F70 .ascii "mp_provider\000"
2247 726F7669
2247 64657200
2248 .LASF42:
2249 0189 72656761 .ascii "regarm_t\000"
2249 726D5F74
2249 00
2250 .LASF59:
2251 0192 616C6967 .ascii "align\000"
2251 6E00
2252 .LASF0:
2253 0198 756E7369 .ascii "unsigned int\000"
2253 676E6564
2253 20696E74
2253 00
2254 .LASF10:
2255 01a5 6C6F6E67 .ascii "long unsigned int\000"
2255 20756E73
2255 69676E65
2255 6420696E
2255 7400
2256 .LASF45:
2257 01b7 636F6E74 .ascii "context\000"
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 42
2257 65787400
2258 .LASF60:
2259 01bf 73697A65 .ascii "size\000"
2259 00
2260 .LASF6:
2261 01c4 73686F72 .ascii "short unsigned int\000"
2261 7420756E
2261 7369676E
2261 65642069
2261 6E7400
2262 .LASF18:
2263 01d7 6D73675F .ascii "msg_t\000"
2263 7400
2264 .LASF86:
2265 01dd 2E2E2F2E .ascii "../..//os/kernel/src/chdynamic.c\000"
2265 2E2F2F6F
2265 732F6B65
2265 726E656C
2265 2F737263
2266 .LASF14:
2267 01fe 746D6F64 .ascii "tmode_t\000"
2267 655F7400
2268 .LASF41:
2269 0206 54687265 .ascii "ThreadsList\000"
2269 6164734C
2269 69737400
2270 .LASF19:
2271 0212 6576656E .ascii "eventmask_t\000"
2271 746D6173
2271 6B5F7400
2272 .LASF47:
2273 021e 4D757465 .ascii "Mutex\000"
2273 7800
2274 .LASF73:
2275 0224 63685468 .ascii "chThdAddRef\000"
2275 64416464
2275 52656600
2276 .LASF43:
2277 0230 73746B61 .ascii "stkalign_t\000"
2277 6C69676E
2277 5F7400
2278 .LASF46:
2279 023b 73697A65 .ascii "sizetype\000"
2279 74797065
2279 00
2280 .LASF27:
2281 0244 705F6F6C .ascii "p_older\000"
2281 64657200
2282 .LASF40:
2283 024c 54687265 .ascii "ThreadsQueue\000"
2283 61647351
2283 75657565
2283 00
2284 .LASF64:
2285 0259 6D705F6F .ascii "mp_object_size\000"
2285 626A6563
2285 745F7369
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 43
2285 7A6500
2286 .LASF85:
2287 0268 474E5520 .ascii "GNU C 4.7.2\000"
2287 4320342E
2287 372E3200
2288 .LASF76:
2289 0274 7072696F .ascii "prio\000"
2289 00
2290 .LASF52:
2291 0279 4D656D6F .ascii "MemoryHeap\000"
2291 72794865
2291 617000
2292 .LASF62:
2293 0284 70685F6E .ascii "ph_next\000"
2293 65787400
2294 .LASF16:
2295 028c 74726566 .ascii "trefs_t\000"
2295 735F7400
2296 .LASF77:
2297 0294 72656673 .ascii "refs\000"
2297 00
2298 .LASF23:
2299 0299 705F7072 .ascii "p_prev\000"
2299 657600
2300 .LASF17:
2301 02a0 74707269 .ascii "tprio_t\000"
2301 6F5F7400
2302 .LASF7:
2303 02a8 696E7433 .ascii "int32_t\000"
2303 325F7400
2304 .LASF4:
2305 02b0 756E7369 .ascii "unsigned char\000"
2305 676E6564
2305 20636861
2305 7200
2306 .LASF54:
2307 02be 685F7072 .ascii "h_provider\000"
2307 6F766964
2307 657200
2308 .LASF37:
2309 02c9 705F6D74 .ascii "p_mtxlist\000"
2309 786C6973
2309 7400
2310 .LASF5:
2311 02d3 73686F72 .ascii "short int\000"
2311 7420696E
2311 7400
2312 .LASF29:
2313 02dd 705F7374 .ascii "p_state\000"
2313 61746500
2314 .LASF88:
2315 02e5 68656170 .ascii "heap_header\000"
2315 5F686561
2315 64657200
2316 .LASF70:
2317 02f1 65776D61 .ascii "ewmask\000"
2317 736B00
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 44
2318 .LASF22:
2319 02f8 705F6E65 .ascii "p_next\000"
2319 787400
2320 .LASF30:
2321 02ff 705F666C .ascii "p_flags\000"
2321 61677300
2322 .LASF89:
2323 0307 63685468 .ascii "chThdRelease\000"
2323 6452656C
2323 65617365
2323 00
2324 .LASF21:
2325 0314 54687265 .ascii "Thread\000"
2325 616400
2326 .LASF81:
2327 031b 63684865 .ascii "chHeapAlloc\000"
2327 6170416C
2327 6C6F6300
2328 .LASF36:
2329 0327 705F6570 .ascii "p_epending\000"
2329 656E6469
2329 6E6700
2330 .LASF9:
2331 0332 75696E74 .ascii "uint32_t\000"
2331 33325F74
2331 00
2332 .LASF58:
2333 033b 68656170 .ascii "heap\000"
2333 00
2334 .LASF71:
2335 0340 63686172 .ascii "char\000"
2335 00
2336 .LASF50:
2337 0345 6D5F6E65 .ascii "m_next\000"
2337 787400
2338 .LASF20:
2339 034c 73797374 .ascii "systime_t\000"
2339 696D655F
2339 7400
2340 .LASF38:
2341 0356 705F7265 .ascii "p_realprio\000"
2341 616C7072
2341 696F00
2342 .LASF32:
2343 0361 705F7469 .ascii "p_time\000"
2343 6D6500
2344 .LASF44:
2345 0368 696E7463 .ascii "intctx\000"
2345 747800
2346 .LASF34:
2347 036f 705F6D73 .ascii "p_msgqueue\000"
2347 67717565
2347 756500
2348 .LASF83:
2349 037a 63685363 .ascii "chSchWakeupS\000"
2349 6857616B
2349 65757053
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 45
2349 00
2350 .LASF61:
2351 0387 706F6F6C .ascii "pool_header\000"
2351 5F686561
2351 64657200
2352 .LASF31:
2353 0393 705F7265 .ascii "p_refs\000"
2353 667300
2354 .LASF3:
2355 039a 75696E74 .ascii "uint8_t\000"
2355 385F7400
2356 .LASF84:
2357 03a2 6368506F .ascii "chPoolAlloc\000"
2357 6F6C416C
2357 6C6F6300
2358 .LASF79:
2359 03ae 6368506F .ascii "chPoolFree\000"
2359 6F6C4672
2359 656500
2360 .LASF69:
2361 03b9 77746F62 .ascii "wtobjp\000"
2361 6A7000
2362 .LASF28:
2363 03c0 705F6E61 .ascii "p_name\000"
2363 6D6500
2364 .LASF49:
2365 03c7 6D5F6F77 .ascii "m_owner\000"
2365 6E657200
2366 .LASF25:
2367 03cf 705F6374 .ascii "p_ctx\000"
2367 7800
2368 .LASF33:
2369 03d5 705F7761 .ascii "p_waiting\000"
2369 6974696E
2369 6700
2370 .LASF53:
2371 03df 6D656D6F .ascii "memory_heap\000"
2371 72795F68
2371 65617000
2372 .ident "GCC: (GNU) 4.7.2"
ARM GAS C:\cygwin64\tmp\ccdlIsIh.s page 46
DEFINED SYMBOLS
*ABS*:00000000 chdynamic.c
C:\cygwin64\tmp\ccdlIsIh.s:19 .text.chThdAddRef:00000000 $t
C:\cygwin64\tmp\ccdlIsIh.s:25 .text.chThdAddRef:00000000 chThdAddRef
C:\cygwin64\tmp\ccdlIsIh.s:54 .text.chThdRelease:00000000 $t
C:\cygwin64\tmp\ccdlIsIh.s:60 .text.chThdRelease:00000000 chThdRelease
C:\cygwin64\tmp\ccdlIsIh.s:132 .text.chThdCreateFromHeap:00000000 $t
C:\cygwin64\tmp\ccdlIsIh.s:138 .text.chThdCreateFromHeap:00000000 chThdCreateFromHeap
C:\cygwin64\tmp\ccdlIsIh.s:205 .text.chThdCreateFromMemoryPool:00000000 $t
C:\cygwin64\tmp\ccdlIsIh.s:211 .text.chThdCreateFromMemoryPool:00000000 chThdCreateFromMemoryPool
.debug_frame:00000010 $d
UNDEFINED SYMBOLS
chPoolFree
chHeapFree
chHeapAlloc
chThdCreateI
chSchWakeupS
chPoolAlloc