chheap.lst
103 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
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
ARM GAS C:\cygwin\tmp\ccpvZwQ8.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 "chheap.c"
15 .text
16 .Ltext0:
17 .cfi_sections .debug_frame
18 .section .text._heap_init,"ax",%progbits
19 .align 2
20 .p2align 4,,15
21 .global _heap_init
22 .thumb
23 .thumb_func
24 .type _heap_init, %function
25 _heap_init:
26 .LFB7:
27 .file 1 "../..//os/kernel/src/chheap.c"
28 .loc 1 75 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 .loc 1 76 0
34 0000 40F20003 movw r3, #:lower16:.LANCHOR0
35 0004 C0F20003 movt r3, #:upper16:.LANCHOR0
36 0008 40F20001 movw r1, #:lower16:chCoreAlloc
37 .loc 1 77 0
38 000c 0022 movs r2, #0
39 .loc 1 76 0
40 000e C0F20001 movt r1, #:upper16:chCoreAlloc
41 .loc 1 80 0
42 0012 03F11000 add r0, r3, #16
43 .loc 1 76 0
44 0016 1960 str r1, [r3, #0]
45 .loc 1 77 0
46 0018 9A60 str r2, [r3, #8]
47 .loc 1 78 0
48 001a DA60 str r2, [r3, #12]
49 .loc 1 84 0
50 .loc 1 80 0
51 001c FFF7FEBF b chMtxInit
52 .LVL0:
53 .cfi_endproc
54 .LFE7:
55 .size _heap_init, .-_heap_init
56 .section .text.chHeapInit,"ax",%progbits
57 .align 2
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 2
58 .p2align 4,,15
59 .global chHeapInit
60 .thumb
61 .thumb_func
62 .type chHeapInit, %function
63 chHeapInit:
64 .LFB8:
65 .loc 1 99 0
66 .cfi_startproc
67 @ args = 0, pretend = 0, frame = 0
68 @ frame_needed = 0, uses_anonymous_args = 0
69 @ link register save eliminated.
70 .LVL1:
71 .loc 1 104 0
72 0000 0023 movs r3, #0
73 0002 0360 str r3, [r0, #0]
74 .LVL2:
75 .loc 1 105 0
76 0004 8160 str r1, [r0, #8]
77 .loc 1 106 0
78 0006 C360 str r3, [r0, #12]
79 .loc 1 108 0
80 0008 083A subs r2, r2, #8
81 .LVL3:
82 .loc 1 110 0
83 000a 1030 adds r0, r0, #16
84 .LVL4:
85 .loc 1 107 0
86 000c 0B60 str r3, [r1, #0]
87 .loc 1 108 0
88 000e 4A60 str r2, [r1, #4]
89 .loc 1 114 0
90 .loc 1 110 0
91 0010 FFF7FEBF b chMtxInit
92 .LVL5:
93 .cfi_endproc
94 .LFE8:
95 .size chHeapInit, .-chHeapInit
96 0014 AFF30080 .section .text.chHeapAlloc,"ax",%progbits
96 AFF30080
96 AFF30080
97 .align 2
98 .p2align 4,,15
99 .global chHeapAlloc
100 .thumb
101 .thumb_func
102 .type chHeapAlloc, %function
103 chHeapAlloc:
104 .LFB9:
105 .loc 1 132 0
106 .cfi_startproc
107 @ args = 0, pretend = 0, frame = 0
108 @ frame_needed = 0, uses_anonymous_args = 0
109 .LVL6:
110 0000 F8B5 push {r3, r4, r5, r6, r7, lr}
111 .LCFI0:
112 .cfi_def_cfa_offset 24
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 3
113 .cfi_offset 3, -24
114 .cfi_offset 4, -20
115 .cfi_offset 5, -16
116 .cfi_offset 6, -12
117 .cfi_offset 7, -8
118 .cfi_offset 14, -4
119 .loc 1 136 0
120 0002 1F4E ldr r6, .L20
121 .loc 1 138 0
122 0004 0731 adds r1, r1, #7
123 .LVL7:
124 .loc 1 136 0
125 0006 0028 cmp r0, #0
126 0008 18BF it ne
127 000a 0646 movne r6, r0
128 .LVL8:
129 .loc 1 140 0
130 000c 06F11000 add r0, r6, #16
131 .loc 1 138 0
132 0010 21F00705 bic r5, r1, #7
133 .LVL9:
134 .loc 1 139 0
135 0014 06F10804 add r4, r6, #8
136 .LVL10:
137 .loc 1 140 0
138 0018 FFF7FEFF bl chMtxLock
139 .LVL11:
140 .loc 1 142 0
141 001c 00E0 b .L5
142 .LVL12:
143 .L13:
144 .loc 1 144 0
145 001e 1C46 mov r4, r3
146 .LVL13:
147 .L5:
148 .loc 1 142 0 discriminator 1
149 0020 2368 ldr r3, [r4, #0]
150 .LVL14:
151 0022 E3B1 cbz r3, .L18
152 .loc 1 144 0
153 0024 5A68 ldr r2, [r3, #4]
154 0026 9542 cmp r5, r2
155 0028 F9D8 bhi .L13
156 .loc 1 145 0
157 002a 05F10801 add r1, r5, #8
158 002e 9142 cmp r1, r2
159 0030 12D8 bhi .L19
160 .loc 1 155 0
161 0032 4FF6F870 movw r0, #65528
162 0036 CFF6FF70 movt r0, 65535
163 003a 401B subs r0, r0, r5
164 003c 8218 adds r2, r0, r2
165 .loc 1 154 0
166 003e 1868 ldr r0, [r3, #0]
167 .loc 1 153 0
168 0040 5F18 adds r7, r3, r1
169 .LVL15:
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 4
170 .loc 1 154 0
171 0042 5850 str r0, [r3, r1]
172 .loc 1 155 0
173 0044 7A60 str r2, [r7, #4]
174 .loc 1 156 0
175 0046 2760 str r7, [r4, #0]
176 .loc 1 157 0
177 0048 5D60 str r5, [r3, #4]
178 .LVL16:
179 .L7:
180 .loc 1 159 0
181 004a 1C46 mov r4, r3
182 .LVL17:
183 004c 44F8086B str r6, [r4], #8
184 .loc 1 161 0
185 0050 FFF7FEFF bl chMtxUnlock
186 .LVL18:
187 .L8:
188 .loc 1 181 0
189 0054 2046 mov r0, r4
190 0056 F8BD pop {r3, r4, r5, r6, r7, pc}
191 .LVL19:
192 .L19:
193 .loc 1 149 0
194 0058 1A68 ldr r2, [r3, #0]
195 005a 2260 str r2, [r4, #0]
196 005c F5E7 b .L7
197 .L18:
198 .loc 1 167 0
199 005e FFF7FEFF bl chMtxUnlock
200 .LVL20:
201 .loc 1 171 0
202 0062 3368 ldr r3, [r6, #0]
203 0064 4BB1 cbz r3, .L11
204 .loc 1 172 0
205 0066 05F10800 add r0, r5, #8
206 006a 9847 blx r3
207 .LVL21:
208 .loc 1 173 0
209 006c 28B1 cbz r0, .L11
210 .loc 1 177 0
211 006e 00F10804 add r4, r0, #8
212 .LVL22:
213 .loc 1 174 0
214 0072 0660 str r6, [r0, #0]
215 .loc 1 175 0
216 0074 4560 str r5, [r0, #4]
217 .LVL23:
218 .loc 1 181 0
219 0076 2046 mov r0, r4
220 0078 F8BD pop {r3, r4, r5, r6, r7, pc}
221 .LVL24:
222 .L11:
223 .loc 1 180 0
224 007a 0024 movs r4, #0
225 .LVL25:
226 007c EAE7 b .L8
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 5
227 .L21:
228 007e 00BF .align 2
229 .L20:
230 0080 00000000 .word .LANCHOR0
231 .cfi_endproc
232 .LFE9:
233 .size chHeapAlloc, .-chHeapAlloc
234 0084 AFF30080 .section .text.chHeapFree,"ax",%progbits
234 AFF30080
234 AFF30080
235 .align 2
236 .p2align 4,,15
237 .global chHeapFree
238 .thumb
239 .thumb_func
240 .type chHeapFree, %function
241 chHeapFree:
242 .LFB10:
243 .loc 1 194 0
244 .cfi_startproc
245 @ args = 0, pretend = 0, frame = 0
246 @ frame_needed = 0, uses_anonymous_args = 0
247 .LVL26:
248 0000 70B5 push {r4, r5, r6, lr}
249 .LCFI1:
250 .cfi_def_cfa_offset 16
251 .cfi_offset 4, -16
252 .cfi_offset 5, -12
253 .cfi_offset 6, -8
254 .cfi_offset 14, -4
255 .loc 1 194 0
256 0002 0646 mov r6, r0
257 .loc 1 201 0
258 0004 50F8080C ldr r0, [r0, #-8]
259 .LVL27:
260 .loc 1 200 0
261 0008 A6F10804 sub r4, r6, #8
262 .LVL28:
263 .loc 1 202 0
264 000c 00F10805 add r5, r0, #8
265 .LVL29:
266 .loc 1 203 0
267 0010 1030 adds r0, r0, #16
268 .LVL30:
269 0012 FFF7FEFF bl chMtxLock
270 .LVL31:
271 .loc 1 202 0
272 0016 2B46 mov r3, r5
273 .LVL32:
274 .L29:
275 .loc 1 210 0
276 0018 AB42 cmp r3, r5
277 .loc 1 211 0
278 001a 1A68 ldr r2, [r3, #0]
279 .loc 1 210 0
280 001c 01D0 beq .L23
281 .loc 1 210 0 is_stmt 0 discriminator 2
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 6
282 001e A342 cmp r3, r4
283 0020 02D2 bcs .L26
284 .L23:
285 .loc 1 210 0 discriminator 1
286 0022 1AB1 cbz r2, .L25
287 .loc 1 211 0 is_stmt 1
288 0024 9442 cmp r4, r2
289 0026 01D3 bcc .L25
290 .L26:
291 .LVL33:
292 .loc 1 228 0
293 0028 1346 mov r3, r2
294 .loc 1 229 0
295 002a F5E7 b .L29
296 .LVL34:
297 .L25:
298 .loc 1 216 0
299 002c 56F8041C ldr r1, [r6, #-4]
300 .loc 1 213 0
301 0030 46F8082C str r2, [r6, #-8]
302 .loc 1 214 0
303 0034 1C60 str r4, [r3, #0]
304 .loc 1 216 0
305 0036 01F10802 add r2, r1, #8
306 003a 56F8085C ldr r5, [r6, #-8]
307 .LVL35:
308 003e A018 adds r0, r4, r2
309 0040 A842 cmp r0, r5
310 0042 09D0 beq .L33
311 .loc 1 221 0
312 0044 5A68 ldr r2, [r3, #4]
313 0046 02F10801 add r1, r2, #8
314 004a 5918 adds r1, r3, r1
315 004c 8C42 cmp r4, r1
316 004e 11D0 beq .L34
317 .L28:
318 .loc 1 233 0
319 0050 BDE87040 pop {r4, r5, r6, lr}
320 .loc 1 231 0
321 0054 FFF7FEBF b chMtxUnlock
322 .LVL36:
323 .L33:
324 .loc 1 218 0
325 0058 4068 ldr r0, [r0, #4]
326 .loc 1 219 0
327 005a A258 ldr r2, [r4, r2]
328 .loc 1 218 0
329 005c 0918 adds r1, r1, r0
330 005e 0831 adds r1, r1, #8
331 0060 46F8041C str r1, [r6, #-4]
332 .loc 1 219 0
333 0064 46F8082C str r2, [r6, #-8]
334 .loc 1 221 0
335 0068 5A68 ldr r2, [r3, #4]
336 006a 02F10801 add r1, r2, #8
337 006e 5918 adds r1, r3, r1
338 0070 8C42 cmp r4, r1
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 7
339 0072 EDD1 bne .L28
340 .L34:
341 .loc 1 223 0
342 0074 56F8040C ldr r0, [r6, #-4]
343 .loc 1 224 0
344 0078 56F8081C ldr r1, [r6, #-8]
345 .loc 1 223 0
346 007c 1218 adds r2, r2, r0
347 007e 0832 adds r2, r2, #8
348 .loc 1 224 0
349 0080 83E80600 stmia r3, {r1, r2}
350 0084 E4E7 b .L28
351 .cfi_endproc
352 .LFE10:
353 .size chHeapFree, .-chHeapFree
354 0086 00BFAFF3 .section .text.chHeapStatus,"ax",%progbits
354 0080AFF3
354 0080
355 .align 2
356 .p2align 4,,15
357 .global chHeapStatus
358 .thumb
359 .thumb_func
360 .type chHeapStatus, %function
361 chHeapStatus:
362 .LFB11:
363 .loc 1 250 0
364 .cfi_startproc
365 @ args = 0, pretend = 0, frame = 0
366 @ frame_needed = 0, uses_anonymous_args = 0
367 .LVL37:
368 0000 38B5 push {r3, r4, r5, lr}
369 .LCFI2:
370 .cfi_def_cfa_offset 16
371 .cfi_offset 3, -16
372 .cfi_offset 4, -12
373 .cfi_offset 5, -8
374 .cfi_offset 14, -4
375 .loc 1 255 0
376 0002 0E4C ldr r4, .L46
377 .loc 1 250 0
378 0004 0D46 mov r5, r1
379 .loc 1 255 0
380 0006 0028 cmp r0, #0
381 0008 18BF it ne
382 000a 0446 movne r4, r0
383 .LVL38:
384 .loc 1 257 0
385 000c 04F11000 add r0, r4, #16
386 0010 FFF7FEFF bl chMtxLock
387 .LVL39:
388 .loc 1 260 0
389 0014 A368 ldr r3, [r4, #8]
390 0016 6BB1 cbz r3, .L41
391 0018 0022 movs r2, #0
392 001a 1446 mov r4, r2
393 .LVL40:
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 8
394 .L38:
395 .loc 1 261 0 discriminator 2
396 001c 5868 ldr r0, [r3, #4]
397 .loc 1 260 0 discriminator 2
398 001e 1B68 ldr r3, [r3, #0]
399 .loc 1 261 0 discriminator 2
400 0020 1218 adds r2, r2, r0
401 .LVL41:
402 .loc 1 260 0 discriminator 2
403 0022 0134 adds r4, r4, #1
404 .LVL42:
405 0024 002B cmp r3, #0
406 0026 F9D1 bne .L38
407 .LVL43:
408 .L37:
409 .loc 1 262 0
410 0028 05B1 cbz r5, .L39
411 .loc 1 263 0
412 002a 2A60 str r2, [r5, #0]
413 .L39:
414 .loc 1 265 0
415 002c FFF7FEFF bl chMtxUnlock
416 .LVL44:
417 .loc 1 267 0
418 0030 2046 mov r0, r4
419 0032 38BD pop {r3, r4, r5, pc}
420 .LVL45:
421 .L41:
422 .loc 1 259 0
423 0034 1A46 mov r2, r3
424 .loc 1 260 0
425 0036 1C46 mov r4, r3
426 .LVL46:
427 0038 F6E7 b .L37
428 .L47:
429 003a 00BF .align 2
430 .L46:
431 003c 00000000 .word .LANCHOR0
432 .cfi_endproc
433 .LFE11:
434 .size chHeapStatus, .-chHeapStatus
435 .section .text.chHeapMaxMinFraq,"ax",%progbits
436 .align 2
437 .p2align 4,,15
438 .global chHeapMaxMinFraq
439 .thumb
440 .thumb_func
441 .type chHeapMaxMinFraq, %function
442 chHeapMaxMinFraq:
443 .LFB12:
444 .loc 1 282 0
445 .cfi_startproc
446 @ args = 0, pretend = 0, frame = 0
447 @ frame_needed = 0, uses_anonymous_args = 0
448 .LVL47:
449 0000 70B5 push {r4, r5, r6, lr}
450 .LCFI3:
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 9
451 .cfi_def_cfa_offset 16
452 .cfi_offset 4, -16
453 .cfi_offset 5, -12
454 .cfi_offset 6, -8
455 .cfi_offset 14, -4
456 .loc 1 289 0
457 0002 124E ldr r6, .L56
458 .loc 1 285 0
459 0004 0023 movs r3, #0
460 .loc 1 289 0
461 0006 0028 cmp r0, #0
462 0008 18BF it ne
463 000a 0646 movne r6, r0
464 .LVL48:
465 .loc 1 285 0
466 000c 0B60 str r3, [r1, #0]
467 .loc 1 291 0
468 000e 06F11000 add r0, r6, #16
469 .loc 1 286 0
470 0012 1360 str r3, [r2, #0]
471 .loc 1 282 0
472 0014 0C46 mov r4, r1
473 0016 1546 mov r5, r2
474 .loc 1 291 0
475 0018 FFF7FEFF bl chMtxLock
476 .LVL49:
477 .loc 1 293 0
478 001c B368 ldr r3, [r6, #8]
479 001e 06F10800 add r0, r6, #8
480 .LVL50:
481 0022 73B1 cbz r3, .L52
482 .L54:
483 .loc 1 294 0
484 0024 5B68 ldr r3, [r3, #4]
485 .LVL51:
486 0026 2268 ldr r2, [r4, #0]
487 0028 9A42 cmp r2, r3
488 002a 94BF ite ls
489 002c 2260 strls r2, [r4, #0]
490 002e 2360 strhi r3, [r4, #0]
491 0030 2A68 ldr r2, [r5, #0]
492 0032 9A42 cmp r2, r3
493 0034 2CBF ite cs
494 0036 2A60 strcs r2, [r5, #0]
495 0038 2B60 strcc r3, [r5, #0]
496 .loc 1 293 0
497 003a 0068 ldr r0, [r0, #0]
498 .LVL52:
499 003c 0368 ldr r3, [r0, #0]
500 .LVL53:
501 003e 002B cmp r3, #0
502 0040 F0D1 bne .L54
503 .L52:
504 .loc 1 302 0
505 0042 BDE87040 pop {r4, r5, r6, lr}
506 .loc 1 301 0
507 0046 FFF7FEBF b chMtxUnlock
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 10
508 .LVL54:
509 .L57:
510 004a 00BF .align 2
511 .L56:
512 004c 00000000 .word .LANCHOR0
513 .cfi_endproc
514 .LFE12:
515 .size chHeapMaxMinFraq, .-chHeapMaxMinFraq
516 .section .bss.default_heap,"aw",%nobits
517 .align 3
518 .set .LANCHOR0,. + 0
519 .type default_heap, %object
520 .size default_heap, 32
521 default_heap:
522 0000 00000000 .space 32
522 00000000
522 00000000
522 00000000
522 00000000
523 .text
524 .Letext0:
525 .file 2 "c:\\yagarto\\bin\\../lib/gcc/arm-none-eabi/4.7.2/include/stddef.h"
526 .file 3 "c:/yagarto/lib/gcc/../../arm-none-eabi/sys-include/stdint.h"
527 .file 4 "../..//os/ports/GCC/ARMCMx/chtypes.h"
528 .file 5 "../..//os/kernel/include/chlists.h"
529 .file 6 "../..//os/kernel/include/chthreads.h"
530 .file 7 "../..//os/ports/GCC/ARMCMx/chcore_v7m.h"
531 .file 8 "../..//os/kernel/include/chmtx.h"
532 .file 9 "../..//os/kernel/include/chmemcore.h"
533 .file 10 "../..//os/kernel/include/chheap.h"
534 .section .debug_info,"",%progbits
535 .Ldebug_info0:
536 0000 AA070000 .4byte 0x7aa
537 0004 0200 .2byte 0x2
538 0006 00000000 .4byte .Ldebug_abbrev0
539 000a 04 .byte 0x4
540 000b 01 .uleb128 0x1
541 000c 20020000 .4byte .LASF77
542 0010 01 .byte 0x1
543 0011 B6000000 .4byte .LASF78
544 0015 06000000 .4byte .LASF79
545 0019 00000000 .4byte .Ldebug_ranges0+0
546 001d 00000000 .4byte 0
547 0021 00000000 .4byte 0
548 0025 00000000 .4byte .Ldebug_line0
549 0029 02 .uleb128 0x2
550 002a 04 .byte 0x4
551 002b 05 .byte 0x5
552 002c 696E7400 .ascii "int\000"
553 0030 03 .uleb128 0x3
554 0031 7B000000 .4byte .LASF2
555 0035 02 .byte 0x2
556 0036 D5 .byte 0xd5
557 0037 3B000000 .4byte 0x3b
558 003b 04 .uleb128 0x4
559 003c 04 .byte 0x4
560 003d 07 .byte 0x7
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 11
561 003e 82010000 .4byte .LASF0
562 0042 04 .uleb128 0x4
563 0043 01 .byte 0x1
564 0044 06 .byte 0x6
565 0045 2C010000 .4byte .LASF1
566 0049 03 .uleb128 0x3
567 004a 3E030000 .4byte .LASF3
568 004e 03 .byte 0x3
569 004f 2A .byte 0x2a
570 0050 54000000 .4byte 0x54
571 0054 04 .uleb128 0x4
572 0055 01 .byte 0x1
573 0056 08 .byte 0x8
574 0057 56020000 .4byte .LASF4
575 005b 04 .uleb128 0x4
576 005c 02 .byte 0x2
577 005d 05 .byte 0x5
578 005e 79020000 .4byte .LASF5
579 0062 04 .uleb128 0x4
580 0063 02 .byte 0x2
581 0064 07 .byte 0x7
582 0065 AE010000 .4byte .LASF6
583 0069 03 .uleb128 0x3
584 006a 4E020000 .4byte .LASF7
585 006e 03 .byte 0x3
586 006f 4F .byte 0x4f
587 0070 74000000 .4byte 0x74
588 0074 04 .uleb128 0x4
589 0075 04 .byte 0x4
590 0076 05 .byte 0x5
591 0077 59010000 .4byte .LASF8
592 007b 03 .uleb128 0x3
593 007c CB020000 .4byte .LASF9
594 0080 03 .byte 0x3
595 0081 50 .byte 0x50
596 0082 86000000 .4byte 0x86
597 0086 04 .uleb128 0x4
598 0087 04 .byte 0x4
599 0088 07 .byte 0x7
600 0089 8F010000 .4byte .LASF10
601 008d 04 .uleb128 0x4
602 008e 08 .byte 0x8
603 008f 05 .byte 0x5
604 0090 1E010000 .4byte .LASF11
605 0094 03 .uleb128 0x3
606 0095 89000000 .4byte .LASF12
607 0099 03 .byte 0x3
608 009a 78 .byte 0x78
609 009b 9F000000 .4byte 0x9f
610 009f 04 .uleb128 0x4
611 00a0 08 .byte 0x8
612 00a1 07 .byte 0x7
613 00a2 9F000000 .4byte .LASF13
614 00a6 03 .uleb128 0x3
615 00a7 C7010000 .4byte .LASF14
616 00ab 04 .byte 0x4
617 00ac 2F .byte 0x2f
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 12
618 00ad 49000000 .4byte 0x49
619 00b1 03 .uleb128 0x3
620 00b2 62010000 .4byte .LASF15
621 00b6 04 .byte 0x4
622 00b7 30 .byte 0x30
623 00b8 49000000 .4byte 0x49
624 00bc 03 .uleb128 0x3
625 00bd 37020000 .4byte .LASF16
626 00c1 04 .byte 0x4
627 00c2 31 .byte 0x31
628 00c3 49000000 .4byte 0x49
629 00c7 03 .uleb128 0x3
630 00c8 46020000 .4byte .LASF17
631 00cc 04 .byte 0x4
632 00cd 32 .byte 0x32
633 00ce 7B000000 .4byte 0x7b
634 00d2 03 .uleb128 0x3
635 00d3 C1010000 .4byte .LASF18
636 00d7 04 .byte 0x4
637 00d8 33 .byte 0x33
638 00d9 69000000 .4byte 0x69
639 00dd 03 .uleb128 0x3
640 00de DB010000 .4byte .LASF19
641 00e2 04 .byte 0x4
642 00e3 35 .byte 0x35
643 00e4 7B000000 .4byte 0x7b
644 00e8 03 .uleb128 0x3
645 00e9 FF020000 .4byte .LASF20
646 00ed 04 .byte 0x4
647 00ee 36 .byte 0x36
648 00ef 7B000000 .4byte 0x7b
649 00f3 03 .uleb128 0x3
650 00f4 AD020000 .4byte .LASF21
651 00f8 05 .byte 0x5
652 00f9 2A .byte 0x2a
653 00fa FE000000 .4byte 0xfe
654 00fe 05 .uleb128 0x5
655 00ff AD020000 .4byte .LASF21
656 0103 48 .byte 0x48
657 0104 06 .byte 0x6
658 0105 5E .byte 0x5e
659 0106 15020000 .4byte 0x215
660 010a 06 .uleb128 0x6
661 010b 9E020000 .4byte .LASF22
662 010f 06 .byte 0x6
663 0110 5F .byte 0x5f
664 0111 3A020000 .4byte 0x23a
665 0115 02 .byte 0x2
666 0116 23 .byte 0x23
667 0117 00 .uleb128 0
668 0118 06 .uleb128 0x6
669 0119 3F020000 .4byte .LASF23
670 011d 06 .byte 0x6
671 011e 61 .byte 0x61
672 011f 3A020000 .4byte 0x23a
673 0123 02 .byte 0x2
674 0124 23 .byte 0x23
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 13
675 0125 04 .uleb128 0x4
676 0126 06 .uleb128 0x6
677 0127 06010000 .4byte .LASF24
678 012b 06 .byte 0x6
679 012c 63 .byte 0x63
680 012d C7000000 .4byte 0xc7
681 0131 02 .byte 0x2
682 0132 23 .byte 0x23
683 0133 08 .uleb128 0x8
684 0134 06 .uleb128 0x6
685 0135 6D030000 .4byte .LASF25
686 0139 06 .byte 0x6
687 013a 64 .byte 0x64
688 013b 12030000 .4byte 0x312
689 013f 02 .byte 0x2
690 0140 23 .byte 0x23
691 0141 0C .uleb128 0xc
692 0142 06 .uleb128 0x6
693 0143 6B010000 .4byte .LASF26
694 0147 06 .byte 0x6
695 0148 66 .byte 0x66
696 0149 3A020000 .4byte 0x23a
697 014d 02 .byte 0x2
698 014e 23 .byte 0x23
699 014f 10 .uleb128 0x10
700 0150 06 .uleb128 0x6
701 0151 0B020000 .4byte .LASF27
702 0155 06 .byte 0x6
703 0156 67 .byte 0x67
704 0157 3A020000 .4byte 0x23a
705 015b 02 .byte 0x2
706 015c 23 .byte 0x23
707 015d 14 .uleb128 0x14
708 015e 06 .uleb128 0x6
709 015f 53030000 .4byte .LASF28
710 0163 06 .byte 0x6
711 0164 6E .byte 0x6e
712 0165 90040000 .4byte 0x490
713 0169 02 .byte 0x2
714 016a 23 .byte 0x23
715 016b 18 .uleb128 0x18
716 016c 06 .uleb128 0x6
717 016d 83020000 .4byte .LASF29
718 0171 06 .byte 0x6
719 0172 79 .byte 0x79
720 0173 B1000000 .4byte 0xb1
721 0177 02 .byte 0x2
722 0178 23 .byte 0x23
723 0179 1C .uleb128 0x1c
724 017a 06 .uleb128 0x6
725 017b A5020000 .4byte .LASF30
726 017f 06 .byte 0x6
727 0180 7D .byte 0x7d
728 0181 A6000000 .4byte 0xa6
729 0185 02 .byte 0x2
730 0186 23 .byte 0x23
731 0187 1D .uleb128 0x1d
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 14
732 0188 06 .uleb128 0x6
733 0189 37030000 .4byte .LASF31
734 018d 06 .byte 0x6
735 018e 82 .byte 0x82
736 018f BC000000 .4byte 0xbc
737 0193 02 .byte 0x2
738 0194 23 .byte 0x23
739 0195 1E .uleb128 0x1e
740 0196 06 .uleb128 0x6
741 0197 14030000 .4byte .LASF32
742 019b 06 .byte 0x6
743 019c 89 .byte 0x89
744 019d 3C030000 .4byte 0x33c
745 01a1 02 .byte 0x2
746 01a2 23 .byte 0x23
747 01a3 20 .uleb128 0x20
748 01a4 07 .uleb128 0x7
749 01a5 705F7500 .ascii "p_u\000"
750 01a9 06 .byte 0x6
751 01aa AE .byte 0xae
752 01ab 5B040000 .4byte 0x45b
753 01af 02 .byte 0x2
754 01b0 23 .byte 0x23
755 01b1 24 .uleb128 0x24
756 01b2 06 .uleb128 0x6
757 01b3 73030000 .4byte .LASF33
758 01b7 06 .byte 0x6
759 01b8 B3 .byte 0xb3
760 01b9 62020000 .4byte 0x262
761 01bd 02 .byte 0x2
762 01be 23 .byte 0x23
763 01bf 28 .uleb128 0x28
764 01c0 06 .uleb128 0x6
765 01c1 22030000 .4byte .LASF34
766 01c5 06 .byte 0x6
767 01c6 B9 .byte 0xb9
768 01c7 40020000 .4byte 0x240
769 01cb 02 .byte 0x2
770 01cc 23 .byte 0x23
771 01cd 2C .uleb128 0x2c
772 01ce 06 .uleb128 0x6
773 01cf 00000000 .4byte .LASF35
774 01d3 06 .byte 0x6
775 01d4 BD .byte 0xbd
776 01d5 D2000000 .4byte 0xd2
777 01d9 02 .byte 0x2
778 01da 23 .byte 0x23
779 01db 34 .uleb128 0x34
780 01dc 06 .uleb128 0x6
781 01dd C0020000 .4byte .LASF36
782 01e1 06 .byte 0x6
783 01e2 C3 .byte 0xc3
784 01e3 DD000000 .4byte 0xdd
785 01e7 02 .byte 0x2
786 01e8 23 .byte 0x23
787 01e9 38 .uleb128 0x38
788 01ea 06 .uleb128 0x6
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 15
789 01eb 6F020000 .4byte .LASF37
790 01ef 06 .byte 0x6
791 01f0 CA .byte 0xca
792 01f1 A2040000 .4byte 0x4a2
793 01f5 02 .byte 0x2
794 01f6 23 .byte 0x23
795 01f7 3C .uleb128 0x3c
796 01f8 06 .uleb128 0x6
797 01f9 09030000 .4byte .LASF38
798 01fd 06 .byte 0x6
799 01fe CE .byte 0xce
800 01ff C7000000 .4byte 0xc7
801 0203 02 .byte 0x2
802 0204 23 .byte 0x23
803 0205 40 .uleb128 0x40
804 0206 06 .uleb128 0x6
805 0207 3E010000 .4byte .LASF39
806 020b 06 .byte 0x6
807 020c D4 .byte 0xd4
808 020d 78020000 .4byte 0x278
809 0211 02 .byte 0x2
810 0212 23 .byte 0x23
811 0213 44 .uleb128 0x44
812 0214 00 .byte 0
813 0215 08 .uleb128 0x8
814 0216 08 .byte 0x8
815 0217 05 .byte 0x5
816 0218 61 .byte 0x61
817 0219 3A020000 .4byte 0x23a
818 021d 06 .uleb128 0x6
819 021e 9E020000 .4byte .LASF22
820 0222 05 .byte 0x5
821 0223 62 .byte 0x62
822 0224 3A020000 .4byte 0x23a
823 0228 02 .byte 0x2
824 0229 23 .byte 0x23
825 022a 00 .uleb128 0
826 022b 06 .uleb128 0x6
827 022c 3F020000 .4byte .LASF23
828 0230 05 .byte 0x5
829 0231 64 .byte 0x64
830 0232 3A020000 .4byte 0x23a
831 0236 02 .byte 0x2
832 0237 23 .byte 0x23
833 0238 04 .uleb128 0x4
834 0239 00 .byte 0
835 023a 09 .uleb128 0x9
836 023b 04 .byte 0x4
837 023c F3000000 .4byte 0xf3
838 0240 03 .uleb128 0x3
839 0241 13020000 .4byte .LASF40
840 0245 05 .byte 0x5
841 0246 66 .byte 0x66
842 0247 15020000 .4byte 0x215
843 024b 08 .uleb128 0x8
844 024c 04 .byte 0x4
845 024d 05 .byte 0x5
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 16
846 024e 6B .byte 0x6b
847 024f 62020000 .4byte 0x262
848 0253 06 .uleb128 0x6
849 0254 9E020000 .4byte .LASF22
850 0258 05 .byte 0x5
851 0259 6D .byte 0x6d
852 025a 3A020000 .4byte 0x23a
853 025e 02 .byte 0x2
854 025f 23 .byte 0x23
855 0260 00 .uleb128 0
856 0261 00 .byte 0
857 0262 03 .uleb128 0x3
858 0263 CF010000 .4byte .LASF41
859 0267 05 .byte 0x5
860 0268 70 .byte 0x70
861 0269 4B020000 .4byte 0x24b
862 026d 03 .uleb128 0x3
863 026e 73010000 .4byte .LASF42
864 0272 07 .byte 0x7
865 0273 D7 .byte 0xd7
866 0274 78020000 .4byte 0x278
867 0278 0A .uleb128 0xa
868 0279 04 .byte 0x4
869 027a 03 .uleb128 0x3
870 027b ED010000 .4byte .LASF43
871 027f 07 .byte 0x7
872 0280 DD .byte 0xdd
873 0281 94000000 .4byte 0x94
874 0285 05 .uleb128 0x5
875 0286 1B030000 .4byte .LASF44
876 028a 24 .byte 0x24
877 028b 07 .byte 0x7
878 028c FE .byte 0xfe
879 028d 12030000 .4byte 0x312
880 0291 0B .uleb128 0xb
881 0292 723400 .ascii "r4\000"
882 0295 07 .byte 0x7
883 0296 1101 .2byte 0x111
884 0298 6D020000 .4byte 0x26d
885 029c 02 .byte 0x2
886 029d 23 .byte 0x23
887 029e 00 .uleb128 0
888 029f 0B .uleb128 0xb
889 02a0 723500 .ascii "r5\000"
890 02a3 07 .byte 0x7
891 02a4 1201 .2byte 0x112
892 02a6 6D020000 .4byte 0x26d
893 02aa 02 .byte 0x2
894 02ab 23 .byte 0x23
895 02ac 04 .uleb128 0x4
896 02ad 0B .uleb128 0xb
897 02ae 723600 .ascii "r6\000"
898 02b1 07 .byte 0x7
899 02b2 1301 .2byte 0x113
900 02b4 6D020000 .4byte 0x26d
901 02b8 02 .byte 0x2
902 02b9 23 .byte 0x23
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 17
903 02ba 08 .uleb128 0x8
904 02bb 0B .uleb128 0xb
905 02bc 723700 .ascii "r7\000"
906 02bf 07 .byte 0x7
907 02c0 1401 .2byte 0x114
908 02c2 6D020000 .4byte 0x26d
909 02c6 02 .byte 0x2
910 02c7 23 .byte 0x23
911 02c8 0C .uleb128 0xc
912 02c9 0B .uleb128 0xb
913 02ca 723800 .ascii "r8\000"
914 02cd 07 .byte 0x7
915 02ce 1501 .2byte 0x115
916 02d0 6D020000 .4byte 0x26d
917 02d4 02 .byte 0x2
918 02d5 23 .byte 0x23
919 02d6 10 .uleb128 0x10
920 02d7 0B .uleb128 0xb
921 02d8 723900 .ascii "r9\000"
922 02db 07 .byte 0x7
923 02dc 1601 .2byte 0x116
924 02de 6D020000 .4byte 0x26d
925 02e2 02 .byte 0x2
926 02e3 23 .byte 0x23
927 02e4 14 .uleb128 0x14
928 02e5 0B .uleb128 0xb
929 02e6 72313000 .ascii "r10\000"
930 02ea 07 .byte 0x7
931 02eb 1701 .2byte 0x117
932 02ed 6D020000 .4byte 0x26d
933 02f1 02 .byte 0x2
934 02f2 23 .byte 0x23
935 02f3 18 .uleb128 0x18
936 02f4 0B .uleb128 0xb
937 02f5 72313100 .ascii "r11\000"
938 02f9 07 .byte 0x7
939 02fa 1801 .2byte 0x118
940 02fc 6D020000 .4byte 0x26d
941 0300 02 .byte 0x2
942 0301 23 .byte 0x23
943 0302 1C .uleb128 0x1c
944 0303 0B .uleb128 0xb
945 0304 6C7200 .ascii "lr\000"
946 0307 07 .byte 0x7
947 0308 1901 .2byte 0x119
948 030a 6D020000 .4byte 0x26d
949 030e 02 .byte 0x2
950 030f 23 .byte 0x23
951 0310 20 .uleb128 0x20
952 0311 00 .byte 0
953 0312 0C .uleb128 0xc
954 0313 A1010000 .4byte .LASF45
955 0317 04 .byte 0x4
956 0318 07 .byte 0x7
957 0319 2301 .2byte 0x123
958 031b 2F030000 .4byte 0x32f
959 031f 0B .uleb128 0xb
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 18
960 0320 72313300 .ascii "r13\000"
961 0324 07 .byte 0x7
962 0325 2401 .2byte 0x124
963 0327 2F030000 .4byte 0x32f
964 032b 02 .byte 0x2
965 032c 23 .byte 0x23
966 032d 00 .uleb128 0
967 032e 00 .byte 0
968 032f 09 .uleb128 0x9
969 0330 04 .byte 0x4
970 0331 85020000 .4byte 0x285
971 0335 04 .uleb128 0x4
972 0336 04 .byte 0x4
973 0337 07 .byte 0x7
974 0338 F8010000 .4byte .LASF46
975 033c 0D .uleb128 0xd
976 033d E8000000 .4byte 0xe8
977 0341 05 .uleb128 0x5
978 0342 E7010000 .4byte .LASF47
979 0346 10 .byte 0x10
980 0347 08 .byte 0x8
981 0348 2C .byte 0x2c
982 0349 78030000 .4byte 0x378
983 034d 06 .uleb128 0x6
984 034e 46010000 .4byte .LASF48
985 0352 08 .byte 0x8
986 0353 2D .byte 0x2d
987 0354 40020000 .4byte 0x240
988 0358 02 .byte 0x2
989 0359 23 .byte 0x23
990 035a 00 .uleb128 0
991 035b 06 .uleb128 0x6
992 035c 65030000 .4byte .LASF49
993 0360 08 .byte 0x8
994 0361 2F .byte 0x2f
995 0362 3A020000 .4byte 0x23a
996 0366 02 .byte 0x2
997 0367 23 .byte 0x23
998 0368 08 .uleb128 0x8
999 0369 06 .uleb128 0x6
1000 036a F8020000 .4byte .LASF50
1001 036e 08 .byte 0x8
1002 036f 31 .byte 0x31
1003 0370 78030000 .4byte 0x378
1004 0374 02 .byte 0x2
1005 0375 23 .byte 0x23
1006 0376 0C .uleb128 0xc
1007 0377 00 .byte 0
1008 0378 09 .uleb128 0x9
1009 0379 04 .byte 0x4
1010 037a 41030000 .4byte 0x341
1011 037e 03 .uleb128 0x3
1012 037f E7010000 .4byte .LASF47
1013 0383 08 .byte 0x8
1014 0384 33 .byte 0x33
1015 0385 41030000 .4byte 0x341
1016 0389 03 .uleb128 0x3
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 19
1017 038a 92000000 .4byte .LASF51
1018 038e 09 .byte 0x9
1019 038f 2C .byte 0x2c
1020 0390 94030000 .4byte 0x394
1021 0394 09 .uleb128 0x9
1022 0395 04 .byte 0x4
1023 0396 9A030000 .4byte 0x39a
1024 039a 0E .uleb128 0xe
1025 039b 01 .byte 0x1
1026 039c 78020000 .4byte 0x278
1027 03a0 AA030000 .4byte 0x3aa
1028 03a4 0F .uleb128 0xf
1029 03a5 30000000 .4byte 0x30
1030 03a9 00 .byte 0
1031 03aa 03 .uleb128 0x3
1032 03ab 2C020000 .4byte .LASF52
1033 03af 0A .byte 0xa
1034 03b0 34 .byte 0x34
1035 03b1 B5030000 .4byte 0x3b5
1036 03b5 05 .uleb128 0x5
1037 03b6 7D030000 .4byte .LASF53
1038 03ba 20 .byte 0x20
1039 03bb 0A .byte 0xa
1040 03bc 47 .byte 0x47
1041 03bd EC030000 .4byte 0x3ec
1042 03c1 06 .uleb128 0x6
1043 03c2 64020000 .4byte .LASF54
1044 03c6 0A .byte 0xa
1045 03c7 48 .byte 0x48
1046 03c8 89030000 .4byte 0x389
1047 03cc 02 .byte 0x2
1048 03cd 23 .byte 0x23
1049 03ce 00 .uleb128 0
1050 03cf 06 .uleb128 0x6
1051 03d0 DD000000 .4byte .LASF55
1052 03d4 0A .byte 0xa
1053 03d5 4A .byte 0x4a
1054 03d6 0B040000 .4byte 0x40b
1055 03da 02 .byte 0x2
1056 03db 23 .byte 0x23
1057 03dc 08 .uleb128 0x8
1058 03dd 06 .uleb128 0x6
1059 03de 38010000 .4byte .LASF56
1060 03e2 0A .byte 0xa
1061 03e3 4C .byte 0x4c
1062 03e4 7E030000 .4byte 0x37e
1063 03e8 02 .byte 0x2
1064 03e9 23 .byte 0x23
1065 03ea 10 .uleb128 0x10
1066 03eb 00 .byte 0
1067 03ec 10 .uleb128 0x10
1068 03ed 04 .byte 0x4
1069 03ee 0A .byte 0xa
1070 03ef 3C .byte 0x3c
1071 03f0 0B040000 .4byte 0x40b
1072 03f4 11 .uleb128 0x11
1073 03f5 01010000 .4byte .LASF57
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 20
1074 03f9 0A .byte 0xa
1075 03fa 3D .byte 0x3d
1076 03fb 2C040000 .4byte 0x42c
1077 03ff 11 .uleb128 0x11
1078 0400 D4020000 .4byte .LASF58
1079 0404 0A .byte 0xa
1080 0405 3E .byte 0x3e
1081 0406 32040000 .4byte 0x432
1082 040a 00 .byte 0
1083 040b 12 .uleb128 0x12
1084 040c 8B020000 .4byte .LASF80
1085 0410 08 .byte 0x8
1086 0411 0A .byte 0xa
1087 0412 39 .byte 0x39
1088 0413 2C040000 .4byte 0x42c
1089 0417 11 .uleb128 0x11
1090 0418 7C010000 .4byte .LASF59
1091 041c 0A .byte 0xa
1092 041d 3A .byte 0x3a
1093 041e 7A020000 .4byte 0x27a
1094 0422 13 .uleb128 0x13
1095 0423 6800 .ascii "h\000"
1096 0425 0A .byte 0xa
1097 0426 41 .byte 0x41
1098 0427 38040000 .4byte 0x438
1099 042b 00 .byte 0
1100 042c 09 .uleb128 0x9
1101 042d 04 .byte 0x4
1102 042e 0B040000 .4byte 0x40b
1103 0432 09 .uleb128 0x9
1104 0433 04 .byte 0x4
1105 0434 AA030000 .4byte 0x3aa
1106 0438 08 .uleb128 0x8
1107 0439 08 .byte 0x8
1108 043a 0A .byte 0xa
1109 043b 3B .byte 0x3b
1110 043c 5B040000 .4byte 0x45b
1111 0440 07 .uleb128 0x7
1112 0441 7500 .ascii "u\000"
1113 0443 0A .byte 0xa
1114 0444 3F .byte 0x3f
1115 0445 EC030000 .4byte 0x3ec
1116 0449 02 .byte 0x2
1117 044a 23 .byte 0x23
1118 044b 00 .uleb128 0
1119 044c 06 .uleb128 0x6
1120 044d A9010000 .4byte .LASF60
1121 0451 0A .byte 0xa
1122 0452 40 .byte 0x40
1123 0453 30000000 .4byte 0x30
1124 0457 02 .byte 0x2
1125 0458 23 .byte 0x23
1126 0459 04 .uleb128 0x4
1127 045a 00 .byte 0
1128 045b 10 .uleb128 0x10
1129 045c 04 .byte 0x4
1130 045d 06 .byte 0x6
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 21
1131 045e 90 .byte 0x90
1132 045f 90040000 .4byte 0x490
1133 0463 11 .uleb128 0x11
1134 0464 82000000 .4byte .LASF61
1135 0468 06 .byte 0x6
1136 0469 97 .byte 0x97
1137 046a D2000000 .4byte 0xd2
1138 046e 11 .uleb128 0x11
1139 046f D4000000 .4byte .LASF62
1140 0473 06 .byte 0x6
1141 0474 9E .byte 0x9e
1142 0475 D2000000 .4byte 0xd2
1143 0479 11 .uleb128 0x11
1144 047a 46030000 .4byte .LASF63
1145 047e 06 .byte 0x6
1146 047f A5 .byte 0xa5
1147 0480 78020000 .4byte 0x278
1148 0484 11 .uleb128 0x11
1149 0485 97020000 .4byte .LASF64
1150 0489 06 .byte 0x6
1151 048a AC .byte 0xac
1152 048b DD000000 .4byte 0xdd
1153 048f 00 .byte 0
1154 0490 09 .uleb128 0x9
1155 0491 04 .byte 0x4
1156 0492 96040000 .4byte 0x496
1157 0496 14 .uleb128 0x14
1158 0497 9B040000 .4byte 0x49b
1159 049b 04 .uleb128 0x4
1160 049c 01 .byte 0x1
1161 049d 08 .byte 0x8
1162 049e E6020000 .4byte .LASF65
1163 04a2 09 .uleb128 0x9
1164 04a3 04 .byte 0x4
1165 04a4 7E030000 .4byte 0x37e
1166 04a8 15 .uleb128 0x15
1167 04a9 01 .byte 0x1
1168 04aa 5A030000 .4byte .LASF66
1169 04ae 01 .byte 0x1
1170 04af 4B .byte 0x4b
1171 04b0 01 .byte 0x1
1172 04b1 00000000 .4byte .LFB7
1173 04b5 20000000 .4byte .LFE7
1174 04b9 02 .byte 0x2
1175 04ba 7D .byte 0x7d
1176 04bb 00 .sleb128 0
1177 04bc 01 .byte 0x1
1178 04bd D6040000 .4byte 0x4d6
1179 04c1 16 .uleb128 0x16
1180 04c2 20000000 .4byte .LVL0
1181 04c6 01 .byte 0x1
1182 04c7 77070000 .4byte 0x777
1183 04cb 17 .uleb128 0x17
1184 04cc 01 .byte 0x1
1185 04cd 50 .byte 0x50
1186 04ce 05 .byte 0x5
1187 04cf 03 .byte 0x3
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 22
1188 04d0 10000000 .4byte .LANCHOR0+16
1189 04d4 00 .byte 0
1190 04d5 00 .byte 0
1191 04d6 15 .uleb128 0x15
1192 04d7 01 .byte 0x1
1193 04d8 F6000000 .4byte .LASF67
1194 04dc 01 .byte 0x1
1195 04dd 63 .byte 0x63
1196 04de 01 .byte 0x1
1197 04df 00000000 .4byte .LFB8
1198 04e3 14000000 .4byte .LFE8
1199 04e7 02 .byte 0x2
1200 04e8 7D .byte 0x7d
1201 04e9 00 .sleb128 0
1202 04ea 01 .byte 0x1
1203 04eb 3F050000 .4byte 0x53f
1204 04ef 18 .uleb128 0x18
1205 04f0 E4000000 .4byte .LASF68
1206 04f4 01 .byte 0x1
1207 04f5 63 .byte 0x63
1208 04f6 32040000 .4byte 0x432
1209 04fa 00000000 .4byte .LLST0
1210 04fe 19 .uleb128 0x19
1211 04ff 62756600 .ascii "buf\000"
1212 0503 01 .byte 0x1
1213 0504 63 .byte 0x63
1214 0505 78020000 .4byte 0x278
1215 0509 2E000000 .4byte .LLST1
1216 050d 18 .uleb128 0x18
1217 050e A9010000 .4byte .LASF60
1218 0512 01 .byte 0x1
1219 0513 63 .byte 0x63
1220 0514 30000000 .4byte 0x30
1221 0518 4F000000 .4byte .LLST2
1222 051c 1A .uleb128 0x1a
1223 051d 687000 .ascii "hp\000"
1224 0520 01 .byte 0x1
1225 0521 64 .byte 0x64
1226 0522 2C040000 .4byte 0x42c
1227 0526 7D000000 .4byte .LLST3
1228 052a 16 .uleb128 0x16
1229 052b 14000000 .4byte .LVL5
1230 052f 01 .byte 0x1
1231 0530 77070000 .4byte 0x777
1232 0534 17 .uleb128 0x17
1233 0535 01 .byte 0x1
1234 0536 50 .byte 0x50
1235 0537 05 .byte 0x5
1236 0538 F3 .byte 0xf3
1237 0539 01 .uleb128 0x1
1238 053a 50 .byte 0x50
1239 053b 23 .byte 0x23
1240 053c 10 .uleb128 0x10
1241 053d 00 .byte 0
1242 053e 00 .byte 0
1243 053f 1B .uleb128 0x1b
1244 0540 01 .byte 0x1
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 23
1245 0541 B4020000 .4byte .LASF70
1246 0545 01 .byte 0x1
1247 0546 84 .byte 0x84
1248 0547 01 .byte 0x1
1249 0548 78020000 .4byte 0x278
1250 054c 00000000 .4byte .LFB9
1251 0550 84000000 .4byte .LFE9
1252 0554 9E000000 .4byte .LLST4
1253 0558 01 .byte 0x1
1254 0559 D8050000 .4byte 0x5d8
1255 055d 18 .uleb128 0x18
1256 055e E4000000 .4byte .LASF68
1257 0562 01 .byte 0x1
1258 0563 84 .byte 0x84
1259 0564 32040000 .4byte 0x432
1260 0568 BE000000 .4byte .LLST5
1261 056c 18 .uleb128 0x18
1262 056d A9010000 .4byte .LASF60
1263 0571 01 .byte 0x1
1264 0572 84 .byte 0x84
1265 0573 30000000 .4byte 0x30
1266 0577 DC000000 .4byte .LLST6
1267 057b 1A .uleb128 0x1a
1268 057c 717000 .ascii "qp\000"
1269 057f 01 .byte 0x1
1270 0580 85 .byte 0x85
1271 0581 2C040000 .4byte 0x42c
1272 0585 07010000 .4byte .LLST7
1273 0589 1A .uleb128 0x1a
1274 058a 687000 .ascii "hp\000"
1275 058d 01 .byte 0x1
1276 058e 85 .byte 0x85
1277 058f 2C040000 .4byte 0x42c
1278 0593 30010000 .4byte .LLST8
1279 0597 1A .uleb128 0x1a
1280 0598 667000 .ascii "fp\000"
1281 059b 01 .byte 0x1
1282 059c 85 .byte 0x85
1283 059d 2C040000 .4byte 0x42c
1284 05a1 7C010000 .4byte .LLST9
1285 05a5 1C .uleb128 0x1c
1286 05a6 1C000000 .4byte .LVL11
1287 05aa 8B070000 .4byte 0x78b
1288 05ae B9050000 .4byte 0x5b9
1289 05b2 17 .uleb128 0x17
1290 05b3 01 .byte 0x1
1291 05b4 50 .byte 0x50
1292 05b5 02 .byte 0x2
1293 05b6 76 .byte 0x76
1294 05b7 10 .sleb128 16
1295 05b8 00 .byte 0
1296 05b9 1D .uleb128 0x1d
1297 05ba 54000000 .4byte .LVL18
1298 05be 9F070000 .4byte 0x79f
1299 05c2 1D .uleb128 0x1d
1300 05c3 62000000 .4byte .LVL20
1301 05c7 9F070000 .4byte 0x79f
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 24
1302 05cb 1E .uleb128 0x1e
1303 05cc 6C000000 .4byte .LVL21
1304 05d0 17 .uleb128 0x17
1305 05d1 01 .byte 0x1
1306 05d2 50 .byte 0x50
1307 05d3 02 .byte 0x2
1308 05d4 75 .byte 0x75
1309 05d5 08 .sleb128 8
1310 05d6 00 .byte 0
1311 05d7 00 .byte 0
1312 05d8 1F .uleb128 0x1f
1313 05d9 01 .byte 0x1
1314 05da 4E010000 .4byte .LASF69
1315 05de 01 .byte 0x1
1316 05df C2 .byte 0xc2
1317 05e0 01 .byte 0x1
1318 05e1 00000000 .4byte .LFB10
1319 05e5 86000000 .4byte .LFE10
1320 05e9 8F010000 .4byte .LLST10
1321 05ed 01 .byte 0x1
1322 05ee 47060000 .4byte 0x647
1323 05f2 19 .uleb128 0x19
1324 05f3 7000 .ascii "p\000"
1325 05f5 01 .byte 0x1
1326 05f6 C2 .byte 0xc2
1327 05f7 78020000 .4byte 0x278
1328 05fb AF010000 .4byte .LLST11
1329 05ff 1A .uleb128 0x1a
1330 0600 717000 .ascii "qp\000"
1331 0603 01 .byte 0x1
1332 0604 C3 .byte 0xc3
1333 0605 2C040000 .4byte 0x42c
1334 0609 CD010000 .4byte .LLST12
1335 060d 20 .uleb128 0x20
1336 060e 687000 .ascii "hp\000"
1337 0611 01 .byte 0x1
1338 0612 C3 .byte 0xc3
1339 0613 2C040000 .4byte 0x42c
1340 0617 01 .byte 0x1
1341 0618 54 .byte 0x54
1342 0619 21 .uleb128 0x21
1343 061a E4000000 .4byte .LASF68
1344 061e 01 .byte 0x1
1345 061f C4 .byte 0xc4
1346 0620 32040000 .4byte 0x432
1347 0624 0C020000 .4byte .LLST13
1348 0628 1C .uleb128 0x1c
1349 0629 16000000 .4byte .LVL31
1350 062d 8B070000 .4byte 0x78b
1351 0631 3C060000 .4byte 0x63c
1352 0635 17 .uleb128 0x17
1353 0636 01 .byte 0x1
1354 0637 50 .byte 0x50
1355 0638 02 .byte 0x2
1356 0639 75 .byte 0x75
1357 063a 08 .sleb128 8
1358 063b 00 .byte 0
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 25
1359 063c 22 .uleb128 0x22
1360 063d 58000000 .4byte .LVL36
1361 0641 01 .byte 0x1
1362 0642 9F070000 .4byte 0x79f
1363 0646 00 .byte 0
1364 0647 1B .uleb128 0x1b
1365 0648 01 .byte 0x1
1366 0649 EB020000 .4byte .LASF71
1367 064d 01 .byte 0x1
1368 064e FA .byte 0xfa
1369 064f 01 .byte 0x1
1370 0650 30000000 .4byte 0x30
1371 0654 00000000 .4byte .LFB11
1372 0658 40000000 .4byte .LFE11
1373 065c 38020000 .4byte .LLST14
1374 0660 01 .byte 0x1
1375 0661 CA060000 .4byte 0x6ca
1376 0665 18 .uleb128 0x18
1377 0666 E4000000 .4byte .LASF68
1378 066a 01 .byte 0x1
1379 066b FA .byte 0xfa
1380 066c 32040000 .4byte 0x432
1381 0670 58020000 .4byte .LLST15
1382 0674 18 .uleb128 0x18
1383 0675 4D030000 .4byte .LASF72
1384 0679 01 .byte 0x1
1385 067a FA .byte 0xfa
1386 067b CA060000 .4byte 0x6ca
1387 067f BB020000 .4byte .LLST16
1388 0683 1A .uleb128 0x1a
1389 0684 717000 .ascii "qp\000"
1390 0687 01 .byte 0x1
1391 0688 FB .byte 0xfb
1392 0689 2C040000 .4byte 0x42c
1393 068d D9020000 .4byte .LLST17
1394 0691 1A .uleb128 0x1a
1395 0692 6E00 .ascii "n\000"
1396 0694 01 .byte 0x1
1397 0695 FC .byte 0xfc
1398 0696 30000000 .4byte 0x30
1399 069a 1A030000 .4byte .LLST18
1400 069e 1A .uleb128 0x1a
1401 069f 737A00 .ascii "sz\000"
1402 06a2 01 .byte 0x1
1403 06a3 FC .byte 0xfc
1404 06a4 30000000 .4byte 0x30
1405 06a8 45030000 .4byte .LLST19
1406 06ac 1C .uleb128 0x1c
1407 06ad 14000000 .4byte .LVL39
1408 06b1 8B070000 .4byte 0x78b
1409 06b5 C0060000 .4byte 0x6c0
1410 06b9 17 .uleb128 0x17
1411 06ba 01 .byte 0x1
1412 06bb 50 .byte 0x50
1413 06bc 02 .byte 0x2
1414 06bd 74 .byte 0x74
1415 06be 10 .sleb128 16
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 26
1416 06bf 00 .byte 0
1417 06c0 1D .uleb128 0x1d
1418 06c1 30000000 .4byte .LVL44
1419 06c5 9F070000 .4byte 0x79f
1420 06c9 00 .byte 0
1421 06ca 09 .uleb128 0x9
1422 06cb 04 .byte 0x4
1423 06cc 30000000 .4byte 0x30
1424 06d0 23 .uleb128 0x23
1425 06d1 01 .byte 0x1
1426 06d2 0D010000 .4byte .LASF73
1427 06d6 01 .byte 0x1
1428 06d7 1A01 .2byte 0x11a
1429 06d9 01 .byte 0x1
1430 06da 00000000 .4byte .LFB12
1431 06de 50000000 .4byte .LFE12
1432 06e2 70030000 .4byte .LLST20
1433 06e6 01 .byte 0x1
1434 06e7 66070000 .4byte 0x766
1435 06eb 24 .uleb128 0x24
1436 06ec E4000000 .4byte .LASF68
1437 06f0 01 .byte 0x1
1438 06f1 1A01 .2byte 0x11a
1439 06f3 32040000 .4byte 0x432
1440 06f7 90030000 .4byte .LLST21
1441 06fb 25 .uleb128 0x25
1442 06fc 6D696E00 .ascii "min\000"
1443 0700 01 .byte 0x1
1444 0701 1A01 .2byte 0x11a
1445 0703 CA060000 .4byte 0x6ca
1446 0707 AE030000 .4byte .LLST22
1447 070b 25 .uleb128 0x25
1448 070c 6D617800 .ascii "max\000"
1449 0710 01 .byte 0x1
1450 0711 1A01 .2byte 0x11a
1451 0713 CA060000 .4byte 0x6ca
1452 0717 CC030000 .4byte .LLST23
1453 071b 26 .uleb128 0x26
1454 071c 717000 .ascii "qp\000"
1455 071f 01 .byte 0x1
1456 0720 1B01 .2byte 0x11b
1457 0722 2C040000 .4byte 0x42c
1458 0726 EA030000 .4byte .LLST24
1459 072a 26 .uleb128 0x26
1460 072b 6E00 .ascii "n\000"
1461 072d 01 .byte 0x1
1462 072e 1C01 .2byte 0x11c
1463 0730 30000000 .4byte 0x30
1464 0734 FD030000 .4byte .LLST25
1465 0738 26 .uleb128 0x26
1466 0739 737A00 .ascii "sz\000"
1467 073c 01 .byte 0x1
1468 073d 1C01 .2byte 0x11c
1469 073f 30000000 .4byte 0x30
1470 0743 11040000 .4byte .LLST26
1471 0747 1C .uleb128 0x1c
1472 0748 1C000000 .4byte .LVL49
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 27
1473 074c 8B070000 .4byte 0x78b
1474 0750 5B070000 .4byte 0x75b
1475 0754 17 .uleb128 0x17
1476 0755 01 .byte 0x1
1477 0756 50 .byte 0x50
1478 0757 02 .byte 0x2
1479 0758 76 .byte 0x76
1480 0759 10 .sleb128 16
1481 075a 00 .byte 0
1482 075b 22 .uleb128 0x22
1483 075c 4A000000 .4byte .LVL54
1484 0760 01 .byte 0x1
1485 0761 9F070000 .4byte 0x79f
1486 0765 00 .byte 0
1487 0766 27 .uleb128 0x27
1488 0767 D9020000 .4byte .LASF74
1489 076b 01 .byte 0x1
1490 076c 44 .byte 0x44
1491 076d AA030000 .4byte 0x3aa
1492 0771 05 .byte 0x5
1493 0772 03 .byte 0x3
1494 0773 00000000 .4byte default_heap
1495 0777 28 .uleb128 0x28
1496 0778 01 .byte 0x1
1497 0779 2D030000 .4byte .LASF75
1498 077d 08 .byte 0x8
1499 077e 38 .byte 0x38
1500 077f 01 .byte 0x1
1501 0780 01 .byte 0x1
1502 0781 8B070000 .4byte 0x78b
1503 0785 0F .uleb128 0xf
1504 0786 A2040000 .4byte 0x4a2
1505 078a 00 .byte 0
1506 078b 28 .uleb128 0x28
1507 078c 01 .byte 0x1
1508 078d 01020000 .4byte .LASF76
1509 0791 08 .byte 0x8
1510 0792 39 .byte 0x39
1511 0793 01 .byte 0x1
1512 0794 01 .byte 0x1
1513 0795 9F070000 .4byte 0x79f
1514 0799 0F .uleb128 0xf
1515 079a A2040000 .4byte 0x4a2
1516 079e 00 .byte 0
1517 079f 29 .uleb128 0x29
1518 07a0 01 .byte 0x1
1519 07a1 EA000000 .4byte .LASF81
1520 07a5 08 .byte 0x8
1521 07a6 3D .byte 0x3d
1522 07a7 01 .byte 0x1
1523 07a8 A2040000 .4byte 0x4a2
1524 07ac 01 .byte 0x1
1525 07ad 00 .byte 0
1526 .section .debug_abbrev,"",%progbits
1527 .Ldebug_abbrev0:
1528 0000 01 .uleb128 0x1
1529 0001 11 .uleb128 0x11
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 28
1530 0002 01 .byte 0x1
1531 0003 25 .uleb128 0x25
1532 0004 0E .uleb128 0xe
1533 0005 13 .uleb128 0x13
1534 0006 0B .uleb128 0xb
1535 0007 03 .uleb128 0x3
1536 0008 0E .uleb128 0xe
1537 0009 1B .uleb128 0x1b
1538 000a 0E .uleb128 0xe
1539 000b 55 .uleb128 0x55
1540 000c 06 .uleb128 0x6
1541 000d 11 .uleb128 0x11
1542 000e 01 .uleb128 0x1
1543 000f 52 .uleb128 0x52
1544 0010 01 .uleb128 0x1
1545 0011 10 .uleb128 0x10
1546 0012 06 .uleb128 0x6
1547 0013 00 .byte 0
1548 0014 00 .byte 0
1549 0015 02 .uleb128 0x2
1550 0016 24 .uleb128 0x24
1551 0017 00 .byte 0
1552 0018 0B .uleb128 0xb
1553 0019 0B .uleb128 0xb
1554 001a 3E .uleb128 0x3e
1555 001b 0B .uleb128 0xb
1556 001c 03 .uleb128 0x3
1557 001d 08 .uleb128 0x8
1558 001e 00 .byte 0
1559 001f 00 .byte 0
1560 0020 03 .uleb128 0x3
1561 0021 16 .uleb128 0x16
1562 0022 00 .byte 0
1563 0023 03 .uleb128 0x3
1564 0024 0E .uleb128 0xe
1565 0025 3A .uleb128 0x3a
1566 0026 0B .uleb128 0xb
1567 0027 3B .uleb128 0x3b
1568 0028 0B .uleb128 0xb
1569 0029 49 .uleb128 0x49
1570 002a 13 .uleb128 0x13
1571 002b 00 .byte 0
1572 002c 00 .byte 0
1573 002d 04 .uleb128 0x4
1574 002e 24 .uleb128 0x24
1575 002f 00 .byte 0
1576 0030 0B .uleb128 0xb
1577 0031 0B .uleb128 0xb
1578 0032 3E .uleb128 0x3e
1579 0033 0B .uleb128 0xb
1580 0034 03 .uleb128 0x3
1581 0035 0E .uleb128 0xe
1582 0036 00 .byte 0
1583 0037 00 .byte 0
1584 0038 05 .uleb128 0x5
1585 0039 13 .uleb128 0x13
1586 003a 01 .byte 0x1
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 29
1587 003b 03 .uleb128 0x3
1588 003c 0E .uleb128 0xe
1589 003d 0B .uleb128 0xb
1590 003e 0B .uleb128 0xb
1591 003f 3A .uleb128 0x3a
1592 0040 0B .uleb128 0xb
1593 0041 3B .uleb128 0x3b
1594 0042 0B .uleb128 0xb
1595 0043 01 .uleb128 0x1
1596 0044 13 .uleb128 0x13
1597 0045 00 .byte 0
1598 0046 00 .byte 0
1599 0047 06 .uleb128 0x6
1600 0048 0D .uleb128 0xd
1601 0049 00 .byte 0
1602 004a 03 .uleb128 0x3
1603 004b 0E .uleb128 0xe
1604 004c 3A .uleb128 0x3a
1605 004d 0B .uleb128 0xb
1606 004e 3B .uleb128 0x3b
1607 004f 0B .uleb128 0xb
1608 0050 49 .uleb128 0x49
1609 0051 13 .uleb128 0x13
1610 0052 38 .uleb128 0x38
1611 0053 0A .uleb128 0xa
1612 0054 00 .byte 0
1613 0055 00 .byte 0
1614 0056 07 .uleb128 0x7
1615 0057 0D .uleb128 0xd
1616 0058 00 .byte 0
1617 0059 03 .uleb128 0x3
1618 005a 08 .uleb128 0x8
1619 005b 3A .uleb128 0x3a
1620 005c 0B .uleb128 0xb
1621 005d 3B .uleb128 0x3b
1622 005e 0B .uleb128 0xb
1623 005f 49 .uleb128 0x49
1624 0060 13 .uleb128 0x13
1625 0061 38 .uleb128 0x38
1626 0062 0A .uleb128 0xa
1627 0063 00 .byte 0
1628 0064 00 .byte 0
1629 0065 08 .uleb128 0x8
1630 0066 13 .uleb128 0x13
1631 0067 01 .byte 0x1
1632 0068 0B .uleb128 0xb
1633 0069 0B .uleb128 0xb
1634 006a 3A .uleb128 0x3a
1635 006b 0B .uleb128 0xb
1636 006c 3B .uleb128 0x3b
1637 006d 0B .uleb128 0xb
1638 006e 01 .uleb128 0x1
1639 006f 13 .uleb128 0x13
1640 0070 00 .byte 0
1641 0071 00 .byte 0
1642 0072 09 .uleb128 0x9
1643 0073 0F .uleb128 0xf
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 30
1644 0074 00 .byte 0
1645 0075 0B .uleb128 0xb
1646 0076 0B .uleb128 0xb
1647 0077 49 .uleb128 0x49
1648 0078 13 .uleb128 0x13
1649 0079 00 .byte 0
1650 007a 00 .byte 0
1651 007b 0A .uleb128 0xa
1652 007c 0F .uleb128 0xf
1653 007d 00 .byte 0
1654 007e 0B .uleb128 0xb
1655 007f 0B .uleb128 0xb
1656 0080 00 .byte 0
1657 0081 00 .byte 0
1658 0082 0B .uleb128 0xb
1659 0083 0D .uleb128 0xd
1660 0084 00 .byte 0
1661 0085 03 .uleb128 0x3
1662 0086 08 .uleb128 0x8
1663 0087 3A .uleb128 0x3a
1664 0088 0B .uleb128 0xb
1665 0089 3B .uleb128 0x3b
1666 008a 05 .uleb128 0x5
1667 008b 49 .uleb128 0x49
1668 008c 13 .uleb128 0x13
1669 008d 38 .uleb128 0x38
1670 008e 0A .uleb128 0xa
1671 008f 00 .byte 0
1672 0090 00 .byte 0
1673 0091 0C .uleb128 0xc
1674 0092 13 .uleb128 0x13
1675 0093 01 .byte 0x1
1676 0094 03 .uleb128 0x3
1677 0095 0E .uleb128 0xe
1678 0096 0B .uleb128 0xb
1679 0097 0B .uleb128 0xb
1680 0098 3A .uleb128 0x3a
1681 0099 0B .uleb128 0xb
1682 009a 3B .uleb128 0x3b
1683 009b 05 .uleb128 0x5
1684 009c 01 .uleb128 0x1
1685 009d 13 .uleb128 0x13
1686 009e 00 .byte 0
1687 009f 00 .byte 0
1688 00a0 0D .uleb128 0xd
1689 00a1 35 .uleb128 0x35
1690 00a2 00 .byte 0
1691 00a3 49 .uleb128 0x49
1692 00a4 13 .uleb128 0x13
1693 00a5 00 .byte 0
1694 00a6 00 .byte 0
1695 00a7 0E .uleb128 0xe
1696 00a8 15 .uleb128 0x15
1697 00a9 01 .byte 0x1
1698 00aa 27 .uleb128 0x27
1699 00ab 0C .uleb128 0xc
1700 00ac 49 .uleb128 0x49
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 31
1701 00ad 13 .uleb128 0x13
1702 00ae 01 .uleb128 0x1
1703 00af 13 .uleb128 0x13
1704 00b0 00 .byte 0
1705 00b1 00 .byte 0
1706 00b2 0F .uleb128 0xf
1707 00b3 05 .uleb128 0x5
1708 00b4 00 .byte 0
1709 00b5 49 .uleb128 0x49
1710 00b6 13 .uleb128 0x13
1711 00b7 00 .byte 0
1712 00b8 00 .byte 0
1713 00b9 10 .uleb128 0x10
1714 00ba 17 .uleb128 0x17
1715 00bb 01 .byte 0x1
1716 00bc 0B .uleb128 0xb
1717 00bd 0B .uleb128 0xb
1718 00be 3A .uleb128 0x3a
1719 00bf 0B .uleb128 0xb
1720 00c0 3B .uleb128 0x3b
1721 00c1 0B .uleb128 0xb
1722 00c2 01 .uleb128 0x1
1723 00c3 13 .uleb128 0x13
1724 00c4 00 .byte 0
1725 00c5 00 .byte 0
1726 00c6 11 .uleb128 0x11
1727 00c7 0D .uleb128 0xd
1728 00c8 00 .byte 0
1729 00c9 03 .uleb128 0x3
1730 00ca 0E .uleb128 0xe
1731 00cb 3A .uleb128 0x3a
1732 00cc 0B .uleb128 0xb
1733 00cd 3B .uleb128 0x3b
1734 00ce 0B .uleb128 0xb
1735 00cf 49 .uleb128 0x49
1736 00d0 13 .uleb128 0x13
1737 00d1 00 .byte 0
1738 00d2 00 .byte 0
1739 00d3 12 .uleb128 0x12
1740 00d4 17 .uleb128 0x17
1741 00d5 01 .byte 0x1
1742 00d6 03 .uleb128 0x3
1743 00d7 0E .uleb128 0xe
1744 00d8 0B .uleb128 0xb
1745 00d9 0B .uleb128 0xb
1746 00da 3A .uleb128 0x3a
1747 00db 0B .uleb128 0xb
1748 00dc 3B .uleb128 0x3b
1749 00dd 0B .uleb128 0xb
1750 00de 01 .uleb128 0x1
1751 00df 13 .uleb128 0x13
1752 00e0 00 .byte 0
1753 00e1 00 .byte 0
1754 00e2 13 .uleb128 0x13
1755 00e3 0D .uleb128 0xd
1756 00e4 00 .byte 0
1757 00e5 03 .uleb128 0x3
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 32
1758 00e6 08 .uleb128 0x8
1759 00e7 3A .uleb128 0x3a
1760 00e8 0B .uleb128 0xb
1761 00e9 3B .uleb128 0x3b
1762 00ea 0B .uleb128 0xb
1763 00eb 49 .uleb128 0x49
1764 00ec 13 .uleb128 0x13
1765 00ed 00 .byte 0
1766 00ee 00 .byte 0
1767 00ef 14 .uleb128 0x14
1768 00f0 26 .uleb128 0x26
1769 00f1 00 .byte 0
1770 00f2 49 .uleb128 0x49
1771 00f3 13 .uleb128 0x13
1772 00f4 00 .byte 0
1773 00f5 00 .byte 0
1774 00f6 15 .uleb128 0x15
1775 00f7 2E .uleb128 0x2e
1776 00f8 01 .byte 0x1
1777 00f9 3F .uleb128 0x3f
1778 00fa 0C .uleb128 0xc
1779 00fb 03 .uleb128 0x3
1780 00fc 0E .uleb128 0xe
1781 00fd 3A .uleb128 0x3a
1782 00fe 0B .uleb128 0xb
1783 00ff 3B .uleb128 0x3b
1784 0100 0B .uleb128 0xb
1785 0101 27 .uleb128 0x27
1786 0102 0C .uleb128 0xc
1787 0103 11 .uleb128 0x11
1788 0104 01 .uleb128 0x1
1789 0105 12 .uleb128 0x12
1790 0106 01 .uleb128 0x1
1791 0107 40 .uleb128 0x40
1792 0108 0A .uleb128 0xa
1793 0109 9742 .uleb128 0x2117
1794 010b 0C .uleb128 0xc
1795 010c 01 .uleb128 0x1
1796 010d 13 .uleb128 0x13
1797 010e 00 .byte 0
1798 010f 00 .byte 0
1799 0110 16 .uleb128 0x16
1800 0111 898201 .uleb128 0x4109
1801 0114 01 .byte 0x1
1802 0115 11 .uleb128 0x11
1803 0116 01 .uleb128 0x1
1804 0117 9542 .uleb128 0x2115
1805 0119 0C .uleb128 0xc
1806 011a 31 .uleb128 0x31
1807 011b 13 .uleb128 0x13
1808 011c 00 .byte 0
1809 011d 00 .byte 0
1810 011e 17 .uleb128 0x17
1811 011f 8A8201 .uleb128 0x410a
1812 0122 00 .byte 0
1813 0123 02 .uleb128 0x2
1814 0124 0A .uleb128 0xa
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 33
1815 0125 9142 .uleb128 0x2111
1816 0127 0A .uleb128 0xa
1817 0128 00 .byte 0
1818 0129 00 .byte 0
1819 012a 18 .uleb128 0x18
1820 012b 05 .uleb128 0x5
1821 012c 00 .byte 0
1822 012d 03 .uleb128 0x3
1823 012e 0E .uleb128 0xe
1824 012f 3A .uleb128 0x3a
1825 0130 0B .uleb128 0xb
1826 0131 3B .uleb128 0x3b
1827 0132 0B .uleb128 0xb
1828 0133 49 .uleb128 0x49
1829 0134 13 .uleb128 0x13
1830 0135 02 .uleb128 0x2
1831 0136 06 .uleb128 0x6
1832 0137 00 .byte 0
1833 0138 00 .byte 0
1834 0139 19 .uleb128 0x19
1835 013a 05 .uleb128 0x5
1836 013b 00 .byte 0
1837 013c 03 .uleb128 0x3
1838 013d 08 .uleb128 0x8
1839 013e 3A .uleb128 0x3a
1840 013f 0B .uleb128 0xb
1841 0140 3B .uleb128 0x3b
1842 0141 0B .uleb128 0xb
1843 0142 49 .uleb128 0x49
1844 0143 13 .uleb128 0x13
1845 0144 02 .uleb128 0x2
1846 0145 06 .uleb128 0x6
1847 0146 00 .byte 0
1848 0147 00 .byte 0
1849 0148 1A .uleb128 0x1a
1850 0149 34 .uleb128 0x34
1851 014a 00 .byte 0
1852 014b 03 .uleb128 0x3
1853 014c 08 .uleb128 0x8
1854 014d 3A .uleb128 0x3a
1855 014e 0B .uleb128 0xb
1856 014f 3B .uleb128 0x3b
1857 0150 0B .uleb128 0xb
1858 0151 49 .uleb128 0x49
1859 0152 13 .uleb128 0x13
1860 0153 02 .uleb128 0x2
1861 0154 06 .uleb128 0x6
1862 0155 00 .byte 0
1863 0156 00 .byte 0
1864 0157 1B .uleb128 0x1b
1865 0158 2E .uleb128 0x2e
1866 0159 01 .byte 0x1
1867 015a 3F .uleb128 0x3f
1868 015b 0C .uleb128 0xc
1869 015c 03 .uleb128 0x3
1870 015d 0E .uleb128 0xe
1871 015e 3A .uleb128 0x3a
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 34
1872 015f 0B .uleb128 0xb
1873 0160 3B .uleb128 0x3b
1874 0161 0B .uleb128 0xb
1875 0162 27 .uleb128 0x27
1876 0163 0C .uleb128 0xc
1877 0164 49 .uleb128 0x49
1878 0165 13 .uleb128 0x13
1879 0166 11 .uleb128 0x11
1880 0167 01 .uleb128 0x1
1881 0168 12 .uleb128 0x12
1882 0169 01 .uleb128 0x1
1883 016a 40 .uleb128 0x40
1884 016b 06 .uleb128 0x6
1885 016c 9742 .uleb128 0x2117
1886 016e 0C .uleb128 0xc
1887 016f 01 .uleb128 0x1
1888 0170 13 .uleb128 0x13
1889 0171 00 .byte 0
1890 0172 00 .byte 0
1891 0173 1C .uleb128 0x1c
1892 0174 898201 .uleb128 0x4109
1893 0177 01 .byte 0x1
1894 0178 11 .uleb128 0x11
1895 0179 01 .uleb128 0x1
1896 017a 31 .uleb128 0x31
1897 017b 13 .uleb128 0x13
1898 017c 01 .uleb128 0x1
1899 017d 13 .uleb128 0x13
1900 017e 00 .byte 0
1901 017f 00 .byte 0
1902 0180 1D .uleb128 0x1d
1903 0181 898201 .uleb128 0x4109
1904 0184 00 .byte 0
1905 0185 11 .uleb128 0x11
1906 0186 01 .uleb128 0x1
1907 0187 31 .uleb128 0x31
1908 0188 13 .uleb128 0x13
1909 0189 00 .byte 0
1910 018a 00 .byte 0
1911 018b 1E .uleb128 0x1e
1912 018c 898201 .uleb128 0x4109
1913 018f 01 .byte 0x1
1914 0190 11 .uleb128 0x11
1915 0191 01 .uleb128 0x1
1916 0192 00 .byte 0
1917 0193 00 .byte 0
1918 0194 1F .uleb128 0x1f
1919 0195 2E .uleb128 0x2e
1920 0196 01 .byte 0x1
1921 0197 3F .uleb128 0x3f
1922 0198 0C .uleb128 0xc
1923 0199 03 .uleb128 0x3
1924 019a 0E .uleb128 0xe
1925 019b 3A .uleb128 0x3a
1926 019c 0B .uleb128 0xb
1927 019d 3B .uleb128 0x3b
1928 019e 0B .uleb128 0xb
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 35
1929 019f 27 .uleb128 0x27
1930 01a0 0C .uleb128 0xc
1931 01a1 11 .uleb128 0x11
1932 01a2 01 .uleb128 0x1
1933 01a3 12 .uleb128 0x12
1934 01a4 01 .uleb128 0x1
1935 01a5 40 .uleb128 0x40
1936 01a6 06 .uleb128 0x6
1937 01a7 9742 .uleb128 0x2117
1938 01a9 0C .uleb128 0xc
1939 01aa 01 .uleb128 0x1
1940 01ab 13 .uleb128 0x13
1941 01ac 00 .byte 0
1942 01ad 00 .byte 0
1943 01ae 20 .uleb128 0x20
1944 01af 34 .uleb128 0x34
1945 01b0 00 .byte 0
1946 01b1 03 .uleb128 0x3
1947 01b2 08 .uleb128 0x8
1948 01b3 3A .uleb128 0x3a
1949 01b4 0B .uleb128 0xb
1950 01b5 3B .uleb128 0x3b
1951 01b6 0B .uleb128 0xb
1952 01b7 49 .uleb128 0x49
1953 01b8 13 .uleb128 0x13
1954 01b9 02 .uleb128 0x2
1955 01ba 0A .uleb128 0xa
1956 01bb 00 .byte 0
1957 01bc 00 .byte 0
1958 01bd 21 .uleb128 0x21
1959 01be 34 .uleb128 0x34
1960 01bf 00 .byte 0
1961 01c0 03 .uleb128 0x3
1962 01c1 0E .uleb128 0xe
1963 01c2 3A .uleb128 0x3a
1964 01c3 0B .uleb128 0xb
1965 01c4 3B .uleb128 0x3b
1966 01c5 0B .uleb128 0xb
1967 01c6 49 .uleb128 0x49
1968 01c7 13 .uleb128 0x13
1969 01c8 02 .uleb128 0x2
1970 01c9 06 .uleb128 0x6
1971 01ca 00 .byte 0
1972 01cb 00 .byte 0
1973 01cc 22 .uleb128 0x22
1974 01cd 898201 .uleb128 0x4109
1975 01d0 00 .byte 0
1976 01d1 11 .uleb128 0x11
1977 01d2 01 .uleb128 0x1
1978 01d3 9542 .uleb128 0x2115
1979 01d5 0C .uleb128 0xc
1980 01d6 31 .uleb128 0x31
1981 01d7 13 .uleb128 0x13
1982 01d8 00 .byte 0
1983 01d9 00 .byte 0
1984 01da 23 .uleb128 0x23
1985 01db 2E .uleb128 0x2e
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 36
1986 01dc 01 .byte 0x1
1987 01dd 3F .uleb128 0x3f
1988 01de 0C .uleb128 0xc
1989 01df 03 .uleb128 0x3
1990 01e0 0E .uleb128 0xe
1991 01e1 3A .uleb128 0x3a
1992 01e2 0B .uleb128 0xb
1993 01e3 3B .uleb128 0x3b
1994 01e4 05 .uleb128 0x5
1995 01e5 27 .uleb128 0x27
1996 01e6 0C .uleb128 0xc
1997 01e7 11 .uleb128 0x11
1998 01e8 01 .uleb128 0x1
1999 01e9 12 .uleb128 0x12
2000 01ea 01 .uleb128 0x1
2001 01eb 40 .uleb128 0x40
2002 01ec 06 .uleb128 0x6
2003 01ed 9742 .uleb128 0x2117
2004 01ef 0C .uleb128 0xc
2005 01f0 01 .uleb128 0x1
2006 01f1 13 .uleb128 0x13
2007 01f2 00 .byte 0
2008 01f3 00 .byte 0
2009 01f4 24 .uleb128 0x24
2010 01f5 05 .uleb128 0x5
2011 01f6 00 .byte 0
2012 01f7 03 .uleb128 0x3
2013 01f8 0E .uleb128 0xe
2014 01f9 3A .uleb128 0x3a
2015 01fa 0B .uleb128 0xb
2016 01fb 3B .uleb128 0x3b
2017 01fc 05 .uleb128 0x5
2018 01fd 49 .uleb128 0x49
2019 01fe 13 .uleb128 0x13
2020 01ff 02 .uleb128 0x2
2021 0200 06 .uleb128 0x6
2022 0201 00 .byte 0
2023 0202 00 .byte 0
2024 0203 25 .uleb128 0x25
2025 0204 05 .uleb128 0x5
2026 0205 00 .byte 0
2027 0206 03 .uleb128 0x3
2028 0207 08 .uleb128 0x8
2029 0208 3A .uleb128 0x3a
2030 0209 0B .uleb128 0xb
2031 020a 3B .uleb128 0x3b
2032 020b 05 .uleb128 0x5
2033 020c 49 .uleb128 0x49
2034 020d 13 .uleb128 0x13
2035 020e 02 .uleb128 0x2
2036 020f 06 .uleb128 0x6
2037 0210 00 .byte 0
2038 0211 00 .byte 0
2039 0212 26 .uleb128 0x26
2040 0213 34 .uleb128 0x34
2041 0214 00 .byte 0
2042 0215 03 .uleb128 0x3
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 37
2043 0216 08 .uleb128 0x8
2044 0217 3A .uleb128 0x3a
2045 0218 0B .uleb128 0xb
2046 0219 3B .uleb128 0x3b
2047 021a 05 .uleb128 0x5
2048 021b 49 .uleb128 0x49
2049 021c 13 .uleb128 0x13
2050 021d 02 .uleb128 0x2
2051 021e 06 .uleb128 0x6
2052 021f 00 .byte 0
2053 0220 00 .byte 0
2054 0221 27 .uleb128 0x27
2055 0222 34 .uleb128 0x34
2056 0223 00 .byte 0
2057 0224 03 .uleb128 0x3
2058 0225 0E .uleb128 0xe
2059 0226 3A .uleb128 0x3a
2060 0227 0B .uleb128 0xb
2061 0228 3B .uleb128 0x3b
2062 0229 0B .uleb128 0xb
2063 022a 49 .uleb128 0x49
2064 022b 13 .uleb128 0x13
2065 022c 02 .uleb128 0x2
2066 022d 0A .uleb128 0xa
2067 022e 00 .byte 0
2068 022f 00 .byte 0
2069 0230 28 .uleb128 0x28
2070 0231 2E .uleb128 0x2e
2071 0232 01 .byte 0x1
2072 0233 3F .uleb128 0x3f
2073 0234 0C .uleb128 0xc
2074 0235 03 .uleb128 0x3
2075 0236 0E .uleb128 0xe
2076 0237 3A .uleb128 0x3a
2077 0238 0B .uleb128 0xb
2078 0239 3B .uleb128 0x3b
2079 023a 0B .uleb128 0xb
2080 023b 27 .uleb128 0x27
2081 023c 0C .uleb128 0xc
2082 023d 3C .uleb128 0x3c
2083 023e 0C .uleb128 0xc
2084 023f 01 .uleb128 0x1
2085 0240 13 .uleb128 0x13
2086 0241 00 .byte 0
2087 0242 00 .byte 0
2088 0243 29 .uleb128 0x29
2089 0244 2E .uleb128 0x2e
2090 0245 00 .byte 0
2091 0246 3F .uleb128 0x3f
2092 0247 0C .uleb128 0xc
2093 0248 03 .uleb128 0x3
2094 0249 0E .uleb128 0xe
2095 024a 3A .uleb128 0x3a
2096 024b 0B .uleb128 0xb
2097 024c 3B .uleb128 0x3b
2098 024d 0B .uleb128 0xb
2099 024e 27 .uleb128 0x27
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 38
2100 024f 0C .uleb128 0xc
2101 0250 49 .uleb128 0x49
2102 0251 13 .uleb128 0x13
2103 0252 3C .uleb128 0x3c
2104 0253 0C .uleb128 0xc
2105 0254 00 .byte 0
2106 0255 00 .byte 0
2107 0256 00 .byte 0
2108 .section .debug_loc,"",%progbits
2109 .Ldebug_loc0:
2110 .LLST0:
2111 0000 00000000 .4byte .LVL1
2112 0004 0C000000 .4byte .LVL4
2113 0008 0100 .2byte 0x1
2114 000a 50 .byte 0x50
2115 000b 0C000000 .4byte .LVL4
2116 000f 13000000 .4byte .LVL5-1
2117 0013 0300 .2byte 0x3
2118 0015 70 .byte 0x70
2119 0016 70 .sleb128 -16
2120 0017 9F .byte 0x9f
2121 0018 13000000 .4byte .LVL5-1
2122 001c 14000000 .4byte .LFE8
2123 0020 0400 .2byte 0x4
2124 0022 F3 .byte 0xf3
2125 0023 01 .uleb128 0x1
2126 0024 50 .byte 0x50
2127 0025 9F .byte 0x9f
2128 0026 00000000 .4byte 0
2129 002a 00000000 .4byte 0
2130 .LLST1:
2131 002e 00000000 .4byte .LVL1
2132 0032 13000000 .4byte .LVL5-1
2133 0036 0100 .2byte 0x1
2134 0038 51 .byte 0x51
2135 0039 13000000 .4byte .LVL5-1
2136 003d 14000000 .4byte .LFE8
2137 0041 0400 .2byte 0x4
2138 0043 F3 .byte 0xf3
2139 0044 01 .uleb128 0x1
2140 0045 51 .byte 0x51
2141 0046 9F .byte 0x9f
2142 0047 00000000 .4byte 0
2143 004b 00000000 .4byte 0
2144 .LLST2:
2145 004f 00000000 .4byte .LVL1
2146 0053 0A000000 .4byte .LVL3
2147 0057 0100 .2byte 0x1
2148 0059 52 .byte 0x52
2149 005a 0A000000 .4byte .LVL3
2150 005e 13000000 .4byte .LVL5-1
2151 0062 0300 .2byte 0x3
2152 0064 72 .byte 0x72
2153 0065 08 .sleb128 8
2154 0066 9F .byte 0x9f
2155 0067 13000000 .4byte .LVL5-1
2156 006b 14000000 .4byte .LFE8
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 39
2157 006f 0400 .2byte 0x4
2158 0071 F3 .byte 0xf3
2159 0072 01 .uleb128 0x1
2160 0073 52 .byte 0x52
2161 0074 9F .byte 0x9f
2162 0075 00000000 .4byte 0
2163 0079 00000000 .4byte 0
2164 .LLST3:
2165 007d 04000000 .4byte .LVL2
2166 0081 13000000 .4byte .LVL5-1
2167 0085 0100 .2byte 0x1
2168 0087 51 .byte 0x51
2169 0088 13000000 .4byte .LVL5-1
2170 008c 14000000 .4byte .LFE8
2171 0090 0400 .2byte 0x4
2172 0092 F3 .byte 0xf3
2173 0093 01 .uleb128 0x1
2174 0094 51 .byte 0x51
2175 0095 9F .byte 0x9f
2176 0096 00000000 .4byte 0
2177 009a 00000000 .4byte 0
2178 .LLST4:
2179 009e 00000000 .4byte .LFB9
2180 00a2 02000000 .4byte .LCFI0
2181 00a6 0200 .2byte 0x2
2182 00a8 7D .byte 0x7d
2183 00a9 00 .sleb128 0
2184 00aa 02000000 .4byte .LCFI0
2185 00ae 84000000 .4byte .LFE9
2186 00b2 0200 .2byte 0x2
2187 00b4 7D .byte 0x7d
2188 00b5 18 .sleb128 24
2189 00b6 00000000 .4byte 0
2190 00ba 00000000 .4byte 0
2191 .LLST5:
2192 00be 00000000 .4byte .LVL6
2193 00c2 0C000000 .4byte .LVL8
2194 00c6 0100 .2byte 0x1
2195 00c8 50 .byte 0x50
2196 00c9 0C000000 .4byte .LVL8
2197 00cd 84000000 .4byte .LFE9
2198 00d1 0100 .2byte 0x1
2199 00d3 56 .byte 0x56
2200 00d4 00000000 .4byte 0
2201 00d8 00000000 .4byte 0
2202 .LLST6:
2203 00dc 00000000 .4byte .LVL6
2204 00e0 06000000 .4byte .LVL7
2205 00e4 0100 .2byte 0x1
2206 00e6 51 .byte 0x51
2207 00e7 06000000 .4byte .LVL7
2208 00eb 14000000 .4byte .LVL9
2209 00ef 0300 .2byte 0x3
2210 00f1 71 .byte 0x71
2211 00f2 79 .sleb128 -7
2212 00f3 9F .byte 0x9f
2213 00f4 14000000 .4byte .LVL9
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 40
2214 00f8 84000000 .4byte .LFE9
2215 00fc 0100 .2byte 0x1
2216 00fe 55 .byte 0x55
2217 00ff 00000000 .4byte 0
2218 0103 00000000 .4byte 0
2219 .LLST7:
2220 0107 18000000 .4byte .LVL10
2221 010b 4C000000 .4byte .LVL17
2222 010f 0100 .2byte 0x1
2223 0111 54 .byte 0x54
2224 0112 58000000 .4byte .LVL19
2225 0116 72000000 .4byte .LVL22
2226 011a 0100 .2byte 0x1
2227 011c 54 .byte 0x54
2228 011d 7A000000 .4byte .LVL24
2229 0121 7C000000 .4byte .LVL25
2230 0125 0100 .2byte 0x1
2231 0127 54 .byte 0x54
2232 0128 00000000 .4byte 0
2233 012c 00000000 .4byte 0
2234 .LLST8:
2235 0130 1E000000 .4byte .LVL12
2236 0134 20000000 .4byte .LVL13
2237 0138 0100 .2byte 0x1
2238 013a 53 .byte 0x53
2239 013b 22000000 .4byte .LVL14
2240 013f 53000000 .4byte .LVL18-1
2241 0143 0100 .2byte 0x1
2242 0145 53 .byte 0x53
2243 0146 53000000 .4byte .LVL18-1
2244 014a 54000000 .4byte .LVL18
2245 014e 0300 .2byte 0x3
2246 0150 74 .byte 0x74
2247 0151 78 .sleb128 -8
2248 0152 9F .byte 0x9f
2249 0153 58000000 .4byte .LVL19
2250 0157 61000000 .4byte .LVL20-1
2251 015b 0100 .2byte 0x1
2252 015d 53 .byte 0x53
2253 015e 6C000000 .4byte .LVL21
2254 0162 76000000 .4byte .LVL23
2255 0166 0100 .2byte 0x1
2256 0168 50 .byte 0x50
2257 0169 76000000 .4byte .LVL23
2258 016d 7A000000 .4byte .LVL24
2259 0171 0100 .2byte 0x1
2260 0173 54 .byte 0x54
2261 0174 00000000 .4byte 0
2262 0178 00000000 .4byte 0
2263 .LLST9:
2264 017c 42000000 .4byte .LVL15
2265 0180 4A000000 .4byte .LVL16
2266 0184 0100 .2byte 0x1
2267 0186 57 .byte 0x57
2268 0187 00000000 .4byte 0
2269 018b 00000000 .4byte 0
2270 .LLST10:
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 41
2271 018f 00000000 .4byte .LFB10
2272 0193 02000000 .4byte .LCFI1
2273 0197 0200 .2byte 0x2
2274 0199 7D .byte 0x7d
2275 019a 00 .sleb128 0
2276 019b 02000000 .4byte .LCFI1
2277 019f 86000000 .4byte .LFE10
2278 01a3 0200 .2byte 0x2
2279 01a5 7D .byte 0x7d
2280 01a6 10 .sleb128 16
2281 01a7 00000000 .4byte 0
2282 01ab 00000000 .4byte 0
2283 .LLST11:
2284 01af 00000000 .4byte .LVL26
2285 01b3 08000000 .4byte .LVL27
2286 01b7 0100 .2byte 0x1
2287 01b9 50 .byte 0x50
2288 01ba 08000000 .4byte .LVL27
2289 01be 86000000 .4byte .LFE10
2290 01c2 0100 .2byte 0x1
2291 01c4 56 .byte 0x56
2292 01c5 00000000 .4byte 0
2293 01c9 00000000 .4byte 0
2294 .LLST12:
2295 01cd 10000000 .4byte .LVL29
2296 01d1 18000000 .4byte .LVL32
2297 01d5 0100 .2byte 0x1
2298 01d7 55 .byte 0x55
2299 01d8 18000000 .4byte .LVL32
2300 01dc 28000000 .4byte .LVL33
2301 01e0 0100 .2byte 0x1
2302 01e2 53 .byte 0x53
2303 01e3 28000000 .4byte .LVL33
2304 01e7 2C000000 .4byte .LVL34
2305 01eb 0100 .2byte 0x1
2306 01ed 52 .byte 0x52
2307 01ee 2C000000 .4byte .LVL34
2308 01f2 57000000 .4byte .LVL36-1
2309 01f6 0100 .2byte 0x1
2310 01f8 53 .byte 0x53
2311 01f9 58000000 .4byte .LVL36
2312 01fd 86000000 .4byte .LFE10
2313 0201 0100 .2byte 0x1
2314 0203 53 .byte 0x53
2315 0204 00000000 .4byte 0
2316 0208 00000000 .4byte 0
2317 .LLST13:
2318 020c 0C000000 .4byte .LVL28
2319 0210 12000000 .4byte .LVL30
2320 0214 0100 .2byte 0x1
2321 0216 50 .byte 0x50
2322 0217 12000000 .4byte .LVL30
2323 021b 15000000 .4byte .LVL31-1
2324 021f 0200 .2byte 0x2
2325 0221 74 .byte 0x74
2326 0222 00 .sleb128 0
2327 0223 15000000 .4byte .LVL31-1
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 42
2328 0227 3E000000 .4byte .LVL35
2329 022b 0300 .2byte 0x3
2330 022d 75 .byte 0x75
2331 022e 78 .sleb128 -8
2332 022f 9F .byte 0x9f
2333 0230 00000000 .4byte 0
2334 0234 00000000 .4byte 0
2335 .LLST14:
2336 0238 00000000 .4byte .LFB11
2337 023c 02000000 .4byte .LCFI2
2338 0240 0200 .2byte 0x2
2339 0242 7D .byte 0x7d
2340 0243 00 .sleb128 0
2341 0244 02000000 .4byte .LCFI2
2342 0248 40000000 .4byte .LFE11
2343 024c 0200 .2byte 0x2
2344 024e 7D .byte 0x7d
2345 024f 10 .sleb128 16
2346 0250 00000000 .4byte 0
2347 0254 00000000 .4byte 0
2348 .LLST15:
2349 0258 00000000 .4byte .LVL37
2350 025c 0C000000 .4byte .LVL38
2351 0260 0100 .2byte 0x1
2352 0262 50 .byte 0x50
2353 0263 0C000000 .4byte .LVL38
2354 0267 1C000000 .4byte .LVL40
2355 026b 0100 .2byte 0x1
2356 026d 54 .byte 0x54
2357 026e 1C000000 .4byte .LVL40
2358 0272 34000000 .4byte .LVL45
2359 0276 1300 .2byte 0x13
2360 0278 F3 .byte 0xf3
2361 0279 01 .uleb128 0x1
2362 027a 50 .byte 0x50
2363 027b 03 .byte 0x3
2364 027c 00000000 .4byte .LANCHOR0
2365 0280 F3 .byte 0xf3
2366 0281 01 .uleb128 0x1
2367 0282 50 .byte 0x50
2368 0283 30 .byte 0x30
2369 0284 2E .byte 0x2e
2370 0285 28 .byte 0x28
2371 0286 0100 .2byte 0x1
2372 0288 16 .byte 0x16
2373 0289 13 .byte 0x13
2374 028a 9F .byte 0x9f
2375 028b 34000000 .4byte .LVL45
2376 028f 38000000 .4byte .LVL46
2377 0293 0100 .2byte 0x1
2378 0295 54 .byte 0x54
2379 0296 38000000 .4byte .LVL46
2380 029a 40000000 .4byte .LFE11
2381 029e 1300 .2byte 0x13
2382 02a0 F3 .byte 0xf3
2383 02a1 01 .uleb128 0x1
2384 02a2 50 .byte 0x50
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 43
2385 02a3 03 .byte 0x3
2386 02a4 00000000 .4byte .LANCHOR0
2387 02a8 F3 .byte 0xf3
2388 02a9 01 .uleb128 0x1
2389 02aa 50 .byte 0x50
2390 02ab 30 .byte 0x30
2391 02ac 2E .byte 0x2e
2392 02ad 28 .byte 0x28
2393 02ae 0100 .2byte 0x1
2394 02b0 16 .byte 0x16
2395 02b1 13 .byte 0x13
2396 02b2 9F .byte 0x9f
2397 02b3 00000000 .4byte 0
2398 02b7 00000000 .4byte 0
2399 .LLST16:
2400 02bb 00000000 .4byte .LVL37
2401 02bf 13000000 .4byte .LVL39-1
2402 02c3 0100 .2byte 0x1
2403 02c5 51 .byte 0x51
2404 02c6 13000000 .4byte .LVL39-1
2405 02ca 40000000 .4byte .LFE11
2406 02ce 0100 .2byte 0x1
2407 02d0 55 .byte 0x55
2408 02d1 00000000 .4byte 0
2409 02d5 00000000 .4byte 0
2410 .LLST17:
2411 02d9 14000000 .4byte .LVL39
2412 02dd 1C000000 .4byte .LVL40
2413 02e1 0300 .2byte 0x3
2414 02e3 74 .byte 0x74
2415 02e4 08 .sleb128 8
2416 02e5 9F .byte 0x9f
2417 02e6 34000000 .4byte .LVL45
2418 02ea 38000000 .4byte .LVL46
2419 02ee 0300 .2byte 0x3
2420 02f0 74 .byte 0x74
2421 02f1 08 .sleb128 8
2422 02f2 9F .byte 0x9f
2423 02f3 38000000 .4byte .LVL46
2424 02f7 40000000 .4byte .LFE11
2425 02fb 1500 .2byte 0x15
2426 02fd F3 .byte 0xf3
2427 02fe 01 .uleb128 0x1
2428 02ff 50 .byte 0x50
2429 0300 03 .byte 0x3
2430 0301 00000000 .4byte .LANCHOR0
2431 0305 F3 .byte 0xf3
2432 0306 01 .uleb128 0x1
2433 0307 50 .byte 0x50
2434 0308 30 .byte 0x30
2435 0309 2E .byte 0x2e
2436 030a 28 .byte 0x28
2437 030b 0100 .2byte 0x1
2438 030d 16 .byte 0x16
2439 030e 13 .byte 0x13
2440 030f 23 .byte 0x23
2441 0310 08 .uleb128 0x8
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 44
2442 0311 9F .byte 0x9f
2443 0312 00000000 .4byte 0
2444 0316 00000000 .4byte 0
2445 .LLST18:
2446 031a 14000000 .4byte .LVL39
2447 031e 1C000000 .4byte .LVL40
2448 0322 0200 .2byte 0x2
2449 0324 30 .byte 0x30
2450 0325 9F .byte 0x9f
2451 0326 24000000 .4byte .LVL42
2452 032a 28000000 .4byte .LVL43
2453 032e 0100 .2byte 0x1
2454 0330 54 .byte 0x54
2455 0331 34000000 .4byte .LVL45
2456 0335 40000000 .4byte .LFE11
2457 0339 0200 .2byte 0x2
2458 033b 30 .byte 0x30
2459 033c 9F .byte 0x9f
2460 033d 00000000 .4byte 0
2461 0341 00000000 .4byte 0
2462 .LLST19:
2463 0345 14000000 .4byte .LVL39
2464 0349 1C000000 .4byte .LVL40
2465 034d 0200 .2byte 0x2
2466 034f 30 .byte 0x30
2467 0350 9F .byte 0x9f
2468 0351 22000000 .4byte .LVL41
2469 0355 28000000 .4byte .LVL43
2470 0359 0100 .2byte 0x1
2471 035b 52 .byte 0x52
2472 035c 34000000 .4byte .LVL45
2473 0360 40000000 .4byte .LFE11
2474 0364 0200 .2byte 0x2
2475 0366 30 .byte 0x30
2476 0367 9F .byte 0x9f
2477 0368 00000000 .4byte 0
2478 036c 00000000 .4byte 0
2479 .LLST20:
2480 0370 00000000 .4byte .LFB12
2481 0374 02000000 .4byte .LCFI3
2482 0378 0200 .2byte 0x2
2483 037a 7D .byte 0x7d
2484 037b 00 .sleb128 0
2485 037c 02000000 .4byte .LCFI3
2486 0380 50000000 .4byte .LFE12
2487 0384 0200 .2byte 0x2
2488 0386 7D .byte 0x7d
2489 0387 10 .sleb128 16
2490 0388 00000000 .4byte 0
2491 038c 00000000 .4byte 0
2492 .LLST21:
2493 0390 00000000 .4byte .LVL47
2494 0394 0C000000 .4byte .LVL48
2495 0398 0100 .2byte 0x1
2496 039a 50 .byte 0x50
2497 039b 0C000000 .4byte .LVL48
2498 039f 50000000 .4byte .LFE12
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 45
2499 03a3 0100 .2byte 0x1
2500 03a5 56 .byte 0x56
2501 03a6 00000000 .4byte 0
2502 03aa 00000000 .4byte 0
2503 .LLST22:
2504 03ae 00000000 .4byte .LVL47
2505 03b2 1B000000 .4byte .LVL49-1
2506 03b6 0100 .2byte 0x1
2507 03b8 51 .byte 0x51
2508 03b9 1B000000 .4byte .LVL49-1
2509 03bd 50000000 .4byte .LFE12
2510 03c1 0100 .2byte 0x1
2511 03c3 54 .byte 0x54
2512 03c4 00000000 .4byte 0
2513 03c8 00000000 .4byte 0
2514 .LLST23:
2515 03cc 00000000 .4byte .LVL47
2516 03d0 1B000000 .4byte .LVL49-1
2517 03d4 0100 .2byte 0x1
2518 03d6 52 .byte 0x52
2519 03d7 1B000000 .4byte .LVL49-1
2520 03db 50000000 .4byte .LFE12
2521 03df 0100 .2byte 0x1
2522 03e1 55 .byte 0x55
2523 03e2 00000000 .4byte 0
2524 03e6 00000000 .4byte 0
2525 .LLST24:
2526 03ea 22000000 .4byte .LVL50
2527 03ee 49000000 .4byte .LVL54-1
2528 03f2 0100 .2byte 0x1
2529 03f4 50 .byte 0x50
2530 03f5 00000000 .4byte 0
2531 03f9 00000000 .4byte 0
2532 .LLST25:
2533 03fd 1C000000 .4byte .LVL49
2534 0401 22000000 .4byte .LVL50
2535 0405 0200 .2byte 0x2
2536 0407 30 .byte 0x30
2537 0408 9F .byte 0x9f
2538 0409 00000000 .4byte 0
2539 040d 00000000 .4byte 0
2540 .LLST26:
2541 0411 26000000 .4byte .LVL51
2542 0415 3E000000 .4byte .LVL53
2543 0419 0100 .2byte 0x1
2544 041b 53 .byte 0x53
2545 041c 00000000 .4byte 0
2546 0420 00000000 .4byte 0
2547 .section .debug_aranges,"",%progbits
2548 0000 44000000 .4byte 0x44
2549 0004 0200 .2byte 0x2
2550 0006 00000000 .4byte .Ldebug_info0
2551 000a 04 .byte 0x4
2552 000b 00 .byte 0
2553 000c 0000 .2byte 0
2554 000e 0000 .2byte 0
2555 0010 00000000 .4byte .LFB7
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 46
2556 0014 20000000 .4byte .LFE7-.LFB7
2557 0018 00000000 .4byte .LFB8
2558 001c 14000000 .4byte .LFE8-.LFB8
2559 0020 00000000 .4byte .LFB9
2560 0024 84000000 .4byte .LFE9-.LFB9
2561 0028 00000000 .4byte .LFB10
2562 002c 86000000 .4byte .LFE10-.LFB10
2563 0030 00000000 .4byte .LFB11
2564 0034 40000000 .4byte .LFE11-.LFB11
2565 0038 00000000 .4byte .LFB12
2566 003c 50000000 .4byte .LFE12-.LFB12
2567 0040 00000000 .4byte 0
2568 0044 00000000 .4byte 0
2569 .section .debug_ranges,"",%progbits
2570 .Ldebug_ranges0:
2571 0000 00000000 .4byte .LFB7
2572 0004 20000000 .4byte .LFE7
2573 0008 00000000 .4byte .LFB8
2574 000c 14000000 .4byte .LFE8
2575 0010 00000000 .4byte .LFB9
2576 0014 84000000 .4byte .LFE9
2577 0018 00000000 .4byte .LFB10
2578 001c 86000000 .4byte .LFE10
2579 0020 00000000 .4byte .LFB11
2580 0024 40000000 .4byte .LFE11
2581 0028 00000000 .4byte .LFB12
2582 002c 50000000 .4byte .LFE12
2583 0030 00000000 .4byte 0
2584 0034 00000000 .4byte 0
2585 .section .debug_line,"",%progbits
2586 .Ldebug_line0:
2587 0000 4E020000 .section .debug_str,"MS",%progbits,1
2587 02004801
2587 00000201
2587 FB0E0D00
2587 01010101
2588 .LASF35:
2589 0000 705F6D73 .ascii "p_msg\000"
2589 6700
2590 .LASF79:
2591 0006 433A5C44 .ascii "C:\\Documents and Settings\\Administrador\\Mis docu"
2591 6F63756D
2591 656E7473
2591 20616E64
2591 20536574
2592 0036 6D656E74 .ascii "mentos\\SMART-CITIES\\SmartCities-SVN\\Project\\app"
2592 6F735C53
2592 4D415254
2592 2D434954
2592 4945535C
2593 0065 6C696361 .ascii "lications\\smartcities\000"
2593 74696F6E
2593 735C736D
2593 61727463
2593 69746965
2594 .LASF2:
2595 007b 73697A65 .ascii "size_t\000"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 47
2595 5F7400
2596 .LASF61:
2597 0082 7264796D .ascii "rdymsg\000"
2597 736700
2598 .LASF12:
2599 0089 75696E74 .ascii "uint64_t\000"
2599 36345F74
2599 00
2600 .LASF51:
2601 0092 6D656D67 .ascii "memgetfunc_t\000"
2601 65746675
2601 6E635F74
2601 00
2602 .LASF13:
2603 009f 6C6F6E67 .ascii "long long unsigned int\000"
2603 206C6F6E
2603 6720756E
2603 7369676E
2603 65642069
2604 .LASF78:
2605 00b6 2E2E2F2E .ascii "../..//os/kernel/src/chheap.c\000"
2605 2E2F2F6F
2605 732F6B65
2605 726E656C
2605 2F737263
2606 .LASF62:
2607 00d4 65786974 .ascii "exitcode\000"
2607 636F6465
2607 00
2608 .LASF55:
2609 00dd 685F6672 .ascii "h_free\000"
2609 656500
2610 .LASF68:
2611 00e4 68656170 .ascii "heapp\000"
2611 7000
2612 .LASF81:
2613 00ea 63684D74 .ascii "chMtxUnlock\000"
2613 78556E6C
2613 6F636B00
2614 .LASF67:
2615 00f6 63684865 .ascii "chHeapInit\000"
2615 6170496E
2615 697400
2616 .LASF57:
2617 0101 6E657874 .ascii "next\000"
2617 00
2618 .LASF24:
2619 0106 705F7072 .ascii "p_prio\000"
2619 696F00
2620 .LASF73:
2621 010d 63684865 .ascii "chHeapMaxMinFraq\000"
2621 61704D61
2621 784D696E
2621 46726171
2621 00
2622 .LASF11:
2623 011e 6C6F6E67 .ascii "long long int\000"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 48
2623 206C6F6E
2623 6720696E
2623 7400
2624 .LASF1:
2625 012c 7369676E .ascii "signed char\000"
2625 65642063
2625 68617200
2626 .LASF56:
2627 0138 685F6D74 .ascii "h_mtx\000"
2627 7800
2628 .LASF39:
2629 013e 705F6D70 .ascii "p_mpool\000"
2629 6F6F6C00
2630 .LASF48:
2631 0146 6D5F7175 .ascii "m_queue\000"
2631 65756500
2632 .LASF69:
2633 014e 63684865 .ascii "chHeapFree\000"
2633 61704672
2633 656500
2634 .LASF8:
2635 0159 6C6F6E67 .ascii "long int\000"
2635 20696E74
2635 00
2636 .LASF15:
2637 0162 74737461 .ascii "tstate_t\000"
2637 74655F74
2637 00
2638 .LASF26:
2639 016b 705F6E65 .ascii "p_newer\000"
2639 77657200
2640 .LASF42:
2641 0173 72656761 .ascii "regarm_t\000"
2641 726D5F74
2641 00
2642 .LASF59:
2643 017c 616C6967 .ascii "align\000"
2643 6E00
2644 .LASF0:
2645 0182 756E7369 .ascii "unsigned int\000"
2645 676E6564
2645 20696E74
2645 00
2646 .LASF10:
2647 018f 6C6F6E67 .ascii "long unsigned int\000"
2647 20756E73
2647 69676E65
2647 6420696E
2647 7400
2648 .LASF45:
2649 01a1 636F6E74 .ascii "context\000"
2649 65787400
2650 .LASF60:
2651 01a9 73697A65 .ascii "size\000"
2651 00
2652 .LASF6:
2653 01ae 73686F72 .ascii "short unsigned int\000"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 49
2653 7420756E
2653 7369676E
2653 65642069
2653 6E7400
2654 .LASF18:
2655 01c1 6D73675F .ascii "msg_t\000"
2655 7400
2656 .LASF14:
2657 01c7 746D6F64 .ascii "tmode_t\000"
2657 655F7400
2658 .LASF41:
2659 01cf 54687265 .ascii "ThreadsList\000"
2659 6164734C
2659 69737400
2660 .LASF19:
2661 01db 6576656E .ascii "eventmask_t\000"
2661 746D6173
2661 6B5F7400
2662 .LASF47:
2663 01e7 4D757465 .ascii "Mutex\000"
2663 7800
2664 .LASF43:
2665 01ed 73746B61 .ascii "stkalign_t\000"
2665 6C69676E
2665 5F7400
2666 .LASF46:
2667 01f8 73697A65 .ascii "sizetype\000"
2667 74797065
2667 00
2668 .LASF76:
2669 0201 63684D74 .ascii "chMtxLock\000"
2669 784C6F63
2669 6B00
2670 .LASF27:
2671 020b 705F6F6C .ascii "p_older\000"
2671 64657200
2672 .LASF40:
2673 0213 54687265 .ascii "ThreadsQueue\000"
2673 61647351
2673 75657565
2673 00
2674 .LASF77:
2675 0220 474E5520 .ascii "GNU C 4.7.2\000"
2675 4320342E
2675 372E3200
2676 .LASF52:
2677 022c 4D656D6F .ascii "MemoryHeap\000"
2677 72794865
2677 617000
2678 .LASF16:
2679 0237 74726566 .ascii "trefs_t\000"
2679 735F7400
2680 .LASF23:
2681 023f 705F7072 .ascii "p_prev\000"
2681 657600
2682 .LASF17:
2683 0246 74707269 .ascii "tprio_t\000"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 50
2683 6F5F7400
2684 .LASF7:
2685 024e 696E7433 .ascii "int32_t\000"
2685 325F7400
2686 .LASF4:
2687 0256 756E7369 .ascii "unsigned char\000"
2687 676E6564
2687 20636861
2687 7200
2688 .LASF54:
2689 0264 685F7072 .ascii "h_provider\000"
2689 6F766964
2689 657200
2690 .LASF37:
2691 026f 705F6D74 .ascii "p_mtxlist\000"
2691 786C6973
2691 7400
2692 .LASF5:
2693 0279 73686F72 .ascii "short int\000"
2693 7420696E
2693 7400
2694 .LASF29:
2695 0283 705F7374 .ascii "p_state\000"
2695 61746500
2696 .LASF80:
2697 028b 68656170 .ascii "heap_header\000"
2697 5F686561
2697 64657200
2698 .LASF64:
2699 0297 65776D61 .ascii "ewmask\000"
2699 736B00
2700 .LASF22:
2701 029e 705F6E65 .ascii "p_next\000"
2701 787400
2702 .LASF30:
2703 02a5 705F666C .ascii "p_flags\000"
2703 61677300
2704 .LASF21:
2705 02ad 54687265 .ascii "Thread\000"
2705 616400
2706 .LASF70:
2707 02b4 63684865 .ascii "chHeapAlloc\000"
2707 6170416C
2707 6C6F6300
2708 .LASF36:
2709 02c0 705F6570 .ascii "p_epending\000"
2709 656E6469
2709 6E6700
2710 .LASF9:
2711 02cb 75696E74 .ascii "uint32_t\000"
2711 33325F74
2711 00
2712 .LASF58:
2713 02d4 68656170 .ascii "heap\000"
2713 00
2714 .LASF74:
2715 02d9 64656661 .ascii "default_heap\000"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 51
2715 756C745F
2715 68656170
2715 00
2716 .LASF65:
2717 02e6 63686172 .ascii "char\000"
2717 00
2718 .LASF71:
2719 02eb 63684865 .ascii "chHeapStatus\000"
2719 61705374
2719 61747573
2719 00
2720 .LASF50:
2721 02f8 6D5F6E65 .ascii "m_next\000"
2721 787400
2722 .LASF20:
2723 02ff 73797374 .ascii "systime_t\000"
2723 696D655F
2723 7400
2724 .LASF38:
2725 0309 705F7265 .ascii "p_realprio\000"
2725 616C7072
2725 696F00
2726 .LASF32:
2727 0314 705F7469 .ascii "p_time\000"
2727 6D6500
2728 .LASF44:
2729 031b 696E7463 .ascii "intctx\000"
2729 747800
2730 .LASF34:
2731 0322 705F6D73 .ascii "p_msgqueue\000"
2731 67717565
2731 756500
2732 .LASF75:
2733 032d 63684D74 .ascii "chMtxInit\000"
2733 78496E69
2733 7400
2734 .LASF31:
2735 0337 705F7265 .ascii "p_refs\000"
2735 667300
2736 .LASF3:
2737 033e 75696E74 .ascii "uint8_t\000"
2737 385F7400
2738 .LASF63:
2739 0346 77746F62 .ascii "wtobjp\000"
2739 6A7000
2740 .LASF72:
2741 034d 73697A65 .ascii "sizep\000"
2741 7000
2742 .LASF28:
2743 0353 705F6E61 .ascii "p_name\000"
2743 6D6500
2744 .LASF66:
2745 035a 5F686561 .ascii "_heap_init\000"
2745 705F696E
2745 697400
2746 .LASF49:
2747 0365 6D5F6F77 .ascii "m_owner\000"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 52
2747 6E657200
2748 .LASF25:
2749 036d 705F6374 .ascii "p_ctx\000"
2749 7800
2750 .LASF33:
2751 0373 705F7761 .ascii "p_waiting\000"
2751 6974696E
2751 6700
2752 .LASF53:
2753 037d 6D656D6F .ascii "memory_heap\000"
2753 72795F68
2753 65617000
2754 .ident "GCC: (GNU) 4.7.2"
ARM GAS C:\cygwin\tmp\ccpvZwQ8.s page 53
DEFINED SYMBOLS
*ABS*:00000000 chheap.c
C:\cygwin\tmp\ccpvZwQ8.s:19 .text._heap_init:00000000 $t
C:\cygwin\tmp\ccpvZwQ8.s:25 .text._heap_init:00000000 _heap_init
C:\cygwin\tmp\ccpvZwQ8.s:518 .bss.default_heap:00000000 .LANCHOR0
C:\cygwin\tmp\ccpvZwQ8.s:57 .text.chHeapInit:00000000 $t
C:\cygwin\tmp\ccpvZwQ8.s:63 .text.chHeapInit:00000000 chHeapInit
C:\cygwin\tmp\ccpvZwQ8.s:97 .text.chHeapAlloc:00000000 $t
C:\cygwin\tmp\ccpvZwQ8.s:103 .text.chHeapAlloc:00000000 chHeapAlloc
C:\cygwin\tmp\ccpvZwQ8.s:230 .text.chHeapAlloc:00000080 $d
C:\cygwin\tmp\ccpvZwQ8.s:235 .text.chHeapFree:00000000 $t
C:\cygwin\tmp\ccpvZwQ8.s:241 .text.chHeapFree:00000000 chHeapFree
C:\cygwin\tmp\ccpvZwQ8.s:355 .text.chHeapStatus:00000000 $t
C:\cygwin\tmp\ccpvZwQ8.s:361 .text.chHeapStatus:00000000 chHeapStatus
C:\cygwin\tmp\ccpvZwQ8.s:431 .text.chHeapStatus:0000003c $d
C:\cygwin\tmp\ccpvZwQ8.s:436 .text.chHeapMaxMinFraq:00000000 $t
C:\cygwin\tmp\ccpvZwQ8.s:442 .text.chHeapMaxMinFraq:00000000 chHeapMaxMinFraq
C:\cygwin\tmp\ccpvZwQ8.s:512 .text.chHeapMaxMinFraq:0000004c $d
C:\cygwin\tmp\ccpvZwQ8.s:517 .bss.default_heap:00000000 $d
C:\cygwin\tmp\ccpvZwQ8.s:521 .bss.default_heap:00000000 default_heap
.debug_frame:00000010 $d
C:\cygwin\tmp\ccpvZwQ8.s:234 .text.chHeapAlloc:00000084 $t
UNDEFINED SYMBOLS
chCoreAlloc
chMtxInit
chMtxLock
chMtxUnlock