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 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368
|
/* LoongArch-specific support for NN-bit ELF.
Copyright (C) 2021-2024 Free Software Foundation, Inc.
Contributed by Loongson Ltd.
This file is part of BFD, the Binary File Descriptor library.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING3. If not,
see <http://www.gnu.org/licenses/>. */
#include "ansidecl.h"
#include "sysdep.h"
#include "bfd.h"
#include "libbfd.h"
#define ARCH_SIZE NN
#include "elf-bfd.h"
#include "objalloc.h"
#include "elf/loongarch.h"
#include "elfxx-loongarch.h"
#include "opcode/loongarch.h"
static bool
loongarch_info_to_howto_rela (bfd *abfd, arelent *cache_ptr,
Elf_Internal_Rela *dst)
{
cache_ptr->howto = loongarch_elf_rtype_to_howto (abfd,
ELFNN_R_TYPE (dst->r_info));
return cache_ptr->howto != NULL;
}
/* LoongArch ELF linker hash entry. */
struct loongarch_elf_link_hash_entry
{
struct elf_link_hash_entry elf;
#define GOT_UNKNOWN 0
#define GOT_NORMAL 1
#define GOT_TLS_GD 2
#define GOT_TLS_IE 4
#define GOT_TLS_LE 8
#define GOT_TLS_GDESC 16
#define GOT_TLS_GD_BOTH_P(tls_type) \
((tls_type & GOT_TLS_GD) && (tls_type & GOT_TLS_GDESC))
#define GOT_TLS_GD_ANY_P(tls_type) \
((tls_type & GOT_TLS_GD) || (tls_type & GOT_TLS_GDESC))
char tls_type;
};
#define loongarch_elf_hash_entry(ent) \
((struct loongarch_elf_link_hash_entry *) (ent))
struct _bfd_loongarch_elf_obj_tdata
{
struct elf_obj_tdata root;
/* The tls_type for each local got entry. */
char *local_got_tls_type;
};
#define _bfd_loongarch_elf_tdata(abfd) \
((struct _bfd_loongarch_elf_obj_tdata *) (abfd)->tdata.any)
#define _bfd_loongarch_elf_local_got_tls_type(abfd) \
(_bfd_loongarch_elf_tdata (abfd)->local_got_tls_type)
#define _bfd_loongarch_elf_tls_type(abfd, h, symndx) \
(*((h) != NULL \
? &loongarch_elf_hash_entry (h)->tls_type \
: &_bfd_loongarch_elf_local_got_tls_type (abfd)[symndx]))
#define is_loongarch_elf(bfd) \
(bfd_get_flavour (bfd) == bfd_target_elf_flavour \
&& elf_tdata (bfd) != NULL \
&& elf_object_id (bfd) == LARCH_ELF_DATA)
static bool
elfNN_loongarch_object (bfd *abfd)
{
return bfd_elf_allocate_object (abfd,
sizeof (struct _bfd_loongarch_elf_obj_tdata));
}
struct relr_entry
{
asection *sec;
bfd_vma off;
};
struct loongarch_elf_link_hash_table
{
struct elf_link_hash_table elf;
/* Short-cuts to get to dynamic linker sections. */
asection *sdyntdata;
/* Small local sym to section mapping cache. */
struct sym_cache sym_cache;
/* Used by local STT_GNU_IFUNC symbols. */
htab_t loc_hash_table;
void *loc_hash_memory;
/* The max alignment of output sections. */
bfd_vma max_alignment;
/* The data segment phase, don't relax the section
when it is exp_seg_relro_adjust. */
int *data_segment_phase;
/* Array of relative relocs to be emitted in DT_RELR format. */
bfd_size_type relr_alloc;
bfd_size_type relr_count;
struct relr_entry *relr;
/* Sorted output addresses of above relative relocs. */
bfd_vma *relr_sorted;
/* Layout recomputation count. */
bfd_size_type relr_layout_iter;
/* In BFD DT_RELR is implemented as a "relaxation." If in a relax trip
size_relative_relocs is updating the layout, relax_section may see
a partially updated state (some sections have vma updated but the
others do not), and it's unsafe to do the normal relaxation. */
bool layout_mutating_for_relr;
};
struct loongarch_elf_section_data
{
struct bfd_elf_section_data elf;
/* &htab->relr[i] where i is the smallest number s.t.
elf_section_data (htab->relr[i].sec) == &elf.
NULL if there exists no such i. */
struct relr_entry *relr;
};
/* We need an additional field in elf_section_data to handle complex
interactions between DT_RELR and relaxation. */
static bool
loongarch_elf_new_section_hook (bfd *abfd, asection *sec)
{
struct loongarch_elf_section_data *sdata;
sdata = bfd_zalloc (abfd, sizeof (*sdata));
if (!sdata)
return false;
sec->used_by_bfd = sdata;
return _bfd_elf_new_section_hook (abfd, sec);
}
#define loongarch_elf_section_data(x) \
((struct loongarch_elf_section_data *) elf_section_data (x))
/* Get the LoongArch ELF linker hash table from a link_info structure. */
#define loongarch_elf_hash_table(p) \
((struct loongarch_elf_link_hash_table *) ((p)->hash)) \
#define MINUS_ONE ((bfd_vma) 0 - 1)
#define sec_addr(sec) ((sec)->output_section->vma + (sec)->output_offset)
#define LARCH_ELF_LOG_WORD_BYTES (ARCH_SIZE == 32 ? 2 : 3)
#define LARCH_ELF_WORD_BYTES (1 << LARCH_ELF_LOG_WORD_BYTES)
#define PLT_HEADER_INSNS 8
#define PLT_HEADER_SIZE (PLT_HEADER_INSNS * 4)
#define PLT_ENTRY_INSNS 4
#define PLT_ENTRY_SIZE (PLT_ENTRY_INSNS * 4)
#define GOT_ENTRY_SIZE (LARCH_ELF_WORD_BYTES)
/* Reserve two entries of GOTPLT for ld.so, one is used for PLT
resolver _dl_runtime_resolve, the other is used for link map. */
#define GOTPLT_HEADER_SIZE (GOT_ENTRY_SIZE * 2)
#define elf_backend_want_got_plt 1
#define elf_backend_plt_readonly 1
#define elf_backend_want_plt_sym 1
#define elf_backend_plt_alignment 4
#define elf_backend_can_gc_sections 1
#define elf_backend_can_refcount 1
#define elf_backend_want_got_sym 1
#define elf_backend_got_header_size (GOT_ENTRY_SIZE * 1)
#define elf_backend_want_dynrelro 1
#define elf_backend_rela_normal 1
#define elf_backend_default_execstack 0
#define IS_LOONGARCH_TLS_TRANS_RELOC(R_TYPE) \
((R_TYPE) == R_LARCH_TLS_DESC_PC_HI20 \
|| (R_TYPE) == R_LARCH_TLS_DESC_PC_LO12 \
|| (R_TYPE) == R_LARCH_TLS_DESC_LD \
|| (R_TYPE) == R_LARCH_TLS_DESC_CALL \
|| (R_TYPE) == R_LARCH_TLS_IE_PC_HI20 \
|| (R_TYPE) == R_LARCH_TLS_IE_PC_LO12)
#define IS_OUTDATED_TLS_LE_RELOC(R_TYPE) \
((R_TYPE) == R_LARCH_TLS_LE_HI20 \
|| (R_TYPE) == R_LARCH_TLS_LE_LO12 \
|| (R_TYPE) == R_LARCH_TLS_LE64_LO20 \
|| (R_TYPE) == R_LARCH_TLS_LE64_HI12)
#define IS_CALL_RELOC(R_TYPE) \
((R_TYPE) == R_LARCH_B26 \
||(R_TYPE) == R_LARCH_CALL36)
/* If TLS GD/IE need dynamic relocations, INDX will be the dynamic indx,
and set NEED_RELOC to true used in allocate_dynrelocs and
loongarch_elf_relocate_section for TLS GD/IE. */
#define LARCH_TLS_GD_IE_NEED_DYN_RELOC(INFO, DYN, H, INDX, NEED_RELOC) \
do \
{ \
if ((H) != NULL \
&& (H)->dynindx != -1 \
&& WILL_CALL_FINISH_DYNAMIC_SYMBOL ((DYN), \
bfd_link_pic (INFO), (H))) \
(INDX) = (H)->dynindx; \
if (((H) == NULL \
|| ELF_ST_VISIBILITY ((H)->other) == STV_DEFAULT \
|| (H)->root.type != bfd_link_hash_undefweak) \
&& (!bfd_link_executable (INFO) \
|| (INDX) != 0)) \
(NEED_RELOC) = true; \
} \
while (0)
/* TL;DR always use it in this file instead when you want to type
SYMBOL_REFERENCES_LOCAL.
It's like SYMBOL_REFERENCES_LOCAL, but it returns true for local
protected functions. It happens to be same as SYMBOL_CALLS_LOCAL but
let's not reuse SYMBOL_CALLS_LOCAL or "CALLS" may puzzle people.
We do generate a PLT entry when someone attempts to la.pcrel an external
function. But we never really implemented "R_LARCH_COPY", thus we've
never supported la.pcrel an external symbol unless the loaded address is
only used for locating a function to be called. Thus the PLT entry is
a normal PLT entry, not intended to be a so-called "canonical PLT entry"
on the ports supporting copy relocation. So attempting to la.pcrel an
external function will just break pointer equality, even it's a
STV_DEFAULT function:
$ cat t.c
#include <assert.h>
void check(void *p) {assert(p == check);}
$ cat main.c
extern void check(void *);
int main(void) { check(check); }
$ cc t.c -fPIC -shared -o t.so
$ cc main.c -mdirect-extern-access t.so -Wl,-rpath=. -fpie -pie
$ ./a.out
a.out: t.c:2: check: Assertion `p == check' failed.
Aborted
Thus handling STV_PROTECTED function specially just fixes nothing:
adding -fvisibility=protected compiling t.c will not magically fix
the inequality. The only possible and correct fix is not to use
-mdirect-extern-access.
So we should remove this special handling, because it's only an
unsuccessful workaround for invalid code and it's penalizing valid
code. */
#define LARCH_REF_LOCAL(info, h) \
(_bfd_elf_symbol_refs_local_p ((h), (info), true))
/* Generate a PLT header. */
static bool
loongarch_make_plt_header (bfd_vma got_plt_addr, bfd_vma plt_header_addr,
uint32_t *entry)
{
bfd_vma pcrel = got_plt_addr - plt_header_addr;
bfd_vma hi, lo;
if (pcrel + 0x80000800 > 0xffffffff)
{
_bfd_error_handler (_("%#" PRIx64 " invaild imm"), (uint64_t) pcrel);
bfd_set_error (bfd_error_bad_value);
return false;
}
hi = ((pcrel + 0x800) >> 12) & 0xfffff;
lo = pcrel & 0xfff;
/* pcaddu12i $t2, %hi(%pcrel(.got.plt))
sub.[wd] $t1, $t1, $t3
ld.[wd] $t3, $t2, %lo(%pcrel(.got.plt)) # _dl_runtime_resolve
addi.[wd] $t1, $t1, -(PLT_HEADER_SIZE + 12)
addi.[wd] $t0, $t2, %lo(%pcrel(.got.plt))
srli.[wd] $t1, $t1, log2(16 / GOT_ENTRY_SIZE)
ld.[wd] $t0, $t0, GOT_ENTRY_SIZE
jirl $r0, $t3, 0 */
if (GOT_ENTRY_SIZE == 8)
{
entry[0] = 0x1c00000e | (hi & 0xfffff) << 5;
entry[1] = 0x0011bdad;
entry[2] = 0x28c001cf | (lo & 0xfff) << 10;
entry[3] = 0x02c001ad | ((-(PLT_HEADER_SIZE + 12)) & 0xfff) << 10;
entry[4] = 0x02c001cc | (lo & 0xfff) << 10;
entry[5] = 0x004501ad | (4 - LARCH_ELF_LOG_WORD_BYTES) << 10;
entry[6] = 0x28c0018c | GOT_ENTRY_SIZE << 10;
entry[7] = 0x4c0001e0;
}
else
{
entry[0] = 0x1c00000e | (hi & 0xfffff) << 5;
entry[1] = 0x00113dad;
entry[2] = 0x288001cf | (lo & 0xfff) << 10;
entry[3] = 0x028001ad | ((-(PLT_HEADER_SIZE + 12)) & 0xfff) << 10;
entry[4] = 0x028001cc | (lo & 0xfff) << 10;
entry[5] = 0x004481ad | (4 - LARCH_ELF_LOG_WORD_BYTES) << 10;
entry[6] = 0x2880018c | GOT_ENTRY_SIZE << 10;
entry[7] = 0x4c0001e0;
}
return true;
}
/* Generate a PLT entry. */
static bool
loongarch_make_plt_entry (bfd_vma got_plt_entry_addr, bfd_vma plt_entry_addr,
uint32_t *entry)
{
bfd_vma pcrel = got_plt_entry_addr - plt_entry_addr;
bfd_vma hi, lo;
if (pcrel + 0x80000800 > 0xffffffff)
{
_bfd_error_handler (_("%#" PRIx64 " invaild imm"), (uint64_t) pcrel);
bfd_set_error (bfd_error_bad_value);
return false;
}
hi = ((pcrel + 0x800) >> 12) & 0xfffff;
lo = pcrel & 0xfff;
entry[0] = 0x1c00000f | (hi & 0xfffff) << 5;
entry[1] = ((GOT_ENTRY_SIZE == 8 ? 0x28c001ef : 0x288001ef)
| (lo & 0xfff) << 10);
entry[2] = 0x4c0001ed; /* jirl $r13, $15, 0 */
entry[3] = 0x03400000; /* nop */
return true;
}
/* Create an entry in an LoongArch ELF linker hash table. */
static struct bfd_hash_entry *
link_hash_newfunc (struct bfd_hash_entry *entry, struct bfd_hash_table *table,
const char *string)
{
struct loongarch_elf_link_hash_entry *eh;
/* Allocate the structure if it has not already been allocated by a
subclass. */
if (entry == NULL)
{
entry = bfd_hash_allocate (table, sizeof (*eh));
if (entry == NULL)
return entry;
}
/* Call the allocation method of the superclass. */
entry = _bfd_elf_link_hash_newfunc (entry, table, string);
if (entry != NULL)
{
eh = (struct loongarch_elf_link_hash_entry *) entry;
eh->tls_type = GOT_UNKNOWN;
}
return entry;
}
/* Compute a hash of a local hash entry. We use elf_link_hash_entry
for local symbol so that we can handle local STT_GNU_IFUNC symbols
as global symbol. We reuse indx and dynstr_index for local symbol
hash since they aren't used by global symbols in this backend. */
static hashval_t
elfNN_loongarch_local_htab_hash (const void *ptr)
{
struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) ptr;
return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
}
/* Compare local hash entries. */
static int
elfNN_loongarch_local_htab_eq (const void *ptr1, const void *ptr2)
{
struct elf_link_hash_entry *h1 = (struct elf_link_hash_entry *) ptr1;
struct elf_link_hash_entry *h2 = (struct elf_link_hash_entry *) ptr2;
return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
}
/* Find and/or create a hash entry for local symbol. */
static struct elf_link_hash_entry *
elfNN_loongarch_get_local_sym_hash (struct loongarch_elf_link_hash_table *htab,
bfd *abfd, const Elf_Internal_Rela *rel,
bool create)
{
struct loongarch_elf_link_hash_entry e, *ret;
asection *sec = abfd->sections;
hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id, ELFNN_R_SYM (rel->r_info));
void **slot;
e.elf.indx = sec->id;
e.elf.dynstr_index = ELFNN_R_SYM (rel->r_info);
slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
create ? INSERT : NO_INSERT);
if (!slot)
return NULL;
if (*slot)
{
ret = (struct loongarch_elf_link_hash_entry *) *slot;
return &ret->elf;
}
ret = ((struct loongarch_elf_link_hash_entry *)
objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
sizeof (struct loongarch_elf_link_hash_entry)));
if (ret)
{
memset (ret, 0, sizeof (*ret));
ret->elf.indx = sec->id;
ret->elf.pointer_equality_needed = 0;
ret->elf.dynstr_index = ELFNN_R_SYM (rel->r_info);
ret->elf.dynindx = -1;
ret->elf.needs_plt = 0;
ret->elf.plt.refcount = -1;
ret->elf.got.refcount = -1;
ret->elf.def_dynamic = 0;
ret->elf.def_regular = 1;
ret->elf.ref_dynamic = 0; /* This should be always 0 for local. */
ret->elf.ref_regular = 0;
ret->elf.forced_local = 1;
ret->elf.root.type = bfd_link_hash_defined;
*slot = ret;
}
return &ret->elf;
}
/* Destroy an LoongArch elf linker hash table. */
static void
elfNN_loongarch_link_hash_table_free (bfd *obfd)
{
struct loongarch_elf_link_hash_table *ret;
ret = (struct loongarch_elf_link_hash_table *) obfd->link.hash;
if (ret->loc_hash_table)
htab_delete (ret->loc_hash_table);
if (ret->loc_hash_memory)
objalloc_free ((struct objalloc *) ret->loc_hash_memory);
_bfd_elf_link_hash_table_free (obfd);
}
/* Create a LoongArch ELF linker hash table. */
static struct bfd_link_hash_table *
loongarch_elf_link_hash_table_create (bfd *abfd)
{
struct loongarch_elf_link_hash_table *ret;
bfd_size_type amt = sizeof (struct loongarch_elf_link_hash_table);
ret = (struct loongarch_elf_link_hash_table *) bfd_zmalloc (amt);
if (ret == NULL)
return NULL;
if (!_bfd_elf_link_hash_table_init
(&ret->elf, abfd, link_hash_newfunc,
sizeof (struct loongarch_elf_link_hash_entry)))
{
free (ret);
return NULL;
}
ret->max_alignment = MINUS_ONE;
ret->loc_hash_table = htab_try_create (1024, elfNN_loongarch_local_htab_hash,
elfNN_loongarch_local_htab_eq, NULL);
ret->loc_hash_memory = objalloc_create ();
if (!ret->loc_hash_table || !ret->loc_hash_memory)
{
elfNN_loongarch_link_hash_table_free (abfd);
return NULL;
}
ret->elf.root.hash_table_free = elfNN_loongarch_link_hash_table_free;
return &ret->elf.root;
}
/* Merge backend specific data from an object file to the output
object file when linking. */
static bool
elfNN_loongarch_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
{
bfd *obfd = info->output_bfd;
flagword in_flags = elf_elfheader (ibfd)->e_flags;
flagword out_flags = elf_elfheader (obfd)->e_flags;
if (!is_loongarch_elf (ibfd) || !is_loongarch_elf (obfd))
return true;
if (strcmp (bfd_get_target (ibfd), bfd_get_target (obfd)) != 0)
{
_bfd_error_handler (_("%pB: ABI is incompatible with that of "
"the selected emulation:\n"
" target emulation `%s' does not match `%s'"),
ibfd, bfd_get_target (ibfd), bfd_get_target (obfd));
return false;
}
if (!_bfd_elf_merge_object_attributes (ibfd, info))
return false;
/* If the input BFD is not a dynamic object and it does not contain any
non-data sections, do not account its ABI. For example, various
packages produces such data-only relocatable objects with
`ld -r -b binary` or `objcopy`, and these objects have zero e_flags.
But they are compatible with all ABIs. */
if (!(ibfd->flags & DYNAMIC))
{
asection *sec;
bool have_code_sections = false;
for (sec = ibfd->sections; sec != NULL; sec = sec->next)
if ((bfd_section_flags (sec)
& (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
== (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
{
have_code_sections = true;
break;
}
if (!have_code_sections)
return true;
}
if (!elf_flags_init (obfd))
{
elf_flags_init (obfd) = true;
elf_elfheader (obfd)->e_flags = in_flags;
return true;
}
else if (out_flags != in_flags)
{
if ((EF_LOONGARCH_IS_OBJ_V0 (out_flags)
&& EF_LOONGARCH_IS_OBJ_V1 (in_flags))
|| (EF_LOONGARCH_IS_OBJ_V0 (in_flags)
&& EF_LOONGARCH_IS_OBJ_V1 (out_flags)))
{
elf_elfheader (obfd)->e_flags |= EF_LOONGARCH_OBJABI_V1;
out_flags = elf_elfheader (obfd)->e_flags;
in_flags = out_flags;
}
}
/* Disallow linking different ABIs. */
/* Only check relocation version.
The obj_v0 is compatible with obj_v1. */
if (EF_LOONGARCH_ABI(out_flags ^ in_flags) & EF_LOONGARCH_ABI_MASK)
{
_bfd_error_handler (_("%pB: can't link different ABI object."), ibfd);
goto fail;
}
return true;
fail:
bfd_set_error (bfd_error_bad_value);
return false;
}
/* Create the .got section. */
static bool
loongarch_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
{
flagword flags;
char *name;
asection *s, *s_got;
struct elf_link_hash_entry *h;
const struct elf_backend_data *bed = get_elf_backend_data (abfd);
struct elf_link_hash_table *htab = elf_hash_table (info);
/* This function may be called more than once. */
if (htab->sgot != NULL)
return true;
flags = bed->dynamic_sec_flags;
name = bed->rela_plts_and_copies_p ? ".rela.got" : ".rel.got";
s = bfd_make_section_anyway_with_flags (abfd, name, flags | SEC_READONLY);
if (s == NULL || !bfd_set_section_alignment (s, bed->s->log_file_align))
return false;
htab->srelgot = s;
s = s_got = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
if (s == NULL || !bfd_set_section_alignment (s, bed->s->log_file_align))
return false;
htab->sgot = s;
/* The first bit of the global offset table is the header. */
s->size += bed->got_header_size;
if (bed->want_got_plt)
{
s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
if (s == NULL || !bfd_set_section_alignment (s, bed->s->log_file_align))
return false;
htab->sgotplt = s;
/* Reserve room for the header. */
s->size = GOTPLT_HEADER_SIZE;
}
if (bed->want_got_sym)
{
/* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
section. We don't do this in the linker script because we don't want
to define the symbol if we are not creating a global offset table. */
h = _bfd_elf_define_linkage_sym (abfd, info, s_got,
"_GLOBAL_OFFSET_TABLE_");
elf_hash_table (info)->hgot = h;
if (h == NULL)
return false;
}
return true;
}
/* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
.rela.bss sections in DYNOBJ, and set up shortcuts to them in our
hash table. */
static bool
loongarch_elf_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
{
struct loongarch_elf_link_hash_table *htab;
htab = loongarch_elf_hash_table (info);
BFD_ASSERT (htab != NULL);
if (!loongarch_elf_create_got_section (dynobj, info))
return false;
if (!_bfd_elf_create_dynamic_sections (dynobj, info))
return false;
if (!bfd_link_pic (info))
htab->sdyntdata
= bfd_make_section_anyway_with_flags (dynobj, ".tdata.dyn",
SEC_ALLOC | SEC_THREAD_LOCAL);
if (!htab->elf.splt || !htab->elf.srelplt || !htab->elf.sdynbss
|| (!bfd_link_pic (info) && (!htab->elf.srelbss || !htab->sdyntdata)))
abort ();
return true;
}
static bool
loongarch_elf_record_tls_and_got_reference (bfd *abfd,
struct bfd_link_info *info,
struct elf_link_hash_entry *h,
unsigned long symndx,
char tls_type)
{
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
Elf_Internal_Shdr *symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
/* This is a global offset table entry for a local symbol. */
if (elf_local_got_refcounts (abfd) == NULL)
{
bfd_size_type size =
symtab_hdr->sh_info * (sizeof (bfd_vma) + sizeof (tls_type));
if (!(elf_local_got_refcounts (abfd) = bfd_zalloc (abfd, size)))
return false;
_bfd_loongarch_elf_local_got_tls_type (abfd) =
(char *) (elf_local_got_refcounts (abfd) + symtab_hdr->sh_info);
}
switch (tls_type)
{
case GOT_NORMAL:
case GOT_TLS_GD:
case GOT_TLS_IE:
case GOT_TLS_GDESC:
/* Need GOT. */
if (htab->elf.sgot == NULL
&& !loongarch_elf_create_got_section (htab->elf.dynobj, info))
return false;
if (h)
{
if (h->got.refcount < 0)
h->got.refcount = 0;
h->got.refcount++;
}
else
elf_local_got_refcounts (abfd)[symndx]++;
break;
case GOT_TLS_LE:
/* No need for GOT. */
break;
default:
_bfd_error_handler (_("Internal error: unreachable."));
return false;
}
char *new_tls_type = &_bfd_loongarch_elf_tls_type (abfd, h, symndx);
*new_tls_type |= tls_type;
/* If a symbol is accessed by both IE and DESC, relax DESC to IE. */
if ((*new_tls_type & GOT_TLS_IE) && (*new_tls_type & GOT_TLS_GDESC))
*new_tls_type &= ~ (GOT_TLS_GDESC);
if ((*new_tls_type & GOT_NORMAL) && (*new_tls_type & ~GOT_NORMAL))
{
_bfd_error_handler (_("%pB: `%s' accessed both as normal and "
"thread local symbol"),
abfd,
h ? h->root.root.string : "<local>");
return false;
}
return true;
}
static unsigned int
loongarch_reloc_got_type (unsigned int r_type)
{
switch (r_type)
{
case R_LARCH_TLS_DESC_PC_HI20:
case R_LARCH_TLS_DESC_PC_LO12:
case R_LARCH_TLS_DESC_LD:
case R_LARCH_TLS_DESC_CALL:
return GOT_TLS_GDESC;
case R_LARCH_TLS_IE_PC_HI20:
case R_LARCH_TLS_IE_PC_LO12:
return GOT_TLS_IE;
default:
break;
}
return GOT_UNKNOWN;
}
/* Return true if tls type transition can be performed. */
static bool
loongarch_can_trans_tls (bfd *input_bfd,
struct bfd_link_info *info,
struct elf_link_hash_entry *h,
unsigned int r_symndx,
unsigned int r_type)
{
char symbol_tls_type;
unsigned int reloc_got_type;
/* Only TLS DESC/IE in normal code mode will perform type
transition. */
if (! IS_LOONGARCH_TLS_TRANS_RELOC (r_type))
return false;
/* Obtaining tls got type here may occur before
loongarch_elf_record_tls_and_got_reference, so it is necessary
to ensure that tls got type has been initialized, otherwise it
is set to GOT_UNKNOWN. */
symbol_tls_type = GOT_UNKNOWN;
if (_bfd_loongarch_elf_local_got_tls_type (input_bfd) || h)
symbol_tls_type = _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx);
reloc_got_type = loongarch_reloc_got_type (r_type);
if (symbol_tls_type == GOT_TLS_IE && GOT_TLS_GD_ANY_P (reloc_got_type))
return true;
if (! bfd_link_executable (info))
return false;
if (h && h->root.type == bfd_link_hash_undefweak)
return false;
return true;
}
/* The type of relocation that can be transitioned. */
static unsigned int
loongarch_tls_transition_without_check (struct bfd_link_info *info,
unsigned int r_type,
struct elf_link_hash_entry *h)
{
bool local_exec = bfd_link_executable (info)
&& LARCH_REF_LOCAL (info, h);
switch (r_type)
{
case R_LARCH_TLS_DESC_PC_HI20:
return (local_exec
? R_LARCH_TLS_LE_HI20
: R_LARCH_TLS_IE_PC_HI20);
case R_LARCH_TLS_DESC_PC_LO12:
return (local_exec
? R_LARCH_TLS_LE_LO12
: R_LARCH_TLS_IE_PC_LO12);
case R_LARCH_TLS_DESC_LD:
case R_LARCH_TLS_DESC_CALL:
return R_LARCH_NONE;
case R_LARCH_TLS_IE_PC_HI20:
return local_exec ? R_LARCH_TLS_LE_HI20 : r_type;
case R_LARCH_TLS_IE_PC_LO12:
return local_exec ? R_LARCH_TLS_LE_LO12 : r_type;
default:
break;
}
return r_type;
}
static unsigned int
loongarch_tls_transition (bfd *input_bfd,
struct bfd_link_info *info,
struct elf_link_hash_entry *h,
unsigned int r_symndx,
unsigned int r_type)
{
if (! loongarch_can_trans_tls (input_bfd, info, h, r_symndx, r_type))
return r_type;
return loongarch_tls_transition_without_check (info, r_type, h);
}
static bool
bad_static_reloc (struct bfd_link_info *info,
bfd *abfd, const Elf_Internal_Rela *rel,
asection *sec, unsigned r_type,
struct elf_link_hash_entry *h,
Elf_Internal_Sym *isym)
{
reloc_howto_type * r = loongarch_elf_rtype_to_howto (abfd, r_type);
const char *object;
const char *pic_opt;
const char *name = NULL;
/* If this, the problem is we are referring an external symbol in
a way only working for local symbols, not PC-relative vs.
absolute. */
bool bad_extern_access =
(bfd_link_pde (info)
|| r_type == R_LARCH_PCREL20_S2
|| r_type == R_LARCH_PCALA_HI20);
if (h)
name = h->root.root.string;
else if (isym)
name = bfd_elf_string_from_elf_section (abfd,
elf_symtab_hdr (abfd).sh_link,
isym->st_name);
if (name == NULL || *name == '\0')
name = "<nameless>";
if (bfd_link_dll (info))
{
object = _("a shared object");
pic_opt = "-fPIC";
}
else
{
if (bfd_link_pie (info))
object = _("a PIE object");
else
object = _("a PDE object");
pic_opt = bad_extern_access ? "-mno-direct-extern-access" : "-fPIE";
}
(*_bfd_error_handler)
(_("%pB:(%pA+%#lx): relocation %s against `%s` can not be used when making "
"%s; recompile with %s%s"),
abfd, sec, (long) rel->r_offset, r ? r->name : _("<unknown>"), name,
object, pic_opt,
bad_extern_access ? _(" and check the symbol visibility") : "");
bfd_set_error (bfd_error_bad_value);
return false;
}
/* Look through the relocs for a section during the first phase, and
allocate space in the global offset table or procedure linkage
table. */
static bool
loongarch_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
asection *sec, const Elf_Internal_Rela *relocs)
{
struct loongarch_elf_link_hash_table *htab;
Elf_Internal_Shdr *symtab_hdr;
struct elf_link_hash_entry **sym_hashes;
const Elf_Internal_Rela *rel;
asection *sreloc = NULL;
if (bfd_link_relocatable (info))
return true;
htab = loongarch_elf_hash_table (info);
symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
sym_hashes = elf_sym_hashes (abfd);
if (htab->elf.dynobj == NULL)
htab->elf.dynobj = abfd;
for (rel = relocs; rel < relocs + sec->reloc_count; rel++)
{
unsigned int r_type;
unsigned int r_symndx;
struct elf_link_hash_entry *h;
bool is_abs_symbol = false;
Elf_Internal_Sym *isym = NULL;
r_symndx = ELFNN_R_SYM (rel->r_info);
r_type = ELFNN_R_TYPE (rel->r_info);
if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
{
_bfd_error_handler (_("%pB: bad symbol index: %d"), abfd, r_symndx);
return false;
}
if (r_symndx < symtab_hdr->sh_info)
{
/* A local symbol. */
isym = bfd_sym_from_r_symndx (&htab->elf.sym_cache, abfd, r_symndx);
if (isym == NULL)
return false;
is_abs_symbol = isym->st_shndx == SHN_ABS;
if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
{
h = elfNN_loongarch_get_local_sym_hash (htab, abfd, rel, true);
if (h == NULL)
return false;
h->type = STT_GNU_IFUNC;
h->ref_regular = 1;
}
else
h = NULL;
}
else
{
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
while (h->root.type == bfd_link_hash_indirect
|| h->root.type == bfd_link_hash_warning)
h = (struct elf_link_hash_entry *) h->root.u.i.link;
is_abs_symbol = bfd_is_abs_symbol (&h->root);
}
/* It is referenced by a non-shared object. */
if (h != NULL)
h->ref_regular = 1;
if (h && h->type == STT_GNU_IFUNC)
{
if (htab->elf.dynobj == NULL)
htab->elf.dynobj = abfd;
/* Create 'irelifunc' in PIC object. */
if (bfd_link_pic (info)
&& !_bfd_elf_create_ifunc_sections (htab->elf.dynobj, info))
return false;
/* If '.plt' not represent, create '.iplt' to deal with ifunc. */
else if (!htab->elf.splt
&& !_bfd_elf_create_ifunc_sections (htab->elf.dynobj, info))
return false;
/* Create the ifunc sections, iplt and ipltgot, for static
executables. */
if ((r_type == R_LARCH_64 || r_type == R_LARCH_32)
&& !_bfd_elf_create_ifunc_sections (htab->elf.dynobj, info))
return false;
if (h->plt.refcount < 0)
h->plt.refcount = 0;
h->plt.refcount++;
h->needs_plt = 1;
elf_tdata (info->output_bfd)->has_gnu_osabi |= elf_gnu_osabi_ifunc;
}
int need_dynreloc = 0;
int only_need_pcrel = 0;
/* Type transitions are only possible with relocations accompanied
by R_LARCH_RELAX. */
if (rel + 1 != relocs + sec->reloc_count
&& ELFNN_R_TYPE (rel[1].r_info) == R_LARCH_RELAX)
r_type = loongarch_tls_transition (abfd, info, h, r_symndx, r_type);
/* I don't want to spend time supporting DT_RELR with old object
files doing stack-based relocs. */
if (info->enable_dt_relr
&& r_type >= R_LARCH_SOP_PUSH_PCREL
&& r_type <= R_LARCH_SOP_POP_32_U)
{
/* xgettext:c-format */
_bfd_error_handler (_("%pB: stack based reloc type (%u) is not "
"supported with -z pack-relative-relocs"),
abfd, r_type);
return false;
}
switch (r_type)
{
case R_LARCH_GOT_PC_HI20:
case R_LARCH_GOT_HI20:
case R_LARCH_SOP_PUSH_GPREL:
/* For la.global. */
if (h)
h->pointer_equality_needed = 1;
if (!loongarch_elf_record_tls_and_got_reference (abfd, info, h,
r_symndx,
GOT_NORMAL))
return false;
break;
case R_LARCH_TLS_LD_PC_HI20:
case R_LARCH_TLS_LD_HI20:
case R_LARCH_TLS_GD_PC_HI20:
case R_LARCH_TLS_GD_HI20:
case R_LARCH_SOP_PUSH_TLS_GD:
if (!loongarch_elf_record_tls_and_got_reference (abfd, info, h,
r_symndx,
GOT_TLS_GD))
return false;
break;
case R_LARCH_TLS_IE_PC_HI20:
case R_LARCH_TLS_IE_HI20:
case R_LARCH_SOP_PUSH_TLS_GOT:
if (bfd_link_pic (info))
/* May fail for lazy-bind. */
info->flags |= DF_STATIC_TLS;
if (!loongarch_elf_record_tls_and_got_reference (abfd, info, h,
r_symndx,
GOT_TLS_IE))
return false;
break;
case R_LARCH_TLS_LE_HI20:
case R_LARCH_TLS_LE_HI20_R:
case R_LARCH_SOP_PUSH_TLS_TPREL:
if (!bfd_link_executable (info))
return bad_static_reloc (info, abfd, rel, sec, r_type, h, isym);
if (!loongarch_elf_record_tls_and_got_reference (abfd, info, h,
r_symndx,
GOT_TLS_LE))
return false;
break;
case R_LARCH_TLS_DESC_PC_HI20:
case R_LARCH_TLS_DESC_HI20:
if (!loongarch_elf_record_tls_and_got_reference (abfd, info, h,
r_symndx,
GOT_TLS_GDESC))
return false;
break;
case R_LARCH_ABS_HI20:
if (bfd_link_pic (info))
return bad_static_reloc (info, abfd, rel, sec, r_type, h, isym);
/* Fall through. */
case R_LARCH_SOP_PUSH_ABSOLUTE:
if (h != NULL)
/* If this reloc is in a read-only section, we might
need a copy reloc. We can't check reliably at this
stage whether the section is read-only, as input
sections have not yet been mapped to output sections.
Tentatively set the flag for now, and correct in
adjust_dynamic_symbol. */
h->non_got_ref = 1;
break;
/* Since shared library global symbols interpose, any
PC-relative relocations against external symbols
should not be used to build shared libraries.
In static PIE undefined weak symbols may be allowed
by rewriting pcaddi to addi.w if addend is in [-2048, 2048). */
case R_LARCH_PCREL20_S2:
if (bfd_link_pic (info)
&& (sec->flags & SEC_ALLOC) != 0
&& (sec->flags & SEC_READONLY) != 0
&& ! LARCH_REF_LOCAL (info, h)
&& (!info->nointerp
|| h->root.type != bfd_link_hash_undefweak))
return bad_static_reloc (info, abfd, rel, sec, r_type, h, NULL);
break;
/* For normal cmodel, pcalau12i + addi.d/w used to data.
For first version medium cmodel, pcalau12i + jirl are used to
function call, it need to creat PLT entry for STT_FUNC and
STT_GNU_IFUNC type symbol. */
case R_LARCH_PCALA_HI20:
if (h != NULL && (STT_FUNC == h->type || STT_GNU_IFUNC == h->type))
{
/* For pcalau12i + jirl. */
h->needs_plt = 1;
if (h->plt.refcount < 0)
h->plt.refcount = 0;
h->plt.refcount++;
h->non_got_ref = 1;
h->pointer_equality_needed = 1;
}
/* PC-relative relocations are allowed For first version
medium cmodel function call. Those against undefined
weak symbol are allowed for static PIE by rewritting
pcalau12i to lu12i.w. */
if (h != NULL && !h->needs_plt
&& bfd_link_pic (info)
&& (sec->flags & SEC_ALLOC) != 0
&& (sec->flags & SEC_READONLY) != 0
&& ! LARCH_REF_LOCAL (info, h)
&& (!info->nointerp
|| h->root.type != bfd_link_hash_undefweak))
return bad_static_reloc (info, abfd, rel, sec, r_type, h, NULL);
break;
case R_LARCH_B16:
case R_LARCH_B21:
case R_LARCH_B26:
case R_LARCH_CALL36:
if (h != NULL)
{
h->needs_plt = 1;
if (!bfd_link_pic (info))
h->non_got_ref = 1;
/* We try to create PLT stub for all non-local function. */
if (h->plt.refcount < 0)
h->plt.refcount = 0;
h->plt.refcount++;
}
break;
case R_LARCH_SOP_PUSH_PCREL:
if (h != NULL)
{
if (!bfd_link_pic (info))
h->non_got_ref = 1;
/* We try to create PLT stub for all non-local function. */
if (h->plt.refcount < 0)
h->plt.refcount = 0;
h->plt.refcount++;
h->pointer_equality_needed = 1;
}
break;
case R_LARCH_SOP_PUSH_PLT_PCREL:
/* This symbol requires a procedure linkage table entry. We
actually build the entry in adjust_dynamic_symbol,
because this might be a case of linking PIC code without
linking in any dynamic objects, in which case we don't
need to generate a procedure linkage table after all. */
if (h != NULL)
{
h->needs_plt = 1;
if (h->plt.refcount < 0)
h->plt.refcount = 0;
h->plt.refcount++;
}
break;
case R_LARCH_TLS_DTPREL32:
case R_LARCH_TLS_DTPREL64:
need_dynreloc = 1;
only_need_pcrel = 1;
break;
case R_LARCH_32:
if (ARCH_SIZE > 32
&& bfd_link_pic (info)
&& (sec->flags & SEC_ALLOC) != 0)
{
if (!is_abs_symbol)
{
_bfd_error_handler
(_("%pB: relocation R_LARCH_32 against non-absolute "
"symbol `%s' cannot be used in ELFCLASS64 when "
"making a shared object or PIE"),
abfd, h ? h->root.root.string : "a local symbol");
bfd_set_error (bfd_error_bad_value);
return false;
}
}
/* Fall through. */
case R_LARCH_JUMP_SLOT:
case R_LARCH_64:
/* Resolved to const. */
if (is_abs_symbol)
break;
need_dynreloc = 1;
/* If resolved symbol is defined in this object,
1. Under pie, the symbol is known. We convert it
into R_LARCH_RELATIVE and need load-addr still.
2. Under pde, the symbol is known and we can discard R_LARCH_NN.
3. Under dll, R_LARCH_NN can't be changed normally, since
its defination could be covered by the one in executable.
For symbolic, we convert it into R_LARCH_RELATIVE.
Thus, only under pde, it needs pcrel only. We discard it. */
only_need_pcrel = bfd_link_pde (info);
if (h != NULL
&& (!bfd_link_pic (info)
|| h->type == STT_GNU_IFUNC))
{
/* This reloc might not bind locally. */
h->non_got_ref = 1;
h->pointer_equality_needed = 1;
if (!h->def_regular
|| (sec->flags & (SEC_CODE | SEC_READONLY)) != 0)
{
/* We may need a .plt entry if the symbol is a function
defined in a shared lib or is a function referenced
from the code or read-only section. */
h->plt.refcount += 1;
}
}
break;
case R_LARCH_GNU_VTINHERIT:
if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
return false;
break;
case R_LARCH_GNU_VTENTRY:
if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
return false;
break;
case R_LARCH_ALIGN:
/* Check against irrational R_LARCH_ALIGN relocs which may cause
removing an odd number of bytes and disrupt DT_RELR. */
if (rel->r_offset % 4 != 0)
{
/* xgettext:c-format */
_bfd_error_handler (
_("%pB: R_LARCH_ALIGN with offset %" PRId64 " not aligned "
"to instruction boundary"),
abfd, (uint64_t) rel->r_offset);
return false;
}
break;
default:
break;
}
/* Record some info for sizing and allocating dynamic entry. */
if (need_dynreloc && (sec->flags & SEC_ALLOC))
{
/* When creating a shared object, we must copy these
relocs into the output file. We create a reloc
section in dynobj and make room for the reloc. */
struct elf_dyn_relocs *p;
struct elf_dyn_relocs **head;
if (sreloc == NULL)
{
sreloc
= _bfd_elf_make_dynamic_reloc_section (sec, htab->elf.dynobj,
LARCH_ELF_LOG_WORD_BYTES,
abfd, /*rela?*/ true);
if (sreloc == NULL)
return false;
}
/* If this is a global symbol, we count the number of
relocations we need for this symbol. */
if (h != NULL)
head = &h->dyn_relocs;
else
{
/* Track dynamic relocs needed for local syms too.
We really need local syms available to do this
easily. Oh well. */
asection *s;
void *vpp;
s = bfd_section_from_elf_index (abfd, isym->st_shndx);
if (s == NULL)
s = sec;
vpp = &elf_section_data (s)->local_dynrel;
head = (struct elf_dyn_relocs **) vpp;
}
p = *head;
if (p == NULL || p->sec != sec)
{
bfd_size_type amt = sizeof *p;
p = (struct elf_dyn_relocs *) bfd_alloc (htab->elf.dynobj, amt);
if (p == NULL)
return false;
p->next = *head;
*head = p;
p->sec = sec;
p->count = 0;
p->pc_count = 0;
}
p->count++;
p->pc_count += only_need_pcrel;
}
}
return true;
}
/* Find dynamic relocs for H that apply to read-only sections. */
static asection *
readonly_dynrelocs (struct elf_link_hash_entry *h)
{
struct elf_dyn_relocs *p;
for (p = h->dyn_relocs; p != NULL; p = p->next)
{
asection *s = p->sec->output_section;
if (s != NULL && (s->flags & SEC_READONLY) != 0)
return p->sec;
}
return NULL;
}
/* Adjust a symbol defined by a dynamic object and referenced by a
regular object. The current definition is in some section of the
dynamic object, but we're not including those sections. We have to
change the definition to something the rest of the link can
understand. */
static bool
loongarch_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
struct elf_link_hash_entry *h)
{
struct loongarch_elf_link_hash_table *htab;
bfd *dynobj;
htab = loongarch_elf_hash_table (info);
BFD_ASSERT (htab != NULL);
dynobj = htab->elf.dynobj;
/* Make sure we know what is going on here. */
BFD_ASSERT (dynobj != NULL
&& (h->needs_plt
|| h->type == STT_GNU_IFUNC
|| h->is_weakalias
|| (h->def_dynamic
&& h->ref_regular
&& !h->def_regular)));
/* If this is a function, put it in the procedure linkage table. We
will fill in the contents of the procedure linkage table later
(although we could actually do it here). */
if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
{
if (h->plt.refcount <= 0
|| (h->type != STT_GNU_IFUNC
&& (LARCH_REF_LOCAL (info, h)
|| (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
&& h->root.type == bfd_link_hash_undefweak))))
{
/* This case can occur if we saw a R_LARCH_SOP_PUSH_PLT_PCREL reloc
in an input file, but the symbol was never referred to by a
dynamic object, or if all references were garbage collected.
In such a case, we don't actually need to build a PLT entry. */
h->plt.offset = MINUS_ONE;
h->needs_plt = 0;
}
return true;
}
else
h->plt.offset = MINUS_ONE;
/* If this is a weak symbol, and there is a real definition, the
processor independent code will have arranged for us to see the
real definition first, and we can just use the same value. */
if (h->is_weakalias)
{
struct elf_link_hash_entry *def = weakdef (h);
BFD_ASSERT (def->root.type == bfd_link_hash_defined);
h->root.u.def.section = def->root.u.def.section;
h->root.u.def.value = def->root.u.def.value;
return true;
}
/* R_LARCH_COPY is not adept glibc, not to generate. */
/* Can not print anything, because make check ld. */
return true;
}
/* Allocate space in .plt, .got and associated reloc sections for
dynamic relocs. */
static bool
allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
{
struct bfd_link_info *info;
struct loongarch_elf_link_hash_table *htab;
struct elf_dyn_relocs *p;
if (h->root.type == bfd_link_hash_indirect)
return true;
if (h->type == STT_GNU_IFUNC
&& h->def_regular)
return true;
info = (struct bfd_link_info *) inf;
htab = loongarch_elf_hash_table (info);
bool dyn = htab->elf.dynamic_sections_created;
BFD_ASSERT (htab != NULL);
do
{
asection *plt, *gotplt, *relplt;
if (!h->needs_plt)
break;
h->needs_plt = 0;
if (htab->elf.splt)
{
if (h->dynindx == -1 && !h->forced_local && dyn
&& h->root.type == bfd_link_hash_undefweak)
{
if (!bfd_elf_link_record_dynamic_symbol (info, h))
return false;
}
if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h)
&& h->type != STT_GNU_IFUNC)
break;
plt = htab->elf.splt;
gotplt = htab->elf.sgotplt;
relplt = htab->elf.srelplt;
}
else if (htab->elf.iplt)
{
/* .iplt only for IFUNC. */
if (h->type != STT_GNU_IFUNC)
break;
plt = htab->elf.iplt;
gotplt = htab->elf.igotplt;
relplt = htab->elf.irelplt;
}
else
break;
if (plt->size == 0)
plt->size = PLT_HEADER_SIZE;
h->plt.offset = plt->size;
plt->size += PLT_ENTRY_SIZE;
gotplt->size += GOT_ENTRY_SIZE;
relplt->size += sizeof (ElfNN_External_Rela);
/* If this symbol is not defined in a regular file, and we are
not generating a shared library, then set the symbol to this
location in the .plt. This is required to make function
pointers compare as equal between the normal executable and
the shared library. */
if (!bfd_link_pic (info)
&& !h->def_regular)
{
h->root.u.def.section = plt;
h->root.u.def.value = h->plt.offset;
}
h->needs_plt = 1;
}
while (0);
if (!h->needs_plt)
h->plt.offset = MINUS_ONE;
if (0 < h->got.refcount)
{
asection *s;
int tls_type = loongarch_elf_hash_entry (h)->tls_type;
/* Make sure this symbol is output as a dynamic symbol.
Undefined weak syms won't yet be marked as dynamic. */
if (h->dynindx == -1 && !h->forced_local && dyn
&& h->root.type == bfd_link_hash_undefweak)
{
if (!bfd_elf_link_record_dynamic_symbol (info, h))
return false;
}
s = htab->elf.sgot;
h->got.offset = s->size;
if (tls_type & (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC))
{
int indx = 0;
bool need_reloc = false;
LARCH_TLS_GD_IE_NEED_DYN_RELOC (info, dyn, h, indx,
need_reloc);
/* TLS_GD needs two dynamic relocs and two GOT slots. */
if (tls_type & GOT_TLS_GD)
{
s->size += 2 * GOT_ENTRY_SIZE;
if (need_reloc)
htab->elf.srelgot->size += 2 * sizeof (ElfNN_External_Rela);
}
/* TLS_IE needs one dynamic reloc and one GOT slot. */
if (tls_type & GOT_TLS_IE)
{
s->size += GOT_ENTRY_SIZE;
if (need_reloc)
htab->elf.srelgot->size += sizeof (ElfNN_External_Rela);
}
/* TLS_DESC needs one dynamic reloc and two GOT slot. */
if (tls_type & GOT_TLS_GDESC)
{
s->size += GOT_ENTRY_SIZE * 2;
htab->elf.srelgot->size += sizeof (ElfNN_External_Rela);
}
}
else
{
s->size += GOT_ENTRY_SIZE;
if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
|| h->root.type != bfd_link_hash_undefweak)
&& (bfd_link_pic (info)
|| WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info),
h))
&& !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
/* Undefined weak symbol in static PIE resolves to 0 without
any dynamic relocations. */
htab->elf.srelgot->size += sizeof (ElfNN_External_Rela);
}
}
else
h->got.offset = MINUS_ONE;
if (h->dyn_relocs == NULL)
return true;
/* Extra dynamic relocate,
* R_LARCH_64
* R_LARCH_TLS_DTPRELNN
* R_LARCH_JUMP_SLOT
* R_LARCH_NN. */
if (SYMBOL_CALLS_LOCAL (info, h))
{
struct elf_dyn_relocs **pp;
for (pp = &h->dyn_relocs; (p = *pp) != NULL;)
{
p->count -= p->pc_count;
p->pc_count = 0;
if (p->count == 0)
*pp = p->next;
else
pp = &p->next;
}
}
if (h->root.type == bfd_link_hash_undefweak)
{
if (UNDEFWEAK_NO_DYNAMIC_RELOC (info, h)
|| ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
|| (!bfd_link_pic (info) && h->non_got_ref))
h->dyn_relocs = NULL;
else if (h->dynindx == -1 && !h->forced_local)
{
/* Make sure this symbol is output as a dynamic symbol.
Undefined weak syms won't yet be marked as dynamic. */
if (!bfd_elf_link_record_dynamic_symbol (info, h))
return false;
if (h->dynindx == -1)
h->dyn_relocs = NULL;
}
}
for (p = h->dyn_relocs; p != NULL; p = p->next)
{
if (discarded_section (p->sec))
continue;
asection *sreloc = elf_section_data (p->sec)->sreloc;
sreloc->size += p->count * sizeof (ElfNN_External_Rela);
}
return true;
}
/* A modified version of _bfd_elf_allocate_ifunc_dyn_relocs.
For local def and ref ifunc,
dynamic relocations are stored in
1. rela.srelgot section in dynamic object (dll or exec).
2. rela.irelplt section in static executable.
Unlike _bfd_elf_allocate_ifunc_dyn_relocs, rela.srelgot is used
instead of rela.srelplt. Glibc ELF loader will not support
R_LARCH_IRELATIVE relocation in rela.plt. */
static bool
local_allocate_ifunc_dyn_relocs (struct bfd_link_info *info,
struct elf_link_hash_entry *h,
struct elf_dyn_relocs **head,
unsigned int plt_entry_size,
unsigned int plt_header_size,
unsigned int got_entry_size,
bool avoid_plt)
{
asection *plt, *gotplt, *relplt;
struct elf_dyn_relocs *p;
unsigned int sizeof_reloc;
const struct elf_backend_data *bed;
struct elf_link_hash_table *htab;
/* If AVOID_PLT is TRUE, don't use PLT if possible. */
bool use_plt = !avoid_plt || h->plt.refcount > 0;
bool need_dynreloc = !use_plt || bfd_link_pic (info);
/* When a PIC object references a STT_GNU_IFUNC symbol defined
in executable or it isn't referenced via PLT, the address of
the resolved function may be used. But in non-PIC executable,
the address of its plt slot may be used. Pointer equality may
not work correctly. PIE or non-PLT reference should be used if
pointer equality is required here.
If STT_GNU_IFUNC symbol is defined in position-dependent executable,
backend should change it to the normal function and set its address
to its PLT entry which should be resolved by R_*_IRELATIVE at
run-time. All external references should be resolved to its PLT in
executable. */
if (!need_dynreloc
&& !(bfd_link_pde (info) && h->def_regular)
&& (h->dynindx != -1
|| info->export_dynamic)
&& h->pointer_equality_needed)
{
info->callbacks->einfo
/* xgettext:c-format. */
(_("%F%P: dynamic STT_GNU_IFUNC symbol `%s' with pointer "
"equality in `%pB' can not be used when making an "
"executable; recompile with -fPIE and relink with -pie\n"),
h->root.root.string,
h->root.u.def.section->owner);
bfd_set_error (bfd_error_bad_value);
return false;
}
htab = elf_hash_table (info);
/* When the symbol is marked with regular reference, if PLT isn't used
or we are building a PIC object, we must keep dynamic relocation
if there is non-GOT reference and use PLT if there is PC-relative
reference. */
if (need_dynreloc && h->ref_regular)
{
bool keep = false;
for (p = *head; p != NULL; p = p->next)
if (p->count)
{
h->non_got_ref = 1;
/* Need dynamic relocations for non-GOT reference. */
keep = true;
if (p->pc_count)
{
/* Must use PLT for PC-relative reference. */
use_plt = true;
need_dynreloc = bfd_link_pic (info);
break;
}
}
if (keep)
goto keep;
}
/* Support garbage collection against STT_GNU_IFUNC symbols. */
if (h->plt.refcount <= 0 && h->got.refcount <= 0)
{
h->got = htab->init_got_offset;
h->plt = htab->init_plt_offset;
*head = NULL;
return true;
}
/* Return and discard space for dynamic relocations against it if
it is never referenced. */
if (!h->ref_regular)
{
if (h->plt.refcount > 0
|| h->got.refcount > 0)
abort ();
h->got = htab->init_got_offset;
h->plt = htab->init_plt_offset;
*head = NULL;
return true;
}
keep:
bed = get_elf_backend_data (info->output_bfd);
if (bed->rela_plts_and_copies_p)
sizeof_reloc = bed->s->sizeof_rela;
else
sizeof_reloc = bed->s->sizeof_rel;
/* When building a static executable, use iplt, igot.plt and
rela.iplt sections for STT_GNU_IFUNC symbols. */
if (htab->splt != NULL)
{
plt = htab->splt;
gotplt = htab->sgotplt;
/* Change dynamic info of ifunc gotplt from srelplt to srelgot. */
relplt = htab->srelgot;
/* If this is the first plt entry and PLT is used, make room for
the special first entry. */
if (plt->size == 0 && use_plt)
plt->size += plt_header_size;
}
else
{
plt = htab->iplt;
gotplt = htab->igotplt;
relplt = htab->irelplt;
}
if (use_plt)
{
/* Don't update value of STT_GNU_IFUNC symbol to PLT. We need
the original value for R_*_IRELATIVE. */
h->plt.offset = plt->size;
/* Make room for this entry in the plt/iplt section. */
plt->size += plt_entry_size;
/* We also need to make an entry in the got.plt/got.iplt section,
which will be placed in the got section by the linker script. */
gotplt->size += got_entry_size;
}
/* We also need to make an entry in the rela.plt/.rela.iplt
section for GOTPLT relocation if PLT is used. */
if (use_plt)
{
relplt->size += sizeof_reloc;
relplt->reloc_count++;
}
/* We need dynamic relocation for STT_GNU_IFUNC symbol only when
there is a non-GOT reference in a PIC object or PLT isn't used. */
if (!need_dynreloc || !h->non_got_ref)
*head = NULL;
/* Finally, allocate space. */
p = *head;
if (p != NULL)
{
bfd_size_type count = 0;
do
{
count += p->count;
p = p->next;
}
while (p != NULL);
htab->ifunc_resolvers = count != 0;
/* Dynamic relocations are stored in
1. rela.srelgot section in PIC object.
2. rela.srelgot section in dynamic executable.
3. rela.irelplt section in static executable. */
if (htab->splt != NULL)
htab->srelgot->size += count * sizeof_reloc;
else
{
relplt->size += count * sizeof_reloc;
relplt->reloc_count += count;
}
}
/* For STT_GNU_IFUNC symbol, got.plt has the real function address
and got has the PLT entry adddress. We will load the GOT entry
with the PLT entry in finish_dynamic_symbol if it is used. For
branch, it uses got.plt. For symbol value, if PLT is used,
1. Use got.plt in a PIC object if it is forced local or not
dynamic.
2. Use got.plt in a non-PIC object if pointer equality isn't
needed.
3. Use got.plt in PIE.
4. Use got.plt if got isn't used.
5. Otherwise use got so that it can be shared among different
objects at run-time.
If PLT isn't used, always use got for symbol value.
We only need to relocate got entry in PIC object or in dynamic
executable without PLT. */
if (use_plt
&& (h->got.refcount <= 0
|| (bfd_link_pic (info)
&& (h->dynindx == -1
|| h->forced_local))
|| (
!h->pointer_equality_needed)
|| htab->sgot == NULL))
{
/* Use got.plt. */
h->got.offset = (bfd_vma) -1;
}
else
{
if (!use_plt)
{
/* PLT isn't used. */
h->plt.offset = (bfd_vma) -1;
}
if (h->got.refcount <= 0)
{
/* GOT isn't need when there are only relocations for static
pointers. */
h->got.offset = (bfd_vma) -1;
}
else
{
h->got.offset = htab->sgot->size;
htab->sgot->size += got_entry_size;
/* Need to relocate the GOT entry in a PIC object or PLT isn't
used. Otherwise, the GOT entry will be filled with the PLT
entry and dynamic GOT relocation isn't needed. */
if (need_dynreloc)
{
/* For non-static executable, dynamic GOT relocation is in
rela.got section, but for static executable, it is
in rela.iplt section. */
if (htab->splt != NULL)
htab->srelgot->size += sizeof_reloc;
else
{
relplt->size += sizeof_reloc;
relplt->reloc_count++;
}
}
}
}
return true;
}
/* Allocate space in .plt, .got and associated reloc sections for
ifunc dynamic relocs. */
static bool
elfNN_allocate_ifunc_dynrelocs (struct elf_link_hash_entry *h,
struct bfd_link_info *info,
bool ref_local)
{
/* An example of a bfd_link_hash_indirect symbol is versioned
symbol. For example: __gxx_personality_v0(bfd_link_hash_indirect)
-> __gxx_personality_v0(bfd_link_hash_defined)
There is no need to process bfd_link_hash_indirect symbols here
because we will also be presented with the concrete instance of
the symbol and loongarch_elf_copy_indirect_symbol () will have been
called to copy all relevant data from the generic to the concrete
symbol instance. */
if (h->root.type == bfd_link_hash_indirect)
return true;
if (h->root.type == bfd_link_hash_warning)
h = (struct elf_link_hash_entry *) h->root.u.i.link;
/* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
here if it is defined and referenced in a non-shared object. */
if (h->type == STT_GNU_IFUNC && h->def_regular)
{
if (ref_local && LARCH_REF_LOCAL (info, h))
return local_allocate_ifunc_dyn_relocs (info, h,
&h->dyn_relocs,
PLT_ENTRY_SIZE,
PLT_HEADER_SIZE,
GOT_ENTRY_SIZE,
false);
else if (!ref_local && !LARCH_REF_LOCAL (info, h))
return _bfd_elf_allocate_ifunc_dyn_relocs (info, h,
&h->dyn_relocs,
PLT_ENTRY_SIZE,
PLT_HEADER_SIZE,
GOT_ENTRY_SIZE,
false);
}
return true;
}
static bool
elfNN_allocate_ifunc_dynrelocs_ref_local (struct elf_link_hash_entry *h,
void *info)
{
return elfNN_allocate_ifunc_dynrelocs (h, (struct bfd_link_info *) info,
true);
}
static bool
elfNN_allocate_ifunc_dynrelocs_ref_global (struct elf_link_hash_entry *h,
void *info)
{
return elfNN_allocate_ifunc_dynrelocs (h, (struct bfd_link_info *) info,
false);
}
/* Allocate space in .plt, .got and associated reloc sections for
ifunc dynamic relocs. */
static int
elfNN_allocate_local_ifunc_dynrelocs (void **slot, void *inf)
{
struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) *slot;
if (h->type != STT_GNU_IFUNC
|| !h->def_regular
|| !h->ref_regular
|| !h->forced_local
|| h->root.type != bfd_link_hash_defined)
abort ();
return elfNN_allocate_ifunc_dynrelocs_ref_local (h, inf);
}
/* Set DF_TEXTREL if we find any dynamic relocs that apply to
read-only sections. */
static bool
maybe_set_textrel (struct elf_link_hash_entry *h, void *info_p)
{
asection *sec;
if (h->root.type == bfd_link_hash_indirect)
return true;
sec = readonly_dynrelocs (h);
if (sec != NULL)
{
struct bfd_link_info *info = (struct bfd_link_info *) info_p;
info->flags |= DF_TEXTREL;
info->callbacks->minfo (_("%pB: dynamic relocation against `%pT' in "
"read-only section `%pA'\n"),
sec->owner, h->root.root.string, sec);
/* Not an error, just cut short the traversal. */
return false;
}
return true;
}
static bool
record_relr (struct loongarch_elf_link_hash_table *htab, asection *sec,
bfd_vma off, asection *sreloc)
{
struct relr_entry **sec_relr = &loongarch_elf_section_data (sec)->relr;
/* Undo the relocation section size accounting. */
BFD_ASSERT (sreloc->size >= sizeof (ElfNN_External_Rela));
sreloc->size -= sizeof (ElfNN_External_Rela);
BFD_ASSERT (off % 2 == 0 && sec->alignment_power > 0);
if (htab->relr_count >= htab->relr_alloc)
{
if (htab->relr_alloc == 0)
htab->relr_alloc = 4096;
else
htab->relr_alloc *= 2;
htab->relr = bfd_realloc (htab->relr,
htab->relr_alloc * sizeof (*htab->relr));
if (!htab->relr)
return false;
}
htab->relr[htab->relr_count].sec = sec;
htab->relr[htab->relr_count].off = off;
if (*sec_relr == NULL)
*sec_relr = &htab->relr[htab->relr_count];
htab->relr_count++;
return true;
}
static bool
record_relr_local_got_relocs (bfd *input_bfd, struct bfd_link_info *info)
{
bfd_vma *local_got_offsets = elf_local_got_offsets (input_bfd);
char *local_tls_type = _bfd_loongarch_elf_local_got_tls_type (input_bfd);
Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (input_bfd);
struct loongarch_elf_link_hash_table *htab =
loongarch_elf_hash_table (info);
if (!local_got_offsets || !local_tls_type || !bfd_link_pic (info))
return true;
for (unsigned i = 0; i < symtab_hdr->sh_info; i++)
{
bfd_vma off = local_got_offsets[i];
/* FIXME: If the local symbol is in SHN_ABS then emitting
a relative relocation is not correct, but it seems to be wrong
in loongarch_elf_relocate_section too. */
if (local_tls_type[i] == GOT_NORMAL
&& !record_relr (htab, htab->elf.sgot, off, htab->elf.srelgot))
return false;
}
return true;
}
static bool
record_relr_dyn_got_relocs (struct elf_link_hash_entry *h, void *inf)
{
struct bfd_link_info *info = (struct bfd_link_info *) inf;
struct loongarch_elf_link_hash_table *htab =
loongarch_elf_hash_table (info);
if (h->root.type == bfd_link_hash_indirect)
return true;
if (h->type == STT_GNU_IFUNC && h->def_regular)
return true;
if (h->got.refcount <= 0)
return true;
if (loongarch_elf_hash_entry (h)->tls_type
& (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC))
return true;
if (!bfd_link_pic (info))
return true;
/* On LoongArch a GOT entry for undefined weak symbol is never relocated
with R_LARCH_RELATIVE: we don't have -z dynamic-undefined-weak, thus
the GOT entry is either const 0 (if the symbol is LARCH_REF_LOCAL) or
relocated with R_LARCH_NN (otherwise). */
if (h->root.type == bfd_link_hash_undefweak)
return true;
if (!LARCH_REF_LOCAL (info, h))
return true;
if (bfd_is_abs_symbol (&h->root))
return true;
if (!record_relr (htab, htab->elf.sgot, h->got.offset,
htab->elf.srelgot))
return false;
return true;
}
static bool
record_relr_non_got_relocs (bfd *input_bfd, struct bfd_link_info *info,
asection *sec)
{
asection *sreloc;
struct loongarch_elf_link_hash_table *htab;
Elf_Internal_Rela *relocs, *rel, *rel_end;
Elf_Internal_Shdr *symtab_hdr;
struct elf_link_hash_entry **sym_hashes;
if (!bfd_link_pic (info))
return true;
if (sec->reloc_count == 0)
return true;
if ((sec->flags & (SEC_RELOC | SEC_ALLOC | SEC_DEBUGGING))
!= (SEC_RELOC | SEC_ALLOC))
return true;
if (sec->alignment_power == 0)
return true;
if (discarded_section (sec))
return true;
sreloc = elf_section_data (sec)->sreloc;
if (sreloc == NULL)
return true;
htab = loongarch_elf_hash_table (info);
symtab_hdr = &elf_symtab_hdr (input_bfd);
sym_hashes = elf_sym_hashes (input_bfd);
relocs = _bfd_elf_link_info_read_relocs (input_bfd, info, sec, NULL,
NULL, info->keep_memory);
BFD_ASSERT (relocs != NULL);
rel_end = relocs + sec->reloc_count;
for (rel = relocs; rel < rel_end; rel++)
{
unsigned r_symndx = ELFNN_R_SYM (rel->r_info);
unsigned int r_type = ELFNN_R_TYPE (rel->r_info);
struct elf_link_hash_entry *h = NULL;
asection *def_sec = NULL;
if ((r_type != R_LARCH_64 && r_type != R_LARCH_32)
|| rel->r_offset % 2 != 0)
continue;
/* The logical below must match loongarch_elf_relocate_section. */
if (r_symndx < symtab_hdr->sh_info)
{
/* A local symbol. */
Elf_Internal_Sym *isym;
isym = bfd_sym_from_r_symndx (&htab->elf.sym_cache, input_bfd,
r_symndx);
BFD_ASSERT(isym != NULL);
/* Local STT_GNU_IFUNC symbol uses R_LARCH_IRELATIVE for
R_LARCH_NN, not R_LARCH_RELATIVE. */
if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
continue;
def_sec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
}
else
{
h = sym_hashes[r_symndx - symtab_hdr->sh_info];
while (h->root.type == bfd_link_hash_indirect
|| h->root.type == bfd_link_hash_warning)
h = (struct elf_link_hash_entry *) h->root.u.i.link;
/* Filter out symbols that cannot have a relative reloc. */
if (h->dyn_relocs == NULL)
continue;
if (bfd_is_abs_symbol (&h->root))
continue;
if (h->type == STT_GNU_IFUNC)
continue;
if (h->root.type == bfd_link_hash_defined
|| h->root.type == bfd_link_hash_defweak)
def_sec = h->root.u.def.section;
/* On LoongArch an R_LARCH_NN against undefined weak symbol
is never converted to R_LARCH_RELATIVE: we don't have
-z dynamic-undefined-weak, thus the reloc is either removed
(if the symbol is LARCH_REF_LOCAL) or kept (otherwise). */
if (h->root.type == bfd_link_hash_undefweak)
continue;
if (!LARCH_REF_LOCAL (info, h))
continue;
}
if (!def_sec || discarded_section (def_sec))
continue;
if (!record_relr (htab, sec, rel->r_offset, sreloc))
return false;
}
return true;
}
static int
cmp_relr_addr (const void *p, const void *q)
{
const bfd_vma *a = p, *b = q;
return (*a > *b) - (*a < *b);
}
static bool
sort_relr (struct bfd_link_info *info,
struct loongarch_elf_link_hash_table *htab)
{
if (htab->relr_count == 0)
return true;
bfd_vma *addr = htab->relr_sorted;
if (!addr)
{
addr = bfd_malloc (htab->relr_count * sizeof (*addr));
if (!addr)
return false;
htab->relr_sorted = addr;
}
for (bfd_size_type i = 0; i < htab->relr_count; i++)
{
bfd_vma off = _bfd_elf_section_offset (info->output_bfd, info,
htab->relr[i].sec,
htab->relr[i].off);
addr[i] = htab->relr[i].sec->output_section->vma
+ htab->relr[i].sec->output_offset + off;
}
qsort(addr, htab->relr_count, sizeof (*addr), cmp_relr_addr);
return true;
}
static bool
loongarch_elf_size_relative_relocs (struct bfd_link_info *info,
bool *need_layout)
{
struct loongarch_elf_link_hash_table *htab =
loongarch_elf_hash_table (info);
asection *srelrdyn = htab->elf.srelrdyn;
*need_layout = false;
if (!sort_relr (info, htab))
return false;
bfd_vma *addr = htab->relr_sorted;
BFD_ASSERT (srelrdyn != NULL);
bfd_size_type oldsize = srelrdyn->size;
srelrdyn->size = 0;
for (bfd_size_type i = 0; i < htab->relr_count; )
{
bfd_vma base = addr[i];
i++;
srelrdyn->size += NN / 8;
base += NN / 8;
while (1)
{
bfd_size_type start_i = i;
while (i < htab->relr_count
&& addr[i] - base < (NN - 1) * (NN / 8)
&& (addr[i] - base) % (NN / 8) == 0)
i++;
if (i == start_i)
break;
srelrdyn->size += NN / 8;
base += (NN - 1) * (NN / 8);
}
}
if (srelrdyn->size != oldsize)
{
*need_layout = true;
/* Stop after a few iterations in case the layout does not converge,
but we can only stop when the size would shrink (and pad the
spare space with 1. */
if (htab->relr_layout_iter++ > 5 && srelrdyn->size < oldsize)
{
srelrdyn->size = oldsize;
*need_layout = false;
}
}
htab->layout_mutating_for_relr = *need_layout;
return true;
}
static bool
loongarch_elf_finish_relative_relocs (struct bfd_link_info *info)
{
struct loongarch_elf_link_hash_table *htab =
loongarch_elf_hash_table (info);
asection *srelrdyn = htab->elf.srelrdyn;
bfd *dynobj = htab->elf.dynobj;
if (!srelrdyn || srelrdyn->size == 0)
return true;
srelrdyn->contents = bfd_alloc (dynobj, srelrdyn->size);
if (!srelrdyn->contents)
return false;
bfd_vma *addr = htab->relr_sorted;
bfd_byte *loc = srelrdyn->contents;
for (bfd_size_type i = 0; i < htab->relr_count; )
{
bfd_vma base = addr[i];
i++;
bfd_put_NN (dynobj, base, loc);
loc += NN / 8;
base += NN / 8;
while (1)
{
uintNN_t bits = 0;
while (i < htab->relr_count)
{
bfd_vma delta = addr[i] - base;
if (delta >= (NN - 1) * (NN / 8) || delta % (NN / 8) != 0)
break;
bits |= (uintNN_t) 1 << (delta / (NN / 8));
i++;
}
if (bits == 0)
break;
bfd_put_NN (dynobj, (bits << 1) | 1, loc);
loc += NN / 8;
base += (NN - 1) * (NN / 8);
}
}
free (addr);
htab->relr_sorted = NULL;
/* Pad any excess with 1's, a do-nothing encoding. */
while (loc < srelrdyn->contents + srelrdyn->size)
{
bfd_put_NN (dynobj, 1, loc);
loc += NN / 8;
}
return true;
}
static bool
loongarch_elf_late_size_sections (bfd *output_bfd,
struct bfd_link_info *info)
{
struct loongarch_elf_link_hash_table *htab;
bfd *dynobj;
asection *s;
bfd *ibfd;
htab = loongarch_elf_hash_table (info);
BFD_ASSERT (htab != NULL);
dynobj = htab->elf.dynobj;
if (dynobj == NULL)
return true;
if (htab->elf.dynamic_sections_created)
{
/* Set the contents of the .interp section to the interpreter. */
if (bfd_link_executable (info) && !info->nointerp)
{
const char *interpreter;
s = bfd_get_linker_section (dynobj, ".interp");
BFD_ASSERT (s != NULL);
if (elf_elfheader (output_bfd)->e_ident[EI_CLASS] == ELFCLASS32)
interpreter = "/lib32/ld.so.1";
else if (elf_elfheader (output_bfd)->e_ident[EI_CLASS] == ELFCLASS64)
interpreter = "/lib64/ld.so.1";
else
interpreter = "/lib/ld.so.1";
s->contents = (unsigned char *) interpreter;
s->size = strlen (interpreter) + 1;
}
}
/* Set up .got offsets for local syms, and space for local dynamic
relocs. */
for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
{
bfd_signed_vma *local_got;
bfd_signed_vma *end_local_got;
char *local_tls_type;
bfd_size_type locsymcount;
Elf_Internal_Shdr *symtab_hdr;
asection *srel;
if (!is_loongarch_elf (ibfd))
continue;
for (s = ibfd->sections; s != NULL; s = s->next)
{
struct elf_dyn_relocs *p;
for (p = elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
{
p->count -= p->pc_count;
if (!bfd_is_abs_section (p->sec)
&& bfd_is_abs_section (p->sec->output_section))
{
/* Input section has been discarded, either because
it is a copy of a linkonce section or due to
linker script /DISCARD/, so we'll be discarding
the relocs too. */
}
else if (0 < p->count)
{
srel = elf_section_data (p->sec)->sreloc;
srel->size += p->count * sizeof (ElfNN_External_Rela);
if ((p->sec->output_section->flags & SEC_READONLY) != 0)
info->flags |= DF_TEXTREL;
}
}
}
local_got = elf_local_got_refcounts (ibfd);
if (!local_got)
continue;
symtab_hdr = &elf_symtab_hdr (ibfd);
locsymcount = symtab_hdr->sh_info;
end_local_got = local_got + locsymcount;
local_tls_type = _bfd_loongarch_elf_local_got_tls_type (ibfd);
s = htab->elf.sgot;
srel = htab->elf.srelgot;
for (; local_got < end_local_got; ++local_got, ++local_tls_type)
{
if (0 < *local_got)
{
*local_got = s->size;
if (*local_tls_type & (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC))
{
/* TLS gd use two got. */
if (*local_tls_type & GOT_TLS_GD)
{
s->size += 2 * GOT_ENTRY_SIZE;
if (!bfd_link_executable (info))
srel->size += sizeof (ElfNN_External_Rela);
}
/* TLS_DESC use two got. */
if (*local_tls_type & GOT_TLS_GDESC)
{
s->size += 2 * GOT_ENTRY_SIZE;
srel->size += sizeof (ElfNN_External_Rela);
}
/* TLS ie and use one got. */
if (*local_tls_type & GOT_TLS_IE)
{
s->size += GOT_ENTRY_SIZE;
if (!bfd_link_executable (info))
srel->size += sizeof (ElfNN_External_Rela);
}
}
else
{
s->size += GOT_ENTRY_SIZE;
srel->size += sizeof (ElfNN_External_Rela);
}
}
else
*local_got = MINUS_ONE;
}
}
/* Allocate global sym .plt and .got entries, and space for global
sym dynamic relocs. */
elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, info);
/* Allocate global ifunc sym .plt and .got entries, and space for
*preemptible* ifunc sym dynamic relocs. Note that we must do it
for *all* preemptible ifunc (including local ifuncs and STV_HIDDEN
ifuncs) before doing it for any non-preemptible ifunc symbol:
assuming we are not so careful, when we link a shared library the
correlation of .plt and .rela.plt might look like:
idx in .plt idx in .rela.plt
ext_func1@plt 0 0
ext_func2@plt 1 1
ext_func3@plt 2 2
hidden_ifunc1@plt 3 None: it's in .rela.got
hidden_ifunc2@plt 4 None: it's in .rela.got
normal_ifunc1@plt 5 != 3
normal_ifunc2@plt 6 != 4
local_ifunc@plt 7 None: it's in .rela.got
Now oops the indices for normal_ifunc{1,2} in .rela.plt were different
from the indices in .plt :(. This would break finish_dynamic_symbol
which assumes the index in .rela.plt matches the index in .plt.
So let's be careful and make it correct:
idx in .plt idx in .rela.plt
ext_func1@plt 0 0
ext_func2@plt 1 1
ext_func3@plt 2 2
normal_ifunc1@plt 3 3
normal_ifunc2@plt 4 4
hidden_ifunc1@plt 5 None: it's in .rela.got
hidden_ifunc2@plt 6 None: it's in .rela.got
local_ifunc@plt 7 None: it's in .rela.got
Now normal_ifuncs first. */
elf_link_hash_traverse (&htab->elf,
elfNN_allocate_ifunc_dynrelocs_ref_global, info);
/* Next hidden_ifuncs follows. */
elf_link_hash_traverse (&htab->elf,
elfNN_allocate_ifunc_dynrelocs_ref_local, info);
/* Finally local_ifuncs. */
htab_traverse (htab->loc_hash_table,
elfNN_allocate_local_ifunc_dynrelocs, info);
/* Don't allocate .got.plt section if there are no PLT. */
if (htab->elf.sgotplt && htab->elf.sgotplt->size == GOTPLT_HEADER_SIZE
&& (htab->elf.splt == NULL || htab->elf.splt->size == 0))
htab->elf.sgotplt->size = 0;
if (info->enable_dt_relr && !bfd_link_relocatable (info))
{
elf_link_hash_traverse (&htab->elf, record_relr_dyn_got_relocs, info);
for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
{
if (!is_loongarch_elf (ibfd))
continue;
for (s = ibfd->sections; s != NULL; s = s->next)
if (!record_relr_non_got_relocs (ibfd, info, s))
return false;
if (!record_relr_local_got_relocs (ibfd, info))
return false;
}
}
/* The check_relocs and adjust_dynamic_symbol entry points have
determined the sizes of the various dynamic sections. Allocate
memory for them. */
for (s = dynobj->sections; s != NULL; s = s->next)
{
if ((s->flags & SEC_LINKER_CREATED) == 0)
continue;
if (s == htab->elf.splt || s == htab->elf.iplt || s == htab->elf.sgot
|| s == htab->elf.sgotplt || s == htab->elf.igotplt
|| s == htab->elf.sdynbss || s == htab->elf.sdynrelro)
{
/* Strip this section if we don't need it; see the
comment below. */
}
else if (strncmp (s->name, ".rela", 5) == 0)
{
if (s->size != 0)
{
/* We use the reloc_count field as a counter if we need
to copy relocs into the output file. */
s->reloc_count = 0;
}
}
else if (s == htab->elf.srelrdyn && htab->relr_count == 0)
{
/* Remove .relr.dyn based on relr_count, not size, since
it is not sized yet. */
s->flags |= SEC_EXCLUDE;
/* Allocate contents later. */
continue;
}
else
{
/* It's not one of our sections. */
continue;
}
if (s->size == 0)
{
/* If we don't need this section, strip it from the
output file. This is mostly to handle .rela.bss and
.rela.plt. We must create both sections in
create_dynamic_sections, because they must be created
before the linker maps input sections to output
sections. The linker does that before
adjust_dynamic_symbol is called, and it is that
function which decides whether anything needs to go
into these sections. */
s->flags |= SEC_EXCLUDE;
continue;
}
if ((s->flags & SEC_HAS_CONTENTS) == 0)
continue;
/* Allocate memory for the section contents. Zero the memory
for the benefit of .rela.plt, which has 4 unused entries
at the beginning, and we don't want garbage. */
s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
if (s->contents == NULL)
return false;
}
if (elf_hash_table (info)->dynamic_sections_created)
{
/* Add some entries to the .dynamic section. We fill in the
values later, in loongarch_elf_finish_dynamic_sections, but we
must add the entries now so that we get the correct size for
the .dynamic section. The DT_DEBUG entry is filled in by the
dynamic linker and used by the debugger. */
#define add_dynamic_entry(TAG, VAL) _bfd_elf_add_dynamic_entry (info, TAG, VAL)
if (bfd_link_executable (info))
{
if (!add_dynamic_entry (DT_DEBUG, 0))
return false;
}
if (htab->elf.srelplt->size != 0)
{
if (!add_dynamic_entry (DT_PLTGOT, 0)
|| !add_dynamic_entry (DT_PLTRELSZ, 0)
|| !add_dynamic_entry (DT_PLTREL, DT_RELA)
|| !add_dynamic_entry (DT_JMPREL, 0))
return false;
}
if (!add_dynamic_entry (DT_RELA, 0)
|| !add_dynamic_entry (DT_RELASZ, 0)
|| !add_dynamic_entry (DT_RELAENT, sizeof (ElfNN_External_Rela)))
return false;
/* If any dynamic relocs apply to a read-only section,
then we need a DT_TEXTREL entry. */
if ((info->flags & DF_TEXTREL) == 0)
elf_link_hash_traverse (&htab->elf, maybe_set_textrel, info);
if (info->flags & DF_TEXTREL)
{
if (!add_dynamic_entry (DT_TEXTREL, 0))
return false;
/* Clear the DF_TEXTREL flag. It will be set again if we
write out an actual text relocation; we may not, because
at this point we do not know whether e.g. any .eh_frame
absolute relocations have been converted to PC-relative. */
info->flags &= ~DF_TEXTREL;
}
}
#undef add_dynamic_entry
return true;
}
#define LARCH_LD_STACK_DEPTH 16
static int64_t larch_opc_stack[LARCH_LD_STACK_DEPTH];
static size_t larch_stack_top = 0;
static bfd_reloc_status_type
loongarch_push (int64_t val)
{
if (LARCH_LD_STACK_DEPTH <= larch_stack_top)
return bfd_reloc_outofrange;
larch_opc_stack[larch_stack_top++] = val;
return bfd_reloc_ok;
}
static bfd_reloc_status_type
loongarch_pop (int64_t *val)
{
if (larch_stack_top == 0)
return bfd_reloc_outofrange;
BFD_ASSERT (val);
*val = larch_opc_stack[--larch_stack_top];
return bfd_reloc_ok;
}
static bfd_reloc_status_type
loongarch_top (int64_t *val)
{
if (larch_stack_top == 0)
return bfd_reloc_outofrange;
BFD_ASSERT (val);
*val = larch_opc_stack[larch_stack_top - 1];
return bfd_reloc_ok;
}
static void
loongarch_elf_append_rela (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
{
BFD_ASSERT (s && s->contents);
const struct elf_backend_data *bed;
bfd_byte *loc;
bed = get_elf_backend_data (abfd);
if (!(s->size > s->reloc_count * bed->s->sizeof_rela))
BFD_ASSERT (s->size > s->reloc_count * bed->s->sizeof_rela);
loc = s->contents + (s->reloc_count++ * bed->s->sizeof_rela);
bed->s->swap_reloca_out (abfd, rel, loc);
}
/* Check rel->r_offset in range of contents. */
static bfd_reloc_status_type
loongarch_check_offset (const Elf_Internal_Rela *rel,
const asection *input_section)
{
if (0 == strcmp(input_section->name, ".text")
&& rel->r_offset > input_section->size)
return bfd_reloc_overflow;
return bfd_reloc_ok;
}
#define LARCH_RELOC_PERFORM_3OP(op1, op2, op3) \
({ \
bfd_reloc_status_type ret = loongarch_pop (&op2); \
if (ret == bfd_reloc_ok) \
{ \
ret = loongarch_pop (&op1); \
if (ret == bfd_reloc_ok) \
ret = loongarch_push (op3); \
} \
ret; \
})
/* Write immediate to instructions. */
static bfd_reloc_status_type
loongarch_reloc_rewrite_imm_insn (const Elf_Internal_Rela *rel,
const asection *input_section ATTRIBUTE_UNUSED,
reloc_howto_type *howto, bfd *input_bfd,
bfd_byte *contents, bfd_vma reloc_val)
{
/* Adjust the immediate based on alignment and
its position in the instruction. */
if (!loongarch_adjust_reloc_bitsfield (input_bfd, howto, &reloc_val))
return bfd_reloc_overflow;
int bits = bfd_get_reloc_size (howto) * 8;
uint64_t insn = bfd_get (bits, input_bfd, contents + rel->r_offset);
/* Write immediate to instruction. */
insn = (insn & ~howto->dst_mask) | (reloc_val & howto->dst_mask);
bfd_put (bits, input_bfd, insn, contents + rel->r_offset);
return bfd_reloc_ok;
}
static bfd_reloc_status_type
perform_relocation (const Elf_Internal_Rela *rel, asection *input_section,
reloc_howto_type *howto, bfd_vma value,
bfd *input_bfd, bfd_byte *contents)
{
int64_t opr1, opr2, opr3;
bfd_reloc_status_type r = bfd_reloc_ok;
int bits = bfd_get_reloc_size (howto) * 8;
switch (ELFNN_R_TYPE (rel->r_info))
{
case R_LARCH_SOP_PUSH_PCREL:
case R_LARCH_SOP_PUSH_ABSOLUTE:
case R_LARCH_SOP_PUSH_GPREL:
case R_LARCH_SOP_PUSH_TLS_TPREL:
case R_LARCH_SOP_PUSH_TLS_GOT:
case R_LARCH_SOP_PUSH_TLS_GD:
case R_LARCH_SOP_PUSH_PLT_PCREL:
r = loongarch_push (value);
break;
case R_LARCH_SOP_PUSH_DUP:
r = loongarch_pop (&opr1);
if (r == bfd_reloc_ok)
{
r = loongarch_push (opr1);
if (r == bfd_reloc_ok)
r = loongarch_push (opr1);
}
break;
case R_LARCH_SOP_ASSERT:
r = loongarch_pop (&opr1);
if (r != bfd_reloc_ok || !opr1)
r = bfd_reloc_notsupported;
break;
case R_LARCH_SOP_NOT:
r = loongarch_pop (&opr1);
if (r == bfd_reloc_ok)
r = loongarch_push (!opr1);
break;
case R_LARCH_SOP_SUB:
r = LARCH_RELOC_PERFORM_3OP (opr1, opr2, opr1 - opr2);
break;
case R_LARCH_SOP_SL:
r = LARCH_RELOC_PERFORM_3OP (opr1, opr2, opr1 << opr2);
break;
case R_LARCH_SOP_SR:
r = LARCH_RELOC_PERFORM_3OP (opr1, opr2, opr1 >> opr2);
break;
case R_LARCH_SOP_AND:
r = LARCH_RELOC_PERFORM_3OP (opr1, opr2, opr1 & opr2);
break;
case R_LARCH_SOP_ADD:
r = LARCH_RELOC_PERFORM_3OP (opr1, opr2, opr1 + opr2);
break;
case R_LARCH_SOP_IF_ELSE:
r = loongarch_pop (&opr3);
if (r == bfd_reloc_ok)
{
r = loongarch_pop (&opr2);
if (r == bfd_reloc_ok)
{
r = loongarch_pop (&opr1);
if (r == bfd_reloc_ok)
r = loongarch_push (opr1 ? opr2 : opr3);
}
}
break;
case R_LARCH_SOP_POP_32_S_10_5:
case R_LARCH_SOP_POP_32_S_10_12:
case R_LARCH_SOP_POP_32_S_10_16:
case R_LARCH_SOP_POP_32_S_10_16_S2:
case R_LARCH_SOP_POP_32_S_0_5_10_16_S2:
case R_LARCH_SOP_POP_32_S_0_10_10_16_S2:
case R_LARCH_SOP_POP_32_S_5_20:
case R_LARCH_SOP_POP_32_U_10_12:
case R_LARCH_SOP_POP_32_U:
r = loongarch_pop (&opr1);
if (r != bfd_reloc_ok)
break;
r = loongarch_check_offset (rel, input_section);
if (r != bfd_reloc_ok)
break;
r = loongarch_reloc_rewrite_imm_insn (rel, input_section,
howto, input_bfd,
contents, (bfd_vma)opr1);
break;
case R_LARCH_TLS_DTPREL32:
case R_LARCH_32:
case R_LARCH_TLS_DTPREL64:
case R_LARCH_64:
r = loongarch_check_offset (rel, input_section);
if (r != bfd_reloc_ok)
break;
bfd_put (bits, input_bfd, value, contents + rel->r_offset);
break;
/* LoongArch only has add/sub reloc pair, not has set/sub reloc pair.
Because set/sub reloc pair not support multi-thread. While add/sub
reloc pair process order not affect the final result.
For add/sub reloc, the original value will be involved in the
calculation. In order not to add/sub extra value, we write 0 to symbol
address at assembly time.
add/sub reloc bits determined by the value after symbol subtraction,
not symbol value.
add/sub reloc save part of the symbol value, so we only need to
save howto->dst_mask bits. */
case R_LARCH_ADD6:
case R_LARCH_SUB6:
{
bfd_vma word = bfd_get (howto->bitsize, input_bfd,
contents + rel->r_offset);
word = (word & ~howto->dst_mask) | (value & howto->dst_mask);
bfd_put (howto->bitsize, input_bfd, word, contents + rel->r_offset);
r = bfd_reloc_ok;
break;
}
/* Not need to read the original value, just write the new value. */
case R_LARCH_ADD8:
case R_LARCH_ADD16:
case R_LARCH_ADD24:
case R_LARCH_ADD32:
case R_LARCH_ADD64:
case R_LARCH_SUB8:
case R_LARCH_SUB16:
case R_LARCH_SUB24:
case R_LARCH_SUB32:
case R_LARCH_SUB64:
{
/* Because add/sub reloc is processed separately,
so the high bits is invalid. */
bfd_vma word = value & howto->dst_mask;
bfd_put (howto->bitsize, input_bfd, word, contents + rel->r_offset);
r = bfd_reloc_ok;
break;
}
case R_LARCH_ADD_ULEB128:
case R_LARCH_SUB_ULEB128:
{
unsigned int len = 0;
/* Before write uleb128, first read it to get it's length. */
_bfd_read_unsigned_leb128 (input_bfd, contents + rel->r_offset, &len);
loongarch_write_unsigned_leb128 (contents + rel->r_offset, len, value);
r = bfd_reloc_ok;
break;
}
/* For eh_frame and debug info. */
case R_LARCH_32_PCREL:
case R_LARCH_64_PCREL:
{
value -= sec_addr (input_section) + rel->r_offset;
value += rel->r_addend;
bfd_vma word = bfd_get (howto->bitsize, input_bfd,
contents + rel->r_offset);
word = (word & ~howto->dst_mask) | (value & howto->dst_mask);
bfd_put (howto->bitsize, input_bfd, word, contents + rel->r_offset);
r = bfd_reloc_ok;
break;
}
/* New reloc type.
R_LARCH_B16 ~ R_LARCH_TLS_GD_HI20. */
case R_LARCH_B16:
case R_LARCH_B21:
case R_LARCH_B26:
case R_LARCH_ABS_HI20:
case R_LARCH_ABS_LO12:
case R_LARCH_ABS64_LO20:
case R_LARCH_ABS64_HI12:
case R_LARCH_PCALA_HI20:
case R_LARCH_PCALA_LO12:
case R_LARCH_PCALA64_LO20:
case R_LARCH_PCALA64_HI12:
case R_LARCH_GOT_PC_HI20:
case R_LARCH_GOT_PC_LO12:
case R_LARCH_GOT64_PC_LO20:
case R_LARCH_GOT64_PC_HI12:
case R_LARCH_GOT_HI20:
case R_LARCH_GOT_LO12:
case R_LARCH_GOT64_LO20:
case R_LARCH_GOT64_HI12:
case R_LARCH_TLS_LE_HI20:
case R_LARCH_TLS_LE_LO12:
case R_LARCH_TLS_LE_HI20_R:
case R_LARCH_TLS_LE_LO12_R:
case R_LARCH_TLS_LE64_LO20:
case R_LARCH_TLS_LE64_HI12:
case R_LARCH_TLS_IE_PC_HI20:
case R_LARCH_TLS_IE_PC_LO12:
case R_LARCH_TLS_IE64_PC_LO20:
case R_LARCH_TLS_IE64_PC_HI12:
case R_LARCH_TLS_IE_HI20:
case R_LARCH_TLS_IE_LO12:
case R_LARCH_TLS_IE64_LO20:
case R_LARCH_TLS_IE64_HI12:
case R_LARCH_TLS_LD_PC_HI20:
case R_LARCH_TLS_LD_HI20:
case R_LARCH_TLS_GD_PC_HI20:
case R_LARCH_TLS_GD_HI20:
case R_LARCH_PCREL20_S2:
case R_LARCH_CALL36:
case R_LARCH_TLS_DESC_PC_HI20:
case R_LARCH_TLS_DESC_PC_LO12:
case R_LARCH_TLS_DESC64_PC_LO20:
case R_LARCH_TLS_DESC64_PC_HI12:
case R_LARCH_TLS_DESC_HI20:
case R_LARCH_TLS_DESC_LO12:
case R_LARCH_TLS_DESC64_LO20:
case R_LARCH_TLS_DESC64_HI12:
case R_LARCH_TLS_LD_PCREL20_S2:
case R_LARCH_TLS_GD_PCREL20_S2:
case R_LARCH_TLS_DESC_PCREL20_S2:
r = loongarch_check_offset (rel, input_section);
if (r != bfd_reloc_ok)
break;
r = loongarch_reloc_rewrite_imm_insn (rel, input_section,
howto, input_bfd,
contents, value);
break;
case R_LARCH_TLS_DESC_LD:
case R_LARCH_TLS_DESC_CALL:
r = bfd_reloc_ok;
break;
case R_LARCH_RELAX:
case R_LARCH_TLS_LE_ADD_R:
break;
default:
r = bfd_reloc_notsupported;
}
return r;
}
#define LARCH_RECENT_RELOC_QUEUE_LENGTH 72
static struct
{
bfd *bfd;
asection *section;
bfd_vma r_offset;
int r_type;
bfd_vma relocation;
Elf_Internal_Sym *sym;
struct elf_link_hash_entry *h;
bfd_vma addend;
int64_t top_then;
} larch_reloc_queue[LARCH_RECENT_RELOC_QUEUE_LENGTH];
static size_t larch_reloc_queue_head = 0;
static size_t larch_reloc_queue_tail = 0;
static const char *
loongarch_sym_name (bfd *input_bfd, struct elf_link_hash_entry *h,
Elf_Internal_Sym *sym)
{
const char *ret = NULL;
if (sym)
ret = bfd_elf_string_from_elf_section (input_bfd,
elf_symtab_hdr (input_bfd).sh_link,
sym->st_name);
else if (h)
ret = h->root.root.string;
if (ret == NULL || *ret == '\0')
ret = "<nameless>";
return ret;
}
static void
loongarch_record_one_reloc (bfd *abfd, asection *section, int r_type,
bfd_vma r_offset, Elf_Internal_Sym *sym,
struct elf_link_hash_entry *h, bfd_vma addend)
{
if ((larch_reloc_queue_head == 0
&& larch_reloc_queue_tail == LARCH_RECENT_RELOC_QUEUE_LENGTH - 1)
|| larch_reloc_queue_head == larch_reloc_queue_tail + 1)
larch_reloc_queue_head =
(larch_reloc_queue_head + 1) % LARCH_RECENT_RELOC_QUEUE_LENGTH;
larch_reloc_queue[larch_reloc_queue_tail].bfd = abfd;
larch_reloc_queue[larch_reloc_queue_tail].section = section;
larch_reloc_queue[larch_reloc_queue_tail].r_offset = r_offset;
larch_reloc_queue[larch_reloc_queue_tail].r_type = r_type;
larch_reloc_queue[larch_reloc_queue_tail].sym = sym;
larch_reloc_queue[larch_reloc_queue_tail].h = h;
larch_reloc_queue[larch_reloc_queue_tail].addend = addend;
loongarch_top (&larch_reloc_queue[larch_reloc_queue_tail].top_then);
larch_reloc_queue_tail =
(larch_reloc_queue_tail + 1) % LARCH_RECENT_RELOC_QUEUE_LENGTH;
}
static void
loongarch_dump_reloc_record (void (*p) (const char *fmt, ...))
{
size_t i = larch_reloc_queue_head;
bfd *a_bfd = NULL;
asection *section = NULL;
bfd_vma r_offset = 0;
int inited = 0;
p ("Dump relocate record:\n");
p ("stack top\t\trelocation name\t\tsymbol");
while (i != larch_reloc_queue_tail)
{
if (a_bfd != larch_reloc_queue[i].bfd
|| section != larch_reloc_queue[i].section
|| r_offset != larch_reloc_queue[i].r_offset)
{
a_bfd = larch_reloc_queue[i].bfd;
section = larch_reloc_queue[i].section;
r_offset = larch_reloc_queue[i].r_offset;
p ("\nat %pB(%pA+0x%v):\n", larch_reloc_queue[i].bfd,
larch_reloc_queue[i].section, larch_reloc_queue[i].r_offset);
}
if (!inited)
inited = 1, p ("...\n");
reloc_howto_type *howto =
loongarch_elf_rtype_to_howto (larch_reloc_queue[i].bfd,
larch_reloc_queue[i].r_type);
p ("0x%V %s\t`%s'", (bfd_vma) larch_reloc_queue[i].top_then,
howto ? howto->name : "<unknown reloc>",
loongarch_sym_name (larch_reloc_queue[i].bfd, larch_reloc_queue[i].h,
larch_reloc_queue[i].sym));
long addend = larch_reloc_queue[i].addend;
if (addend < 0)
p (" - %ld", -addend);
else if (0 < addend)
p (" + %ld(0x%v)", addend, larch_reloc_queue[i].addend);
p ("\n");
i = (i + 1) % LARCH_RECENT_RELOC_QUEUE_LENGTH;
}
p ("\n"
"-- Record dump end --\n\n");
}
static bool
loongarch_reloc_is_fatal (struct bfd_link_info *info,
bfd *input_bfd,
asection *input_section,
Elf_Internal_Rela *rel,
reloc_howto_type *howto,
bfd_reloc_status_type rtype,
bool is_undefweak,
const char *name,
const char *msg)
{
bool fatal = true;
switch (rtype)
{
/* 'dangerous' means we do it but can't promise it's ok
'unsupport' means out of ability of relocation type
'undefined' means we can't deal with the undefined symbol. */
case bfd_reloc_undefined:
info->callbacks->undefined_symbol (info, name, input_bfd, input_section,
rel->r_offset, true);
info->callbacks->info ("%X%pB(%pA+0x%v): error: %s against %s`%s':\n%s\n",
input_bfd, input_section, rel->r_offset,
howto->name,
is_undefweak ? "[undefweak] " : "", name, msg);
break;
case bfd_reloc_dangerous:
info->callbacks->info ("%pB(%pA+0x%v): warning: %s against %s`%s':\n%s\n",
input_bfd, input_section, rel->r_offset,
howto->name,
is_undefweak ? "[undefweak] " : "", name, msg);
fatal = false;
break;
case bfd_reloc_notsupported:
info->callbacks->info ("%X%pB(%pA+0x%v): error: %s against %s`%s':\n%s\n",
input_bfd, input_section, rel->r_offset,
howto->name,
is_undefweak ? "[undefweak] " : "", name, msg);
break;
default:
break;
}
return fatal;
}
/* If lo12 immediate > 0x7ff, because sign-extend caused by addi.d/ld.d,
hi20 immediate need to add 0x1.
For example: pc 0x120000000, symbol 0x120000812
lo12 immediate is 0x812, 0x120000812 & 0xfff = 0x812
hi20 immediate is 1, because lo12 imm > 0x7ff, symbol need to add 0x1000
(((0x120000812 + 0x1000) & ~0xfff) - (0x120000000 & ~0xfff)) >> 12 = 0x1
At run:
pcalau12i $t0, hi20 (0x1)
$t0 = 0x120000000 + (0x1 << 12) = 0x120001000
addi.d $t0, $t0, lo12 (0x812)
$t0 = 0x120001000 + 0xfffffffffffff812 (-(0x1000 - 0x812) = -0x7ee)
= 0x120001000 - 0x7ee (0x1000 - 0x7ee = 0x812)
= 0x120000812
Without hi20 add 0x1000, the result 0x120000000 - 0x7ee = 0x11ffff812 is
error.
0x1000 + sign-extend-to64(0x8xx) = 0x8xx. */
#define RELOCATE_CALC_PC32_HI20(relocation, pc) \
({ \
bfd_vma __lo = (relocation) & ((bfd_vma)0xfff); \
relocation = (relocation & ~(bfd_vma)0xfff) \
- (pc & ~(bfd_vma)0xfff); \
if (__lo > 0x7ff) \
relocation += 0x1000; \
})
/* Handle problems caused by symbol extensions in TLS LE, The processing
is similar to the macro RELOCATE_CALC_PC32_HI20 method. */
#define RELOCATE_TLS_TP32_HI20(relocation) \
({ \
bfd_vma __lo = (relocation) & ((bfd_vma)0xfff); \
if (__lo > 0x7ff) \
relocation += 0x800; \
relocation = relocation & ~(bfd_vma)0xfff; \
})
/* For example: pc is 0x11000010000100, symbol is 0x1812348ffff812
offset = (0x1812348ffff812 & ~0xfff) - (0x11000010000100 & ~0xfff)
= 0x712347ffff000
lo12: 0x1812348ffff812 & 0xfff = 0x812
hi20: 0x7ffff + 0x1(lo12 > 0x7ff) = 0x80000
lo20: 0x71234 - 0x1(lo12 > 0x7ff) + 0x1(hi20 > 0x7ffff)
hi12: 0x0
pcalau12i $t1, hi20 (0x80000)
$t1 = 0x11000010000100 + sign-extend(0x80000 << 12)
= 0x11000010000100 + 0xffffffff80000000
= 0x10ffff90000000
addi.d $t0, $zero, lo12 (0x812)
$t0 = 0xfffffffffffff812 (if lo12 > 0x7ff, because sign-extend,
lo20 need to sub 0x1)
lu32i.d $t0, lo20 (0x71234)
$t0 = {0x71234, 0xfffff812}
= 0x71234fffff812
lu52i.d $t0, hi12 (0x0)
$t0 = {0x0, 0x71234fffff812}
= 0x71234fffff812
add.d $t1, $t1, $t0
$t1 = 0x10ffff90000000 + 0x71234fffff812
= 0x1812348ffff812. */
#define RELOCATE_CALC_PC64_HI32(relocation, pc) \
({ \
bfd_vma __lo = (relocation & (bfd_vma)0xfff); \
relocation = (relocation & ~(bfd_vma)0xfff) \
- ((pc) & ~(bfd_vma)0xfff); \
if (__lo > 0x7ff) \
relocation += (0x1000 - 0x100000000); \
if (relocation & 0x80000000) \
relocation += 0x100000000; \
})
/* Compute the tp/dtp offset of a tls symbol.
It is dtp offset in dynamic tls model (gd/ld) and tp
offset in static tls model (ie/le). Both offsets are
calculated the same way on LoongArch, so the same
function is used. */
static bfd_vma
tlsoff (struct bfd_link_info *info, bfd_vma addr)
{
/* If tls_sec is NULL, we should have signalled an error already. */
if (elf_hash_table (info)->tls_sec == NULL)
return 0;
return addr - elf_hash_table (info)->tls_sec->vma;
}
static int
loongarch_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
bfd *input_bfd, asection *input_section,
bfd_byte *contents, Elf_Internal_Rela *relocs,
Elf_Internal_Sym *local_syms,
asection **local_sections)
{
Elf_Internal_Rela *rel;
Elf_Internal_Rela *relend;
bool fatal = false;
asection *sreloc = elf_section_data (input_section)->sreloc;
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (input_bfd);
struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
bfd_vma *local_got_offsets = elf_local_got_offsets (input_bfd);
bool is_pic = bfd_link_pic (info);
bool is_dyn = elf_hash_table (info)->dynamic_sections_created;
asection *plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
asection *got = htab->elf.sgot;
relend = relocs + input_section->reloc_count;
for (rel = relocs; rel < relend; rel++)
{
unsigned int r_type = ELFNN_R_TYPE (rel->r_info);
unsigned long r_symndx = ELFNN_R_SYM (rel->r_info);
bfd_vma pc = sec_addr (input_section) + rel->r_offset;
reloc_howto_type *howto = NULL;
asection *sec = NULL;
Elf_Internal_Sym *sym = NULL;
struct elf_link_hash_entry *h = NULL;
const char *name;
bfd_reloc_status_type r = bfd_reloc_ok;
bool is_ie, is_desc, is_undefweak, unresolved_reloc, defined_local;
bool resolved_local, resolved_dynly, resolved_to_const;
char tls_type;
bfd_vma relocation, off, ie_off, desc_off;
int i, j;
bool resolve_pcrel_undef_weak = false;
/* When an unrecognized relocation is encountered, which usually
occurs when using a newer assembler but an older linker, an error
should be reported instead of continuing to the next relocation. */
howto = loongarch_elf_rtype_to_howto (input_bfd, r_type);
if (howto == NULL)
return _bfd_unrecognized_reloc (input_bfd, input_section, r_type);
if (r_type == R_LARCH_GNU_VTINHERIT || r_type == R_LARCH_GNU_VTENTRY)
continue;
/* This is a final link. */
if (r_symndx < symtab_hdr->sh_info)
{
is_undefweak = false;
unresolved_reloc = false;
sym = local_syms + r_symndx;
sec = local_sections[r_symndx];
relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
/* Relocate against local STT_GNU_IFUNC symbol. */
if (!bfd_link_relocatable (info)
&& ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
{
h = elfNN_loongarch_get_local_sym_hash (htab, input_bfd, rel,
false);
if (h == NULL)
abort ();
/* Set STT_GNU_IFUNC symbol value. */
h->root.u.def.value = sym->st_value;
h->root.u.def.section = sec;
}
defined_local = true;
resolved_local = true;
resolved_dynly = false;
resolved_to_const = false;
/* Calc in funtion elf_link_input_bfd,
* if #define elf_backend_rela_normal to 1. */
if (bfd_link_relocatable (info)
&& ELF_ST_TYPE (sym->st_info) == STT_SECTION)
continue;
}
else
{
bool warned, ignored;
RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
r_symndx, symtab_hdr, sym_hashes,
h, sec, relocation,
unresolved_reloc, warned, ignored);
/* Here means symbol isn't local symbol only and 'h != NULL'. */
/* The 'unresolved_syms_in_objects' specify how to deal with undefined
symbol. And 'dynamic_undefined_weak' specify what to do when
meeting undefweak. */
if ((is_undefweak = h->root.type == bfd_link_hash_undefweak))
{
defined_local = false;
resolved_local = false;
resolved_to_const = (!is_dyn || h->dynindx == -1
|| UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
resolved_dynly = !resolved_local && !resolved_to_const;
}
else if (warned)
{
/* Symbol undefined offen means failed already. I don't know why
'warned' here but I guess it want to continue relocating as if
no error occures to find other errors as more as possible. */
/* To avoid generating warning messages about truncated
relocations, set the relocation's address to be the same as
the start of this section. */
relocation = (input_section->output_section
? input_section->output_section->vma
: 0);
defined_local = relocation != 0;
resolved_local = defined_local;
resolved_to_const = !resolved_local;
resolved_dynly = false;
}
else
{
defined_local = !unresolved_reloc && !ignored;
resolved_local =
defined_local && LARCH_REF_LOCAL (info, h);
resolved_dynly = !resolved_local;
resolved_to_const = !resolved_local && !resolved_dynly;
}
}
name = loongarch_sym_name (input_bfd, h, sym);
if (sec != NULL && discarded_section (sec))
RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section, rel,
1, relend, howto, 0, contents);
if (bfd_link_relocatable (info))
continue;
/* The r_symndx will be STN_UNDEF (zero) only for relocs against symbols
from removed linkonce sections, or sections discarded by a linker
script. Also for R_*_SOP_PUSH_ABSOLUTE and PCREL to specify const. */
if (r_symndx == STN_UNDEF)
{
defined_local = false;
resolved_local = false;
resolved_dynly = false;
resolved_to_const = true;
}
/* The ifunc reference generate plt. */
if (h && h->type == STT_GNU_IFUNC && h->plt.offset != MINUS_ONE)
{
defined_local = true;
resolved_local = true;
resolved_dynly = false;
resolved_to_const = false;
relocation = sec_addr (plt) + h->plt.offset;
}
unresolved_reloc = resolved_dynly;
BFD_ASSERT (resolved_local + resolved_dynly + resolved_to_const == 1);
/* BFD_ASSERT (!resolved_dynly || (h && h->dynindx != -1));. */
BFD_ASSERT (!resolved_local || defined_local);
is_desc = false;
is_ie = false;
switch (r_type)
{
case R_LARCH_MARK_PCREL:
case R_LARCH_MARK_LA:
case R_LARCH_NONE:
r = bfd_reloc_continue;
unresolved_reloc = false;
break;
case R_LARCH_32:
case R_LARCH_64:
if (resolved_dynly || (is_pic && resolved_local))
{
Elf_Internal_Rela outrel;
/* When generating a shared object, these relocations are copied
into the output file to be resolved at run time. */
outrel.r_offset = _bfd_elf_section_offset (output_bfd, info,
input_section,
rel->r_offset);
unresolved_reloc = (!((bfd_vma) -2 <= outrel.r_offset)
&& (input_section->flags & SEC_ALLOC));
outrel.r_offset += sec_addr (input_section);
/* A pointer point to a ifunc symbol. */
if (h && h->type == STT_GNU_IFUNC)
{
if (h->dynindx == -1)
{
outrel.r_info = ELFNN_R_INFO (0, R_LARCH_IRELATIVE);
outrel.r_addend = (h->root.u.def.value
+ h->root.u.def.section->output_section->vma
+ h->root.u.def.section->output_offset);
}
else
{
outrel.r_info = ELFNN_R_INFO (h->dynindx, R_LARCH_NN);
outrel.r_addend = 0;
}
if (LARCH_REF_LOCAL (info, h))
{
if (htab->elf.splt != NULL)
sreloc = htab->elf.srelgot;
else
sreloc = htab->elf.irelplt;
}
else
{
if (bfd_link_pic (info))
sreloc = htab->elf.irelifunc;
else if (htab->elf.splt != NULL)
sreloc = htab->elf.srelgot;
else
sreloc = htab->elf.irelplt;
}
}
else if (resolved_dynly)
{
if (h->dynindx == -1)
outrel.r_info = ELFNN_R_INFO (0, r_type);
else
outrel.r_info = ELFNN_R_INFO (h->dynindx, r_type);
outrel.r_addend = rel->r_addend;
}
else
{
outrel.r_info = ELFNN_R_INFO (0, R_LARCH_RELATIVE);
outrel.r_addend = relocation + rel->r_addend;
}
/* No alloc space of func allocate_dynrelocs.
No alloc space of invalid R_LARCH_32 in ELFCLASS64. */
if (unresolved_reloc
&& (ARCH_SIZE == 32 || r_type != R_LARCH_32)
&& !(h && (h->is_weakalias || !h->dyn_relocs)))
{
if (info->enable_dt_relr
&& (ELFNN_R_TYPE (outrel.r_info) == R_LARCH_RELATIVE)
&& input_section->alignment_power != 0
&& rel->r_offset % 2 == 0)
/* Don't emit a relative relocation that is packed,
only apply the addend (as if we are applying the
original R_LARCH_NN reloc in a PDE). */
r = perform_relocation (rel, input_section, howto,
relocation, input_bfd,
contents);
else
loongarch_elf_append_rela (output_bfd, sreloc,
&outrel);
}
}
relocation += rel->r_addend;
break;
case R_LARCH_ADD6:
case R_LARCH_ADD8:
case R_LARCH_ADD16:
case R_LARCH_ADD24:
case R_LARCH_ADD32:
case R_LARCH_ADD64:
{
bfd_vma old_value = bfd_get (howto->bitsize, input_bfd,
contents + rel->r_offset);
relocation = old_value + relocation + rel->r_addend;
break;
}
case R_LARCH_SUB6:
case R_LARCH_SUB8:
case R_LARCH_SUB16:
case R_LARCH_SUB24:
case R_LARCH_SUB32:
case R_LARCH_SUB64:
{
bfd_vma old_value = bfd_get (howto->bitsize, input_bfd,
contents + rel->r_offset);
relocation = old_value - relocation - rel->r_addend;
break;
}
case R_LARCH_ADD_ULEB128:
case R_LARCH_SUB_ULEB128:
{
/* Get the value and length of the uleb128 data. */
unsigned int len = 0;
bfd_vma old_value = _bfd_read_unsigned_leb128 (input_bfd,
contents + rel->r_offset, &len);
if (R_LARCH_ADD_ULEB128 == ELFNN_R_TYPE (rel->r_info))
relocation = old_value + relocation + rel->r_addend;
else if (R_LARCH_SUB_ULEB128 == ELFNN_R_TYPE (rel->r_info))
relocation = old_value - relocation - rel->r_addend;
bfd_vma mask = (1 << (7 * len)) - 1;
relocation &= mask;
break;
}
case R_LARCH_TLS_DTPREL32:
case R_LARCH_TLS_DTPREL64:
if (resolved_dynly)
{
Elf_Internal_Rela outrel;
outrel.r_offset = _bfd_elf_section_offset (output_bfd, info,
input_section,
rel->r_offset);
unresolved_reloc = (!((bfd_vma) -2 <= outrel.r_offset)
&& (input_section->flags & SEC_ALLOC));
outrel.r_info = ELFNN_R_INFO (h->dynindx, r_type);
outrel.r_offset += sec_addr (input_section);
outrel.r_addend = rel->r_addend;
if (unresolved_reloc)
loongarch_elf_append_rela (output_bfd, sreloc, &outrel);
break;
}
if (resolved_to_const)
fatal = loongarch_reloc_is_fatal (info, input_bfd, input_section,
rel, howto,
bfd_reloc_notsupported,
is_undefweak, name,
"Internal:");
if (resolved_local)
{
if (!elf_hash_table (info)->tls_sec)
{
fatal = loongarch_reloc_is_fatal (info, input_bfd,
input_section, rel, howto, bfd_reloc_notsupported,
is_undefweak, name, "TLS section not be created");
}
else
relocation = tlsoff (info, relocation);
}
else
{
fatal = loongarch_reloc_is_fatal (info, input_bfd,
input_section, rel, howto, bfd_reloc_undefined,
is_undefweak, name,
"TLS LE just can be resolved local only.");
}
break;
case R_LARCH_SOP_PUSH_TLS_TPREL:
if (resolved_local)
{
if (!elf_hash_table (info)->tls_sec)
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"TLS section not be created"));
else
relocation = tlsoff (info, relocation);
}
else
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_undefined, is_undefweak, name,
"TLS LE just can be resolved local only."));
break;
case R_LARCH_SOP_PUSH_ABSOLUTE:
if (is_undefweak)
{
if (resolved_dynly)
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_dangerous, is_undefweak, name,
"Someone require us to resolve undefweak "
"symbol dynamically. \n"
"But this reloc can't be done. "
"I think I can't throw error "
"for this\n"
"so I resolved it to 0. "
"I suggest to re-compile with '-fpic'."));
relocation = 0;
unresolved_reloc = false;
break;
}
if (resolved_to_const)
{
relocation += rel->r_addend;
break;
}
if (is_pic)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Under PIC we don't know load address. Re-compile "
"with '-fpic'?"));
break;
}
if (resolved_dynly)
{
if (!(plt && h && h->plt.offset != MINUS_ONE))
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_undefined, is_undefweak, name,
"Can't be resolved dynamically. Try to re-compile "
"with '-fpic'?"));
break;
}
if (rel->r_addend != 0)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Shouldn't be with r_addend."));
break;
}
relocation = sec_addr (plt) + h->plt.offset;
unresolved_reloc = false;
break;
}
if (resolved_local)
{
relocation += rel->r_addend;
break;
}
break;
case R_LARCH_SOP_PUSH_PCREL:
case R_LARCH_SOP_PUSH_PLT_PCREL:
unresolved_reloc = false;
if (is_undefweak)
{
i = 0, j = 0;
relocation = 0;
if (resolved_dynly)
{
if (h && h->plt.offset != MINUS_ONE)
i = 1, j = 2;
else
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_dangerous, is_undefweak, name,
"Undefweak need to be resolved dynamically, "
"but PLT stub doesn't represent."));
}
}
else
{
if (!(defined_local || (h && h->plt.offset != MINUS_ONE)))
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_undefined, is_undefweak, name,
"PLT stub does not represent and "
"symbol not defined."));
break;
}
if (resolved_local)
i = 0, j = 2;
else /* if (resolved_dynly) */
{
if (!(h && h->plt.offset != MINUS_ONE))
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_dangerous, is_undefweak, name,
"Internal: PLT stub doesn't represent. "
"Resolve it with pcrel"));
i = 1, j = 3;
}
}
for (; i < j; i++)
{
if ((i & 1) == 0 && defined_local)
{
relocation -= pc;
relocation += rel->r_addend;
break;
}
if ((i & 1) && h && h->plt.offset != MINUS_ONE)
{
if (rel->r_addend != 0)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"PLT shouldn't be with r_addend."));
break;
}
relocation = sec_addr (plt) + h->plt.offset - pc;
break;
}
}
break;
case R_LARCH_SOP_PUSH_GPREL:
unresolved_reloc = false;
if (rel->r_addend != 0)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Shouldn't be with r_addend."));
break;
}
if (h != NULL)
{
off = h->got.offset & (~1);
if (h->got.offset == MINUS_ONE && h->type != STT_GNU_IFUNC)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Internal: GOT entry doesn't represent."));
break;
}
/* Hidden symbol not has .got entry, only .got.plt entry
so gprel is (plt - got). */
if (h->got.offset == MINUS_ONE && h->type == STT_GNU_IFUNC)
{
if (h->plt.offset == (bfd_vma) -1)
{
abort();
}
bfd_vma plt_index = h->plt.offset / PLT_ENTRY_SIZE;
off = plt_index * GOT_ENTRY_SIZE;
if (htab->elf.splt != NULL)
{
/* Section .plt header is 2 times of plt entry. */
off = sec_addr (htab->elf.sgotplt) + off
- sec_addr (htab->elf.sgot);
}
else
{
/* Section iplt not has plt header. */
off = sec_addr (htab->elf.igotplt) + off
- sec_addr (htab->elf.sgot);
}
}
if ((h->got.offset & 1) == 0)
{
if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (is_dyn,
bfd_link_pic (info), h)
&& ((bfd_link_pic (info)
&& LARCH_REF_LOCAL (info, h))))
{
/* This is actually a static link, or it is a
-Bsymbolic link and the symbol is defined
locally, or the symbol was forced to be local
because of a version file. We must initialize
this entry in the global offset table. Since the
offset must always be a multiple of the word size,
we use the least significant bit to record whether
we have initialized it already.
When doing a dynamic link, we create a rela.got
relocation entry to initialize the value. This
is done in the finish_dynamic_symbol routine. */
if (resolved_dynly)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_dangerous, is_undefweak, name,
"Internal: here shouldn't dynamic."));
}
if (!(defined_local || resolved_to_const))
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_undefined, is_undefweak, name,
"Internal: "));
break;
}
asection *s;
Elf_Internal_Rela outrel;
/* We need to generate a R_LARCH_RELATIVE reloc
for the dynamic linker. */
s = htab->elf.srelgot;
if (!s)
{
fatal = loongarch_reloc_is_fatal
(info, input_bfd,
input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Internal: '.rel.got' not represent");
break;
}
outrel.r_offset = sec_addr (got) + off;
outrel.r_info = ELFNN_R_INFO (0, R_LARCH_RELATIVE);
outrel.r_addend = relocation; /* Link-time addr. */
loongarch_elf_append_rela (output_bfd, s, &outrel);
}
bfd_put_NN (output_bfd, relocation, got->contents + off);
h->got.offset |= 1;
}
}
else
{
if (!local_got_offsets)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Internal: local got offsets not reporesent."));
break;
}
off = local_got_offsets[r_symndx] & (~1);
if (local_got_offsets[r_symndx] == MINUS_ONE)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Internal: GOT entry doesn't represent."));
break;
}
/* The offset must always be a multiple of the word size.
So, we can use the least significant bit to record
whether we have already processed this entry. */
if ((local_got_offsets[r_symndx] & 1) == 0)
{
if (is_pic)
{
asection *s;
Elf_Internal_Rela outrel;
/* We need to generate a R_LARCH_RELATIVE reloc
for the dynamic linker. */
s = htab->elf.srelgot;
if (!s)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_notsupported, is_undefweak, name,
"Internal: '.rel.got' not represent"));
break;
}
outrel.r_offset = sec_addr (got) + off;
outrel.r_info = ELFNN_R_INFO (0, R_LARCH_RELATIVE);
outrel.r_addend = relocation; /* Link-time addr. */
loongarch_elf_append_rela (output_bfd, s, &outrel);
}
bfd_put_NN (output_bfd, relocation, got->contents + off);
local_got_offsets[r_symndx] |= 1;
}
}
relocation = off;
break;
case R_LARCH_SOP_PUSH_TLS_GOT:
case R_LARCH_SOP_PUSH_TLS_GD:
{
unresolved_reloc = false;
if (r_type == R_LARCH_SOP_PUSH_TLS_GOT)
is_ie = true;
bfd_vma got_off = 0;
if (h != NULL)
{
got_off = h->got.offset;
h->got.offset |= 1;
}
else
{
got_off = local_got_offsets[r_symndx];
local_got_offsets[r_symndx] |= 1;
}
BFD_ASSERT (got_off != MINUS_ONE);
ie_off = 0;
tls_type = _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx);
if ((tls_type & GOT_TLS_GD) && (tls_type & GOT_TLS_IE))
ie_off = 2 * GOT_ENTRY_SIZE;
if ((got_off & 1) == 0)
{
Elf_Internal_Rela rela;
asection *srel = htab->elf.srelgot;
int indx = 0;
bool need_reloc = false;
LARCH_TLS_GD_IE_NEED_DYN_RELOC (info, is_dyn, h, indx,
need_reloc);
if (tls_type & GOT_TLS_GD)
{
if (need_reloc)
{
/* Dynamic resolved Module ID. */
rela.r_offset = sec_addr (got) + got_off;
rela.r_addend = 0;
rela.r_info = ELFNN_R_INFO (indx, R_LARCH_TLS_DTPMODNN);
bfd_put_NN (output_bfd, 0, got->contents + got_off);
loongarch_elf_append_rela (output_bfd, srel, &rela);
if (indx == 0)
{
/* Local symbol, tp offset has been known. */
BFD_ASSERT (! unresolved_reloc);
bfd_put_NN (output_bfd,
tlsoff (info, relocation),
(got->contents + got_off + GOT_ENTRY_SIZE));
}
else
{
/* Dynamic resolved block offset. */
bfd_put_NN (output_bfd, 0,
got->contents + got_off + GOT_ENTRY_SIZE);
rela.r_info = ELFNN_R_INFO (indx,
R_LARCH_TLS_DTPRELNN);
rela.r_offset += GOT_ENTRY_SIZE;
loongarch_elf_append_rela (output_bfd, srel, &rela);
}
}
else
{
/* In a static link or an executable link with the symbol
binding locally. Mark it as belonging to module 1. */
bfd_put_NN (output_bfd, 1, got->contents + got_off);
bfd_put_NN (output_bfd, tlsoff (info, relocation),
got->contents + got_off + GOT_ENTRY_SIZE);
}
}
if (tls_type & GOT_TLS_IE)
{
if (need_reloc)
{
bfd_put_NN (output_bfd, 0,
got->contents + got_off + ie_off);
rela.r_offset = sec_addr (got) + got_off + ie_off;
rela.r_addend = 0;
if (indx == 0)
rela.r_addend = tlsoff (info, relocation);
rela.r_info = ELFNN_R_INFO (indx, R_LARCH_TLS_TPRELNN);
loongarch_elf_append_rela (output_bfd, srel, &rela);
}
else
{
/* In a static link or an executable link with the symbol
binding locally, compute offset directly. */
bfd_put_NN (output_bfd, tlsoff (info, relocation),
got->contents + got_off + ie_off);
}
}
}
relocation = (got_off & (~(bfd_vma)1)) + (is_ie ? ie_off : 0);
}
break;
/* New reloc types. */
case R_LARCH_B16:
case R_LARCH_B21:
case R_LARCH_B26:
case R_LARCH_CALL36:
unresolved_reloc = false;
bool via_plt =
plt != NULL && h != NULL && h->plt.offset != (bfd_vma) - 1;
if (is_undefweak)
{
relocation = 0;
/* A call to an undefined weak symbol is converted to 0. */
if (!via_plt && IS_CALL_RELOC (r_type))
{
/* call36 fn1 => pcaddu18i $ra,0+jirl $ra,$zero,0
tail36 $t0,fn1 => pcaddi18i $t0,0+jirl $zero,$zero,0 */
if (R_LARCH_CALL36 == r_type)
{
uint32_t jirl = bfd_get (32, input_bfd,
contents + rel->r_offset + 4);
uint32_t rd = LARCH_GET_RD (jirl);
jirl = LARCH_OP_JIRL | rd;
bfd_put (32, input_bfd, jirl,
contents + rel->r_offset + 4);
}
else
{
uint32_t b_bl = bfd_get (32, input_bfd,
contents + rel->r_offset);
/* b %plt(fn1) => jirl $zero,zero,0. */
if (LARCH_INSN_B (b_bl))
bfd_put (32, input_bfd, LARCH_OP_JIRL,
contents + rel->r_offset);
else
/* bl %plt(fn1) => jirl $ra,zero,0. */
bfd_put (32, input_bfd, LARCH_OP_JIRL | 0x1,
contents + rel->r_offset);
}
r = bfd_reloc_continue;
break;
}
}
if (resolved_local)
{
relocation -= pc;
relocation += rel->r_addend;
}
else if (resolved_dynly)
{
BFD_ASSERT (h
&& (h->plt.offset != MINUS_ONE
|| ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
&& rel->r_addend == 0);
if (h && h->plt.offset == MINUS_ONE
&& ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
{
relocation -= pc;
relocation += rel->r_addend;
}
else
relocation = sec_addr (plt) + h->plt.offset - pc;
}
break;
case R_LARCH_ABS_HI20:
case R_LARCH_ABS_LO12:
case R_LARCH_ABS64_LO20:
case R_LARCH_ABS64_HI12:
if (is_undefweak)
{
BFD_ASSERT (resolved_dynly);
relocation = 0;
break;
}
else if (resolved_to_const || resolved_local)
{
relocation += rel->r_addend;
}
else if (resolved_dynly)
{
unresolved_reloc = false;
BFD_ASSERT ((plt && h && h->plt.offset != MINUS_ONE)
&& rel->r_addend == 0);
relocation = sec_addr (plt) + h->plt.offset;
}
break;
case R_LARCH_PCALA64_HI12:
pc -= 4;
/* Fall through. */
case R_LARCH_PCALA64_LO20:
pc -= 8;
/* Fall through. */
case R_LARCH_PCREL20_S2:
case R_LARCH_PCALA_HI20:
unresolved_reloc = false;
/* If sym is undef weak and it's hidden or we are doing a static
link, (sym + addend) should be resolved to runtime address
(0 + addend). */
resolve_pcrel_undef_weak =
((info->nointerp
|| (h && ELF_ST_VISIBILITY (h->other) != STV_DEFAULT))
&& is_undefweak);
if (resolve_pcrel_undef_weak)
pc = 0;
if (h && h->plt.offset != MINUS_ONE)
relocation = sec_addr (plt) + h->plt.offset;
else
relocation += rel->r_addend;
switch (r_type)
{
case R_LARCH_PCREL20_S2:
relocation -= pc;
if (resolve_pcrel_undef_weak)
{
bfd_signed_vma addr = (bfd_signed_vma) relocation;
if (addr >= 2048 || addr < -2048)
{
const char *msg =
_("cannot resolve R_LARCH_PCREL20_S2 against "
"undefined weak symbol with addend out of "
"[-2048, 2048)");
fatal =
loongarch_reloc_is_fatal (info, input_bfd,
input_section, rel,
howto,
bfd_reloc_notsupported,
is_undefweak, name, msg);
break;
}
uint32_t insn = bfd_get (32, input_bfd,
contents + rel->r_offset);
insn = LARCH_GET_RD (insn) | LARCH_OP_ADDI_W;
insn |= (relocation & 0xfff) << 10;
bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
r = bfd_reloc_continue;
}
break;
case R_LARCH_PCALA_HI20:
RELOCATE_CALC_PC32_HI20 (relocation, pc);
if (resolve_pcrel_undef_weak)
{
uint32_t insn = bfd_get (32, input_bfd,
contents + rel->r_offset);
insn = LARCH_GET_RD (insn) | LARCH_OP_LU12I_W;
bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
}
break;
default:
RELOCATE_CALC_PC64_HI32 (relocation, pc);
}
break;
case R_LARCH_TLS_LE_HI20_R:
relocation += rel->r_addend;
relocation = tlsoff (info, relocation);
RELOCATE_TLS_TP32_HI20 (relocation);
break;
case R_LARCH_PCALA_LO12:
/* Not support if sym_addr in 2k page edge.
pcalau12i pc_hi20 (sym_addr)
ld.w/d pc_lo12 (sym_addr)
ld.w/d pc_lo12 (sym_addr + x)
...
can not calc correct address
if sym_addr < 0x800 && sym_addr + x >= 0x800. */
if (h && h->plt.offset != MINUS_ONE)
relocation = sec_addr (plt) + h->plt.offset;
else
relocation += rel->r_addend;
/* For 2G jump, generate pcalau12i, jirl. */
/* If use jirl, turns to R_LARCH_B16. */
uint32_t insn = bfd_get (32, input_bfd, contents + rel->r_offset);
if (LARCH_INSN_JIRL (insn))
{
relocation &= 0xfff;
/* Signed extend. */
relocation = (relocation ^ 0x800) - 0x800;
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_B16);
howto = loongarch_elf_rtype_to_howto (input_bfd, R_LARCH_B16);
}
break;
case R_LARCH_GOT_PC_HI20:
case R_LARCH_GOT_HI20:
/* Calc got offset. */
{
unresolved_reloc = false;
BFD_ASSERT (rel->r_addend == 0);
bfd_vma got_off = 0;
if (h != NULL)
{
/* GOT ref or ifunc. */
BFD_ASSERT (h->got.offset != MINUS_ONE
|| h->type == STT_GNU_IFUNC);
got_off = h->got.offset & (~(bfd_vma)1);
/* Hidden symbol not has got entry,
* only got.plt entry so it is (plt - got). */
if (h->got.offset == MINUS_ONE && h->type == STT_GNU_IFUNC)
{
bfd_vma idx;
if (htab->elf.splt != NULL)
{
idx = (h->plt.offset - PLT_HEADER_SIZE)
/ PLT_ENTRY_SIZE;
got_off = sec_addr (htab->elf.sgotplt)
+ GOTPLT_HEADER_SIZE
+ (idx * GOT_ENTRY_SIZE)
- sec_addr (htab->elf.sgot);
}
else
{
idx = h->plt.offset / PLT_ENTRY_SIZE;
got_off = sec_addr (htab->elf.sgotplt)
+ (idx * GOT_ENTRY_SIZE)
- sec_addr (htab->elf.sgot);
}
}
if ((h->got.offset & 1) == 0)
{
/* We need to generate a R_LARCH_RELATIVE reloc once
* in loongarch_elf_finish_dynamic_symbol or now,
* call finish_dyn && nopic
* or !call finish_dyn && pic. */
if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (is_dyn,
bfd_link_pic (info),
h)
&& !bfd_is_abs_section(h->root.u.def.section)
&& bfd_link_pic (info)
&& LARCH_REF_LOCAL (info, h)
&& !info->enable_dt_relr)
{
Elf_Internal_Rela rela;
rela.r_offset = sec_addr (got) + got_off;
rela.r_info = ELFNN_R_INFO (0, R_LARCH_RELATIVE);
rela.r_addend = relocation;
loongarch_elf_append_rela (output_bfd,
htab->elf.srelgot, &rela);
}
h->got.offset |= 1;
bfd_put_NN (output_bfd, relocation,
got->contents + got_off);
}
}
else
{
BFD_ASSERT (local_got_offsets
&& local_got_offsets[r_symndx] != MINUS_ONE);
got_off = local_got_offsets[r_symndx] & (~(bfd_vma)1);
if (sym->st_shndx != SHN_ABS
&& (local_got_offsets[r_symndx] & 1) == 0)
{
if (bfd_link_pic (info) && !info->enable_dt_relr)
{
Elf_Internal_Rela rela;
rela.r_offset = sec_addr (got) + got_off;
rela.r_info = ELFNN_R_INFO (0, R_LARCH_RELATIVE);
rela.r_addend = relocation;
loongarch_elf_append_rela (output_bfd,
htab->elf.srelgot, &rela);
}
local_got_offsets[r_symndx] |= 1;
}
bfd_put_NN (output_bfd, relocation, got->contents + got_off);
}
relocation = got_off + sec_addr (got);
}
if (r_type == R_LARCH_GOT_PC_HI20)
RELOCATE_CALC_PC32_HI20 (relocation, pc);
break;
case R_LARCH_GOT_PC_LO12:
case R_LARCH_GOT64_PC_LO20:
case R_LARCH_GOT64_PC_HI12:
case R_LARCH_GOT_LO12:
case R_LARCH_GOT64_LO20:
case R_LARCH_GOT64_HI12:
{
unresolved_reloc = false;
bfd_vma got_off;
if (h)
got_off = h->got.offset & (~(bfd_vma)1);
else
got_off = local_got_offsets[r_symndx] & (~(bfd_vma)1);
if (h && h->got.offset == MINUS_ONE && h->type == STT_GNU_IFUNC)
{
bfd_vma idx;
if (htab->elf.splt != NULL)
idx = (h->plt.offset - PLT_HEADER_SIZE) / PLT_ENTRY_SIZE;
else
idx = h->plt.offset / PLT_ENTRY_SIZE;
got_off = sec_addr (htab->elf.sgotplt)
+ GOTPLT_HEADER_SIZE
+ (idx * GOT_ENTRY_SIZE)
- sec_addr (htab->elf.sgot);
}
relocation = got_off + sec_addr (got);
}
if (r_type == R_LARCH_GOT64_PC_HI12)
RELOCATE_CALC_PC64_HI32 (relocation, pc - 12);
else if (r_type == R_LARCH_GOT64_PC_LO20)
RELOCATE_CALC_PC64_HI32 (relocation, pc - 8);
break;
case R_LARCH_TLS_LE_HI20:
case R_LARCH_TLS_LE_LO12:
case R_LARCH_TLS_LE_LO12_R:
case R_LARCH_TLS_LE64_LO20:
case R_LARCH_TLS_LE64_HI12:
BFD_ASSERT (resolved_local && elf_hash_table (info)->tls_sec);
relocation += rel->r_addend;
relocation = tlsoff (info, relocation);
break;
/* TLS IE LD/GD process separately is troublesome.
When a symbol is both ie and LD/GD, h->got.off |= 1
make only one type be relocated. We must use
h->got.offset |= 1 and h->got.offset |= 2
diff IE and LD/GD. And all (got_off & (~(bfd_vma)1))
(IE LD/GD and reusable GOT reloc) must change to
(got_off & (~(bfd_vma)3)), beause we use lowest 2 bits
as a tag.
Now, LD and GD is both GOT_TLS_GD type, LD seems to
can be omitted. */
case R_LARCH_TLS_IE_PC_HI20:
case R_LARCH_TLS_IE_HI20:
case R_LARCH_TLS_LD_PC_HI20:
case R_LARCH_TLS_LD_HI20:
case R_LARCH_TLS_GD_PC_HI20:
case R_LARCH_TLS_GD_HI20:
case R_LARCH_TLS_DESC_PC_HI20:
case R_LARCH_TLS_DESC_HI20:
case R_LARCH_TLS_LD_PCREL20_S2:
case R_LARCH_TLS_GD_PCREL20_S2:
case R_LARCH_TLS_DESC_PCREL20_S2:
BFD_ASSERT (rel->r_addend == 0);
unresolved_reloc = false;
if (r_type == R_LARCH_TLS_IE_PC_HI20
|| r_type == R_LARCH_TLS_IE_HI20)
is_ie = true;
if (r_type == R_LARCH_TLS_DESC_PC_HI20
|| r_type == R_LARCH_TLS_DESC_HI20
|| r_type == R_LARCH_TLS_DESC_PCREL20_S2)
is_desc = true;
bfd_vma got_off = 0;
if (h != NULL)
{
got_off = h->got.offset;
h->got.offset |= 1;
}
else
{
got_off = local_got_offsets[r_symndx];
local_got_offsets[r_symndx] |= 1;
}
BFD_ASSERT (got_off != MINUS_ONE);
tls_type = _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx);
/* If a tls variable is accessed in multiple ways, GD uses
the first two slots of GOT, desc follows with two slots,
and IE uses one slot at the end. */
off = 0;
if (tls_type & GOT_TLS_GD)
off += 2 * GOT_ENTRY_SIZE;
desc_off = off;
if (tls_type & GOT_TLS_GDESC)
off += 2 * GOT_ENTRY_SIZE;
ie_off = off;
if ((got_off & 1) == 0)
{
Elf_Internal_Rela rela;
asection *relgot = htab->elf.srelgot;
int indx = 0;
bool need_reloc = false;
LARCH_TLS_GD_IE_NEED_DYN_RELOC (info, is_dyn, h, indx,
need_reloc);
if (tls_type & GOT_TLS_GD)
{
if (need_reloc)
{
/* Dynamic resolved Module ID. */
rela.r_offset = sec_addr (got) + got_off;
rela.r_addend = 0;
rela.r_info = ELFNN_R_INFO (indx,R_LARCH_TLS_DTPMODNN);
bfd_put_NN (output_bfd, 0, got->contents + got_off);
loongarch_elf_append_rela (output_bfd, relgot, &rela);
if (indx == 0)
{
/* Local symbol, tp offset has been known. */
BFD_ASSERT (! unresolved_reloc);
bfd_put_NN (output_bfd,
tlsoff (info, relocation),
(got->contents + got_off + GOT_ENTRY_SIZE));
}
else
{
/* Dynamic resolved block offset. */
bfd_put_NN (output_bfd, 0,
got->contents + got_off + GOT_ENTRY_SIZE);
rela.r_info = ELFNN_R_INFO (indx,
R_LARCH_TLS_DTPRELNN);
rela.r_offset += GOT_ENTRY_SIZE;
loongarch_elf_append_rela (output_bfd, relgot, &rela);
}
}
else
{
/* In a static link or an executable link with the symbol
binding locally. Mark it as belonging to module 1. */
bfd_put_NN (output_bfd, 1, got->contents + got_off);
bfd_put_NN (output_bfd, tlsoff (info, relocation),
got->contents + got_off + GOT_ENTRY_SIZE);
}
}
if (tls_type & GOT_TLS_GDESC)
{
/* Unless it is a static link, DESC always emits a
dynamic relocation. */
indx = h && h->dynindx != -1 ? h->dynindx : 0;
rela.r_offset = sec_addr (got) + got_off + desc_off;
rela.r_addend = 0;
if (indx == 0)
rela.r_addend = tlsoff (info, relocation);
rela.r_info = ELFNN_R_INFO (indx, R_LARCH_TLS_DESCNN);
loongarch_elf_append_rela (output_bfd, relgot, &rela);
bfd_put_NN (output_bfd, 0,
got->contents + got_off + desc_off);
}
if (tls_type & GOT_TLS_IE)
{
if (need_reloc)
{
bfd_put_NN (output_bfd, 0,
got->contents + got_off + ie_off);
rela.r_offset = sec_addr (got) + got_off + ie_off;
rela.r_addend = 0;
if (indx == 0)
rela.r_addend = tlsoff (info, relocation);
rela.r_info = ELFNN_R_INFO (indx, R_LARCH_TLS_TPRELNN);
loongarch_elf_append_rela (output_bfd, relgot, &rela);
}
else
{
/* In a static link or an executable link with the symbol
bindinglocally, compute offset directly. */
bfd_put_NN (output_bfd, tlsoff (info, relocation),
got->contents + got_off + ie_off);
}
}
}
relocation = (got_off & (~(bfd_vma)1)) + sec_addr (got);
if (is_desc)
relocation += desc_off;
else if (is_ie)
relocation += ie_off;
if (r_type == R_LARCH_TLS_LD_PC_HI20
|| r_type == R_LARCH_TLS_GD_PC_HI20
|| r_type == R_LARCH_TLS_IE_PC_HI20
|| r_type == R_LARCH_TLS_DESC_PC_HI20)
RELOCATE_CALC_PC32_HI20 (relocation, pc);
else if (r_type == R_LARCH_TLS_LD_PCREL20_S2
|| r_type == R_LARCH_TLS_GD_PCREL20_S2
|| r_type == R_LARCH_TLS_DESC_PCREL20_S2)
relocation -= pc;
/* else {} ABS relocations. */
break;
case R_LARCH_TLS_DESC_PC_LO12:
case R_LARCH_TLS_DESC64_PC_LO20:
case R_LARCH_TLS_DESC64_PC_HI12:
case R_LARCH_TLS_DESC_LO12:
case R_LARCH_TLS_DESC64_LO20:
case R_LARCH_TLS_DESC64_HI12:
{
unresolved_reloc = false;
if (h)
relocation = sec_addr (got) + (h->got.offset & (~(bfd_vma)1));
else
relocation = sec_addr (got)
+ (local_got_offsets[r_symndx] & (~(bfd_vma)1));
tls_type = _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx);
/* Use both TLS_GD and TLS_DESC. */
if (GOT_TLS_GD_BOTH_P (tls_type))
relocation += 2 * GOT_ENTRY_SIZE;
if (r_type == R_LARCH_TLS_DESC64_PC_LO20)
RELOCATE_CALC_PC64_HI32 (relocation, pc - 8);
else if (r_type == R_LARCH_TLS_DESC64_PC_HI12)
RELOCATE_CALC_PC64_HI32 (relocation, pc - 12);
break;
}
case R_LARCH_TLS_DESC_LD:
case R_LARCH_TLS_DESC_CALL:
unresolved_reloc = false;
break;
case R_LARCH_TLS_IE_PC_LO12:
case R_LARCH_TLS_IE64_PC_LO20:
case R_LARCH_TLS_IE64_PC_HI12:
case R_LARCH_TLS_IE_LO12:
case R_LARCH_TLS_IE64_LO20:
case R_LARCH_TLS_IE64_HI12:
unresolved_reloc = false;
if (h)
relocation = sec_addr (got) + (h->got.offset & (~(bfd_vma)1));
else
relocation = sec_addr (got)
+ (local_got_offsets[r_symndx] & (~(bfd_vma)1));
tls_type = _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx);
/* Use TLS_GD TLS_DESC and TLS_IE. */
if (GOT_TLS_GD_BOTH_P (tls_type) && (tls_type & GOT_TLS_IE))
relocation += 4 * GOT_ENTRY_SIZE;
/* Use GOT_TLS_GD_ANY_P (tls_type) and TLS_IE. */
else if (GOT_TLS_GD_ANY_P (tls_type) && (tls_type & GOT_TLS_IE))
relocation += 2 * GOT_ENTRY_SIZE;
if (r_type == R_LARCH_TLS_IE64_PC_LO20)
RELOCATE_CALC_PC64_HI32 (relocation, pc - 8);
else if (r_type == R_LARCH_TLS_IE64_PC_HI12)
RELOCATE_CALC_PC64_HI32 (relocation, pc - 12);
break;
case R_LARCH_RELAX:
case R_LARCH_ALIGN:
r = bfd_reloc_continue;
unresolved_reloc = false;
break;
default:
break;
}
if (fatal)
break;
do
{
/* 'unresolved_reloc' means we haven't done it yet.
We need help of dynamic linker to fix this memory location up. */
if (!unresolved_reloc)
break;
if (_bfd_elf_section_offset (output_bfd, info, input_section,
rel->r_offset) == MINUS_ONE)
/* WHY? May because it's invalid so skip checking.
But why dynamic reloc a invalid section? */
break;
if (input_section->output_section->flags & SEC_DEBUGGING)
{
fatal = (loongarch_reloc_is_fatal
(info, input_bfd, input_section, rel, howto,
bfd_reloc_dangerous, is_undefweak, name,
"Seems dynamic linker not process "
"sections 'SEC_DEBUGGING'."));
}
if (!is_dyn)
break;
if ((info->flags & DF_TEXTREL) == 0)
if (input_section->output_section->flags & SEC_READONLY)
info->flags |= DF_TEXTREL;
}
while (0);
if (fatal)
break;
loongarch_record_one_reloc (input_bfd, input_section, r_type,
rel->r_offset, sym, h, rel->r_addend);
if (r != bfd_reloc_continue)
r = perform_relocation (rel, input_section, howto, relocation,
input_bfd, contents);
switch (r)
{
case bfd_reloc_dangerous:
case bfd_reloc_continue:
case bfd_reloc_ok:
continue;
case bfd_reloc_overflow:
/* Overflow value can't be filled in. */
loongarch_dump_reloc_record (info->callbacks->info);
info->callbacks->reloc_overflow
(info, h ? &h->root : NULL, name, howto->name, rel->r_addend,
input_bfd, input_section, rel->r_offset);
if (r_type == R_LARCH_PCREL20_S2
|| r_type == R_LARCH_TLS_LD_PCREL20_S2
|| r_type == R_LARCH_TLS_GD_PCREL20_S2
|| r_type == R_LARCH_TLS_DESC_PCREL20_S2)
_bfd_error_handler (_("recompile with 'gcc -mno-relax' or"
" 'as -mno-relax' or 'ld --no-relax'"));
break;
case bfd_reloc_outofrange:
/* Stack state incorrect. */
loongarch_dump_reloc_record (info->callbacks->info);
info->callbacks->info
("%X%H: Internal stack state is incorrect.\n"
"Want to push to full stack or pop from empty stack?\n",
input_bfd, input_section, rel->r_offset);
break;
case bfd_reloc_notsupported:
info->callbacks->info ("%X%H: Unknown relocation type.\n", input_bfd,
input_section, rel->r_offset);
break;
default:
info->callbacks->info ("%X%H: Internal: unknown error.\n", input_bfd,
input_section, rel->r_offset);
break;
}
fatal = true;
}
return !fatal;
}
static bool
loongarch_relax_delete_bytes (bfd *abfd,
asection *sec,
bfd_vma addr,
size_t count,
struct bfd_link_info *link_info)
{
unsigned int i, symcount;
bfd_vma toaddr = sec->size;
struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (abfd);
Elf_Internal_Shdr *symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
unsigned int sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
struct bfd_elf_section_data *data = elf_section_data (sec);
bfd_byte *contents = data->this_hdr.contents;
struct relr_entry *relr = loongarch_elf_section_data (sec)->relr;
struct loongarch_elf_link_hash_table *htab =
loongarch_elf_hash_table (link_info);
struct relr_entry *relr_end = NULL;
if (htab->relr_count)
relr_end = htab->relr + htab->relr_count;
/* Actually delete the bytes. */
sec->size -= count;
memmove (contents + addr, contents + addr + count, toaddr - addr - count);
/* Adjust the location of all of the relocs. Note that we need not
adjust the addends, since all PC-relative references must be against
symbols, which we will adjust below. */
for (i = 0; i < sec->reloc_count; i++)
if (data->relocs[i].r_offset > addr && data->relocs[i].r_offset < toaddr)
data->relocs[i].r_offset -= count;
/* Likewise for relative relocs to be packed into .relr. */
for (; relr && relr < relr_end && relr->sec == sec; relr++)
if (relr->off > addr && relr->off < toaddr)
relr->off -= count;
/* Adjust the local symbols defined in this section. */
for (i = 0; i < symtab_hdr->sh_info; i++)
{
Elf_Internal_Sym *sym = (Elf_Internal_Sym *) symtab_hdr->contents + i;
if (sym->st_shndx == sec_shndx)
{
/* If the symbol is in the range of memory we just moved, we
have to adjust its value. */
if (sym->st_value > addr && sym->st_value <= toaddr)
sym->st_value -= count;
/* If the symbol *spans* the bytes we just deleted (i.e. its
*end* is in the moved bytes but its *start* isn't), then we
must adjust its size.
This test needs to use the original value of st_value, otherwise
we might accidentally decrease size when deleting bytes right
before the symbol. But since deleted relocs can't span across
symbols, we can't have both a st_value and a st_size decrease,
so it is simpler to just use an else. */
else if (sym->st_value <= addr
&& sym->st_value + sym->st_size > addr
&& sym->st_value + sym->st_size <= toaddr)
sym->st_size -= count;
}
}
/* Now adjust the global symbols defined in this section. */
symcount = ((symtab_hdr->sh_size / sizeof (ElfNN_External_Sym))
- symtab_hdr->sh_info);
for (i = 0; i < symcount; i++)
{
struct elf_link_hash_entry *sym_hash = sym_hashes[i];
/* The '--wrap SYMBOL' option is causing a pain when the object file,
containing the definition of __wrap_SYMBOL, includes a direct
call to SYMBOL as well. Since both __wrap_SYMBOL and SYMBOL reference
the same symbol (which is __wrap_SYMBOL), but still exist as two
different symbols in 'sym_hashes', we don't want to adjust
the global symbol __wrap_SYMBOL twice.
The same problem occurs with symbols that are versioned_hidden, as
foo becomes an alias for foo@BAR, and hence they need the same
treatment. */
if (link_info->wrap_hash != NULL
|| sym_hash->versioned != unversioned)
{
struct elf_link_hash_entry **cur_sym_hashes;
/* Loop only over the symbols which have already been checked. */
for (cur_sym_hashes = sym_hashes; cur_sym_hashes < &sym_hashes[i];
cur_sym_hashes++)
{
/* If the current symbol is identical to 'sym_hash', that means
the symbol was already adjusted (or at least checked). */
if (*cur_sym_hashes == sym_hash)
break;
}
/* Don't adjust the symbol again. */
if (cur_sym_hashes < &sym_hashes[i])
continue;
}
if ((sym_hash->root.type == bfd_link_hash_defined
|| sym_hash->root.type == bfd_link_hash_defweak)
&& sym_hash->root.u.def.section == sec)
{
/* As above, adjust the value if needed. */
if (sym_hash->root.u.def.value > addr
&& sym_hash->root.u.def.value <= toaddr)
sym_hash->root.u.def.value -= count;
/* As above, adjust the size if needed. */
else if (sym_hash->root.u.def.value <= addr
&& sym_hash->root.u.def.value + sym_hash->size > addr
&& sym_hash->root.u.def.value + sym_hash->size <= toaddr)
sym_hash->size -= count;
}
}
return true;
}
/* Start perform TLS type transition.
Currently there are three cases of relocation handled here:
DESC -> IE, DEC -> LE and IE -> LE. */
static bool
loongarch_tls_perform_trans (bfd *abfd, asection *sec,
Elf_Internal_Rela *rel,
struct elf_link_hash_entry *h,
struct bfd_link_info *info)
{
unsigned long insn;
bool local_exec = bfd_link_executable (info)
&& LARCH_REF_LOCAL (info, h);
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
unsigned long r_type = ELFNN_R_TYPE (rel->r_info);
unsigned long r_symndx = ELFNN_R_SYM (rel->r_info);
switch (r_type)
{
case R_LARCH_TLS_DESC_PC_HI20:
if (local_exec)
{
/* DESC -> LE relaxation:
pcalalau12i $a0,%desc_pc_hi20(var) =>
lu12i.w $a0,%le_hi20(var)
*/
bfd_put (32, abfd, LARCH_OP_LU12I_W | LARCH_RD_A0,
contents + rel->r_offset);
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_TLS_LE_HI20);
}
else
{
/* DESC -> IE relaxation:
pcalalau12i $a0,%desc_pc_hi20(var) =>
pcalalau12i $a0,%ie_pc_hi20(var)
*/
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_TLS_IE_PC_HI20);
}
return true;
case R_LARCH_TLS_DESC_PC_LO12:
if (local_exec)
{
/* DESC -> LE relaxation:
addi.d $a0,$a0,%desc_pc_lo12(var) =>
ori $a0,$a0,le_lo12(var)
*/
insn = LARCH_OP_ORI | LARCH_RD_RJ_A0;
bfd_put (32, abfd, LARCH_OP_ORI | LARCH_RD_RJ_A0,
contents + rel->r_offset);
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_TLS_LE_LO12);
}
else
{
/* DESC -> IE relaxation:
addi.d $a0,$a0,%desc_pc_lo12(var) =>
ld.d $a0,$a0,%ie_pc_lo12(var)
*/
bfd_put (32, abfd, LARCH_OP_LD_D | LARCH_RD_RJ_A0,
contents + rel->r_offset);
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_TLS_IE_PC_LO12);
}
return true;
case R_LARCH_TLS_DESC_LD:
case R_LARCH_TLS_DESC_CALL:
/* DESC -> LE/IE relaxation:
ld.d $ra,$a0,%desc_ld(var) => NOP
jirl $ra,$ra,%desc_call(var) => NOP
*/
rel->r_info = ELFNN_R_INFO (0, R_LARCH_NONE);
bfd_put (32, abfd, LARCH_NOP, contents + rel->r_offset);
/* link with -relax option will delete NOP. */
if (!info->disable_target_specific_optimizations)
loongarch_relax_delete_bytes (abfd, sec, rel->r_offset, 4, info);
return true;
case R_LARCH_TLS_IE_PC_HI20:
if (local_exec)
{
/* IE -> LE relaxation:
pcalalau12i $rd,%ie_pc_hi20(var) =>
lu12i.w $rd,%le_hi20(var)
*/
insn = bfd_getl32 (contents + rel->r_offset);
bfd_put (32, abfd, LARCH_OP_LU12I_W | LARCH_GET_RD(insn),
contents + rel->r_offset);
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_TLS_LE_HI20);
}
return true;
case R_LARCH_TLS_IE_PC_LO12:
if (local_exec)
{
/* IE -> LE relaxation:
ld.d $rd,$rj,%%ie_pc_lo12(var) =>
ori $rd,$rj,le_lo12(var)
*/
insn = bfd_getl32 (contents + rel->r_offset);
bfd_put (32, abfd, LARCH_OP_ORI | (insn & 0x3ff),
contents + rel->r_offset);
rel->r_info = ELFNN_R_INFO (r_symndx, R_LARCH_TLS_LE_LO12);
}
return true;
}
return false;
}
/* Relax tls le, mainly relax the process of getting TLS le symbolic addresses.
there are three situations in which an assembly instruction sequence needs to
be relaxed:
symbol address = tp + offset (symbol),offset (symbol) = le_hi20_r + le_lo12_r
Case 1:
in this case, the rd register in the st.{w/d} instruction does not store the
full tls symbolic address, but tp + le_hi20_r, which is a part of the tls
symbolic address, and then obtains the rd + le_lo12_r address through the
st.w instruction feature.
this is the full tls symbolic address (tp + le_hi20_r + le_lo12_r).
before relax: after relax:
lu12i.w $rd,%le_hi20_r (sym) ==> (instruction deleted)
add.{w/d} $rd,$rd,$tp,%le_add_r (sym) ==> (instruction deleted)
st.{w/d} $rs,$rd,%le_lo12_r (sym) ==> st.{w/d} $rs,$tp,%le_lo12_r (sym)
Case 2:
in this case, ld.{w/d} is similar to st.{w/d} in case1.
before relax: after relax:
lu12i.w $rd,%le_hi20_r (sym) ==> (instruction deleted)
add.{w/d} $rd,$rd,$tp,%le_add_r (sym) ==> (instruction deleted)
ld.{w/d} $rs,$rd,%le_lo12_r (sym) ==> ld.{w/d} $rs,$tp,%le_lo12_r (sym)
Case 3:
in this case,the rs register in addi.{w/d} stores the full address of the tls
symbol (tp + le_hi20_r + le_lo12_r).
before relax: after relax:
lu12i.w $rd,%le_hi20_r (sym) ==> (instruction deleted)
add.{w/d} $rd,$rd,$tp,%le_add_r (sym) ==> (instruction deleted)
addi.{w/d} $rs,$rd,%le_lo12_r (sym) ==> addi.{w/d} $rs,$tp,%le_lo12_r (sym)
For relocation of all old LE instruction sequences, whether it is
a normal code model or an extreme code model, relaxation will be
performed when the relaxation conditions are met.
nomal code model:
lu12i.w $rd,%le_hi20(sym) => (deleted)
ori $rd,$rd,le_lo12(sym) => ori $rd,$zero,le_lo12(sym)
extreme code model:
lu12i.w $rd,%le_hi20(sym) => (deleted)
ori $rd,$rd,%le_lo12(sym) => ori $rd,$zero,le_lo12(sym)
lu32i.d $rd,%le64_lo20(sym) => (deleted)
lu52i.d $rd,$rd,%le64_hi12(sym) => (deleted)
*/
static bool
loongarch_relax_tls_le (bfd *abfd, asection *sec,
asection *sym_sec ATTRIBUTE_UNUSED,
Elf_Internal_Rela *rel, bfd_vma symval,
struct bfd_link_info *link_info,
bool *agin ATTRIBUTE_UNUSED,
bfd_vma max_alignment ATTRIBUTE_UNUSED)
{
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
uint32_t insn = bfd_get (32, abfd, contents + rel->r_offset);
static uint32_t insn_rj,insn_rd;
symval = symval - elf_hash_table (link_info)->tls_sec->vma;
/* The old LE instruction sequence can be relaxed when the symbol offset
is smaller than the 12-bit range. */
if (symval <= 0xfff)
{
switch (ELFNN_R_TYPE (rel->r_info))
{
/*if offset < 0x800, then perform the new le instruction
sequence relax. */
case R_LARCH_TLS_LE_HI20_R:
case R_LARCH_TLS_LE_ADD_R:
/* delete insn. */
if (symval < 0x800)
{
rel->r_info = ELFNN_R_INFO (0, R_LARCH_NONE);
loongarch_relax_delete_bytes (abfd, sec, rel->r_offset,
4, link_info);
}
break;
case R_LARCH_TLS_LE_LO12_R:
if (symval < 0x800)
{
/* Change rj to $tp. */
insn_rj = 0x2 << 5;
/* Get rd register. */
insn_rd = LARCH_GET_RD (insn);
/* Write symbol offset. */
symval <<= 10;
/* Writes the modified instruction. */
insn = insn & LARCH_MK_ADDI_D;
insn = insn | symval | insn_rj | insn_rd;
bfd_put (32, abfd, insn, contents + rel->r_offset);
}
break;
case R_LARCH_TLS_LE_HI20:
case R_LARCH_TLS_LE64_LO20:
case R_LARCH_TLS_LE64_HI12:
rel->r_info = ELFNN_R_INFO (0, R_LARCH_NONE);
loongarch_relax_delete_bytes (abfd, sec, rel->r_offset,
4, link_info);
break;
case R_LARCH_TLS_LE_LO12:
bfd_put (32, abfd, LARCH_OP_ORI | LARCH_GET_RD (insn),
contents + rel->r_offset);
break;
default:
break;
}
}
return true;
}
/* Whether two sections in the same segment. */
static bool
loongarch_two_sections_in_same_segment (bfd *abfd, asection *a, asection *b)
{
struct elf_segment_map *m;
for (m = elf_seg_map (abfd); m != NULL; m = m->next)
{
int i;
int j = 0;
for (i = m->count - 1; i >= 0; i--)
{
if (m->sections[i] == a)
j++;
if (m->sections[i] == b)
j++;
}
if (1 == j)
return false;
if (2 == j)
return true;
}
return false;
}
/* Relax pcalau12i,addi.d => pcaddi. */
static bool
loongarch_relax_pcala_addi (bfd *abfd, asection *sec, asection *sym_sec,
Elf_Internal_Rela *rel_hi, bfd_vma symval,
struct bfd_link_info *info, bool *again,
bfd_vma max_alignment)
{
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
Elf_Internal_Rela *rel_lo = rel_hi + 2;
uint32_t pca = bfd_get (32, abfd, contents + rel_hi->r_offset);
uint32_t add = bfd_get (32, abfd, contents + rel_lo->r_offset);
uint32_t rd = LARCH_GET_RD (pca);
/* This section's output_offset need to subtract the bytes of instructions
relaxed by the previous sections, so it needs to be updated beforehand.
size_input_section already took care of updating it after relaxation,
so we additionally update once here. */
sec->output_offset = sec->output_section->size;
bfd_vma pc = sec_addr (sec) + rel_hi->r_offset;
/* If pc and symbol not in the same segment, add/sub segment alignment. */
if (!loongarch_two_sections_in_same_segment (info->output_bfd,
sec->output_section,
sym_sec->output_section))
max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize
: max_alignment;
if (symval > pc)
pc -= (max_alignment > 4 ? max_alignment : 0);
else if (symval < pc)
pc += (max_alignment > 4 ? max_alignment : 0);
const uint32_t pcaddi = LARCH_OP_PCADDI;
/* Is pcalau12i + addi.d insns? */
if ((ELFNN_R_TYPE (rel_lo->r_info) != R_LARCH_PCALA_LO12)
|| !LARCH_INSN_ADDI_D (add)
/* Is pcalau12i $rd + addi.d $rd,$rd? */
|| (LARCH_GET_RD (add) != rd)
|| (LARCH_GET_RJ (add) != rd)
/* Can be relaxed to pcaddi? */
|| (symval & 0x3) /* 4 bytes align. */
|| ((bfd_signed_vma)(symval - pc) < (bfd_signed_vma)(int32_t)0xffe00000)
|| ((bfd_signed_vma)(symval - pc) > (bfd_signed_vma)(int32_t)0x1ffffc))
return false;
/* Continue next relax trip. */
*again = true;
pca = pcaddi | rd;
bfd_put (32, abfd, pca, contents + rel_hi->r_offset);
/* Adjust relocations. */
rel_hi->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel_hi->r_info),
R_LARCH_PCREL20_S2);
rel_lo->r_info = ELFNN_R_INFO (0, R_LARCH_NONE);
loongarch_relax_delete_bytes (abfd, sec, rel_lo->r_offset, 4, info);
return true;
}
/* call36 f -> bl f
tail36 $t0, f -> b f. */
static bool
loongarch_relax_call36 (bfd *abfd, asection *sec, asection *sym_sec,
Elf_Internal_Rela *rel, bfd_vma symval,
struct bfd_link_info *info, bool *again,
bfd_vma max_alignment)
{
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
uint32_t jirl = bfd_get (32, abfd, contents + rel->r_offset + 4);
uint32_t rd = LARCH_GET_RD (jirl);
/* This section's output_offset need to subtract the bytes of instructions
relaxed by the previous sections, so it needs to be updated beforehand.
size_input_section already took care of updating it after relaxation,
so we additionally update once here. */
sec->output_offset = sec->output_section->size;
bfd_vma pc = sec_addr (sec) + rel->r_offset;
/* If pc and symbol not in the same segment, add/sub segment alignment. */
if (!loongarch_two_sections_in_same_segment (info->output_bfd,
sec->output_section,
sym_sec->output_section))
max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize
: max_alignment;
if (symval > pc)
pc -= (max_alignment > 4 ? max_alignment : 0);
else if (symval < pc)
pc += (max_alignment > 4 ? max_alignment : 0);
/* Is pcalau12i + addi.d insns? */
if (!LARCH_INSN_JIRL (jirl)
|| ((bfd_signed_vma)(symval - pc) < (bfd_signed_vma)(int32_t)0xf8000000)
|| ((bfd_signed_vma)(symval - pc) > (bfd_signed_vma)(int32_t)0x7fffffc))
return false;
/* Continue next relax trip. */
*again = true;
const uint32_t bl = LARCH_OP_BL;
const uint32_t b = LARCH_OP_B;
if (rd)
bfd_put (32, abfd, bl, contents + rel->r_offset);
else
bfd_put (32, abfd, b, contents + rel->r_offset);
/* Adjust relocations. */
rel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info), R_LARCH_B26);
/* Delete jirl instruction. */
loongarch_relax_delete_bytes (abfd, sec, rel->r_offset + 4, 4, info);
return true;
}
/* Relax pcalau12i,ld.d => pcalau12i,addi.d. */
static bool
loongarch_relax_pcala_ld (bfd *abfd, asection *sec,
asection *sym_sec,
Elf_Internal_Rela *rel_hi,
bfd_vma symval,
struct bfd_link_info *info,
bool *again ATTRIBUTE_UNUSED,
bfd_vma max_alignment)
{
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
Elf_Internal_Rela *rel_lo = rel_hi + 2;
uint32_t pca = bfd_get (32, abfd, contents + rel_hi->r_offset);
uint32_t ld = bfd_get (32, abfd, contents + rel_lo->r_offset);
uint32_t rd = LARCH_GET_RD (pca);
uint32_t addi_d = LARCH_OP_ADDI_D;
/* This section's output_offset need to subtract the bytes of instructions
relaxed by the previous sections, so it needs to be updated beforehand.
size_input_section already took care of updating it after relaxation,
so we additionally update once here. */
sec->output_offset = sec->output_section->size;
bfd_vma pc = sec_addr (sec) + rel_hi->r_offset;
/* If pc and symbol not in the same segment, add/sub segment alignment. */
if (!loongarch_two_sections_in_same_segment (info->output_bfd,
sec->output_section,
sym_sec->output_section))
max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize
: max_alignment;
if (symval > pc)
pc -= (max_alignment > 4 ? max_alignment : 0);
else if (symval < pc)
pc += (max_alignment > 4 ? max_alignment : 0);
if ((ELFNN_R_TYPE (rel_lo->r_info) != R_LARCH_GOT_PC_LO12)
|| (LARCH_GET_RD (ld) != rd)
|| (LARCH_GET_RJ (ld) != rd)
|| !LARCH_INSN_LD_D (ld)
/* Within +-2G addressing range. */
|| (bfd_signed_vma)(symval - pc) < (bfd_signed_vma)(int32_t)0x80000000
|| (bfd_signed_vma)(symval - pc) > (bfd_signed_vma)(int32_t)0x7fffffff)
return false;
addi_d = addi_d | (rd << 5) | rd;
bfd_put (32, abfd, addi_d, contents + rel_lo->r_offset);
rel_hi->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel_hi->r_info),
R_LARCH_PCALA_HI20);
rel_lo->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel_lo->r_info),
R_LARCH_PCALA_LO12);
return true;
}
/* Called by after_allocation to set the information of data segment
before relaxing. */
void
bfd_elfNN_loongarch_set_data_segment_info (struct bfd_link_info *info,
int *data_segment_phase)
{
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
htab->data_segment_phase = data_segment_phase;
}
/* Implement R_LARCH_ALIGN by deleting excess alignment NOPs.
Once we've handled an R_LARCH_ALIGN, we can't relax anything else. */
static bool
loongarch_relax_align (bfd *abfd, asection *sec, asection *sym_sec,
Elf_Internal_Rela *rel,
bfd_vma symval ATTRIBUTE_UNUSED,
struct bfd_link_info *link_info,
bool *again ATTRIBUTE_UNUSED,
bfd_vma max_alignment ATTRIBUTE_UNUSED)
{
bfd_vma addend, max = 0, alignment = 1;
int sym_index = ELFNN_R_SYM (rel->r_info);
if (sym_index > 0)
{
alignment = 1 << (rel->r_addend & 0xff);
max = rel->r_addend >> 8;
}
else
alignment = rel->r_addend + 4;
addend = alignment - 4; /* The bytes of NOPs added by R_LARCH_ALIGN. */
symval -= addend; /* The address of first NOP added by R_LARCH_ALIGN. */
bfd_vma aligned_addr = ((symval - 1) & ~(alignment - 1)) + alignment;
bfd_vma need_nop_bytes = aligned_addr - symval; /* */
/* Make sure there are enough NOPs to actually achieve the alignment. */
if (addend < need_nop_bytes)
{
_bfd_error_handler
(_("%pB(%pA+%#" PRIx64 "): %" PRId64 " bytes required for alignment "
"to %" PRId64 "-byte boundary, but only %" PRId64 " present"),
abfd, sym_sec, (uint64_t) rel->r_offset,
(int64_t) need_nop_bytes, (int64_t) alignment, (int64_t) addend);
bfd_set_error (bfd_error_bad_value);
return false;
}
/* Once we've handled an R_LARCH_ALIGN in a section,
we can't relax anything else in this section. */
sec->sec_flg0 = true;
rel->r_info = ELFNN_R_INFO (0, R_LARCH_NONE);
/* If skipping more bytes than the specified maximum,
then the alignment is not done at all and delete all NOPs. */
if (max > 0 && need_nop_bytes > max)
return loongarch_relax_delete_bytes (abfd, sec, rel->r_offset,
addend, link_info);
/* If the number of NOPs is already correct, there's nothing to do. */
if (need_nop_bytes == addend)
return true;
/* Delete the excess NOPs. */
return loongarch_relax_delete_bytes (abfd, sec,
rel->r_offset + need_nop_bytes,
addend - need_nop_bytes, link_info);
}
/* Relax pcalau12i + addi.d of TLS LD/GD/DESC to pcaddi. */
static bool
loongarch_relax_tls_ld_gd_desc (bfd *abfd, asection *sec, asection *sym_sec,
Elf_Internal_Rela *rel_hi, bfd_vma symval,
struct bfd_link_info *info, bool *again,
bfd_vma max_alignment)
{
bfd_byte *contents = elf_section_data (sec)->this_hdr.contents;
Elf_Internal_Rela *rel_lo = rel_hi + 2;
uint32_t pca = bfd_get (32, abfd, contents + rel_hi->r_offset);
uint32_t add = bfd_get (32, abfd, contents + rel_lo->r_offset);
uint32_t rd = LARCH_GET_RD (pca);
/* This section's output_offset need to subtract the bytes of instructions
relaxed by the previous sections, so it needs to be updated beforehand.
size_input_section already took care of updating it after relaxation,
so we additionally update once here. */
sec->output_offset = sec->output_section->size;
bfd_vma pc = sec_addr (sec) + rel_hi->r_offset;
/* If pc and symbol not in the same segment, add/sub segment alignment. */
if (!loongarch_two_sections_in_same_segment (info->output_bfd,
sec->output_section,
sym_sec->output_section))
max_alignment = info->maxpagesize > max_alignment ? info->maxpagesize
: max_alignment;
if (symval > pc)
pc -= (max_alignment > 4 ? max_alignment : 0);
else if (symval < pc)
pc += (max_alignment > 4 ? max_alignment : 0);
const uint32_t pcaddi = LARCH_OP_PCADDI;
/* Is pcalau12i + addi.d insns? */
if ((ELFNN_R_TYPE (rel_lo->r_info) != R_LARCH_GOT_PC_LO12
&& ELFNN_R_TYPE (rel_lo->r_info) != R_LARCH_TLS_DESC_PC_LO12)
|| !LARCH_INSN_ADDI_D (add)
/* Is pcalau12i $rd + addi.d $rd,$rd? */
|| (LARCH_GET_RD (add) != rd)
|| (LARCH_GET_RJ (add) != rd)
/* Can be relaxed to pcaddi? */
|| (symval & 0x3) /* 4 bytes align. */
|| ((bfd_signed_vma)(symval - pc) < (bfd_signed_vma)(int32_t)0xffe00000)
|| ((bfd_signed_vma)(symval - pc) > (bfd_signed_vma)(int32_t)0x1ffffc))
return false;
/* Continue next relax trip. */
*again = true;
pca = pcaddi | rd;
bfd_put (32, abfd, pca, contents + rel_hi->r_offset);
/* Adjust relocations. */
switch (ELFNN_R_TYPE (rel_hi->r_info))
{
case R_LARCH_TLS_LD_PC_HI20:
rel_hi->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel_hi->r_info),
R_LARCH_TLS_LD_PCREL20_S2);
break;
case R_LARCH_TLS_GD_PC_HI20:
rel_hi->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel_hi->r_info),
R_LARCH_TLS_GD_PCREL20_S2);
break;
case R_LARCH_TLS_DESC_PC_HI20:
rel_hi->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel_hi->r_info),
R_LARCH_TLS_DESC_PCREL20_S2);
break;
default:
break;
}
rel_lo->r_info = ELFNN_R_INFO (0, R_LARCH_NONE);
loongarch_relax_delete_bytes (abfd, sec, rel_lo->r_offset, 4, info);
return true;
}
/* Traverse all output sections and return the max alignment. */
static bfd_vma
loongarch_get_max_alignment (asection *sec)
{
asection *o;
unsigned int max_alignment_power = 0;
for (o = sec->output_section->owner->sections; o != NULL; o = o->next)
if (o->alignment_power > max_alignment_power)
max_alignment_power = o->alignment_power;
return (bfd_vma) 1 << max_alignment_power;
}
typedef bool (*relax_func_t) (bfd *, asection *, asection *,
Elf_Internal_Rela *, bfd_vma,
struct bfd_link_info *, bool *,
bfd_vma);
static bool
loongarch_elf_relax_section (bfd *abfd, asection *sec,
struct bfd_link_info *info,
bool *again)
{
*again = false;
if (!is_elf_hash_table (info->hash)
|| elf_hash_table_id (elf_hash_table (info)) != LARCH_ELF_DATA)
return true;
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
/* It may happen that some sections have updated vma but the others do
not. Go to the next relax trip (size_relative_relocs should have
been demending another relax trip anyway). */
if (htab->layout_mutating_for_relr)
return true;
if (bfd_link_relocatable (info)
|| sec->sec_flg0
|| sec->reloc_count == 0
|| (sec->flags & SEC_RELOC) == 0
|| (sec->flags & SEC_HAS_CONTENTS) == 0
/* The exp_seg_relro_adjust is enum phase_enum (0x4). */
|| *(htab->data_segment_phase) == 4
|| (info->disable_target_specific_optimizations
&& info->relax_pass == 0))
return true;
struct bfd_elf_section_data *data = elf_section_data (sec);
Elf_Internal_Rela *relocs;
if (data->relocs)
relocs = data->relocs;
else if (!(relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
info->keep_memory)))
return true;
data->relocs = relocs;
/* Read this BFD's contents if we haven't done so already. */
if (!data->this_hdr.contents
&& !bfd_malloc_and_get_section (abfd, sec, &data->this_hdr.contents))
return true;
/* Read this BFD's symbols if we haven't done so already. */
Elf_Internal_Shdr *symtab_hdr = &elf_symtab_hdr (abfd);
if (symtab_hdr->sh_info != 0
&& !symtab_hdr->contents
&& !(symtab_hdr->contents =
(unsigned char *) bfd_elf_get_elf_syms (abfd, symtab_hdr,
symtab_hdr->sh_info,
0, NULL, NULL, NULL)))
return true;
/* Estimate the maximum alignment for all output sections once time
should be enough. */
bfd_vma max_alignment = htab->max_alignment;
if (max_alignment == (bfd_vma) -1)
{
max_alignment = loongarch_get_max_alignment (sec);
htab->max_alignment = max_alignment;
}
for (unsigned int i = 0; i < sec->reloc_count; i++)
{
char symtype;
bfd_vma symval;
asection *sym_sec;
bool local_got = false;
Elf_Internal_Rela *rel = relocs + i;
struct elf_link_hash_entry *h = NULL;
unsigned long r_type = ELFNN_R_TYPE (rel->r_info);
unsigned long r_symndx = ELFNN_R_SYM (rel->r_info);
if (r_symndx >= symtab_hdr->sh_info)
{
h = elf_sym_hashes (abfd)[r_symndx - symtab_hdr->sh_info];
while (h->root.type == bfd_link_hash_indirect
|| h->root.type == bfd_link_hash_warning)
h = (struct elf_link_hash_entry *) h->root.u.i.link;
}
/* If the conditions for tls type transition are met, type
transition is performed instead of relax.
During the transition from DESC->IE/LE, there are 2 situations
depending on the different configurations of the relax/norelax
option.
If the -relax option is used, the extra nops will be removed,
and this transition is performed in pass 0.
If the --no-relax option is used, nop will be retained, and
this transition is performed in pass 1. */
if (IS_LOONGARCH_TLS_TRANS_RELOC (r_type)
&& (i + 1 != sec->reloc_count)
&& ELFNN_R_TYPE (rel[1].r_info) == R_LARCH_RELAX
&& rel->r_offset == rel[1].r_offset
&& loongarch_can_trans_tls (abfd, info, h, r_symndx, r_type))
{
loongarch_tls_perform_trans (abfd, sec, rel, h, info);
r_type = ELFNN_R_TYPE (rel->r_info);
}
relax_func_t relax_func = NULL;
if (info->relax_pass == 0)
{
switch (r_type)
{
case R_LARCH_PCALA_HI20:
relax_func = loongarch_relax_pcala_addi;
break;
case R_LARCH_GOT_PC_HI20:
relax_func = loongarch_relax_pcala_ld;
break;
case R_LARCH_CALL36:
relax_func = loongarch_relax_call36;
break;
case R_LARCH_TLS_LE_HI20_R:
case R_LARCH_TLS_LE_LO12_R:
case R_LARCH_TLS_LE_ADD_R:
case R_LARCH_TLS_LE_HI20:
case R_LARCH_TLS_LE_LO12:
case R_LARCH_TLS_LE64_LO20:
case R_LARCH_TLS_LE64_HI12:
relax_func = loongarch_relax_tls_le;
break;
case R_LARCH_TLS_LD_PC_HI20:
case R_LARCH_TLS_GD_PC_HI20:
case R_LARCH_TLS_DESC_PC_HI20:
relax_func = loongarch_relax_tls_ld_gd_desc;
break;
default:
continue;
}
/* Only relax this reloc if it is paired with R_RISCV_RELAX. */
if (r_type == R_LARCH_TLS_LD_PC_HI20
|| r_type == R_LARCH_TLS_GD_PC_HI20
|| r_type == R_LARCH_TLS_DESC_PC_HI20
|| r_type == R_LARCH_PCALA_HI20
|| r_type == R_LARCH_GOT_PC_HI20)
{
if ((i + 2) == sec->reloc_count - 1
|| ELFNN_R_TYPE ((rel + 1)->r_info) != R_LARCH_RELAX
|| ELFNN_R_TYPE ((rel + 3)->r_info) != R_LARCH_RELAX
|| rel->r_offset != (rel + 1)->r_offset
|| (rel + 2)->r_offset != (rel + 3)->r_offset
|| rel->r_offset + 4 != (rel + 2)->r_offset)
continue;
}
else
{
if (i == sec->reloc_count - 1
|| ELFNN_R_TYPE ((rel + 1)->r_info) != R_LARCH_RELAX
|| rel->r_offset != (rel + 1)->r_offset)
continue;
}
}
else if (info->relax_pass == 1 && r_type == R_LARCH_ALIGN)
relax_func = loongarch_relax_align;
else
continue;
/* Four kind of relocations:
Normal: symval is the symbol address.
R_LARCH_ALIGN: symval is the address of the last NOP instruction
added by this relocation, and then adds 4 more.
R_LARCH_CALL36: symval is the symbol address for local symbols,
or the PLT entry address of the symbol. (Todo)
R_LARCHL_TLS_LD/GD/DESC_PC_HI20: symval is the GOT entry address
of the symbol if transition is not possible. */
if (r_symndx < symtab_hdr->sh_info)
{
Elf_Internal_Sym *sym = (Elf_Internal_Sym *)symtab_hdr->contents
+ r_symndx;
if ((ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC
&& r_type != R_LARCH_CALL36)
|| sym->st_shndx == SHN_ABS)
continue;
/* Only TLS instruction sequences that are accompanied by
R_LARCH_RELAX and cannot perform type transition can be
relaxed. */
if (r_type == R_LARCH_TLS_LD_PC_HI20
|| r_type == R_LARCH_TLS_GD_PC_HI20
|| r_type == R_LARCH_TLS_DESC_PC_HI20)
{
sym_sec = htab->elf.sgot;
symval = elf_local_got_offsets (abfd)[r_symndx];
char tls_type = _bfd_loongarch_elf_tls_type (abfd, h,
r_symndx);
if (r_type == R_LARCH_TLS_DESC_PC_HI20
&& GOT_TLS_GD_BOTH_P (tls_type))
symval += 2 * GOT_ENTRY_SIZE;
}
else if (sym->st_shndx == SHN_UNDEF || r_type == R_LARCH_ALIGN)
{
sym_sec = sec;
symval = rel->r_offset;
}
else
{
sym_sec = elf_elfsections (abfd)[sym->st_shndx]->bfd_section;
symval = sym->st_value;
}
symtype = ELF_ST_TYPE (sym->st_info);
}
else
{
if (h != NULL
&& ((h->type == STT_GNU_IFUNC
&& r_type != R_LARCH_CALL36)
|| bfd_is_abs_section (h->root.u.def.section)))
continue;
/* The GOT entry of tls symbols must in current execute file or
shared object. */
if (r_type == R_LARCH_TLS_LD_PC_HI20
|| r_type == R_LARCH_TLS_GD_PC_HI20
|| r_type == R_LARCH_TLS_DESC_PC_HI20)
{
sym_sec = htab->elf.sgot;
symval = h->got.offset;
char tls_type = _bfd_loongarch_elf_tls_type (abfd, h,
r_symndx);
if (r_type == R_LARCH_TLS_DESC_PC_HI20
&& GOT_TLS_GD_BOTH_P (tls_type))
symval += 2 * GOT_ENTRY_SIZE;
}
else if (h->plt.offset != MINUS_ONE)
{
sym_sec = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
symval = h->plt.offset;
}
/* Like loongarch_elf_relocate_section, set relocation(offset) to 0.
Undefweak for other relocations handing in the future. */
else if (h->root.type == bfd_link_hash_undefweak
&& !h->root.linker_def
&& r_type == R_LARCH_CALL36)
{
sym_sec = sec;
symval = rel->r_offset;
}
else if ((h->root.type == bfd_link_hash_defined
|| h->root.type == bfd_link_hash_defweak)
&& h->root.u.def.section != NULL
&& h->root.u.def.section->output_section != NULL)
{
sym_sec = h->root.u.def.section;
symval = h->root.u.def.value;
}
else
continue;
if (h && LARCH_REF_LOCAL (info, h))
local_got = true;
symtype = h->type;
}
if (sym_sec->sec_info_type == SEC_INFO_TYPE_MERGE
&& (sym_sec->flags & SEC_MERGE))
{
if (symtype == STT_SECTION)
symval += rel->r_addend;
symval = _bfd_merged_section_offset (abfd, &sym_sec,
elf_section_data (sym_sec)->sec_info,
symval);
if (symtype != STT_SECTION)
symval += rel->r_addend;
}
/* For R_LARCH_ALIGN, symval is sec_addr (sec) + rel->r_offset
+ (alingmeng - 4).
If r_symndx is 0, alignmeng-4 is r_addend.
If r_symndx > 0, alignment-4 is 2^(r_addend & 0xff)-4. */
else if (r_type == R_LARCH_ALIGN)
if (r_symndx > 0)
symval += ((1 << (rel->r_addend & 0xff)) - 4);
else
symval += rel->r_addend;
else
symval += rel->r_addend;
symval += sec_addr (sym_sec);
if (r_type == R_LARCH_GOT_PC_HI20 && !local_got)
continue;
if (relax_func (abfd, sec, sym_sec, rel, symval,
info, again, max_alignment)
&& relax_func == loongarch_relax_pcala_ld)
loongarch_relax_pcala_addi (abfd, sec, sym_sec, rel, symval,
info, again, max_alignment);
}
return true;
}
/* Finish up dynamic symbol handling. We set the contents of various
dynamic sections here. */
static bool
loongarch_elf_finish_dynamic_symbol (bfd *output_bfd,
struct bfd_link_info *info,
struct elf_link_hash_entry *h,
Elf_Internal_Sym *sym)
{
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
if (h->plt.offset != MINUS_ONE)
{
size_t i, plt_idx;
asection *plt, *gotplt, *relplt;
bfd_vma got_address;
uint32_t plt_entry[PLT_ENTRY_INSNS];
bfd_byte *loc;
Elf_Internal_Rela rela;
if (htab->elf.splt)
{
BFD_ASSERT ((h->type == STT_GNU_IFUNC
&& LARCH_REF_LOCAL (info, h))
|| h->dynindx != -1);
plt = htab->elf.splt;
gotplt = htab->elf.sgotplt;
if (h->type == STT_GNU_IFUNC && LARCH_REF_LOCAL (info, h))
relplt = htab->elf.srelgot;
else
relplt = htab->elf.srelplt;
plt_idx = (h->plt.offset - PLT_HEADER_SIZE) / PLT_ENTRY_SIZE;
got_address =
sec_addr (gotplt) + GOTPLT_HEADER_SIZE + plt_idx * GOT_ENTRY_SIZE;
}
else /* if (htab->elf.iplt) */
{
BFD_ASSERT (h->type == STT_GNU_IFUNC
&& LARCH_REF_LOCAL (info, h));
plt = htab->elf.iplt;
gotplt = htab->elf.igotplt;
relplt = htab->elf.irelplt;
plt_idx = h->plt.offset / PLT_ENTRY_SIZE;
got_address = sec_addr (gotplt) + plt_idx * GOT_ENTRY_SIZE;
}
/* Find out where the .plt entry should go. */
loc = plt->contents + h->plt.offset;
/* Fill in the PLT entry itself. */
if (!loongarch_make_plt_entry (got_address,
sec_addr (plt) + h->plt.offset,
plt_entry))
return false;
for (i = 0; i < PLT_ENTRY_INSNS; i++)
bfd_put_32 (output_bfd, plt_entry[i], loc + 4 * i);
/* Fill in the initial value of the got.plt entry. */
loc = gotplt->contents + (got_address - sec_addr (gotplt));
bfd_put_NN (output_bfd, sec_addr (plt), loc);
rela.r_offset = got_address;
/* TRUE if this is a PLT reference to a local IFUNC. */
if (PLT_LOCAL_IFUNC_P (info, h)
&& (relplt == htab->elf.srelgot
|| relplt == htab->elf.irelplt))
{
rela.r_info = ELFNN_R_INFO (0, R_LARCH_IRELATIVE);
rela.r_addend = (h->root.u.def.value
+ h->root.u.def.section->output_section->vma
+ h->root.u.def.section->output_offset);
loongarch_elf_append_rela (output_bfd, relplt, &rela);
}
else
{
/* Fill in the entry in the rela.plt section. */
rela.r_info = ELFNN_R_INFO (h->dynindx, R_LARCH_JUMP_SLOT);
rela.r_addend = 0;
loc = relplt->contents + plt_idx * sizeof (ElfNN_External_Rela);
bed->s->swap_reloca_out (output_bfd, &rela, loc);
}
if (!h->def_regular)
{
/* Mark the symbol as undefined, rather than as defined in
the .plt section. Leave the value alone. */
sym->st_shndx = SHN_UNDEF;
/* If the symbol is weak, we do need to clear the value.
Otherwise, the PLT entry would provide a definition for
the symbol even if the symbol wasn't defined anywhere,
and so the symbol would never be NULL. */
if (!h->ref_regular_nonweak)
sym->st_value = 0;
}
}
if (h->got.offset != MINUS_ONE
/* TLS got entry have been handled in elf_relocate_section. */
&& !(loongarch_elf_hash_entry (h)->tls_type
& (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC))
/* Have allocated got entry but not allocated rela before. */
&& !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
{
asection *sgot, *srela;
Elf_Internal_Rela rela;
bfd_vma off = h->got.offset & ~(bfd_vma)1;
/* This symbol has an entry in the GOT. Set it up. */
sgot = htab->elf.sgot;
srela = htab->elf.srelgot;
BFD_ASSERT (sgot && srela);
rela.r_offset = sec_addr (sgot) + off;
if (h->def_regular
&& h->type == STT_GNU_IFUNC)
{
if(h->plt.offset == MINUS_ONE)
{
if (htab->elf.splt == NULL)
srela = htab->elf.irelplt;
if (LARCH_REF_LOCAL (info, h))
{
asection *sec = h->root.u.def.section;
rela.r_info = ELFNN_R_INFO (0, R_LARCH_IRELATIVE);
rela.r_addend = h->root.u.def.value + sec->output_section->vma
+ sec->output_offset;
bfd_put_NN (output_bfd, 0, sgot->contents + off);
}
else
{
BFD_ASSERT (h->dynindx != -1);
rela.r_info = ELFNN_R_INFO (h->dynindx, R_LARCH_NN);
rela.r_addend = 0;
bfd_put_NN (output_bfd, (bfd_vma) 0, sgot->contents + off);
}
}
else if(bfd_link_pic (info))
{
rela.r_info = ELFNN_R_INFO (h->dynindx, R_LARCH_NN);
rela.r_addend = 0;
bfd_put_NN (output_bfd, rela.r_addend, sgot->contents + off);
}
else
{
asection *plt;
/* For non-shared object, we can't use .got.plt, which
contains the real function address if we need pointer
equality. We load the GOT entry with the PLT entry. */
plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
bfd_put_NN (output_bfd,
(plt->output_section->vma
+ plt->output_offset
+ h->plt.offset),
sgot->contents + off);
return true;
}
}
else if (bfd_link_pic (info) && LARCH_REF_LOCAL (info, h))
{
asection *sec = h->root.u.def.section;
bfd_vma linkaddr = h->root.u.def.value + sec->output_section->vma
+ sec->output_offset;
/* Don't emit relative relocs if they are packed, but we need
to write the addend (link-time addr) into the GOT then. */
if (info->enable_dt_relr)
{
bfd_put_NN (output_bfd, linkaddr, sgot->contents + off);
goto skip_got_reloc;
}
rela.r_info = ELFNN_R_INFO (0, R_LARCH_RELATIVE);
rela.r_addend = linkaddr;
}
else
{
BFD_ASSERT (h->dynindx != -1);
rela.r_info = ELFNN_R_INFO (h->dynindx, R_LARCH_NN);
rela.r_addend = 0;
}
loongarch_elf_append_rela (output_bfd, srela, &rela);
}
skip_got_reloc:
/* Mark some specially defined symbols as absolute. */
if (h == htab->elf.hdynamic || h == htab->elf.hgot || h == htab->elf.hplt)
sym->st_shndx = SHN_ABS;
return true;
}
/* Finish up the dynamic sections. */
static bool
loongarch_finish_dyn (bfd *output_bfd, struct bfd_link_info *info, bfd *dynobj,
asection *sdyn)
{
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
const struct elf_backend_data *bed = get_elf_backend_data (output_bfd);
size_t dynsize = bed->s->sizeof_dyn, skipped_size = 0;
bfd_byte *dyncon, *dynconend;
dynconend = sdyn->contents + sdyn->size;
for (dyncon = sdyn->contents; dyncon < dynconend; dyncon += dynsize)
{
Elf_Internal_Dyn dyn;
asection *s;
int skipped = 0;
bed->s->swap_dyn_in (dynobj, dyncon, &dyn);
switch (dyn.d_tag)
{
case DT_PLTGOT:
s = htab->elf.sgotplt;
dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
break;
case DT_JMPREL:
s = htab->elf.srelplt;
dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
break;
case DT_PLTRELSZ:
s = htab->elf.srelplt;
dyn.d_un.d_val = s->size;
break;
case DT_TEXTREL:
if ((info->flags & DF_TEXTREL) == 0)
skipped = 1;
break;
case DT_FLAGS:
if ((info->flags & DF_TEXTREL) == 0)
dyn.d_un.d_val &= ~DF_TEXTREL;
break;
}
if (skipped)
skipped_size += dynsize;
else
bed->s->swap_dyn_out (output_bfd, &dyn, dyncon - skipped_size);
}
/* Wipe out any trailing entries if we shifted down a dynamic tag. */
memset (dyncon - skipped_size, 0, skipped_size);
return true;
}
/* Finish up local dynamic symbol handling. We set the contents of
various dynamic sections here. */
static int
elfNN_loongarch_finish_local_dynamic_symbol (void **slot, void *inf)
{
struct elf_link_hash_entry *h = (struct elf_link_hash_entry *) *slot;
struct bfd_link_info *info = (struct bfd_link_info *) inf;
return loongarch_elf_finish_dynamic_symbol (info->output_bfd, info, h, NULL);
}
/* Value of struct elf_backend_data->elf_backend_output_arch_local_syms,
this function is called before elf_link_sort_relocs.
So relocation R_LARCH_IRELATIVE for local ifunc can be append to
.rela.dyn (.rela.got) by loongarch_elf_append_rela. */
static bool
elf_loongarch_output_arch_local_syms
(bfd *output_bfd ATTRIBUTE_UNUSED,
struct bfd_link_info *info,
void *flaginfo ATTRIBUTE_UNUSED,
int (*func) (void *, const char *,
Elf_Internal_Sym *,
asection *,
struct elf_link_hash_entry *) ATTRIBUTE_UNUSED)
{
struct loongarch_elf_link_hash_table *htab = loongarch_elf_hash_table (info);
if (htab == NULL)
return false;
/* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
htab_traverse (htab->loc_hash_table,
elfNN_loongarch_finish_local_dynamic_symbol,
info);
return true;
}
static bool
loongarch_elf_finish_dynamic_sections (bfd *output_bfd,
struct bfd_link_info *info)
{
bfd *dynobj;
asection *sdyn, *plt, *gotplt = NULL;
struct loongarch_elf_link_hash_table *htab;
htab = loongarch_elf_hash_table (info);
BFD_ASSERT (htab);
dynobj = htab->elf.dynobj;
sdyn = bfd_get_linker_section (dynobj, ".dynamic");
if (elf_hash_table (info)->dynamic_sections_created)
{
BFD_ASSERT (htab->elf.splt && sdyn);
if (!loongarch_finish_dyn (output_bfd, info, dynobj, sdyn))
return false;
}
plt = htab->elf.splt;
gotplt = htab->elf.sgotplt;
if (plt && 0 < plt->size)
{
size_t i;
uint32_t plt_header[PLT_HEADER_INSNS];
if (!loongarch_make_plt_header (sec_addr (gotplt), sec_addr (plt),
plt_header))
return false;
for (i = 0; i < PLT_HEADER_INSNS; i++)
bfd_put_32 (output_bfd, plt_header[i], plt->contents + 4 * i);
elf_section_data (plt->output_section)->this_hdr.sh_entsize =
PLT_ENTRY_SIZE;
}
if (htab->elf.sgotplt)
{
asection *output_section = htab->elf.sgotplt->output_section;
if (bfd_is_abs_section (output_section))
{
_bfd_error_handler (_("discarded output section: `%pA'"),
htab->elf.sgotplt);
return false;
}
if (0 < htab->elf.sgotplt->size)
{
/* Write the first two entries in .got.plt, needed for the dynamic
linker. */
bfd_put_NN (output_bfd, MINUS_ONE, htab->elf.sgotplt->contents);
bfd_put_NN (output_bfd, (bfd_vma) 0,
htab->elf.sgotplt->contents + GOT_ENTRY_SIZE);
}
elf_section_data (output_section)->this_hdr.sh_entsize = GOT_ENTRY_SIZE;
}
if (htab->elf.sgot)
{
asection *output_section = htab->elf.sgot->output_section;
if (0 < htab->elf.sgot->size)
{
/* Set the first entry in the global offset table to the address of
the dynamic section. */
bfd_vma val = sdyn ? sec_addr (sdyn) : 0;
bfd_put_NN (output_bfd, val, htab->elf.sgot->contents);
}
elf_section_data (output_section)->this_hdr.sh_entsize = GOT_ENTRY_SIZE;
}
return true;
}
/* Return address for Ith PLT stub in section PLT, for relocation REL
or (bfd_vma) -1 if it should not be included. */
static bfd_vma
loongarch_elf_plt_sym_val (bfd_vma i, const asection *plt,
const arelent *rel ATTRIBUTE_UNUSED)
{
return plt->vma + PLT_HEADER_SIZE + i * PLT_ENTRY_SIZE;
}
static enum elf_reloc_type_class
loongarch_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
const asection *rel_sec ATTRIBUTE_UNUSED,
const Elf_Internal_Rela *rela)
{
struct loongarch_elf_link_hash_table *htab;
htab = loongarch_elf_hash_table (info);
if (htab->elf.dynsym != NULL && htab->elf.dynsym->contents != NULL)
{
/* Check relocation against STT_GNU_IFUNC symbol if there are
dynamic symbols. */
bfd *abfd = info->output_bfd;
const struct elf_backend_data *bed = get_elf_backend_data (abfd);
unsigned long r_symndx = ELFNN_R_SYM (rela->r_info);
if (r_symndx != STN_UNDEF)
{
Elf_Internal_Sym sym;
if (!bed->s->swap_symbol_in (abfd,
htab->elf.dynsym->contents
+ r_symndx * bed->s->sizeof_sym,
0, &sym))
{
/* xgettext:c-format */
_bfd_error_handler (_("%pB symbol number %lu references"
" nonexistent SHT_SYMTAB_SHNDX section"),
abfd, r_symndx);
/* Ideally an error class should be returned here. */
}
else if (ELF_ST_TYPE (sym.st_info) == STT_GNU_IFUNC)
return reloc_class_ifunc;
}
}
switch (ELFNN_R_TYPE (rela->r_info))
{
case R_LARCH_IRELATIVE:
return reloc_class_ifunc;
case R_LARCH_RELATIVE:
return reloc_class_relative;
case R_LARCH_JUMP_SLOT:
return reloc_class_plt;
case R_LARCH_COPY:
return reloc_class_copy;
default:
return reloc_class_normal;
}
}
/* Copy the extra info we tack onto an elf_link_hash_entry. */
static void
loongarch_elf_copy_indirect_symbol (struct bfd_link_info *info,
struct elf_link_hash_entry *dir,
struct elf_link_hash_entry *ind)
{
struct elf_link_hash_entry *edir, *eind;
edir = dir;
eind = ind;
if (eind->dyn_relocs != NULL)
{
if (edir->dyn_relocs != NULL)
{
struct elf_dyn_relocs **pp;
struct elf_dyn_relocs *p;
/* Add reloc counts against the indirect sym to the direct sym
list. Merge any entries against the same section. */
for (pp = &eind->dyn_relocs; (p = *pp) != NULL;)
{
struct elf_dyn_relocs *q;
for (q = edir->dyn_relocs; q != NULL; q = q->next)
if (q->sec == p->sec)
{
q->pc_count += p->pc_count;
q->count += p->count;
*pp = p->next;
break;
}
if (q == NULL)
pp = &p->next;
}
*pp = edir->dyn_relocs;
}
edir->dyn_relocs = eind->dyn_relocs;
eind->dyn_relocs = NULL;
}
if (ind->root.type == bfd_link_hash_indirect && dir->got.refcount < 0)
{
loongarch_elf_hash_entry(edir)->tls_type
= loongarch_elf_hash_entry(eind)->tls_type;
loongarch_elf_hash_entry(eind)->tls_type = GOT_UNKNOWN;
}
_bfd_elf_link_hash_copy_indirect (info, dir, ind);
}
#define PRSTATUS_SIZE 0x1d8
#define PRSTATUS_OFFSET_PR_CURSIG 0xc
#define PRSTATUS_OFFSET_PR_PID 0x20
#define ELF_GREGSET_T_SIZE 0x168
#define PRSTATUS_OFFSET_PR_REG 0x70
/* Support for core dump NOTE sections. */
static bool
loongarch_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
{
switch (note->descsz)
{
default:
return false;
/* The sizeof (struct elf_prstatus) on Linux/LoongArch. */
case PRSTATUS_SIZE:
/* pr_cursig */
elf_tdata (abfd)->core->signal =
bfd_get_16 (abfd, note->descdata + PRSTATUS_OFFSET_PR_CURSIG);
/* pr_pid */
elf_tdata (abfd)->core->lwpid =
bfd_get_32 (abfd, note->descdata + PRSTATUS_OFFSET_PR_PID);
break;
}
/* Make a ".reg/999" section. */
return _bfd_elfcore_make_pseudosection (abfd, ".reg", ELF_GREGSET_T_SIZE,
note->descpos
+ PRSTATUS_OFFSET_PR_REG);
}
#define PRPSINFO_SIZE 0x88
#define PRPSINFO_OFFSET_PR_PID 0x18
#define PRPSINFO_OFFSET_PR_FNAME 0x28
#define PRPSINFO_SIZEOF_PR_FNAME 0x10
#define PRPSINFO_OFFSET_PR_PS_ARGS 0x38
#define PRPSINFO_SIZEOF_PR_PS_ARGS 0x50
static bool
loongarch_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
{
switch (note->descsz)
{
default:
return false;
/* The sizeof (prpsinfo_t) on Linux/LoongArch. */
case PRPSINFO_SIZE:
/* pr_pid */
elf_tdata (abfd)->core->pid =
bfd_get_32 (abfd, note->descdata + PRPSINFO_OFFSET_PR_PID);
/* pr_fname */
elf_tdata (abfd)->core->program =
_bfd_elfcore_strndup (abfd, note->descdata + PRPSINFO_OFFSET_PR_FNAME,
PRPSINFO_SIZEOF_PR_FNAME);
/* pr_psargs */
elf_tdata (abfd)->core->command =
_bfd_elfcore_strndup (abfd, note->descdata + PRPSINFO_OFFSET_PR_PS_ARGS,
PRPSINFO_SIZEOF_PR_PS_ARGS);
break;
}
/* Note that for some reason, a spurious space is tacked
onto the end of the args in some (at least one anyway)
implementations, so strip it off if it exists. */
{
char *command = elf_tdata (abfd)->core->command;
int n = strlen (command);
if (0 < n && command[n - 1] == ' ')
command[n - 1] = '\0';
}
return true;
}
/* Set the right mach type. */
static bool
loongarch_elf_object_p (bfd *abfd)
{
/* There are only two mach types in LoongArch currently. */
if (strcmp (abfd->xvec->name, "elf64-loongarch") == 0)
bfd_default_set_arch_mach (abfd, bfd_arch_loongarch, bfd_mach_loongarch64);
else
bfd_default_set_arch_mach (abfd, bfd_arch_loongarch, bfd_mach_loongarch32);
return true;
}
static asection *
loongarch_elf_gc_mark_hook (asection *sec, struct bfd_link_info *info,
Elf_Internal_Rela *rel,
struct elf_link_hash_entry *h,
Elf_Internal_Sym *sym)
{
if (h != NULL)
switch (ELFNN_R_TYPE (rel->r_info))
{
case R_LARCH_GNU_VTINHERIT:
case R_LARCH_GNU_VTENTRY:
return NULL;
}
return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
}
/* Return TRUE if symbol H should be hashed in the `.gnu.hash' section. For
executable PLT slots where the executable never takes the address of those
functions, the function symbols are not added to the hash table. */
static bool
elf_loongarch64_hash_symbol (struct elf_link_hash_entry *h)
{
if (h->plt.offset != (bfd_vma) -1
&& !h->def_regular
&& !h->pointer_equality_needed)
return false;
return _bfd_elf_hash_symbol (h);
}
#define TARGET_LITTLE_SYM loongarch_elfNN_vec
#define TARGET_LITTLE_NAME "elfNN-loongarch"
#define ELF_ARCH bfd_arch_loongarch
#define ELF_TARGET_ID LARCH_ELF_DATA
#define ELF_MACHINE_CODE EM_LOONGARCH
#define ELF_MINPAGESIZE 0x1000
#define ELF_MAXPAGESIZE 0x10000
#define ELF_COMMONPAGESIZE 0x4000
#define bfd_elfNN_bfd_reloc_type_lookup loongarch_reloc_type_lookup
#define bfd_elfNN_bfd_link_hash_table_create \
loongarch_elf_link_hash_table_create
#define bfd_elfNN_bfd_reloc_name_lookup loongarch_reloc_name_lookup
#define elf_info_to_howto_rel NULL /* Fall through to elf_info_to_howto. */
#define elf_info_to_howto loongarch_info_to_howto_rela
#define bfd_elfNN_mkobject \
elfNN_loongarch_object
#define bfd_elfNN_bfd_merge_private_bfd_data \
elfNN_loongarch_merge_private_bfd_data
#define elf_backend_reloc_type_class loongarch_reloc_type_class
#define elf_backend_copy_indirect_symbol loongarch_elf_copy_indirect_symbol
#define elf_backend_create_dynamic_sections \
loongarch_elf_create_dynamic_sections
#define elf_backend_check_relocs loongarch_elf_check_relocs
#define elf_backend_adjust_dynamic_symbol loongarch_elf_adjust_dynamic_symbol
#define elf_backend_late_size_sections loongarch_elf_late_size_sections
#define elf_backend_relocate_section loongarch_elf_relocate_section
#define elf_backend_finish_dynamic_symbol loongarch_elf_finish_dynamic_symbol
#define elf_backend_output_arch_local_syms \
elf_loongarch_output_arch_local_syms
#define elf_backend_finish_dynamic_sections \
loongarch_elf_finish_dynamic_sections
#define elf_backend_object_p loongarch_elf_object_p
#define elf_backend_gc_mark_hook loongarch_elf_gc_mark_hook
#define elf_backend_plt_sym_val loongarch_elf_plt_sym_val
#define elf_backend_grok_prstatus loongarch_elf_grok_prstatus
#define elf_backend_grok_psinfo loongarch_elf_grok_psinfo
#define elf_backend_hash_symbol elf_loongarch64_hash_symbol
#define bfd_elfNN_bfd_relax_section loongarch_elf_relax_section
#define elf_backend_size_relative_relocs loongarch_elf_size_relative_relocs
#define elf_backend_finish_relative_relocs \
loongarch_elf_finish_relative_relocs
#define bfd_elfNN_new_section_hook loongarch_elf_new_section_hook
#define elf_backend_dtrel_excludes_plt 1
#include "elfNN-target.h"
|