syscalls.lst 168 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 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.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	"syscalls.c"
  15              		.text
  16              	.Ltext0:
  17              		.cfi_sections	.debug_frame
  18              		.section	.text._read_r,"ax",%progbits
  19              		.align	2
  20              		.p2align 4,,15
  21              		.global	_read_r
  22              		.thumb
  23              		.thumb_func
  24              		.type	_read_r, %function
  25              	_read_r:
  26              	.LFB7:
  27              		.file 1 "../..//os/various/syscalls.c"
  28              		.loc 1 82 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 95 0
  35 0000 1623     		movs	r3, #22
  36              	.LVL1:
  37 0002 0360     		str	r3, [r0, #0]
  38              		.loc 1 98 0
  39 0004 4FF0FF30 		mov	r0, #-1
  40              	.LVL2:
  41 0008 7047     		bx	lr
  42              		.cfi_endproc
  43              	.LFE7:
  44              		.size	_read_r, .-_read_r
  45 000a 00BFAFF3 		.section	.text._lseek_r,"ax",%progbits
  45      0080
  46              		.align	2
  47              		.p2align 4,,15
  48              		.global	_lseek_r
  49              		.thumb
  50              		.thumb_func
  51              		.type	_lseek_r, %function
  52              	_lseek_r:
  53              	.LFB8:
  54              		.loc 1 103 0
  55              		.cfi_startproc
  56              		@ args = 0, pretend = 0, frame = 0
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 2


  57              		@ frame_needed = 0, uses_anonymous_args = 0
  58              		@ link register save eliminated.
  59              	.LVL3:
  60              		.loc 1 110 0
  61 0000 0020     		movs	r0, #0
  62              	.LVL4:
  63 0002 7047     		bx	lr
  64              		.cfi_endproc
  65              	.LFE8:
  66              		.size	_lseek_r, .-_lseek_r
  67 0004 AFF30080 		.section	.text._write_r,"ax",%progbits
  67      AFF30080 
  67      AFF30080 
  68              		.align	2
  69              		.p2align 4,,15
  70              		.global	_write_r
  71              		.thumb
  72              		.thumb_func
  73              		.type	_write_r, %function
  74              	_write_r:
  75              	.LFB9:
  76              		.loc 1 115 0
  77              		.cfi_startproc
  78              		@ args = 0, pretend = 0, frame = 0
  79              		@ frame_needed = 0, uses_anonymous_args = 0
  80              		@ link register save eliminated.
  81              	.LVL5:
  82              		.loc 1 127 0
  83 0000 1846     		mov	r0, r3
  84              	.LVL6:
  85 0002 7047     		bx	lr
  86              		.cfi_endproc
  87              	.LFE9:
  88              		.size	_write_r, .-_write_r
  89 0004 AFF30080 		.section	.text._close_r,"ax",%progbits
  89      AFF30080 
  89      AFF30080 
  90              		.align	2
  91              		.p2align 4,,15
  92              		.global	_close_r
  93              		.thumb
  94              		.thumb_func
  95              		.type	_close_r, %function
  96              	_close_r:
  97              	.LFB10:
  98              		.loc 1 132 0
  99              		.cfi_startproc
 100              		@ args = 0, pretend = 0, frame = 0
 101              		@ frame_needed = 0, uses_anonymous_args = 0
 102              		@ link register save eliminated.
 103              	.LVL7:
 104              		.loc 1 137 0
 105 0000 0020     		movs	r0, #0
 106              	.LVL8:
 107 0002 7047     		bx	lr
 108              		.cfi_endproc
 109              	.LFE10:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 3


 110              		.size	_close_r, .-_close_r
 111 0004 AFF30080 		.section	.text._sbrk_r,"ax",%progbits
 111      AFF30080 
 111      AFF30080 
 112              		.align	2
 113              		.p2align 4,,15
 114              		.global	_sbrk_r
 115              		.thumb
 116              		.thumb_func
 117              		.type	_sbrk_r, %function
 118              	_sbrk_r:
 119              	.LFB11:
 120              		.loc 1 142 0
 121              		.cfi_startproc
 122              		@ args = 0, pretend = 0, frame = 0
 123              		@ frame_needed = 0, uses_anonymous_args = 0
 124              	.LVL9:
 125 0000 10B5     		push	{r4, lr}
 126              	.LCFI0:
 127              		.cfi_def_cfa_offset 8
 128              		.cfi_offset 4, -8
 129              		.cfi_offset 14, -4
 130              		.loc 1 142 0
 131 0002 0446     		mov	r4, r0
 132              		.loc 1 149 0
 133 0004 0846     		mov	r0, r1
 134              	.LVL10:
 135 0006 FFF7FEFF 		bl	chCoreAlloc
 136              	.LVL11:
 137              		.loc 1 150 0
 138 000a 00B1     		cbz	r0, .L8
 139              		.loc 1 159 0
 140 000c 10BD     		pop	{r4, pc}
 141              	.L8:
 142              		.loc 1 151 0
 143 000e 0C23     		movs	r3, #12
 144 0010 2360     		str	r3, [r4, #0]
 145              		.loc 1 152 0
 146 0012 4FF0FF30 		mov	r0, #-1
 147              	.LVL12:
 148              		.loc 1 159 0
 149 0016 10BD     		pop	{r4, pc}
 150              		.cfi_endproc
 151              	.LFE11:
 152              		.size	_sbrk_r, .-_sbrk_r
 153 0018 AFF30080 		.section	.text._fstat_r,"ax",%progbits
 153      AFF30080 
 154              		.align	2
 155              		.p2align 4,,15
 156              		.global	_fstat_r
 157              		.thumb
 158              		.thumb_func
 159              		.type	_fstat_r, %function
 160              	_fstat_r:
 161              	.LFB12:
 162              		.loc 1 164 0
 163              		.cfi_startproc
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 4


 164              		@ args = 0, pretend = 0, frame = 0
 165              		@ frame_needed = 0, uses_anonymous_args = 0
 166              	.LVL13:
 167 0000 10B5     		push	{r4, lr}
 168              	.LCFI1:
 169              		.cfi_def_cfa_offset 8
 170              		.cfi_offset 4, -8
 171              		.cfi_offset 14, -4
 172              		.loc 1 168 0
 173 0002 1046     		mov	r0, r2
 174              	.LVL14:
 175              		.loc 1 164 0
 176 0004 1446     		mov	r4, r2
 177              		.loc 1 168 0
 178 0006 0021     		movs	r1, #0
 179              	.LVL15:
 180 0008 3C22     		movs	r2, #60
 181              	.LVL16:
 182 000a FFF7FEFF 		bl	memset
 183              	.LVL17:
 184              		.loc 1 169 0
 185 000e 4FF40053 		mov	r3, #8192
 186 0012 6360     		str	r3, [r4, #4]
 187              		.loc 1 171 0
 188 0014 0020     		movs	r0, #0
 189 0016 10BD     		pop	{r4, pc}
 190              		.cfi_endproc
 191              	.LFE12:
 192              		.size	_fstat_r, .-_fstat_r
 193 0018 AFF30080 		.section	.text._isatty_r,"ax",%progbits
 193      AFF30080 
 194              		.align	2
 195              		.p2align 4,,15
 196              		.global	_isatty_r
 197              		.thumb
 198              		.thumb_func
 199              		.type	_isatty_r, %function
 200              	_isatty_r:
 201              	.LFB13:
 202              		.loc 1 176 0
 203              		.cfi_startproc
 204              		@ args = 0, pretend = 0, frame = 0
 205              		@ frame_needed = 0, uses_anonymous_args = 0
 206              		@ link register save eliminated.
 207              	.LVL18:
 208              		.loc 1 181 0
 209 0000 0120     		movs	r0, #1
 210              	.LVL19:
 211 0002 7047     		bx	lr
 212              		.cfi_endproc
 213              	.LFE13:
 214              		.size	_isatty_r, .-_isatty_r
 215 0004 AFF30080 		.section	.text._realloc_r,"ax",%progbits
 215      AFF30080 
 215      AFF30080 
 216              		.align	2
 217              		.p2align 4,,15
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 5


 218              		.global	_realloc_r
 219              		.thumb
 220              		.thumb_func
 221              		.type	_realloc_r, %function
 222              	_realloc_r:
 223              	.LFB14:
 224              		.loc 1 183 0
 225              		.cfi_startproc
 226              		@ args = 0, pretend = 0, frame = 0
 227              		@ frame_needed = 0, uses_anonymous_args = 0
 228              	.LVL20:
 229 0000 70B5     		push	{r4, r5, r6, lr}
 230              	.LCFI2:
 231              		.cfi_def_cfa_offset 16
 232              		.cfi_offset 4, -16
 233              		.cfi_offset 5, -12
 234              		.cfi_offset 6, -8
 235              		.cfi_offset 14, -4
 236              		.loc 1 186 0
 237 0002 0020     		movs	r0, #0
 238              	.LVL21:
 239              		.loc 1 183 0
 240 0004 0D46     		mov	r5, r1
 241              		.loc 1 186 0
 242 0006 1146     		mov	r1, r2
 243              	.LVL22:
 244              		.loc 1 183 0
 245 0008 1446     		mov	r4, r2
 246              		.loc 1 186 0
 247 000a FFF7FEFF 		bl	chHeapAlloc
 248              	.LVL23:
 249              		.loc 1 188 0
 250 000e 0646     		mov	r6, r0
 251 0010 30B1     		cbz	r0, .L12
 252              		.loc 1 192 0
 253 0012 2946     		mov	r1, r5
 254 0014 2246     		mov	r2, r4
 255 0016 FFF7FEFF 		bl	memcpy
 256              	.LVL24:
 257              		.loc 1 194 0
 258 001a 2846     		mov	r0, r5
 259 001c FFF7FEFF 		bl	chHeapFree
 260              	.LVL25:
 261              	.L12:
 262              		.loc 1 197 0
 263 0020 3046     		mov	r0, r6
 264 0022 70BD     		pop	{r4, r5, r6, pc}
 265              		.cfi_endproc
 266              	.LFE14:
 267              		.size	_realloc_r, .-_realloc_r
 268 0024 AFF30080 		.section	.text._calloc_r,"ax",%progbits
 268      AFF30080 
 268      AFF30080 
 269              		.align	2
 270              		.p2align 4,,15
 271              		.global	_calloc_r
 272              		.thumb
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 6


 273              		.thumb_func
 274              		.type	_calloc_r, %function
 275              	_calloc_r:
 276              	.LFB15:
 277              		.loc 1 199 0
 278              		.cfi_startproc
 279              		@ args = 0, pretend = 0, frame = 0
 280              		@ frame_needed = 0, uses_anonymous_args = 0
 281              		@ link register save eliminated.
 282              	.LVL26:
 283              		.loc 1 200 0
 284 0000 01FB02F1 		mul	r1, r1, r2
 285              	.LVL27:
 286 0004 0020     		movs	r0, #0
 287              	.LVL28:
 288              		.loc 1 201 0
 289              		.loc 1 200 0
 290 0006 FFF7FEBF 		b	chHeapAlloc
 291              	.LVL29:
 292              		.cfi_endproc
 293              	.LFE15:
 294              		.size	_calloc_r, .-_calloc_r
 295 000a 00BFAFF3 		.section	.text._malloc_r,"ax",%progbits
 295      0080
 296              		.align	2
 297              		.p2align 4,,15
 298              		.global	_malloc_r
 299              		.thumb
 300              		.thumb_func
 301              		.type	_malloc_r, %function
 302              	_malloc_r:
 303              	.LFB16:
 304              		.loc 1 203 0
 305              		.cfi_startproc
 306              		@ args = 0, pretend = 0, frame = 0
 307              		@ frame_needed = 0, uses_anonymous_args = 0
 308              		@ link register save eliminated.
 309              	.LVL30:
 310              		.loc 1 204 0
 311 0000 0020     		movs	r0, #0
 312              	.LVL31:
 313              		.loc 1 205 0
 314              		.loc 1 204 0
 315 0002 FFF7FEBF 		b	chHeapAlloc
 316              	.LVL32:
 317              		.cfi_endproc
 318              	.LFE16:
 319              		.size	_malloc_r, .-_malloc_r
 320 0006 00BFAFF3 		.section	.text._free_r,"ax",%progbits
 320      0080AFF3 
 320      0080
 321              		.align	2
 322              		.p2align 4,,15
 323              		.global	_free_r
 324              		.thumb
 325              		.thumb_func
 326              		.type	_free_r, %function
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 7


 327              	_free_r:
 328              	.LFB17:
 329              		.loc 1 207 0
 330              		.cfi_startproc
 331              		@ args = 0, pretend = 0, frame = 0
 332              		@ frame_needed = 0, uses_anonymous_args = 0
 333              		@ link register save eliminated.
 334              	.LVL33:
 335              		.loc 1 208 0
 336 0000 0846     		mov	r0, r1
 337              	.LVL34:
 338              		.loc 1 209 0
 339              		.loc 1 208 0
 340 0002 FFF7FEBF 		b	chHeapFree
 341              	.LVL35:
 342              		.cfi_endproc
 343              	.LFE17:
 344              		.size	_free_r, .-_free_r
 345 0006 00BFAFF3 		.text
 345      0080AFF3 
 345      0080
 346              	.Letext0:
 347              		.file 2 "c:\\yagarto-20121222\\bin\\../lib/gcc/arm-none-eabi/4.7.2/include/stddef.h"
 348              		.file 3 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/sys/lock.h"
 349              		.file 4 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/sys/_types.h"
 350              		.file 5 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/sys/reent.h"
 351              		.file 6 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/sys/types.h"
 352              		.file 7 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/sys/stat.h"
 353              		.file 8 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/stdint.h"
 354              		.file 9 "../..//os/ports/GCC/ARMCMx/chtypes.h"
 355              		.file 10 "../..//os/kernel/include/chlists.h"
 356              		.file 11 "../..//os/kernel/include/chthreads.h"
 357              		.file 12 "../..//os/ports/GCC/ARMCMx/chcore_v7m.h"
 358              		.file 13 "../..//os/kernel/include/chmtx.h"
 359              		.file 14 "../..//os/kernel/include/chmemcore.h"
 360              		.file 15 "../..//os/kernel/include/chheap.h"
 361              		.file 16 "c:/yagarto-20121222/lib/gcc/../../arm-none-eabi/sys-include/stdlib.h"
 362              		.section	.debug_info,"",%progbits
 363              	.Ldebug_info0:
 364 0000 44130000 		.4byte	0x1344
 365 0004 0200     		.2byte	0x2
 366 0006 00000000 		.4byte	.Ldebug_abbrev0
 367 000a 04       		.byte	0x4
 368 000b 01       		.uleb128 0x1
 369 000c 6B010000 		.4byte	.LASF221
 370 0010 01       		.byte	0x1
 371 0011 0E050000 		.4byte	.LASF222
 372 0015 84050000 		.4byte	.LASF223
 373 0019 00000000 		.4byte	.Ldebug_ranges0+0
 374 001d 00000000 		.4byte	0
 375 0021 00000000 		.4byte	0
 376 0025 00000000 		.4byte	.Ldebug_line0
 377 0029 02       		.uleb128 0x2
 378 002a 4E020000 		.4byte	.LASF7
 379 002e 02       		.byte	0x2
 380 002f D5       		.byte	0xd5
 381 0030 34000000 		.4byte	0x34
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 8


 382 0034 03       		.uleb128 0x3
 383 0035 04       		.byte	0x4
 384 0036 07       		.byte	0x7
 385 0037 93000000 		.4byte	.LASF0
 386 003b 03       		.uleb128 0x3
 387 003c 01       		.byte	0x1
 388 003d 06       		.byte	0x6
 389 003e 77070000 		.4byte	.LASF1
 390 0042 03       		.uleb128 0x3
 391 0043 01       		.byte	0x1
 392 0044 08       		.byte	0x8
 393 0045 01070000 		.4byte	.LASF2
 394 0049 03       		.uleb128 0x3
 395 004a 02       		.byte	0x2
 396 004b 05       		.byte	0x5
 397 004c 52050000 		.4byte	.LASF3
 398 0050 03       		.uleb128 0x3
 399 0051 02       		.byte	0x2
 400 0052 07       		.byte	0x7
 401 0053 97070000 		.4byte	.LASF4
 402 0057 04       		.uleb128 0x4
 403 0058 04       		.byte	0x4
 404 0059 05       		.byte	0x5
 405 005a 696E7400 		.ascii	"int\000"
 406 005e 03       		.uleb128 0x3
 407 005f 08       		.byte	0x8
 408 0060 05       		.byte	0x5
 409 0061 ED030000 		.4byte	.LASF5
 410 0065 03       		.uleb128 0x3
 411 0066 08       		.byte	0x8
 412 0067 07       		.byte	0x7
 413 0068 C0010000 		.4byte	.LASF6
 414 006c 02       		.uleb128 0x2
 415 006d DA000000 		.4byte	.LASF8
 416 0071 03       		.byte	0x3
 417 0072 07       		.byte	0x7
 418 0073 57000000 		.4byte	0x57
 419 0077 02       		.uleb128 0x2
 420 0078 D6070000 		.4byte	.LASF9
 421 007c 04       		.byte	0x4
 422 007d 10       		.byte	0x10
 423 007e 82000000 		.4byte	0x82
 424 0082 03       		.uleb128 0x3
 425 0083 04       		.byte	0x4
 426 0084 05       		.byte	0x5
 427 0085 7B050000 		.4byte	.LASF10
 428 0089 02       		.uleb128 0x2
 429 008a 17040000 		.4byte	.LASF11
 430 008e 04       		.byte	0x4
 431 008f 18       		.byte	0x18
 432 0090 49000000 		.4byte	0x49
 433 0094 02       		.uleb128 0x2
 434 0095 3D060000 		.4byte	.LASF12
 435 0099 04       		.byte	0x4
 436 009a 1D       		.byte	0x1d
 437 009b 50000000 		.4byte	0x50
 438 009f 02       		.uleb128 0x2
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 9


 439 00a0 EA040000 		.4byte	.LASF13
 440 00a4 04       		.byte	0x4
 441 00a5 20       		.byte	0x20
 442 00a6 50000000 		.4byte	0x50
 443 00aa 02       		.uleb128 0x2
 444 00ab 17010000 		.4byte	.LASF14
 445 00af 04       		.byte	0x4
 446 00b0 2C       		.byte	0x2c
 447 00b1 82000000 		.4byte	0x82
 448 00b5 05       		.uleb128 0x5
 449 00b6 D6060000 		.4byte	.LASF15
 450 00ba 02       		.byte	0x2
 451 00bb 6201     		.2byte	0x162
 452 00bd 34000000 		.4byte	0x34
 453 00c1 06       		.uleb128 0x6
 454 00c2 04       		.byte	0x4
 455 00c3 04       		.byte	0x4
 456 00c4 46       		.byte	0x46
 457 00c5 E0000000 		.4byte	0xe0
 458 00c9 07       		.uleb128 0x7
 459 00ca 7F030000 		.4byte	.LASF16
 460 00ce 04       		.byte	0x4
 461 00cf 48       		.byte	0x48
 462 00d0 B5000000 		.4byte	0xb5
 463 00d4 07       		.uleb128 0x7
 464 00d5 06060000 		.4byte	.LASF17
 465 00d9 04       		.byte	0x4
 466 00da 49       		.byte	0x49
 467 00db E0000000 		.4byte	0xe0
 468 00df 00       		.byte	0
 469 00e0 08       		.uleb128 0x8
 470 00e1 42000000 		.4byte	0x42
 471 00e5 F0000000 		.4byte	0xf0
 472 00e9 09       		.uleb128 0x9
 473 00ea F0000000 		.4byte	0xf0
 474 00ee 03       		.byte	0x3
 475 00ef 00       		.byte	0
 476 00f0 03       		.uleb128 0x3
 477 00f1 04       		.byte	0x4
 478 00f2 07       		.byte	0x7
 479 00f3 AC060000 		.4byte	.LASF18
 480 00f7 0A       		.uleb128 0xa
 481 00f8 08       		.byte	0x8
 482 00f9 04       		.byte	0x4
 483 00fa 43       		.byte	0x43
 484 00fb 1C010000 		.4byte	0x11c
 485 00ff 0B       		.uleb128 0xb
 486 0100 77010000 		.4byte	.LASF19
 487 0104 04       		.byte	0x4
 488 0105 45       		.byte	0x45
 489 0106 57000000 		.4byte	0x57
 490 010a 02       		.byte	0x2
 491 010b 23       		.byte	0x23
 492 010c 00       		.uleb128 0
 493 010d 0B       		.uleb128 0xb
 494 010e BC020000 		.4byte	.LASF20
 495 0112 04       		.byte	0x4
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 10


 496 0113 4A       		.byte	0x4a
 497 0114 C1000000 		.4byte	0xc1
 498 0118 02       		.byte	0x2
 499 0119 23       		.byte	0x23
 500 011a 04       		.uleb128 0x4
 501 011b 00       		.byte	0
 502 011c 02       		.uleb128 0x2
 503 011d 75040000 		.4byte	.LASF21
 504 0121 04       		.byte	0x4
 505 0122 4B       		.byte	0x4b
 506 0123 F7000000 		.4byte	0xf7
 507 0127 02       		.uleb128 0x2
 508 0128 58030000 		.4byte	.LASF22
 509 012c 04       		.byte	0x4
 510 012d 4F       		.byte	0x4f
 511 012e 6C000000 		.4byte	0x6c
 512 0132 0C       		.uleb128 0xc
 513 0133 04       		.byte	0x4
 514 0134 02       		.uleb128 0x2
 515 0135 25040000 		.4byte	.LASF23
 516 0139 05       		.byte	0x5
 517 013a 15       		.byte	0x15
 518 013b 3F010000 		.4byte	0x13f
 519 013f 03       		.uleb128 0x3
 520 0140 04       		.byte	0x4
 521 0141 07       		.byte	0x7
 522 0142 BD060000 		.4byte	.LASF24
 523 0146 0D       		.uleb128 0xd
 524 0147 2C010000 		.4byte	.LASF29
 525 014b 18       		.byte	0x18
 526 014c 05       		.byte	0x5
 527 014d 2C       		.byte	0x2c
 528 014e A5010000 		.4byte	0x1a5
 529 0152 0B       		.uleb128 0xb
 530 0153 80020000 		.4byte	.LASF25
 531 0157 05       		.byte	0x5
 532 0158 2E       		.byte	0x2e
 533 0159 A5010000 		.4byte	0x1a5
 534 015d 02       		.byte	0x2
 535 015e 23       		.byte	0x23
 536 015f 00       		.uleb128 0
 537 0160 0E       		.uleb128 0xe
 538 0161 5F6B00   		.ascii	"_k\000"
 539 0164 05       		.byte	0x5
 540 0165 2F       		.byte	0x2f
 541 0166 57000000 		.4byte	0x57
 542 016a 02       		.byte	0x2
 543 016b 23       		.byte	0x23
 544 016c 04       		.uleb128 0x4
 545 016d 0B       		.uleb128 0xb
 546 016e 65060000 		.4byte	.LASF26
 547 0172 05       		.byte	0x5
 548 0173 2F       		.byte	0x2f
 549 0174 57000000 		.4byte	0x57
 550 0178 02       		.byte	0x2
 551 0179 23       		.byte	0x23
 552 017a 08       		.uleb128 0x8
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 11


 553 017b 0B       		.uleb128 0xb
 554 017c E3050000 		.4byte	.LASF27
 555 0180 05       		.byte	0x5
 556 0181 2F       		.byte	0x2f
 557 0182 57000000 		.4byte	0x57
 558 0186 02       		.byte	0x2
 559 0187 23       		.byte	0x23
 560 0188 0C       		.uleb128 0xc
 561 0189 0B       		.uleb128 0xb
 562 018a F6010000 		.4byte	.LASF28
 563 018e 05       		.byte	0x5
 564 018f 2F       		.byte	0x2f
 565 0190 57000000 		.4byte	0x57
 566 0194 02       		.byte	0x2
 567 0195 23       		.byte	0x23
 568 0196 10       		.uleb128 0x10
 569 0197 0E       		.uleb128 0xe
 570 0198 5F7800   		.ascii	"_x\000"
 571 019b 05       		.byte	0x5
 572 019c 30       		.byte	0x30
 573 019d AB010000 		.4byte	0x1ab
 574 01a1 02       		.byte	0x2
 575 01a2 23       		.byte	0x23
 576 01a3 14       		.uleb128 0x14
 577 01a4 00       		.byte	0
 578 01a5 0F       		.uleb128 0xf
 579 01a6 04       		.byte	0x4
 580 01a7 46010000 		.4byte	0x146
 581 01ab 08       		.uleb128 0x8
 582 01ac 34010000 		.4byte	0x134
 583 01b0 BB010000 		.4byte	0x1bb
 584 01b4 09       		.uleb128 0x9
 585 01b5 F0000000 		.4byte	0xf0
 586 01b9 00       		.byte	0
 587 01ba 00       		.byte	0
 588 01bb 0D       		.uleb128 0xd
 589 01bc 9A060000 		.4byte	.LASF30
 590 01c0 24       		.byte	0x24
 591 01c1 05       		.byte	0x5
 592 01c2 34       		.byte	0x34
 593 01c3 46020000 		.4byte	0x246
 594 01c7 0B       		.uleb128 0xb
 595 01c8 5C020000 		.4byte	.LASF31
 596 01cc 05       		.byte	0x5
 597 01cd 36       		.byte	0x36
 598 01ce 57000000 		.4byte	0x57
 599 01d2 02       		.byte	0x2
 600 01d3 23       		.byte	0x23
 601 01d4 00       		.uleb128 0
 602 01d5 0B       		.uleb128 0xb
 603 01d6 7F010000 		.4byte	.LASF32
 604 01da 05       		.byte	0x5
 605 01db 37       		.byte	0x37
 606 01dc 57000000 		.4byte	0x57
 607 01e0 02       		.byte	0x2
 608 01e1 23       		.byte	0x23
 609 01e2 04       		.uleb128 0x4
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 12


 610 01e3 0B       		.uleb128 0xb
 611 01e4 55010000 		.4byte	.LASF33
 612 01e8 05       		.byte	0x5
 613 01e9 38       		.byte	0x38
 614 01ea 57000000 		.4byte	0x57
 615 01ee 02       		.byte	0x2
 616 01ef 23       		.byte	0x23
 617 01f0 08       		.uleb128 0x8
 618 01f1 0B       		.uleb128 0xb
 619 01f2 15030000 		.4byte	.LASF34
 620 01f6 05       		.byte	0x5
 621 01f7 39       		.byte	0x39
 622 01f8 57000000 		.4byte	0x57
 623 01fc 02       		.byte	0x2
 624 01fd 23       		.byte	0x23
 625 01fe 0C       		.uleb128 0xc
 626 01ff 0B       		.uleb128 0xb
 627 0200 D8040000 		.4byte	.LASF35
 628 0204 05       		.byte	0x5
 629 0205 3A       		.byte	0x3a
 630 0206 57000000 		.4byte	0x57
 631 020a 02       		.byte	0x2
 632 020b 23       		.byte	0x23
 633 020c 10       		.uleb128 0x10
 634 020d 0B       		.uleb128 0xb
 635 020e 24060000 		.4byte	.LASF36
 636 0212 05       		.byte	0x5
 637 0213 3B       		.byte	0x3b
 638 0214 57000000 		.4byte	0x57
 639 0218 02       		.byte	0x2
 640 0219 23       		.byte	0x23
 641 021a 14       		.uleb128 0x14
 642 021b 0B       		.uleb128 0xb
 643 021c 34010000 		.4byte	.LASF37
 644 0220 05       		.byte	0x5
 645 0221 3C       		.byte	0x3c
 646 0222 57000000 		.4byte	0x57
 647 0226 02       		.byte	0x2
 648 0227 23       		.byte	0x23
 649 0228 18       		.uleb128 0x18
 650 0229 0B       		.uleb128 0xb
 651 022a 65020000 		.4byte	.LASF38
 652 022e 05       		.byte	0x5
 653 022f 3D       		.byte	0x3d
 654 0230 57000000 		.4byte	0x57
 655 0234 02       		.byte	0x2
 656 0235 23       		.byte	0x23
 657 0236 1C       		.uleb128 0x1c
 658 0237 0B       		.uleb128 0xb
 659 0238 85040000 		.4byte	.LASF39
 660 023c 05       		.byte	0x5
 661 023d 3E       		.byte	0x3e
 662 023e 57000000 		.4byte	0x57
 663 0242 02       		.byte	0x2
 664 0243 23       		.byte	0x23
 665 0244 20       		.uleb128 0x20
 666 0245 00       		.byte	0
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 13


 667 0246 10       		.uleb128 0x10
 668 0247 2D000000 		.4byte	.LASF40
 669 024b 0801     		.2byte	0x108
 670 024d 05       		.byte	0x5
 671 024e 47       		.byte	0x47
 672 024f 8F020000 		.4byte	0x28f
 673 0253 0B       		.uleb128 0xb
 674 0254 6F070000 		.4byte	.LASF41
 675 0258 05       		.byte	0x5
 676 0259 48       		.byte	0x48
 677 025a 8F020000 		.4byte	0x28f
 678 025e 02       		.byte	0x2
 679 025f 23       		.byte	0x23
 680 0260 00       		.uleb128 0
 681 0261 0B       		.uleb128 0xb
 682 0262 E5060000 		.4byte	.LASF42
 683 0266 05       		.byte	0x5
 684 0267 49       		.byte	0x49
 685 0268 8F020000 		.4byte	0x28f
 686 026c 03       		.byte	0x3
 687 026d 23       		.byte	0x23
 688 026e 8001     		.uleb128 0x80
 689 0270 0B       		.uleb128 0xb
 690 0271 C7070000 		.4byte	.LASF43
 691 0275 05       		.byte	0x5
 692 0276 4B       		.byte	0x4b
 693 0277 34010000 		.4byte	0x134
 694 027b 03       		.byte	0x3
 695 027c 23       		.byte	0x23
 696 027d 8002     		.uleb128 0x100
 697 027f 0B       		.uleb128 0xb
 698 0280 06080000 		.4byte	.LASF44
 699 0284 05       		.byte	0x5
 700 0285 4E       		.byte	0x4e
 701 0286 34010000 		.4byte	0x134
 702 028a 03       		.byte	0x3
 703 028b 23       		.byte	0x23
 704 028c 8402     		.uleb128 0x104
 705 028e 00       		.byte	0
 706 028f 08       		.uleb128 0x8
 707 0290 32010000 		.4byte	0x132
 708 0294 9F020000 		.4byte	0x29f
 709 0298 09       		.uleb128 0x9
 710 0299 F0000000 		.4byte	0xf0
 711 029d 1F       		.byte	0x1f
 712 029e 00       		.byte	0
 713 029f 10       		.uleb128 0x10
 714 02a0 36050000 		.4byte	.LASF45
 715 02a4 9001     		.2byte	0x190
 716 02a6 05       		.byte	0x5
 717 02a7 59       		.byte	0x59
 718 02a8 E6020000 		.4byte	0x2e6
 719 02ac 0B       		.uleb128 0xb
 720 02ad 80020000 		.4byte	.LASF25
 721 02b1 05       		.byte	0x5
 722 02b2 5A       		.byte	0x5a
 723 02b3 E6020000 		.4byte	0x2e6
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 14


 724 02b7 02       		.byte	0x2
 725 02b8 23       		.byte	0x23
 726 02b9 00       		.uleb128 0
 727 02ba 0B       		.uleb128 0xb
 728 02bb 74020000 		.4byte	.LASF46
 729 02bf 05       		.byte	0x5
 730 02c0 5B       		.byte	0x5b
 731 02c1 57000000 		.4byte	0x57
 732 02c5 02       		.byte	0x2
 733 02c6 23       		.byte	0x23
 734 02c7 04       		.uleb128 0x4
 735 02c8 0B       		.uleb128 0xb
 736 02c9 1F010000 		.4byte	.LASF47
 737 02cd 05       		.byte	0x5
 738 02ce 5D       		.byte	0x5d
 739 02cf EC020000 		.4byte	0x2ec
 740 02d3 02       		.byte	0x2
 741 02d4 23       		.byte	0x23
 742 02d5 08       		.uleb128 0x8
 743 02d6 0B       		.uleb128 0xb
 744 02d7 2D000000 		.4byte	.LASF40
 745 02db 05       		.byte	0x5
 746 02dc 5E       		.byte	0x5e
 747 02dd 46020000 		.4byte	0x246
 748 02e1 03       		.byte	0x3
 749 02e2 23       		.byte	0x23
 750 02e3 8801     		.uleb128 0x88
 751 02e5 00       		.byte	0
 752 02e6 0F       		.uleb128 0xf
 753 02e7 04       		.byte	0x4
 754 02e8 9F020000 		.4byte	0x29f
 755 02ec 08       		.uleb128 0x8
 756 02ed FE020000 		.4byte	0x2fe
 757 02f1 FC020000 		.4byte	0x2fc
 758 02f5 09       		.uleb128 0x9
 759 02f6 F0000000 		.4byte	0xf0
 760 02fa 1F       		.byte	0x1f
 761 02fb 00       		.byte	0
 762 02fc 11       		.uleb128 0x11
 763 02fd 01       		.byte	0x1
 764 02fe 0F       		.uleb128 0xf
 765 02ff 04       		.byte	0x4
 766 0300 FC020000 		.4byte	0x2fc
 767 0304 0D       		.uleb128 0xd
 768 0305 30070000 		.4byte	.LASF48
 769 0309 08       		.byte	0x8
 770 030a 05       		.byte	0x5
 771 030b 69       		.byte	0x69
 772 030c 2D030000 		.4byte	0x32d
 773 0310 0B       		.uleb128 0xb
 774 0311 07040000 		.4byte	.LASF49
 775 0315 05       		.byte	0x5
 776 0316 6A       		.byte	0x6a
 777 0317 2D030000 		.4byte	0x32d
 778 031b 02       		.byte	0x2
 779 031c 23       		.byte	0x23
 780 031d 00       		.uleb128 0
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 15


 781 031e 0B       		.uleb128 0xb
 782 031f D0070000 		.4byte	.LASF50
 783 0323 05       		.byte	0x5
 784 0324 6B       		.byte	0x6b
 785 0325 57000000 		.4byte	0x57
 786 0329 02       		.byte	0x2
 787 032a 23       		.byte	0x23
 788 032b 04       		.uleb128 0x4
 789 032c 00       		.byte	0
 790 032d 0F       		.uleb128 0xf
 791 032e 04       		.byte	0x4
 792 032f 42000000 		.4byte	0x42
 793 0333 0D       		.uleb128 0xd
 794 0334 EE010000 		.4byte	.LASF51
 795 0338 68       		.byte	0x68
 796 0339 05       		.byte	0x5
 797 033a A9       		.byte	0xa9
 798 033b 8D040000 		.4byte	0x48d
 799 033f 0E       		.uleb128 0xe
 800 0340 5F7000   		.ascii	"_p\000"
 801 0343 05       		.byte	0x5
 802 0344 AA       		.byte	0xaa
 803 0345 2D030000 		.4byte	0x32d
 804 0349 02       		.byte	0x2
 805 034a 23       		.byte	0x23
 806 034b 00       		.uleb128 0
 807 034c 0E       		.uleb128 0xe
 808 034d 5F7200   		.ascii	"_r\000"
 809 0350 05       		.byte	0x5
 810 0351 AB       		.byte	0xab
 811 0352 57000000 		.4byte	0x57
 812 0356 02       		.byte	0x2
 813 0357 23       		.byte	0x23
 814 0358 04       		.uleb128 0x4
 815 0359 0E       		.uleb128 0xe
 816 035a 5F7700   		.ascii	"_w\000"
 817 035d 05       		.byte	0x5
 818 035e AC       		.byte	0xac
 819 035f 57000000 		.4byte	0x57
 820 0363 02       		.byte	0x2
 821 0364 23       		.byte	0x23
 822 0365 08       		.uleb128 0x8
 823 0366 0B       		.uleb128 0xb
 824 0367 B9000000 		.4byte	.LASF52
 825 036b 05       		.byte	0x5
 826 036c AD       		.byte	0xad
 827 036d 49000000 		.4byte	0x49
 828 0371 02       		.byte	0x2
 829 0372 23       		.byte	0x23
 830 0373 0C       		.uleb128 0xc
 831 0374 0B       		.uleb128 0xb
 832 0375 50040000 		.4byte	.LASF53
 833 0379 05       		.byte	0x5
 834 037a AE       		.byte	0xae
 835 037b 49000000 		.4byte	0x49
 836 037f 02       		.byte	0x2
 837 0380 23       		.byte	0x23
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 16


 838 0381 0E       		.uleb128 0xe
 839 0382 0E       		.uleb128 0xe
 840 0383 5F626600 		.ascii	"_bf\000"
 841 0387 05       		.byte	0x5
 842 0388 AF       		.byte	0xaf
 843 0389 04030000 		.4byte	0x304
 844 038d 02       		.byte	0x2
 845 038e 23       		.byte	0x23
 846 038f 10       		.uleb128 0x10
 847 0390 0B       		.uleb128 0xb
 848 0391 B0000000 		.4byte	.LASF54
 849 0395 05       		.byte	0x5
 850 0396 B0       		.byte	0xb0
 851 0397 57000000 		.4byte	0x57
 852 039b 02       		.byte	0x2
 853 039c 23       		.byte	0x23
 854 039d 18       		.uleb128 0x18
 855 039e 0B       		.uleb128 0xb
 856 039f 24010000 		.4byte	.LASF55
 857 03a3 05       		.byte	0x5
 858 03a4 B7       		.byte	0xb7
 859 03a5 32010000 		.4byte	0x132
 860 03a9 02       		.byte	0x2
 861 03aa 23       		.byte	0x23
 862 03ab 1C       		.uleb128 0x1c
 863 03ac 0B       		.uleb128 0xb
 864 03ad EC000000 		.4byte	.LASF56
 865 03b1 05       		.byte	0x5
 866 03b2 B9       		.byte	0xb9
 867 03b3 1D060000 		.4byte	0x61d
 868 03b7 02       		.byte	0x2
 869 03b8 23       		.byte	0x23
 870 03b9 20       		.uleb128 0x20
 871 03ba 0B       		.uleb128 0xb
 872 03bb F9040000 		.4byte	.LASF57
 873 03bf 05       		.byte	0x5
 874 03c0 BB       		.byte	0xbb
 875 03c1 4D060000 		.4byte	0x64d
 876 03c5 02       		.byte	0x2
 877 03c6 23       		.byte	0x23
 878 03c7 24       		.uleb128 0x24
 879 03c8 0B       		.uleb128 0xb
 880 03c9 28080000 		.4byte	.LASF58
 881 03cd 05       		.byte	0x5
 882 03ce BD       		.byte	0xbd
 883 03cf 72060000 		.4byte	0x672
 884 03d3 02       		.byte	0x2
 885 03d4 23       		.byte	0x23
 886 03d5 28       		.uleb128 0x28
 887 03d6 0B       		.uleb128 0xb
 888 03d7 A6030000 		.4byte	.LASF59
 889 03db 05       		.byte	0x5
 890 03dc BE       		.byte	0xbe
 891 03dd 8D060000 		.4byte	0x68d
 892 03e1 02       		.byte	0x2
 893 03e2 23       		.byte	0x23
 894 03e3 2C       		.uleb128 0x2c
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 17


 895 03e4 0E       		.uleb128 0xe
 896 03e5 5F756200 		.ascii	"_ub\000"
 897 03e9 05       		.byte	0x5
 898 03ea C1       		.byte	0xc1
 899 03eb 04030000 		.4byte	0x304
 900 03ef 02       		.byte	0x2
 901 03f0 23       		.byte	0x23
 902 03f1 30       		.uleb128 0x30
 903 03f2 0E       		.uleb128 0xe
 904 03f3 5F757000 		.ascii	"_up\000"
 905 03f7 05       		.byte	0x5
 906 03f8 C2       		.byte	0xc2
 907 03f9 2D030000 		.4byte	0x32d
 908 03fd 02       		.byte	0x2
 909 03fe 23       		.byte	0x23
 910 03ff 38       		.uleb128 0x38
 911 0400 0E       		.uleb128 0xe
 912 0401 5F757200 		.ascii	"_ur\000"
 913 0405 05       		.byte	0x5
 914 0406 C3       		.byte	0xc3
 915 0407 57000000 		.4byte	0x57
 916 040b 02       		.byte	0x2
 917 040c 23       		.byte	0x23
 918 040d 3C       		.uleb128 0x3c
 919 040e 0B       		.uleb128 0xb
 920 040f 3F080000 		.4byte	.LASF60
 921 0413 05       		.byte	0x5
 922 0414 C6       		.byte	0xc6
 923 0415 93060000 		.4byte	0x693
 924 0419 02       		.byte	0x2
 925 041a 23       		.byte	0x23
 926 041b 40       		.uleb128 0x40
 927 041c 0B       		.uleb128 0xb
 928 041d DD070000 		.4byte	.LASF61
 929 0421 05       		.byte	0x5
 930 0422 C7       		.byte	0xc7
 931 0423 A3060000 		.4byte	0x6a3
 932 0427 02       		.byte	0x2
 933 0428 23       		.byte	0x23
 934 0429 43       		.uleb128 0x43
 935 042a 0E       		.uleb128 0xe
 936 042b 5F6C6200 		.ascii	"_lb\000"
 937 042f 05       		.byte	0x5
 938 0430 CA       		.byte	0xca
 939 0431 04030000 		.4byte	0x304
 940 0435 02       		.byte	0x2
 941 0436 23       		.byte	0x23
 942 0437 44       		.uleb128 0x44
 943 0438 0B       		.uleb128 0xb
 944 0439 91060000 		.4byte	.LASF62
 945 043d 05       		.byte	0x5
 946 043e CD       		.byte	0xcd
 947 043f 57000000 		.4byte	0x57
 948 0443 02       		.byte	0x2
 949 0444 23       		.byte	0x23
 950 0445 4C       		.uleb128 0x4c
 951 0446 0B       		.uleb128 0xb
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 18


 952 0447 1B020000 		.4byte	.LASF63
 953 044b 05       		.byte	0x5
 954 044c CE       		.byte	0xce
 955 044d 57000000 		.4byte	0x57
 956 0451 02       		.byte	0x2
 957 0452 23       		.byte	0x23
 958 0453 50       		.uleb128 0x50
 959 0454 0B       		.uleb128 0xb
 960 0455 00060000 		.4byte	.LASF64
 961 0459 05       		.byte	0x5
 962 045a D1       		.byte	0xd1
 963 045b AC040000 		.4byte	0x4ac
 964 045f 02       		.byte	0x2
 965 0460 23       		.byte	0x23
 966 0461 54       		.uleb128 0x54
 967 0462 0B       		.uleb128 0xb
 968 0463 9F060000 		.4byte	.LASF65
 969 0467 05       		.byte	0x5
 970 0468 D5       		.byte	0xd5
 971 0469 27010000 		.4byte	0x127
 972 046d 02       		.byte	0x2
 973 046e 23       		.byte	0x23
 974 046f 58       		.uleb128 0x58
 975 0470 0B       		.uleb128 0xb
 976 0471 3E050000 		.4byte	.LASF66
 977 0475 05       		.byte	0x5
 978 0476 D7       		.byte	0xd7
 979 0477 1C010000 		.4byte	0x11c
 980 047b 02       		.byte	0x2
 981 047c 23       		.byte	0x23
 982 047d 5C       		.uleb128 0x5c
 983 047e 0B       		.uleb128 0xb
 984 047f F8070000 		.4byte	.LASF67
 985 0483 05       		.byte	0x5
 986 0484 D8       		.byte	0xd8
 987 0485 57000000 		.4byte	0x57
 988 0489 02       		.byte	0x2
 989 048a 23       		.byte	0x23
 990 048b 64       		.uleb128 0x64
 991 048c 00       		.byte	0
 992 048d 12       		.uleb128 0x12
 993 048e 01       		.byte	0x1
 994 048f 57000000 		.4byte	0x57
 995 0493 AC040000 		.4byte	0x4ac
 996 0497 13       		.uleb128 0x13
 997 0498 AC040000 		.4byte	0x4ac
 998 049c 13       		.uleb128 0x13
 999 049d 32010000 		.4byte	0x132
 1000 04a1 13       		.uleb128 0x13
 1001 04a2 10060000 		.4byte	0x610
 1002 04a6 13       		.uleb128 0x13
 1003 04a7 57000000 		.4byte	0x57
 1004 04ab 00       		.byte	0
 1005 04ac 0F       		.uleb128 0xf
 1006 04ad 04       		.byte	0x4
 1007 04ae B2040000 		.4byte	0x4b2
 1008 04b2 14       		.uleb128 0x14
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 19


 1009 04b3 8A070000 		.4byte	.LASF68
 1010 04b7 2804     		.2byte	0x428
 1011 04b9 05       		.byte	0x5
 1012 04ba 4402     		.2byte	0x244
 1013 04bc 10060000 		.4byte	0x610
 1014 04c0 15       		.uleb128 0x15
 1015 04c1 C7000000 		.4byte	.LASF69
 1016 04c5 05       		.byte	0x5
 1017 04c6 4602     		.2byte	0x246
 1018 04c8 57000000 		.4byte	0x57
 1019 04cc 02       		.byte	0x2
 1020 04cd 23       		.byte	0x23
 1021 04ce 00       		.uleb128 0
 1022 04cf 15       		.uleb128 0x15
 1023 04d0 D7030000 		.4byte	.LASF70
 1024 04d4 05       		.byte	0x5
 1025 04d5 4B02     		.2byte	0x24b
 1026 04d7 00070000 		.4byte	0x700
 1027 04db 02       		.byte	0x2
 1028 04dc 23       		.byte	0x23
 1029 04dd 04       		.uleb128 0x4
 1030 04de 15       		.uleb128 0x15
 1031 04df 0F010000 		.4byte	.LASF71
 1032 04e3 05       		.byte	0x5
 1033 04e4 4B02     		.2byte	0x24b
 1034 04e6 00070000 		.4byte	0x700
 1035 04ea 02       		.byte	0x2
 1036 04eb 23       		.byte	0x23
 1037 04ec 08       		.uleb128 0x8
 1038 04ed 15       		.uleb128 0x15
 1039 04ee 2E080000 		.4byte	.LASF72
 1040 04f2 05       		.byte	0x5
 1041 04f3 4B02     		.2byte	0x24b
 1042 04f5 00070000 		.4byte	0x700
 1043 04f9 02       		.byte	0x2
 1044 04fa 23       		.byte	0x23
 1045 04fb 0C       		.uleb128 0xc
 1046 04fc 15       		.uleb128 0x15
 1047 04fd 6F020000 		.4byte	.LASF73
 1048 0501 05       		.byte	0x5
 1049 0502 4D02     		.2byte	0x24d
 1050 0504 57000000 		.4byte	0x57
 1051 0508 02       		.byte	0x2
 1052 0509 23       		.byte	0x23
 1053 050a 10       		.uleb128 0x10
 1054 050b 15       		.uleb128 0x15
 1055 050c 30020000 		.4byte	.LASF74
 1056 0510 05       		.byte	0x5
 1057 0511 4E02     		.2byte	0x24e
 1058 0513 1B090000 		.4byte	0x91b
 1059 0517 02       		.byte	0x2
 1060 0518 23       		.byte	0x23
 1061 0519 14       		.uleb128 0x14
 1062 051a 15       		.uleb128 0x15
 1063 051b 77060000 		.4byte	.LASF75
 1064 051f 05       		.byte	0x5
 1065 0520 5002     		.2byte	0x250
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 20


 1066 0522 57000000 		.4byte	0x57
 1067 0526 02       		.byte	0x2
 1068 0527 23       		.byte	0x23
 1069 0528 30       		.uleb128 0x30
 1070 0529 15       		.uleb128 0x15
 1071 052a E9050000 		.4byte	.LASF76
 1072 052e 05       		.byte	0x5
 1073 052f 5102     		.2byte	0x251
 1074 0531 42060000 		.4byte	0x642
 1075 0535 02       		.byte	0x2
 1076 0536 23       		.byte	0x23
 1077 0537 34       		.uleb128 0x34
 1078 0538 15       		.uleb128 0x15
 1079 0539 BF030000 		.4byte	.LASF77
 1080 053d 05       		.byte	0x5
 1081 053e 5302     		.2byte	0x253
 1082 0540 57000000 		.4byte	0x57
 1083 0544 02       		.byte	0x2
 1084 0545 23       		.byte	0x23
 1085 0546 38       		.uleb128 0x38
 1086 0547 15       		.uleb128 0x15
 1087 0548 6B040000 		.4byte	.LASF78
 1088 054c 05       		.byte	0x5
 1089 054d 5502     		.2byte	0x255
 1090 054f 37090000 		.4byte	0x937
 1091 0553 02       		.byte	0x2
 1092 0554 23       		.byte	0x23
 1093 0555 3C       		.uleb128 0x3c
 1094 0556 15       		.uleb128 0x15
 1095 0557 3E010000 		.4byte	.LASF79
 1096 055b 05       		.byte	0x5
 1097 055c 5802     		.2byte	0x258
 1098 055e A5010000 		.4byte	0x1a5
 1099 0562 02       		.byte	0x2
 1100 0563 23       		.byte	0x23
 1101 0564 40       		.uleb128 0x40
 1102 0565 15       		.uleb128 0x15
 1103 0566 A9010000 		.4byte	.LASF80
 1104 056a 05       		.byte	0x5
 1105 056b 5902     		.2byte	0x259
 1106 056d 57000000 		.4byte	0x57
 1107 0571 02       		.byte	0x2
 1108 0572 23       		.byte	0x23
 1109 0573 44       		.uleb128 0x44
 1110 0574 15       		.uleb128 0x15
 1111 0575 C4020000 		.4byte	.LASF81
 1112 0579 05       		.byte	0x5
 1113 057a 5A02     		.2byte	0x25a
 1114 057c A5010000 		.4byte	0x1a5
 1115 0580 02       		.byte	0x2
 1116 0581 23       		.byte	0x23
 1117 0582 48       		.uleb128 0x48
 1118 0583 15       		.uleb128 0x15
 1119 0584 0D040000 		.4byte	.LASF82
 1120 0588 05       		.byte	0x5
 1121 0589 5B02     		.2byte	0x25b
 1122 058b 3D090000 		.4byte	0x93d
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 21


 1123 058f 02       		.byte	0x2
 1124 0590 23       		.byte	0x23
 1125 0591 4C       		.uleb128 0x4c
 1126 0592 15       		.uleb128 0x15
 1127 0593 5D060000 		.4byte	.LASF83
 1128 0597 05       		.byte	0x5
 1129 0598 5E02     		.2byte	0x25e
 1130 059a 57000000 		.4byte	0x57
 1131 059e 02       		.byte	0x2
 1132 059f 23       		.byte	0x23
 1133 05a0 50       		.uleb128 0x50
 1134 05a1 15       		.uleb128 0x15
 1135 05a2 F9060000 		.4byte	.LASF84
 1136 05a6 05       		.byte	0x5
 1137 05a7 5F02     		.2byte	0x25f
 1138 05a9 10060000 		.4byte	0x610
 1139 05ad 02       		.byte	0x2
 1140 05ae 23       		.byte	0x23
 1141 05af 54       		.uleb128 0x54
 1142 05b0 15       		.uleb128 0x15
 1143 05b1 58060000 		.4byte	.LASF85
 1144 05b5 05       		.byte	0x5
 1145 05b6 8202     		.2byte	0x282
 1146 05b8 F9080000 		.4byte	0x8f9
 1147 05bc 02       		.byte	0x2
 1148 05bd 23       		.byte	0x23
 1149 05be 58       		.uleb128 0x58
 1150 05bf 15       		.uleb128 0x15
 1151 05c0 36050000 		.4byte	.LASF45
 1152 05c4 05       		.byte	0x5
 1153 05c5 8502     		.2byte	0x285
 1154 05c7 E6020000 		.4byte	0x2e6
 1155 05cb 03       		.byte	0x3
 1156 05cc 23       		.byte	0x23
 1157 05cd C802     		.uleb128 0x148
 1158 05cf 15       		.uleb128 0x15
 1159 05d0 38030000 		.4byte	.LASF86
 1160 05d4 05       		.byte	0x5
 1161 05d5 8602     		.2byte	0x286
 1162 05d7 9F020000 		.4byte	0x29f
 1163 05db 03       		.byte	0x3
 1164 05dc 23       		.byte	0x23
 1165 05dd CC02     		.uleb128 0x14c
 1166 05df 15       		.uleb128 0x15
 1167 05e0 1F030000 		.4byte	.LASF87
 1168 05e4 05       		.byte	0x5
 1169 05e5 8902     		.2byte	0x289
 1170 05e7 4F090000 		.4byte	0x94f
 1171 05eb 03       		.byte	0x3
 1172 05ec 23       		.byte	0x23
 1173 05ed DC05     		.uleb128 0x2dc
 1174 05ef 15       		.uleb128 0x15
 1175 05f0 45070000 		.4byte	.LASF88
 1176 05f4 05       		.byte	0x5
 1177 05f5 8E02     		.2byte	0x28e
 1178 05f7 BF060000 		.4byte	0x6bf
 1179 05fb 03       		.byte	0x3
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 22


 1180 05fc 23       		.byte	0x23
 1181 05fd E005     		.uleb128 0x2e0
 1182 05ff 15       		.uleb128 0x15
 1183 0600 DE050000 		.4byte	.LASF89
 1184 0604 05       		.byte	0x5
 1185 0605 8F02     		.2byte	0x28f
 1186 0607 5B090000 		.4byte	0x95b
 1187 060b 03       		.byte	0x3
 1188 060c 23       		.byte	0x23
 1189 060d EC05     		.uleb128 0x2ec
 1190 060f 00       		.byte	0
 1191 0610 0F       		.uleb128 0xf
 1192 0611 04       		.byte	0x4
 1193 0612 16060000 		.4byte	0x616
 1194 0616 03       		.uleb128 0x3
 1195 0617 01       		.byte	0x1
 1196 0618 08       		.byte	0x8
 1197 0619 10030000 		.4byte	.LASF90
 1198 061d 0F       		.uleb128 0xf
 1199 061e 04       		.byte	0x4
 1200 061f 8D040000 		.4byte	0x48d
 1201 0623 12       		.uleb128 0x12
 1202 0624 01       		.byte	0x1
 1203 0625 57000000 		.4byte	0x57
 1204 0629 42060000 		.4byte	0x642
 1205 062d 13       		.uleb128 0x13
 1206 062e AC040000 		.4byte	0x4ac
 1207 0632 13       		.uleb128 0x13
 1208 0633 32010000 		.4byte	0x132
 1209 0637 13       		.uleb128 0x13
 1210 0638 42060000 		.4byte	0x642
 1211 063c 13       		.uleb128 0x13
 1212 063d 57000000 		.4byte	0x57
 1213 0641 00       		.byte	0
 1214 0642 0F       		.uleb128 0xf
 1215 0643 04       		.byte	0x4
 1216 0644 48060000 		.4byte	0x648
 1217 0648 16       		.uleb128 0x16
 1218 0649 16060000 		.4byte	0x616
 1219 064d 0F       		.uleb128 0xf
 1220 064e 04       		.byte	0x4
 1221 064f 23060000 		.4byte	0x623
 1222 0653 12       		.uleb128 0x12
 1223 0654 01       		.byte	0x1
 1224 0655 AA000000 		.4byte	0xaa
 1225 0659 72060000 		.4byte	0x672
 1226 065d 13       		.uleb128 0x13
 1227 065e AC040000 		.4byte	0x4ac
 1228 0662 13       		.uleb128 0x13
 1229 0663 32010000 		.4byte	0x132
 1230 0667 13       		.uleb128 0x13
 1231 0668 AA000000 		.4byte	0xaa
 1232 066c 13       		.uleb128 0x13
 1233 066d 57000000 		.4byte	0x57
 1234 0671 00       		.byte	0
 1235 0672 0F       		.uleb128 0xf
 1236 0673 04       		.byte	0x4
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 23


 1237 0674 53060000 		.4byte	0x653
 1238 0678 12       		.uleb128 0x12
 1239 0679 01       		.byte	0x1
 1240 067a 57000000 		.4byte	0x57
 1241 067e 8D060000 		.4byte	0x68d
 1242 0682 13       		.uleb128 0x13
 1243 0683 AC040000 		.4byte	0x4ac
 1244 0687 13       		.uleb128 0x13
 1245 0688 32010000 		.4byte	0x132
 1246 068c 00       		.byte	0
 1247 068d 0F       		.uleb128 0xf
 1248 068e 04       		.byte	0x4
 1249 068f 78060000 		.4byte	0x678
 1250 0693 08       		.uleb128 0x8
 1251 0694 42000000 		.4byte	0x42
 1252 0698 A3060000 		.4byte	0x6a3
 1253 069c 09       		.uleb128 0x9
 1254 069d F0000000 		.4byte	0xf0
 1255 06a1 02       		.byte	0x2
 1256 06a2 00       		.byte	0
 1257 06a3 08       		.uleb128 0x8
 1258 06a4 42000000 		.4byte	0x42
 1259 06a8 B3060000 		.4byte	0x6b3
 1260 06ac 09       		.uleb128 0x9
 1261 06ad F0000000 		.4byte	0xf0
 1262 06b1 00       		.byte	0
 1263 06b2 00       		.byte	0
 1264 06b3 05       		.uleb128 0x5
 1265 06b4 0C020000 		.4byte	.LASF91
 1266 06b8 05       		.byte	0x5
 1267 06b9 1101     		.2byte	0x111
 1268 06bb 33030000 		.4byte	0x333
 1269 06bf 17       		.uleb128 0x17
 1270 06c0 3F070000 		.4byte	.LASF92
 1271 06c4 0C       		.byte	0xc
 1272 06c5 05       		.byte	0x5
 1273 06c6 1501     		.2byte	0x115
 1274 06c8 FA060000 		.4byte	0x6fa
 1275 06cc 15       		.uleb128 0x15
 1276 06cd 80020000 		.4byte	.LASF25
 1277 06d1 05       		.byte	0x5
 1278 06d2 1701     		.2byte	0x117
 1279 06d4 FA060000 		.4byte	0x6fa
 1280 06d8 02       		.byte	0x2
 1281 06d9 23       		.byte	0x23
 1282 06da 00       		.uleb128 0
 1283 06db 15       		.uleb128 0x15
 1284 06dc CF060000 		.4byte	.LASF93
 1285 06e0 05       		.byte	0x5
 1286 06e1 1801     		.2byte	0x118
 1287 06e3 57000000 		.4byte	0x57
 1288 06e7 02       		.byte	0x2
 1289 06e8 23       		.byte	0x23
 1290 06e9 04       		.uleb128 0x4
 1291 06ea 15       		.uleb128 0x15
 1292 06eb 85030000 		.4byte	.LASF94
 1293 06ef 05       		.byte	0x5
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 24


 1294 06f0 1901     		.2byte	0x119
 1295 06f2 00070000 		.4byte	0x700
 1296 06f6 02       		.byte	0x2
 1297 06f7 23       		.byte	0x23
 1298 06f8 08       		.uleb128 0x8
 1299 06f9 00       		.byte	0
 1300 06fa 0F       		.uleb128 0xf
 1301 06fb 04       		.byte	0x4
 1302 06fc BF060000 		.4byte	0x6bf
 1303 0700 0F       		.uleb128 0xf
 1304 0701 04       		.byte	0x4
 1305 0702 B3060000 		.4byte	0x6b3
 1306 0706 17       		.uleb128 0x17
 1307 0707 A1010000 		.4byte	.LASF95
 1308 070b 0E       		.byte	0xe
 1309 070c 05       		.byte	0x5
 1310 070d 3101     		.2byte	0x131
 1311 070f 41070000 		.4byte	0x741
 1312 0713 15       		.uleb128 0x15
 1313 0714 0E080000 		.4byte	.LASF96
 1314 0718 05       		.byte	0x5
 1315 0719 3201     		.2byte	0x132
 1316 071b 41070000 		.4byte	0x741
 1317 071f 02       		.byte	0x2
 1318 0720 23       		.byte	0x23
 1319 0721 00       		.uleb128 0
 1320 0722 15       		.uleb128 0x15
 1321 0723 1F040000 		.4byte	.LASF97
 1322 0727 05       		.byte	0x5
 1323 0728 3301     		.2byte	0x133
 1324 072a 41070000 		.4byte	0x741
 1325 072e 02       		.byte	0x2
 1326 072f 23       		.byte	0x23
 1327 0730 06       		.uleb128 0x6
 1328 0731 15       		.uleb128 0x15
 1329 0732 23070000 		.4byte	.LASF98
 1330 0736 05       		.byte	0x5
 1331 0737 3401     		.2byte	0x134
 1332 0739 50000000 		.4byte	0x50
 1333 073d 02       		.byte	0x2
 1334 073e 23       		.byte	0x23
 1335 073f 0C       		.uleb128 0xc
 1336 0740 00       		.byte	0
 1337 0741 08       		.uleb128 0x8
 1338 0742 50000000 		.4byte	0x50
 1339 0746 51070000 		.4byte	0x751
 1340 074a 09       		.uleb128 0x9
 1341 074b F0000000 		.4byte	0xf0
 1342 074f 02       		.byte	0x2
 1343 0750 00       		.byte	0
 1344 0751 18       		.uleb128 0x18
 1345 0752 D0       		.byte	0xd0
 1346 0753 05       		.byte	0x5
 1347 0754 6302     		.2byte	0x263
 1348 0756 81080000 		.4byte	0x881
 1349 075a 15       		.uleb128 0x15
 1350 075b E3070000 		.4byte	.LASF99
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 25


 1351 075f 05       		.byte	0x5
 1352 0760 6502     		.2byte	0x265
 1353 0762 34000000 		.4byte	0x34
 1354 0766 02       		.byte	0x2
 1355 0767 23       		.byte	0x23
 1356 0768 00       		.uleb128 0
 1357 0769 15       		.uleb128 0x15
 1358 076a 4D070000 		.4byte	.LASF100
 1359 076e 05       		.byte	0x5
 1360 076f 6602     		.2byte	0x266
 1361 0771 10060000 		.4byte	0x610
 1362 0775 02       		.byte	0x2
 1363 0776 23       		.byte	0x23
 1364 0777 04       		.uleb128 0x4
 1365 0778 15       		.uleb128 0x15
 1366 0779 E1010000 		.4byte	.LASF101
 1367 077d 05       		.byte	0x5
 1368 077e 6702     		.2byte	0x267
 1369 0780 81080000 		.4byte	0x881
 1370 0784 02       		.byte	0x2
 1371 0785 23       		.byte	0x23
 1372 0786 08       		.uleb128 0x8
 1373 0787 15       		.uleb128 0x15
 1374 0788 2E060000 		.4byte	.LASF102
 1375 078c 05       		.byte	0x5
 1376 078d 6802     		.2byte	0x268
 1377 078f BB010000 		.4byte	0x1bb
 1378 0793 02       		.byte	0x2
 1379 0794 23       		.byte	0x23
 1380 0795 24       		.uleb128 0x24
 1381 0796 15       		.uleb128 0x15
 1382 0797 DE030000 		.4byte	.LASF103
 1383 079b 05       		.byte	0x5
 1384 079c 6902     		.2byte	0x269
 1385 079e 57000000 		.4byte	0x57
 1386 07a2 02       		.byte	0x2
 1387 07a3 23       		.byte	0x23
 1388 07a4 48       		.uleb128 0x48
 1389 07a5 15       		.uleb128 0x15
 1390 07a6 14080000 		.4byte	.LASF104
 1391 07aa 05       		.byte	0x5
 1392 07ab 6A02     		.2byte	0x26a
 1393 07ad 65000000 		.4byte	0x65
 1394 07b1 02       		.byte	0x2
 1395 07b2 23       		.byte	0x23
 1396 07b3 50       		.uleb128 0x50
 1397 07b4 15       		.uleb128 0x15
 1398 07b5 53000000 		.4byte	.LASF105
 1399 07b9 05       		.byte	0x5
 1400 07ba 6B02     		.2byte	0x26b
 1401 07bc 06070000 		.4byte	0x706
 1402 07c0 02       		.byte	0x2
 1403 07c1 23       		.byte	0x23
 1404 07c2 58       		.uleb128 0x58
 1405 07c3 15       		.uleb128 0x15
 1406 07c4 F6020000 		.4byte	.LASF106
 1407 07c8 05       		.byte	0x5
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 26


 1408 07c9 6C02     		.2byte	0x26c
 1409 07cb 1C010000 		.4byte	0x11c
 1410 07cf 02       		.byte	0x2
 1411 07d0 23       		.byte	0x23
 1412 07d1 68       		.uleb128 0x68
 1413 07d2 15       		.uleb128 0x15
 1414 07d3 5A070000 		.4byte	.LASF107
 1415 07d7 05       		.byte	0x5
 1416 07d8 6D02     		.2byte	0x26d
 1417 07da 1C010000 		.4byte	0x11c
 1418 07de 02       		.byte	0x2
 1419 07df 23       		.byte	0x23
 1420 07e0 70       		.uleb128 0x70
 1421 07e1 15       		.uleb128 0x15
 1422 07e2 3B000000 		.4byte	.LASF108
 1423 07e6 05       		.byte	0x5
 1424 07e7 6E02     		.2byte	0x26e
 1425 07e9 1C010000 		.4byte	0x11c
 1426 07ed 02       		.byte	0x2
 1427 07ee 23       		.byte	0x23
 1428 07ef 78       		.uleb128 0x78
 1429 07f0 15       		.uleb128 0x15
 1430 07f1 6D060000 		.4byte	.LASF109
 1431 07f5 05       		.byte	0x5
 1432 07f6 6F02     		.2byte	0x26f
 1433 07f8 91080000 		.4byte	0x891
 1434 07fc 03       		.byte	0x3
 1435 07fd 23       		.byte	0x23
 1436 07fe 8001     		.uleb128 0x80
 1437 0800 15       		.uleb128 0x15
 1438 0801 7F000000 		.4byte	.LASF110
 1439 0805 05       		.byte	0x5
 1440 0806 7002     		.2byte	0x270
 1441 0808 A1080000 		.4byte	0x8a1
 1442 080c 03       		.byte	0x3
 1443 080d 23       		.byte	0x23
 1444 080e 8801     		.uleb128 0x88
 1445 0810 15       		.uleb128 0x15
 1446 0811 16070000 		.4byte	.LASF111
 1447 0815 05       		.byte	0x5
 1448 0816 7102     		.2byte	0x271
 1449 0818 57000000 		.4byte	0x57
 1450 081c 03       		.byte	0x3
 1451 081d 23       		.byte	0x23
 1452 081e A001     		.uleb128 0xa0
 1453 0820 15       		.uleb128 0x15
 1454 0821 01010000 		.4byte	.LASF112
 1455 0825 05       		.byte	0x5
 1456 0826 7202     		.2byte	0x272
 1457 0828 1C010000 		.4byte	0x11c
 1458 082c 03       		.byte	0x3
 1459 082d 23       		.byte	0x23
 1460 082e A401     		.uleb128 0xa4
 1461 0830 15       		.uleb128 0x15
 1462 0831 29030000 		.4byte	.LASF113
 1463 0835 05       		.byte	0x5
 1464 0836 7302     		.2byte	0x273
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 27


 1465 0838 1C010000 		.4byte	0x11c
 1466 083c 03       		.byte	0x3
 1467 083d 23       		.byte	0x23
 1468 083e AC01     		.uleb128 0xac
 1469 0840 15       		.uleb128 0x15
 1470 0841 8E020000 		.4byte	.LASF114
 1471 0845 05       		.byte	0x5
 1472 0846 7402     		.2byte	0x274
 1473 0848 1C010000 		.4byte	0x11c
 1474 084c 03       		.byte	0x3
 1475 084d 23       		.byte	0x23
 1476 084e B401     		.uleb128 0xb4
 1477 0850 15       		.uleb128 0x15
 1478 0851 35040000 		.4byte	.LASF115
 1479 0855 05       		.byte	0x5
 1480 0856 7502     		.2byte	0x275
 1481 0858 1C010000 		.4byte	0x11c
 1482 085c 03       		.byte	0x3
 1483 085d 23       		.byte	0x23
 1484 085e BC01     		.uleb128 0xbc
 1485 0860 15       		.uleb128 0x15
 1486 0861 E5020000 		.4byte	.LASF116
 1487 0865 05       		.byte	0x5
 1488 0866 7602     		.2byte	0x276
 1489 0868 1C010000 		.4byte	0x11c
 1490 086c 03       		.byte	0x3
 1491 086d 23       		.byte	0x23
 1492 086e C401     		.uleb128 0xc4
 1493 0870 15       		.uleb128 0x15
 1494 0871 90040000 		.4byte	.LASF117
 1495 0875 05       		.byte	0x5
 1496 0876 7702     		.2byte	0x277
 1497 0878 57000000 		.4byte	0x57
 1498 087c 03       		.byte	0x3
 1499 087d 23       		.byte	0x23
 1500 087e CC01     		.uleb128 0xcc
 1501 0880 00       		.byte	0
 1502 0881 08       		.uleb128 0x8
 1503 0882 16060000 		.4byte	0x616
 1504 0886 91080000 		.4byte	0x891
 1505 088a 09       		.uleb128 0x9
 1506 088b F0000000 		.4byte	0xf0
 1507 088f 19       		.byte	0x19
 1508 0890 00       		.byte	0
 1509 0891 08       		.uleb128 0x8
 1510 0892 16060000 		.4byte	0x616
 1511 0896 A1080000 		.4byte	0x8a1
 1512 089a 09       		.uleb128 0x9
 1513 089b F0000000 		.4byte	0xf0
 1514 089f 07       		.byte	0x7
 1515 08a0 00       		.byte	0
 1516 08a1 08       		.uleb128 0x8
 1517 08a2 16060000 		.4byte	0x616
 1518 08a6 B1080000 		.4byte	0x8b1
 1519 08aa 09       		.uleb128 0x9
 1520 08ab F0000000 		.4byte	0xf0
 1521 08af 17       		.byte	0x17
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 28


 1522 08b0 00       		.byte	0
 1523 08b1 18       		.uleb128 0x18
 1524 08b2 F0       		.byte	0xf0
 1525 08b3 05       		.byte	0x5
 1526 08b4 7C02     		.2byte	0x27c
 1527 08b6 D9080000 		.4byte	0x8d9
 1528 08ba 15       		.uleb128 0x15
 1529 08bb 90010000 		.4byte	.LASF118
 1530 08bf 05       		.byte	0x5
 1531 08c0 7F02     		.2byte	0x27f
 1532 08c2 D9080000 		.4byte	0x8d9
 1533 08c6 02       		.byte	0x2
 1534 08c7 23       		.byte	0x23
 1535 08c8 00       		.uleb128 0
 1536 08c9 15       		.uleb128 0x15
 1537 08ca 36080000 		.4byte	.LASF119
 1538 08ce 05       		.byte	0x5
 1539 08cf 8002     		.2byte	0x280
 1540 08d1 E9080000 		.4byte	0x8e9
 1541 08d5 02       		.byte	0x2
 1542 08d6 23       		.byte	0x23
 1543 08d7 78       		.uleb128 0x78
 1544 08d8 00       		.byte	0
 1545 08d9 08       		.uleb128 0x8
 1546 08da 2D030000 		.4byte	0x32d
 1547 08de E9080000 		.4byte	0x8e9
 1548 08e2 09       		.uleb128 0x9
 1549 08e3 F0000000 		.4byte	0xf0
 1550 08e7 1D       		.byte	0x1d
 1551 08e8 00       		.byte	0
 1552 08e9 08       		.uleb128 0x8
 1553 08ea 34000000 		.4byte	0x34
 1554 08ee F9080000 		.4byte	0x8f9
 1555 08f2 09       		.uleb128 0x9
 1556 08f3 F0000000 		.4byte	0xf0
 1557 08f7 1D       		.byte	0x1d
 1558 08f8 00       		.byte	0
 1559 08f9 19       		.uleb128 0x19
 1560 08fa F0       		.byte	0xf0
 1561 08fb 05       		.byte	0x5
 1562 08fc 6102     		.2byte	0x261
 1563 08fe 1B090000 		.4byte	0x91b
 1564 0902 1A       		.uleb128 0x1a
 1565 0903 8A070000 		.4byte	.LASF68
 1566 0907 05       		.byte	0x5
 1567 0908 7802     		.2byte	0x278
 1568 090a 51070000 		.4byte	0x751
 1569 090e 1A       		.uleb128 0x1a
 1570 090f 28070000 		.4byte	.LASF120
 1571 0913 05       		.byte	0x5
 1572 0914 8102     		.2byte	0x281
 1573 0916 B1080000 		.4byte	0x8b1
 1574 091a 00       		.byte	0
 1575 091b 08       		.uleb128 0x8
 1576 091c 16060000 		.4byte	0x616
 1577 0920 2B090000 		.4byte	0x92b
 1578 0924 09       		.uleb128 0x9
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 29


 1579 0925 F0000000 		.4byte	0xf0
 1580 0929 18       		.byte	0x18
 1581 092a 00       		.byte	0
 1582 092b 1B       		.uleb128 0x1b
 1583 092c 01       		.byte	0x1
 1584 092d 37090000 		.4byte	0x937
 1585 0931 13       		.uleb128 0x13
 1586 0932 AC040000 		.4byte	0x4ac
 1587 0936 00       		.byte	0
 1588 0937 0F       		.uleb128 0xf
 1589 0938 04       		.byte	0x4
 1590 0939 2B090000 		.4byte	0x92b
 1591 093d 0F       		.uleb128 0xf
 1592 093e 04       		.byte	0x4
 1593 093f A5010000 		.4byte	0x1a5
 1594 0943 1B       		.uleb128 0x1b
 1595 0944 01       		.byte	0x1
 1596 0945 4F090000 		.4byte	0x94f
 1597 0949 13       		.uleb128 0x13
 1598 094a 57000000 		.4byte	0x57
 1599 094e 00       		.byte	0
 1600 094f 0F       		.uleb128 0xf
 1601 0950 04       		.byte	0x4
 1602 0951 55090000 		.4byte	0x955
 1603 0955 0F       		.uleb128 0xf
 1604 0956 04       		.byte	0x4
 1605 0957 43090000 		.4byte	0x943
 1606 095b 08       		.uleb128 0x8
 1607 095c B3060000 		.4byte	0x6b3
 1608 0960 6B090000 		.4byte	0x96b
 1609 0964 09       		.uleb128 0x9
 1610 0965 F0000000 		.4byte	0xf0
 1611 0969 02       		.byte	0x2
 1612 096a 00       		.byte	0
 1613 096b 02       		.uleb128 0x2
 1614 096c 93030000 		.4byte	.LASF121
 1615 0970 06       		.byte	0x6
 1616 0971 6E       		.byte	0x6e
 1617 0972 82000000 		.4byte	0x82
 1618 0976 02       		.uleb128 0x2
 1619 0977 89060000 		.4byte	.LASF122
 1620 097b 06       		.byte	0x6
 1621 097c 7F       		.byte	0x7f
 1622 097d 10060000 		.4byte	0x610
 1623 0981 02       		.uleb128 0x2
 1624 0982 46010000 		.4byte	.LASF123
 1625 0986 06       		.byte	0x6
 1626 0987 86       		.byte	0x86
 1627 0988 50000000 		.4byte	0x50
 1628 098c 02       		.uleb128 0x2
 1629 098d 91070000 		.4byte	.LASF124
 1630 0991 06       		.byte	0x6
 1631 0992 A3       		.byte	0xa3
 1632 0993 77000000 		.4byte	0x77
 1633 0997 02       		.uleb128 0x2
 1634 0998 4A040000 		.4byte	.LASF125
 1635 099c 06       		.byte	0x6
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 30


 1636 099d A4       		.byte	0xa4
 1637 099e 89000000 		.4byte	0x89
 1638 09a2 02       		.uleb128 0x2
 1639 09a3 44040000 		.4byte	.LASF126
 1640 09a7 06       		.byte	0x6
 1641 09a8 A5       		.byte	0xa5
 1642 09a9 94000000 		.4byte	0x94
 1643 09ad 02       		.uleb128 0x2
 1644 09ae 08050000 		.4byte	.LASF127
 1645 09b2 06       		.byte	0x6
 1646 09b3 A6       		.byte	0xa6
 1647 09b4 9F000000 		.4byte	0x9f
 1648 09b8 02       		.uleb128 0x2
 1649 09b9 83070000 		.4byte	.LASF128
 1650 09bd 06       		.byte	0x6
 1651 09be C4       		.byte	0xc4
 1652 09bf 34000000 		.4byte	0x34
 1653 09c3 02       		.uleb128 0x2
 1654 09c4 F1060000 		.4byte	.LASF129
 1655 09c8 06       		.byte	0x6
 1656 09c9 C9       		.byte	0xc9
 1657 09ca 50000000 		.4byte	0x50
 1658 09ce 0D       		.uleb128 0xd
 1659 09cf 2B020000 		.4byte	.LASF130
 1660 09d3 3C       		.byte	0x3c
 1661 09d4 07       		.byte	0x7
 1662 09d5 19       		.byte	0x19
 1663 09d6 C90A0000 		.4byte	0xac9
 1664 09da 0B       		.uleb128 0xb
 1665 09db 3B020000 		.4byte	.LASF131
 1666 09df 07       		.byte	0x7
 1667 09e0 1B       		.byte	0x1b
 1668 09e1 97090000 		.4byte	0x997
 1669 09e5 02       		.byte	0x2
 1670 09e6 23       		.byte	0x23
 1671 09e7 00       		.uleb128 0
 1672 09e8 0B       		.uleb128 0xb
 1673 09e9 CA030000 		.4byte	.LASF132
 1674 09ed 07       		.byte	0x7
 1675 09ee 1C       		.byte	0x1c
 1676 09ef 81090000 		.4byte	0x981
 1677 09f3 02       		.byte	0x2
 1678 09f4 23       		.byte	0x23
 1679 09f5 02       		.uleb128 0x2
 1680 09f6 0B       		.uleb128 0xb
 1681 09f7 86020000 		.4byte	.LASF133
 1682 09fb 07       		.byte	0x7
 1683 09fc 1D       		.byte	0x1d
 1684 09fd B8090000 		.4byte	0x9b8
 1685 0a01 02       		.byte	0x2
 1686 0a02 23       		.byte	0x23
 1687 0a03 04       		.uleb128 0x4
 1688 0a04 0B       		.uleb128 0xb
 1689 0a05 9F020000 		.4byte	.LASF134
 1690 0a09 07       		.byte	0x7
 1691 0a0a 1E       		.byte	0x1e
 1692 0a0b C3090000 		.4byte	0x9c3
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 31


 1693 0a0f 02       		.byte	0x2
 1694 0a10 23       		.byte	0x23
 1695 0a11 08       		.uleb128 0x8
 1696 0a12 0B       		.uleb128 0xb
 1697 0a13 41030000 		.4byte	.LASF135
 1698 0a17 07       		.byte	0x7
 1699 0a18 1F       		.byte	0x1f
 1700 0a19 A2090000 		.4byte	0x9a2
 1701 0a1d 02       		.byte	0x2
 1702 0a1e 23       		.byte	0x23
 1703 0a1f 0A       		.uleb128 0xa
 1704 0a20 0B       		.uleb128 0xb
 1705 0a21 79020000 		.4byte	.LASF136
 1706 0a25 07       		.byte	0x7
 1707 0a26 20       		.byte	0x20
 1708 0a27 AD090000 		.4byte	0x9ad
 1709 0a2b 02       		.byte	0x2
 1710 0a2c 23       		.byte	0x23
 1711 0a2d 0C       		.uleb128 0xc
 1712 0a2e 0B       		.uleb128 0xb
 1713 0a2f F0070000 		.4byte	.LASF137
 1714 0a33 07       		.byte	0x7
 1715 0a34 21       		.byte	0x21
 1716 0a35 97090000 		.4byte	0x997
 1717 0a39 02       		.byte	0x2
 1718 0a3a 23       		.byte	0x23
 1719 0a3b 0E       		.uleb128 0xe
 1720 0a3c 0B       		.uleb128 0xb
 1721 0a3d 37070000 		.4byte	.LASF138
 1722 0a41 07       		.byte	0x7
 1723 0a42 22       		.byte	0x22
 1724 0a43 8C090000 		.4byte	0x98c
 1725 0a47 02       		.byte	0x2
 1726 0a48 23       		.byte	0x23
 1727 0a49 10       		.uleb128 0x10
 1728 0a4a 0B       		.uleb128 0xb
 1729 0a4b 61030000 		.4byte	.LASF139
 1730 0a4f 07       		.byte	0x7
 1731 0a50 30       		.byte	0x30
 1732 0a51 6B090000 		.4byte	0x96b
 1733 0a55 02       		.byte	0x2
 1734 0a56 23       		.byte	0x23
 1735 0a57 14       		.uleb128 0x14
 1736 0a58 0B       		.uleb128 0xb
 1737 0a59 99040000 		.4byte	.LASF140
 1738 0a5d 07       		.byte	0x7
 1739 0a5e 31       		.byte	0x31
 1740 0a5f 82000000 		.4byte	0x82
 1741 0a63 02       		.byte	0x2
 1742 0a64 23       		.byte	0x23
 1743 0a65 18       		.uleb128 0x18
 1744 0a66 0B       		.uleb128 0xb
 1745 0a67 03020000 		.4byte	.LASF141
 1746 0a6b 07       		.byte	0x7
 1747 0a6c 32       		.byte	0x32
 1748 0a6d 6B090000 		.4byte	0x96b
 1749 0a71 02       		.byte	0x2
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 32


 1750 0a72 23       		.byte	0x23
 1751 0a73 1C       		.uleb128 0x1c
 1752 0a74 0B       		.uleb128 0xb
 1753 0a75 A3040000 		.4byte	.LASF142
 1754 0a79 07       		.byte	0x7
 1755 0a7a 33       		.byte	0x33
 1756 0a7b 82000000 		.4byte	0x82
 1757 0a7f 02       		.byte	0x2
 1758 0a80 23       		.byte	0x23
 1759 0a81 20       		.uleb128 0x20
 1760 0a82 0B       		.uleb128 0xb
 1761 0a83 45060000 		.4byte	.LASF143
 1762 0a87 07       		.byte	0x7
 1763 0a88 34       		.byte	0x34
 1764 0a89 6B090000 		.4byte	0x96b
 1765 0a8d 02       		.byte	0x2
 1766 0a8e 23       		.byte	0x23
 1767 0a8f 24       		.uleb128 0x24
 1768 0a90 0B       		.uleb128 0xb
 1769 0a91 AD040000 		.4byte	.LASF144
 1770 0a95 07       		.byte	0x7
 1771 0a96 35       		.byte	0x35
 1772 0a97 82000000 		.4byte	0x82
 1773 0a9b 02       		.byte	0x2
 1774 0a9c 23       		.byte	0x23
 1775 0a9d 28       		.uleb128 0x28
 1776 0a9e 0B       		.uleb128 0xb
 1777 0a9f A5000000 		.4byte	.LASF145
 1778 0aa3 07       		.byte	0x7
 1779 0aa4 36       		.byte	0x36
 1780 0aa5 82000000 		.4byte	0x82
 1781 0aa9 02       		.byte	0x2
 1782 0aaa 23       		.byte	0x23
 1783 0aab 2C       		.uleb128 0x2c
 1784 0aac 0B       		.uleb128 0xb
 1785 0aad D7010000 		.4byte	.LASF146
 1786 0ab1 07       		.byte	0x7
 1787 0ab2 37       		.byte	0x37
 1788 0ab3 82000000 		.4byte	0x82
 1789 0ab7 02       		.byte	0x2
 1790 0ab8 23       		.byte	0x23
 1791 0ab9 30       		.uleb128 0x30
 1792 0aba 0B       		.uleb128 0xb
 1793 0abb B7040000 		.4byte	.LASF147
 1794 0abf 07       		.byte	0x7
 1795 0ac0 38       		.byte	0x38
 1796 0ac1 C90A0000 		.4byte	0xac9
 1797 0ac5 02       		.byte	0x2
 1798 0ac6 23       		.byte	0x23
 1799 0ac7 34       		.uleb128 0x34
 1800 0ac8 00       		.byte	0
 1801 0ac9 08       		.uleb128 0x8
 1802 0aca 82000000 		.4byte	0x82
 1803 0ace D90A0000 		.4byte	0xad9
 1804 0ad2 09       		.uleb128 0x9
 1805 0ad3 F0000000 		.4byte	0xf0
 1806 0ad7 01       		.byte	0x1
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 33


 1807 0ad8 00       		.byte	0
 1808 0ad9 02       		.uleb128 0x2
 1809 0ada 8B030000 		.4byte	.LASF148
 1810 0ade 08       		.byte	0x8
 1811 0adf 2A       		.byte	0x2a
 1812 0ae0 42000000 		.4byte	0x42
 1813 0ae4 02       		.uleb128 0x2
 1814 0ae5 DD060000 		.4byte	.LASF149
 1815 0ae9 08       		.byte	0x8
 1816 0aea 4F       		.byte	0x4f
 1817 0aeb 82000000 		.4byte	0x82
 1818 0aef 02       		.uleb128 0x2
 1819 0af0 4C010000 		.4byte	.LASF150
 1820 0af4 08       		.byte	0x8
 1821 0af5 50       		.byte	0x50
 1822 0af6 3F010000 		.4byte	0x13f
 1823 0afa 02       		.uleb128 0x2
 1824 0afb 0D060000 		.4byte	.LASF151
 1825 0aff 08       		.byte	0x8
 1826 0b00 78       		.byte	0x78
 1827 0b01 65000000 		.4byte	0x65
 1828 0b05 02       		.uleb128 0x2
 1829 0b06 D0040000 		.4byte	.LASF152
 1830 0b0a 09       		.byte	0x9
 1831 0b0b 2F       		.byte	0x2f
 1832 0b0c D90A0000 		.4byte	0xad9
 1833 0b10 02       		.uleb128 0x2
 1834 0b11 4F030000 		.4byte	.LASF153
 1835 0b15 09       		.byte	0x9
 1836 0b16 30       		.byte	0x30
 1837 0b17 D90A0000 		.4byte	0xad9
 1838 0b1b 02       		.uleb128 0x2
 1839 0b1c B5060000 		.4byte	.LASF154
 1840 0b20 09       		.byte	0x9
 1841 0b21 31       		.byte	0x31
 1842 0b22 D90A0000 		.4byte	0xad9
 1843 0b26 02       		.uleb128 0x2
 1844 0b27 88010000 		.4byte	.LASF155
 1845 0b2b 09       		.byte	0x9
 1846 0b2c 32       		.byte	0x32
 1847 0b2d EF0A0000 		.4byte	0xaef
 1848 0b31 02       		.uleb128 0x2
 1849 0b32 5E040000 		.4byte	.LASF156
 1850 0b36 09       		.byte	0x9
 1851 0b37 33       		.byte	0x33
 1852 0b38 E40A0000 		.4byte	0xae4
 1853 0b3c 02       		.uleb128 0x2
 1854 0b3d 5F010000 		.4byte	.LASF157
 1855 0b41 09       		.byte	0x9
 1856 0b42 35       		.byte	0x35
 1857 0b43 EF0A0000 		.4byte	0xaef
 1858 0b47 02       		.uleb128 0x2
 1859 0b48 49000000 		.4byte	.LASF158
 1860 0b4c 09       		.byte	0x9
 1861 0b4d 36       		.byte	0x36
 1862 0b4e EF0A0000 		.4byte	0xaef
 1863 0b52 02       		.uleb128 0x2
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 34


 1864 0b53 48030000 		.4byte	.LASF159
 1865 0b57 0A       		.byte	0xa
 1866 0b58 2A       		.byte	0x2a
 1867 0b59 5D0B0000 		.4byte	0xb5d
 1868 0b5d 0D       		.uleb128 0xd
 1869 0b5e 48030000 		.4byte	.LASF159
 1870 0b62 48       		.byte	0x48
 1871 0b63 0B       		.byte	0xb
 1872 0b64 5E       		.byte	0x5e
 1873 0b65 740C0000 		.4byte	0xc74
 1874 0b69 0B       		.uleb128 0xb
 1875 0b6a F9050000 		.4byte	.LASF160
 1876 0b6e 0B       		.byte	0xb
 1877 0b6f 5F       		.byte	0x5f
 1878 0b70 990C0000 		.4byte	0xc99
 1879 0b74 02       		.byte	0x2
 1880 0b75 23       		.byte	0x23
 1881 0b76 00       		.uleb128 0
 1882 0b77 0B       		.uleb128 0xb
 1883 0b78 A5060000 		.4byte	.LASF161
 1884 0b7c 0B       		.byte	0xb
 1885 0b7d 61       		.byte	0x61
 1886 0b7e 990C0000 		.4byte	0xc99
 1887 0b82 02       		.byte	0x2
 1888 0b83 23       		.byte	0x23
 1889 0b84 04       		.uleb128 0x4
 1890 0b85 0B       		.uleb128 0xb
 1891 0b86 26000000 		.4byte	.LASF162
 1892 0b8a 0B       		.byte	0xb
 1893 0b8b 63       		.byte	0x63
 1894 0b8c 260B0000 		.4byte	0xb26
 1895 0b90 02       		.byte	0x2
 1896 0b91 23       		.byte	0x23
 1897 0b92 08       		.uleb128 0x8
 1898 0b93 0B       		.uleb128 0xb
 1899 0b94 16060000 		.4byte	.LASF163
 1900 0b98 0B       		.byte	0xb
 1901 0b99 64       		.byte	0x64
 1902 0b9a 6F0D0000 		.4byte	0xd6f
 1903 0b9e 02       		.byte	0x2
 1904 0b9f 23       		.byte	0x23
 1905 0ba0 0C       		.uleb128 0xc
 1906 0ba1 0B       		.uleb128 0xb
 1907 0ba2 23020000 		.4byte	.LASF164
 1908 0ba6 0B       		.byte	0xb
 1909 0ba7 66       		.byte	0x66
 1910 0ba8 990C0000 		.4byte	0xc99
 1911 0bac 02       		.byte	0x2
 1912 0bad 23       		.byte	0x23
 1913 0bae 10       		.uleb128 0x10
 1914 0baf 0B       		.uleb128 0xb
 1915 0bb0 6A030000 		.4byte	.LASF165
 1916 0bb4 0B       		.byte	0xb
 1917 0bb5 67       		.byte	0x67
 1918 0bb6 990C0000 		.4byte	0xc99
 1919 0bba 02       		.byte	0x2
 1920 0bbb 23       		.byte	0x23
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 35


 1921 0bbc 14       		.uleb128 0x14
 1922 0bbd 0B       		.uleb128 0xb
 1923 0bbe C9020000 		.4byte	.LASF166
 1924 0bc2 0B       		.byte	0xb
 1925 0bc3 6E       		.byte	0x6e
 1926 0bc4 42060000 		.4byte	0x642
 1927 0bc8 02       		.byte	0x2
 1928 0bc9 23       		.byte	0x23
 1929 0bca 18       		.uleb128 0x18
 1930 0bcb 0B       		.uleb128 0xb
 1931 0bcc 72030000 		.4byte	.LASF167
 1932 0bd0 0B       		.byte	0xb
 1933 0bd1 79       		.byte	0x79
 1934 0bd2 100B0000 		.4byte	0xb10
 1935 0bd6 02       		.byte	0x2
 1936 0bd7 23       		.byte	0x23
 1937 0bd8 1C       		.uleb128 0x1c
 1938 0bd9 0B       		.uleb128 0xb
 1939 0bda 56040000 		.4byte	.LASF168
 1940 0bde 0B       		.byte	0xb
 1941 0bdf 7D       		.byte	0x7d
 1942 0be0 050B0000 		.4byte	0xb05
 1943 0be4 02       		.byte	0x2
 1944 0be5 23       		.byte	0x23
 1945 0be6 1D       		.uleb128 0x1d
 1946 0be7 0B       		.uleb128 0xb
 1947 0be8 0F070000 		.4byte	.LASF169
 1948 0bec 0B       		.byte	0xb
 1949 0bed 82       		.byte	0x82
 1950 0bee 1B0B0000 		.4byte	0xb1b
 1951 0bf2 02       		.byte	0x2
 1952 0bf3 23       		.byte	0x23
 1953 0bf4 1E       		.uleb128 0x1e
 1954 0bf5 0B       		.uleb128 0xb
 1955 0bf6 16000000 		.4byte	.LASF170
 1956 0bfa 0B       		.byte	0xb
 1957 0bfb 89       		.byte	0x89
 1958 0bfc 920D0000 		.4byte	0xd92
 1959 0c00 02       		.byte	0x2
 1960 0c01 23       		.byte	0x23
 1961 0c02 20       		.uleb128 0x20
 1962 0c03 0E       		.uleb128 0xe
 1963 0c04 705F7500 		.ascii	"p_u\000"
 1964 0c08 0B       		.byte	0xb
 1965 0c09 AE       		.byte	0xae
 1966 0c0a B10E0000 		.4byte	0xeb1
 1967 0c0e 02       		.byte	0x2
 1968 0c0f 23       		.byte	0x23
 1969 0c10 24       		.uleb128 0x24
 1970 0c11 0B       		.uleb128 0xb
 1971 0c12 0C000000 		.4byte	.LASF171
 1972 0c16 0B       		.byte	0xb
 1973 0c17 B3       		.byte	0xb3
 1974 0c18 C10C0000 		.4byte	0xcc1
 1975 0c1c 02       		.byte	0x2
 1976 0c1d 23       		.byte	0x23
 1977 0c1e 28       		.uleb128 0x28
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 36


 1978 0c1f 0B       		.uleb128 0xb
 1979 0c20 74000000 		.4byte	.LASF172
 1980 0c24 0B       		.byte	0xb
 1981 0c25 B9       		.byte	0xb9
 1982 0c26 9F0C0000 		.4byte	0xc9f
 1983 0c2a 02       		.byte	0x2
 1984 0c2b 23       		.byte	0x23
 1985 0c2c 2C       		.uleb128 0x2c
 1986 0c2d 0B       		.uleb128 0xb
 1987 0c2e CA040000 		.4byte	.LASF173
 1988 0c32 0B       		.byte	0xb
 1989 0c33 BD       		.byte	0xbd
 1990 0c34 310B0000 		.4byte	0xb31
 1991 0c38 02       		.byte	0x2
 1992 0c39 23       		.byte	0x23
 1993 0c3a 34       		.uleb128 0x34
 1994 0c3b 0B       		.uleb128 0xb
 1995 0c3c 68050000 		.4byte	.LASF174
 1996 0c40 0B       		.byte	0xb
 1997 0c41 C3       		.byte	0xc3
 1998 0c42 3C0B0000 		.4byte	0xb3c
 1999 0c46 02       		.byte	0x2
 2000 0c47 23       		.byte	0x23
 2001 0c48 38       		.uleb128 0x38
 2002 0c49 0B       		.uleb128 0xb
 2003 0c4a B5030000 		.4byte	.LASF175
 2004 0c4e 0B       		.byte	0xb
 2005 0c4f CA       		.byte	0xca
 2006 0c50 E60E0000 		.4byte	0xee6
 2007 0c54 02       		.byte	0x2
 2008 0c55 23       		.byte	0x23
 2009 0c56 3C       		.uleb128 0x3c
 2010 0c57 0B       		.uleb128 0xb
 2011 0c58 47050000 		.4byte	.LASF176
 2012 0c5c 0B       		.byte	0xb
 2013 0c5d CE       		.byte	0xce
 2014 0c5e 260B0000 		.4byte	0xb26
 2015 0c62 02       		.byte	0x2
 2016 0c63 23       		.byte	0x23
 2017 0c64 40       		.uleb128 0x40
 2018 0c65 0B       		.uleb128 0xb
 2019 0c66 AD030000 		.4byte	.LASF177
 2020 0c6a 0B       		.byte	0xb
 2021 0c6b D4       		.byte	0xd4
 2022 0c6c 32010000 		.4byte	0x132
 2023 0c70 02       		.byte	0x2
 2024 0c71 23       		.byte	0x23
 2025 0c72 44       		.uleb128 0x44
 2026 0c73 00       		.byte	0
 2027 0c74 0A       		.uleb128 0xa
 2028 0c75 08       		.byte	0x8
 2029 0c76 0A       		.byte	0xa
 2030 0c77 61       		.byte	0x61
 2031 0c78 990C0000 		.4byte	0xc99
 2032 0c7c 0B       		.uleb128 0xb
 2033 0c7d F9050000 		.4byte	.LASF160
 2034 0c81 0A       		.byte	0xa
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 37


 2035 0c82 62       		.byte	0x62
 2036 0c83 990C0000 		.4byte	0xc99
 2037 0c87 02       		.byte	0x2
 2038 0c88 23       		.byte	0x23
 2039 0c89 00       		.uleb128 0
 2040 0c8a 0B       		.uleb128 0xb
 2041 0c8b A5060000 		.4byte	.LASF161
 2042 0c8f 0A       		.byte	0xa
 2043 0c90 64       		.byte	0x64
 2044 0c91 990C0000 		.4byte	0xc99
 2045 0c95 02       		.byte	0x2
 2046 0c96 23       		.byte	0x23
 2047 0c97 04       		.uleb128 0x4
 2048 0c98 00       		.byte	0
 2049 0c99 0F       		.uleb128 0xf
 2050 0c9a 04       		.byte	0x4
 2051 0c9b 520B0000 		.4byte	0xb52
 2052 0c9f 02       		.uleb128 0x2
 2053 0ca0 03030000 		.4byte	.LASF178
 2054 0ca4 0A       		.byte	0xa
 2055 0ca5 66       		.byte	0x66
 2056 0ca6 740C0000 		.4byte	0xc74
 2057 0caa 0A       		.uleb128 0xa
 2058 0cab 04       		.byte	0x4
 2059 0cac 0A       		.byte	0xa
 2060 0cad 6B       		.byte	0x6b
 2061 0cae C10C0000 		.4byte	0xcc1
 2062 0cb2 0B       		.uleb128 0xb
 2063 0cb3 F9050000 		.4byte	.LASF160
 2064 0cb7 0A       		.byte	0xa
 2065 0cb8 6D       		.byte	0x6d
 2066 0cb9 990C0000 		.4byte	0xc99
 2067 0cbd 02       		.byte	0x2
 2068 0cbe 23       		.byte	0x23
 2069 0cbf 00       		.uleb128 0
 2070 0cc0 00       		.byte	0
 2071 0cc1 02       		.uleb128 0x2
 2072 0cc2 00000000 		.4byte	.LASF179
 2073 0cc6 0A       		.byte	0xa
 2074 0cc7 70       		.byte	0x70
 2075 0cc8 AA0C0000 		.4byte	0xcaa
 2076 0ccc 02       		.uleb128 0x2
 2077 0ccd 1D000000 		.4byte	.LASF180
 2078 0cd1 0C       		.byte	0xc
 2079 0cd2 D7       		.byte	0xd7
 2080 0cd3 32010000 		.4byte	0x132
 2081 0cd7 02       		.uleb128 0x2
 2082 0cd8 AA070000 		.4byte	.LASF181
 2083 0cdc 0C       		.byte	0xc
 2084 0cdd DD       		.byte	0xdd
 2085 0cde FA0A0000 		.4byte	0xafa
 2086 0ce2 0D       		.uleb128 0xd
 2087 0ce3 F2040000 		.4byte	.LASF182
 2088 0ce7 24       		.byte	0x24
 2089 0ce8 0C       		.byte	0xc
 2090 0ce9 FE       		.byte	0xfe
 2091 0cea 6F0D0000 		.4byte	0xd6f
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 38


 2092 0cee 1C       		.uleb128 0x1c
 2093 0cef 723400   		.ascii	"r4\000"
 2094 0cf2 0C       		.byte	0xc
 2095 0cf3 1101     		.2byte	0x111
 2096 0cf5 CC0C0000 		.4byte	0xccc
 2097 0cf9 02       		.byte	0x2
 2098 0cfa 23       		.byte	0x23
 2099 0cfb 00       		.uleb128 0
 2100 0cfc 1C       		.uleb128 0x1c
 2101 0cfd 723500   		.ascii	"r5\000"
 2102 0d00 0C       		.byte	0xc
 2103 0d01 1201     		.2byte	0x112
 2104 0d03 CC0C0000 		.4byte	0xccc
 2105 0d07 02       		.byte	0x2
 2106 0d08 23       		.byte	0x23
 2107 0d09 04       		.uleb128 0x4
 2108 0d0a 1C       		.uleb128 0x1c
 2109 0d0b 723600   		.ascii	"r6\000"
 2110 0d0e 0C       		.byte	0xc
 2111 0d0f 1301     		.2byte	0x113
 2112 0d11 CC0C0000 		.4byte	0xccc
 2113 0d15 02       		.byte	0x2
 2114 0d16 23       		.byte	0x23
 2115 0d17 08       		.uleb128 0x8
 2116 0d18 1C       		.uleb128 0x1c
 2117 0d19 723700   		.ascii	"r7\000"
 2118 0d1c 0C       		.byte	0xc
 2119 0d1d 1401     		.2byte	0x114
 2120 0d1f CC0C0000 		.4byte	0xccc
 2121 0d23 02       		.byte	0x2
 2122 0d24 23       		.byte	0x23
 2123 0d25 0C       		.uleb128 0xc
 2124 0d26 1C       		.uleb128 0x1c
 2125 0d27 723800   		.ascii	"r8\000"
 2126 0d2a 0C       		.byte	0xc
 2127 0d2b 1501     		.2byte	0x115
 2128 0d2d CC0C0000 		.4byte	0xccc
 2129 0d31 02       		.byte	0x2
 2130 0d32 23       		.byte	0x23
 2131 0d33 10       		.uleb128 0x10
 2132 0d34 1C       		.uleb128 0x1c
 2133 0d35 723900   		.ascii	"r9\000"
 2134 0d38 0C       		.byte	0xc
 2135 0d39 1601     		.2byte	0x116
 2136 0d3b CC0C0000 		.4byte	0xccc
 2137 0d3f 02       		.byte	0x2
 2138 0d40 23       		.byte	0x23
 2139 0d41 14       		.uleb128 0x14
 2140 0d42 1C       		.uleb128 0x1c
 2141 0d43 72313000 		.ascii	"r10\000"
 2142 0d47 0C       		.byte	0xc
 2143 0d48 1701     		.2byte	0x117
 2144 0d4a CC0C0000 		.4byte	0xccc
 2145 0d4e 02       		.byte	0x2
 2146 0d4f 23       		.byte	0x23
 2147 0d50 18       		.uleb128 0x18
 2148 0d51 1C       		.uleb128 0x1c
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 39


 2149 0d52 72313100 		.ascii	"r11\000"
 2150 0d56 0C       		.byte	0xc
 2151 0d57 1801     		.2byte	0x118
 2152 0d59 CC0C0000 		.4byte	0xccc
 2153 0d5d 02       		.byte	0x2
 2154 0d5e 23       		.byte	0x23
 2155 0d5f 1C       		.uleb128 0x1c
 2156 0d60 1C       		.uleb128 0x1c
 2157 0d61 6C7200   		.ascii	"lr\000"
 2158 0d64 0C       		.byte	0xc
 2159 0d65 1901     		.2byte	0x119
 2160 0d67 CC0C0000 		.4byte	0xccc
 2161 0d6b 02       		.byte	0x2
 2162 0d6c 23       		.byte	0x23
 2163 0d6d 20       		.uleb128 0x20
 2164 0d6e 00       		.byte	0
 2165 0d6f 17       		.uleb128 0x17
 2166 0d70 2D040000 		.4byte	.LASF183
 2167 0d74 04       		.byte	0x4
 2168 0d75 0C       		.byte	0xc
 2169 0d76 2301     		.2byte	0x123
 2170 0d78 8C0D0000 		.4byte	0xd8c
 2171 0d7c 1C       		.uleb128 0x1c
 2172 0d7d 72313300 		.ascii	"r13\000"
 2173 0d81 0C       		.byte	0xc
 2174 0d82 2401     		.2byte	0x124
 2175 0d84 8C0D0000 		.4byte	0xd8c
 2176 0d88 02       		.byte	0x2
 2177 0d89 23       		.byte	0x23
 2178 0d8a 00       		.uleb128 0
 2179 0d8b 00       		.byte	0
 2180 0d8c 0F       		.uleb128 0xf
 2181 0d8d 04       		.byte	0x4
 2182 0d8e E20C0000 		.4byte	0xce2
 2183 0d92 1D       		.uleb128 0x1d
 2184 0d93 470B0000 		.4byte	0xb47
 2185 0d97 0D       		.uleb128 0xd
 2186 0d98 B1020000 		.4byte	.LASF184
 2187 0d9c 10       		.byte	0x10
 2188 0d9d 0D       		.byte	0xd
 2189 0d9e 2C       		.byte	0x2c
 2190 0d9f CE0D0000 		.4byte	0xdce
 2191 0da3 0B       		.uleb128 0xb
 2192 0da4 73050000 		.4byte	.LASF185
 2193 0da8 0D       		.byte	0xd
 2194 0da9 2D       		.byte	0x2d
 2195 0daa 9F0C0000 		.4byte	0xc9f
 2196 0dae 02       		.byte	0x2
 2197 0daf 23       		.byte	0x23
 2198 0db0 00       		.uleb128 0
 2199 0db1 0B       		.uleb128 0xb
 2200 0db2 61000000 		.4byte	.LASF186
 2201 0db6 0D       		.byte	0xd
 2202 0db7 2F       		.byte	0x2f
 2203 0db8 990C0000 		.4byte	0xc99
 2204 0dbc 02       		.byte	0x2
 2205 0dbd 23       		.byte	0x23
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 40


 2206 0dbe 08       		.uleb128 0x8
 2207 0dbf 0B       		.uleb128 0xb
 2208 0dc0 68070000 		.4byte	.LASF187
 2209 0dc4 0D       		.byte	0xd
 2210 0dc5 31       		.byte	0x31
 2211 0dc6 CE0D0000 		.4byte	0xdce
 2212 0dca 02       		.byte	0x2
 2213 0dcb 23       		.byte	0x23
 2214 0dcc 0C       		.uleb128 0xc
 2215 0dcd 00       		.byte	0
 2216 0dce 0F       		.uleb128 0xf
 2217 0dcf 04       		.byte	0x4
 2218 0dd0 970D0000 		.4byte	0xd97
 2219 0dd4 02       		.uleb128 0x2
 2220 0dd5 B1020000 		.4byte	.LASF184
 2221 0dd9 0D       		.byte	0xd
 2222 0dda 33       		.byte	0x33
 2223 0ddb 970D0000 		.4byte	0xd97
 2224 0ddf 02       		.uleb128 0x2
 2225 0de0 B3010000 		.4byte	.LASF188
 2226 0de4 0E       		.byte	0xe
 2227 0de5 2C       		.byte	0x2c
 2228 0de6 EA0D0000 		.4byte	0xdea
 2229 0dea 0F       		.uleb128 0xf
 2230 0deb 04       		.byte	0x4
 2231 0dec F00D0000 		.4byte	0xdf0
 2232 0df0 12       		.uleb128 0x12
 2233 0df1 01       		.byte	0x1
 2234 0df2 32010000 		.4byte	0x132
 2235 0df6 000E0000 		.4byte	0xe00
 2236 0dfa 13       		.uleb128 0x13
 2237 0dfb 29000000 		.4byte	0x29
 2238 0dff 00       		.byte	0
 2239 0e00 02       		.uleb128 0x2
 2240 0e01 B5070000 		.4byte	.LASF189
 2241 0e05 0F       		.byte	0xf
 2242 0e06 34       		.byte	0x34
 2243 0e07 0B0E0000 		.4byte	0xe0b
 2244 0e0b 0D       		.uleb128 0xd
 2245 0e0c 5C050000 		.4byte	.LASF190
 2246 0e10 20       		.byte	0x20
 2247 0e11 0F       		.byte	0xf
 2248 0e12 47       		.byte	0x47
 2249 0e13 420E0000 		.4byte	0xe42
 2250 0e17 0B       		.uleb128 0xb
 2251 0e18 DA020000 		.4byte	.LASF191
 2252 0e1c 0F       		.byte	0xf
 2253 0e1d 48       		.byte	0x48
 2254 0e1e DF0D0000 		.4byte	0xddf
 2255 0e22 02       		.byte	0x2
 2256 0e23 23       		.byte	0x23
 2257 0e24 00       		.uleb128 0
 2258 0e25 0B       		.uleb128 0xb
 2259 0e26 C0000000 		.4byte	.LASF192
 2260 0e2a 0F       		.byte	0xf
 2261 0e2b 4A       		.byte	0x4a
 2262 0e2c 610E0000 		.4byte	0xe61
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 41


 2263 0e30 02       		.byte	0x2
 2264 0e31 23       		.byte	0x23
 2265 0e32 08       		.uleb128 0x8
 2266 0e33 0B       		.uleb128 0xb
 2267 0e34 D1030000 		.4byte	.LASF193
 2268 0e38 0F       		.byte	0xf
 2269 0e39 4C       		.byte	0x4c
 2270 0e3a D40D0000 		.4byte	0xdd4
 2271 0e3e 02       		.byte	0x2
 2272 0e3f 23       		.byte	0x23
 2273 0e40 10       		.uleb128 0x10
 2274 0e41 00       		.byte	0
 2275 0e42 06       		.uleb128 0x6
 2276 0e43 04       		.byte	0x4
 2277 0e44 0F       		.byte	0xf
 2278 0e45 3C       		.byte	0x3c
 2279 0e46 610E0000 		.4byte	0xe61
 2280 0e4a 07       		.uleb128 0x7
 2281 0e4b A0000000 		.4byte	.LASF194
 2282 0e4f 0F       		.byte	0xf
 2283 0e50 3D       		.byte	0x3d
 2284 0e51 820E0000 		.4byte	0xe82
 2285 0e55 07       		.uleb128 0x7
 2286 0e56 CE000000 		.4byte	.LASF195
 2287 0e5a 0F       		.byte	0xf
 2288 0e5b 3E       		.byte	0x3e
 2289 0e5c 880E0000 		.4byte	0xe88
 2290 0e60 00       		.byte	0
 2291 0e61 1E       		.uleb128 0x1e
 2292 0e62 42020000 		.4byte	.LASF224
 2293 0e66 08       		.byte	0x8
 2294 0e67 0F       		.byte	0xf
 2295 0e68 39       		.byte	0x39
 2296 0e69 820E0000 		.4byte	0xe82
 2297 0e6d 07       		.uleb128 0x7
 2298 0e6e 00080000 		.4byte	.LASF196
 2299 0e72 0F       		.byte	0xf
 2300 0e73 3A       		.byte	0x3a
 2301 0e74 D70C0000 		.4byte	0xcd7
 2302 0e78 1F       		.uleb128 0x1f
 2303 0e79 6800     		.ascii	"h\000"
 2304 0e7b 0F       		.byte	0xf
 2305 0e7c 41       		.byte	0x41
 2306 0e7d 8E0E0000 		.4byte	0xe8e
 2307 0e81 00       		.byte	0
 2308 0e82 0F       		.uleb128 0xf
 2309 0e83 04       		.byte	0x4
 2310 0e84 610E0000 		.4byte	0xe61
 2311 0e88 0F       		.uleb128 0xf
 2312 0e89 04       		.byte	0x4
 2313 0e8a 000E0000 		.4byte	0xe00
 2314 0e8e 0A       		.uleb128 0xa
 2315 0e8f 08       		.byte	0x8
 2316 0e90 0F       		.byte	0xf
 2317 0e91 3B       		.byte	0x3b
 2318 0e92 B10E0000 		.4byte	0xeb1
 2319 0e96 0E       		.uleb128 0xe
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 42


 2320 0e97 7500     		.ascii	"u\000"
 2321 0e99 0F       		.byte	0xf
 2322 0e9a 3F       		.byte	0x3f
 2323 0e9b 420E0000 		.4byte	0xe42
 2324 0e9f 02       		.byte	0x2
 2325 0ea0 23       		.byte	0x23
 2326 0ea1 00       		.uleb128 0
 2327 0ea2 0B       		.uleb128 0xb
 2328 0ea3 80040000 		.4byte	.LASF197
 2329 0ea7 0F       		.byte	0xf
 2330 0ea8 40       		.byte	0x40
 2331 0ea9 29000000 		.4byte	0x29
 2332 0ead 02       		.byte	0x2
 2333 0eae 23       		.byte	0x23
 2334 0eaf 04       		.uleb128 0x4
 2335 0eb0 00       		.byte	0
 2336 0eb1 06       		.uleb128 0x6
 2337 0eb2 04       		.byte	0x4
 2338 0eb3 0B       		.byte	0xb
 2339 0eb4 90       		.byte	0x90
 2340 0eb5 E60E0000 		.4byte	0xee6
 2341 0eb9 07       		.uleb128 0x7
 2342 0eba 55020000 		.4byte	.LASF198
 2343 0ebe 0B       		.byte	0xb
 2344 0ebf 97       		.byte	0x97
 2345 0ec0 310B0000 		.4byte	0xb31
 2346 0ec4 07       		.uleb128 0x7
 2347 0ec5 1F080000 		.4byte	.LASF199
 2348 0ec9 0B       		.byte	0xb
 2349 0eca 9E       		.byte	0x9e
 2350 0ecb 310B0000 		.4byte	0xb31
 2351 0ecf 07       		.uleb128 0x7
 2352 0ed0 D3000000 		.4byte	.LASF200
 2353 0ed4 0B       		.byte	0xb
 2354 0ed5 A5       		.byte	0xa5
 2355 0ed6 32010000 		.4byte	0x132
 2356 0eda 07       		.uleb128 0x7
 2357 0edb FA000000 		.4byte	.LASF201
 2358 0edf 0B       		.byte	0xb
 2359 0ee0 AC       		.byte	0xac
 2360 0ee1 3C0B0000 		.4byte	0xb3c
 2361 0ee5 00       		.byte	0
 2362 0ee6 0F       		.uleb128 0xf
 2363 0ee7 04       		.byte	0x4
 2364 0ee8 D40D0000 		.4byte	0xdd4
 2365 0eec 20       		.uleb128 0x20
 2366 0eed 01       		.byte	0x1
 2367 0eee 00050000 		.4byte	.LASF203
 2368 0ef2 01       		.byte	0x1
 2369 0ef3 51       		.byte	0x51
 2370 0ef4 01       		.byte	0x1
 2371 0ef5 57000000 		.4byte	0x57
 2372 0ef9 00000000 		.4byte	.LFB7
 2373 0efd 0A000000 		.4byte	.LFE7
 2374 0f01 02       		.byte	0x2
 2375 0f02 7D       		.byte	0x7d
 2376 0f03 00       		.sleb128 0
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 43


 2377 0f04 01       		.byte	0x1
 2378 0f05 400F0000 		.4byte	0xf40
 2379 0f09 21       		.uleb128 0x21
 2380 0f0a 7200     		.ascii	"r\000"
 2381 0f0c 01       		.byte	0x1
 2382 0f0d 51       		.byte	0x51
 2383 0f0e AC040000 		.4byte	0x4ac
 2384 0f12 00000000 		.4byte	.LLST0
 2385 0f16 22       		.uleb128 0x22
 2386 0f17 7A030000 		.4byte	.LASF202
 2387 0f1b 01       		.byte	0x1
 2388 0f1c 51       		.byte	0x51
 2389 0f1d 57000000 		.4byte	0x57
 2390 0f21 01       		.byte	0x1
 2391 0f22 51       		.byte	0x51
 2392 0f23 23       		.uleb128 0x23
 2393 0f24 70747200 		.ascii	"ptr\000"
 2394 0f28 01       		.byte	0x1
 2395 0f29 51       		.byte	0x51
 2396 0f2a 10060000 		.4byte	0x610
 2397 0f2e 01       		.byte	0x1
 2398 0f2f 52       		.byte	0x52
 2399 0f30 21       		.uleb128 0x21
 2400 0f31 6C656E00 		.ascii	"len\000"
 2401 0f35 01       		.byte	0x1
 2402 0f36 51       		.byte	0x51
 2403 0f37 57000000 		.4byte	0x57
 2404 0f3b 21000000 		.4byte	.LLST1
 2405 0f3f 00       		.byte	0
 2406 0f40 20       		.uleb128 0x20
 2407 0f41 01       		.byte	0x1
 2408 0f42 E1040000 		.4byte	.LASF204
 2409 0f46 01       		.byte	0x1
 2410 0f47 66       		.byte	0x66
 2411 0f48 01       		.byte	0x1
 2412 0f49 57000000 		.4byte	0x57
 2413 0f4d 00000000 		.4byte	.LFB8
 2414 0f51 04000000 		.4byte	.LFE8
 2415 0f55 02       		.byte	0x2
 2416 0f56 7D       		.byte	0x7d
 2417 0f57 00       		.sleb128 0
 2418 0f58 01       		.byte	0x1
 2419 0f59 920F0000 		.4byte	0xf92
 2420 0f5d 21       		.uleb128 0x21
 2421 0f5e 7200     		.ascii	"r\000"
 2422 0f60 01       		.byte	0x1
 2423 0f61 66       		.byte	0x66
 2424 0f62 AC040000 		.4byte	0x4ac
 2425 0f66 42000000 		.4byte	.LLST2
 2426 0f6a 22       		.uleb128 0x22
 2427 0f6b 7A030000 		.4byte	.LASF202
 2428 0f6f 01       		.byte	0x1
 2429 0f70 66       		.byte	0x66
 2430 0f71 57000000 		.4byte	0x57
 2431 0f75 01       		.byte	0x1
 2432 0f76 51       		.byte	0x51
 2433 0f77 23       		.uleb128 0x23
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 44


 2434 0f78 70747200 		.ascii	"ptr\000"
 2435 0f7c 01       		.byte	0x1
 2436 0f7d 66       		.byte	0x66
 2437 0f7e 57000000 		.4byte	0x57
 2438 0f82 01       		.byte	0x1
 2439 0f83 52       		.byte	0x52
 2440 0f84 23       		.uleb128 0x23
 2441 0f85 64697200 		.ascii	"dir\000"
 2442 0f89 01       		.byte	0x1
 2443 0f8a 66       		.byte	0x66
 2444 0f8b 57000000 		.4byte	0x57
 2445 0f8f 01       		.byte	0x1
 2446 0f90 53       		.byte	0x53
 2447 0f91 00       		.byte	0
 2448 0f92 20       		.uleb128 0x20
 2449 0f93 01       		.byte	0x1
 2450 0f94 58000000 		.4byte	.LASF205
 2451 0f98 01       		.byte	0x1
 2452 0f99 72       		.byte	0x72
 2453 0f9a 01       		.byte	0x1
 2454 0f9b 57000000 		.4byte	0x57
 2455 0f9f 00000000 		.4byte	.LFB9
 2456 0fa3 04000000 		.4byte	.LFE9
 2457 0fa7 02       		.byte	0x2
 2458 0fa8 7D       		.byte	0x7d
 2459 0fa9 00       		.sleb128 0
 2460 0faa 01       		.byte	0x1
 2461 0fab E40F0000 		.4byte	0xfe4
 2462 0faf 21       		.uleb128 0x21
 2463 0fb0 7200     		.ascii	"r\000"
 2464 0fb2 01       		.byte	0x1
 2465 0fb3 72       		.byte	0x72
 2466 0fb4 AC040000 		.4byte	0x4ac
 2467 0fb8 63000000 		.4byte	.LLST3
 2468 0fbc 22       		.uleb128 0x22
 2469 0fbd 7A030000 		.4byte	.LASF202
 2470 0fc1 01       		.byte	0x1
 2471 0fc2 72       		.byte	0x72
 2472 0fc3 57000000 		.4byte	0x57
 2473 0fc7 01       		.byte	0x1
 2474 0fc8 51       		.byte	0x51
 2475 0fc9 23       		.uleb128 0x23
 2476 0fca 70747200 		.ascii	"ptr\000"
 2477 0fce 01       		.byte	0x1
 2478 0fcf 72       		.byte	0x72
 2479 0fd0 10060000 		.4byte	0x610
 2480 0fd4 01       		.byte	0x1
 2481 0fd5 52       		.byte	0x52
 2482 0fd6 23       		.uleb128 0x23
 2483 0fd7 6C656E00 		.ascii	"len\000"
 2484 0fdb 01       		.byte	0x1
 2485 0fdc 72       		.byte	0x72
 2486 0fdd 57000000 		.4byte	0x57
 2487 0fe1 01       		.byte	0x1
 2488 0fe2 53       		.byte	0x53
 2489 0fe3 00       		.byte	0
 2490 0fe4 20       		.uleb128 0x20
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 45


 2491 0fe5 01       		.byte	0x1
 2492 0fe6 C1040000 		.4byte	.LASF206
 2493 0fea 01       		.byte	0x1
 2494 0feb 83       		.byte	0x83
 2495 0fec 01       		.byte	0x1
 2496 0fed 57000000 		.4byte	0x57
 2497 0ff1 00000000 		.4byte	.LFB10
 2498 0ff5 04000000 		.4byte	.LFE10
 2499 0ff9 02       		.byte	0x2
 2500 0ffa 7D       		.byte	0x7d
 2501 0ffb 00       		.sleb128 0
 2502 0ffc 01       		.byte	0x1
 2503 0ffd 1C100000 		.4byte	0x101c
 2504 1001 21       		.uleb128 0x21
 2505 1002 7200     		.ascii	"r\000"
 2506 1004 01       		.byte	0x1
 2507 1005 83       		.byte	0x83
 2508 1006 AC040000 		.4byte	0x4ac
 2509 100a 84000000 		.4byte	.LLST4
 2510 100e 22       		.uleb128 0x22
 2511 100f 7A030000 		.4byte	.LASF202
 2512 1013 01       		.byte	0x1
 2513 1014 83       		.byte	0x83
 2514 1015 57000000 		.4byte	0x57
 2515 1019 01       		.byte	0x1
 2516 101a 51       		.byte	0x51
 2517 101b 00       		.byte	0
 2518 101c 24       		.uleb128 0x24
 2519 101d 01       		.byte	0x1
 2520 101e FB010000 		.4byte	.LASF207
 2521 1022 01       		.byte	0x1
 2522 1023 8D       		.byte	0x8d
 2523 1024 01       		.byte	0x1
 2524 1025 76090000 		.4byte	0x976
 2525 1029 00000000 		.4byte	.LFB11
 2526 102d 18000000 		.4byte	.LFE11
 2527 1031 A5000000 		.4byte	.LLST5
 2528 1035 01       		.byte	0x1
 2529 1036 75100000 		.4byte	0x1075
 2530 103a 21       		.uleb128 0x21
 2531 103b 7200     		.ascii	"r\000"
 2532 103d 01       		.byte	0x1
 2533 103e 8D       		.byte	0x8d
 2534 103f AC040000 		.4byte	0x4ac
 2535 1043 C5000000 		.4byte	.LLST6
 2536 1047 25       		.uleb128 0x25
 2537 1048 B7020000 		.4byte	.LASF208
 2538 104c 01       		.byte	0x1
 2539 104d 8D       		.byte	0x8d
 2540 104e 57000000 		.4byte	0x57
 2541 1052 E3000000 		.4byte	.LLST7
 2542 1056 26       		.uleb128 0x26
 2543 1057 7000     		.ascii	"p\000"
 2544 1059 01       		.byte	0x1
 2545 105a 90       		.byte	0x90
 2546 105b 32010000 		.4byte	0x132
 2547 105f 04010000 		.4byte	.LLST8
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 46


 2548 1063 27       		.uleb128 0x27
 2549 1064 0A000000 		.4byte	.LVL11
 2550 1068 B9120000 		.4byte	0x12b9
 2551 106c 28       		.uleb128 0x28
 2552 106d 01       		.byte	0x1
 2553 106e 50       		.byte	0x50
 2554 106f 03       		.byte	0x3
 2555 1070 F3       		.byte	0xf3
 2556 1071 01       		.uleb128 0x1
 2557 1072 51       		.byte	0x51
 2558 1073 00       		.byte	0
 2559 1074 00       		.byte	0
 2560 1075 24       		.uleb128 0x24
 2561 1076 01       		.byte	0x1
 2562 1077 A8020000 		.4byte	.LASF209
 2563 107b 01       		.byte	0x1
 2564 107c A3       		.byte	0xa3
 2565 107d 01       		.byte	0x1
 2566 107e 57000000 		.4byte	0x57
 2567 1082 00000000 		.4byte	.LFB12
 2568 1086 18000000 		.4byte	.LFE12
 2569 108a 17010000 		.4byte	.LLST9
 2570 108e 01       		.byte	0x1
 2571 108f D9100000 		.4byte	0x10d9
 2572 1093 21       		.uleb128 0x21
 2573 1094 7200     		.ascii	"r\000"
 2574 1096 01       		.byte	0x1
 2575 1097 A3       		.byte	0xa3
 2576 1098 AC040000 		.4byte	0x4ac
 2577 109c 37010000 		.4byte	.LLST10
 2578 10a0 25       		.uleb128 0x25
 2579 10a1 7A030000 		.4byte	.LASF202
 2580 10a5 01       		.byte	0x1
 2581 10a6 A3       		.byte	0xa3
 2582 10a7 57000000 		.4byte	0x57
 2583 10ab 58010000 		.4byte	.LLST11
 2584 10af 21       		.uleb128 0x21
 2585 10b0 737400   		.ascii	"st\000"
 2586 10b3 01       		.byte	0x1
 2587 10b4 A3       		.byte	0xa3
 2588 10b5 D9100000 		.4byte	0x10d9
 2589 10b9 79010000 		.4byte	.LLST12
 2590 10bd 27       		.uleb128 0x27
 2591 10be 0E000000 		.4byte	.LVL17
 2592 10c2 D1120000 		.4byte	0x12d1
 2593 10c6 28       		.uleb128 0x28
 2594 10c7 01       		.byte	0x1
 2595 10c8 52       		.byte	0x52
 2596 10c9 02       		.byte	0x2
 2597 10ca 08       		.byte	0x8
 2598 10cb 3C       		.byte	0x3c
 2599 10cc 28       		.uleb128 0x28
 2600 10cd 01       		.byte	0x1
 2601 10ce 51       		.byte	0x51
 2602 10cf 01       		.byte	0x1
 2603 10d0 30       		.byte	0x30
 2604 10d1 28       		.uleb128 0x28
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 47


 2605 10d2 01       		.byte	0x1
 2606 10d3 50       		.byte	0x50
 2607 10d4 02       		.byte	0x2
 2608 10d5 74       		.byte	0x74
 2609 10d6 00       		.sleb128 0
 2610 10d7 00       		.byte	0
 2611 10d8 00       		.byte	0
 2612 10d9 0F       		.uleb128 0xf
 2613 10da 04       		.byte	0x4
 2614 10db CE090000 		.4byte	0x9ce
 2615 10df 20       		.uleb128 0x20
 2616 10e0 01       		.byte	0x1
 2617 10e1 97010000 		.4byte	.LASF210
 2618 10e5 01       		.byte	0x1
 2619 10e6 AF       		.byte	0xaf
 2620 10e7 01       		.byte	0x1
 2621 10e8 57000000 		.4byte	0x57
 2622 10ec 00000000 		.4byte	.LFB13
 2623 10f0 04000000 		.4byte	.LFE13
 2624 10f4 02       		.byte	0x2
 2625 10f5 7D       		.byte	0x7d
 2626 10f6 00       		.sleb128 0
 2627 10f7 01       		.byte	0x1
 2628 10f8 16110000 		.4byte	0x1116
 2629 10fc 21       		.uleb128 0x21
 2630 10fd 7200     		.ascii	"r\000"
 2631 10ff 01       		.byte	0x1
 2632 1100 AF       		.byte	0xaf
 2633 1101 AC040000 		.4byte	0x4ac
 2634 1105 A2010000 		.4byte	.LLST13
 2635 1109 23       		.uleb128 0x23
 2636 110a 666400   		.ascii	"fd\000"
 2637 110d 01       		.byte	0x1
 2638 110e AF       		.byte	0xaf
 2639 110f 57000000 		.4byte	0x57
 2640 1113 01       		.byte	0x1
 2641 1114 51       		.byte	0x51
 2642 1115 00       		.byte	0
 2643 1116 24       		.uleb128 0x24
 2644 1117 01       		.byte	0x1
 2645 1118 2B050000 		.4byte	.LASF211
 2646 111c 10       		.byte	0x10
 2647 111d D3       		.byte	0xd3
 2648 111e 01       		.byte	0x1
 2649 111f 32010000 		.4byte	0x132
 2650 1123 00000000 		.4byte	.LFB14
 2651 1127 24000000 		.4byte	.LFE14
 2652 112b C3010000 		.4byte	.LLST14
 2653 112f 01       		.byte	0x1
 2654 1130 B9110000 		.4byte	0x11b9
 2655 1134 21       		.uleb128 0x21
 2656 1135 726500   		.ascii	"re\000"
 2657 1138 01       		.byte	0x1
 2658 1139 B7       		.byte	0xb7
 2659 113a AC040000 		.4byte	0x4ac
 2660 113e E3010000 		.4byte	.LLST15
 2661 1142 25       		.uleb128 0x25
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 48


 2662 1143 1C060000 		.4byte	.LASF212
 2663 1147 01       		.byte	0x1
 2664 1148 B7       		.byte	0xb7
 2665 1149 32010000 		.4byte	0x132
 2666 114d 04020000 		.4byte	.LLST16
 2667 1151 25       		.uleb128 0x25
 2668 1152 8B000000 		.4byte	.LASF213
 2669 1156 01       		.byte	0x1
 2670 1157 B7       		.byte	0xb7
 2671 1158 29000000 		.4byte	0x29
 2672 115c 22020000 		.4byte	.LLST17
 2673 1160 29       		.uleb128 0x29
 2674 1161 13020000 		.4byte	.LASF214
 2675 1165 01       		.byte	0x1
 2676 1166 B8       		.byte	0xb8
 2677 1167 32010000 		.4byte	0x132
 2678 116b 40020000 		.4byte	.LLST18
 2679 116f 2A       		.uleb128 0x2a
 2680 1170 0E000000 		.4byte	.LVL23
 2681 1174 F2120000 		.4byte	0x12f2
 2682 1178 88110000 		.4byte	0x1188
 2683 117c 28       		.uleb128 0x28
 2684 117d 01       		.byte	0x1
 2685 117e 51       		.byte	0x51
 2686 117f 02       		.byte	0x2
 2687 1180 74       		.byte	0x74
 2688 1181 00       		.sleb128 0
 2689 1182 28       		.uleb128 0x28
 2690 1183 01       		.byte	0x1
 2691 1184 50       		.byte	0x50
 2692 1185 01       		.byte	0x1
 2693 1186 30       		.byte	0x30
 2694 1187 00       		.byte	0
 2695 1188 2A       		.uleb128 0x2a
 2696 1189 1A000000 		.4byte	.LVL24
 2697 118d 0F130000 		.4byte	0x130f
 2698 1191 A8110000 		.4byte	0x11a8
 2699 1195 28       		.uleb128 0x28
 2700 1196 01       		.byte	0x1
 2701 1197 52       		.byte	0x52
 2702 1198 02       		.byte	0x2
 2703 1199 74       		.byte	0x74
 2704 119a 00       		.sleb128 0
 2705 119b 28       		.uleb128 0x28
 2706 119c 01       		.byte	0x1
 2707 119d 51       		.byte	0x51
 2708 119e 02       		.byte	0x2
 2709 119f 75       		.byte	0x75
 2710 11a0 00       		.sleb128 0
 2711 11a1 28       		.uleb128 0x28
 2712 11a2 01       		.byte	0x1
 2713 11a3 50       		.byte	0x50
 2714 11a4 02       		.byte	0x2
 2715 11a5 76       		.byte	0x76
 2716 11a6 00       		.sleb128 0
 2717 11a7 00       		.byte	0
 2718 11a8 27       		.uleb128 0x27
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 49


 2719 11a9 20000000 		.4byte	.LVL25
 2720 11ad 37130000 		.4byte	0x1337
 2721 11b1 28       		.uleb128 0x28
 2722 11b2 01       		.byte	0x1
 2723 11b3 50       		.byte	0x50
 2724 11b4 02       		.byte	0x2
 2725 11b5 75       		.byte	0x75
 2726 11b6 00       		.sleb128 0
 2727 11b7 00       		.byte	0
 2728 11b8 00       		.byte	0
 2729 11b9 20       		.uleb128 0x20
 2730 11ba 01       		.byte	0x1
 2731 11bb 4E060000 		.4byte	.LASF215
 2732 11bf 10       		.byte	0x10
 2733 11c0 D1       		.byte	0xd1
 2734 11c1 01       		.byte	0x1
 2735 11c2 32010000 		.4byte	0x132
 2736 11c6 00000000 		.4byte	.LFB15
 2737 11ca 0A000000 		.4byte	.LFE15
 2738 11ce 02       		.byte	0x2
 2739 11cf 7D       		.byte	0x7d
 2740 11d0 00       		.sleb128 0
 2741 11d1 01       		.byte	0x1
 2742 11d2 1E120000 		.4byte	0x121e
 2743 11d6 21       		.uleb128 0x21
 2744 11d7 726500   		.ascii	"re\000"
 2745 11da 01       		.byte	0x1
 2746 11db C7       		.byte	0xc7
 2747 11dc AC040000 		.4byte	0x4ac
 2748 11e0 5E020000 		.4byte	.LLST19
 2749 11e4 21       		.uleb128 0x21
 2750 11e5 6E756D00 		.ascii	"num\000"
 2751 11e9 01       		.byte	0x1
 2752 11ea C7       		.byte	0xc7
 2753 11eb 29000000 		.4byte	0x29
 2754 11ef 7F020000 		.4byte	.LLST20
 2755 11f3 25       		.uleb128 0x25
 2756 11f4 80040000 		.4byte	.LASF197
 2757 11f8 01       		.byte	0x1
 2758 11f9 C7       		.byte	0xc7
 2759 11fa 29000000 		.4byte	0x29
 2760 11fe A0020000 		.4byte	.LLST21
 2761 1202 2B       		.uleb128 0x2b
 2762 1203 0A000000 		.4byte	.LVL29
 2763 1207 01       		.byte	0x1
 2764 1208 F2120000 		.4byte	0x12f2
 2765 120c 28       		.uleb128 0x28
 2766 120d 01       		.byte	0x1
 2767 120e 51       		.byte	0x51
 2768 120f 07       		.byte	0x7
 2769 1210 F3       		.byte	0xf3
 2770 1211 01       		.uleb128 0x1
 2771 1212 51       		.byte	0x51
 2772 1213 F3       		.byte	0xf3
 2773 1214 01       		.uleb128 0x1
 2774 1215 52       		.byte	0x52
 2775 1216 1E       		.byte	0x1e
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 50


 2776 1217 28       		.uleb128 0x28
 2777 1218 01       		.byte	0x1
 2778 1219 50       		.byte	0x50
 2779 121a 01       		.byte	0x1
 2780 121b 30       		.byte	0x30
 2781 121c 00       		.byte	0
 2782 121d 00       		.byte	0
 2783 121e 20       		.uleb128 0x20
 2784 121f 01       		.byte	0x1
 2785 1220 D0020000 		.4byte	.LASF216
 2786 1224 10       		.byte	0x10
 2787 1225 D0       		.byte	0xd0
 2788 1226 01       		.byte	0x1
 2789 1227 32010000 		.4byte	0x132
 2790 122b 00000000 		.4byte	.LFB16
 2791 122f 06000000 		.4byte	.LFE16
 2792 1233 02       		.byte	0x2
 2793 1234 7D       		.byte	0x7d
 2794 1235 00       		.sleb128 0
 2795 1236 01       		.byte	0x1
 2796 1237 70120000 		.4byte	0x1270
 2797 123b 21       		.uleb128 0x21
 2798 123c 726500   		.ascii	"re\000"
 2799 123f 01       		.byte	0x1
 2800 1240 CB       		.byte	0xcb
 2801 1241 AC040000 		.4byte	0x4ac
 2802 1245 C1020000 		.4byte	.LLST22
 2803 1249 25       		.uleb128 0x25
 2804 124a 80040000 		.4byte	.LASF197
 2805 124e 01       		.byte	0x1
 2806 124f CB       		.byte	0xcb
 2807 1250 29000000 		.4byte	0x29
 2808 1254 E2020000 		.4byte	.LLST23
 2809 1258 2B       		.uleb128 0x2b
 2810 1259 06000000 		.4byte	.LVL32
 2811 125d 01       		.byte	0x1
 2812 125e F2120000 		.4byte	0x12f2
 2813 1262 28       		.uleb128 0x28
 2814 1263 01       		.byte	0x1
 2815 1264 51       		.byte	0x51
 2816 1265 03       		.byte	0x3
 2817 1266 F3       		.byte	0xf3
 2818 1267 01       		.uleb128 0x1
 2819 1268 51       		.byte	0x51
 2820 1269 28       		.uleb128 0x28
 2821 126a 01       		.byte	0x1
 2822 126b 50       		.byte	0x50
 2823 126c 01       		.byte	0x1
 2824 126d 30       		.byte	0x30
 2825 126e 00       		.byte	0
 2826 126f 00       		.byte	0
 2827 1270 2C       		.uleb128 0x2c
 2828 1271 01       		.byte	0x1
 2829 1272 F2000000 		.4byte	.LASF225
 2830 1276 10       		.byte	0x10
 2831 1277 D2       		.byte	0xd2
 2832 1278 01       		.byte	0x1
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 51


 2833 1279 00000000 		.4byte	.LFB17
 2834 127d 06000000 		.4byte	.LFE17
 2835 1281 02       		.byte	0x2
 2836 1282 7D       		.byte	0x7d
 2837 1283 00       		.sleb128 0
 2838 1284 01       		.byte	0x1
 2839 1285 B9120000 		.4byte	0x12b9
 2840 1289 21       		.uleb128 0x21
 2841 128a 726500   		.ascii	"re\000"
 2842 128d 01       		.byte	0x1
 2843 128e CF       		.byte	0xcf
 2844 128f AC040000 		.4byte	0x4ac
 2845 1293 03030000 		.4byte	.LLST24
 2846 1297 21       		.uleb128 0x21
 2847 1298 70747200 		.ascii	"ptr\000"
 2848 129c 01       		.byte	0x1
 2849 129d CF       		.byte	0xcf
 2850 129e 32010000 		.4byte	0x132
 2851 12a2 24030000 		.4byte	.LLST25
 2852 12a6 2B       		.uleb128 0x2b
 2853 12a7 06000000 		.4byte	.LVL35
 2854 12ab 01       		.byte	0x1
 2855 12ac 37130000 		.4byte	0x1337
 2856 12b0 28       		.uleb128 0x28
 2857 12b1 01       		.byte	0x1
 2858 12b2 50       		.byte	0x50
 2859 12b3 03       		.byte	0x3
 2860 12b4 F3       		.byte	0xf3
 2861 12b5 01       		.uleb128 0x1
 2862 12b6 51       		.byte	0x51
 2863 12b7 00       		.byte	0
 2864 12b8 00       		.byte	0
 2865 12b9 2D       		.uleb128 0x2d
 2866 12ba 01       		.byte	0x1
 2867 12bb FB030000 		.4byte	.LASF217
 2868 12bf 0E       		.byte	0xe
 2869 12c0 52       		.byte	0x52
 2870 12c1 01       		.byte	0x1
 2871 12c2 32010000 		.4byte	0x132
 2872 12c6 01       		.byte	0x1
 2873 12c7 D1120000 		.4byte	0x12d1
 2874 12cb 13       		.uleb128 0x13
 2875 12cc 29000000 		.4byte	0x29
 2876 12d0 00       		.byte	0
 2877 12d1 2E       		.uleb128 0x2e
 2878 12d2 01       		.byte	0x1
 2879 12d3 64040000 		.4byte	.LASF219
 2880 12d7 01       		.byte	0x1
 2881 12d8 32010000 		.4byte	0x132
 2882 12dc 01       		.byte	0x1
 2883 12dd 01       		.byte	0x1
 2884 12de F2120000 		.4byte	0x12f2
 2885 12e2 13       		.uleb128 0x13
 2886 12e3 32010000 		.4byte	0x132
 2887 12e7 13       		.uleb128 0x13
 2888 12e8 57000000 		.4byte	0x57
 2889 12ec 13       		.uleb128 0x13
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 52


 2890 12ed F0000000 		.4byte	0xf0
 2891 12f1 00       		.byte	0
 2892 12f2 2D       		.uleb128 0x2d
 2893 12f3 01       		.byte	0x1
 2894 12f4 9A030000 		.4byte	.LASF218
 2895 12f8 0F       		.byte	0xf
 2896 12f9 59       		.byte	0x59
 2897 12fa 01       		.byte	0x1
 2898 12fb 32010000 		.4byte	0x132
 2899 12ff 01       		.byte	0x1
 2900 1300 0F130000 		.4byte	0x130f
 2901 1304 13       		.uleb128 0x13
 2902 1305 880E0000 		.4byte	0xe88
 2903 1309 13       		.uleb128 0x13
 2904 130a 29000000 		.4byte	0x29
 2905 130e 00       		.byte	0
 2906 130f 2E       		.uleb128 0x2e
 2907 1310 01       		.byte	0x1
 2908 1311 C0070000 		.4byte	.LASF220
 2909 1315 01       		.byte	0x1
 2910 1316 32010000 		.4byte	0x132
 2911 131a 01       		.byte	0x1
 2912 131b 01       		.byte	0x1
 2913 131c 30130000 		.4byte	0x1330
 2914 1320 13       		.uleb128 0x13
 2915 1321 32010000 		.4byte	0x132
 2916 1325 13       		.uleb128 0x13
 2917 1326 30130000 		.4byte	0x1330
 2918 132a 13       		.uleb128 0x13
 2919 132b F0000000 		.4byte	0xf0
 2920 132f 00       		.byte	0
 2921 1330 0F       		.uleb128 0xf
 2922 1331 04       		.byte	0x4
 2923 1332 36130000 		.4byte	0x1336
 2924 1336 2F       		.uleb128 0x2f
 2925 1337 30       		.uleb128 0x30
 2926 1338 01       		.byte	0x1
 2927 1339 69000000 		.4byte	.LASF226
 2928 133d 0F       		.byte	0xf
 2929 133e 5A       		.byte	0x5a
 2930 133f 01       		.byte	0x1
 2931 1340 01       		.byte	0x1
 2932 1341 13       		.uleb128 0x13
 2933 1342 32010000 		.4byte	0x132
 2934 1346 00       		.byte	0
 2935 1347 00       		.byte	0
 2936              		.section	.debug_abbrev,"",%progbits
 2937              	.Ldebug_abbrev0:
 2938 0000 01       		.uleb128 0x1
 2939 0001 11       		.uleb128 0x11
 2940 0002 01       		.byte	0x1
 2941 0003 25       		.uleb128 0x25
 2942 0004 0E       		.uleb128 0xe
 2943 0005 13       		.uleb128 0x13
 2944 0006 0B       		.uleb128 0xb
 2945 0007 03       		.uleb128 0x3
 2946 0008 0E       		.uleb128 0xe
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 53


 2947 0009 1B       		.uleb128 0x1b
 2948 000a 0E       		.uleb128 0xe
 2949 000b 55       		.uleb128 0x55
 2950 000c 06       		.uleb128 0x6
 2951 000d 11       		.uleb128 0x11
 2952 000e 01       		.uleb128 0x1
 2953 000f 52       		.uleb128 0x52
 2954 0010 01       		.uleb128 0x1
 2955 0011 10       		.uleb128 0x10
 2956 0012 06       		.uleb128 0x6
 2957 0013 00       		.byte	0
 2958 0014 00       		.byte	0
 2959 0015 02       		.uleb128 0x2
 2960 0016 16       		.uleb128 0x16
 2961 0017 00       		.byte	0
 2962 0018 03       		.uleb128 0x3
 2963 0019 0E       		.uleb128 0xe
 2964 001a 3A       		.uleb128 0x3a
 2965 001b 0B       		.uleb128 0xb
 2966 001c 3B       		.uleb128 0x3b
 2967 001d 0B       		.uleb128 0xb
 2968 001e 49       		.uleb128 0x49
 2969 001f 13       		.uleb128 0x13
 2970 0020 00       		.byte	0
 2971 0021 00       		.byte	0
 2972 0022 03       		.uleb128 0x3
 2973 0023 24       		.uleb128 0x24
 2974 0024 00       		.byte	0
 2975 0025 0B       		.uleb128 0xb
 2976 0026 0B       		.uleb128 0xb
 2977 0027 3E       		.uleb128 0x3e
 2978 0028 0B       		.uleb128 0xb
 2979 0029 03       		.uleb128 0x3
 2980 002a 0E       		.uleb128 0xe
 2981 002b 00       		.byte	0
 2982 002c 00       		.byte	0
 2983 002d 04       		.uleb128 0x4
 2984 002e 24       		.uleb128 0x24
 2985 002f 00       		.byte	0
 2986 0030 0B       		.uleb128 0xb
 2987 0031 0B       		.uleb128 0xb
 2988 0032 3E       		.uleb128 0x3e
 2989 0033 0B       		.uleb128 0xb
 2990 0034 03       		.uleb128 0x3
 2991 0035 08       		.uleb128 0x8
 2992 0036 00       		.byte	0
 2993 0037 00       		.byte	0
 2994 0038 05       		.uleb128 0x5
 2995 0039 16       		.uleb128 0x16
 2996 003a 00       		.byte	0
 2997 003b 03       		.uleb128 0x3
 2998 003c 0E       		.uleb128 0xe
 2999 003d 3A       		.uleb128 0x3a
 3000 003e 0B       		.uleb128 0xb
 3001 003f 3B       		.uleb128 0x3b
 3002 0040 05       		.uleb128 0x5
 3003 0041 49       		.uleb128 0x49
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 54


 3004 0042 13       		.uleb128 0x13
 3005 0043 00       		.byte	0
 3006 0044 00       		.byte	0
 3007 0045 06       		.uleb128 0x6
 3008 0046 17       		.uleb128 0x17
 3009 0047 01       		.byte	0x1
 3010 0048 0B       		.uleb128 0xb
 3011 0049 0B       		.uleb128 0xb
 3012 004a 3A       		.uleb128 0x3a
 3013 004b 0B       		.uleb128 0xb
 3014 004c 3B       		.uleb128 0x3b
 3015 004d 0B       		.uleb128 0xb
 3016 004e 01       		.uleb128 0x1
 3017 004f 13       		.uleb128 0x13
 3018 0050 00       		.byte	0
 3019 0051 00       		.byte	0
 3020 0052 07       		.uleb128 0x7
 3021 0053 0D       		.uleb128 0xd
 3022 0054 00       		.byte	0
 3023 0055 03       		.uleb128 0x3
 3024 0056 0E       		.uleb128 0xe
 3025 0057 3A       		.uleb128 0x3a
 3026 0058 0B       		.uleb128 0xb
 3027 0059 3B       		.uleb128 0x3b
 3028 005a 0B       		.uleb128 0xb
 3029 005b 49       		.uleb128 0x49
 3030 005c 13       		.uleb128 0x13
 3031 005d 00       		.byte	0
 3032 005e 00       		.byte	0
 3033 005f 08       		.uleb128 0x8
 3034 0060 01       		.uleb128 0x1
 3035 0061 01       		.byte	0x1
 3036 0062 49       		.uleb128 0x49
 3037 0063 13       		.uleb128 0x13
 3038 0064 01       		.uleb128 0x1
 3039 0065 13       		.uleb128 0x13
 3040 0066 00       		.byte	0
 3041 0067 00       		.byte	0
 3042 0068 09       		.uleb128 0x9
 3043 0069 21       		.uleb128 0x21
 3044 006a 00       		.byte	0
 3045 006b 49       		.uleb128 0x49
 3046 006c 13       		.uleb128 0x13
 3047 006d 2F       		.uleb128 0x2f
 3048 006e 0B       		.uleb128 0xb
 3049 006f 00       		.byte	0
 3050 0070 00       		.byte	0
 3051 0071 0A       		.uleb128 0xa
 3052 0072 13       		.uleb128 0x13
 3053 0073 01       		.byte	0x1
 3054 0074 0B       		.uleb128 0xb
 3055 0075 0B       		.uleb128 0xb
 3056 0076 3A       		.uleb128 0x3a
 3057 0077 0B       		.uleb128 0xb
 3058 0078 3B       		.uleb128 0x3b
 3059 0079 0B       		.uleb128 0xb
 3060 007a 01       		.uleb128 0x1
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 55


 3061 007b 13       		.uleb128 0x13
 3062 007c 00       		.byte	0
 3063 007d 00       		.byte	0
 3064 007e 0B       		.uleb128 0xb
 3065 007f 0D       		.uleb128 0xd
 3066 0080 00       		.byte	0
 3067 0081 03       		.uleb128 0x3
 3068 0082 0E       		.uleb128 0xe
 3069 0083 3A       		.uleb128 0x3a
 3070 0084 0B       		.uleb128 0xb
 3071 0085 3B       		.uleb128 0x3b
 3072 0086 0B       		.uleb128 0xb
 3073 0087 49       		.uleb128 0x49
 3074 0088 13       		.uleb128 0x13
 3075 0089 38       		.uleb128 0x38
 3076 008a 0A       		.uleb128 0xa
 3077 008b 00       		.byte	0
 3078 008c 00       		.byte	0
 3079 008d 0C       		.uleb128 0xc
 3080 008e 0F       		.uleb128 0xf
 3081 008f 00       		.byte	0
 3082 0090 0B       		.uleb128 0xb
 3083 0091 0B       		.uleb128 0xb
 3084 0092 00       		.byte	0
 3085 0093 00       		.byte	0
 3086 0094 0D       		.uleb128 0xd
 3087 0095 13       		.uleb128 0x13
 3088 0096 01       		.byte	0x1
 3089 0097 03       		.uleb128 0x3
 3090 0098 0E       		.uleb128 0xe
 3091 0099 0B       		.uleb128 0xb
 3092 009a 0B       		.uleb128 0xb
 3093 009b 3A       		.uleb128 0x3a
 3094 009c 0B       		.uleb128 0xb
 3095 009d 3B       		.uleb128 0x3b
 3096 009e 0B       		.uleb128 0xb
 3097 009f 01       		.uleb128 0x1
 3098 00a0 13       		.uleb128 0x13
 3099 00a1 00       		.byte	0
 3100 00a2 00       		.byte	0
 3101 00a3 0E       		.uleb128 0xe
 3102 00a4 0D       		.uleb128 0xd
 3103 00a5 00       		.byte	0
 3104 00a6 03       		.uleb128 0x3
 3105 00a7 08       		.uleb128 0x8
 3106 00a8 3A       		.uleb128 0x3a
 3107 00a9 0B       		.uleb128 0xb
 3108 00aa 3B       		.uleb128 0x3b
 3109 00ab 0B       		.uleb128 0xb
 3110 00ac 49       		.uleb128 0x49
 3111 00ad 13       		.uleb128 0x13
 3112 00ae 38       		.uleb128 0x38
 3113 00af 0A       		.uleb128 0xa
 3114 00b0 00       		.byte	0
 3115 00b1 00       		.byte	0
 3116 00b2 0F       		.uleb128 0xf
 3117 00b3 0F       		.uleb128 0xf
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 56


 3118 00b4 00       		.byte	0
 3119 00b5 0B       		.uleb128 0xb
 3120 00b6 0B       		.uleb128 0xb
 3121 00b7 49       		.uleb128 0x49
 3122 00b8 13       		.uleb128 0x13
 3123 00b9 00       		.byte	0
 3124 00ba 00       		.byte	0
 3125 00bb 10       		.uleb128 0x10
 3126 00bc 13       		.uleb128 0x13
 3127 00bd 01       		.byte	0x1
 3128 00be 03       		.uleb128 0x3
 3129 00bf 0E       		.uleb128 0xe
 3130 00c0 0B       		.uleb128 0xb
 3131 00c1 05       		.uleb128 0x5
 3132 00c2 3A       		.uleb128 0x3a
 3133 00c3 0B       		.uleb128 0xb
 3134 00c4 3B       		.uleb128 0x3b
 3135 00c5 0B       		.uleb128 0xb
 3136 00c6 01       		.uleb128 0x1
 3137 00c7 13       		.uleb128 0x13
 3138 00c8 00       		.byte	0
 3139 00c9 00       		.byte	0
 3140 00ca 11       		.uleb128 0x11
 3141 00cb 15       		.uleb128 0x15
 3142 00cc 00       		.byte	0
 3143 00cd 27       		.uleb128 0x27
 3144 00ce 0C       		.uleb128 0xc
 3145 00cf 00       		.byte	0
 3146 00d0 00       		.byte	0
 3147 00d1 12       		.uleb128 0x12
 3148 00d2 15       		.uleb128 0x15
 3149 00d3 01       		.byte	0x1
 3150 00d4 27       		.uleb128 0x27
 3151 00d5 0C       		.uleb128 0xc
 3152 00d6 49       		.uleb128 0x49
 3153 00d7 13       		.uleb128 0x13
 3154 00d8 01       		.uleb128 0x1
 3155 00d9 13       		.uleb128 0x13
 3156 00da 00       		.byte	0
 3157 00db 00       		.byte	0
 3158 00dc 13       		.uleb128 0x13
 3159 00dd 05       		.uleb128 0x5
 3160 00de 00       		.byte	0
 3161 00df 49       		.uleb128 0x49
 3162 00e0 13       		.uleb128 0x13
 3163 00e1 00       		.byte	0
 3164 00e2 00       		.byte	0
 3165 00e3 14       		.uleb128 0x14
 3166 00e4 13       		.uleb128 0x13
 3167 00e5 01       		.byte	0x1
 3168 00e6 03       		.uleb128 0x3
 3169 00e7 0E       		.uleb128 0xe
 3170 00e8 0B       		.uleb128 0xb
 3171 00e9 05       		.uleb128 0x5
 3172 00ea 3A       		.uleb128 0x3a
 3173 00eb 0B       		.uleb128 0xb
 3174 00ec 3B       		.uleb128 0x3b
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 57


 3175 00ed 05       		.uleb128 0x5
 3176 00ee 01       		.uleb128 0x1
 3177 00ef 13       		.uleb128 0x13
 3178 00f0 00       		.byte	0
 3179 00f1 00       		.byte	0
 3180 00f2 15       		.uleb128 0x15
 3181 00f3 0D       		.uleb128 0xd
 3182 00f4 00       		.byte	0
 3183 00f5 03       		.uleb128 0x3
 3184 00f6 0E       		.uleb128 0xe
 3185 00f7 3A       		.uleb128 0x3a
 3186 00f8 0B       		.uleb128 0xb
 3187 00f9 3B       		.uleb128 0x3b
 3188 00fa 05       		.uleb128 0x5
 3189 00fb 49       		.uleb128 0x49
 3190 00fc 13       		.uleb128 0x13
 3191 00fd 38       		.uleb128 0x38
 3192 00fe 0A       		.uleb128 0xa
 3193 00ff 00       		.byte	0
 3194 0100 00       		.byte	0
 3195 0101 16       		.uleb128 0x16
 3196 0102 26       		.uleb128 0x26
 3197 0103 00       		.byte	0
 3198 0104 49       		.uleb128 0x49
 3199 0105 13       		.uleb128 0x13
 3200 0106 00       		.byte	0
 3201 0107 00       		.byte	0
 3202 0108 17       		.uleb128 0x17
 3203 0109 13       		.uleb128 0x13
 3204 010a 01       		.byte	0x1
 3205 010b 03       		.uleb128 0x3
 3206 010c 0E       		.uleb128 0xe
 3207 010d 0B       		.uleb128 0xb
 3208 010e 0B       		.uleb128 0xb
 3209 010f 3A       		.uleb128 0x3a
 3210 0110 0B       		.uleb128 0xb
 3211 0111 3B       		.uleb128 0x3b
 3212 0112 05       		.uleb128 0x5
 3213 0113 01       		.uleb128 0x1
 3214 0114 13       		.uleb128 0x13
 3215 0115 00       		.byte	0
 3216 0116 00       		.byte	0
 3217 0117 18       		.uleb128 0x18
 3218 0118 13       		.uleb128 0x13
 3219 0119 01       		.byte	0x1
 3220 011a 0B       		.uleb128 0xb
 3221 011b 0B       		.uleb128 0xb
 3222 011c 3A       		.uleb128 0x3a
 3223 011d 0B       		.uleb128 0xb
 3224 011e 3B       		.uleb128 0x3b
 3225 011f 05       		.uleb128 0x5
 3226 0120 01       		.uleb128 0x1
 3227 0121 13       		.uleb128 0x13
 3228 0122 00       		.byte	0
 3229 0123 00       		.byte	0
 3230 0124 19       		.uleb128 0x19
 3231 0125 17       		.uleb128 0x17
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 58


 3232 0126 01       		.byte	0x1
 3233 0127 0B       		.uleb128 0xb
 3234 0128 0B       		.uleb128 0xb
 3235 0129 3A       		.uleb128 0x3a
 3236 012a 0B       		.uleb128 0xb
 3237 012b 3B       		.uleb128 0x3b
 3238 012c 05       		.uleb128 0x5
 3239 012d 01       		.uleb128 0x1
 3240 012e 13       		.uleb128 0x13
 3241 012f 00       		.byte	0
 3242 0130 00       		.byte	0
 3243 0131 1A       		.uleb128 0x1a
 3244 0132 0D       		.uleb128 0xd
 3245 0133 00       		.byte	0
 3246 0134 03       		.uleb128 0x3
 3247 0135 0E       		.uleb128 0xe
 3248 0136 3A       		.uleb128 0x3a
 3249 0137 0B       		.uleb128 0xb
 3250 0138 3B       		.uleb128 0x3b
 3251 0139 05       		.uleb128 0x5
 3252 013a 49       		.uleb128 0x49
 3253 013b 13       		.uleb128 0x13
 3254 013c 00       		.byte	0
 3255 013d 00       		.byte	0
 3256 013e 1B       		.uleb128 0x1b
 3257 013f 15       		.uleb128 0x15
 3258 0140 01       		.byte	0x1
 3259 0141 27       		.uleb128 0x27
 3260 0142 0C       		.uleb128 0xc
 3261 0143 01       		.uleb128 0x1
 3262 0144 13       		.uleb128 0x13
 3263 0145 00       		.byte	0
 3264 0146 00       		.byte	0
 3265 0147 1C       		.uleb128 0x1c
 3266 0148 0D       		.uleb128 0xd
 3267 0149 00       		.byte	0
 3268 014a 03       		.uleb128 0x3
 3269 014b 08       		.uleb128 0x8
 3270 014c 3A       		.uleb128 0x3a
 3271 014d 0B       		.uleb128 0xb
 3272 014e 3B       		.uleb128 0x3b
 3273 014f 05       		.uleb128 0x5
 3274 0150 49       		.uleb128 0x49
 3275 0151 13       		.uleb128 0x13
 3276 0152 38       		.uleb128 0x38
 3277 0153 0A       		.uleb128 0xa
 3278 0154 00       		.byte	0
 3279 0155 00       		.byte	0
 3280 0156 1D       		.uleb128 0x1d
 3281 0157 35       		.uleb128 0x35
 3282 0158 00       		.byte	0
 3283 0159 49       		.uleb128 0x49
 3284 015a 13       		.uleb128 0x13
 3285 015b 00       		.byte	0
 3286 015c 00       		.byte	0
 3287 015d 1E       		.uleb128 0x1e
 3288 015e 17       		.uleb128 0x17
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 59


 3289 015f 01       		.byte	0x1
 3290 0160 03       		.uleb128 0x3
 3291 0161 0E       		.uleb128 0xe
 3292 0162 0B       		.uleb128 0xb
 3293 0163 0B       		.uleb128 0xb
 3294 0164 3A       		.uleb128 0x3a
 3295 0165 0B       		.uleb128 0xb
 3296 0166 3B       		.uleb128 0x3b
 3297 0167 0B       		.uleb128 0xb
 3298 0168 01       		.uleb128 0x1
 3299 0169 13       		.uleb128 0x13
 3300 016a 00       		.byte	0
 3301 016b 00       		.byte	0
 3302 016c 1F       		.uleb128 0x1f
 3303 016d 0D       		.uleb128 0xd
 3304 016e 00       		.byte	0
 3305 016f 03       		.uleb128 0x3
 3306 0170 08       		.uleb128 0x8
 3307 0171 3A       		.uleb128 0x3a
 3308 0172 0B       		.uleb128 0xb
 3309 0173 3B       		.uleb128 0x3b
 3310 0174 0B       		.uleb128 0xb
 3311 0175 49       		.uleb128 0x49
 3312 0176 13       		.uleb128 0x13
 3313 0177 00       		.byte	0
 3314 0178 00       		.byte	0
 3315 0179 20       		.uleb128 0x20
 3316 017a 2E       		.uleb128 0x2e
 3317 017b 01       		.byte	0x1
 3318 017c 3F       		.uleb128 0x3f
 3319 017d 0C       		.uleb128 0xc
 3320 017e 03       		.uleb128 0x3
 3321 017f 0E       		.uleb128 0xe
 3322 0180 3A       		.uleb128 0x3a
 3323 0181 0B       		.uleb128 0xb
 3324 0182 3B       		.uleb128 0x3b
 3325 0183 0B       		.uleb128 0xb
 3326 0184 27       		.uleb128 0x27
 3327 0185 0C       		.uleb128 0xc
 3328 0186 49       		.uleb128 0x49
 3329 0187 13       		.uleb128 0x13
 3330 0188 11       		.uleb128 0x11
 3331 0189 01       		.uleb128 0x1
 3332 018a 12       		.uleb128 0x12
 3333 018b 01       		.uleb128 0x1
 3334 018c 40       		.uleb128 0x40
 3335 018d 0A       		.uleb128 0xa
 3336 018e 9742     		.uleb128 0x2117
 3337 0190 0C       		.uleb128 0xc
 3338 0191 01       		.uleb128 0x1
 3339 0192 13       		.uleb128 0x13
 3340 0193 00       		.byte	0
 3341 0194 00       		.byte	0
 3342 0195 21       		.uleb128 0x21
 3343 0196 05       		.uleb128 0x5
 3344 0197 00       		.byte	0
 3345 0198 03       		.uleb128 0x3
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 60


 3346 0199 08       		.uleb128 0x8
 3347 019a 3A       		.uleb128 0x3a
 3348 019b 0B       		.uleb128 0xb
 3349 019c 3B       		.uleb128 0x3b
 3350 019d 0B       		.uleb128 0xb
 3351 019e 49       		.uleb128 0x49
 3352 019f 13       		.uleb128 0x13
 3353 01a0 02       		.uleb128 0x2
 3354 01a1 06       		.uleb128 0x6
 3355 01a2 00       		.byte	0
 3356 01a3 00       		.byte	0
 3357 01a4 22       		.uleb128 0x22
 3358 01a5 05       		.uleb128 0x5
 3359 01a6 00       		.byte	0
 3360 01a7 03       		.uleb128 0x3
 3361 01a8 0E       		.uleb128 0xe
 3362 01a9 3A       		.uleb128 0x3a
 3363 01aa 0B       		.uleb128 0xb
 3364 01ab 3B       		.uleb128 0x3b
 3365 01ac 0B       		.uleb128 0xb
 3366 01ad 49       		.uleb128 0x49
 3367 01ae 13       		.uleb128 0x13
 3368 01af 02       		.uleb128 0x2
 3369 01b0 0A       		.uleb128 0xa
 3370 01b1 00       		.byte	0
 3371 01b2 00       		.byte	0
 3372 01b3 23       		.uleb128 0x23
 3373 01b4 05       		.uleb128 0x5
 3374 01b5 00       		.byte	0
 3375 01b6 03       		.uleb128 0x3
 3376 01b7 08       		.uleb128 0x8
 3377 01b8 3A       		.uleb128 0x3a
 3378 01b9 0B       		.uleb128 0xb
 3379 01ba 3B       		.uleb128 0x3b
 3380 01bb 0B       		.uleb128 0xb
 3381 01bc 49       		.uleb128 0x49
 3382 01bd 13       		.uleb128 0x13
 3383 01be 02       		.uleb128 0x2
 3384 01bf 0A       		.uleb128 0xa
 3385 01c0 00       		.byte	0
 3386 01c1 00       		.byte	0
 3387 01c2 24       		.uleb128 0x24
 3388 01c3 2E       		.uleb128 0x2e
 3389 01c4 01       		.byte	0x1
 3390 01c5 3F       		.uleb128 0x3f
 3391 01c6 0C       		.uleb128 0xc
 3392 01c7 03       		.uleb128 0x3
 3393 01c8 0E       		.uleb128 0xe
 3394 01c9 3A       		.uleb128 0x3a
 3395 01ca 0B       		.uleb128 0xb
 3396 01cb 3B       		.uleb128 0x3b
 3397 01cc 0B       		.uleb128 0xb
 3398 01cd 27       		.uleb128 0x27
 3399 01ce 0C       		.uleb128 0xc
 3400 01cf 49       		.uleb128 0x49
 3401 01d0 13       		.uleb128 0x13
 3402 01d1 11       		.uleb128 0x11
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 61


 3403 01d2 01       		.uleb128 0x1
 3404 01d3 12       		.uleb128 0x12
 3405 01d4 01       		.uleb128 0x1
 3406 01d5 40       		.uleb128 0x40
 3407 01d6 06       		.uleb128 0x6
 3408 01d7 9742     		.uleb128 0x2117
 3409 01d9 0C       		.uleb128 0xc
 3410 01da 01       		.uleb128 0x1
 3411 01db 13       		.uleb128 0x13
 3412 01dc 00       		.byte	0
 3413 01dd 00       		.byte	0
 3414 01de 25       		.uleb128 0x25
 3415 01df 05       		.uleb128 0x5
 3416 01e0 00       		.byte	0
 3417 01e1 03       		.uleb128 0x3
 3418 01e2 0E       		.uleb128 0xe
 3419 01e3 3A       		.uleb128 0x3a
 3420 01e4 0B       		.uleb128 0xb
 3421 01e5 3B       		.uleb128 0x3b
 3422 01e6 0B       		.uleb128 0xb
 3423 01e7 49       		.uleb128 0x49
 3424 01e8 13       		.uleb128 0x13
 3425 01e9 02       		.uleb128 0x2
 3426 01ea 06       		.uleb128 0x6
 3427 01eb 00       		.byte	0
 3428 01ec 00       		.byte	0
 3429 01ed 26       		.uleb128 0x26
 3430 01ee 34       		.uleb128 0x34
 3431 01ef 00       		.byte	0
 3432 01f0 03       		.uleb128 0x3
 3433 01f1 08       		.uleb128 0x8
 3434 01f2 3A       		.uleb128 0x3a
 3435 01f3 0B       		.uleb128 0xb
 3436 01f4 3B       		.uleb128 0x3b
 3437 01f5 0B       		.uleb128 0xb
 3438 01f6 49       		.uleb128 0x49
 3439 01f7 13       		.uleb128 0x13
 3440 01f8 02       		.uleb128 0x2
 3441 01f9 06       		.uleb128 0x6
 3442 01fa 00       		.byte	0
 3443 01fb 00       		.byte	0
 3444 01fc 27       		.uleb128 0x27
 3445 01fd 898201   		.uleb128 0x4109
 3446 0200 01       		.byte	0x1
 3447 0201 11       		.uleb128 0x11
 3448 0202 01       		.uleb128 0x1
 3449 0203 31       		.uleb128 0x31
 3450 0204 13       		.uleb128 0x13
 3451 0205 00       		.byte	0
 3452 0206 00       		.byte	0
 3453 0207 28       		.uleb128 0x28
 3454 0208 8A8201   		.uleb128 0x410a
 3455 020b 00       		.byte	0
 3456 020c 02       		.uleb128 0x2
 3457 020d 0A       		.uleb128 0xa
 3458 020e 9142     		.uleb128 0x2111
 3459 0210 0A       		.uleb128 0xa
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 62


 3460 0211 00       		.byte	0
 3461 0212 00       		.byte	0
 3462 0213 29       		.uleb128 0x29
 3463 0214 34       		.uleb128 0x34
 3464 0215 00       		.byte	0
 3465 0216 03       		.uleb128 0x3
 3466 0217 0E       		.uleb128 0xe
 3467 0218 3A       		.uleb128 0x3a
 3468 0219 0B       		.uleb128 0xb
 3469 021a 3B       		.uleb128 0x3b
 3470 021b 0B       		.uleb128 0xb
 3471 021c 49       		.uleb128 0x49
 3472 021d 13       		.uleb128 0x13
 3473 021e 02       		.uleb128 0x2
 3474 021f 06       		.uleb128 0x6
 3475 0220 00       		.byte	0
 3476 0221 00       		.byte	0
 3477 0222 2A       		.uleb128 0x2a
 3478 0223 898201   		.uleb128 0x4109
 3479 0226 01       		.byte	0x1
 3480 0227 11       		.uleb128 0x11
 3481 0228 01       		.uleb128 0x1
 3482 0229 31       		.uleb128 0x31
 3483 022a 13       		.uleb128 0x13
 3484 022b 01       		.uleb128 0x1
 3485 022c 13       		.uleb128 0x13
 3486 022d 00       		.byte	0
 3487 022e 00       		.byte	0
 3488 022f 2B       		.uleb128 0x2b
 3489 0230 898201   		.uleb128 0x4109
 3490 0233 01       		.byte	0x1
 3491 0234 11       		.uleb128 0x11
 3492 0235 01       		.uleb128 0x1
 3493 0236 9542     		.uleb128 0x2115
 3494 0238 0C       		.uleb128 0xc
 3495 0239 31       		.uleb128 0x31
 3496 023a 13       		.uleb128 0x13
 3497 023b 00       		.byte	0
 3498 023c 00       		.byte	0
 3499 023d 2C       		.uleb128 0x2c
 3500 023e 2E       		.uleb128 0x2e
 3501 023f 01       		.byte	0x1
 3502 0240 3F       		.uleb128 0x3f
 3503 0241 0C       		.uleb128 0xc
 3504 0242 03       		.uleb128 0x3
 3505 0243 0E       		.uleb128 0xe
 3506 0244 3A       		.uleb128 0x3a
 3507 0245 0B       		.uleb128 0xb
 3508 0246 3B       		.uleb128 0x3b
 3509 0247 0B       		.uleb128 0xb
 3510 0248 27       		.uleb128 0x27
 3511 0249 0C       		.uleb128 0xc
 3512 024a 11       		.uleb128 0x11
 3513 024b 01       		.uleb128 0x1
 3514 024c 12       		.uleb128 0x12
 3515 024d 01       		.uleb128 0x1
 3516 024e 40       		.uleb128 0x40
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 63


 3517 024f 0A       		.uleb128 0xa
 3518 0250 9742     		.uleb128 0x2117
 3519 0252 0C       		.uleb128 0xc
 3520 0253 01       		.uleb128 0x1
 3521 0254 13       		.uleb128 0x13
 3522 0255 00       		.byte	0
 3523 0256 00       		.byte	0
 3524 0257 2D       		.uleb128 0x2d
 3525 0258 2E       		.uleb128 0x2e
 3526 0259 01       		.byte	0x1
 3527 025a 3F       		.uleb128 0x3f
 3528 025b 0C       		.uleb128 0xc
 3529 025c 03       		.uleb128 0x3
 3530 025d 0E       		.uleb128 0xe
 3531 025e 3A       		.uleb128 0x3a
 3532 025f 0B       		.uleb128 0xb
 3533 0260 3B       		.uleb128 0x3b
 3534 0261 0B       		.uleb128 0xb
 3535 0262 27       		.uleb128 0x27
 3536 0263 0C       		.uleb128 0xc
 3537 0264 49       		.uleb128 0x49
 3538 0265 13       		.uleb128 0x13
 3539 0266 3C       		.uleb128 0x3c
 3540 0267 0C       		.uleb128 0xc
 3541 0268 01       		.uleb128 0x1
 3542 0269 13       		.uleb128 0x13
 3543 026a 00       		.byte	0
 3544 026b 00       		.byte	0
 3545 026c 2E       		.uleb128 0x2e
 3546 026d 2E       		.uleb128 0x2e
 3547 026e 01       		.byte	0x1
 3548 026f 3F       		.uleb128 0x3f
 3549 0270 0C       		.uleb128 0xc
 3550 0271 03       		.uleb128 0x3
 3551 0272 0E       		.uleb128 0xe
 3552 0273 27       		.uleb128 0x27
 3553 0274 0C       		.uleb128 0xc
 3554 0275 49       		.uleb128 0x49
 3555 0276 13       		.uleb128 0x13
 3556 0277 34       		.uleb128 0x34
 3557 0278 0C       		.uleb128 0xc
 3558 0279 3C       		.uleb128 0x3c
 3559 027a 0C       		.uleb128 0xc
 3560 027b 01       		.uleb128 0x1
 3561 027c 13       		.uleb128 0x13
 3562 027d 00       		.byte	0
 3563 027e 00       		.byte	0
 3564 027f 2F       		.uleb128 0x2f
 3565 0280 26       		.uleb128 0x26
 3566 0281 00       		.byte	0
 3567 0282 00       		.byte	0
 3568 0283 00       		.byte	0
 3569 0284 30       		.uleb128 0x30
 3570 0285 2E       		.uleb128 0x2e
 3571 0286 01       		.byte	0x1
 3572 0287 3F       		.uleb128 0x3f
 3573 0288 0C       		.uleb128 0xc
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 64


 3574 0289 03       		.uleb128 0x3
 3575 028a 0E       		.uleb128 0xe
 3576 028b 3A       		.uleb128 0x3a
 3577 028c 0B       		.uleb128 0xb
 3578 028d 3B       		.uleb128 0x3b
 3579 028e 0B       		.uleb128 0xb
 3580 028f 27       		.uleb128 0x27
 3581 0290 0C       		.uleb128 0xc
 3582 0291 3C       		.uleb128 0x3c
 3583 0292 0C       		.uleb128 0xc
 3584 0293 00       		.byte	0
 3585 0294 00       		.byte	0
 3586 0295 00       		.byte	0
 3587              		.section	.debug_loc,"",%progbits
 3588              	.Ldebug_loc0:
 3589              	.LLST0:
 3590 0000 00000000 		.4byte	.LVL0
 3591 0004 08000000 		.4byte	.LVL2
 3592 0008 0100     		.2byte	0x1
 3593 000a 50       		.byte	0x50
 3594 000b 08000000 		.4byte	.LVL2
 3595 000f 0A000000 		.4byte	.LFE7
 3596 0013 0400     		.2byte	0x4
 3597 0015 F3       		.byte	0xf3
 3598 0016 01       		.uleb128 0x1
 3599 0017 50       		.byte	0x50
 3600 0018 9F       		.byte	0x9f
 3601 0019 00000000 		.4byte	0
 3602 001d 00000000 		.4byte	0
 3603              	.LLST1:
 3604 0021 00000000 		.4byte	.LVL0
 3605 0025 02000000 		.4byte	.LVL1
 3606 0029 0100     		.2byte	0x1
 3607 002b 53       		.byte	0x53
 3608 002c 02000000 		.4byte	.LVL1
 3609 0030 0A000000 		.4byte	.LFE7
 3610 0034 0400     		.2byte	0x4
 3611 0036 F3       		.byte	0xf3
 3612 0037 01       		.uleb128 0x1
 3613 0038 53       		.byte	0x53
 3614 0039 9F       		.byte	0x9f
 3615 003a 00000000 		.4byte	0
 3616 003e 00000000 		.4byte	0
 3617              	.LLST2:
 3618 0042 00000000 		.4byte	.LVL3
 3619 0046 02000000 		.4byte	.LVL4
 3620 004a 0100     		.2byte	0x1
 3621 004c 50       		.byte	0x50
 3622 004d 02000000 		.4byte	.LVL4
 3623 0051 04000000 		.4byte	.LFE8
 3624 0055 0400     		.2byte	0x4
 3625 0057 F3       		.byte	0xf3
 3626 0058 01       		.uleb128 0x1
 3627 0059 50       		.byte	0x50
 3628 005a 9F       		.byte	0x9f
 3629 005b 00000000 		.4byte	0
 3630 005f 00000000 		.4byte	0
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 65


 3631              	.LLST3:
 3632 0063 00000000 		.4byte	.LVL5
 3633 0067 02000000 		.4byte	.LVL6
 3634 006b 0100     		.2byte	0x1
 3635 006d 50       		.byte	0x50
 3636 006e 02000000 		.4byte	.LVL6
 3637 0072 04000000 		.4byte	.LFE9
 3638 0076 0400     		.2byte	0x4
 3639 0078 F3       		.byte	0xf3
 3640 0079 01       		.uleb128 0x1
 3641 007a 50       		.byte	0x50
 3642 007b 9F       		.byte	0x9f
 3643 007c 00000000 		.4byte	0
 3644 0080 00000000 		.4byte	0
 3645              	.LLST4:
 3646 0084 00000000 		.4byte	.LVL7
 3647 0088 02000000 		.4byte	.LVL8
 3648 008c 0100     		.2byte	0x1
 3649 008e 50       		.byte	0x50
 3650 008f 02000000 		.4byte	.LVL8
 3651 0093 04000000 		.4byte	.LFE10
 3652 0097 0400     		.2byte	0x4
 3653 0099 F3       		.byte	0xf3
 3654 009a 01       		.uleb128 0x1
 3655 009b 50       		.byte	0x50
 3656 009c 9F       		.byte	0x9f
 3657 009d 00000000 		.4byte	0
 3658 00a1 00000000 		.4byte	0
 3659              	.LLST5:
 3660 00a5 00000000 		.4byte	.LFB11
 3661 00a9 02000000 		.4byte	.LCFI0
 3662 00ad 0200     		.2byte	0x2
 3663 00af 7D       		.byte	0x7d
 3664 00b0 00       		.sleb128 0
 3665 00b1 02000000 		.4byte	.LCFI0
 3666 00b5 18000000 		.4byte	.LFE11
 3667 00b9 0200     		.2byte	0x2
 3668 00bb 7D       		.byte	0x7d
 3669 00bc 08       		.sleb128 8
 3670 00bd 00000000 		.4byte	0
 3671 00c1 00000000 		.4byte	0
 3672              	.LLST6:
 3673 00c5 00000000 		.4byte	.LVL9
 3674 00c9 06000000 		.4byte	.LVL10
 3675 00cd 0100     		.2byte	0x1
 3676 00cf 50       		.byte	0x50
 3677 00d0 06000000 		.4byte	.LVL10
 3678 00d4 18000000 		.4byte	.LFE11
 3679 00d8 0100     		.2byte	0x1
 3680 00da 54       		.byte	0x54
 3681 00db 00000000 		.4byte	0
 3682 00df 00000000 		.4byte	0
 3683              	.LLST7:
 3684 00e3 00000000 		.4byte	.LVL9
 3685 00e7 09000000 		.4byte	.LVL11-1
 3686 00eb 0100     		.2byte	0x1
 3687 00ed 51       		.byte	0x51
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 66


 3688 00ee 09000000 		.4byte	.LVL11-1
 3689 00f2 18000000 		.4byte	.LFE11
 3690 00f6 0400     		.2byte	0x4
 3691 00f8 F3       		.byte	0xf3
 3692 00f9 01       		.uleb128 0x1
 3693 00fa 51       		.byte	0x51
 3694 00fb 9F       		.byte	0x9f
 3695 00fc 00000000 		.4byte	0
 3696 0100 00000000 		.4byte	0
 3697              	.LLST8:
 3698 0104 0A000000 		.4byte	.LVL11
 3699 0108 16000000 		.4byte	.LVL12
 3700 010c 0100     		.2byte	0x1
 3701 010e 50       		.byte	0x50
 3702 010f 00000000 		.4byte	0
 3703 0113 00000000 		.4byte	0
 3704              	.LLST9:
 3705 0117 00000000 		.4byte	.LFB12
 3706 011b 02000000 		.4byte	.LCFI1
 3707 011f 0200     		.2byte	0x2
 3708 0121 7D       		.byte	0x7d
 3709 0122 00       		.sleb128 0
 3710 0123 02000000 		.4byte	.LCFI1
 3711 0127 18000000 		.4byte	.LFE12
 3712 012b 0200     		.2byte	0x2
 3713 012d 7D       		.byte	0x7d
 3714 012e 08       		.sleb128 8
 3715 012f 00000000 		.4byte	0
 3716 0133 00000000 		.4byte	0
 3717              	.LLST10:
 3718 0137 00000000 		.4byte	.LVL13
 3719 013b 04000000 		.4byte	.LVL14
 3720 013f 0100     		.2byte	0x1
 3721 0141 50       		.byte	0x50
 3722 0142 04000000 		.4byte	.LVL14
 3723 0146 18000000 		.4byte	.LFE12
 3724 014a 0400     		.2byte	0x4
 3725 014c F3       		.byte	0xf3
 3726 014d 01       		.uleb128 0x1
 3727 014e 50       		.byte	0x50
 3728 014f 9F       		.byte	0x9f
 3729 0150 00000000 		.4byte	0
 3730 0154 00000000 		.4byte	0
 3731              	.LLST11:
 3732 0158 00000000 		.4byte	.LVL13
 3733 015c 08000000 		.4byte	.LVL15
 3734 0160 0100     		.2byte	0x1
 3735 0162 51       		.byte	0x51
 3736 0163 08000000 		.4byte	.LVL15
 3737 0167 18000000 		.4byte	.LFE12
 3738 016b 0400     		.2byte	0x4
 3739 016d F3       		.byte	0xf3
 3740 016e 01       		.uleb128 0x1
 3741 016f 51       		.byte	0x51
 3742 0170 9F       		.byte	0x9f
 3743 0171 00000000 		.4byte	0
 3744 0175 00000000 		.4byte	0
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 67


 3745              	.LLST12:
 3746 0179 00000000 		.4byte	.LVL13
 3747 017d 0A000000 		.4byte	.LVL16
 3748 0181 0100     		.2byte	0x1
 3749 0183 52       		.byte	0x52
 3750 0184 0A000000 		.4byte	.LVL16
 3751 0188 0D000000 		.4byte	.LVL17-1
 3752 018c 0100     		.2byte	0x1
 3753 018e 50       		.byte	0x50
 3754 018f 0D000000 		.4byte	.LVL17-1
 3755 0193 18000000 		.4byte	.LFE12
 3756 0197 0100     		.2byte	0x1
 3757 0199 54       		.byte	0x54
 3758 019a 00000000 		.4byte	0
 3759 019e 00000000 		.4byte	0
 3760              	.LLST13:
 3761 01a2 00000000 		.4byte	.LVL18
 3762 01a6 02000000 		.4byte	.LVL19
 3763 01aa 0100     		.2byte	0x1
 3764 01ac 50       		.byte	0x50
 3765 01ad 02000000 		.4byte	.LVL19
 3766 01b1 04000000 		.4byte	.LFE13
 3767 01b5 0400     		.2byte	0x4
 3768 01b7 F3       		.byte	0xf3
 3769 01b8 01       		.uleb128 0x1
 3770 01b9 50       		.byte	0x50
 3771 01ba 9F       		.byte	0x9f
 3772 01bb 00000000 		.4byte	0
 3773 01bf 00000000 		.4byte	0
 3774              	.LLST14:
 3775 01c3 00000000 		.4byte	.LFB14
 3776 01c7 02000000 		.4byte	.LCFI2
 3777 01cb 0200     		.2byte	0x2
 3778 01cd 7D       		.byte	0x7d
 3779 01ce 00       		.sleb128 0
 3780 01cf 02000000 		.4byte	.LCFI2
 3781 01d3 24000000 		.4byte	.LFE14
 3782 01d7 0200     		.2byte	0x2
 3783 01d9 7D       		.byte	0x7d
 3784 01da 10       		.sleb128 16
 3785 01db 00000000 		.4byte	0
 3786 01df 00000000 		.4byte	0
 3787              	.LLST15:
 3788 01e3 00000000 		.4byte	.LVL20
 3789 01e7 04000000 		.4byte	.LVL21
 3790 01eb 0100     		.2byte	0x1
 3791 01ed 50       		.byte	0x50
 3792 01ee 04000000 		.4byte	.LVL21
 3793 01f2 24000000 		.4byte	.LFE14
 3794 01f6 0400     		.2byte	0x4
 3795 01f8 F3       		.byte	0xf3
 3796 01f9 01       		.uleb128 0x1
 3797 01fa 50       		.byte	0x50
 3798 01fb 9F       		.byte	0x9f
 3799 01fc 00000000 		.4byte	0
 3800 0200 00000000 		.4byte	0
 3801              	.LLST16:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 68


 3802 0204 00000000 		.4byte	.LVL20
 3803 0208 08000000 		.4byte	.LVL22
 3804 020c 0100     		.2byte	0x1
 3805 020e 51       		.byte	0x51
 3806 020f 08000000 		.4byte	.LVL22
 3807 0213 24000000 		.4byte	.LFE14
 3808 0217 0100     		.2byte	0x1
 3809 0219 55       		.byte	0x55
 3810 021a 00000000 		.4byte	0
 3811 021e 00000000 		.4byte	0
 3812              	.LLST17:
 3813 0222 00000000 		.4byte	.LVL20
 3814 0226 0D000000 		.4byte	.LVL23-1
 3815 022a 0100     		.2byte	0x1
 3816 022c 52       		.byte	0x52
 3817 022d 0D000000 		.4byte	.LVL23-1
 3818 0231 24000000 		.4byte	.LFE14
 3819 0235 0100     		.2byte	0x1
 3820 0237 54       		.byte	0x54
 3821 0238 00000000 		.4byte	0
 3822 023c 00000000 		.4byte	0
 3823              	.LLST18:
 3824 0240 0E000000 		.4byte	.LVL23
 3825 0244 19000000 		.4byte	.LVL24-1
 3826 0248 0100     		.2byte	0x1
 3827 024a 50       		.byte	0x50
 3828 024b 19000000 		.4byte	.LVL24-1
 3829 024f 24000000 		.4byte	.LFE14
 3830 0253 0100     		.2byte	0x1
 3831 0255 56       		.byte	0x56
 3832 0256 00000000 		.4byte	0
 3833 025a 00000000 		.4byte	0
 3834              	.LLST19:
 3835 025e 00000000 		.4byte	.LVL26
 3836 0262 06000000 		.4byte	.LVL28
 3837 0266 0100     		.2byte	0x1
 3838 0268 50       		.byte	0x50
 3839 0269 06000000 		.4byte	.LVL28
 3840 026d 0A000000 		.4byte	.LFE15
 3841 0271 0400     		.2byte	0x4
 3842 0273 F3       		.byte	0xf3
 3843 0274 01       		.uleb128 0x1
 3844 0275 50       		.byte	0x50
 3845 0276 9F       		.byte	0x9f
 3846 0277 00000000 		.4byte	0
 3847 027b 00000000 		.4byte	0
 3848              	.LLST20:
 3849 027f 00000000 		.4byte	.LVL26
 3850 0283 04000000 		.4byte	.LVL27
 3851 0287 0100     		.2byte	0x1
 3852 0289 51       		.byte	0x51
 3853 028a 04000000 		.4byte	.LVL27
 3854 028e 0A000000 		.4byte	.LFE15
 3855 0292 0400     		.2byte	0x4
 3856 0294 F3       		.byte	0xf3
 3857 0295 01       		.uleb128 0x1
 3858 0296 51       		.byte	0x51
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 69


 3859 0297 9F       		.byte	0x9f
 3860 0298 00000000 		.4byte	0
 3861 029c 00000000 		.4byte	0
 3862              	.LLST21:
 3863 02a0 00000000 		.4byte	.LVL26
 3864 02a4 09000000 		.4byte	.LVL29-1
 3865 02a8 0100     		.2byte	0x1
 3866 02aa 52       		.byte	0x52
 3867 02ab 09000000 		.4byte	.LVL29-1
 3868 02af 0A000000 		.4byte	.LFE15
 3869 02b3 0400     		.2byte	0x4
 3870 02b5 F3       		.byte	0xf3
 3871 02b6 01       		.uleb128 0x1
 3872 02b7 52       		.byte	0x52
 3873 02b8 9F       		.byte	0x9f
 3874 02b9 00000000 		.4byte	0
 3875 02bd 00000000 		.4byte	0
 3876              	.LLST22:
 3877 02c1 00000000 		.4byte	.LVL30
 3878 02c5 02000000 		.4byte	.LVL31
 3879 02c9 0100     		.2byte	0x1
 3880 02cb 50       		.byte	0x50
 3881 02cc 02000000 		.4byte	.LVL31
 3882 02d0 06000000 		.4byte	.LFE16
 3883 02d4 0400     		.2byte	0x4
 3884 02d6 F3       		.byte	0xf3
 3885 02d7 01       		.uleb128 0x1
 3886 02d8 50       		.byte	0x50
 3887 02d9 9F       		.byte	0x9f
 3888 02da 00000000 		.4byte	0
 3889 02de 00000000 		.4byte	0
 3890              	.LLST23:
 3891 02e2 00000000 		.4byte	.LVL30
 3892 02e6 05000000 		.4byte	.LVL32-1
 3893 02ea 0100     		.2byte	0x1
 3894 02ec 51       		.byte	0x51
 3895 02ed 05000000 		.4byte	.LVL32-1
 3896 02f1 06000000 		.4byte	.LFE16
 3897 02f5 0400     		.2byte	0x4
 3898 02f7 F3       		.byte	0xf3
 3899 02f8 01       		.uleb128 0x1
 3900 02f9 51       		.byte	0x51
 3901 02fa 9F       		.byte	0x9f
 3902 02fb 00000000 		.4byte	0
 3903 02ff 00000000 		.4byte	0
 3904              	.LLST24:
 3905 0303 00000000 		.4byte	.LVL33
 3906 0307 02000000 		.4byte	.LVL34
 3907 030b 0100     		.2byte	0x1
 3908 030d 50       		.byte	0x50
 3909 030e 02000000 		.4byte	.LVL34
 3910 0312 06000000 		.4byte	.LFE17
 3911 0316 0400     		.2byte	0x4
 3912 0318 F3       		.byte	0xf3
 3913 0319 01       		.uleb128 0x1
 3914 031a 50       		.byte	0x50
 3915 031b 9F       		.byte	0x9f
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 70


 3916 031c 00000000 		.4byte	0
 3917 0320 00000000 		.4byte	0
 3918              	.LLST25:
 3919 0324 00000000 		.4byte	.LVL33
 3920 0328 05000000 		.4byte	.LVL35-1
 3921 032c 0100     		.2byte	0x1
 3922 032e 51       		.byte	0x51
 3923 032f 05000000 		.4byte	.LVL35-1
 3924 0333 06000000 		.4byte	.LFE17
 3925 0337 0400     		.2byte	0x4
 3926 0339 F3       		.byte	0xf3
 3927 033a 01       		.uleb128 0x1
 3928 033b 51       		.byte	0x51
 3929 033c 9F       		.byte	0x9f
 3930 033d 00000000 		.4byte	0
 3931 0341 00000000 		.4byte	0
 3932              		.section	.debug_aranges,"",%progbits
 3933 0000 6C000000 		.4byte	0x6c
 3934 0004 0200     		.2byte	0x2
 3935 0006 00000000 		.4byte	.Ldebug_info0
 3936 000a 04       		.byte	0x4
 3937 000b 00       		.byte	0
 3938 000c 0000     		.2byte	0
 3939 000e 0000     		.2byte	0
 3940 0010 00000000 		.4byte	.LFB7
 3941 0014 0A000000 		.4byte	.LFE7-.LFB7
 3942 0018 00000000 		.4byte	.LFB8
 3943 001c 04000000 		.4byte	.LFE8-.LFB8
 3944 0020 00000000 		.4byte	.LFB9
 3945 0024 04000000 		.4byte	.LFE9-.LFB9
 3946 0028 00000000 		.4byte	.LFB10
 3947 002c 04000000 		.4byte	.LFE10-.LFB10
 3948 0030 00000000 		.4byte	.LFB11
 3949 0034 18000000 		.4byte	.LFE11-.LFB11
 3950 0038 00000000 		.4byte	.LFB12
 3951 003c 18000000 		.4byte	.LFE12-.LFB12
 3952 0040 00000000 		.4byte	.LFB13
 3953 0044 04000000 		.4byte	.LFE13-.LFB13
 3954 0048 00000000 		.4byte	.LFB14
 3955 004c 24000000 		.4byte	.LFE14-.LFB14
 3956 0050 00000000 		.4byte	.LFB15
 3957 0054 0A000000 		.4byte	.LFE15-.LFB15
 3958 0058 00000000 		.4byte	.LFB16
 3959 005c 06000000 		.4byte	.LFE16-.LFB16
 3960 0060 00000000 		.4byte	.LFB17
 3961 0064 06000000 		.4byte	.LFE17-.LFB17
 3962 0068 00000000 		.4byte	0
 3963 006c 00000000 		.4byte	0
 3964              		.section	.debug_ranges,"",%progbits
 3965              	.Ldebug_ranges0:
 3966 0000 00000000 		.4byte	.LFB7
 3967 0004 0A000000 		.4byte	.LFE7
 3968 0008 00000000 		.4byte	.LFB8
 3969 000c 04000000 		.4byte	.LFE8
 3970 0010 00000000 		.4byte	.LFB9
 3971 0014 04000000 		.4byte	.LFE9
 3972 0018 00000000 		.4byte	.LFB10
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 71


 3973 001c 04000000 		.4byte	.LFE10
 3974 0020 00000000 		.4byte	.LFB11
 3975 0024 18000000 		.4byte	.LFE11
 3976 0028 00000000 		.4byte	.LFB12
 3977 002c 18000000 		.4byte	.LFE12
 3978 0030 00000000 		.4byte	.LFB13
 3979 0034 04000000 		.4byte	.LFE13
 3980 0038 00000000 		.4byte	.LFB14
 3981 003c 24000000 		.4byte	.LFE14
 3982 0040 00000000 		.4byte	.LFB15
 3983 0044 0A000000 		.4byte	.LFE15
 3984 0048 00000000 		.4byte	.LFB16
 3985 004c 06000000 		.4byte	.LFE16
 3986 0050 00000000 		.4byte	.LFB17
 3987 0054 06000000 		.4byte	.LFE17
 3988 0058 00000000 		.4byte	0
 3989 005c 00000000 		.4byte	0
 3990              		.section	.debug_line,"",%progbits
 3991              	.Ldebug_line0:
 3992 0000 BD020000 		.section	.debug_str,"MS",%progbits,1
 3992      0200DB01 
 3992      00000201 
 3992      FB0E0D00 
 3992      01010101 
 3993              	.LASF179:
 3994 0000 54687265 		.ascii	"ThreadsList\000"
 3994      6164734C 
 3994      69737400 
 3995              	.LASF171:
 3996 000c 705F7761 		.ascii	"p_waiting\000"
 3996      6974696E 
 3996      6700
 3997              	.LASF170:
 3998 0016 705F7469 		.ascii	"p_time\000"
 3998      6D6500
 3999              	.LASF180:
 4000 001d 72656761 		.ascii	"regarm_t\000"
 4000      726D5F74 
 4000      00
 4001              	.LASF162:
 4002 0026 705F7072 		.ascii	"p_prio\000"
 4002      696F00
 4003              	.LASF40:
 4004 002d 5F6F6E5F 		.ascii	"_on_exit_args\000"
 4004      65786974 
 4004      5F617267 
 4004      7300
 4005              	.LASF108:
 4006 003b 5F776374 		.ascii	"_wctomb_state\000"
 4006      6F6D625F 
 4006      73746174 
 4006      6500
 4007              	.LASF158:
 4008 0049 73797374 		.ascii	"systime_t\000"
 4008      696D655F 
 4008      7400
 4009              	.LASF105:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 72


 4010 0053 5F723438 		.ascii	"_r48\000"
 4010      00
 4011              	.LASF205:
 4012 0058 5F777269 		.ascii	"_write_r\000"
 4012      74655F72 
 4012      00
 4013              	.LASF186:
 4014 0061 6D5F6F77 		.ascii	"m_owner\000"
 4014      6E657200 
 4015              	.LASF226:
 4016 0069 63684865 		.ascii	"chHeapFree\000"
 4016      61704672 
 4016      656500
 4017              	.LASF172:
 4018 0074 705F6D73 		.ascii	"p_msgqueue\000"
 4018      67717565 
 4018      756500
 4019              	.LASF110:
 4020 007f 5F736967 		.ascii	"_signal_buf\000"
 4020      6E616C5F 
 4020      62756600 
 4021              	.LASF213:
 4022 008b 6E657753 		.ascii	"newSize\000"
 4022      697A6500 
 4023              	.LASF0:
 4024 0093 756E7369 		.ascii	"unsigned int\000"
 4024      676E6564 
 4024      20696E74 
 4024      00
 4025              	.LASF194:
 4026 00a0 6E657874 		.ascii	"next\000"
 4026      00
 4027              	.LASF145:
 4028 00a5 73745F62 		.ascii	"st_blksize\000"
 4028      6C6B7369 
 4028      7A6500
 4029              	.LASF54:
 4030 00b0 5F6C6266 		.ascii	"_lbfsize\000"
 4030      73697A65 
 4030      00
 4031              	.LASF52:
 4032 00b9 5F666C61 		.ascii	"_flags\000"
 4032      677300
 4033              	.LASF192:
 4034 00c0 685F6672 		.ascii	"h_free\000"
 4034      656500
 4035              	.LASF69:
 4036 00c7 5F657272 		.ascii	"_errno\000"
 4036      6E6F00
 4037              	.LASF195:
 4038 00ce 68656170 		.ascii	"heap\000"
 4038      00
 4039              	.LASF200:
 4040 00d3 77746F62 		.ascii	"wtobjp\000"
 4040      6A7000
 4041              	.LASF8:
 4042 00da 5F4C4F43 		.ascii	"_LOCK_RECURSIVE_T\000"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 73


 4042      4B5F5245 
 4042      43555253 
 4042      4956455F 
 4042      5400
 4043              	.LASF56:
 4044 00ec 5F726561 		.ascii	"_read\000"
 4044      6400
 4045              	.LASF225:
 4046 00f2 5F667265 		.ascii	"_free_r\000"
 4046      655F7200 
 4047              	.LASF201:
 4048 00fa 65776D61 		.ascii	"ewmask\000"
 4048      736B00
 4049              	.LASF112:
 4050 0101 5F6D6272 		.ascii	"_mbrlen_state\000"
 4050      6C656E5F 
 4050      73746174 
 4050      6500
 4051              	.LASF71:
 4052 010f 5F737464 		.ascii	"_stdout\000"
 4052      6F757400 
 4053              	.LASF14:
 4054 0117 5F66706F 		.ascii	"_fpos_t\000"
 4054      735F7400 
 4055              	.LASF47:
 4056 011f 5F666E73 		.ascii	"_fns\000"
 4056      00
 4057              	.LASF55:
 4058 0124 5F636F6F 		.ascii	"_cookie\000"
 4058      6B696500 
 4059              	.LASF29:
 4060 012c 5F426967 		.ascii	"_Bigint\000"
 4060      696E7400 
 4061              	.LASF37:
 4062 0134 5F5F746D 		.ascii	"__tm_wday\000"
 4062      5F776461 
 4062      7900
 4063              	.LASF79:
 4064 013e 5F726573 		.ascii	"_result\000"
 4064      756C7400 
 4065              	.LASF123:
 4066 0146 696E6F5F 		.ascii	"ino_t\000"
 4066      7400
 4067              	.LASF150:
 4068 014c 75696E74 		.ascii	"uint32_t\000"
 4068      33325F74 
 4068      00
 4069              	.LASF33:
 4070 0155 5F5F746D 		.ascii	"__tm_hour\000"
 4070      5F686F75 
 4070      7200
 4071              	.LASF157:
 4072 015f 6576656E 		.ascii	"eventmask_t\000"
 4072      746D6173 
 4072      6B5F7400 
 4073              	.LASF221:
 4074 016b 474E5520 		.ascii	"GNU C 4.7.2\000"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 74


 4074      4320342E 
 4074      372E3200 
 4075              	.LASF19:
 4076 0177 5F5F636F 		.ascii	"__count\000"
 4076      756E7400 
 4077              	.LASF32:
 4078 017f 5F5F746D 		.ascii	"__tm_min\000"
 4078      5F6D696E 
 4078      00
 4079              	.LASF155:
 4080 0188 74707269 		.ascii	"tprio_t\000"
 4080      6F5F7400 
 4081              	.LASF118:
 4082 0190 5F6E6578 		.ascii	"_nextf\000"
 4082      746600
 4083              	.LASF210:
 4084 0197 5F697361 		.ascii	"_isatty_r\000"
 4084      7474795F 
 4084      7200
 4085              	.LASF95:
 4086 01a1 5F72616E 		.ascii	"_rand48\000"
 4086      64343800 
 4087              	.LASF80:
 4088 01a9 5F726573 		.ascii	"_result_k\000"
 4088      756C745F 
 4088      6B00
 4089              	.LASF188:
 4090 01b3 6D656D67 		.ascii	"memgetfunc_t\000"
 4090      65746675 
 4090      6E635F74 
 4090      00
 4091              	.LASF6:
 4092 01c0 6C6F6E67 		.ascii	"long long unsigned int\000"
 4092      206C6F6E 
 4092      6720756E 
 4092      7369676E 
 4092      65642069 
 4093              	.LASF146:
 4094 01d7 73745F62 		.ascii	"st_blocks\000"
 4094      6C6F636B 
 4094      7300
 4095              	.LASF101:
 4096 01e1 5F617363 		.ascii	"_asctime_buf\000"
 4096      74696D65 
 4096      5F627566 
 4096      00
 4097              	.LASF51:
 4098 01ee 5F5F7346 		.ascii	"__sFILE\000"
 4098      494C4500 
 4099              	.LASF28:
 4100 01f6 5F776473 		.ascii	"_wds\000"
 4100      00
 4101              	.LASF207:
 4102 01fb 5F736272 		.ascii	"_sbrk_r\000"
 4102      6B5F7200 
 4103              	.LASF141:
 4104 0203 73745F6D 		.ascii	"st_mtime\000"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 75


 4104      74696D65 
 4104      00
 4105              	.LASF91:
 4106 020c 5F5F4649 		.ascii	"__FILE\000"
 4106      4C4500
 4107              	.LASF214:
 4108 0213 6E657741 		.ascii	"newAddr\000"
 4108      64647200 
 4109              	.LASF63:
 4110 021b 5F6F6666 		.ascii	"_offset\000"
 4110      73657400 
 4111              	.LASF164:
 4112 0223 705F6E65 		.ascii	"p_newer\000"
 4112      77657200 
 4113              	.LASF130:
 4114 022b 73746174 		.ascii	"stat\000"
 4114      00
 4115              	.LASF74:
 4116 0230 5F656D65 		.ascii	"_emergency\000"
 4116      7267656E 
 4116      637900
 4117              	.LASF131:
 4118 023b 73745F64 		.ascii	"st_dev\000"
 4118      657600
 4119              	.LASF224:
 4120 0242 68656170 		.ascii	"heap_header\000"
 4120      5F686561 
 4120      64657200 
 4121              	.LASF7:
 4122 024e 73697A65 		.ascii	"size_t\000"
 4122      5F7400
 4123              	.LASF198:
 4124 0255 7264796D 		.ascii	"rdymsg\000"
 4124      736700
 4125              	.LASF31:
 4126 025c 5F5F746D 		.ascii	"__tm_sec\000"
 4126      5F736563 
 4126      00
 4127              	.LASF38:
 4128 0265 5F5F746D 		.ascii	"__tm_yday\000"
 4128      5F796461 
 4128      7900
 4129              	.LASF73:
 4130 026f 5F696E63 		.ascii	"_inc\000"
 4130      00
 4131              	.LASF46:
 4132 0274 5F696E64 		.ascii	"_ind\000"
 4132      00
 4133              	.LASF136:
 4134 0279 73745F67 		.ascii	"st_gid\000"
 4134      696400
 4135              	.LASF25:
 4136 0280 5F6E6578 		.ascii	"_next\000"
 4136      7400
 4137              	.LASF133:
 4138 0286 73745F6D 		.ascii	"st_mode\000"
 4138      6F646500 
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 76


 4139              	.LASF114:
 4140 028e 5F6D6273 		.ascii	"_mbsrtowcs_state\000"
 4140      72746F77 
 4140      63735F73 
 4140      74617465 
 4140      00
 4141              	.LASF134:
 4142 029f 73745F6E 		.ascii	"st_nlink\000"
 4142      6C696E6B 
 4142      00
 4143              	.LASF209:
 4144 02a8 5F667374 		.ascii	"_fstat_r\000"
 4144      61745F72 
 4144      00
 4145              	.LASF184:
 4146 02b1 4D757465 		.ascii	"Mutex\000"
 4146      7800
 4147              	.LASF208:
 4148 02b7 696E6372 		.ascii	"incr\000"
 4148      00
 4149              	.LASF20:
 4150 02bc 5F5F7661 		.ascii	"__value\000"
 4150      6C756500 
 4151              	.LASF81:
 4152 02c4 5F703573 		.ascii	"_p5s\000"
 4152      00
 4153              	.LASF166:
 4154 02c9 705F6E61 		.ascii	"p_name\000"
 4154      6D6500
 4155              	.LASF216:
 4156 02d0 5F6D616C 		.ascii	"_malloc_r\000"
 4156      6C6F635F 
 4156      7200
 4157              	.LASF191:
 4158 02da 685F7072 		.ascii	"h_provider\000"
 4158      6F766964 
 4158      657200
 4159              	.LASF116:
 4160 02e5 5F776373 		.ascii	"_wcsrtombs_state\000"
 4160      72746F6D 
 4160      62735F73 
 4160      74617465 
 4160      00
 4161              	.LASF106:
 4162 02f6 5F6D626C 		.ascii	"_mblen_state\000"
 4162      656E5F73 
 4162      74617465 
 4162      00
 4163              	.LASF178:
 4164 0303 54687265 		.ascii	"ThreadsQueue\000"
 4164      61647351 
 4164      75657565 
 4164      00
 4165              	.LASF90:
 4166 0310 63686172 		.ascii	"char\000"
 4166      00
 4167              	.LASF34:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 77


 4168 0315 5F5F746D 		.ascii	"__tm_mday\000"
 4168      5F6D6461 
 4168      7900
 4169              	.LASF87:
 4170 031f 5F736967 		.ascii	"_sig_func\000"
 4170      5F66756E 
 4170      6300
 4171              	.LASF113:
 4172 0329 5F6D6272 		.ascii	"_mbrtowc_state\000"
 4172      746F7763 
 4172      5F737461 
 4172      746500
 4173              	.LASF86:
 4174 0338 5F617465 		.ascii	"_atexit0\000"
 4174      78697430 
 4174      00
 4175              	.LASF135:
 4176 0341 73745F75 		.ascii	"st_uid\000"
 4176      696400
 4177              	.LASF159:
 4178 0348 54687265 		.ascii	"Thread\000"
 4178      616400
 4179              	.LASF153:
 4180 034f 74737461 		.ascii	"tstate_t\000"
 4180      74655F74 
 4180      00
 4181              	.LASF22:
 4182 0358 5F666C6F 		.ascii	"_flock_t\000"
 4182      636B5F74 
 4182      00
 4183              	.LASF139:
 4184 0361 73745F61 		.ascii	"st_atime\000"
 4184      74696D65 
 4184      00
 4185              	.LASF165:
 4186 036a 705F6F6C 		.ascii	"p_older\000"
 4186      64657200 
 4187              	.LASF167:
 4188 0372 705F7374 		.ascii	"p_state\000"
 4188      61746500 
 4189              	.LASF202:
 4190 037a 66696C65 		.ascii	"file\000"
 4190      00
 4191              	.LASF16:
 4192 037f 5F5F7763 		.ascii	"__wch\000"
 4192      6800
 4193              	.LASF94:
 4194 0385 5F696F62 		.ascii	"_iobs\000"
 4194      7300
 4195              	.LASF148:
 4196 038b 75696E74 		.ascii	"uint8_t\000"
 4196      385F7400 
 4197              	.LASF121:
 4198 0393 74696D65 		.ascii	"time_t\000"
 4198      5F7400
 4199              	.LASF218:
 4200 039a 63684865 		.ascii	"chHeapAlloc\000"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 78


 4200      6170416C 
 4200      6C6F6300 
 4201              	.LASF59:
 4202 03a6 5F636C6F 		.ascii	"_close\000"
 4202      736500
 4203              	.LASF177:
 4204 03ad 705F6D70 		.ascii	"p_mpool\000"
 4204      6F6F6C00 
 4205              	.LASF175:
 4206 03b5 705F6D74 		.ascii	"p_mtxlist\000"
 4206      786C6973 
 4206      7400
 4207              	.LASF77:
 4208 03bf 5F5F7364 		.ascii	"__sdidinit\000"
 4208      6964696E 
 4208      697400
 4209              	.LASF132:
 4210 03ca 73745F69 		.ascii	"st_ino\000"
 4210      6E6F00
 4211              	.LASF193:
 4212 03d1 685F6D74 		.ascii	"h_mtx\000"
 4212      7800
 4213              	.LASF70:
 4214 03d7 5F737464 		.ascii	"_stdin\000"
 4214      696E00
 4215              	.LASF103:
 4216 03de 5F67616D 		.ascii	"_gamma_signgam\000"
 4216      6D615F73 
 4216      69676E67 
 4216      616D00
 4217              	.LASF5:
 4218 03ed 6C6F6E67 		.ascii	"long long int\000"
 4218      206C6F6E 
 4218      6720696E 
 4218      7400
 4219              	.LASF217:
 4220 03fb 6368436F 		.ascii	"chCoreAlloc\000"
 4220      7265416C 
 4220      6C6F6300 
 4221              	.LASF49:
 4222 0407 5F626173 		.ascii	"_base\000"
 4222      6500
 4223              	.LASF82:
 4224 040d 5F667265 		.ascii	"_freelist\000"
 4224      656C6973 
 4224      7400
 4225              	.LASF11:
 4226 0417 5F5F6465 		.ascii	"__dev_t\000"
 4226      765F7400 
 4227              	.LASF97:
 4228 041f 5F6D756C 		.ascii	"_mult\000"
 4228      7400
 4229              	.LASF23:
 4230 0425 5F5F554C 		.ascii	"__ULong\000"
 4230      6F6E6700 
 4231              	.LASF183:
 4232 042d 636F6E74 		.ascii	"context\000"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 79


 4232      65787400 
 4233              	.LASF115:
 4234 0435 5F776372 		.ascii	"_wcrtomb_state\000"
 4234      746F6D62 
 4234      5F737461 
 4234      746500
 4235              	.LASF126:
 4236 0444 7569645F 		.ascii	"uid_t\000"
 4236      7400
 4237              	.LASF125:
 4238 044a 6465765F 		.ascii	"dev_t\000"
 4238      7400
 4239              	.LASF53:
 4240 0450 5F66696C 		.ascii	"_file\000"
 4240      6500
 4241              	.LASF168:
 4242 0456 705F666C 		.ascii	"p_flags\000"
 4242      61677300 
 4243              	.LASF156:
 4244 045e 6D73675F 		.ascii	"msg_t\000"
 4244      7400
 4245              	.LASF219:
 4246 0464 6D656D73 		.ascii	"memset\000"
 4246      657400
 4247              	.LASF78:
 4248 046b 5F5F636C 		.ascii	"__cleanup\000"
 4248      65616E75 
 4248      7000
 4249              	.LASF21:
 4250 0475 5F6D6273 		.ascii	"_mbstate_t\000"
 4250      74617465 
 4250      5F7400
 4251              	.LASF197:
 4252 0480 73697A65 		.ascii	"size\000"
 4252      00
 4253              	.LASF39:
 4254 0485 5F5F746D 		.ascii	"__tm_isdst\000"
 4254      5F697364 
 4254      737400
 4255              	.LASF117:
 4256 0490 5F685F65 		.ascii	"_h_errno\000"
 4256      72726E6F 
 4256      00
 4257              	.LASF140:
 4258 0499 73745F73 		.ascii	"st_spare1\000"
 4258      70617265 
 4258      3100
 4259              	.LASF142:
 4260 04a3 73745F73 		.ascii	"st_spare2\000"
 4260      70617265 
 4260      3200
 4261              	.LASF144:
 4262 04ad 73745F73 		.ascii	"st_spare3\000"
 4262      70617265 
 4262      3300
 4263              	.LASF147:
 4264 04b7 73745F73 		.ascii	"st_spare4\000"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 80


 4264      70617265 
 4264      3400
 4265              	.LASF206:
 4266 04c1 5F636C6F 		.ascii	"_close_r\000"
 4266      73655F72 
 4266      00
 4267              	.LASF173:
 4268 04ca 705F6D73 		.ascii	"p_msg\000"
 4268      6700
 4269              	.LASF152:
 4270 04d0 746D6F64 		.ascii	"tmode_t\000"
 4270      655F7400 
 4271              	.LASF35:
 4272 04d8 5F5F746D 		.ascii	"__tm_mon\000"
 4272      5F6D6F6E 
 4272      00
 4273              	.LASF204:
 4274 04e1 5F6C7365 		.ascii	"_lseek_r\000"
 4274      656B5F72 
 4274      00
 4275              	.LASF13:
 4276 04ea 5F5F6769 		.ascii	"__gid_t\000"
 4276      645F7400 
 4277              	.LASF182:
 4278 04f2 696E7463 		.ascii	"intctx\000"
 4278      747800
 4279              	.LASF57:
 4280 04f9 5F777269 		.ascii	"_write\000"
 4280      746500
 4281              	.LASF203:
 4282 0500 5F726561 		.ascii	"_read_r\000"
 4282      645F7200 
 4283              	.LASF127:
 4284 0508 6769645F 		.ascii	"gid_t\000"
 4284      7400
 4285              	.LASF222:
 4286 050e 2E2E2F2E 		.ascii	"../..//os/various/syscalls.c\000"
 4286      2E2F2F6F 
 4286      732F7661 
 4286      72696F75 
 4286      732F7379 
 4287              	.LASF211:
 4288 052b 5F726561 		.ascii	"_realloc_r\000"
 4288      6C6C6F63 
 4288      5F7200
 4289              	.LASF45:
 4290 0536 5F617465 		.ascii	"_atexit\000"
 4290      78697400 
 4291              	.LASF66:
 4292 053e 5F6D6273 		.ascii	"_mbstate\000"
 4292      74617465 
 4292      00
 4293              	.LASF176:
 4294 0547 705F7265 		.ascii	"p_realprio\000"
 4294      616C7072 
 4294      696F00
 4295              	.LASF3:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 81


 4296 0552 73686F72 		.ascii	"short int\000"
 4296      7420696E 
 4296      7400
 4297              	.LASF190:
 4298 055c 6D656D6F 		.ascii	"memory_heap\000"
 4298      72795F68 
 4298      65617000 
 4299              	.LASF174:
 4300 0568 705F6570 		.ascii	"p_epending\000"
 4300      656E6469 
 4300      6E6700
 4301              	.LASF185:
 4302 0573 6D5F7175 		.ascii	"m_queue\000"
 4302      65756500 
 4303              	.LASF10:
 4304 057b 6C6F6E67 		.ascii	"long int\000"
 4304      20696E74 
 4304      00
 4305              	.LASF223:
 4306 0584 433A5C44 		.ascii	"C:\\Documents and Settings\\Emilio\\Mis documentos\\"
 4306      6F63756D 
 4306      656E7473 
 4306      20616E64 
 4306      20536574 
 4307 05b4 50414554 		.ascii	"PAET_ARM\\Project\\applications\\smartcities\000"
 4307      5F41524D 
 4307      5C50726F 
 4307      6A656374 
 4307      5C617070 
 4308              	.LASF89:
 4309 05de 5F5F7366 		.ascii	"__sf\000"
 4309      00
 4310              	.LASF27:
 4311 05e3 5F736967 		.ascii	"_sign\000"
 4311      6E00
 4312              	.LASF76:
 4313 05e9 5F637572 		.ascii	"_current_locale\000"
 4313      72656E74 
 4313      5F6C6F63 
 4313      616C6500 
 4314              	.LASF160:
 4315 05f9 705F6E65 		.ascii	"p_next\000"
 4315      787400
 4316              	.LASF64:
 4317 0600 5F646174 		.ascii	"_data\000"
 4317      6100
 4318              	.LASF17:
 4319 0606 5F5F7763 		.ascii	"__wchb\000"
 4319      686200
 4320              	.LASF151:
 4321 060d 75696E74 		.ascii	"uint64_t\000"
 4321      36345F74 
 4321      00
 4322              	.LASF163:
 4323 0616 705F6374 		.ascii	"p_ctx\000"
 4323      7800
 4324              	.LASF212:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 82


 4325 061c 6F6C6441 		.ascii	"oldAddr\000"
 4325      64647200 
 4326              	.LASF36:
 4327 0624 5F5F746D 		.ascii	"__tm_year\000"
 4327      5F796561 
 4327      7200
 4328              	.LASF102:
 4329 062e 5F6C6F63 		.ascii	"_localtime_buf\000"
 4329      616C7469 
 4329      6D655F62 
 4329      756600
 4330              	.LASF12:
 4331 063d 5F5F7569 		.ascii	"__uid_t\000"
 4331      645F7400 
 4332              	.LASF143:
 4333 0645 73745F63 		.ascii	"st_ctime\000"
 4333      74696D65 
 4333      00
 4334              	.LASF215:
 4335 064e 5F63616C 		.ascii	"_calloc_r\000"
 4335      6C6F635F 
 4335      7200
 4336              	.LASF85:
 4337 0658 5F6E6577 		.ascii	"_new\000"
 4337      00
 4338              	.LASF83:
 4339 065d 5F637674 		.ascii	"_cvtlen\000"
 4339      6C656E00 
 4340              	.LASF26:
 4341 0665 5F6D6178 		.ascii	"_maxwds\000"
 4341      77647300 
 4342              	.LASF109:
 4343 066d 5F6C3634 		.ascii	"_l64a_buf\000"
 4343      615F6275 
 4343      6600
 4344              	.LASF75:
 4345 0677 5F637572 		.ascii	"_current_category\000"
 4345      72656E74 
 4345      5F636174 
 4345      65676F72 
 4345      7900
 4346              	.LASF122:
 4347 0689 63616464 		.ascii	"caddr_t\000"
 4347      725F7400 
 4348              	.LASF62:
 4349 0691 5F626C6B 		.ascii	"_blksize\000"
 4349      73697A65 
 4349      00
 4350              	.LASF30:
 4351 069a 5F5F746D 		.ascii	"__tm\000"
 4351      00
 4352              	.LASF65:
 4353 069f 5F6C6F63 		.ascii	"_lock\000"
 4353      6B00
 4354              	.LASF161:
 4355 06a5 705F7072 		.ascii	"p_prev\000"
 4355      657600
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 83


 4356              	.LASF18:
 4357 06ac 73697A65 		.ascii	"sizetype\000"
 4357      74797065 
 4357      00
 4358              	.LASF154:
 4359 06b5 74726566 		.ascii	"trefs_t\000"
 4359      735F7400 
 4360              	.LASF24:
 4361 06bd 6C6F6E67 		.ascii	"long unsigned int\000"
 4361      20756E73 
 4361      69676E65 
 4361      6420696E 
 4361      7400
 4362              	.LASF93:
 4363 06cf 5F6E696F 		.ascii	"_niobs\000"
 4363      627300
 4364              	.LASF15:
 4365 06d6 77696E74 		.ascii	"wint_t\000"
 4365      5F7400
 4366              	.LASF149:
 4367 06dd 696E7433 		.ascii	"int32_t\000"
 4367      325F7400 
 4368              	.LASF42:
 4369 06e5 5F64736F 		.ascii	"_dso_handle\000"
 4369      5F68616E 
 4369      646C6500 
 4370              	.LASF129:
 4371 06f1 6E6C696E 		.ascii	"nlink_t\000"
 4371      6B5F7400 
 4372              	.LASF84:
 4373 06f9 5F637674 		.ascii	"_cvtbuf\000"
 4373      62756600 
 4374              	.LASF2:
 4375 0701 756E7369 		.ascii	"unsigned char\000"
 4375      676E6564 
 4375      20636861 
 4375      7200
 4376              	.LASF169:
 4377 070f 705F7265 		.ascii	"p_refs\000"
 4377      667300
 4378              	.LASF111:
 4379 0716 5F676574 		.ascii	"_getdate_err\000"
 4379      64617465 
 4379      5F657272 
 4379      00
 4380              	.LASF98:
 4381 0723 5F616464 		.ascii	"_add\000"
 4381      00
 4382              	.LASF120:
 4383 0728 5F756E75 		.ascii	"_unused\000"
 4383      73656400 
 4384              	.LASF48:
 4385 0730 5F5F7362 		.ascii	"__sbuf\000"
 4385      756600
 4386              	.LASF138:
 4387 0737 73745F73 		.ascii	"st_size\000"
 4387      697A6500 
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 84


 4388              	.LASF92:
 4389 073f 5F676C75 		.ascii	"_glue\000"
 4389      6500
 4390              	.LASF88:
 4391 0745 5F5F7367 		.ascii	"__sglue\000"
 4391      6C756500 
 4392              	.LASF100:
 4393 074d 5F737472 		.ascii	"_strtok_last\000"
 4393      746F6B5F 
 4393      6C617374 
 4393      00
 4394              	.LASF107:
 4395 075a 5F6D6274 		.ascii	"_mbtowc_state\000"
 4395      6F77635F 
 4395      73746174 
 4395      6500
 4396              	.LASF187:
 4397 0768 6D5F6E65 		.ascii	"m_next\000"
 4397      787400
 4398              	.LASF41:
 4399 076f 5F666E61 		.ascii	"_fnargs\000"
 4399      72677300 
 4400              	.LASF1:
 4401 0777 7369676E 		.ascii	"signed char\000"
 4401      65642063 
 4401      68617200 
 4402              	.LASF128:
 4403 0783 6D6F6465 		.ascii	"mode_t\000"
 4403      5F7400
 4404              	.LASF68:
 4405 078a 5F726565 		.ascii	"_reent\000"
 4405      6E7400
 4406              	.LASF124:
 4407 0791 6F66665F 		.ascii	"off_t\000"
 4407      7400
 4408              	.LASF4:
 4409 0797 73686F72 		.ascii	"short unsigned int\000"
 4409      7420756E 
 4409      7369676E 
 4409      65642069 
 4409      6E7400
 4410              	.LASF181:
 4411 07aa 73746B61 		.ascii	"stkalign_t\000"
 4411      6C69676E 
 4411      5F7400
 4412              	.LASF189:
 4413 07b5 4D656D6F 		.ascii	"MemoryHeap\000"
 4413      72794865 
 4413      617000
 4414              	.LASF220:
 4415 07c0 6D656D63 		.ascii	"memcpy\000"
 4415      707900
 4416              	.LASF43:
 4417 07c7 5F666E74 		.ascii	"_fntypes\000"
 4417      79706573 
 4417      00
 4418              	.LASF50:
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 85


 4419 07d0 5F73697A 		.ascii	"_size\000"
 4419      6500
 4420              	.LASF9:
 4421 07d6 5F6F6666 		.ascii	"_off_t\000"
 4421      5F7400
 4422              	.LASF61:
 4423 07dd 5F6E6275 		.ascii	"_nbuf\000"
 4423      6600
 4424              	.LASF99:
 4425 07e3 5F756E75 		.ascii	"_unused_rand\000"
 4425      7365645F 
 4425      72616E64 
 4425      00
 4426              	.LASF137:
 4427 07f0 73745F72 		.ascii	"st_rdev\000"
 4427      64657600 
 4428              	.LASF67:
 4429 07f8 5F666C61 		.ascii	"_flags2\000"
 4429      67733200 
 4430              	.LASF196:
 4431 0800 616C6967 		.ascii	"align\000"
 4431      6E00
 4432              	.LASF44:
 4433 0806 5F69735F 		.ascii	"_is_cxa\000"
 4433      63786100 
 4434              	.LASF96:
 4435 080e 5F736565 		.ascii	"_seed\000"
 4435      6400
 4436              	.LASF104:
 4437 0814 5F72616E 		.ascii	"_rand_next\000"
 4437      645F6E65 
 4437      787400
 4438              	.LASF199:
 4439 081f 65786974 		.ascii	"exitcode\000"
 4439      636F6465 
 4439      00
 4440              	.LASF58:
 4441 0828 5F736565 		.ascii	"_seek\000"
 4441      6B00
 4442              	.LASF72:
 4443 082e 5F737464 		.ascii	"_stderr\000"
 4443      65727200 
 4444              	.LASF119:
 4445 0836 5F6E6D61 		.ascii	"_nmalloc\000"
 4445      6C6C6F63 
 4445      00
 4446              	.LASF60:
 4447 083f 5F756275 		.ascii	"_ubuf\000"
 4447      6600
 4448              		.ident	"GCC: (GNU) 4.7.2"
ARM GAS  C:\cygwin64\tmp\cc3a9Vsi.s 			page 86


DEFINED SYMBOLS
                            *ABS*:00000000 syscalls.c
C:\cygwin64\tmp\cc3a9Vsi.s:19     .text._read_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:25     .text._read_r:00000000 _read_r
C:\cygwin64\tmp\cc3a9Vsi.s:46     .text._lseek_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:52     .text._lseek_r:00000000 _lseek_r
C:\cygwin64\tmp\cc3a9Vsi.s:68     .text._write_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:74     .text._write_r:00000000 _write_r
C:\cygwin64\tmp\cc3a9Vsi.s:90     .text._close_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:96     .text._close_r:00000000 _close_r
C:\cygwin64\tmp\cc3a9Vsi.s:112    .text._sbrk_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:118    .text._sbrk_r:00000000 _sbrk_r
C:\cygwin64\tmp\cc3a9Vsi.s:154    .text._fstat_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:160    .text._fstat_r:00000000 _fstat_r
C:\cygwin64\tmp\cc3a9Vsi.s:194    .text._isatty_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:200    .text._isatty_r:00000000 _isatty_r
C:\cygwin64\tmp\cc3a9Vsi.s:216    .text._realloc_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:222    .text._realloc_r:00000000 _realloc_r
C:\cygwin64\tmp\cc3a9Vsi.s:269    .text._calloc_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:275    .text._calloc_r:00000000 _calloc_r
C:\cygwin64\tmp\cc3a9Vsi.s:296    .text._malloc_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:302    .text._malloc_r:00000000 _malloc_r
C:\cygwin64\tmp\cc3a9Vsi.s:321    .text._free_r:00000000 $t
C:\cygwin64\tmp\cc3a9Vsi.s:327    .text._free_r:00000000 _free_r
                     .debug_frame:00000010 $d

UNDEFINED SYMBOLS
chCoreAlloc
memset
chHeapAlloc
memcpy
chHeapFree