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
|
2019-08-24 Bruno Haible <bruno@clisp.org>
Bump shared library version numbers.
* Makefile.in (LIBFFCALL_VERSION_INFO): Bump to 0:2:0.
* avcall/Makefile.in (LIBAVCALL_VERSION_INFO): Bump to 1:2:0.
* trampoline/Makefile.in (LIBTRAMPOLINE_VERSION_INFO): Likewise.
* callback/Makefile.in (LIBCALLBACK_VERSION_INFO): Likewise.
2019-08-24 Bruno Haible <bruno@clisp.org>
hppa: Add comments about structure arguments.
* avcall/avcall-hppa.c: Add comment.
* avcall/avcall-internal.h (__av_struct): Likewise.
* vacall/vacall-internal.h (__va_arg_struct): Likewise.
2019-08-24 Bruno Haible <bruno@clisp.org>
Add a test for by-value passing.
* testcases.c (v_clobber_K): New function.
* avcall/tests.c (by_value_tests): New function.
(main): Invoke it.
* vacall/tests.c (simulator, main): Test v_clobber_K.
* callback/tests.c (v_clobber_K_simulator): New function.
(main): Test it.
2019-08-24 Bruno Haible <bruno@clisp.org>
hppa: Implement correct floating-point argument passing on Linux.
* avcall/avcall.h (__AV_ALIST_WORDS): Add comment.
* avcall/avcall-alist.h (__av_alist) [__hppa__]: Add farg_mask,
darg_mask.
* avcall/avcall-internal.h (__av_start1) [__hppa__]: Initialize
farg_mask, darg_mask.
(_av_float) [__hppa__]: Set a bit in farg_mask.
(_av_double) [__hppa__]: Set a bit in darg_mask.
* avcall/avcall-hppa.c (avcall_call): Copy floating-point arguments
among the first 4 words to %fr4L...%fr7L and %fr5,%fr7.
* vacall/vacall-internal.h (_va_arg_float, _va_arg_double) [__hppa__]:
For floating-point arguments among the first 4 words, use the value
passed in floating-point registers.
* PLATFORMS, */PLATFORMS: List the Linux/hppa ABI.
* NEWS: Mention the new port.
2019-08-24 Bruno Haible <bruno@clisp.org>
hppa: Fix stack corruption in avcall.
* avcall/avcall-hppa.c (avcall_call): Don't let GCC optimize away the
stack-allocated array.
* NEWS: Mention the fix.
2019-08-24 Bruno Haible <bruno@clisp.org>
Add another integer test.
* testcases.c (i17, ..., i32): New variables.
(i_i32): New function.
* avcall/tests.c (int_tests): Test it.
* vacall/tests.c (simulator, main): Likewise.
* callback/tests.c (i_i32_simulator): New function.
(main): Test it.
2019-08-24 Bruno Haible <bruno@clisp.org>
cross-tools: Add support for GCC 8 and 9.
* cross-tools/cross-build.sh (func_build_gcc): Handle also GCC 8 and 9.
2019-08-21 Bruno Haible <bruno@clisp.org>
mips: Change the default 32-bit ABI from fp32 to fpxx.
Reported by Sébastien Villemot <sebastien@debian.org>
at <https://savannah.gnu.org/bugs/?52510>.
He also found the trick with -fno-tree-dce.
* porting-tools/abis/mips-abis.txt: New file.
* cross-tools/cross.conf (mips): Use gcc 5 and binutils 2.27.
* common/asm-mips.sh: Eliminate .nan and .module lines.
* avcall/avcall-mipsn32.c (avcall_call): Use return value of
__builtin_alloca instead of accessing the stack pointer directly.
* avcall/Makefile.devel (avcall-mipseb-linux.s, avcall-mipsel-linux.s):
Build with gcc 5, with option -mfpxx (for compatibility with current
Debian), with -march=mips2 (required by -mfpxx), and -fno-tree-dce
(required to avoid that gcc eliminates the __builtin_alloca call).
(avcall-mipsn32eb-linux.s, avcall-mipsn32el-linux.s,
avcall-mips64eb-linux.s, avcall-mips64el-linux.s): Build with gcc 5.
* vacall/Makefile.devel (vacall-mipseb-linux.s, vacall-mipsel-linux.s):
Build with gcc 5, with option -mfpxx (for compatibility with current
Debian) and -march=mips2 (required by -mfpxx).
(vacall-mipsn32eb-linux.s, vacall-mipsn32el-linux.s,
vacall-mips64eb-linux.s, vacall-mips64el-linux.s): Build with gcc 5.
* callback/vacall_r/Makefile.devel (vacall-mipseb-linux.s,
vacall-mipsel-linux.s): Build with gcc 5, with option -mfpxx (for
compatibility with current Debian) and -march=mips2 (required by
-mfpxx).
(vacall-mipsn32eb-linux.s, vacall-mipsn32el-linux.s,
vacall-mips64eb-linux.s, vacall-mips64el-linux.s): Build with gcc 5.
* NEWS: Mention the change.
2019-08-20 Bruno Haible <bruno@clisp.org>
riscv32: Add support for riscv32-ilp32d ABI.
* cross-tools/cross.conf: Add configuration for riscv32 cross tools.
* porting-tools/emulation/buildroot-riscv-2018-10-20-riscv32.config: New
file.
* porting-tools/emulation/tinyemu-riscv32.txt: New file.
* porting-tools/emulation/README: Refer to it.
* porting-tools/abis/README: Tweaks.
* porting-tools/abis/call-used-registers.txt: Add info about riscv32.
* porting-tools/abis/reg-struct-return.txt: Likewise.
* porting-tools/abis/stack-frame.txt: Likewise.
* porting-tools/execstack/voidfunc.c: Add command for riscv32.
* porting-tools/execstack/voidfunc-riscv32.o: New generated file.
* porting-tools/execstack/README: Add info about riscv32.
* ffcall-abi.h: Add support for riscv32-lp64.
* configure.ac: Check for <sys/cachectl.h> also on riscv32.
* avcall/avcall.h (__AV_STRUCT_RETURN): Add code for __riscv32__.
* avcall/avcall-alist.h (__av_alist): Likewise.
* avcall/avcall-internal.h: Add code for __riscv32__, especially
__av_start1, __av_reg_struct_return, __av_start_struct4, __av_word,
__av_longlong, __av_ulonglong, __av_arg_longlong, _av_float, _av_double,
__av_struct.
* avcall/avcall-riscv32.c: New file.
* avcall/Makefile.devel (avcall-riscv32-ilp32d-linux.s,
avcall-riscv32-ilp32d-macro.S): New targets.
* avcall/Makefile.in (avcall-riscv32-ilp32d.lo,
avcall-riscv32-ilp32d.s): New targets.
(clean): Remove avcall-riscv32-ilp32d.s.
(SOURCE_FILES): Add avcall-riscv32.c, avcall-riscv32-ilp32d-linux.s,
avcall-riscv32-ilp32d-macro.S.
* vacall/vacall.h (__VA_STRUCT_RETURN): Add code for __riscv32__.
* vacall/vacall-internal.h: Add code for __riscv32__, especially
__va_alist, __va_reg_struct_return, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_adjusted, _va_arg_longlong,
_va_arg_ulonglong, __va_arg_longlong, __va_align_double, _va_arg_float,
_va_arg_double, __va_arg_struct.
* vacall/vacall-riscv32.c: New file.
* vacall/Makefile.devel (vacall-riscv32-ilp32d-linux.s,
vacall-riscv32-ilp32d-macro.S): New targets.
* vacall/Makefile.in (vacall-riscv32-ilp32d.@OBJEXT@,
vacall-riscv32-ilp32d.s): New targets.
(clean): Remove vacall-riscv32-ilp32d.s.
(SOURCE_FILES): Add vacall-riscv32.c, vacall-riscv32-ilp32d-linux.s,
vacall-riscv32-ilp32d-macro.S.
* callback/vacall_r/vacall_r.h (__VA_STRUCT_RETURN): Add code for
__riscv32__.
* callback/vacall_r/Makefile.devel (vacall-riscv32-ilp32d-linux.s,
vacall-riscv32-ilp32d-macro.S): New targets.
* callback/vacall_r/Makefile.in (vacall-riscv32-ilp32d.lo,
vacall-riscv32-ilp32d.s): New targets.
(clean): Remove vacall-riscv32-ilp32d.s.
(SOURCE_FILES): Add vacall-riscv32-ilp32d-linux.s,
vacall-riscv32-ilp32d-macro.S.
* trampoline/Makefile.devel (proto-riscv32.s, tramp-riscv32.o): New
targets.
* trampoline/proto-riscv32.s: New generated file.
* trampoline/tramp-riscv32.old.s: New file.
* trampoline/tramp-riscv32.old.o: New generated file.
* trampoline/tramp-riscv32.s: New file.
* trampoline/tramp-riscv32.o: New generated file.
* trampoline/trampoline.c: Implement for __riscv32__.
* callback/trampoline_r/Makefile.devel (proto-riscv32.s,
tramp-riscv32.o): New targets.
* callback/trampoline_r/proto.c: Add code for __riscv32__.
* callback/trampoline_r/proto-riscv32.s: New generated file.
* callback/trampoline_r/tramp-riscv32.old.s: New file.
* callback/trampoline_r/tramp-riscv32.old.o: New generated file.
* callback/trampoline_r/tramp-riscv32.s: New file.
* callback/trampoline_r/tramp-riscv32.o: New generated file.
* callback/trampoline_r/trampoline.c: Implement for __riscv32__.
* callback/trampoline_r/test1.c: Add support for __riscv32__.
* PLATFORMS, */PLATFORMS: List the 32-bit RISC-V ABI.
* NEWS: Mention the new port.
2019-08-19 Bruno Haible <bruno@clisp.org>
Add some more general-purpose args boundary tests.
* testcases.c (l_l0J, l_l1J, l_l2J, l_l3J, l_l4J, l_l5J, l_l6J, l_l7J):
New functions.
* avcall/tests.c (gpargs_boundary_tests): Test them.
* vacall/tests.c (simulator, main): Likewise.
* callback/tests.c (l_l*J_simulator): New functions.
(main): Test them.
* porting-tools/abis/gpargs*.c: Add a corresponding test here as well.
2019-08-19 Bruno Haible <bruno@clisp.org>
riscv64: Fix bug regarding passing of more than 8 arguments.
* porting-tools/abis/stack-frame.txt: Correct information about riscv64
ABI.
* avcall/avcall-alist.h (__av_alist) [__riscv64__]: Remove ianum and
iargs.
* avcall/avcall-internal.h (__av_start1, __av_start_struct4, __av_long,
__av_ulong, __av_ptr, _av_float, _av_double, __av_struct) [__riscv64__]:
Change accordingly.
* avcall/avcall-riscv64.c (avcall_call): Likewise.
* vacall/vacall-internal.h (__va_arg_adjusted): Deal with a split struct
that spans the 8th and 9th argument words.
* vacall/vacall-riscv64.c (struct gpargsequence): New type.
(vacall_receiver): Use it to make sure that room is allocated when a
struct is passed that spans the 8th and 9th argument words.
2019-08-19 Bruno Haible <bruno@clisp.org>
arm64: Fix bug regarding passing of more than 8 arguments.
* vacall/vacall-internal.h (__va_arg_adjusted): Bump (LIST)->ianum when
switching from registers to the stack.
* NEWS: Mention it.
2019-08-19 Bruno Haible <bruno@clisp.org>
avcall: Remove unnecessary parentheses.
* avcall/avcall-internal.h (av_double, _av_float, _av_double): Remove
unnecessary level of parentheses.
2019-05-11 Bruno Haible <bruno@clisp.org>
Update bug reporting instructions.
* README: Tell users to report bugs in the bug tracker or by email.
* cross-tools/cross-build.sh (func_usage): Likewise.
2019-04-01 Bruno Haible <bruno@clisp.org>
build: Separate git operations from build operations.
* gitsub.sh: New file, from gnulib.
* .gitmodules: New file.
* autogen.sh: Remove all git operations. Look at GNULIB_SRCDIR
environment variable. Ignore the GNULIB_TOOL environment variable.
* README-hacking: Explain when to use gitsub.sh.
2019-01-19 Bruno Haible <bruno@clisp.org>
Record support for NetBSD/SPARC64.
* PLATFORMS, */PLATFORMS: List this platform.
2018-05-04 Bruno Haible <bruno@clisp.org>
Simplify code. Drop support for Borland C++ on Windows.
* common/asm-x86_64.h, common/asm-x86_64.sh, ffcall-stdint.h:
Simplify 'defined _WIN32 || defined __WIN32__' to just 'defined _WIN32'.
* avcall/avcall.h, avcall/avcall-alist.h: Likewise.
* vacall/vacall.h, vacall/vacall-internal.h: Likewise.
* callback/vacall_r/vacall_r.h: Likewise.
* trampoline/trampoline.c: Likewise.
* callback/trampoline_r/trampoline.c: Likewise.
2018-04-08 Bruno Haible <bruno@clisp.org>
riscv64: Add support for riscv64-lp64d ABI.
* cross-tools/cross-build.sh (func_build_gcc): Add support for GCC 7.2.0
and 7.3.0.
* cross-tools/cross.conf: Add configuration for riscv64 cross tools.
* porting-tools/emulation/qemu-riscv64.txt: New file.
* porting-tools/emulation/README: Refer to it.
* porting-tools/abis/README: Tweaks.
* porting-tools/abis/call-used-registers.txt: Add info about riscv64.
* porting-tools/abis/reg-struct-return.txt: Likewise.
* porting-tools/abis/stack-frame.txt: Likewise.
* porting-tools/abis/function-pointer.txt: Clarify file locations.
* porting-tools/execstack/voidfunc.c: Add command for riscv64.
* porting-tools/execstack/voidfunc-riscv64.o: New generated file.
* porting-tools/execstack/main.c (voidfunc): Define also for riscv.
* porting-tools/execstack/README: Add info about riscv64.
* ffcall-abi.h: Add support for riscv64-lp64.
* common/asm-riscv.sh: New file.
* Makefile.in (SOURCE_FILES): Add it.
* configure.ac: Check for <sys/cachectl.h> also on riscv64.
* avcall/avcall.h (__AV_STRUCT_RETURN, __AV_REGISTER_STRUCT_RETURN): Add
code for __riscv64__.
* avcall/avcall-alist.h (__av_alist): Likewise.
* avcall/avcall-internal.h: Add code for __riscv64__, especially
__av_start1, __av_reg_struct_return, __av_start_struct4, __av_word,
__av_long, __av_ulong, __av_ptr, __av_longlong, __av_ulonglong,
_av_float, _av_double, __av_struct.
* avcall/avcall-riscv64.c: New file.
* avcall/Makefile.devel (avcall-riscv64-lp64d-linux.s,
avcall-riscv64-lp64d-macro.S): New targets.
* avcall/Makefile.in (avcall-riscv64-lp64d.lo, avcall-riscv64-lp64d.s):
New targets.
(clean): Remove avcall-riscv64-lp64d.s.
(SOURCE_FILES): Add avcall-riscv64.c, avcall-riscv64-lp64d-linux.s,
avcall-riscv64-lp64d-macro.S.
* vacall/vacall.h (__VA_STRUCT_RETURN, __VA_REGISTER_STRUCT_RETURN): Add
code for __riscv64__.
* vacall/vacall-internal.h: Add code for __riscv64__, especially
__va_alist, __va_reg_struct_return, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_adjusted, _va_arg_longlong,
_va_arg_ulonglong, __va_align_double, _va_arg_float, _va_arg_double,
__va_arg_struct, _va_return_longlong.
* vacall/vacall-riscv64.c: New file.
* vacall/Makefile.devel (vacall-riscv64-lp64d-linux.s,
vacall-riscv64-lp64d-macro.S): New targets.
* vacall/Makefile.in (vacall-riscv64-lp64d.@OBJEXT@,
vacall-riscv64-lp64d.s): New targets.
(clean): Remove vacall-riscv64-lp64d.s.
(SOURCE_FILES): Add vacall-riscv64.c, vacall-riscv64-lp64d-linux.s,
vacall-riscv64-lp64d-macro.S.
* callback/vacall_r/vacall_r.h (__VA_STRUCT_RETURN,
__VA_REGISTER_STRUCT_RETURN): Add code for __riscv64__.
* callback/vacall_r/Makefile.devel (vacall-riscv64-lp64d-linux.s,
vacall-riscv64-lp64d-macro.S): New targets.
* callback/vacall_r/Makefile.in (vacall-riscv64-lp64d.lo,
vacall-riscv64-lp64d.s): New targets.
(clean): Remove vacall-riscv64-lp64d.s.
(SOURCE_FILES): Add vacall-riscv64-lp64d-linux.s,
vacall-riscv64-lp64d-macro.S.
* trampoline/Makefile.devel (proto-riscv64.s, tramp-riscv64.o): New
targets.
* trampoline/proto-riscv64.s: New generated file.
* trampoline/tramp-riscv64.s: New file.
* trampoline/tramp-riscv64.o: New generated file.
* trampoline/trampoline.c: Implement for __riscv64__.
* callback/trampoline_r/Makefile.devel (proto-riscv64.s,
tramp-riscv64.o): New targets.
* callback/trampoline_r/proto64.c: Add code for __riscv64__.
* callback/trampoline_r/proto-riscv64.s: New generated file.
* callback/trampoline_r/tramp-riscv64.s: New file.
* callback/trampoline_r/tramp-riscv64.o: New generated file.
* callback/trampoline_r/trampoline.c: Implement for __riscv64__.
* callback/trampoline_r/test1.c: Add support for __riscv64__.
* PLATFORMS, */PLATFORMS: List the 64-bit RISC-V ABI.
* NEWS: Mention the new port.
2018-04-08 Bruno Haible <bruno@clisp.org>
s390x: Trivial tweak.
* avcall/avcall-s390x.c (avcall_call): Rename result variable from 'i'
to 'iret'.
2018-02-26 Bruno Haible <bruno@clisp.org>
Add support for Linux/arm on Raspberry Pi.
Reported by Simon Dales <simon@getThingsFixed.co.uk>.
* avcall/Makefile.devel (avcall-armhf-macro.S): Pass option
'-march=armv6' to gcc.
* vacall/Makefile.devel (vacall-arm-linux.s, vacall-arm-linux-pic.s):
Likewise.
* callback/vacall_r/Makefile.devel (vacall-armhf-macro.S): Likewise.
* PLATFORMS, */PLATFORMS: List this platform.
* NEWS: Mention this.
2018-02-24 Bruno Haible <bruno@clisp.org>
Add support for Linux/i386 with PIE-enabled gcc.
* vacall/Makefile.devel (vacall-i386-linux-pic.s): New target.
(vacall-i386-macro.S): Include code for the PIC and the non-PIC case.
* vacall/Makefile.in (SOURCE_FILES): Add vacall-i386-linux-pic.s.
2018-02-18 Bruno Haible <bruno@clisp.org>
Avoid undesired compiler optimizations.
Reported by Jerry James <loganjerry@gmail.com>.
* configure.ac (DISABLE_TYPE_BASED_ALIASING): New substituted variable.
* avcall/Makefile.in (avcall-libapi.lo): Use it.
* vacall/Makefile.in (vacall-libapi.o): Likewise.
* callback/vacall_r/Makefile.in (vacall-libapi.lo): Likewise.
2018-02-17 Bruno Haible <bruno@clisp.org>
Bump version number.
* VERSION: Set to 2.2.
* NEWS: Open new section for 2.2.
2018-02-17 Bruno Haible <bruno@clisp.org>
Bump shared library version numbers.
* Makefile.in (LIBFFCALL_VERSION_INFO): Bump to 0:1:0.
* avcall/Makefile.in (LIBAVCALL_VERSION_INFO): Bump to 1:1:0.
* trampoline/Makefile.in (LIBTRAMPOLINE_VERSION_INFO): Likewise.
* callback/Makefile.in (LIBCALLBACK_VERSION_INFO): Likewise.
2018-02-17 Bruno Haible <bruno@clisp.org>
Add support for HardenedBSD.
The fix was done in gnulib today.
* NEWS: Mention this.
2018-02-17 Bruno Haible <bruno@clisp.org>
Add support for Linux/arm with PIE-enabled gcc.
Reported by Nelson Beebe.
* vacall/Makefile.devel (vacall-arm-linux.s, vacall-arm-linux-pic.s,
vacall-armhf-linux.s, vacall-armhf-linux-pic.s): New targets.
(vacall-arm-macro.S, vacall-armhf-macro.S): Include code for the PIC and
the non-PIC case.
* vacall/Makefile.in (SOURCE_FILES): Add vacall-arm*-linux*.s.
2018-02-17 Bruno Haible <bruno@clisp.org>
Add support for OpenBSD 6.1 and newer.
Reported by Nelson Beebe.
* m4/codeexec.m4 (FFCALL_CODEEXEC_PAX): Also test whether mprotect
returns with errno=ENOTSUP.
* NEWS: Mention this.
2018-01-30 Bruno Haible <bruno@clisp.org>
Verify support for Minix/i386.
* PLATFORMS, */PLATFORMS: List this platform.
2018-01-27 Bruno Haible <bruno@clisp.org>
Rename some files.
* INSTALL.windows: Renamed from README.windows.
* INSTALL.os2: Renamed from README.os2.
* Makefile.in (SOURCE_FILES): Update.
2018-01-09 Bruno Haible <bruno@clisp.org>
Make processing of assembly-language files work with GNU clisp.
* common/asm-arm.sh: Don't introduce C() macro in .req lines.
* common/asm-hppa.h (DEF): Don't use token-pasting operator here, since
the result would not be a valid token.
* common/asm-hppa64.h (DEF): Likewise.
* common/asm-i386.h (INSN2SHCL): Omit the cl register only on Solaris.
All other assemblers support it.
(P2ALIGN): Use __SVR4, not __sun, to detect Solaris.
* common/asm-i386.sh: Allow spaces instead of tabs after .type and
.size. Recognize INSN2SHCL without assuming an 'shcl' macro.
2017-11-28 Bruno Haible <bruno@clisp.org>
mips, mipsn32, mips64: Improvement for ELF format.
* common/asm-mips.h (DECLARE_FUNCTION): Test __ELF__, not __GNU__.
2017-11-25 Bruno Haible <bruno@clisp.org>
mips64: Fix crash on some real hardware mips64el (Octeon).
Reported by Sébastien Villemot <sebastien@debian.org>.
Reminder: Some real MIPS hardware executes the "branch delay slot"
after a branch or jump instruction. See
<https://stackoverflow.com/questions/3807480>
<https://stackoverflow.com/questions/4115847>
* trampoline/trampoline.c (alloc_trampoline) [__mips64__]: Store the
instructions as 32-bit words, so that the instructions come out as
expected, regardless of the endianness.
* trampoline/tramp-mips*.s: Update comments.
* callback/trampoline_r/tramp-mips*.s: Likewise.
2017-10-29 Bruno Haible <bruno@clisp.org>
Verify support for Haiku/i386.
* PLATFORMS, */PLATFORMS: List this platform.
2017-10-22 Bruno Haible <bruno@clisp.org>
x86_64-x32: Fix passing of pointers.
* avcall/avcall-internal.h (__av_start_struct4, __av_ptr): For pointer
values, use zero-extend instead of cast from 'void*' to '__avword'.
* vacall/vacall-x86_64.c (vacall_receiver): For pointer values, use
zero-extend instead of cast from 'void*' to '__vaword'.
2017-10-21 Bruno Haible <bruno@clisp.org>
Include libtool fix for Solaris 11.3.
Reported at <https://savannah.gnu.org/patch/?9467>.
* Makefile.maint (libtool-imported-files): Download and apply said fix.
2017-10-09 Bruno Haible <bruno@clisp.org>
Avoid build failures caused by parallel make.
Reported by Riccardo G Corsi <riccardogcorsi@gmail.com>.
* Makefile.in (GNUMAKEFLAGS): New variable.
2017-09-24 Bruno Haible <bruno@clisp.org>
Update NEWS.
* NEWS: Mention the <callback.h> API changes in 2.0.
2017-09-15 Bruno Haible <bruno@clisp.org>
tests: Consistency.
* avcall/tests.c (pointer_tests): Move before the mixed_number_tests.
(gpargs_boundary_tests): Fix weakness in the f_f17l3L test.
2017-09-12 Bruno Haible <bruno@clisp.org>
sparc: Verify support for NetBSD.
* PLATFORMS, */PLATFORMS: List this platform.
2017-09-11 Bruno Haible <bruno@clisp.org>
Bump version number.
* VERSION: Set to 2.1.
* NEWS: Open new section for 2.1.
2017-09-10 Bruno Haible <bruno@clisp.org>
Install the libraries as shared libraries by default.
* configure.ac (LT_INIT): Remove option 'disable-shared'.
* README: Remove outdated text.
* NEWS: Mention the change.
2017-09-10 Bruno Haible <bruno@clisp.org>
Install a library named libffcall.
* ffcall-version.c: New file.
* ffcall-version.in.h: Rename double-inclusion guard.
(ffcall_get_version): New declaration.
* Makefile.in: Add variables for using libtool.
(LIBFFCALL_EXPORTED_SYMBOLS_REGEX, LIBFFCALL_VERSION_INFO): New
variables.
(all-subdirs, ffcall-version.lo, libffcall.la): New targets.
(all): Depend on them.
(install): Install also libffcall.la.
(installdirs): Create also $(libdir).
(uninstall): Uninstall also libffcall.la.
(MOSTLYCLEANDIRS, MOSTLYCLEANFILES): New variables.
(mostlyclean, clean, distclean, maintainer-clean): Delete these.
(SOURCE_FILES): Add ffcall-version.c.
* README: Mention libffcall.{a,so}. Mark libavcall and libcallback as
deprecated.
* NEWS: Mention the change.
2017-09-10 Bruno Haible <bruno@clisp.org>
Move the backward compatibility code to separate object files.
* avcall/avcall-compat.c: New file, extracted from
avcall/avcall-libapi.c.
* avcall/Makefile.in (SOURCE_FILES): Add it.
(avcall-compat.lo): New target.
(OBJECTS): Add it.
* avcall/avcall-libapi.c (__builtin_avcall): Remove function.
* callback/callback-compat.c: New file, extracted from
callback/callback-libapi.c.
* callback/Makefile.in (SOURCE_FILES): Add it.
(callback-compat.lo): New target.
(libcallback.la): Include it.
* callback/callback-libapi.c (trampoline_r_data0): Remove function.
2017-09-10 Bruno Haible <bruno@clisp.org>
vacall: Fix build failure with gcc configured with --enable-default-pie.
Works around a GCC bug, reported at
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81653>.
* configure.ac (WORKAROUND_BUG_81653): New variable.
* vacall/Makefile.in (vacall-sparc.@OBJEXT@, vacall-sparc.s): Use it.
2017-09-10 Bruno Haible <bruno@clisp.org>
Fix build failure "error: narrowing conversion" with g++ on arm.
* testcases.c (C5): Cast -1 to 'char' explicitly.
2017-09-10 Bruno Haible <bruno@clisp.org>
Fix build failure with --enable-shared on Solaris/x86 with cc.
* common/asm-i386.h: Test __SVR4, not __svr4__.
2017-09-10 Bruno Haible <bruno@clisp.org>
Support building shared libraries on native Windows.
* configure.ac (LT_INIT): Add option 'win32-dll'.
* avcall/Makefile.in (avcall-x86_64.lo): Copy object file into .libs/
directory.
* callback/vacall_r/Makefile.in (vacall-x86_64.lo): Likewise.
2017-09-09 Bruno Haible <bruno@clisp.org>
i386: Verify support for Hurd.
* NEWS: List this platform.
2017-09-09 Bruno Haible <bruno@clisp.org>
x86_64: Verify support for FreeBSD, NetBSD, OpenBSD.
* PLATFORMS, */PLATFORMS: List these platforms.
* NEWS: Likewise.
2017-09-09 Bruno Haible <bruno@clisp.org>
i386: Restore support for FreeBSD, NetBSD, OpenBSD, DragonFly BSD.
* avcall/avcall.h (__AV_STRUCT_RETURN): Enable __AV_SMALL_STRUCT_RETURN
on FreeBSD/i386, OpenBSD/i386, DragonFly/i386.
* vacall/vacall.h (__VA_STRUCT_RETURN): Enable __VA_SMALL_STRUCT_RETURN
on FreeBSD/i386, OpenBSD/i386, DragonFly/i386.
* callback/vacall_r/vacall_r.h: Likewise.
* avcall/avcall-i386.c: Update comments.
* vacall/vacall-i386.c (vacall_receiver): Return the structure address
in %eax also for other platforms than MSVC.
* PLATFORMS, */PLATFORMS: List these platforms.
* NEWS: Likewise.
2017-09-09 Bruno Haible <bruno@clisp.org>
i386: Assume MSVC struct return convention also on 32-bit mingw.
* avcall/avcall.h (__AV_STRUCT_RETURN): Enable __AV_MSVC_STRUCT_RETURN
on 32-bit mingw.
* vacall/vacall.h (__VA_STRUCT_RETURN): Enable __VA_MSVC_STRUCT_RETURN
on 32-bit mingw.
* callback/vacall_r/vacall_r.h: Likewise.
* NEWS: Mention the fix.
2017-09-09 Bruno Haible <bruno@clisp.org>
vacall: Fix warnings on DragonFly BSD.
* vacall/vacall-internal.h (__va_start, __va_arg): Undefine first.
2017-09-09 Bruno Haible <bruno@clisp.org>
avcall, vacall: Optimize struct return of small structs.
* avcall/avcall-arm64.c (avcall_call): Add alternative optimized code
for struct return.
* avcall/avcall-hppa.c (avcall_call): Likewise.
* avcall/avcall-ia64.c (avcall_call): Likewise.
* avcall/avcall-mipsn32.c (avcall_call): Likewise.
* avcall/avcall-mips64.c (avcall_call): Likewise.
* avcall/avcall-powerpc64.c (avcall_call): Likewise.
* avcall/avcall-sparc64.c (avcall_call): Likewise.
* avcall/avcall-x86_64.c (avcall_call): Likewise.
* avcall/avcall-x86_64-windows.c (avcall_call): Likewise.
* avcall/avcall-hppa64.c (avcall_call): Likewise, but don't enable it.
* vacall/vacall-arm64.c (vacall_receiver): Add alternative optimized
code for struct return.
* vacall/vacall-hppa.c (vacall_receiver): Likewise.
* vacall/vacall-ia64.c (vacall_receiver): Likewise.
* vacall/vacall-mipsn32.c (vacall_receiver): Likewise.
* vacall/vacall-mips64.c (vacall_receiver): Likewise.
* vacall/vacall-powerpc64.c (vacall_receiver): Likewise.
* vacall/vacall-sparc64.c (vacall_receiver): Likewise.
* vacall/vacall-x86_64.c (vacall_receiver): Likewise.
* vacall/vacall-x86_64-windows.c (vacall_receiver): Likewise.
* vacall/vacall-hppa64.c (vacall_receiver): Likewise.
2017-09-09 Bruno Haible <bruno@clisp.org>
avcall, vacall: Align code style.
* avcall/avcall-hppa.c (avcall_call): Use variable name 'iret', like
for the other ABIs.
* avcall/avcall-ia64.c: Likewise.
* avcall/avcall-arm64.c (avcall_call): Use variable names 'iret' and
'iret2', like for the other ABIs.
* avcall/avcall-x86_64.c: Likewise.
* avcall/avcall-sparc64.c (avcall_call): Use variable names 'iret',
'iret2', 'iret3', 'iret4', for consistency.
* vacall/vacall-sparc64 (vacall_receiver): Likewise.
2017-09-09 Bruno Haible <bruno@clisp.org>
x86_64: Remove register pressure on gcc.
* avcall/avcall-x86_64.c: Don't declare iarg[1-6].
(avcall_call): Pass the integer arguments through arguments.
* avcall/avcall-x86_64-windows.c: Don't declare iarg[1-4].
(avcall_call): Pass the integer arguments through arguments.
* vacall/vacall-x86_64.c: Don't declare iarg[1-6].
(vacall_receiver): Use another way to save the integer registers.
* vacall/vacall-x86_64-windows.c: Don't declare iarg[1-4].
2017-09-09 Bruno Haible <bruno@clisp.org>
Fix preprocessor warning "does not give a valid preprocessing token".
* common/asm-i386.h (NUM): Don't use token concatenation between '$'
and a possibly negative number.
* common/asm-x86_64.h (NUM): Likewise.
2017-09-09 Bruno Haible <bruno@clisp.org>
hppa64: Simplify trampoline.
* trampoline/tramp-hppa64-old.s: Renamed from trampoline/tramp-hppa64.s.
* trampoline/tramp-hppa64-old.o: Renamed from trampoline/tramp-hppa64.o.
* trampoline/tramp-hppa64-macro.S: New file.
* trampoline/Makefile.in (tramp-hppa64.lo, tramp-hppa64.s): New targets.
(clean): Remove tramp-hppa64.s.
(SOURCE_FILES): Add tramp-hppa64-macro.S.
* trampoline/trampoline.c: Distinguish __hppa64old__ and __hppa64new__.
Implement trampoline for __hppa64new__.
* callback/trampoline_r/tramp-hppa64-old.s: Renamed from
callback/trampoline_r/tramp-hppa64.s.
* callback/trampoline_r/tramp-hppa64-old.o: Renamed from
callback/trampoline_r/tramp-hppa64.o.
* callback/trampoline_r/tramp-hppa64-macro.S: New file.
* callback/trampoline_r/Makefile.in (tramp-hppa64.lo, tramp-hppa64.s):
New targets.
(clean): Remove tramp-hppa64.s.
(SOURCE_FILES): Add tramp-hppa64-macro.S.
* callback/trampoline_r/trampoline.c: Distinguish __hppa64old__ and
__hppa64new__. Implement trampoline for __hppa64new__.
* configure.ac (CPU_OBJECTS): Augment with tramp-hppa64.lo.
2017-09-09 Bruno Haible <bruno@clisp.org>
hppa64: Add support for HP-PA in 64-bit mode on HP-UX.
* cross-tools/cross.conf: Add configuration for hppa64 cross tools.
* porting-tools/abis/README: Add details about platforms where function
pointers are actually pointers to some struct.
* porting-tools/abis/call-used-registers.txt: Add info about hppa64.
Fix info about hppa.
* porting-tools/abis/reg-struct-return.txt: Add info about hppa64.
* porting-tools/abis/stack-frame.txt: Likewise.
* porting-tools/execstack/voidfunc-hppa64.o: New file.
* common/asm-hppa64.h: New file.
* common/asm-hppa64.sh: New file.
* Makefile.in (SOURCE_FILES): Add them.
* avcall/avcall.h (__AV_REGISTER_STRUCT_RETURN): Add code for
__hppa64__.
* avcall/avcall-alist.h (__av_alist): Likewise.
* avcall/avcall-internal.h: Add code for __hppa64__, especially
__av_start1, __av_reg_struct_return, __av_start_struct4, __av_word,
__av_longlong, __av_ulonglong, _av_float, _av_double,
__av_struct_leftadjusted, __av_struct.
* avcall/avcall-hppa64.c: New file.
* avcall/Makefile.devel (avcall-hppa64-linux.s, avcall-hppa64-macro.S):
New targets.
* avcall/Makefile.in (avcall-hppa64.lo, avcall-hppa64.s): New targets.
(clean): Remove avcall-hppa64.s.
(SOURCE_FILES): Add avcall-hppa64.c, avcall-hppa64-linux.s,
avcall-hppa64-macro.S.
* vacall/vacall.h (__VA_REGISTER_STRUCT_RETURN): Add code for
__hppa64__.
* vacall/vacall-internal.h: Add code for __hppa64__, especially
__va_alist, __va_reg_struct_return, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_rightadjusted, __va_arg_adjusted,
_va_arg_longlong, _va_arg_ulonglong, __va_align_double, _va_arg_float,
_va_arg_double, __va_arg_struct, _va_return_longlong.
* vacall/vacall-hppa64.c: New file.
* vacall/Makefile.devel (vacall-hppa64-linux.s, vacall-hppa64-macro.S):
New targets.
* vacall/Makefile.in (vacall-hppa64.@OBJEXT@, vacall-hppa64.s): New
targets.
(clean): Remove vacall-hppa64.s.
(SOURCE_FILES): Add vacall-hppa64.c, vacall-hppa64-linux.s,
vacall-hppa64-macro.S.
* callback/vacall_r/vacall_r.h (__VA_REGISTER_STRUCT_RETURN): Add code
for __hppa64__.
* callback/vacall_r/Makefile.devel (vacall-hppa64-linux.s,
vacall-hppa64-macro.S): New targets.
* callback/vacall_r/Makefile.in (vacall-hppa64.lo, vacall-hppa64.s): New
targets.
(clean): Remove vacall-hppa64.s.
(SOURCE_FILES): Add vacall-hppa64-linux.s, vacall-hppa64-macro.S.
* trampoline/Makefile.devel (cache-hppa64-linux.s,
cache-hppa64-macro.S): New targets.
(proto-hppa64.s, tramp-hppa64.o): New targets.
* trampoline/proto-hppa64.s: New generated file.
* trampoline/tramp-hppa64.s: New file.
* trampoline/tramp-hppa64.o: New generated file.
* trampoline/tramp-hppa-macro.S: Fix comment.
* trampoline/cache-hppa.c: Add code for __hppa64__.
* trampoline/trampoline.c: Implement for __hppa64__.
* trampoline/Makefile.in (cache-hppa64.lo, cache-hppa64.s): New targets.
(clean): Remove cache-hppa64.s.
(SOURCE_FILES): Add cache-hppa64-linux.s, cache-hppa64-macro.S.
* callback/trampoline_r/Makefile.devel (cache-hppa64-linux.s,
cache-hppa64-macro.S): New targets.
(proto-hppa64.s, tramp-hppa64.o): New targets.
* callback/trampoline_r/proto64.c: Add code for __hppa64__.
* callback/trampoline_r/proto-hppa64.s: New generated file.
* callback/trampoline_r/tramp-hppa64.s: New file.
* callback/trampoline_r/tramp-hppa64.o: New generated file.
* callback/trampoline_r/tramp-hppa-macro.S: Fix comment.
* callback/trampoline_r/trampoline.c: Implement for __hppa64__.
* callback/trampoline_r/test1.c: Add support for __hppa64__.
* callback/trampoline_r/Makefile.in (cache-hppa64.lo, cache-hppa64.s):
New targets.
(clean): Remove cache-hppa64.s.
(SOURCE_FILES): Add cache-hppa64-linux.s, cache-hppa64-macro.S.
* configure.ac (CPU_OBJECTS): Augment also for hppa64 ABI.
* PLATFORMS, */PLATFORMS: List the 64-bit HP-PA machine.
* NEWS: Mention the new port.
2017-09-09 Bruno Haible <bruno@clisp.org>
Don't violate ISO C rules.
* avcall/avcall-internal.h (__av_struct): Don't store an unaligned
pointer in (LIST).aptr.
2017-09-09 Bruno Haible <bruno@clisp.org>
Assume the C preprocessor discards // comments.
* common/asm-i386.h: Renamed from common/asm-i386.hh.
* Makefile.maint (common/asm-i386.h): Remove target.
* Makefile.in (SOURCE_FILES): Add common/asm-i386.h. Remove
common/asm-i386.hh.
(GENERATED_FILES): Remove common/asm-i386.h.
2017-09-09 Bruno Haible <bruno@clisp.org>
avcall: Optimize struct return of small structs.
* avcall/avcall-*.c: Cache l->raddr in a local variable.
2017-09-09 Bruno Haible <bruno@clisp.org>
x86_64: Improve processing of assembly-language files.
* common/asm-x86_64.sh: Eliminate #APP and #NO_APP directives.
In the MEM* patterns, recognize all 64-bit register names.
2017-09-09 Bruno Haible <bruno@clisp.org>
Fix compilation error on HP-UX (regression from 2017-09-03).
* avcall/avcall-libapi.c: Include <stdlib.h> before ffcall-stdint.h.
2017-09-03 Bruno Haible <bruno@clisp.org>
i386: Align processing of assembly-language files with x86_64 case.
* common/asm-i386.hh (INSN2MOVXL): Renamed from INSN2MOVX.
* common/asm-i386.sh: Generate INSN2MOVXL instead of INSN2MOVX.
2017-09-03 Bruno Haible <bruno@clisp.org>
i386: Provide disambiguating size prefixes in more cases.
* common/asm-i386.sh: Introduce size prefixes also for the second
operand of instructions with two operands.
2017-09-03 Bruno Haible <bruno@clisp.org>
i386: Simplify processing of assembly-language files.
* common/asm-i386.sh: Remove unused introduction of FUNEND. Remove
no-op rule for GLOBL.
2017-09-03 Bruno Haible <bruno@clisp.org>
x86_64: Add support for MSVC 14.
* common/asm-x86_64.h (R, NUM, ADDR, ADDR_PCRELATIVE, X1, X2, X4, X8,
MEM, MEM_DISP, MEM_INDEX, MEM_SHINDEX, MEM_DISP_SHINDEX0,
MEM_DISP_SHINDEX, MEM_PCRELATIVE, INDIR, INSNCONC, INSN1, INSN2,
INSN2S, INSN2MOVXL, INSN2MOVXQ, INSN2MOVXLQ, _): New macros.
(TEXT, P2ALIGN, DECLARE_FUNCTION, FUNBEGIN, FUNEND): Implement for MSVC.
* common/asm-x86_64.sh: Generate instructions as macros that may expand
into AT&T syntax or MSVC syntax.
* avcall/Makefile.in (avcall-x86_64.lo): Use a different rule for MSVC.
(clean): Remove also avcall-x86_64.asm.
* vacall/Makefile.in (vacall-x86_64.@OBJEXT@): Use a different rule for
MSVC.
(clean): Remove also vacall-x86_64.asm.
* callback/vacall_r/Makefile.in (vacall-x86_64.lo): Use a different rule
for MSVC.
(clean): Remove also vacall-x86_64.asm.
* PLATFORMS, */PLATFORMS: List the 64-bit mingw machine.
* NEWS: Mention the new port.
2017-09-03 Bruno Haible <bruno@clisp.org>
x86_64: Add support for mingw.
* avcall/avcall.h (__AV_LLP64): New macro.
(__avword): Use it.
* avcall/avcall-alist.h (__av_alist): Change fields of type
'unsigned long' to 'uintptr_t'.
* avcall/avcall-internal.h (__av_longlong): Update implementation for
LLP64 platforms.
* vacall/vacall.h (__VA_LLP64): New macro.
(__vaword): Use it.
* callback/vacall_r/vacall_r.h: Likewise.
* vacall/vacall-internal.h (__va_alist): Change fields of type
'unsigned long' to 'uintptr_t'. Don't assume that 'long long' is the
same as 'long' on x86_64.
(_va_arg_longlong, _va_arg_ulonglong, _va_return_longlong,
_va_return_ulonglong): Update implementation for LLP64 platforms.
* PLATFORMS, */PLATFORMS: List the 64-bit mingw machine.
* NEWS: Mention the new port.
2017-09-03 Bruno Haible <bruno@clisp.org>
Fix warnings on 64-bit native Windows.
* avcall/tests.c (pointer_tests): Use %p to display the value of a
pointer.
* vacall/tests.c (main): Likewise,
* callback/tests.c (main): Likewise,
2017-09-03 Bruno Haible <bruno@clisp.org>
Add support for platforms where sizeof(long) < sizeof(void*).
* ffcall-stdint.h: New file.
* Makefile.in (SOURCE_FILES): Add it.
* avcall/avcall-internal.h: Include ffcall-stdint.h. Use [u]intptr_t
instead of 'long', 'unsigned long', or '__avword' where appropriate.
* vacall/vacall-internal.h: Include ffcall-stdint.h. Use [u]intptr_t
instead of 'long', 'unsigned long', or '__vaword' where appropriate.
* Makefile.maint (GNULIB_MODULES): Add stdint.
* trampoline/trampoline.c: Include <stdint.h>. Use [u]intptr_t instead
of 'long' or 'unsigned long' where appropriate. For __x86_64__, use
'unsigned long long' instead of 'unsigned long'.
* callback/trampoline_r/trampoline.c: Likewise.
* callback/trampoline_r/test1.c (f): Use 'void*' instead of 'long' to
access env.
2017-09-03 Bruno Haible <bruno@clisp.org>
x86_64: Add support for Cygwin.
* porting-tools/abis/call-used-registers.txt: Add info about x86_64-ms
ABI.
* porting-tools/abis/reg-struct-return.txt: Likewise.
* porting-tools/abis/stack-frame.txt: Likewise.
* common/asm-x86_64.h: Add support for compilers on Windows.
(TEXT, GLOBL): New macros.
* common/asm-x86_64.sh: Truncate the EH_FRAME_SECTION also on Windows.
Eliminate .file pseudo-op. Macroize .text, .p2align, .globl directives.
* avcall/avcall-alist.h (__x86_64_ms__, __x86_64_sysv__): New macros.
(__av_alist): Add support for __x86_64_ms__.
* avcall/avcall-internal.h (__av_start1, __av_reg_struct_return,
__av_start_struct3, __av_start_struct4, __av_word, _av_float,
_av_double, __av_struct): Add support for __x86_64_ms__.
* avcall/avcall-x86_64.c: Improve comments.
* avcall/avcall-x86_64-windows.c: New file.
* avcall/Makefile.devel (avcall-x86_64-windows.s,
avcall-x86_64-windows-macro.S): New targets.
* avcall/Makefile.in (avcall-x86_64.s): On Windows, use
avcall-x86_64-windows-macro.S.
(SOURCE_FILES): Add avcall-x86_64-windows.c, avcall-x86_64-windows.s,
avcall-x86_64-windows-macro.S.
* vacall/vacall-internal.h (__x86_64_ms__, __x86_64_sysv__): New macros.
(__VA_FARG_NUM): Define also for __mipsn32__ || __mips64__.
(__va_alist): Add support for __x86_64_ms__.
(__va_reg_struct_return, __va_start_struct1, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_rightadjusted, __va_arg_adjusted,
_va_arg_float, _va_arg_double, __va_arg_struct): Likewise.
* vacall/vacall-x86_64.c: Update comments.
* vacall/vacall-x86_64-windows.c: New file.
* vacall/Makefile.devel (vacall-x86_64-windows.s,
vacall-x86_64-windows-macro.S): New targets.
* vacall/Makefile.in (vacall-x86_64.s): On Windows, use
vacall-x86_64-windows-macro.S.
(SOURCE_FILES): Add vacall-x86_64-windows.c, vacall-x86_64-windows.s,
vacall-x86_64-windows-macro.S.
* callback/vacall_r/Makefile.devel (vacall-x86_64-windows.s,
vacall-x86_64-windows-macro.S): New targets.
* callback/vacall_r/Makefile.in (vacall-x86_64.s): On Windows, use
vacall-x86_64-windows-macro.S.
(SOURCE_FILES): Add vacall-x86_64-windows.s,
vacall-x86_64-windows-macro.S.
* PLATFORMS, */PLATFORMS: List the 64-bit Cygwin machine.
* NEWS: Mention the new port.
2017-09-03 Bruno Haible <bruno@clisp.org>
Remove special build infrastructure for MSVC. The generic one works.
* avcall/Makefile.msvc: Remove file.
* avcall/Makefile.in (SOURCE_FILES): Remove it.
* vacall/Makefile.maint (config.h.msvc): Remove target.
(totally-clean): Don't remove config.h.msvc.
* vacall/Makefile.msvc: Remove file.
* vacall/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.msvc.
* trampoline/Makefile.maint (config.h.msvc): Remove target.
(totally-clean): Don't remove config.h.msvc.
* trampoline/Makefile.msvc: Remove file.
* trampoline/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.msvc.
* callback/vacall_r/Makefile.maint (config.h.msvc): Remove target.
(totally-clean): Don't remove config.h.msvc.
* callback/vacall_r/Makefile.msvc: Remove file.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.msvc.
* callback/trampoline_r/Makefile.maint (config.h.msvc): Remove target.
(totally-clean): Don't remove config.h.msvc.
* callback/trampoline_r/Makefile.msvc: Remove file.
* callback/trampoline_r/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.msvc.
* callback/Makefile.maint (vacall_r/config.h.msvc,
trampoline_r/config.h.msvc): Remove targets.
* callback/Makefile.msvc: Remove file.
* callback/Makefile.in (SOURCE_FILES): Remove it.
* Makefile.msvc: Remove file.
* Makefile.in (SOURCE_FILES): Remove it.
2017-09-03 Bruno Haible <bruno@clisp.org>
Make the generic build infrastructure work on MSVC.
* m4/as-underscore.m4: Rely on gl_ASM_SYMBOL_PREFIX from gnulib. Don't
define ASM_UNDERSCORE any more.
* configure.ac: Set IF_MSVC, IFNOT_MSVC.
* common/asm-i386.hh: Fix P2ALIGN parameter list.
* common/asm-i386.sh: Improve handling of indirect calls and jmps.
* avcall/Makefile.in: Use OBJEXT.
(avcall-i386.lo): Use a different rule for MSVC.
* vacall/Makefile.devel: Transform 'vacall_function' before the
asm-i386.sh script, not afterwards.
* vacall/Makefile.in: Use OBJEXT.
(vacall-i386.o): Use a different rule for MSVC.
* trampoline/trampoline.c: On native Windows, when CODE_EXECUTABLE is
not defined, use VirtualAlloc.
* trampoline/Makefile.in: Use OBJEXT.
* callback/vacall_r/get_receiver.c: New file.
* callback/vacall_r/Makefile.maint (vacall-i386-msvc.c): Use the C
source code of callback_get_receiver.
* callback/vacall_r/Makefile.in: Use OBJEXT.
(vacall-i386.lo): Use a different rule for MSVC.
(SOURCE_FILES): Add get_receiver.c.
* callback/trampoline_r/trampoline.c: On native Windows, when
CODE_EXECUTABLE is not defined, use VirtualAlloc.
* callback/trampoline_r/Makefile.in: Use OBJEXT.
* callback/Makefile.in: Use OBJEXT.
* README.win32: Remove file.
* README.windows: New file, from GNU gettext.
* Makefile.in (SOURCE_FILES): Remove README.win32. Add README.windows.
* PLATFORMS, */PLATFORMS: List the 32-bit mingw and MSVC machine.
* NEWS: Mention MSVC support.
2017-09-03 Bruno Haible <bruno@clisp.org>
Don't use symbolic links for .h files.
MSVC 14 does not follow the symbolic links set by Cygwin's 'ln -s'.
* trampoline/Makefile.in (LN_S): Remove variable.
* callback/trampoline_r/Makefile.in (LN_S): Remove variable.
* callback/Makefile.in (INCLUDES): Add an -I option for vacall_r.h.
(LN_S): Remove variable.
(vacall_r.h, trampoline_r.h): Remove targets.
(callback-libapi.lo): Use explicit -I option for trampoline_r.h. Update
dependencies.
(test1.o, minitests.o, minitests.s, minitests-c++.o, tests.o, tests.s):
Update dependencies.
(MOSTLYCLEANFILES): Remove vacall_r.h, trampoline_r.h.
* configure.ac: Don't invoke CL_PROG_LN_S.
2017-09-03 Bruno Haible <bruno@clisp.org>
Remove special build infrastructure for mingw. The generic one works.
* avcall/Makefile.maint (avcall-i386-mingw32.c): Remove target.
(totally-clean): Don't remove avcall-i386-mingw32.c.
* avcall/Makefile.mingw32: Remove file.
* avcall/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove avcall-i386-mingw32.c.
* vacall/Makefile.maint (config.h.mingw32, vacall-i386-mingw32.c):
Remove targets.
(totally-clean): Don't remove config.h.mingw32, vacall-i386-mingw32.c.
* vacall/Makefile.mingw32: Remove file.
* vacall/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.mingw32, vacall-i386-mingw32.c.
* trampoline/Makefile.maint (config.h.mingw32): Remove target.
(totally-clean): Don't remove config.h.mingw32.
* trampoline/Makefile.mingw32: Remove file.
* trampoline/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.mingw32.
* callback/vacall_r/Makefile.maint (config.h.mingw32,
vacall-i386-mingw32.c): Remove targets.
(totally-clean): Don't remove config.h.mingw32, vacall-i386-mingw32.c.
* callback/vacall_r/Makefile.mingw32: Remove file.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.mingw32, vacall-i386-mingw32.c).
* callback/trampoline_r/Makefile.maint (config.h.mingw32): Remove
target.
(totally-clean): Don't remove config.h.mingw32.
* callback/trampoline_r/Makefile.mingw32: Remove file.
* callback/trampoline_r/Makefile.in (SOURCE_FILES): Remove it.
(GENERATED_FILES): Remove config.h.mingw32.
* callback/Makefile.maint (vacall_r/config.h.mingw32,
vacall_r/vacall-i386-mingw32.c, trampoline_r/config.h.mingw32): Remove
targets.
* callback/Makefile.mingw32: Remove file.
* callback/Makefile.in (SOURCE_FILES): Remove it.
* Makefile.mingw32: Remove file.
* Makefile.in (SOURCE_FILES): Remove it.
2017-09-03 Bruno Haible <bruno@clisp.org>
Fix leftover files after "make distclean" (regression from 2017-08-27).
* avcall/Makefile.in (distclean): Also remove minitests-c++.output.*.
* vacall/Makefile.in (distclean): Likewise.
* callback/Makefile.in (DISTCLEANFILES): Add minitests-c++.output.*.
2017-08-27 Bruno Haible <bruno@clisp.org>
Enable building shared libraries on Windows.
* avcall/Makefile.in (libavcall.la): Pass option '-no-undefined' to
$(LIBTOOL_LINK).
* trampoline/Makefile.in (libtrampoline.la): Likewise.
* callback/vacall_r/Makefile.in (libvacall.la): Likewise.
* callback/trampoline_r/Makefile.in (libtrampoline.la): Likewise.
* callback/Makefile.in (libcallback.la): Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
Do proper versioning of shared libraries.
* avcall/Makefile.in (LIBAVCALL_VERSION_INFO): New variable.
(libavcall.la): Use libtool option -version-info.
* trampoline/Makefile.in (LIBTRAMPOLINE_VERSION_INFO): New variable.
(libtrampoline.la): Use libtool option -version-info.
* callback/Makefile.in (LIBCALLBACK_VERSION_INFO): New variable.
(libcallback.la): Use libtool option -version-info.
* README: Remove statement of problem. Update figures about code size.
* NEWS: Mention the change.
2017-08-27 Bruno Haible <bruno@clisp.org>
Fix warnings on 64-bit native Windows.
* testcases.c (vp_vpdpcpsp): Use %p to display the value of a pointer.
* vacall/tests.c (simulator): Likewise.
* callback/tests.c (vp_vpdpcpsp_simulator): Likewise,
2017-08-27 Bruno Haible <bruno@clisp.org>
Remove code duplication of test cases.
* testcases.c: New file, extracted from avcall/tests.c.
* Makefile.in (SOURCE_FILES): Add it.
* avcall/tests.c: Remove testcases functions. Include testcases.c
instead.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
* porting-tools/abis/README: Update.
2017-08-27 Bruno Haible <bruno@clisp.org>
avcall: Fix weakness in tests (added on 2017-01-29).
* avcall/tests.c (ll_l2ll, ll_l3ll, ll_l4ll, ll_l5ll, ll_l6ll, ll_l7ll):
Use a temporary variable of type 'long long'.
2017-08-27 Bruno Haible <bruno@clisp.org>
vacall, callback: Remove workarounds for obsolete platforms.
* vacall/tests.c: Remove workarounds for SunOS 4 cc, gcc-2.5, gcc-2.7.x.
* callback/tests.c: Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
Add tests that verify the C++ support.
* Makefile.maint (GNULIB_MODULES): Add ansi-c++-opt.
* configure.ac: Invoke gl_PROG_ANSI_CXX. Set IF_CXX.
* avcall/minitests-c++.cc: New file.
* avcall/Makefile.in (CXX, CXXFLAGS): New variables.
(minitests-c++.o, minitests-c++): New targets.
(check): Optionally, test also minitests-c++.
(clean): Remove minitests-c++.o, minitests-c++, minitests-c++.out.
(SOURCE_FILES): Add minitests-c++.cc.
* vacall/minitests-c++.cc: New file.
* vacall/Makefile.in (CXX, CXXFLAGS): New variables.
(minitests-c++.o, minitests-c++): New targets.
(check): Optionally, test also minitests-c++.
(clean): Remove minitests-c++.o, minitests-c++, minitests-c++.out.
(SOURCE_FILES): Add minitests-c++.cc.
* trampoline/test2-c++.cc: New file.
* trampoline/test2.c (main): Don't test &main in C++ mode.
* trampoline/Makefile.in (CXX, CXXFLAGS): New variables.
(test2-c++.o, test2-c++): New targets.
(check): Optionally, test also test2-c++.
(clean): Remove test2-c++.o, test2-c++.
(SOURCE_FILES): test2-c++.cc.
* callback/minitests-c++.cc: New file.
* callback/Makefile.in (CXX, CXXFLAGS): New variables.
(minitests-c++.o, minitests-c++): New targets.
(check): Optionally, test also minitests-c++.
(MOSTLYCLEANFILES): Add minitests-c++.o, minitests-c++,
minitests-c++.out.
(SOURCE_FILES): Add minitests-c++.cc.
2017-08-27 Bruno Haible <bruno@clisp.org>
Add support for SUNWspro C++ on Solaris.
* avcall/avcall.h: Treat SUNWspro C++ like SUNWspro C.
* vacall/vacall.h: Likewise.
* callback/vacall_r/vacall_r.h: Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
Make the include files C++-safe.
* avcall/avcall.h: Add C++ guards.
(__AV_alignof): Test __IBM__ALIGNOF__. Use template-based definition
for C++.
* vacall/vacall.h: Add C++ guards.
(__VA_alignof): Test __IBM__ALIGNOF__. Use template-based definition
for C++.
* callback/vacall_r/vacall_r.h: Add C++ guards.
(__VA_alignof): Test __IBM__ALIGNOF__. Use template-based definition
for C++.
2017-08-27 Bruno Haible <bruno@clisp.org>
Make sure the tests use only the public include files.
* avcall/tests.c: Don't include config.h.
* vacall/tests.c: Don't include config.h.
* callback/tests.c: Likewise.
* callback/trampoline_r/test1.c: Likewise. Include ffcall-abi.h instead.
* avcall/Makefile.in (avcall-libapi.lo): Use $(INCLUDES).
* vacall/Makefile.in (INCLUDES): Remove -I options that reference
gnulib-lib.
(INCLUDES_WITH_GNULIB): New variable.
(vacall-libapi.o): Use INCLUDES_WITH_GNULIB instead of INCLUDES.
* trampoline/Makefile.in (INCLUDES): Remove -I options that reference
gnulib-lib.
(INCLUDES_WITH_GNULIB): New variable.
(trampoline.lo): Use INCLUDES_WITH_GNULIB instead of INCLUDES.
* callback/vacall_r/Makefile.in (INCLUDES): Remove -I options that
reference gnulib-lib.
(INCLUDES_WITH_GNULIB): New variable.
(vacall-libapi.lo): Use INCLUDES_WITH_GNULIB instead of INCLUDES.
* callback/trampoline_r/Makefile.in (INCLUDES): Remove -I options that
reference gnulib-lib.
(INCLUDES_WITH_GNULIB): New variable.
(trampoline.lo): Use INCLUDES_WITH_GNULIB instead of INCLUDES.
2017-08-27 Bruno Haible <bruno@clisp.org>
Make recognition of Solaris more robust.
* avcall/avcall.h: Test for '__sun', not for 'sun'.
* vacall/vacall.h: Likewise.
* callback/vacall_r/vacall_r.h: Likewise.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
avcall: Align field names.
* avcall/avcall-alist.h (__av_alist): Rename field 'farg' to 'fargs'.
* avcall/avcall-internal.h (_av_float): Update.
* avcall/avcall-mipsn32.c (avcall_call): Likewise.
* avcall/avcall-mips64.c (avcall_call): Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
Remove support for old NeXTstep.
* avcall/avcall.h (__AV_NEXTGCC_STRUCT_RETURN): Remove enum value.
* avcall/avcall-internal.h (__av_start_struct4) [__i386__]: Remove test
for __AV_NEXTGCC_STRUCT_RETURN.
* avcall/avcall-i386.c (avcall_call): Likewise.
* avcall/PLATFORMS: Update.
* vacall/vacall.h (__VA_NEXTGCC_STRUCT_RETURN): Remove enum value.
* callback/vacall_r/vacall_r.h: Likewise.
* vacall/vacall-internal.h (__va_start_struct2) [__i386__]: Remove test
for __VA_NEXTGCC_STRUCT_RETURN.
* vacall/vacall-i386.c (vacall_receiver): Likewise.
* trampoline/trampoline.c: Don't include <mach/mach_init.h>.
* callback/trampoline_r/trampoline.c: Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
hppa: Remove support for old gcc-2.6.3.
* avcall/avcall.h (__AV_OLDGCC_STRUCT_RETURN): Remove enum value.
* avcall/avcall-internal.h (__av_reg_struct_return) [__hppa__]: Remove
test for __AV_OLDGCC_STRUCT_RETURN.
* avcall/avcall-hppa.c (avcall_call): Likewise.
* vacall/vacall.h (__VA_OLDGCC_STRUCT_RETURN): Remove enum value.
* callback/vacall_r/vacall_r.h (__VA_OLDGCC_STRUCT_RETURN): Likewise.
* vacall/vacall-internal.h (__va_reg_struct_return) [__hppa__]: Remove
test for __VA_OLDGCC_STRUCT_RETURN.
* vacall/vacall-hppa.c (vacall_receiver): Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
avcall: Evaluate __AV_ALIST_WORDS only during av_start_* macros. Part 2.
* avcall/avcall-alist.h (__av_alist) [__hppa__]: Add 'args_end' field.
* avcall/avcall-internal.h (__av_start1) [__hppa__]: Initialize it.
* avcall/avcall-hppa.c (avcall_call): Use it to reduce the use of
__AV_ALIST_WORDS.
2017-08-27 Bruno Haible <bruno@clisp.org>
avcall: Fix overflow detection bug on hppa.
* avcall/avcall-internal.h (__av_struct) [__hppa__]: Use LIST.eptr
instead of &LIST.args[0].
2017-08-27 Bruno Haible <bruno@clisp.org>
Fix build failure with --enable-shared on Solaris/SPARC with cc.
* common/asm-sparc.h: Test __SVR4, not __svr4__.
* common/asm-sparc.sh: Fix comment about postprocessing.
* avcall/Makefile.in (avcall-sparc.s, avcall-sparc64.s): Remove space
after '#'.
* vacall/Makefile.in (vacall-sparc.s, vacall-sparc64.s): Likewise.
* trampoline/Makefile.in (cache-sparc.s, cache-sparc64.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-sparc.s, vacall-sparc64.s):
Likewise.
* callback/trampoline_r/Makefile.in (cache-sparc.s, cache-sparc64.s):
Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
vacall: Fix build failure with gcc configured with --enable-default-pie.
Works around a GCC bug, reported at
<https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81653>.
* vacall/Makefile.devel (vacall-sparc-linux-pic.s): New target.
(vacall-sparc-macro.S): Combine vacall-sparc-linux.s and
vacall-sparc-linux-pic.s in one file.
(vacall-sparc64-linux-pic.s): New target.
(vacall-sparc64-macro.S): Combine vacall-sparc64-linux.s and
vacall-sparc64-linux-pic.s in one file.
* vacall/Makefile.in (SOURCE_FILES): Add vacall-sparc-linux-pic.s,
vacall-sparc64-linux-pic.s.
2017-08-27 Bruno Haible <bruno@clisp.org>
mips: Avoid warning about undeclared function 'cacheflush' on Linux.
* trampoline/trampoline.c: On Linux, include <sys/cachectl.h>, not
<asm/cachectl.h>.
* callback/trampoline_r/trampoline.c: Likewise.
2017-08-27 Bruno Haible <bruno@clisp.org>
vacall: Fix struct returns on mips (o32 ABI).
* vacall/vacall-mips.c (vacall_receiver): Return the struct return
address in register $2.
2017-08-27 Bruno Haible <bruno@clisp.org>
ia64: Test __GNUC__ only in av/va_start_* (regression from 2017-07-30).
* avcall/avcall.h (__AV_OLDGCC_STRUCT_ARGS): New enum item.
(__AV_STRUCT_ARGS): Use it.
* avcall/avcall-internal.h (__av_struct) [__ia64__]: Test flag
__AV_OLDGCC_STRUCT_ARGS, not __GNUC__.
* vacall/vacall.h (__VA_OLDGCC_STRUCT_ARGS): New enum item.
(__VA_STRUCT_ARGS): Use it.
* callback/vacall_r/vacall_r.h: Likewise.
* vacall/vacall-internal.h (__va_arg_struct): Test flag
__VA_OLDGCC_STRUCT_ARGS, not __GNUC__.
2017-08-27 Bruno Haible <bruno@clisp.org>
Fix "make check" failure on Linux/mips (regression from 2017-07-30).
* ffcall-abi.h: For mipsn32, test _MIPS_SIM, because <sgidefs.h> defines
both _ABIO32 and _ABIN32.
2017-07-31 Bruno Haible <bruno@clisp.org>
Fix preprocessor warning "does not give a valid preprocessing token".
Reported by Reini Urban at <https://savannah.gnu.org/support/?109280>.
* common/asm-arm.sh: Don't put a colon inside the C() or L() argument.
* common/asm-i386.sh: Likewise.
* common/asm-m68k.sh: Likewise.
* common/asm-sparc.sh: Likewise.
* common/asm-x86_64.sh: Likewise.
* common/asm-arm.h (FUNBEGIN): Don't put a colon inside the C()
argument.
* common/asm-i386.hh (FUNBEGIN): Likewise.
* common/asm-m68k.h (FUNBEGIN): Likewise.
* common/asm-sparc.h (FUNBEGIN): Likewise.
* common/asm-x86_64.h (FUNBEGIN): Likewise.
2017-07-31 Bruno Haible <bruno@clisp.org>
Fix preprocessor warning "Unknown preprocessing directive".
* common/asm-hppa.sh: Eliminate #APP, #NO_APP lines.
* common/asm-powerpc.sh: Likewise.
2017-07-31 Bruno Haible <bruno@clisp.org>
trampoline_r: Rework API.
* callback/trampoline_r/trampoline_r.h (trampoline_r_address,
trampoline_r_data0, trampoline_r_data1): Change signatures.
* callback/trampoline_r/trampoline.c (trampoline_r_address,
trampoline_r_data0, trampoline_r_data1): Update accordingly.
* callback/trampoline_r/test2.c: Update.
* callback/callback-libapi.c (is_callback): Likewise.
2017-07-31 Bruno Haible <bruno@clisp.org>
vacall: Fix build error on IRIX with cc (regression from 2017-07-30).
* vacall/vacall-internal.h (__va_arg_adjusted, __va_arg_struct): Cast
result of __va_arg_leftadjusted and __va_arg_rightadjusted to 'void*'.
2017-07-31 Bruno Haible <bruno@clisp.org>
Fix "make check" failure on arm (regression from 2017-07-30).
* vacall/vacall-internal.h (__va_alist): Move the 'filler1' field right
before the 'tmp' field.
* callback/vacall_r/vacall_r.h (vacall_alist): Add 'filler1' field
between 'flags' and 'tmp' fields.
2017-07-31 Bruno Haible <bruno@clisp.org>
Fix build error (regression from 2017-07-30).
* vacall/Makefile.in (INCLUDES): Add -I options for <stdnoreturn.h>.
* callback/vacall_r/Makefile.in (INCLUDES): Likewise.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall: Polish Makefile.in.
* vacall/Makefile.in (vacall-x86_64-x32.o): Remove spurious reference to
LIBTOOL_COMPILE.
2017-07-30 Bruno Haible <bruno@clisp.org>
m68k: Fix callback test crash on Linux.
* avcall/Makefile.in (avcall-m68k.s): Use the .S file in Motorola
syntax (cross-compiled for m68k-linux), not the one in MIT syntax
(cross-compiled for m68k-sun).
* vacall/Makefile.in (vacall-m68k.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-m68k.s): Likewise.
* avcall/PLATFORM, NEWS: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
m68k: Fix build failure on Linux.
* common/asm-m68k.sh: In mit syntax, recognize 'pc' as a register name.
2017-07-30 Bruno Haible <bruno@clisp.org>
Limit the exported symbols of the installed shared libraries.
* avcall/Makefile.in (LIBAVCALL_EXPORTED_SYMBOLS_REGEX): New variable.
(libavcall.la): Use libtool's -export-symbols-regex option.
* trampoline/Makefile.in (LIBTRAMPOLINE_EXPORTED_SYMBOLS_REGEX): New
variable.
(libtrampoline.la): Use libtool's -export-symbols-regex option.
* callback/Makefile.in (LIBCALLBACK_EXPORTED_SYMBOLS_REGEX): New
variable.
(libcallback.la): Use libtool's -export-symbols-regex option.
2017-07-30 Bruno Haible <bruno@clisp.org>
Ensure source compatibility with existing versions of GNU clisp, part 3.
* vacall/vacall-internal.h (__va_alist): Move the 'flags' and 'tmp'
fields to the beginning.
* callback/vacall_r/vacall_r.h (vacall_alist): When used by GNU clisp,
declare 'flags' and 'tmp' members.
2017-07-30 Bruno Haible <bruno@clisp.org>
Ensure source compatibility with existing versions of GNU clisp, part 2.
* avcall/avcall-alist.h (__av_alist): Move the 'flags' field to the
beginning.
* avcall/avcall.h (av_alist): When used by GNU clisp, declare a 'flags'
member.
2017-07-30 Bruno Haible <bruno@clisp.org>
Ensure source compatibility with existing versions of GNU clisp, part 1.
* avcall/avcall-libapi.c (__builtin_avcall): New dummy function.
* callback/callback-libapi.c (trampoline_r_data0): New dummy function.
2017-07-30 Bruno Haible <bruno@clisp.org>
Remove copied files from callback/vacall_r/.
* callback/vacall_r/Makefile.devel (vacall-*.s): Compile
../../vacall/vacall-*.c directly.
* autogen.sh: Don't invoke target 'copied-files' in callback/vacall_r/.
* Makefile.devel (precompiled): Likewise.
* Makefile.in (COPIED_FILES): Remove callback/vacall_r/*.
* callback/vacall_r/Makefile.maint (COPIED_FILES): Remove variable.
(copied-files): Remove target.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Remove vacall-*.c.
2017-07-30 Bruno Haible <bruno@clisp.org>
callback: Allow for binary-compatible future changes of main API.
* callback/callback.h: Renamed from callback/callback.h.in.
Don't include trampoline_r.h.
(callback_t, __TR_function): New types.
(callback_function_t): Renamed from __VA_function.
(alloc_callback, free_callback, is_callback, callback_address,
callback_data): Declare as functions, not as macros.
* callback/callback-libapi.c: New file.
* configure.ac: Don't create callback/callback.h.
* callback/Makefile.in (LIBTOOL_COMPILE): New variable.
(callback.h): Remove target
(callback-libapi.lo): New target.
(libcallback.la): Include it.
(install-lib, install, installdirs, uninstall): Don't recurse into
'trampoline_r' directory.
(test1.o, minitests.o, minitests.s, tests.o, tests.s): Update
dependency.
(MOSTLYCLEANFILES): Remove callback.h.
(SOURCE_FILES): Add callback.h, callback-libapi.c. Remove callback.h.in.
* callback/test1.c (function): Remove type.
(main): Remove a cast.
* callback/tests.c (main): Use the type 'callback_t'.
* Makefile.in (DISTCLEANFILES): Update stamp file list.
* NEWS: Mention the improvement.
2017-07-30 Bruno Haible <bruno@clisp.org>
callback: Remove version number from trampoline_r.h.
Rationale: It is already present in callback.h.
* callback/trampoline_r/trampoline_r.h: Renamed from
callback/trampoline_r/trampoline_r.h.in.
(LIBFFCALL_VERSION): Remove macro.
* configure.ac: Don't create callback/trampoline_r/trampoline_r.h.
* callback/trampoline_r/Makefile.in (trampoline_r.h): Remove target.
(trampoline.lo, test1.o, test2.o): Update dependencies.
(install-lib, install): Update.
(distclean): Don't remove trampoline_r.h.
(SOURCE_FILES): Add trampoline_r.h. Remove trampoline_r.h.in.
* callback/Makefile.in (trampoline_r.h): Link to
$(srcdir)/trampoline_r/trampoline_r.h.
* Makefile.in (DISTCLEANFILES): Update stamp file list.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall, callback: Allow compiler optimizations regarding noreturn.
* Makefile.maint (GNULIB_MODULES): Add 'stdnoreturn'.
* vacall/vacall-libapi.c: Include <stdnoreturn.h>.
(__va_struct_buffer_t): Moved to here.
(vacall_struct_buffer): Declare static.
(vacall_error_type_mismatch, vacall_error_struct_too_large): Declare
static and noreturn.
* callback/vacall_r/vacall-libapi.c: Likewise.
* vacall/vacall-internal.h (__va_start_struct, __va_return): Update.
(vacall_error_type_mismatch, vacall_error_struct_too_large,
__va_struct_buffer_t, vacall_struct_buffer): Remove declarations.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall, callback: Move copyright notice up.
* vacall/vacall.h: Put double-inclusion guard after copyright header.
* callback/vacall_r/vacall_r.h: Likewise.
2017-07-30 Bruno Haible <bruno@clisp.org>
callback: Allow for binary-compatible future changes of __va_* macros.
* callback/vacall_r/vacall_r.h: New file, extracted from
callback/vacall_r/vacall_r.h.in. Include <stddef.h>, ffcall-abi.h.
(vacall_*): Define to symbols that start with 'callback_'.
(va_alist): Define als pointer to 'struct vacall_alist'.
(vacall_start, vacall_start_struct, vacall_arg_char, vacall_arg_schar,
vacall_arg_uchar, vacall_arg_short, vacall_arg_ushort, vacall_arg_int,
vacall_arg_uint, vacall_arg_long, vacall_arg_ulong, vacall_arg_longlong,
vacall_arg_ulonglong, vacall_arg_float, vacall_arg_double,
vacall_arg_ptr, vacall_arg_struct, vacall_return_void,
vacall_return_char, vacall_return_schar, vacall_return_uchar,
vacall_return_short, vacall_return_ushort, vacall_return_int,
vacall_return_uint, vacall_return_long, vacall_return_ulong,
vacall_return_longlong, vacall_return_ulonglong, vacall_return_float,
vacall_return_double, vacall_return_ptr, vacall_return_struct): New
declarations.
(va_start_void, va_start_char, va_start_schar, va_start_uchar,
va_start_short, va_start_ushort, va_start_int, va_start_uint,
va_start_long, va_start_ulong, va_start_longlong, va_start_ulonglong,
va_start_float, va_start_double, va_start_ptr, _va_start_struct,
va_arg_char, va_arg_schar, va_arg_uchar, va_arg_short, va_arg_ushort,
va_arg_int, va_arg_uint, va_arg_long, va_arg_ulong, va_arg_longlong,
va_arg_ulonglong, va_arg_float, va_arg_double, va_arg_ptr,
va_arg_struct, _va_arg_struct, va_return_void, va_return_char,
va_return_schar, va_return_uchar, va_return_short, va_return_ushort,
va_return_int, va_return_uint, va_return_long, va_return_ulong,
va_return_longlong, va_return_ulonglong, va_return_float,
va_return_double, va_return_ptr, _va_return_struct): Define in terms of
these functions.
* callback/vacall_r/vacall-libapi.c: Include vacall-internal.h instead
of vacall_r.h.in.
(vacall_start, vacall_start_struct, vacall_arg_char, vacall_arg_schar,
vacall_arg_uchar, vacall_arg_short, vacall_arg_ushort, vacall_arg_int,
vacall_arg_uint, vacall_arg_long, vacall_arg_ulong, vacall_arg_longlong,
vacall_arg_ulonglong, vacall_arg_float, vacall_arg_double,
vacall_arg_ptr, vacall_arg_struct, vacall_return_void,
vacall_return_char, vacall_return_schar, vacall_return_uchar,
vacall_return_short, vacall_return_ushort, vacall_return_int,
vacall_return_uint, vacall_return_long, vacall_return_ulong,
vacall_return_longlong, vacall_return_ulonglong, vacall_return_float,
vacall_return_double, vacall_return_ptr, vacall_return_struct): New
functions.
* vacall/vacall-internal.h: If REENTRANT, include vacall_r.h.
* callback/vacall_r/vacall_r.h.in: Remove file.
* vacall/vacall-*.c: Include vacall-internal.h instead of vacall_r.h.in.
* vacall/vacall-libapi.c: Likewise.
* callback/vacall_r/Makefile.devel (GCCFLAGS): Add -I option for
ffcall-abi.h.
(vacall-*.s): Update dependencies. Pass -I options to gcc.
* configure.ac: Don't create callback/vacall_r/vacall_r.h.
* callback/vacall_r/Makefile.maint (vacall_r.h.msvc,
vacall_r.h.mingw32): Remove targets.
(totally-clean): Don't remove vacall_r.h.msvc, vacall_r.h.mingw32.
* callback/Makefile.maint (vacall_r/vacall_r.h.msvc,
vacall_r/vacall_r.h.mingw32): Remove targets.
* callback/vacall_r/Makefile.in (INCLUDES): Add -I options for
vacall-internal.h and ffcall-abi.h.
(all): Don't depend on vacall_r.h.
(vacall-libapi.lo): Update dependencies. Pass -DREENTRANT option.
(install-lib, install): Update.
(distclean): Don't remove vacall_r.h.
(SOURCE_FILES): Add vacall_r.h. Remove vacall_r.h.in.
(GENERATED_FILES): Remove vacall_r.h.mingw32, vacall_r.h.msvc.
* callback/Makefile.in (INCLUDES): Add -I option for ffcall-abi.h.
(vacall_r.h): Link to $(srcdir)/vacall_r/vacall_r.h.
* Makefile.in (DISTCLEANFILES): Update.
* porting-tools/abis/README: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall: Allow for binary-compatible future changes of the __va_* macros.
* vacall/vacall.h: New file, extracted from vacall/vacall.h.in.
Include <stddef.h>, ffcall-abi.h.
(va_alist): Define als pointer to 'struct vacall_alist'.
(vacall_start, vacall_start_struct, vacall_arg_char, vacall_arg_schar,
vacall_arg_uchar, vacall_arg_short, vacall_arg_ushort, vacall_arg_int,
vacall_arg_uint, vacall_arg_long, vacall_arg_ulong, vacall_arg_longlong,
vacall_arg_ulonglong, vacall_arg_float, vacall_arg_double,
vacall_arg_ptr, vacall_arg_struct, vacall_return_void,
vacall_return_char, vacall_return_schar, vacall_return_uchar,
vacall_return_short, vacall_return_ushort, vacall_return_int,
vacall_return_uint, vacall_return_long, vacall_return_ulong,
vacall_return_longlong, vacall_return_ulonglong, vacall_return_float,
vacall_return_double, vacall_return_ptr, vacall_return_struct): New
declarations.
(va_start_void, va_start_char, va_start_schar, va_start_uchar,
va_start_short, va_start_ushort, va_start_int, va_start_uint,
va_start_long, va_start_ulong, va_start_longlong, va_start_ulonglong,
va_start_float, va_start_double, va_start_ptr, _va_start_struct,
va_arg_char, va_arg_schar, va_arg_uchar, va_arg_short, va_arg_ushort,
va_arg_int, va_arg_uint, va_arg_long, va_arg_ulong, va_arg_longlong,
va_arg_ulonglong, va_arg_float, va_arg_double, va_arg_ptr,
va_arg_struct, _va_arg_struct, va_return_void, va_return_char,
va_return_schar, va_return_uchar, va_return_short, va_return_ushort,
va_return_int, va_return_uint, va_return_long, va_return_ulong,
va_return_longlong, va_return_ulonglong, va_return_float,
va_return_double, va_return_ptr, _va_return_struct): Define in terms of
these functions.
* vacall/vacall-libapi.c: Include vacall-internal.h instead of
vacall.h.in.
(vacall_start, vacall_start_struct, vacall_arg_char, vacall_arg_schar,
vacall_arg_uchar, vacall_arg_short, vacall_arg_ushort, vacall_arg_int,
vacall_arg_uint, vacall_arg_long, vacall_arg_ulong, vacall_arg_longlong,
vacall_arg_ulonglong, vacall_arg_float, vacall_arg_double,
vacall_arg_ptr, vacall_arg_struct, vacall_return_void,
vacall_return_char, vacall_return_schar, vacall_return_uchar,
vacall_return_short, vacall_return_ushort, vacall_return_int,
vacall_return_uint, vacall_return_long, vacall_return_ulong,
vacall_return_longlong, vacall_return_ulonglong, vacall_return_float,
vacall_return_double, vacall_return_ptr, vacall_return_struct): New
functions.
* vacall/vacall-internal.h: New file, extracted from vacall/vacall.h.in.
(__VA_ALIST_WORDS): Fix comment.
(__va_alist): Declare as 'struct vacall_alist'.
(__va_start): Add FLAGS argument.
(__va_start_struct): Renamed from _va_start_struct. Add FLAGS argument.
(_va_arg_*): Renamed from va_arg_*.
(_va_arg_ptr): Renamed from va_arg_ptr. Remove TYPE argument.
(_va_return_*): Renamed from va_return_*.
(_va_return_ptr): Renamed from va_return_ptr. Remove TYPE argument.
(__va_return_struct): Renamed from _va_return_struct.
* vacall/vacall.h.in: Remove file.
* configure.ac: Don't create vacall.h by substitution.
* vacall/vacall-*.c: Include vacall-internal.h instead of vacall.h.in.
* vacall/Makefile.devel (GCCFLAGS): Add -I option for ffcall-abi.h.
(vacall-*.s): Update dependencies.
(tests-*.s): Likewise. No more need to symlink vacall.h.
* vacall/Makefile.maint (vacall.h.msvc, vacall.h.mingw32): Remove
targets.
(totally-clean): Don't remove them.
* vacall/Makefile.in (INCLUDES): Add -I option for ffcall-abi.h.
(vacall-libapi.o): Update dependencies.
(install): Update.
(minitests.o, minitests.s, tests.o, tests.s): Update dependency.
(distclean): Don't remove vacall.h.
(SOURCE_FILES): Add vacall.h, vacall-internal.h. Remove vacall.h.in.
(GENERATED_FILES): Remove vacall.h.mingw32, vacall.h.msvc.
* Makefile.in (DISTCLEANFILES): Update stamp file list.
* vacall/README: Update.
* porting-tools/abis/README: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall: Remove special optimization of va_return_struct macro.
* vacall/vacall.h.in (va_return_struct): Define through
_va_return_struct.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall, callback: Prefix all exported symbols at linker level.
* vacall/vacall-*.c: Define vacall_receiver instead of __vacall,
callback_receiver instead of __vacall_r,
callback_get_receiver instead of get__vacall_r.
* vacall/vacall-libapi.c: Include config.h first.
(vacall_receiver): Renamed from __vacall.
(vacall_struct_buffer): Renamed from __va_struct_buffer.
(vacall_error_type_mismatch): Renamed from __va_error1.
(vacall_error_struct_too_large): Renamed from __va_error2.
* vacall/vacall.h.in (_va_start_struct, __va_return): Update.
(vacall_error_type_mismatch): Renamed from __va_error1.
(vacall_error_struct_too_large): Renamed from __va_error2.
(vacall_struct_buffer): Renamed from __va_struct_buffer.
* callback/vacall_r/vacall-libapi.c: Include config.h first.
(vacall_struct_buffer): Renamed from __va_struct_buffer.
(vacall_error_type_mismatch): Renamed from __va_error1.
(vacall_error_struct_too_large): Renamed from __va_error2.
* callback/vacall_r/vacall_r.h.in (vacall_error_type_mismatch,
vacall_error_struct_too_large, vacall_structcpy, vacall_struct_buffer):
Define to symbols that start with 'callback_'.
(_va_start_struct, __va_return): Update.
(callback_receiver): Renamed from __vacall_r.
(callback_get_receiver): Renamed from get__vacall_r.
(vacall_error_type_mismatch): Renamed from __va_error1.
(vacall_error_struct_too_large): Renamed from __va_error2.
(vacall_struct_buffer): Renamed from __va_struct_buffer.
* callback/callback.h.in: Update.
* callback/trampoline_r/trampoline_r.h.in (alloc_trampoline_r,
free_trampoline_r, is_trampoline_r, trampoline_r_address,
trampoline_r_data0, trampoline_r_data1): Define to symbols that start
with 'callback_trampoline_'.
* callback/elf-hack.txt: Update.
* porting-tools/abis/call-used-registers.txt: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
callback: Use distinct object file names in static library.
* callback/vacall_r/vacall-libapi.c: Renamed from
callback/vacall_r/misc.c.
* callback/vacall_r/Makefile.in (OBJECTS, SOURCE_FILES): Update.
(vacall-libapi.lo): Renamed from misc.lo.
* callback/Makefile.in (libcallback.la): Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
vacall: Use distinct object file names in static library.
* vacall/vacall-libapi.c: Renamed from vacall/misc.c.
* vacall/Makefile.in (OBJECTS, SOURCE_FILES): Update.
(vacall-libapi.o): Renamed from misc.o.
* vacall/README: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Modernize.
* avcall/avcall.h: Change double-include guard. Modernize copyright
header.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Allow for binary-compatible future changes of the __av_* macros.
* avcall/avcall.h: New file, extracted from avcall/avcall.h.in.
Include <stddef.h>, ffcall-abi.h.
When included from avcall-internal.h, include avcall-alist.h and add
member '_av_m_alist' in av_alist type.
(avcall_overflown, avcall_start, avcall_start_struct, avcall_arg_long,
avcall_arg_ulong, avcall_arg_ptr, avcall_arg_longlong,
avcall_arg_ulonglong, avcall_arg_float, avcall_arg_double,
avcall_arg_struct): New declarations.
(av_overflown, av_start_void, av_start_char, av_start_schar,
av_start_uchar, av_start_short, av_start_ushort, av_start_int,
av_start_uint, av_start_long, av_start_ulong, av_start_longlong,
av_start_ulonglong, av_start_float, av_start_double, av_start_ptr,
_av_start_struct, av_char, av_schar, av_short, av_int, av_long,
av_uchar, av_ushort, av_uint, av_ulong, av_ptr, av_longlong,
av_ulonglong, av_float, av_double, av_struct, _av_struct, av_call):
Define in terms of these functions.
* avcall/avcall-libapi.c: New file.
* avcall/avcall-alist.h: New file, extracted from avcall/avcall.h.in.
* avcall/avcall-internal.h: New file, extracted from avcall/avcall.h.in.
(__av_start): Add LIST_ARGS_END and FLAGS arguments.
(__av_start1, __av_start_init_eptr): Add LIST_ARGS_END argument.
(__av_start_struct): Add LIST_ARGS, LIST_ARGS_END, FLAGS arguments.
(__av_long): Renamed from _av_long.
(__av_ulong): Renamed from _av_ulong.
(__av_ptr): Renamed from _av_ptr. Remove TYPE argument.
(__av_arg_longlong): Renamed from __av_longlong.
(__av_longlong): Renamed from _av_longlong.
(__av_ulonglong): Renamed from _av_ulonglong.
* avcall/avcall.h.in: Remove file.
* configure.ac: Don't create avcall.h by substitution.
* avcall/avcall-*.c: Include avcall-internal.h instead of avcall.h.in.
(avcall_call): Change argument type to 'av_alist*'.
* avcall/Makefile.devel (GCCFLAGS): Add -I option for ffcall-abi.h.
(avcall-*.s): Update dependencies.
(tests-*.s): Likewise. No more need to symlink avcall.h.
* avcall/Makefile.maint (avcall.h.msvc, avcall.h.mingw32): Remove
targets.
(totally-clean): Don't remove them.
* avcall/Makefile.in (INCLUDES): Add -I option for ffcall-abi.h.
(OBJECTS): Add avcall-libapi.lo.
(avcall-libapi.lo): New target.
(install-lib, install): Update.
(minitests.o, minitests.s, tests.o, tests.s): Update dependency.
(distclean): Don't remove avcall.h.
(SOURCE_FILES): Add avcall.h, avcall-internal.h, avcall-alist.h,
avcall-libapi.c. Remove avcall.h.in.
(GENERATED_FILES): Remove avcall.h.mingw32, avcall.h.msvc.
* Makefile.in (DISTCLEANFILES): Update stamp file list.
* avcall/README: Update.
* porting-tools/abis/README: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Allow for binary-compatible future changes of __av_alist.
* avcall/avcall.h.in (__AV_ALIST_SIZE_BOUND): New macro.
(__av_alist_verify): New verification.
(av_alist): Use it to allocate room.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Separate the fixed-size part from the variable part of av_alist.
* avcall/avcall.h.in (__av_alist): Renamed from av_alist. Add 'args'
field as a pointer.
(av_alist): New type.
(_av_overflown): Renamed from av_overflown.
(av_overflown): New macro.
(__av_start): Add LIST_ARGS argument.
(av_start_*, _av_start_struct): Update accordingly.
(_av_long): Renamed from av_long.
(_av_ulong): Renamed from av_ulong.
(_av_ptr): Renamed from av_ptr.
(av_long, av_ulong, av_ptr): New macros.
(_av_longlong): Renamed from av_longlong.
(_av_ulonglong): Renamed from av_ulonglong.
(av_longlong, av_ulonglong): New macros.
(_av_float): Renamed from av_float.
(_av_double): Renamed from av_double.
(av_float, av_double): New macros.
(av_struct, _av_struct, av_call): Update.
(avcall_call): Take an '__av_alist*' parameter.
* avcall/avcall-*.c (avcall_call): Take an '__av_alist*' parameter.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Remove unused macro argument TYPE.
* avcall/avcall.h.in (__av_struct_copy, __av_struct_leftadjusted,
__av_struct_rightadjusted, __av_struct): Remove TYPE argument.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Remove special optimization of av_struct macro.
* avcall/avcall.h.in (av_struct): Take the address of VAL.
(__av_struct_assign): Remove macro.
(__av_struct, __av_struct_leftadjusted, __av_struct_rightadjusted):
Remove ASSIGN argument; use __av_struct_copy instead.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Evaluate __AV_ALIST_WORDS only during av_start_* macros. Part 1.
* avcall/avcall.h.in (av_alist): Enable 'eptr' field on all platforms.
(__av_eptr): Remove macro. Use (LIST).eptr eveywhere instead.
(__av_start_init_eptr): New macro.
(__av_start): Invoke it.
(__av_start1): Don't initialize (LIST).eptr here.
2017-07-30 Bruno Haible <bruno@clisp.org>
avcall: Prefix all exported symbols at linker level with 'avcall_'.
* avcall/avcall.h.in (avcall_call): Renamed from __builtin_avcall.
* avcall/avcall-*.c: Update accordingly.
* avcall/DOC: Likewise.
* avcall/avcall.3: Likewise.
* avcall/avcall.html: Likewise.
2017-07-30 Bruno Haible <bruno@clisp.org>
trampoline: Rework API.
* trampoline/trampoline.h: Add C++ guards. Add comments.
(trampoline_function_t): Renamed from __TR_function.
(alloc_trampoline, trampoline_address, trampoline_variable,
trampoline_data): Change signatures.
* trampoline/trampoline.c: Update accordingly.
* trampoline/test1.c (function): Remove type.
(main): Update.
* trampoline/test2.c (function): Remove type.
(main): Update.
* NEWS: Mention the changes.
2017-07-30 Bruno Haible <bruno@clisp.org>
trampoline: Restructure include file.
* trampoline/trampoline.h: Renamed from trampoline/trampoline.h.in.
* configure.ac: Don't create trampoline.h by substitution.
* trampoline/Makefile.in (trampoline.h): Remove target.
(trampoline.lo, test1.o, test2.o): Update dependency.
(install, SOURCE_FILES): Update.
(distclean): Don't remove trampoline.h.
* trampoline/README: Update.
* Makefile.in (DISTCLEANFILES): Update stamp file list.
2017-07-30 Bruno Haible <bruno@clisp.org>
Move ABI indicator macro definitions to a separate include file.
Rationale: Prepare for getting rid of most .h.in -> .h substitutions.
* ffcall-abi.h: New file.
* Makefile.in (install, uninstall): Install/uninstall ffcall-abi.h.
(SOURCE_FILES): Add ffcall-abi.h.
* porting-tools/abis/predefines.c: New file.
* porting-tools/abis/README: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
Move libffcall version number to a separate include file.
Rationale: Prepare for getting rid of most .h.in -> .h substitutions.
* ffcall-version.in.h: New file.
* configure.ac: Invoke AC_CONFIG_HEADERS for ffcall-version.h.
* avcall/avcall.h.in (LIBFFCALL_VERSION): Remove definition. Include
ffcall-version.h instead.
* vacall/vacall.h.in: Likewise.
* trampoline/trampoline.h.in: Likewise.
* callback/callback.h.in: Likewise.
* callback/vacall_r/vacall_r.h.in (LIBFFCALL_VERSION): Remove
definition.
* callback/trampoline_r/trampoline_r.h.in (LIBFFCALL_VERSION): Likewise.
* dummy/ffcall-version.h: New file.
* avcall/Makefile.devel (GCCFLAGS): Add -I option to find a dummy
ffcall-version.h.
* vacall/Makefile.devel (GCCFLAGS): Likewise.
* callback/vacall_r/Makefile.devel (GCCFLAGS): Likewise.
* vacall/Makefile.maint (VERSION): Remove macro.
(vacall.h.msvc, vacall.h.mingw32): Don't substitute LIBFFCALL_VERSION.
* callback/vacall_r/Makefile.maint (VERSION): Remove macro.
(vacall_r.h.msvc, vacall_r.h.mingw32): Don't substitute
LIBFFCALL_VERSION.
* Makefile.in (ffcall-version.h): New target.
(install, installdirs, uninstall): Install/uninstall ffcall-version.h.
(DISTCLEANFILES): Add ffcall-version.h. Update stamp file list.
(SOURCE_FILES): Add ffcall-version.in.h, dummy/ffcall-version.h.
2017-07-30 Bruno Haible <bruno@clisp.org>
Remove configure test for 'long long'. Assume the compiler has it.
Rationale: All compilers nowadays have 'long long', for years.
* configure.ac: Don't invoke AC_TYPE_LONG_LONG_INT.
* avcall/avcall.h.in (HAVE_LONG_LONG_INT): Remove macro.
* vacall/vacall.h.in (HAVE_LONG_LONG_INT): Likewise.
* callback/vacall_r/vacall_r.h.in (HAVE_LONG_LONG_INT): Likewise.
* vacall/Makefile.devel (GCCFLAGS): Remove -DHAVE_LONG_LONG_INT.
* callback/vacall_r/Makefile.devel (GCCFLAGS): Likewise.
* avcall/tests.c: Remove test for HAVE_LONG_LONG_INT.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
* porting-tools/abis/README: Update.
2017-07-30 Bruno Haible <bruno@clisp.org>
Remove unused configure test AC_C_CHAR_UNSIGNED.
* vacall/vacall.h.in (__CHAR_UNSIGNED__): Remove unuseed macro.
* callback/vacall_r/vacall_r.h.in (__CHAR_UNSIGNED__): Likewise.
* configure.ac: Don't invoke AC_C_CHAR_UNSIGNED.
2017-07-30 Bruno Haible <bruno@clisp.org>
Don't depend on FFCALL_IREG_FLOAT_RETURN configure result.
Rationale: The installed .h files should be compiler independent.
* avcall/avcall.h.in (__IREG_FLOAT_RETURN__): Remove macro. Assume it is
not defined on m68k.
* vacall/vacall.h.in (__IREG_FLOAT_RETURN__): Likewise.
* callback/vacall_r/vacall_r.h.in (__IREG_FLOAT_RETURN__): Likewise.
2017-07-30 Bruno Haible <bruno@clisp.org>
Don't depend on FFCALL_SMALL_STRUCT_RETURN configure result.
Rationale: The installed .h files should be compiler independent.
* avcall/avcall.h.in (__SMALL_STRUCT_RETURN__): Remove macro. Use
explicit ABI conditional instead.
* vacall/vacall.h.in (__SMALL_STRUCT_RETURN__): Likewise.
* callback/vacall_r/vacall_r.h.in (__SMALL_STRUCT_RETURN__): Likewise.
* avcall/Makefile.maint (avcall.h.msvc, avcall.h.mingw32): Don't
substitute __SMALL_STRUCT_RETURN__.
* vacall/Makefile.maint (vacall.h.msvc, vacall.h.mingw32): Likewise.
* callback/vacall_r/Makefile.maint (vacall_r.h.msvc,
vacall_r.h.mingw32): Likewise.
2017-07-30 Bruno Haible <bruno@clisp.org>
Move a file.
* avcall/port-structs.c: Moved to porting-tools/abis/.
* porting-tools/abis/README: Mention it.
2017-07-30 Bruno Haible <bruno@clisp.org>
Remove support for old PCC struct return convention.
It is not reentrant and therefore a fortiori not multithread-safe.
* m4/pccstruct.m4: Remove file.
* Makefile.in (SOURCE_FILES): Remove it.
* configure.ac: Remove FFCALL_PCC_STRUCT_RETURN invocation.
* avcall/avcall.h.in (__PCC_STRUCT_RETURN__): Remove macro.
(__AV_PCC_STRUCT_RETURN): Remove enum value.
(__av_start_struct1): Remove macro.
(_av_start_struct): Use __av_start_struct2 instead.
* avcall/avcall-*.c: Remove support for __AV_PCC_STRUCT_RETURN flag.
* vacall/vacall.h.in (__PCC_STRUCT_RETURN__): Remove macro.
(__VA_PCC_STRUCT_RETURN): Remove enum value.
(_va_start_struct): Update accordingly.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-*.c: Remove support for __VA_PCC_STRUCT_RETURN flag.
* vacall/misc.c (__va_error2): Update error message.
* callback/vacall_r/misc.c (__va_error2): Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
ia64: Make vacall code more robust.
* vacall/vacall-ia64.c: Use a split struct to allocate room for the
8 leading words in the callee's stack.
* porting-tools/abis/stack-frame.txt: Mention the change.
2017-07-22 Bruno Haible <bruno@clisp.org>
alpha: Make vacall code more robust.
* vacall/vacall-alpha.c: Use a split struct to allocate room for the
6 leading words in the callee's stack.
* porting-tools/abis/stack-frame.txt: Mention the change.
2017-07-22 Bruno Haible <bruno@clisp.org>
alpha: Make vacall code more maintainable.
* vacall/vacall.h.in (__va_alist, va_arg_double, va_arg_float) [alpha]:
Add fields 'farg_offset', 'farg'.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-alpha.c (__vacall): Don't allocate the fargs in the
'locals' struct. Initialize 'farg_offset' field.
2017-07-22 Bruno Haible <bruno@clisp.org>
mipsn32, mips64: Remove unused field.
* vacall/vacall.h.in (__va_alist) [__mipsn32__ || __mips64__]: Remove
field 'memargptr'.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-mipsn32.c (__vacall): Update accordingly.
* vacall/vacall-mips64.c (__vacall): Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
mipsn32, mips64: Make vacall code more robust.
* vacall/Makefile.devel (vacall-mipsn32eb-macro.S,
vacall-mipsn32el-macro.S, vacall-mips64eb-macro.S,
vacall-mips64el-macro.S): Remove post-processing hack.
* callback/vacall_r/Makefile.devel (vacall-mipsn32eb-macro.S,
vacall-mipsn32el-macro.S, vacall-mips64eb-macro.S,
vacall-mips64el-macro.S): Likewise.
* vacall/vacall-mipsn32.c: Use a split struct to allocate room for the
8 leading words in the callee's stack.
* vacall/vacall-mips64.c: Likewise.
* porting-tools/abis/stack-frame.txt: Mention the change.
2017-07-22 Bruno Haible <bruno@clisp.org>
mips: Don't store dynamic state in the flags.
* avcall/avcall.h.in (__AV_FLOAT_1, __AV_FLOAT_2, __AV_DOUBLE_1,
__AV_DOUBLE_2): Remove enum values.
(av_alist) [mips]: Store the number of floating-point register arguments
in fanum. Store bitmasks in farg_mask and darg_mask. Rename field
'floatarg' to 'fargs'. Rename field 'doublearg' to 'dargs'.
(__av_start1, av_float, av_double): Update implementation accordingly.
* avcall/avcall-mips.c (__builtin_avcall): Access farg_mask and
darg_mask instead of the flags.
* vacall/vacall.h.in (__VA_FLOAT_1, __VA_FLOAT_2): Remove enum values.
(__VA_REGISTER_FLOATSTRUCT_RETURN, __VA_REGISTER_DOUBLESTRUCT_RETURN):
Change values.
(__va_alist, va_arg_float, va_arg_double) [mips]: Store the number of
floating-point register arguments in fanum. Use it instead of the
__VA_FLOAT_1 flag.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-mips.c (__vacall): Update accordingly.
2017-07-22 Bruno Haible <bruno@clisp.org>
powerpc, powerpc64, ia64, x86_64: Undo premature optimization.
* vacall/vacall.h.in: Use 'fanum' field instead of 'memfargptr' field.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-ia64.c: Update accordingly.
* vacall/vacall-powerpc.c: Likewise.
* vacall/vacall-powerpc64.c: Likewise.
* vacall/vacall-x86_64.c: Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
x86_64: Undo premature optimization.
* vacall/vacall.h.in [__x86_64__]: Use 'ianum' field instead of
'memiargptr' field.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-x86_64.c (__vacall): Update accordingly.
2017-07-22 Bruno Haible <bruno@clisp.org>
x86_64: Undo premature optimization.
* avcall/avcall.h.in [__x86_64__]: Use 'ianum' field instead of 'iaptr'
field.
2017-07-22 Bruno Haible <bruno@clisp.org>
ia64, x86_64: Use symbolic constants.
* avcall/avcall.h.in (__AV_FARG_NUM) [__ia64__ || __x86_64__]:
New macro.
(av_float, av_double): Use it.
(__av_struct): Use __AV_IARG_NUM.
* vacall/vacall.h.in (__VA_FARG_NUM) [__ia64__ || __x86_64__]:
New macro.
(va_arg_float, va_arg_double): Use it.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
armhf: Fix a bug in vacall (failing tests d_d13i, f_f17l3L, d_d17l3L).
* vacall/vacall.h.in (__va_alist, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_rightadjusted, __va_arg_longlong)
[__armhf__]: Use 'iarg' and 'ianum' fields instead of 'saptr' field.
(va_arg_float, va_arg_double) [__armhf__]: Don't force all remaining
integer arguments to the stack.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-armhf.c (__vacall): Update accordingly.
2017-07-22 Bruno Haible <bruno@clisp.org>
armhf: Fix a bug in avcall (failing tests f_f17l3L, d_d17l3L).
* avcall/avcall.h.in [__armhf__]: Store integer argument count in ianum.
(__av_start1, __av_start_struct4, __av_word, __av_longlong, av_float,
av_double, __av_struct): Update implementation accordingly.
* avcall/avcall-arm.c: Add comment.
* avcall/avcall-armhf.c: Likewise.
* porting-tools/abis/stack-frame.txt: Update information.
* NEWS: Mention the fix.
2017-07-22 Bruno Haible <bruno@clisp.org>
powerpc: Make avcall code more robust.
* avcall/avcall-powerpc.c (__builtin_avcall) [_AIX]: Don't rely on a
particular stack frame layout produced by GCC. Use __builtin_alloca
instead.
* avcall/avcall-powerpc64.c (STACK_OFFSET): Remove unused macro.
2017-07-22 Bruno Haible <bruno@clisp.org>
powerpc: Don't ever access out-of-range array elements.
* avcall/avcall-powerpc.c (__builtin_avcall): Access only 8 fargs when
only 8 exist.
2017-07-22 Bruno Haible <bruno@clisp.org>
powerpc, powerpc64: Use symbolic constants.
* avcall/avcall.h.in (__AV_FARG_NUM) [__powerpc__ || __powerpc64__]:
New macro.
(av_float, av_double): Use it.
* vacall/vacall.h.in (__VA_FARG_NUM) [__powerpc__ || __powerpc64__]:
New macro.
(va_arg_float, va_arg_double): Use it.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
powerpc: Fix a bug (failing tests f_f12i, f_f13i, d_d12i, d_d13i).
* avcall/avcall.h.in [__powerpc_sysv4__]: Store integer register
arguments in iargs[] and their count in ianum.
(__av_start1, __av_start_struct4, av_long, av_ulong, av_ptr,
__av_longlong, __av_struct): Update implementation accordingly.
* avcall/avcall-powerpc.c (__builtin_avcall): Update accordingly.
Ignore farglen in the arg copy loop.
* vacall/vacall.h.in (__va_alist, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_rightadjusted, __va_arg_longlong,
va_arg_float, va_arg_double) [__powerpc_sysv4__]: Use 'ianum' field
instead of 'saptr', 'onstack' fields. Don't bump 'ianum' in
va_arg_float, va_arg_double.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-powerpc.c (__vacall): Update accordingly
* porting-tools/abis/stack-frame.txt: Fix information.
* NEWS: Mention the fix.
2017-07-22 Bruno Haible <bruno@clisp.org>
powerpc: Simplify #if expressions.
* avcall/avcall.h.in (__powerpc_aix__, __powerpc_sysv4__): New macros.
Use them in #if expressions.
* vacall/vacall.h.in: Likewise.
* callback/vacall_r/vacall_r.h.in: Likewise.
* avcall/avcall-powerpc.c: Add comments.
* vacall/vacall-powerpc.c: Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
s390, s390x: Merge common code.
* vacall/vacall.h.in (va_arg_float, va_arg_double) [s390,s390x]: Merge.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
s390: Fix a bug (failing tests f_f3i...f_f13i, d_d3i...d_d13i).
* vacall/vacall.h.in (va_arg_float, va_arg_double) [s390]: Don't bump
ianum,
* callback/vacall_r/vacall_r.h.in: Likewise.
* NEWS: Mention the fix.
2017-07-22 Bruno Haible <bruno@clisp.org>
s390: Make vacall code more similar to s390x, arm64 cases.
* vacall/vacall.h.in (__va_alist, __va_start_struct2,
__va_arg_leftadjusted, __va_arg_rightadjusted, __va_arg_adjusted,
va_arg_float, va_arg_double, __va_arg_struct) [s390]: Use 'ianum'
field instead of 'saptr', 'onstack' fields.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-s390.c: Update accordingly.
2017-07-22 Bruno Haible <bruno@clisp.org>
Add some mixed-number args boundary tests.
* avcall/tests.c (f_f17l3L, d_d17l3L): New tests.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
2017-07-22 Bruno Haible <bruno@clisp.org>
Add more mixed-number tests.
* avcall/tests.c (f_fi, ..., f_f13i, d_di, ..., d_d13i): New tests.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
2017-07-19 Bruno Haible <bruno@clisp.org>
s390: Make avcall code more robust.
* avcall/avcall-s390.c (STACK_OFFSET): Remove macro.
(__builtin_avcall): Don't rely on a particular stack frame layout
produced by GCC. Use __builtin_alloca instead.
2017-07-19 Bruno Haible <bruno@clisp.org>
s390: Make avcall code more similar to s390x, arm64, x86_64 cases.
* avcall/avcall.h.in (av_alist, __av_start_struct4, __av_word, av_long,
av_ulong, av_ptr, __av_longlong, __av_struct) [s390]: Use iargs[] array
for the first 5 general-purpose argument words, like on s390x.
(__av_struct_rightadjusted) [s390]: Remove macro.
* avcall/avcall-s390.c (__builtin_avcall): Update accordingly.
2017-07-19 Bruno Haible <bruno@clisp.org>
s390: Simplify avcall code.
* avcall/avcall.h.in (av_alist, __av_start1, __av_start_struct4,
__av_word, __av_longlong, av_float, av_double,
__av_struct_rightadjusted, __av_struct) [s390]: Use 'ianum' field
instead of 'fargwords' field.
* avcall/avcall-s390.c (__builtin_avcall): Update accordingly.
2017-07-16 Bruno Haible <bruno@clisp.org>
Allow building statically linked binaries, through LDFLAGS="-static".
* Makefile.main (libtool-imported-files): Fetch and apply patch from
<https://lists.gnu.org/archive/html/bug-libtool/2017-07/msg00000.html>:
2017-07-15 Bruno Haible <bruno@clisp.org>
* build-aux/ltmain.sh (func_mode_help, func_mode_link): In the
link mode, accept option '-static-uninstalled-libs' in place of
'-static', and make '-static' an equivalent of '-all-static'.
2017-07-07 Bruno Haible <bruno@clisp.org>
build: Avoid a hanging configure test on FreeBSD/arm64.
Seen with FreeBSD 11.1-RC1 on arm64 (under qemu 2.9.0).
* m4/codeexec.m4 (FFCALL_CODEEXEC): Avoid running the test on
FreeBSD/arm64.
2017-06-27 Bruno Haible <bruno@clisp.org>
build: Fix warning in autoconf test.
* m4/shm.m4 (CL_SHM): Include <stdlib.h>, to declare exit().
2017-06-25 Bruno Haible <bruno@clisp.org>
Add doc about ABIs and calling conventions.
* porting-tools/abis: New directory.
* common/reg-struct-return.txt: Moved to porting-tools/abis/.
* callback/call-used-registers.txt: Likewise.
2017-06-25 Bruno Haible <bruno@clisp.org>
Add doc about emulation of target platforms.
* porting-tools/emulation: New directory.
2017-06-24 Bruno Haible <bruno@clisp.org>
s390: Simplify code.
* vacall/vacall.h.in (__va_alist) [s390]: Use a counter instead of
2 pointers.
(va_arg_float, va_arg_double): Update accordingly;
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-s390.c: Update accordingly.
2017-06-24 Bruno Haible <bruno@clisp.org>
s390: Simplify code.
* avcall/avcall.h.in (av_alist) [s390]: Use a counter instead of
4 pointers. Use 2 bitmasks instead of 2 int[] arrays.
(__av_start1, av_float, av_double): Update accordingly.
* avcall/avcall-s390.c (__builtin_avcall): Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
build: Improve guesses when cross-compiling.
* m4/codeexec.m4 (FFCALL_CODEEXEC, FFCALL_CODEEXEC_PAX): When
cross-compiling, use the known autoconf test results.
* m4/mmap.m4 (FFCALL_MMAP): Likewise.
* m4/mprotect.m4 (FFCALL_MPROTECT): Likewise.
* m4/pccstruct.m4 (FFCALL_PCC_STRUCT_RETURN): Likewise.
* m4/shm.m4 (CL_SHM): Likewise.
* m4/smallstruct.m4 (FFCALL_SMALL_STRUCT_RETURN): Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
Bump version number.
* VERSION: Set to 2.0.
* NEWS: Open new section for 2.0.
2017-06-24 Bruno Haible <bruno@clisp.org>
build: Use decimal notation for the version number.
* VERSION: Set to 1.13.
* configure.ac: Simplify AC_CONFIG_HEADERS invocations. Define
LIBFFCALL_VERSION as C macro, based on PACKAGE_VERSION.
* avcall/avcall.h.in (LIBFFCALL_VERSION): Use a plain #define, for
substitution by config.status.
* vacall/vacall.h.in: Likewise.
* trampoline/trampoline.h.in: Likewise.
* callback/callback.h.in: Likewise.
* callback/vacall_r/vacall_r.h.in: Likewise.
* callback/trampoline_r/trampoline_r.h.in: Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
trampoline, callback: Make multithread-safe.
* Makefile.maint (AUTOMAKE): New variable.
(all): Depend on Makefile-ins.
(GNULIB_MODULES): Add 'lock'.
(gnulib-m4/gnulib-cache.m4): Don't remove generated gnulib-lib files.
(ALL_MAKEFILE_IN_FROM_AM): New variable.
(Makefile-ins, gnulib-lib/Makefile.in): New targets.
* configure.ac: Invoke AM_INIT_AUTOMAKE. Arrange to generate
gnulib-lib/Makefile. Invoke gl_EARLY earlier. Recurse into gnulib-lib
directory.
* Makefile.in (DISTCLEANFILES): Add the various stamp-h* files created
by config.status at the end of the 'configure' run.
(AUTOMAKE_IMPORTED_FILES): New variable.
(IMPORTED_FILES): Use it.
* trampoline/Makefile.in (INCLUDES): Reference the gnulib build dir and
source dir.
(LTLIBTHREAD): New variable.
(libtrampoline.la): Link against libgnu.la, with options $(LTLIBTHREAD).
(test1, test2): Link against libtrampoline.la.
* trampoline/trampoline.c: Include glthread/lock.h.
(zero_fd, file_fd, file_length): Move to file scope.
(for_mmap_init): New function, extracted from alloc_trampoline.
(for_mmap_once): New variable.
(freelist_lock): New variable.
(alloc_trampoline): Use once-only execution and locking.
* callback/trampoline_r/Makefile.in (INCLUDES): Reference the gnulib
build dir and source dir.
(LTLIBTHREAD): New variable.
(libtrampoline.la): Link against libgnu.la, with options $(LTLIBTHREAD).
(test1, test2): Link against libtrampoline.la.
* callback/trampoline_r/trampoline.c: Include glthread/lock.h.
(zero_fd, file_fd, file_length): Move to file scope.
(for_mmap_init): New function, extracted from alloc_trampoline.
(for_mmap_once): New variable.
(freelist_lock): New variable.
(alloc_trampoline_r): Use once-only execution and locking.
* callback/Makefile.in (LTLIBTHREAD): New variable.
(libcallback.la): Link against libgnu.la, with options $(LTLIBTHREAD).
2017-06-24 Bruno Haible <bruno@clisp.org>
build: Rename glm4 to gnulib-m4.
* autogen.sh: Write gnulib-m4 instead of glm4.
* Makefile.maint: Likewise.
* Makefile.in (GNULIB_IMPORTED_FILES): Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
build: Assume a single configure.ac file.
* Makefile.maint (ALL_CONFIGURE_AC, aclocal.m4): Simplify.
2017-06-24 Bruno Haible <bruno@clisp.org>
Merge all autoconf configurations into a single one.
* configure.ac: Include the body of all other configure.ac files.
Use a single config.h file. Inline FFCALL_COMMON_LIBTOOL and
FFCALL_COMMON_TRAMPOLINE.
* avcall/configure.ac: Remove file.
* vacall/configure.ac: Remove file.
* trampoline/configure.ac: Remove file.
* callback/configure.ac: Remove file.
* callback/vacall_r/configure.ac: Remove file.
* callback/trampoline_r/configure.ac: Remove file.
* m4/general.m4 (FFCALL_COMMON_LIBTOOL, FFCALL_COMMON_TRAMPOLINE):
Remove macros.
* build-aux/ac-help.sed: Remove file.
* Makefile.maint (CONFIGURED_SUBDIRS, SUBDIRS_CONFIGURE): Remove
variables.
(ALL_CONFIGURE): Keep only the top-level configure.
(%/configure): Remove rule.
(ALL_CONFIG_H_IN): Set to only the top-level config.h.in.
(config.h.in): Replace the %/config.h.in rule.
* vacall/Makefile.maint (config.h.msvc, config.h.mingw32): Use top-level
config.h.in.
* trampoline/Makefile.maint (config.h.msvc, config.h.mingw32): Use
top-level config.h.in.
* callback/Makefile.maint (vacall_r/config.h.msvc,
vacall_r/config.h.mingw32, trampoline_r/config.h.msvc,
trampoline_r/config.h.mingw32): Update dependencies.
* callback/vacall_r/Makefile.maint (config.h.msvc, config.h.mingw32):
Use top-level config.h.in.
* callback/trampoline_r/Makefile.maint (config.h.msvc,
config.h.mingw32): Use top-level config.h.in.
* Makefile.in (DISTCLEANFILES): Add config.h, libtool.
(SOURCE_FILES): Remove build-aux/ac-help.sed.
(GENERATED_FILES): Add config.h.in. Remove */config* and
callback/*/config*.
* avcall/Makefile.in (INCLUDES): Look also in '..'.
(top_builddir): Set to '..'.
(distclean): Don't remove config* and libtool.
(SOURCE_FILES): Remove configure.ac.
* vacall/Makefile.in (INCLUDES): Look also in '..'.
(misc.o): Update dependency.
(distclean): Don't remove config* and libtool.
(SOURCE_FILES): Remove configure.ac.
* trampoline/Makefile.in (INCLUDES): Look also in '..'.
(top_builddir): Set to '..'.
(distclean): Don't remove config* and libtool.
(SOURCE_FILES): Remove configure.ac.
* callback/Makefile.in (INCLUDES): Look also in '..'.
(top_builddir): Set to '..'.
(DISTCLEANFILES): Remove config* and libtool.
(SOURCE_FILES): Remove configure.ac.
* callback/vacall_r/Makefile.in (INCLUDES): Look also in '../..'.
(top_builddir): Set to '../..'.
(misc.lo): Update dependency.
(distclean): Don't remove config* and libtool.
(SOURCE_FILES): Remove configure.ac.
* callback/trampoline_r/Makefile.in (INCLUDES): Look also in '../..'.
(top_builddir): Set to '../..'.
(distclean): Don't remove config* and libtool.
(SOURCE_FILES): Remove configure.ac.
* README, */README: Update.
2017-06-24 Bruno Haible <bruno@clisp.org>
trampoline: Build library using libtool.
* trampoline/configure.ac: Invoke FFCALL_COMMON_LIBTOOL.
(CPU_OBJECTS): Now contains .lo file names instead of .o file names.
* trampoline/Makefile.in (LIBTOOL*, top_builddir): New variables.
(*.lo): Targets renamed from *.o.
(libtrampoline.la): Replaces target libtrampoline.a.
Use LIBTOOL* variables as appropriate.
(clean): Remove also *.lo, libtrampoline.*, .libs, _libs.
(distclean): Remove also 'libtool'.
2017-06-24 Bruno Haible <bruno@clisp.org>
trampoline: Generate position-independent code.
* trampoline/Makefile.devel (GCCFLAGS): Add -fPIC.
2017-06-24 Bruno Haible <bruno@clisp.org>
vacall: Explain why not using libtool.
* vacall/README: Add comment about libtool.
2017-06-24 Bruno Haible <bruno@clisp.org>
Fix result of an autoconf test on AIX.
* m4/codeexec.m4 (FFCALL_CODEEXEC): Don't actually run the test on
powerpc64 (AIX and Linux) and ia64 (Linux).
2017-06-24 Bruno Haible <bruno@clisp.org>
build: Avoid testing an undefined variable.
* m4/codeexec.m4 (FFCALL_CODEEXEC_PAX): Before testing
cl_cv_func_mprotect_works, test ac_cv_func_mprotect.
2017-06-24 Bruno Haible <bruno@clisp.org>
build: Add necessary AC_REQUIREs.
* m4/codeexec.m4 (FFCALL_CODEEXEC): Require AC_CANONICAL_HOST and
gl_HOST_CPU_C_ABI.
2017-06-24 Bruno Haible <bruno@clisp.org>
Fix build error on Solaris 11 with Oracle Developer Studio 12.5.
* common/asm-x86_64.sh: Clarify the necessary postprocessing.
* common/asm-i386.sh: Document the necessary postprocessing.
* avcall/Makefile.in (avcall-i386.s): Do more postprocessing.
* vacall/Makefile.in (vacall-i386.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-i386.s): Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
Fix compilation error on CentOS 5.
* trampoline/trampoline.c (open_noinherit): New function.
(alloc_trampoline): Use it.
* callback/trampoline_r/trampoline.c: Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
Prefer https over http URLs.
* autogen.sh: Access ftp.gnu.org through https.
2017-06-24 Bruno Haible <bruno@clisp.org>
Remove obsolete mention of nonexistent file.
* avcall/README: Don't mention underscore.h.
* vacall/README: Likewise.
2017-06-24 Bruno Haible <bruno@clisp.org>
Remove obsolete protexec.c file.
* trampoline/protexec.c: Remove file.
* trampoline/README: Update.
* callback/trampoline_r/Makefile.maint (COPIED_FILES): Remove
protexec.c.
2017-06-21 Bruno Haible <bruno@clisp.org>
Fix list of distributed files.
* Makefile.in (SOURCE_FILES): Add m4/endianness.m4, common/asm-s390.sh.
2017-06-19 Bruno Haible <bruno@clisp.org>
Fix a misnomer.
* vacall/vacall.h.in: Rename 'regarg' to 'iarg'.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-powerpc.c: Update accordingly.
* vacall/vacall-s390.c: Likewise.
2017-06-18 Bruno Haible <bruno@clisp.org>
s390x: Add support for s390x CPU (64-bit S/390).
* cross-tools/cross.conf: Add configuration for s390x cross tools.
* common/reg-struct-return.txt: Add info about s390x.
* callback/call-used-registers.txt: Likewise.
* common/asm-s390.sh: New file.
* avcall/avcall.h.in: Optionally define __s390x__. Add code for
__s390x__, especially __av_start_struct4, av_float, av_double,
__av_struct.
* avcall/avcall-s390x.c: New file.
* avcall/Makefile.devel (avcall-s390-macro.S): Use asm-s390.sh.
(avcall-s390x-linux.s, avcall-s390x-macro.S): New targets.
* avcall/Makefile.in (avcall-s390x.lo, avcall-s390x.s): New targets.
(clean): Remove avcall-s390x.s.
(SOURCE_FILES): Add avcall-s390x.c, avcall-s390x-linux.s,
avcall-s390x-macro.S.
* vacall/vacall.h.in: Optionally define __s390x__. Add code for
__s390x__, especially __va_start_struct2, __va_arg_adjusted,
va_arg_float, va_arg_double, __va_arg_struct.
* vacall/vacall-s390x.c: New file.
* vacall/Makefile.devel (vacall-s390-macro.S): Use asm-s390.sh.
(vacall-s390x-linux.s, vacall-s390x-macro.S): New targets.
* vacall/Makefile.in (vacall-s390x.o, vacall-s390x.s): New targets.
(clean): Remove vacall-s390x.s.
(SOURCE_FILES): Add vacall-s390x.c, vacall-s390x-linux.s,
vacall-s390x-macro.S.
* callback/vacall_r/Makefile.maint (COPIED_FILES): Add vacall-s390x.c.
* Makefile.in (COPIED_FILES): Add callback/vacall_r/vacall-s390x.c.
* callback/vacall_r/vacall_r.h.in: Optionally define __s390x__. Add code
for __s390x__, especially __va_start_struct2, __va_arg_adjusted,
va_arg_float, va_arg_double, __va_arg_struct.
* callback/vacall_r/Makefile.devel (vacall-s390-macro.S): Use
asm-s390.sh.
(vacall-s390x-linux.s, vacall-s390x-macro.S): New targets.
* callback/vacall_r/Makefile.in (vacall-s390x.lo, vacall-s390x.s): New
targets.
(clean): Remove vacall-s390x.s.
(SOURCE_FILES): Add vacall-s390x.c, vacall-s390x-linux.s,
vacall-s390x-macro.S.
* trampoline/Makefile.devel (proto-s390x.s, tramp-s390x.o): New targets.
* trampoline/proto-s390x.s: New generated file.
* trampoline/tramp-s390x.s: New file.
* trampoline/tramp-s390x.o: New generated file.
* trampoline/trampoline.c: Implement for __s390x__.
* callback/trampoline_r/Makefile.devel (proto-s390x.s, tramp-s390x.o):
New targets.
* callback/trampoline_r/proto64.c: Add support for __s390x__.
* callback/trampoline_r/proto-s390x.s: New generated file.
* callback/trampoline_r/tramp-s390x.s: New file.
* callback/trampoline_r/tramp-s390x.o: New generated file.
* callback/trampoline_r/trampoline.c: Implement for __s390x__.
* callback/trampoline_r/test1.c: Add support for __s390x__.
* PLATFORMS, */PLATFORMS: List the s390x machine.
* NEWS: Mention the new port.
2017-06-18 Bruno Haible <bruno@clisp.org>
Small code style improvements.
* avcall/avcall.h.in [__arm64__]: Define and use __AV_FARG_NUM.
[__s390__, __arm64__] (__av_struct): Avoid a boolean negation.
* vacall/vacall.h.in [__arm64__]: Define and use __VA_IARG_NUM,
__VA_FARG_NUM.
[__x86_64__]: Define and use __VA_IARG_NUM.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-06-18 Bruno Haible <bruno@clisp.org>
s390: Reorder code.
* avcall/avcall.h.in: Move s390 specific code to the end (after ia64 and
x86_64 specific code).
* vacall/vacall.h.in: Likewise.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-06-18 Bruno Haible <bruno@clisp.org>
s390: Improve trampolines.
* trampoline/Makefile.devel (proto-s390.s): New target.
(tramp-s390.o): Use cross tools.
* trampoline/proto-s390.s: Regenerated with gcc 3.1.
* trampoline/tramp-s390.s: Rewritten from scratch, to not use %r13.
* trampoline/tramp-s390.o: New generated file.
* trampoline/trampoline.c (alloc_trampoline) [__s390__]: Change the
trampoline to not use %r13.
* callback/trampoline_r/Makefile.devel (proto-s390.s): New target.
(tramp-s390.o): Use cross tools.
* callback/trampoline_r/proto-s390.s: Regenerated with gcc 3.1.
* callback/trampoline_r/tramp-s390.s: Rewritten from scratch. Use 'lm'
instruction.
* callback/trampoline_r/tramp-s390.o: Regenerated.
* callback/trampoline_r/trampoline.c (alloc_trampoline_r) [__s390__]:
Change the trampoline accordingly.
2017-06-17 Bruno Haible <bruno@clisp.org>
arm64: Add support for arm64 CPU (a.k.a. aarch64).
* cross-tools/cross.conf: Add configuration for arm64 cross tools.
* common/reg-struct-return.txt: Add info about arm64.
* callback/call-used-registers.txt: Likewise.
* avcall/avcall.h.in: Add code for __arm64__, especially __av_start1,
av_long, av_ulong, av_ptr, av_float, av_double, __av_struct.
* avcall/avcall-arm64.c: New file.
* avcall/Makefile.devel (avcall-arm64-macro.S): New target.
* avcall/Makefile.in (avcall-arm64.lo, avcall-arm64.s): New targets.
(clean): Remove avcall-arm64.s.
(SOURCE_FILES): Add avcall-arm64.c, avcall-arm64-macro.S.
* vacall/vacall.h.in: Add code for __arm64__, especially
__va_arg_adjusted, va_arg_float, va_arg_double, __va_arg_struct.
* vacall/vacall-arm64.c: New file.
* vacall/Makefile.devel (vacall-arm64-macro.S): New target.
* vacall/Makefile.in (vacall-arm64.o, vacall-arm64.s): New targets.
(clean): Remove vacall-arm64.s.
(SOURCE_FILES): Add vacall-arm64.c, vacall-arm64-macro.S.
* callback/vacall_r/Makefile.maint (COPIED_FILES): Add vacall-arm64.c.
* Makefile.in (COPIED_FILES): Add callback/vacall_r/vacall-arm64.c.
* callback/vacall_r/vacall_r.h.in: Add code for __arm64__, especially
__va_arg_adjusted, va_arg_float, va_arg_double, __va_arg_struct.
* callback/vacall_r/Makefile.devel (vacall-arm64-macro.S): New target.
* callback/vacall_r/Makefile.in (vacall-arm64.lo, vacall-arm64.s): New
targets.
(clean): Remove vacall-arm64.s.
(SOURCE_FILES): Add vacall-arm64.c, vacall-arm64-macro.S.
* trampoline/Makefile.devel (proto-arm64.s, tramp-arm64.o): New targets.
* trampoline/proto-arm64.s: New generated file.
* trampoline/tramp-arm64.s: New file.
* trampoline/tramp-arm64.o: New generated file.
* trampoline/trampoline.c: Implement for __arm64__.
* callback/trampoline_r/Makefile.devel (proto-arm64.s, tramp-arm64.o):
New targets.
* callback/trampoline_r/proto64.c: Add support for __arm64__.
* callback/trampoline_r/proto-arm64.s: New generated file.
* callback/trampoline_r/tramp-arm64.s: New file.
* callback/trampoline_r/tramp-arm64.o: New generated file.
* callback/trampoline_r/trampoline.c: Implement for __arm64__.
* callback/trampoline_r/test1.c: Add support for __arm64__.
* PLATFORMS, */PLATFORMS: List the arm64 machine.
* NEWS: Mention the new port.
2017-06-16 Bruno Haible <bruno@clisp.org>
Remove unused fields from __va_alist.
* vacall/vacall.h.in (__va_alist): Don't include _longlong and
_ulonglong on platforms where they are unused.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-06-15 Bruno Haible <bruno@clisp.org>
Reduce the amount of cache invalidation to the necessary minimum.
* trampoline/trampoline.c (alloc_trampoline): New macro
TRAMP_CODE_LENGTH. Use it instead of TRAMP_LENGTH for cache
invalidation.
* callback/trampoline_r/trampoline.c (alloc_trampoline_r): Likewise.
2017-06-10 Bruno Haible <bruno@clisp.org>
Make the top-level "./configure --help" output complete.
Reported by Karl Berry <karl@freefriends.org> in
<https://lists.gnu.org/archive/html/libffcall/2017-03/msg00000.html>.
* build-aux/ac-help.sed: New file, from GNU gettext with modifications.
* Makefile.in (SOURCE_FILES): Add it.
* configure.ac: Collect the AC_ARG_* options from the subdirectories,
like in GNU gettext.
* callback/configure.ac: Likewise.
* Makefile.maint (aclocal.m4): Disable esyscmd invocations while running
aclocal.
2017-06-10 Bruno Haible <bruno@clisp.org>
In comments, write 'libffcall' instead of 'ffcall'.
2017-06-10 Bruno Haible <bruno@clisp.org>
Add cache invalidation for 64-bit powerpc.
* trampoline/cache-powerpc64.c: New file.
* trampoline/Makefile.devel (cache-powerpc64-elfv2-linux.s,
cache-powerpc64-elfv2-macro.S): New rules.
* trampoline/configure.ac (CPU_OBJECTS): Augment also for
powerpc64-elfv2 ABI.
* trampoline/Makefile.in (cache-powerpc64-elfv2.o,
cache-powerpc64-elfv2.s): New rules.
(clean): Remove also cache-powerpc64-elfv2.s.
(SOURCE_FILES): Add cache-powerpc64.c, cache-powerpc64-elfv2-linux.s,
cache-powerpc64-elfv2-macro.S.
* trampoline/trampoline.c (__TR_clear_cache): Declare also for
powerpc64-elfv2 ABI.
(alloc_trampoline): Invoke __TR_clear_cache also on powerpc64-elfv2 ABI.
* callback/trampoline_r/cache-powerpc64.c: New file.
* callback/trampoline_r/Makefile.devel (cache-powerpc64-elfv2-linux.s,
cache-powerpc64-elfv2-macro.S): New rules.
* trampoline/configure.ac (CPU_OBJECTS): Augment also for
powerpc64-elfv2 ABI.
* callback/trampoline_r/Makefile.in (cache-powerpc64-elfv2.lo,
cache-powerpc64-elfv2.s): New rules.
(clean): Remove also cache-powerpc64-elfv2.s.
(SOURCE_FILES): Add cache-powerpc64.c, cache-powerpc64-elfv2-linux.s,
cache-powerpc64-elfv2-macro.S.
* callback/trampoline_r/trampoline.c (__TR_clear_cache): Declare also
for powerpc64-elfv2 ABI.
(alloc_trampoline_r): Invoke __TR_clear_cache also on powerpc64-elfv2
ABI.
2017-06-10 Bruno Haible <bruno@clisp.org>
Fix cache invalidation for 32-bit powerpc.
* trampoline/cache-powerpc.c: Add comment.
* callback/trampoline_r/cache-powerpc.c: New file, based on
trampoline/cache-powerpc.c.
* callback/trampoline_r/Makefile.maint (COPIED_FILES): Remove
cache-powerpc.c.
* Makefile.in (COPIED_FILES): Remove
callback/trampoline_r/cache-powerpc.c.
2017-06-10 Bruno Haible <bruno@clisp.org>
Don't declare the need for an executable stack on Linux and FreeBSD.
* porting-tools: New directory.
* common/asm-alpha.sh: New file.
* common/asm-powerpc.sh: New file.
* common/asm-arm.sh: Remove the GNU-stack note line.
* common/asm-sparc.sh: Likewise.
* common/asm-x86_64.sh: Likewise.
* common/noexecstack.h: New file.
* common/noexecstack-arm.h: New file.
* avcall/Makefile.devel (precompiled): Add avcall-alpha-macro.S,
avcall-powerpc-linux-macro.S, avcall-powerpc-sysv4-macro.S,
avcall-powerpc64-linux.S, avcall-powerpc64-elfv2-linux.S,
avcall-ia64-macro.S, avcall-s390-macro.S. Remove avcall-alpha.s,
avcall-powerpc-linux.s, avcall-powerpc-sysv4.s,
avcall-powerpc64-linux.s, avcall-powerpc64-elfv2-linux.s, avcall-ia64.s,
avcall-s390.s.
(avcall-i386-macro.S, avcall-m68k.mit.S, avcall-m68k.motorola.S,
avcall-sparc-macro.S, avcall-sparc64-macro.S, avcall-hppa-macro.S,
avcall-x86_64-macro.S): Include noexecstack.h.
(avcall-alpha-linux.s): Renamed from avcall-alpha.s.
(avcall-alpha-macro.S): New rule.
(avcall-arm-macro.S, avcall-armhf-macro.S): Include noexecstack-arm.h.
(avcall-powerpc-linux-macro.S): New rule.
(avcall-powerpc-sysv4-macro.S): Replaces rule for
avcall-powerpc-sysv4.s.
(avcall-powerpc64-linux.S): Replaces rule for avcall-powerpc64-linux.s.
(avcall-powerpc64-elfv2-linux.S): Replaces rule for
avcall-powerpc64-elfv2-linux.s.
(avcall-ia64-linux.s): Renamed from avcall-ia64.s.
(avcall-ia64-macro.S): New rule.
(avcall-s390-linux.s): Renamed from avcall-s390.s.
(avcall-s390-macro.S): New rule.
* avcall/Makefile.in (avcall-alpha.s): New rule.
(avcall-alpha.lo): Update.
(avcall-powerpc.s): Use avcall-powerpc-linux-macro.S,
avcall-powerpc-sysv4-macro.S instead of avcall-powerpc-linux.s,
avcall-powerpc-sysv4.s.
(avcall-powerpc64.s): Use avcall-powerpc64-linux.S instead of
avcall-powerpc64-linux.s.
(avcall-powerpc64-elfv2.s): Use avcall-powerpc64-elfv2-linux.S instead
of avcall-powerpc64-elfv2-linux.s.
(avcall-ia64.s): New rule.
(avcall-ia64.lo): Update.
(avcall-s390.s): New rule.
(avcall-s390.lo): Update.
(clean): Remove also avcall-alpha.s, avcall-ia64.s, avcall-s390.s.
(SOURCE_FILES): Update.
* vacall/Makefile.devel (precompiled): Add vacall-alpha-macro.S,
vacall-powerpc-linux-macro.S, vacall-powerpc-sysv4-macro.S,
vacall-powerpc64-linux.S, vacall-powerpc64-elfv2-linux.S,
vacall-ia64-macro.S, vacall-s390-macro.S. Remove vacall-alpha.s,
vacall-powerpc-linux.s, vacall-powerpc-sysv4.s,
vacall-powerpc64-linux.s, vacall-powerpc64-elfv2-linux.s, vacall-ia64.s,
vacall-s390.s.
(vacall-i386-macro.S, vacall-m68k.mit.S, vacall-m68k.motorola.S,
vacall-sparc-macro.S, vacall-sparc64-macro.S, vacall-hppa-macro.S,
vacall-x86_64-macro.S): Include noexecstack.h.
(vacall-alpha-linux.s): Renamed from vacall-alpha.s.
(vacall-alpha-macro.S): New rule.
(vacall-arm-macro.S, vacall-armhf-macro.S): Include noexecstack-arm.h.
(vacall-powerpc-linux-macro.S): New rule.
(vacall-powerpc-sysv4-macro.S): Replaces rule for
vacall-powerpc-sysv4.s.
(vacall-powerpc64-linux.S): Replaces rule for vacall-powerpc64-linux.s.
(vacall-powerpc64-elfv2-linux.S): Replaces rule for
vacall-powerpc64-elfv2-linux.s.
(vacall-ia64-linux.s): Renamed from vacall-ia64.s.
(vacall-ia64-macro.S): New rule.
(vacall-s390-linux.s): Renamed from vacall-s390.s.
(vacall-s390-macro.S): New rule.
* vacall/Makefile.in (vacall-alpha.s): New rule.
(vacall-alpha.o): Update.
(vacall-powerpc.s): Use vacall-powerpc-linux-macro.S,
vacall-powerpc-sysv4-macro.S instead of vacall-powerpc-linux.s,
vacall-powerpc-sysv4.s.
(vacall-powerpc64.s): Use vacall-powerpc64-linux.S instead of
vacall-powerpc64-linux.s.
(vacall-powerpc64-elfv2.s): Use vacall-powerpc64-elfv2-linux.S instead
of vacall-powerpc64-elfv2-linux.s.
(vacall-ia64.s): New rule.
(vacall-ia64.o): Update.
(vacall-s390.s): New rule.
(vacall-s390.o): Update.
(clean): Remove also vacall-alpha.s, vacall-ia64.s, vacall-s390.s.
(SOURCE_FILES): Update.
* callback/vacall_r/Makefile.devel (precompiled): Add
vacall-powerpc64-linux.S, vacall-powerpc64-elfv2-linux.S,
vacall-ia64-macro.S. Remove vacall-powerpc64-linux.s,
vacall-powerpc64-elfv2-linux.s, vacall-ia64.s.
(vacall-i386-macro.S, vacall-m68k.mit.S, vacall-m68k.motorola.S,
vacall-sparc-macro.S, vacall-sparc64-macro.S, vacall-alpha-macro.S,
vacall-hppa-macro.S, vacall-powerpc-linux-macro.S,
vacall-powerpc-sysv4-macro.S, vacall-x86_64-macro.S,
vacall-s390-macro.S): Include noexecstack.h.
(vacall-arm-macro.S, vacall-armhf-macro.S): Include noexecstack-arm.h.
(vacall-powerpc64-linux.S): Replaces rule for vacall-powerpc64-linux.s.
(vacall-powerpc64-elfv2-linux.S): Replaces rule for
vacall-powerpc64-elfv2-linux.s.
(vacall-ia64-linux.s): Renamed from vacall-ia64.s.
(vacall-ia64-macro.S): New rule.
* callback/vacall_r/Makefile.in (vacall-powerpc64.s): Use
vacall-powerpc64-linux.S instead of vacall-powerpc64-linux.s.
(vacall-powerpc64-elfv2.s): Use vacall-powerpc64-elfv2-linux.S instead
of vacall-powerpc64-elfv2-linux.s.
(vacall-ia64.s): New rule.
(vacall-ia64.lo): Update.
(vacall-s390.s): New rule.
(vacall-s390.lo): Update.
(clean): Remove also vacall-ia64.s.
(SOURCE_FILES): Update.
* trampoline/cache-alpha.s: Remove file.
* trampoline/cache-hppa.s: Remove file.
* trampoline/cache-powerpc-macos.s, trampoline/cache-powerpc-sysv4.s:
Remove files.
* trampoline/cache-sparc-macro.S: Remove file.
* trampoline/tramp-hppa-macro.S: Renamed from trampoline/tramp-hppa.s.
Include "noexecstack.h".
* trampoline/tramp-ia64-macro.S: Renamed from trampoline/tramp-ia64.s.
Include "noexecstack.h".
* trampoline/tramp-powerpc64-aix.S: Include "noexecstack.h".
* trampoline/Makefile.devel: Rename GCCFLAGS to OLDGCCFLAGS in old
rules.
(cache-*): Remove old rules.
(precompiled): New target.
(cache-sparc-linux.s, cache-sparc-macro.S, cache-sparc64-linux.s,
cache-sparc64-macro.S, cache-alpha-linux.s, cache-alpha-macro.S,
cache-hppa-linux.s, cache-hppa-macro.S, cache-powerpc-linux.s,
cache-powerpc-linux-macro.S, cache-powerpc-macos.s): New rules.
* trampoline/Makefile.in (tramp-hppa.s): New rule.
(tramp-hppa.o): Update.
(tramp-powerpc64.s: Depend on noexecstack.h.
(tramp-ia64.s): New rule.
(tramp-ia64.o): Update.
(cache-sparc64.s): Update.
(cache-alpha.s): New rule.
(cache-alpha.o): Update.
(cache-hppa.s): New rule.
(cache-hppa.o): Update.
(cache-powerpc.s): New rule.
(cache-powerpc.o): Update.
(clean): Remove also tramp-hppa.s, tramp-ia64.s, cache-alpha.s,
cache-hppa.s, cache-powerpc.s.
(SOURCE_FILES): Update.
* callback/trampoline_r/cache-sparc-macro.S: Remove file.
* callback/trampoline_r/tramp-hppa-macro.S: Renamed from
callback/trampoline_r/tramp-hppa.s. Include "noexecstack.h".
* callback/trampoline_r/tramp-ia64-macro.S: Renamed from
callback/trampoline_r/tramp-ia64.s. Include "noexecstack.h".
* callback/trampoline_r/tramp-powerpc64-aix.S: Include "noexecstack.h".
* callback/trampoline_r/Makefile.maint (COPIED_FILES): Remove
cache-alpha.s, cache-hppa.s, cache-powerpc-macos.s,
cache-powerpc-sysv4.s.
* callback/trampoline_r/Makefile.devel: Rename GCCFLAGS to OLDGCCFLAGS
in old rules.
(cache-*): Remove old rules.
(precompiled): New target.
(cache-sparc-linux.s, cache-sparc-macro.S, cache-sparc64-linux.s,
cache-sparc64-macro.S, cache-alpha-linux.s, cache-alpha-macro.S,
cache-hppa-linux.s, cache-hppa-macro.S, cache-powerpc-linux.s,
cache-powerpc-linux-macro.S, cache-powerpc-macos.s): New rules.
* callback/trampoline_r/Makefile.in (tramp-hppa.s): New rule.
(tramp-hppa.lo): Update.
(tramp-powerpc64.s: Depend on noexecstack.h.
(tramp-ia64.s): New rule.
(tramp-ia64.lo): Update.
(cache-sparc64.s): Update.
(cache-alpha.s): New rule.
(cache-alpha.lo): Update.
(cache-hppa.s): New rule.
(cache-hppa.lo): Update.
(cache-powerpc.s): New rule.
(cache-powerpc.lo): Update.
(clean): Remove also tramp-hppa.s, tramp-ia64.s, cache-alpha.s,
cache-hppa.s, cache-powerpc.s.
(SOURCE_FILES): Update.
* Makefile.devel (precompiled): Recurse also into trampoline and
callback/trampoline_r directories.
* Makefile.in (SOURCE_FILES): Update.
(COPIED_FILES): Remove callback/trampoline_r/cache-alpha.s,
callback/trampoline_r/cache-hppa.s,
callback/trampoline_r/cache-powerpc-macos.s,
callback/trampoline_r/cache-powerpc-sysv4.s.
* NEWS: Mention the change.
2017-06-10 Bruno Haible <bruno@clisp.org>
Simplify Makefile.devel.
* avcall/Makefile.devel (HOST, CPU): Remove unused variables.
* vacall/Makefile.devel (HOST, CPU): Likewise.
* trampoline/Makefile.devel (HOST, CPU): Likewise.
* callback/vacall_r/Makefile.devel (HOST, CPU): Likewise.
* callback/trampoline_r/Makefile.devel (HOST, CPU): Likewise.
2017-06-10 Bruno Haible <bruno@clisp.org>
Make the EXECUTABLE_VIA_MMAP_FILE_SHARED support work on i386.
* trampoline/trampoline.c (alloc_trampoline): New local variable
'function_x'. Use it instead of 'function' for the computation of the
relative address in the i386 trampoline.
* callback/trampoline_r/trampoline.c (alloc_trampoline_r): Likewise.
2017-06-04 Bruno Haible <bruno@clisp.org>
build: Get rid of autom4te.cache directories.
* Makefile.maint (configure, $(SUBDIRS_CONFIGURE), $(ALL_CONFIG_H_IN)):
Remove autom4te.cache subdirectory.
2017-06-04 Bruno Haible <bruno@clisp.org>
Change the license from GPLv2 to GPLv2+.
* **/configure.ac, **/*.3, **/*.html, **/minitests.c,
callback/MIGRATION, common/asm-*: Add copyright notice.
* m4/*.m4: Use GPLv2+ with exception notice.
* Everywhere else: Change GPLv2 copyright notice to GPLv2+ copyright
notice. Update copyright years.
2017-06-03 Bruno Haible <bruno@clisp.org>
Make the cross-build.sh script work with argument 'all'.
* cross-tools/cross-build.sh: Fix typo.
2017-06-03 Bruno Haible <bruno@clisp.org>
Improve support for SELinux.
* m4/codeexec.m4 (FFCALL_CODEEXEC_PAX): On SELinux systems, define
HAVE_MPROTECT_AFTER_MALLOC_CAN_EXEC to -1.
* trampoline/trampoline.c: When HAVE_MPROTECT_AFTER_MALLOC_CAN_EXEC is
-1, assume the worst and don't set EXECUTABLE_VIA_MALLOC_THEN_MPROTECT.
* callback/trampoline_r/trampoline.c: Likewise.
2017-06-03 Bruno Haible <bruno@clisp.org>
Improve support for SELinux.
* m4/codeexec.m4 (FFCALL_CODEEXEC_PAX): On SELinux systems, define
HAVE_MPROTECT_AFTER_MMAP_CAN_EXEC to -1.
* trampoline/trampoline.c: When HAVE_MPROTECT_AFTER_MMAP_CAN_EXEC is -1,
assume the worst and don't set EXECUTABLE_VIA_MMAP_THEN_MPROTECT.
* callback/trampoline_r/trampoline.c: Likewise.
2017-06-03 Bruno Haible <bruno@clisp.org>
Indent the *.m4 files.
* m4/as-underscore.m4: Use reasonable indentation.
* m4/cc-gcc.m4: Likewise.
* m4/codeexec.m4: Likewise.
* m4/endianness.m4: Likewise.
* m4/general.m4: Likewise.
* m4/getpagesize.m4: Likewise.
* m4/ireg.m4: Likewise.
* m4/ln.m4: Likewise.
* m4/mach-vm.m4: Likewise.
* m4/mmap.m4: Likewise.
* m4/mprotect.m4: Likewise.
* m4/pccstruct.m4: Likewise.
* m4/shm.m4: Likewise.
* m4/smallstruct.m4: Likewise.
* m4/proto.m4: Likewise.
(CL_PROTO_TRY, CL_PROTO_CONST, CL_PROTO_MISSING, CONST_VARIANTS,
SIZE_VARIANTS): Remove macros.
2017-02-26 Bruno Haible <bruno@clisp.org>
Document more clearly the maintainer prerequisites.
* Makefile.in (ACLOCAL, AUTOCONF, AUTOHEADER): Add comments.
* README-hacking: Likewise.
Reported by Don Cohen <don-ffcall@isis.cs3-inc.com> in
<https://lists.gnu.org/archive/html/libffcall/2017-02/msg00001.html>
and Sam Steingold <sds@gnu.org>.
2017-02-26 Bruno Haible <bruno@clisp.org>
Document the support for GNU Hurd.
* PLATFORMS, */PLATFORMS: List i686-unknown-gnu0.9 (gcc).
2017-02-19 Bruno Haible <bruno@clisp.org>
configuration: Avoid running an unneeded test.
* m4/codeexec.m4 (FFCALL_CODEEXEC_PAX): Require FFCALL_CODEEXEC. Do
nothing if its result is that malloc()ed memory is already executable.
2017-02-19 Bruno Haible <bruno@clisp.org>
Remove useless double-inclusion guard on .c files.
* avcall/tests.c: Remove double-inclusion guard.
* avcall/avcall-*.c: Likewise. Fix comment.
2017-02-19 Bruno Haible <bruno@clisp.org>
powerpc: Fix build failure on MacOS X (regression from 2017-01-29).
1.
* cross-tools/cross.conf: For powerpc-darwin, go back to gcc 3.3.6.
* cross-tools/patches/gcc-3.3.6.patch: New file.
* avcall/Makefile.devel (avcall-powerpc-macos.s): Use gcc 3.3.6.
* vacall/Makefile.devel (vacall-powerpc-macos.s): Use gcc 3.3.6.
* callback/vacall_r/Makefile.devel (vacall-powerpc-macos.s): Use gcc
3.3.6.
2.
* avcall/Makefile.in (avcall-powerpc.s): For MacOS, remove the .machine
pseudo-op.
* vacall/Makefile.in (vacall-powerpc.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-powerpc.s): Likewise.
3.
* PLATFORMS, */PLATFORMS: List powerpc-apple-darwin9.8.0 (gcc).
* NEWS: Mention the status of MacOS X / powerpc.
2017-02-12 Bruno Haible <bruno@clisp.org>
Make the cross-build.sh script work on an x86_64-linux host.
* cross-tools/cross-build.sh: Remove the binutils-*/gprof directory.
* cross-tools/patches/binutils-*.patch: Backport a buffer overrun bug
fix from binutils-2.17.
2017-02-12 Bruno Haible <bruno@clisp.org>
Make the cross-build.sh script more usable.
* README-hacking: Add more text.
* cross-tools/cross-build.sh: Don't assume the script is run from the
current directory. Accept a relative HOST_CROSS_DIR.
Reported by Don Cohen <don-ffcall@isis.cs3-inc.com>.
2017-02-11 Bruno Haible <bruno@clisp.org>
Update documentation.
* NEWS: List the progress since version 1.12.
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc: Add support for OpenBSD.
* avcall/Makefile.in (avcall-powerpc.s): Treat OpenBSD like NetBSD.
* vacall/Makefile.in (vacall-powerpc.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-powerpc.s): Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
mips64: Add support for OpenBSD.
On OpenBSD, cacheflush() is declared in <machine/sysarch.h>, see
openbsd-src/blob/master/lib/libarch/mips64/cacheflush.3 .
* trampoline/trampoline.c [__OpenBSD__]: Include <machine/sysarch.h>.
* callback/trampoline_r/trampoline.c: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
Support the LDFLAGS configure variable.
* avcall/Makefile.in (LDFLAGS): New variable.
Use it in all linking commands.
* vacall/Makefile.in (LDFLAGS): New variable.
Use it in all linking commands.
* trampoline/Makefile.in (LDFLAGS): New variable.
Use it in all linking commands.
* callback/Makefile.in (LDFLAGS): New variable.
Use it in all linking commands.
* callback/vacall_r/Makefile.in (LDFLAGS): New variable.
Use it in all linking commands.
* callback/trampoline_r/Makefile.in (LDFLAGS): New variable.
Use it in all linking commands.
2017-02-11 Bruno Haible <bruno@clisp.org>
Fix build failure on Mac OS X 10.5 / x86_64. Regression from today.
* common/asm-x86_64.sh: Recognize symbol in symbol(%rip) syntax.
* vacall/Makefile.devel (vacall-x86_64-macro.S): Remove extra
postprocessing, now done by common/asm-x86_64.sh.
2017-02-11 Bruno Haible <bruno@clisp.org>
Fix build failure on Mac OS X 10.5 / i386. Regression from today.
* common/asm-i386.sh: Simplify the function referencing code, originally
for PIC on ELF platforms, so that it works also on non-ELF platforms.
2017-02-11 Bruno Haible <bruno@clisp.org>
x86_64: Add support for the x32 ABI on Linux.
* avcall/avcall.h.in: Optionally define __x86_64_x32__.
(__avword, __av_longlong): Define differently for __x86_64_x32__.
* avcall/Makefile.devel (avcall-x86_64-x32-linux.s): New target.
* avcall/Makefile.in (avcall-x86_64-x32.lo, avcall-x86_64-x32.s): New
targets.
(clean): Remove also avcall-x86_64-x32.s.
(SOURCE_FILES): Add avcall-x86_64-x32-linux.s.
* vacall/vacall-x86_64.c: Don't declare a register variable in %rbp for
GCC >= 4.9.
For __x86_64_x32__, treat return of 'long long' and 'unsigned long long'
differently.
* vacall/vacall.h.in: Optionally define __x86_64_x32__.
(__vaword, va_arg_longlong, va_return_longlong): Define differently for
__x86_64_x32__.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/Makefile.devel (vacall-x86_64-x32-linux.s): New target.
* vacall/Makefile.in (vacall-x86_64-x32.o, vacall-x86_64-x32.s): New
targets.
(clean): Remove also vacall-x86_64-x32.s.
(SOURCE_FILES): Add vacall-x86_64-x32-linux.s.
* trampoline/Makefile.devel (proto-x86_64-x32.s, tramp-x86_64-x32.o):
New targets.
* trampoline/proto-x86_64-x32.s: New generated file.
* trampoline/tramp-x86_64-x32.s: New file.
* trampoline/tramp-x86_64-x32.o: New generated file.
* trampoline/trampoline.c: Add code for __x86_64_x32__.
* callback/vacall_r/Makefile.devel (vacall-x86_64-x32-linux.s): New
target.
* callback/vacall_r/Makefile.in (vacall-x86_64-x32.lo,
vacall-x86_64-x32.s): New targets.
(clean): Remove also vacall-x86_64-x32.s.
(SOURCE_FILES): Add vacall-x86_64-x32-linux.s.
* callback/trampoline_r/Makefile.devel (proto-x86_64-x32.s,
tramp-x86_64-x32.o): New targets.
* callback/trampoline_r/proto.c: Specify env register for
__x86_64_x32__.
* callback/trampoline_r/proto-x86_64-x32.s: New generated file.
* callback/trampoline_r/tramp-x86_64-x32.s: New file.
* callback/trampoline_r/tramp-x86_64-x32.o: New generated file.
* callback/trampoline_r/trampoline.c: Add code for __x86_64_x32__.
* PLATFORMS, */PLATFORMS: List x86_64-unknown-linux (gcc -mx32).
2017-02-11 Bruno Haible <bruno@clisp.org>
Simplify platform defines. Reverts commit from 2010-07-20.
* trampoline/trampoline.h.in: Remove CPU symbol definitions.
* callback/trampoline_r/trampoline_r.h.in: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc64: Add support for the ELFv2 ABI on Linux.
* avcall/avcall-powerpc64.c: Handle small struct return in registers
when __AV_REGISTER_STRUCT_RETURN is set.
* avcall/avcall.h.in: Optionally define __powerpc64_elfv2__.
(__AV_REGISTER_STRUCT_RETURN): Define also for __powerpc64__.
(__av_reg_struct_return, __av_start_struct3): Define differently for
__powerpc64_elfv2__.
(av_float) [__powerpc64__]: Define in a simplified way if
__AV_AIXCC_FLOAT_ARGS cannot be set.
(__av_struct): Define differently for little-endian __powerpc64__.
* avcall/Makefile.devel (avcall-powerpc64-elfv2-linux.s): New target.
* avcall/Makefile.in (avcall-powerpc64-elfv2.lo,
avcall-powerpc64-elfv2.s): New targets.
(clean): Remove also avcall-powerpc64-elfv2.s.
(SOURCE_FILES): Add avcall-powerpc64-elfv2-linux.s.
* vacall/vacall-powerpc64.c: Handle small struct return in registers
when __VA_REGISTER_STRUCT_RETURN is set.
* vacall/vacall.h.in: Optionally define __powerpc64_elfv2__.
(__VA_REGISTER_STRUCT_RETURN): Define also for __powerpc64__.
(__va_reg_struct_return, __va_start_struct1): Define differently for
__powerpc64_elfv2__.
(__va_arg_adjusted): Define differently for little-endian __powerpc64__.
(va_arg_float) [__powerpc64__]: Define in a simplified way if
__VA_AIXCC_FLOAT_ARGS cannot be set.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/Makefile.devel (vacall-powerpc64-elfv2-linux.s): New target.
* vacall/Makefile.in (vacall-powerpc64-elfv2.o,
vacall-powerpc64-elfv2.s): New targets.
(clean): Remove also vacall-powerpc64-elfv2.s.
(SOURCE_FILES): Add vacall-powerpc64-elfv2-linux.s.
* trampoline/Makefile.devel (proto-powerpc64-elfv2.s,
tramp-powerpc64-elfv2.o): New targets.
* trampoline/proto-powerpc64elfv2.s: New generated file.
* trampoline/tramp-powerpc64elfv2.s: New file.
* trampoline/tramp-powerpc64elfv2.o: New generated file.
* trampoline/trampoline.c: Add code for __powerpc64_elfv2__.
* callback/vacall_r/Makefile.devel (vacall-powerpc64-elfv2-linux.s):
New target.
* callback/vacall_r/Makefile.in (vacall-powerpc64-elfv2.lo,
vacall-powerpc64-elfv2.s): New targets.
(clean): Remove also vacall-powerpc64-elfv2.s.
(SOURCE_FILES): Add vacall-powerpc64-elfv2-linux.s.
* callback/trampoline_r/Makefile.devel (proto-powerpc64-elfv2.s,
tramp-powerpc64-elfv2.o): New targets.
* callback/trampoline_r/proto-powerpc64elfv2.s: New generated file.
* callback/trampoline_r/tramp-powerpc64elfv2.s: New file.
* callback/trampoline_r/tramp-powerpc64elfv2.o: New generated file.
* callback/trampoline_r/trampoline.c: Add code for __powerpc64_elfv2__.
* PLATFORMS, */PLATFORMS: List powerpc64le-unknown-linux (gcc).
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc64: Add support for AIX in a 64-bit build, with xlc.
* avcall/avcall.h.in (__AV_AIXCC_FLOAT_ARGS, __AV_FLOAT_ARGS): New enum
values.
(__AV_START_FLAGS): Include __AV_FLOAT_ARGS.
(av_float) [__powerpc64__]: Pick word according to whether
__AV_AIXCC_FLOAT_ARGS is set.
* vacall/vacall.h.in (__VA_AIXCC_FLOAT_ARGS, __VA_FLOAT_ARGS): New enum
values.
(__VA_START_FLAGS): Include __VA_FLOAT_ARGS.
(va_arg_float) [__powerpc64__]: Pick word according to whether
__VA_AIXCC_FLOAT_ARGS is set.
* callback/vacall_r/vacall_r.h.in: Likewise.
* PLATFORMS, */PLATFORMS: List powerpc-ibm-aix7.1.3.0 (xlc -q64).
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc64: Add support for AIX in a 64-bit build, with gcc.
* avcall/avcall.h.in (__AV_AIXCC_STRUCT_ARGS): Define also on
__powerpc64__.
(__AV_STRUCT_ARGS): Set to __AV_AIXCC_STRUCT_ARGS on __powerpc64__ with
AIX.
(__av_struct): Define for __powerpc64__ like for __powerpc__.
* vacall/vacall.h.in (__VA_AIXCC_STRUCT_ARGS): Define also on
__powerpc64__.
(__VA_STRUCT_ARGS): Set to __VA_AIXCC_STRUCT_ARGS on __powerpc64__ with
AIX.
(__va_arg_struct): Define for __powerpc64__ with AIX like for
__powerpc__ with AIX.
* callback/vacall_r/vacall_r.h.in: Likewise.
* PLATFORMS, */PLATFORMS: List powerpc-ibm-aix7.1.3.0 (gcc -maix64).
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc64: Add support for AIX in a 64-bit build, part 1.
* avcall/Makefile.devel (avcall-powerpc64-aix.s,
avcall-powerpc64-linux.s): New targets.
(avcall-powerpc64.s): Remove target.
* avcall/Makefile.in (avcall-powerpc64.s): New target.
(avcall-powerpc64.lo): Update.
(clean): Remove also avcall-powerpc64.s.
(SOURCE_FILES): Add avcall-powerpc64-aix.s, avcall-powerpc64-linux.s.
Remove avcall-powerpc64.s.
* vacall/Makefile.devel (vacall-powerpc64-aix.s,
vacall-powerpc64-linux.s): New targets.
(vacall-powerpc64.s): Remove target.
* vacall/Makefile.in (vacall-powerpc64.s): New target.
(vacall-powerpc64.o): Update.
(clean): Remove also vacall-powerpc64.s.
(SOURCE_FILES): Add vacall-powerpc64-aix.s, vacall-powerpc64-linux.s.
Remove vacall-powerpc64.s.
* callback/vacall_r/Makefile.devel (vacall-powerpc64-aix.s,
vacall-powerpc64-linux.s): New targets.
(vacall-powerpc64.s): Remove target.
* callback/vacall_r/Makefile.in (vacall-powerpc64.s): New target.
(vacall-powerpc64.lo): Update.
(clean): Remove also vacall-powerpc64.s.
(SOURCE_FILES): Add vacall-powerpc64-aix.s, vacall-powerpc64-linux.s.
Remove vacall-powerpc64.s.
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc64: Update Makefile.devel rules.
* trampoline/Makefile.devel (CROSS_TOOL): New variable.
(proto-powerpc64-aix.s): Update rule.
* callback/trampoline_r/Makefile.devel (proto-powerpc64-aix.s): Update
rule.
2017-02-11 Bruno Haible <bruno@clisp.org>
hppa: Fix bug with structure return for sizes 5, 6, 7.
* avcall/avcall-hppa.c: For structure return for sizes > 4, get 4 bytes
from iret2.
* vacall/vacall-hppa.c: For structure return for sizes > 4, put 4 bytes
into iret2.
2017-02-11 Bruno Haible <bruno@clisp.org>
x86_64: Fix bug with structure return for sizes < 16, != 1, 2, 4, 8.
* avcall/avcall-x86_64.c: Treat structure returns for all sizes <= 16
like those with sizes 1, 2, 4, 8, 16.
2017-02-11 Bruno Haible <bruno@clisp.org>
Add some dedicated small structure return tests.
* avcall/tests.c (Size1, Size2, Size3, Size4, Size7, Size8, Size12,
Size15, Size16): New types.
(S1_v, S2_v, S3_v, S4_v, S7_v, S8_v, S12_v, S15_v, S15_v): New tests.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
Remove outdated no-op definition.
* vacall/vacall.h.in (__VA_ANSI_FLOAT_ARGS): Remove enum value.
2017-02-11 Bruno Haible <bruno@clisp.org>
powerpc: Don't special-case NetBSD.
* vacall/vacall-powerpc.c: Remove special case of NetBSD.
* callback/vacall_r/Makefile.devel (vacall-powerpc-netbsd-macro.S):
Remove target.
* callback/vacall_r/vacall-powerpc-netbsd.s: Remove file.
* callback/vacall_r/vacall-powerpc-netbsd-macro.S: Remove file.
* callback/vacall_r/Makefile.in (vacall-powerpc.s): Use
vacall-powerpc-linux-macro.S instead of vacall-powerpc-netbsd-macro.S.
(SOURCE_FILES): Remove vacall-powerpc-netbsd.s,
vacall-powerpc-netbsd-macro.S.
* callback/trampoline_r/proto.c: Remove special case of powerpc/NetBSD.
* callback/trampoline_r/trampoline.c: Remove special case of
powerpc/NetBSD.
* callback/trampoline_r/test1.c: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
m68k: Don't special-case NetBSD.
* callback/call-used-registers.txt: Add comment about NetBSD.
* vacall/vacall-m68k.c: Remove special case of NetBSD.
* callback/vacall_r/Makefile.devel (vacall-m68k-netbsd-macro.S): Remove
target.
* callback/vacall_r/Makefile.in (vacall-m68k.s): Always use
vacall-m68k.mit.S.
(SOURCE_FILES): Remove vacall-m68k-netbsd-macro.S.
* callback/trampoline_r/proto.c: Remove special case of m68k/NetBSD.
* callback/trampoline_r/proto-m68k-netbsd.s: Remove file.
* callback/trampoline_r/tramp-m68k-netbsd.s: Remove file.
* callback/trampoline_r/tramp-m68k-netbsd.o: Remove file.
* callback/trampoline_r/Makefile.devel (proto-m68k-netbsd.s,
tramp-m68k-netbsd.o): Remove targets.
* callback/trampoline_r/trampoline.c: Remove special case of
m68k/NetBSD.
* callback/trampoline_r/test1.c: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
Revert BINFMT_ELF hack.
* callback/elf-hack.txt: Explain the new workaround.
* callback/vacall_r/Makefile.devel (vacall-i386-macro.S,
vacall-m68k.mit.S, vacall-m68k.motorola.S, vacall-m68k-netbsd-macro.S,
vacall-mipseb-macro.S, vacall-mipsel-macro.S, vacall-mipsn32eb-macro.S,
vacall-mipsn32el-macro.S, vacall-mips64eb-macro.S,
vacall-mips64el-macro.S, vacall-alpha-macro.S,
vacall-powerpc-linux-macro.S, vacall-powerpc-netbsd-macro.S,
vacall-powerpc-sysv4-macro.S, vacall-x86_64-macro.S,
vacall-s390-macro.S): Don't postprocess through elfhack-*.sed.
* callback/vacall_r/elfhack-alpha.S: Remove file.
* callback/vacall_r/elfhack-alpha.sed: Remove file.
* callback/vacall_r/elfhack-i386.S: Remove file.
* callback/vacall_r/elfhack-i386.sed: Remove file.
* callback/vacall_r/elfhack-m68k.S: Remove file.
* callback/vacall_r/elfhack-m68k.sed: Remove file.
* callback/vacall_r/elfhack-mips.S: Remove file.
* callback/vacall_r/elfhack-mips.sed: Remove file.
* callback/vacall_r/elfhack-mips64.S: Remove file.
* callback/vacall_r/elfhack-mips64.sed: Remove file.
* callback/vacall_r/elfhack-powerpc.S: Remove file.
* callback/vacall_r/elfhack-powerpc.sed: Remove file.
* callback/vacall_r/elfhack-s390.S: Remove file.
* callback/vacall_r/elfhack-s390.sed: Remove file.
* callback/vacall_r/elfhack-x86_64.S: Remove file.
* callback/vacall_r/elfhack-x86_64.sed: Remove file.
* callback/vacall_r/Makefile.in (ASPFLAGS): Don't set BINFMT_ELF.
(SOURCE_FILES): Remove elhack-*.S and elfhack-*.sed.
* callback/vacall_r/configure.ac: Don't invoke FFCALL_BINFMT_ELF.
* callback/trampoline_r/trampoline.c: Remove code for BINFMT_ELF.
* callback/trampoline_r/tramp-alpha.s: Remove trampelf.
* callback/trampoline_r/tramp-alpha.o: Regenerated.
* callback/trampoline_r/tramp-i386.s: Remove trampelf.
* callback/trampoline_r/tramp-i386.o: Regenerated.
* callback/trampoline_r/tramp-m68k-netbsd.s: Remove trampelf.
* callback/trampoline_r/tramp-m68k-netbsd.o: Regenerated.
* callback/trampoline_r/tramp-m68k.s: Remove trampelf.
* callback/trampoline_r/tramp-m68k.o: Regenerated.
* callback/trampoline_r/tramp-mips.s: Remove trampelf.
* callback/trampoline_r/tramp-mips.o: Regenerated.
* callback/trampoline_r/tramp-mips64.s: Remove trampelf.
* callback/trampoline_r/tramp-mips64.o: Regenerated.
* callback/trampoline_r/tramp-powerpc-sysv4.s: Remove trampelf.
* callback/trampoline_r/tramp-powerpc-sysv4.o: Regenerated.
* callback/trampoline_r/tramp-s390.s: Remove trampelf.
* callback/trampoline_r/tramp-s390.o: Regenerated.
* callback/trampoline_r/tramp-x86_64.s: Remove trampelf.
* callback/trampoline_r/tramp-x86_64.o: Regenerated.
* callback/trampoline_r/test1.c: Reenable on ELF platforms.
* callback/trampoline_r/configure.ac: Don't invoke FFCALL_BINFMT_ELF.
* callback/configure.ac: Don't invoke FFCALL_BINFMT_ELF_OPTION.
* configure.ac: Don't invoke FFCALL_BINFMT_ELF_OPTION.
* m4/binfmt-elf.m4: Remove file.
* Makefile.in (SOURCE_FILES): Remove it.
* README: Update regarding the ELF problem.
2017-02-11 Bruno Haible <bruno@clisp.org>
Access __vacall_r through an indirection, except on SPARC.
* callback/vacall_r/vacall_r.h.in (__vacall_r_t): New type.
(get__vacall_r): New declaration.
(__vacall_r): Remove declaration.
* vacall/vacall-alpha.c [REENTRANT]: Make __vacall_r static.
(get__vacall_r): New function.
* vacall/vacall-arm.c: Likewise.
* vacall/vacall-armhf.c: Likewise.
* vacall/vacall-hppa.c: Likewise.
* vacall/vacall-i386.c: Likewise.
* vacall/vacall-ia64.c: Likewise.
* vacall/vacall-m68k.c: Likewise.
* vacall/vacall-mips.c: Likewise.
* vacall/vacall-mipsn32.c: Likewise.
* vacall/vacall-mips64.c: Likewise.
* vacall/vacall-powerpc.c: Likewise.
* vacall/vacall-powerpc64.c: Likewise.
* vacall/vacall-s390.c: Likewise.
* vacall/vacall-x86_64.c: Likewise.
* callback/vacall_r/vacall-powerpc-netbsd-macro.S: Update accordingly.
* callback/vacall_r/Makefile.devel (vacall-mipseb-linux.s,
vacall-mipsel-linux.s): Use option -mno-explicit-relocs. Needed for
IRIX.
* callback/vacall_r/Makefile.in (vacall-i386.s): Remove space after '@'.
Needed on Solaris/x86.
* callback/callback.h.in (alloc_callback, is_callback): Use
get__vacall_r().
2017-01-29 Bruno Haible <bruno@clisp.org>
s390: Regenerate .s and .S files with known compilers.
* avcall/avcall-s390.c: Fix include statement.
* avcall/Makefile.devel (avcall-s390.s): New target.
* vacall/Makefile.devel (vacall-s390.s): New target.
* callback/vacall_r/Makefile.devel (vacall-s390-linux.s): New target.
* avcall/Makefile.in: Move avcall-s390.lo target.
* vacall/Makefile.in: Move vacall-s390.o target.
* avcall/avcall-s390.s: Remove from version control.
* vacall/vacall-s390.s: Likewise.
* callback/vacall_r/vacall-s390-linux.s: Likewise.
* callback/vacall_r/vacall-s390-macro.S: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
x86_64: Regenerate .s and .S files with known compilers.
* common/asm-x86_64.h (P2ALIGN): New macro.
(ALIGN): Remove macro.
* common/asm-x86_64.sh: Rewritten to consume ELF input. Produce L,
P2ALIGN macros.
* avcall/avcall-x86_64.c: Use __builtin_alloca instead of hacking on the
'sp' register.
* avcall/Makefile.devel (avcall-x86_64-linux.s): Rewritten.
* vacall/Makefile.devel (vacall-x86_64-linux.s): Rewritten.
* callback/vacall_r/Makefile.devel (vacall-x86_64-linux.s): Rewritten.
* avcall/avcall-x86_64-linux.s: Remove from version control.
* avcall/avcall-x86_64-macro.S: Likewise.
* vacall/vacall-x86_64-linux.s: Likewise.
* vacall/vacall-x86_64-macro.S: Likewise.
* callback/vacall_r/vacall-x86_64-linux.s: Likewise.
* callback/vacall_r/vacall-x86_64-macro.S: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
ia64: Regenerate .s and .S files with known compilers.
* avcall/Makefile.devel (avcall-ia64.s): Rewritten.
* vacall/Makefile.devel (vacall-ia64.s): Rewritten.
* callback/vacall_r/Makefile.devel (vacall-ia64.s): Rewritten.
* vacall/vacall-ia64.c: Put all local variables in a struct.
* avcall/avcall-ia64.s: Remove from version control.
* vacall/vacall-ia64.s: Likewise.
* callback/vacall_r/vacall-ia64.s: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
powerpc, powerpc64: Regenerate .s and .S files with known compilers.
* avcall/avcall-powerpc64.c: Use __builtin_alloca. Use an 'if' cascade
instead of gotos.
* avcall/Makefile.devel (avcall-powerpc-linux.s): New target.
(avcall-powerpc-aix.s, avcall-powerpc-sysv4.s, avcall-powerpc-macos.s,
avcall-powerpc64.s): Rewritten.
* vacall/Makefile.devel (vacall-powerpc-linux.s): New target.
(vacall-powerpc-aix.s, vacall-powerpc-sysv4.s, vacall-powerpc-macos.s,
vacall-powerpc64.s): Rewritten.
* callback/vacall_r/Makefile.devel (vacall-powerpc-linux.s): New target.
(vacall-powerpc-aix.s, vacall-powerpc-sysv4-macro.S,
vacall-powerpc-macos.s, vacall-powerpc64.s): Rewritten.
* avcall/avcall-powerpc-aix.s: Remove from version control.
* avcall/avcall-powerpc-linux.s: Likewise.
* avcall/avcall-powerpc-sysv4.s: Likewise.
* avcall/avcall-powerpc-macos.s: Likewise.
* avcall/avcall-powerpc64.s: Likewise.
* vacall/vacall-powerpc-aix.s: Likewise.
* vacall/vacall-powerpc-linux.s: Likewise.
* vacall/vacall-powerpc-sysv4.s: Likewise.
* vacall/vacall-powerpc-macos.s: Likewise.
* vacall/vacall-powerpc64.s: Likewise.
* callback/vacall_r/vacall-powerpc-aix.s: Likewise.
* callback/vacall_r/vacall-powerpc-linux.s: Likewise.
* callback/vacall_r/vacall-powerpc-linux-macro.S: Likewise.
* callback/vacall_r/vacall-powerpc-sysv4-macro.S: Likewise.
* callback/vacall_r/vacall-powerpc-macos.s: Likewise.
* callback/vacall_r/vacall-powerpc64.s: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
armhf: Add support for arm with -mfloat-abi=hard.
* avcall/avcall.h.in: Add code for __armhf__, especially __av_start1,
__av_start_struct4, av_long, av_ulong, av_ptr, __av_longlong, av_float,
av_double, __av_struct.
* avcall/avcall-armhf.c: New file.
* avcall/Makefile.devel (avcall-armhf-macro.S): New target.
* avcall/Makefile.in (avcall-armhf.lo, avcall-armhf.s): New targets.
(clean): Remove avcall-armhf.s.
(SOURCE_FILES): Add avcall-armhf.c, avcall-armhf-macro.S.
* vacall/vacall.h.in: Add code for __armhf__, especially va_arg_float,
va_arg_double.
* vacall/vacall-armhf.c: New file.
* vacall/Makefile.devel (vacall-armhf-macro.S): New target.
* vacall/Makefile.in (vacall-armhf.o, vacall-armhf.s): New targets.
(clean): Remove vacall-armhf.s.
(SOURCE_FILES): Add vacall-armhf.c, vacall-armhf-macro.S.
* callback/vacall_r/Makefile.maint (COPIED_FILES): Add vacall-armhf.c.
* Makefile.in (COPIED_FILES): Add callback/vacall_r/vacall-armhf.c.
* callback/vacall_r/vacall_r.h.in: Add code for __armhf__, especially
va_arg_float, va_arg_double.
* callback/vacall_r/Makefile.devel (vacall-armhf-macro.S): New target.
* callback/vacall_r/Makefile.in (vacall-armhf.lo, vacall-armhf.s): New
targets.
(clean): Remove vacall-armhf.s.
(SOURCE_FILES): Add vacall-armhf.c, vacall-armhf-macro.S.
* trampoline/trampoline.h.in: Optionally define __armhf__.
* trampoline/trampoline.c: Treat __armhf__ like __arm__.
* callback/trampoline_r/trampoline_r.h.in: Optionally define __armhf__.
* callback/trampoline_r/trampoline.c: Treat __armhf__ like __arm__.
* PLATFORMS, */PLATFORMS: List the armv7 machine with 'hard' floats.
2017-02-11 Bruno Haible <bruno@clisp.org>
arm: Make callback work, for -mfloat-abi=soft.
* callback/trampoline_r/Makefile.devel (CROSS_TOOL): New variable.
(proto-arm.s): Use known cross-compiler and -fno-omit-frame-pointer.
(tramp-arm.o): Use known cross-assembler.
* callback/trampoline_r/proto-arm.s: Regenerated.
* callback/trampoline_r/tramp-arm.s: Try three different trampolines.
The third one, trampcallwithframe, works.
* callback/trampoline_r/tramp-arm.o: Regenerated.
* callback/call-used-registers.txt: Add comments about arm.
* callback/trampoline_r/trampoline.c: For arm, use a trampoline with
standard prologue with struct args and standard epilogue.
* callback/trampoline_r/test1.c: On arm platforms, don't check the
passing of env.
* vacall/vacall-arm.c [REENTRANT]: Expect to find env on the stack, not
in r12.
* callback/vacall_r/Makefile.devel (vacall-arm-macro.S): Don't
postprocess through elfhack-arm.sed.
* callback/vacall_r/elfhack-arm.S: Remove file.
* callback/vacall_r/elfhack-arm.sed: Remove file.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Remove elfhack-arm.S,
elfhack-arm.sed.
* PLATFORMS: List the arm5 machine with 'soft' floats.
* callback/PLATFORMS: Likewise.
2017-01-31 Bruno Haible <bruno@clisp.org>
arm: Make vacall work, for -mfloat-abi=soft.
* vacall/vacall.h.in [__arm__] (__va_alist): Enable the filler word.
* callback/vacall_r/vacall_r.h.in: Likewise.
* vacall/vacall-arm.c: Use a split struct to convince GCC to allocate
room on the stack for the first 4 general-purpose argument words.
* vacall/PLATFORMS: List the arm5 machine with 'soft' floats.
* avcall/PLATFORMS: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
arm: Fulfil the constraint that the sp register must be 8-bytes-aligned.
* avcall/avcall-arm.c: Enforce 8-bytes-alignment of the stack pointer.
* vacall/vacall-arm.c: Likewise.
arm: Remove support for old arm platforms without the ARM EABI.
* avcall/avcall.h.in: Revisit all __arm__ and __ARMEL__ conditionals.
* vacall/vacall.h.in: Likewise.
* callback/vacall_r/vacall_r.h.in: Likewise.
* avcall/avcall-arm.c: Renamed from avcall/avcall-armel.c.
* avcall/Makefile.devel (avcall-arm-macro.S): Make sure it's usable for
both endiannesses.
(avcall-armel.s): Remove target.
* avcall/Makefile.in (avcall-armel.lo): Remove target.
(SOURCE_FILES): Remove avcall-armel.[cs].
* vacall/vacall-arm.c: Renamed from vacall/vacall-armel.c.
* vacall/Makefile.devel (vacall-arm-macro.S): Make sure it's usable for
both endiannesses.
(vacall-armel.s): Remove target.
* vacall/Makefile.in (vacall-armel.o): Remove target.
(SOURCE_FILES): Remove vacall-armel.[cs].
* Makefile.in (COPIED_FILES): Remove callback/vacall_r/vacall-armel.c.
* callback/vacall_r/Makefile.devel (vacall-arm-macro.S): Make sure it's
usable for both endiannesses.
(vacall-armel-macro.S): Remove target.
* callback/vacall_r/Makefile.maint (COPIED_FILES): Remove
vacall-armel.c.
* callback/vacall_r/Makefile.in (vacall-armel.lo, vacall-armel.s):
Remove targets.
(clean): Don't remove vacall-armel.s.
(SOURCE_FILES): Remove vacall-armel.c, vacall-armel-macro.S.
arm: Regenerate .s and .S files with known compilers.
* common/asm-arm.h (L, FUNBEGIN, FUNEND): New macros.
* common/asm-arm.sh: Rewritten to consume ELF input. Produce L,
FUNBEGIN, FUNEND macros.
* avcall/Makefile.devel (avcall-arm-macro.S, avcall-armel.s): Rewritten.
* vacall/Makefile.devel (vacall-arm-macro.S, vacall-armel.s): Rewritten.
* callback/vacall_r/Makefile.devel (vacall-arm-macro.S,
vacall-armel-macro.S): Rewritten.
* avcall/avcall-arm-macro.S: Remove from version control.
* avcall/avcall-armel.s: Likewise.
* vacall/vacall-arm-macro.S: Likewise.
* vacall/vacall-armel.s: Likewise.
* callback/vacall_r/vacall-arm-macro.S: Likewise.
* callback/vacall_r/vacall-armel-macro.S: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
hppa: Regenerate .s and .S files with known compilers.
* common/asm-hppa.sh: New file.
* common/asm-hppa.h: New file.
* Makefile.in (SOURCE_FILES): Add them.
* avcall/Makefile.devel (avcall-hppa-linux.s, avcall-hppa-macro.S): New
targets.
(avcall-hppa.s): Remove target.
* avcall/Makefile.in (avcall-hppa.s): New target.
(avcall-hppa.lo): Update.
(clean): Remove also avcall-hppa.s.
(SOURCE_FILES): Add avcall-hppa-linux.s, avcall-hppa-macro.S. Remove
avcall-hppa.s.
* vacall/vacall-hppa.c: Use explicit assignments to move the arguments
to their stack locations.
* vacall/Makefile.devel (vacall-hppa-linux.s, vacall-hppa-macro.S): New
targets.
(vacall-hppa.s): Remove target.
* vacall/Makefile.in (vacall-hppa.s): New target.
(vacall-hppa.o): Update.
(clean): Remove also vacall-hppa.s.
(SOURCE_FILES): Add vacall-hppa-linux.s, vacall-hppa-macro.S. Remove
vacall-hppa.s.
* callback/vacall_r/Makefile.devel (vacall-hppa-linux.s,
vacall-hppa-macro.S): New targets.
(vacall-hppa.s): Remove target.
* callback/vacall_r/Makefile.in (vacall-hppa.s): New target.
(vacall-hppa.lo): Update.
(clean): Remove also vacall-hppa.s.
(SOURCE_FILES): Add vacall-hppa-linux.s, vacall-hppa-macro.S. Remove
vacall-hppa.s.
* avcall/avcall-hppa.s: Remove from version control.
* vacall/vacall-hppa.s: Likewise.
* callback/vacall_r/vacall-hppa.s: Likewise.
* PLATFORMS, */PLATFORMS: List hppa2.0w-hp-hpux11.31 (cc).
2017-01-29 Bruno Haible <bruno@clisp.org>
alpha: Regenerate .s and .S files with known compilers.
* avcall/avcall-alpha.c: Use __builtin_alloca.
* avcall/Makefile.devel (precompiled): Depend on avcall-alpha.s.
(avcall-alpha.s): Rewritten.
* vacall/vacall-alpha.c: Put all local variables in a struct.
* vacall/Makefile.devel (precompiled): Depend on vacall-alpha.s.
(vacall-alpha.s): Rewritten.
* callback/vacall_r/Makefile.devel (precompiled): Depend on
vacall-alpha-macro.S.
(vacall-alpha-linux.s): New target.
(vacall-alpha-macro.S): Rewritten.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Add
vacall-alpha-linux.s.
* avcall/avcall-alpha.s: Remove from version control.
* vacall/vacall-alpha.s: Likewise.
* callback/vacall_r/vacall-alpha-macro.S: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
sparc64: Fix for Solaris.
* vacall/Makefile.devel (vacall-sparc64-linux.s): Produce code that does
not make assumptions about the address space.
* PLATFORMS, */PLATFORMS: List sparc64-sun-solaris2.10 (gcc -m64,
cc -xarch=generic64).
2017-01-29 Bruno Haible <bruno@clisp.org>
sparc, sparc64: Regenerate .s and .S files with known compilers.
* common/asm-sparc.h (L, FUNBEGIN, FUNEND): New macros.
* common/asm-sparc.sh: Rewritten to consume ELF input. Produce L,
FUNBEGIN, FUNEND macros.
* common/asm-sparc64.sh: Remove file.
* Makefile.in (SOURCE_FILES): Remove common/asm-sparc64.sh.
* avcall/Makefile.devel (precompiled): Depend on avcall-sparc-macro.S
and avcall-sparc64-macro.S.
(avcall-sparc-linux.s, avcall-sparc64-linux.s): New target.
(avcall-sparc-macro.S, avcall-sparc64-macro.S): Rewritten.
* avcall/Makefile.in (SOURCE_FILES): Add avcall-sparc-linux.s,
avcall-sparc64-linux.s.
* vacall/Makefile.devel (precompiled): Depend on vacall-sparc-macro.S
and vacall-sparc64-macro.S.
(vacall-sparc-linux.s, vacall-sparc64-linux.s): New target.
(vacall-sparc-macro.S, vacall-sparc64-macro.S): Rewritten.
* vacall/Makefile.in (SOURCE_FILES): Add vacall-sparc-linux.s,
vacall-sparc64-linux.s.
* callback/vacall_r/Makefile.devel (precompiled): Depend on
vacall-sparc-macro.S and vacall-sparc64-macro.S.
(vacall-sparc-linux.s, vacall-sparc64-linux.s): New target.
(vacall-sparc-macro.S, vacall-sparc64-macro.S): Rewritten.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Add
vacall-sparc-linux.s, vacall-sparc64-linux.s.
* avcall/avcall-sparc-macro.S: Remove from version control.
* avcall/avcall-sparc64-macro.S: Likewise.
* vacall/vacall-sparc-macro.S: Likewise.
* vacall/vacall-sparc64-macro.S: Likewise.
* callback/vacall_r/vacall-sparc-macro.S: Likewise.
* callback/vacall_r/vacall-sparc64-macro.S: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
mips64: Make it work on Linux (mips64, mips64el) with "gcc -mabi=64".
* avcall/avcall-mips64.c: Add code for struct returns on _MIPSEL.
* avcall/Makefile.devel (avcall-mips64eb-linux.s,
avcall-mips64eb-macro.S, avcall-mips64el-linux.s,
avcall-mips64el-macro.S): New targets.
(avcall-mips64-linux.s, avcall-mips64-macro.S): Remove targets.
* avcall/Makefile.in (avcall-mips64.s): Take into account the
ENDIANNESS.
(SOURCE_FILES): Add avcall-mips64eb-linux.s, avcall-mips64el-linux.s,
avcall-mips64eb-macro.S, avcall-mips64el-macro.S.
Remove avcall-mips64-linux.s, avcall-mips64-macro.S.
* vacall/vacall-mips64.c: Add code for struct returns on _MIPSEL.
* vacall/Makefile.devel (vacall-mips64eb-linux.s,
vacall-mips64eb-macro.S, vacall-mips64el-linux.s,
vacall-mips64el-macro.S): New targets.
(vacall-mips64-linux.s, vacall-mips64-macro.S): Remove targets.
* vacall/Makefile.in (vacall-mips64.s): Take into account the
ENDIANNESS.
(SOURCE_FILES): Add vacall-mips64eb-linux.s, vacall-mips64el-linux.s,
vacall-mips64eb-macro.S, vacall-mips64el-macro.S.
Remove vacall-mips64-linux.s, vacall-mips64-macro.S.
* callback/vacall_r/Makefile.devel (vacall-mips64eb-linux.s,
vacall-mips64eb-macro.S, vacall-mips64el-linux.s,
vacall-mips64el-macro.S): New targets.
(vacall-mips64-linux.s, vacall-mips64-macro.S): Remove targets.
* callback/vacall_r/Makefile.in (vacall-mips64.s): Take into account the
ENDIANNESS.
(SOURCE_FILES): Add vacall-mips64eb-linux.s, vacall-mips64el-linux.s,
vacall-mips64eb-macro.S, vacall-mips64el-macro.S.
Remove vacall-mips64-linux.s, vacall-mips64-macro.S.
* PLATFORMS, */PLATFORMS: List mips64-unknown-linux (gcc -mabi=64).
2017-01-29 Bruno Haible <bruno@clisp.org>
mipsn32: Make it work on Linux (mips64, mips64el) with "gcc -mabi=n32".
* avcall/avcall-mipsn32.c: Add code for struct returns on _MIPSEL.
* avcall/Makefile.devel (avcall-mipsn32eb-linux.s,
avcall-mipsn32eb-macro.S, avcall-mipsn32el-linux.s,
avcall-mipsn32el-macro.S): New targets.
(avcall-mipsn32-linux.s, avcall-mipsn32-macro.S): Remove targets.
* avcall/Makefile.in (avcall-mipsn32.s): Take into account the
ENDIANNESS.
(SOURCE_FILES): Add avcall-mipsn32eb-linux.s,
avcall-mipsn32el-linux.s, avcall-mipsn32eb-macro.S,
avcall-mipsn32el-macro.S.
Remove avcall-mipsn32-linux.s, avcall-mipsn32-macro.S.
* vacall/vacall-mipsn32.c: Add code for struct returns on _MIPSEL.
* vacall/Makefile.devel (vacall-mipsn32eb-linux.s,
vacall-mipsn32eb-macro.S, vacall-mipsn32el-linux.s,
vacall-mipsn32el-macro.S): New targets.
(vacall-mipsn32-linux.s, vacall-mipsn32-macro.S): Remove targets.
* vacall/Makefile.in (vacall-mipsn32.s): Take into account the
ENDIANNESS.
(SOURCE_FILES): Add vacall-mipsn32eb-linux.s, vacall-mipsn32el-linux.s,
vacall-mipsn32eb-macro.S, vacall-mipsn32el-macro.S.
Remove vacall-mipsn32-linux.s, vacall-mipsn32-macro.S.
* callback/vacall_r/Makefile.devel (vacall-mipsn32eb-linux.s,
vacall-mipsn32eb-macro.S, vacall-mipsn32el-linux.s,
vacall-mipsn32el-macro.S): New targets.
(vacall-mipsn32-linux.s, vacall-mipsn32-macro.S): Remove targets.
* callback/vacall_r/Makefile.in (vacall-mipsn32.s): Take into account
the ENDIANNESS.
(SOURCE_FILES): Add vacall-mipsn32eb-linux.s, vacall-mipsn32el-linux.s,
vacall-mipsn32eb-macro.S, vacall-mipsn32el-macro.S.
Remove vacall-mipsn32-linux.s, vacall-mipsn32-macro.S.
* PLATFORMS, */PLATFORMS: List mips64-unknown-linux (gcc -mabi=n32).
2017-01-29 Bruno Haible <bruno@clisp.org>
mips: Make it work on Linux (mips, mipsel) with "gcc -mabi=32".
* m4/endianness.m4: New file.
* avcall/Makefile.devel (avcall-mipseb-linux.s, avcall-mipseb-macro.S,
avcall-mipsel-linux.s, avcall-mipsel-macro.S): New targets.
(avcall-mips-linux.s, avcall-mips-macro.S): Remove targets.
* avcall/configure.ac: Invoke FFCALL_ENDIANNESS.
* avcall/Makefile.in (avcall-mips.s): Take into account the ENDIANNESS.
(SOURCE_FILES): Add avcall-mipseb-linux.s, avcall-mipsel-linux.s,
avcall-mipseb-macro.S, avcall-mipsel-macro.S.
Remove avcall-mips-linux.s, avcall-mips-macro.S.
* vacall/Makefile.devel (vacall-mipseb-linux.s, vacall-mipseb-macro.S,
vacall-mipsel-linux.s, vacall-mipsel-macro.S): New targets.
(vacall-mips-linux.s, vacall-mips-macro.S): Remove targets.
* vacall/configure.ac: Invoke FFCALL_ENDIANNESS.
* vacall/Makefile.in (vacall-mips.s): Take into account the ENDIANNESS.
(SOURCE_FILES): Add vacall-mipseb-linux.s, vacall-mipsel-linux.s,
vacall-mipseb-macro.S, vacall-mipsel-macro.S.
Remove vacall-mips-linux.s, vacall-mips-macro.S.
* callback/vacall_r/Makefile.devel (vacall-mipseb-linux.s,
vacall-mipseb-macro.S, vacall-mipsel-linux.s, vacall-mipsel-macro.S):
New targets.
* callback/vacall_r/configure.ac: Invoke FFCALL_ENDIANNESS.
* callback/vacall_r/Makefile.in (vacall-mips.s): Take into account the
ENDIANNESS.
(SOURCE_FILES): Add vacall-mipseb-linux.s, vacall-mipsel-linux.s,
vacall-mipseb-macro.S, vacall-mipsel-macro.S.
Remove vacall-mips-linux.s, vacall-mips-macro.S.
* PLATFORMS, */PLATFORMS: List mips-unknown-linux (gcc -mabi=32).
2017-01-29 Bruno Haible <bruno@clisp.org>
mips, mipsn32, mips64: Regenerate .s and .S files with known compilers.
This restores support for IRIX with cc -32 (regression from 2008-09-26).
* common/asm-mips.sh: Rewritten to consume ELF input.
* avcall/avcall-mips.c: Rely on the compiler to set $25 at each
function call. Add comment about broken GCC 3.3.x and 3.4.x. Avoid
'switch' statements, to make the generated code position-independent.
Declare iret2 as single __avword.
* avcall/avcall-mipsn32.c: Use __builtin_alloca. Rely on the compiler
to set $25 at each function call.
* avcall/avcall-mips64.c: Likewise.
* avcall/Makefile.devel (precompiled): Depend on avcall-mips-macro.S,
avcall-mipsn32-macro.S, avcall-mips64-macro.S.
(avcall-mips-linux.s, avcall-mipsn32-linux.s, avcall-mips64-linux.s):
New targets.
(avcall-mips-macro.S, avcall-mipsn32-macro.S, avcall-mips64-macro.S):
Rewritten.
* avcall/Makefile.in (SOURCE_FILES): Add avcall-mips-linux.s,
avcall-mipsn32-linux.s, avcall-mips64-linux.s.
* vacall/vacall-mips.c: Rely on the compiler to set $25 at each
function call.
* vacall/vacall-mipsn32.c: Likewise.
* vacall/vacall-mips64.c: Likewise. Add offset to references of
arguments in the stack.
* vacall/Makefile.devel (precompiled): Depend on vacall-mips-macro.S,
vacall-mipsn32-macro.S, vacall-mips64-macro.S.
(vacall-mips-linux.s, vacall-mipsn32-linux.s, vacall-mips64-linux.s):
New targets.
(vacall-mips-macro.S): Rewritten.
(vacall-mipsn32-macro.S): Rewritten. Update the postprocessing hack.
(vacall-mips64-macro.S): Rewritten. Add a postprocessing hack.
* vacall/Makefile.in (SOURCE_FILES): Add vacall-mips-linux.s,
vacall-mipsn32-linux.s, vacall-mips64-linux.s.
* callback/vacall_r/Makefile.devel (precompiled): Depend on
vacall-mips-macro.S, vacall-mipsn32-macro.S, vacall-mips64-macro.S.
(vacall-mips-linux.s, vacall-mipsn32-linux.s, vacall-mips64-linux.s):
New targets.
(vacall-mips-macro.S): Rewritten.
(vacall-mipsn32-macro.S): Rewritten. Update the postprocessing hack.
(vacall-mips64-macro.S): Rewritten. Add a postprocessing hack.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Add vacall-mips-linux.s,
vacall-mipsn32-linux.s, vacall-mips64-linux.s.
* avcall/avcall-mips-macro.S: Remove from version control.
* avcall/avcall-mipsn32-macro.S: Likewise.
* avcall/avcall-mips64-macro.S: Likewise.
* vacall/vacall-mips-macro.S: Likewise.
* vacall/vacall-mipsn32-macro.S: Likewise.
* vacall/vacall-mips64-macro.S: Likewise.
* callback/vacall_r/vacall-mips-macro.S: Likewise.
* callback/vacall_r/vacall-mipsn32-macro.S: Likewise.
* callback/vacall_r/vacall-mips64-macro.S: Likewise.
* PLATFORMS, */PLATFORMS: List mips-sgi-irix6.5 (cc -32).
2017-01-29 Bruno Haible <bruno@clisp.org>
m68k: Regenerate .s and .S files with known compilers.
* common/asm-m68k.h (L, FUNBEGIN, FUNEND): New macros.
* common/asm-m68k.sh: Expect a syntax argument. Produce L, FUNBEGIN,
FUNEND macros.
* avcall/avcall-m68k.c: Use __builtin_alloca instead of hacking on the
'sp' register.
* avcall/Makefile.devel (precompiled): Depend on avcall-m68k.mit.S and
avcall-m68k.motorola.S.
(avcall-m68k-linux.s, avcall-m68k-sun.s): New targets.
(avcall-m68k.mit.S, avcall-m68k.motorola.S): Rewritten.
* avcall/Makefile.in (avcall-m68k.s): Depend on avcall-m68k.motorola.S
instead of avcall-m68k.mot.s.
(SOURCE_FILES): Add avcall-m68k-linux.s, avcall-m68k-sun.s.
Replace avcall-m68k.mot.s with avcall-m68k.motorola.S.
* vacall/Makefile.devel (precompiled): Depend on vacall-m68k.mit.S and
vacall-m68k.motorola.S.
(vacall-m68k-linux.s, vacall-m68k-sun.s): New targets.
(vacall-m68k.mit.S, vacall-m68k.motorola.S): Rewritten.
* vacall/Makefile.in (vacall-m68k.s): Depend on vacall-m68k.motorola.S
instead of vacall-m68k.mot.s.
(SOURCE_FILES): Add vacall-m68k-linux.s,
vacall-m68k-sun.s, vacall-mips-linux.s, vacall-mipsn32-linux.s,
Replace vacall-m68k.mot.s with vacall-m68k.motorola.S.
* callback/vacall_r/Makefile.devel (precompiled): Depend on
vacall-m68k.mit.S, vacall-m68k.motorola.S, vacall-m68k-netbsd-macro.S.
(vacall-m68k-linux.s, vacall-m68k-sun.s): New targets.
(vacall-m68k.mit.S, vacall-m68k.motorola.S, vacall-m68k-netbsd-macro.S):
Rewritten.
* callback/vacall_r/Makefile.in (vacall-m68k.s): Depend on
vacall-m68k.motorola.S instead of vacall-m68k.mot.s.
(SOURCE_FILES): Add vacall-m68k-linux.s, vacall-m68k-sun.s.
Replace vacall-m68k.mot.s with vacall-m68k.motorola.S.
* avcall/avcall-m68k.mit.S: Remove from version control.
* avcall/avcall-m68k.mot.s: Likewise.
* callback/vacall_r/vacall-m68k-netbsd-macro.S: Likewise.
* callback/vacall_r/vacall-m68k.mit.S: Likewise.
* callback/vacall_r/vacall-m68k.mot.s: Likewise.
* vacall/vacall-m68k.mit.S: Likewise.
* vacall/vacall-m68k.mot.s: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
i386: Regenerate .s and .S files with known compilers.
* common/asm-i386.hh (P2ALIGN): New macro.
(FUNEND): Take two arguments.
* common/asm-i386.sh: Rewritten to consume ELF input. Produce P2ALIGN
macro. Handle indirect call statements.
* avcall/avcall-i386.c: Use __builtin_alloca instead of hacking on the
'sp' register.
* avcall/Makefile.devel (precompiled): Depend on avcall-i386-macro.S.
(avcall-i386-linux.s): New target.
(avcall-i386-macro.S): Rewritten.
* avcall/Makefile.in (SOURCE_FILES): Add avcall-i386-linux.s.
* vacall/vacall-i386.c: Insert the appropriate stack cleanup before
'ret $4'.
* vacall/Makefile.devel (precompiled): Depend on vacall-i386-macro.S.
(vacall-i386-linux.s): New target.
(vacall-i386-macro.S): Rewritten.
* vacall/Makefile.in (SOURCE_FILES): Add vacall-i386-linux.s.
* callback/vacall_r/Makefile.devel (precompiled): Depend on
vacall-i386-macro.S.
(vacall-i386-linux.s): New target.
(vacall-i386-macro.S): Rewritten.
* callback/vacall_r/Makefile.in (SOURCE_FILES): Add vacall-i386-linux.s.
* avcall/avcall-i386-macro.S: Remove from version control.
* vacall/vacall-i386-macro.S: Likewise.
* callback/vacall_r/vacall-i386-macro.S: Likewise.
2017-02-11 Bruno Haible <bruno@clisp.org>
Prepare for regenerating .s and .S files with known compilers.
This serves three purposes:
1. Being able to regenerate everything if avcall.h.in or vacall.h.in
changes.
2. Allow safe stack unwinding across avcall and vacall invocations.
3. Allow distributing libavcall and libcallback as shared libraries.
* README-hacking: Document the cross compilers.
* cross-tools/cross.conf: New file.
* cross-tools/cross-build.sh: New file.
* cross-tools/cross.in: New file.
* cross-tools/patches/*.patch: New files.
* avcall/Makefile.devel (GCCFLAGS): Add -fno-omit-frame-pointer, -fPIC.
(CROSS_TOOL): New variable.
* vacall/Makefile.devel (GCCFLAGS): Add -fno-omit-frame-pointer.
(CROSS_TOOL): New variable.
* callback/vacall_r/Makefile.devel (GCCFLAGS): Add
-fno-omit-frame-pointer, -fPIC.
(CROSS_TOOL): New variable.
2017-01-29 Bruno Haible <bruno@clisp.org>
s390: Fix long long args.
* avcall/avcall.h.in (__av_longlong): Align only on a 4-bytes boundary,
not on an 8-bytes boundary. Fix condition for switching from register
args to stack args.
* vacall/vacall.h.in (__va_arg_leftadjusted, __va_arg_rightadjusted):
Fix condition for switching from register args to stack args.
(__va_arg_longlong): Use __va_arg.
* callback/vacall_r/vacall_r.h.in (__va_arg_leftadjusted,
__va_arg_rightadjusted): Fix condition for switching from register args
to stack args.
(__va_arg_longlong): Use __va_arg.
* PLATFORMS, */PLATFORMS: List s390x-ibm-linux with "gcc -m31".
2017-01-29 Bruno Haible <bruno@clisp.org>
s390: Fix trampoline.
* trampoline/trampoline.c [__s390__]: Fix is_tramp macro.
2017-01-29 Bruno Haible <bruno@clisp.org>
ia64: Fix struct args.
* avcall/avcall.h.in (__av_struct): Tweak #if.
* avcall/avcall-ia64.c: Fix comment.
* vacall/vacall.h.in (__va_arg_struct): Change #if to match
callback/vacall_r/vacall_r.h.in.
* callback/call-used-registers.txt: Fix info about ia64.
* callback/vacall_r/vacall_r.h.in (__va_arg_struct): Tweak #if.
* callback/trampoline_r/trampoline.c [__ia64__]: Fix is_tramp macro.
2017-01-29 Bruno Haible <bruno@clisp.org>
powerpc64: Make trampoline work on AIX in a 64-bit build.
* trampoline/tramp-powerpc64-aix.S: Add assembler pseudo-ops for AIX.
* callback/trampoline_r/tramp-powerpc64-aix.S: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
arm: Comments.
* avcall/avcall-arm.c: Add comments.
* avcall/avcall.h.in: Fix comment.
2017-01-29 Bruno Haible <bruno@clisp.org>
arm: Make trampoline work on real ARM harware.
The cache flushing code in cache-arm.c and cache-armel.c are for old
Linux versions. Nowadays the best way is through the GCC builtin
function __clear_cache (which makes the appropriate Linux system call).
* trampoline/trampoline.c (alloc_trampoline) [__arm__]: Invoke GCC
builtin function __clear_cache. Remove call to __TR_clear_cache.
* callback/trampoline_r/trampoline.c (alloc_trampoline_r) [__arm__]:
Likewise.
* trampoline/cache-arm.[cs]: Remove files.
* trampoline/cache-armel.[cs]: Remove files.
* callback/trampoline_r/Makefile.maint (COPIED_FILES): Remove
cache-arm*.
* Makefile.in (COPIED_FILES): Remove callback/trampoline_r/cache-arm*.
* trampoline/Makefile.devel (cache-armel.s): Remove target.
* trampoline/configure.ac (CPU_OBJECTS): Leave empty for arm and armel.
* trampoline/Makefile.in (cache-arm.o, cache-armel.o): Remove targets.
(SOURCE_FILES): Remove cache-arm.[cs], cache-armel.[cs].
* callback/trampoline_r/Makefile.devel (cache-armel.s): Remove target.
* callback/trampoline_r/configure.ac (CPU_OBJECTS): Leave empty for arm
and armel.
* callback/trampoline_r/Makefile.in (cache-arm.lo, cache-armel.lo):
Remove targets.
(SOURCE_FILES): Remove cache-arm.[cs], cache-armel.[cs].
* trampoline/PLATFORMS: Add two ARM platforms.
2017-01-29 Bruno Haible <bruno@clisp.org>
hppa: Fix struct returns.
* avcall/avcall.h.in [__hppa__]: Don't set __AV_PCC_STRUCT_RETURN by
default.
* avcall/avcall-hppa.c: Fix comment.
* vacall/vacall.h.in [__hppa__]: Don't set __VA_PCC_STRUCT_RETURN by
default.
* callback/vacall_r/vacall_r.h.in [__hppa__]: Don't set
__VA_PCC_STRUCT_RETURN by default.
2017-01-29 Bruno Haible <bruno@clisp.org>
sparc64: Fix the passing of 'float' arguments.
* vacall/vacall.h.in (va_arg_float): Expect the float in the upper half
of the 8-bytes word.
* callback/vacall_r/vacall_r.h.in (va_arg_float): Likewise.
* PLATFORMS, */PLATFORMS: List sparc64-unknown-linux (gcc).
2017-01-29 Bruno Haible <bruno@clisp.org>
sparc64: Fix a compiler warning.
* vacall/vacall.h.in (__va_arg_struct): Add a cast to pointer.
* callback/vacall_r/vacall_r.h.in: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
mips64: Fix trampoline_r.
* callback/trampoline_r/trampoline.c: Fix conditionals that involve
__mips64__.
* callback/trampoline_r/test1.c: Fix duplicate declaration of 'env' on
mips64.
2017-01-29 Bruno Haible <bruno@clisp.org>
mipsn32, mips64: Fix for little-endian platforms.
* vacall/vacall.h.in (__va_arg_adjusted): Use same conditional on
_MIPSEB and _MIPSEL as in callback/vacall_r/vacall_r.h.in.
* callback/vacall_r/vacall_r.h.in: Reorder parts of a #if condition.
2017-01-29 Bruno Haible <bruno@clisp.org>
mips: Fix for Linux with "gcc -mabi=32".
* trampoline/tramp-mips.old.o: Renamed from trampoline/tramp-mips.o.
* trampoline/tramp-mips.old.s: Renamed from trampoline/tramp-mips.s.
* trampoline/tramp-mips.s: New file, based on
trampoline/tramp-mipsn32.s.
* trampoline/tramp-mips.o: New generated file.
* trampoline/trampoline.c: For __mips__, use the same trampoline as for
__mipsn32__.
2017-01-29 Bruno Haible <bruno@clisp.org>
mips: Fix for Linux with "gcc -mabi=32".
* vacall/vacall.h.in (__va_arg_adjusted): Use same conditional on
_MIPSEB as in callback/vacall_r/vacall_r.h.in.
2017-01-29 Bruno Haible <bruno@clisp.org>
mipsn32, mips64: Fix struct args and struct returns with newer GCC.
* avcall/avcall.h.in: For mipsn32 and mips64 in gcc >= 3.4:
1. Don't set __AV_GCC_STRUCT_RETURN.
2. Use __AV_SGICC_STRUCT_ARGS.
* vacall/vacall.h.in: For mipsn32 and mips64 in gcc >= 3.4:
1. Don't set __VA_GCC_STRUCT_RETURN.
2. Use __VA_SGICC_STRUCT_ARGS.
* callback/vacall_r/vacall_r.h.in: Likewise.
* PLATFORMS, */PLATFORMS: List mips-sgi-irix6.5 (gcc -mabi=n32).
2017-01-29 Bruno Haible <bruno@clisp.org>
x86_64: Fix bug with structure arguments larger than 16 bytes.
* avcall/avcall.h.in (__av_struct): Pass structures > 16 bytes on the
stack.
* vacall/vacall.h.in (__va_arg_adjusted): Expect types > 16 bytes passed
on the stack.
* callback/vacall_r/vacall_r.h.in (__va_arg_adjusted): Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
i386, x86_64, sparc, sparc64: Fix for the Sun Studio 11 compiler.
When preprocessing a .S file, "cc -E" activates some other preprocessor
than the usual C preprocessor.
* avcall/Makefile.in (avcall-i386.s, avcall-sparc.s, avcall-sparc64.s,
avcall-x86_64.s): Feed the input to the preprocessor through standard
input. Postprocess to remove space after '.' and '@'.
* vacall/Makefile.in (vacall-i386.s, vacall-sparc.s, vacall-sparc64.s,
vacall-x86_64.s): Likewise.
* trampoline/Makefile.in (cache-sparc.s, cache-sparc64.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-i386.s, vacall-sparc.s,
vacall-sparc64.s, vacall-x86_64.s): Likewise.
* callback/trampoline_r/Makefile.in (cache-sparc.s, cache-sparc64.s):
Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
List platforms on which libffcall is known to work.
* PLATFORMS, */PLATFORMS: List i386-pc-solaris2.10 (gcc),
mips-sgi-irix6.5 (cc -n32), sparc-unknown-linux (gcc),
alphaev67-unknown-linux (gcc), powerpc-ibm-aix7.1.3.0 (xlc, gcc).
2017-01-29 Bruno Haible <bruno@clisp.org>
Don't violate ISO C rules.
* avcall/avcall.h.in (__av_struct): Don't store an unaligned pointer
in (LIST).aptr.
2017-01-29 Bruno Haible <bruno@clisp.org>
Don't make side-effects before overflow checking.
* avcall/avcall.h.in: In most macro definitions, modify (LIST).aptr
after checking that it will remain within range, not before. But
continue to modify (LIST).aptr before storing the argument, as this
makes it easier w.r.t. to the alignment. This produces some more
duplicate expressions that the compiler will eliminate. But the code
is clearer this way.
2017-01-29 Bruno Haible <bruno@clisp.org>
Add more floating-point, mixed-number, general-purpose args tests.
* avcall/tests.c (f_f24, d_iiidi, d_fdi, ll_iiilli, D_Dfd,
l_l0K, ..., l_l6K, ll_l2ll, ..., ll_l7ll, d_l2d, ... d_l7d): New tests.
* vacall/tests.c: Likewise.
* callback/tests.c: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
Enable the 'long long' tests in callback.
* callback/configure.ac: Invoke AC_TYPE_LONG_LONG_INT.
* callback/tests.c: Test HAVE_LONG_LONG_INT, not HAVE_LONG_LONG.
* avcall/avcall.h.in: Fix comment.
* vacall/vacall.h.in: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
devel: Make it easy to keep the autogenerated files up-to-date.
* avcall/Makefile.devel: Make all *.[sS] files depend on this file.
(precompiled): Comment out all dependencies.
* vacall/Makefile.devel: Likewise.
* callback/vacall_r/Makefile.devel: Likewise.
* callback/vacall_r/Makefile.maint (copied-files): New target.
* callback/trampoline_r/Makefile.maint (copied-files): New target.
* autogen.sh: To copy the files, just invoke these targets.
* Makefile.devel (precompiled): New target.
2017-01-29 Bruno Haible <bruno@clisp.org>
configuration: Support the AR configure variable.
Needed for a 64-bit build on AIX.
* vacall/configure.ac: Invoke gl_PROG_AR_RANLIB instead of
AC_PROG_RANLIB.
* trampoline/configure.ac: Likewise.
* vacall/Makefile.in (AR): Use value determined by gl_PROG_AR_RANLIB.
* trampoline/Makefile.in (AR): Likewise.
* avcall/Makefile.in (AR): Use value determined by libtool.
* callback/Makefile.in (AR): Likewise.
* callback/vacall_r/Makefile.in (AR): Likewise.
* callback/trampoline_r/Makefile.in (AR): Likewise.
* avcall/configure.ac: Reorder (a no-op).
* callback/configure.ac: Likewise.
* callback/vacall_r/configure.ac: Likewise.
* callback/trampoline_r/configure.ac: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
configuration: Simplification.
* m4/general.m4 (CL_CONFIG_SUBDIRS): Remove macro.
* configure.ac: Use AC_CONFIG_SUBDIRS instead of CL_CONFIG_SUBDIRS.
* callback/configure.ac: Likewise.
2017-01-29 Bruno Haible <bruno@clisp.org>
Revert the addition of a powerpc64le port by Masanori Mitsugi
(commit from 2015-08-23).
2017-01-29 Bruno Haible <bruno@clisp.org>
Add support for some Linux+PaX or SELinux kernels and for HardenedBSD.
Reported
- by Gerard Milmeister in https://sourceforge.net/p/clisp/bugs/356/,
- by Pradeep Kumar in https://sourceforge.net/p/clisp/bugs/415/,
- by Don Cohen in
https://lists.gnu.org/archive/html/libffcall/2016-12/msg00002.html,
- by Nelson Beebe.
* m4/codeexec.m4 (FFCALL_CODEEXEC_PAX): New macro.
* m4/general.m4 (FFCALL_COMMON_TRAMPOLINE): Require it.
* trampoline/trampoline.c (EXECUTABLE_VIA_MALLOC_THEN_MPROTECT,
EXECUTABLE_VIA_MMAP_THEN_MPROTECT, EXECUTABLE_VIA_MMAP_FILE_SHARED):
New macros.
(EXECUTABLE_VIA_MPROTECT, EXECUTABLE_VIA_MMAP_ANONYMOUS,
EXECUTABLE_VIA_MMAP_DEVZERO): Remove macros.
(MAP_FILE, MAP_VARIABLE): Define fallbacks.
(pagesize): Define outside of functions.
(alloc_trampoline): If EXECUTABLE_VIA_MMAP_FILE_SHARED is defined,
create separate mappings of a file, for writing and for executing.
If EXECUTABLE_VIA_MMAP_THEN_MPROTECT is defined, use mmap of an
anonymous page, then mprotect.
(free_trampoline): Convert back from executable address to writable
address.
* callback/trampoline_r/trampoline.c
(EXECUTABLE_VIA_MALLOC_THEN_MPROTECT, EXECUTABLE_VIA_MMAP_THEN_MPROTECT,
EXECUTABLE_VIA_MMAP_FILE_SHARED): New macros.
(EXECUTABLE_VIA_MPROTECT, EXECUTABLE_VIA_MMAP_ANONYMOUS,
EXECUTABLE_VIA_MMAP_DEVZERO): Remove macros.
(MAP_FILE, MAP_VARIABLE): Define fallbacks.
(pagesize): Define outside of functions.
(alloc_trampoline_r): If EXECUTABLE_VIA_MMAP_FILE_SHARED is defined,
create separate mappings of a file, for writing and for executing.
If EXECUTABLE_VIA_MMAP_THEN_MPROTECT is defined, use mmap of an
anonymous page, then mprotect.
(free_trampoline_r, is_trampoline_r): Convert back from executable
address to writable address.
2017-01-29 Bruno Haible <bruno@clisp.org>
Fix "Generic workaround against the ELF symbol resolving routine".
* callback/vacall_r/elfhack-alpha.S: Put env in register $1, not $2.
* callback/vacall_r/elfhack-alpha.sed: Make it find the correct line.
* callback/trampoline_r/trampoline.c [__ia64__]: Fix code for
BINFMT_ELF.
[__mips64__]: Fix a typo in the trampoline for BINFMT_ELF.
[__s390__]: Fix typo in is_tramp macro for BINFMT_ELF.
2017-01-10 Bruno Haible <bruno@clisp.org>
Update documentation.
* README: Refer to the git repository, not to the last release.
* DEPENDENCIES: New file.
* Makefile.in (SOURCE_FILES): Add it.
* README-hacking: New file.
2017-01-09 Bruno Haible <bruno@clisp.org>
Remove support for m68k/HP-UX, m68k/NeXT, apollo, mips/Ultrix.
* trampoline/trampoline.c: Remove hpux, NeXT, apollo, ultrix
conditionals.
* trampoline/cache.c: Likewise.
* callback/trampoline_r/trampoline.c: Likewise.
2017-01-09 Bruno Haible <bruno@clisp.org>
Remove support for m68k/AmigaOS.
* avcall/Makefile.devel (avcall-m68k-amiga.s): Remove target.
* avcall/avcall-m68k-amiga.c: Remove file.
* avcall/avcall-m68k-amiga.s: Remove file.
* avcall/Makefile.in (SOURCE_FILES): Remove them.
* avcall/avcall.h.in: Remove AMIGA conditionals.
* avcall/tests.c: Likewise.
* trampoline/trampoline.c: Likewise.
* callback/trampoline_r/trampoline.c: Likewise.
2017-01-09 Bruno Haible <bruno@clisp.org>
Remove support for the AIX 3 operating system.
* avcall/Makefile.devel (avcall-powerpc-aix.s): Renamed from
avcall-powerpc-aix.new.s.
(avcall-powerpc-aix.old.s): Remove target.
* avcall/avcall-powerpc-aix.s: Renamed from
avcall/avcall-powerpc-aix.new.s.
* avcall/avcall-powerpc-aix.old.s: Remove file.
* avcall/Makefile.in (avcall-powerpc.s): No longer use
avcall-powerpc-aix.old.s.
(SOURCE_FILES): Add avcall-powerpc-aix.s. Remove
avcall-powerpc-aix.new.s, avcall-powerpc-aix.old.s.
* vacall/Makefile.devel (vacall-powerpc-aix.s): Renamed from
vacall-powerpc-aix.new.s.
(vacall-powerpc-aix.old.s): Remove target.
* vacall/vacall-powerpc-aix.s: Renamed from
vacall/vacall-powerpc-aix.new.s.
* vacall/vacall-powerpc-aix.old.s: Remove file.
* vacall/Makefile.in (vacall-powerpc.s): No longer use
vacall-powerpc-aix.old.s.
(SOURCE_FILES): Add vacall-powerpc-aix.s. Remove
vacall-powerpc-aix.new.s, vacall-powerpc-aix.old.s.
* callback/vacall_r/Makefile.devel (vacall-powerpc-aix.s): Renamed from
vacall-powerpc-aix.new.s.
(vacall-powerpc-aix.old.s): Remove target.
* callback/vacall_r/vacall-powerpc-aix.s: Renamed from
callback/vacall_r/vacall-powerpc-aix.new.s.
* callback/vacall_r/vacall-powerpc-aix.old.s: Remove file.
* callback/vacall_r/Makefile.in (vacall-powerpc.s): No longer use
vacall-powerpc-aix.old.s.
(SOURCE_FILES): Add vacall-powerpc-aix.s. Remove
vacall-powerpc-aix.new.s, vacall-powerpc-aix.old.s.
* trampoline/Makefile.devel (proto-powerpc-aix.s): Renamed from
proto-powerpc-aix.new.s.
(proto-powerpc-aix.old.s): Remove target.
* trampoline/proto-powerpc-aix.s: Renamed from
trampoline/proto-powerpc-aix.new.s.
* trampoline/proto-powerpc-aix.old.s: Remove file.
* trampoline/tramp-powerpc-aix.S: Renamed from
trampoline/tramp-powerpc.new.S.
* trampoline/tramp-powerpc.old.S: Remove file.
* trampoline/tramp-powerpc64-aix.S: Renamed from
trampoline/tramp-powerpc64.new.S.
* trampoline/Makefile.in (tramp-powerpc.s): No longer use
tramp-powerpc.old.S.
(tramp-powerpc64.s): Update.
(SOURCE_FILES): Add tramp-powerpc-aix.S, tramp-powerpc64-aix.S. Remove
tramp-powerpc.old.S, tramp-powerpc.new.S tramp-powerpc64.new.S.
* callback/trampoline_r/Makefile.devel (proto-powerpc-aix.s): Renamed
from proto-powerpc-aix.new.s.
(proto-powerpc-aix.old.s): Remove target.
* callback/trampoline_r/proto-powerpc-aix.s: Renamed from
callback/trampoline_r/proto-powerpc-aix.new.s.
* callback/trampoline_r/proto-powerpc-aix.old.s: Remove file.
* callback/trampoline_r/tramp-powerpc-aix.S: Renamed from
callback/trampoline_r/tramp-powerpc.new.S.
* callback/trampoline_r/tramp-powerpc.old.S: Remove file.
* callback/trampoline_r/tramp-powerpc64-aix.S: Renamed from
callback/trampoline_r/tramp-powerpc64.new.S.
* callback/trampoline_r/Makefile.in (tramp-powerpc.s): No longer use
tramp-powerpc.old.S.
(tramp-powerpc64.s): Update.
(SOURCE_FILES): Add tramp-powerpc-aix.S, tramp-powerpc64-aix.S. Remove
tramp-powerpc.old.S, tramp-powerpc.new.S tramp-powerpc64.new.S.
* PLATFORMS, **/PLATFORMS: Update.
2017-01-08 Bruno Haible <bruno@clisp.org>
Remove support for the m88k CPU.
The only place where this CPU is still used is in the OpenBSD 5.8
luna88k port. The luna88k is museum hardware. They use the ELF binary
format, through an inofficial port of the 10-years old binutils-2.17.
* avcall/Makefile.devel (avcall-m88k.s, tests-m88k.s): Remove targets.
* avcall/avcall-m88k.[cs]: Remove files.
* avcall/Makefile.in (avcall-m88k.lo): Remove target.
(SOURCE_FILES): Remove avcall-m88k.[cs].
* avcall/avcall.h.in: Remove defined(__m88k__) conditionals.
* vacall/Makefile.devel (vacall-m88k.s, tests-m88k.s): Remove targets.
* vacall/vacall-m88k.[cs]: Remove files.
* vacall/Makefile.in (vacall-m88k.o): Remove target.
(SOURCE_FILES): Remove vacall-m88k.[cs].
* vacall/vacall.h.in: Remove defined(__m88k__) conditionals.
* trampoline/Makefile.devel (proto-m88k.s, tramp-m88k.s): Remove targets.
* trampoline/proto-m88k.s: Remove file.
* trampoline/tramp-m88k.s: Remove file.
* trampoline/protexec.c: Remove __DOLPHIN__ conditionals.
* trampoline/trampoline.c: Remove defined(__m88k__), HAVE_SYS_M88KBCS_H conditionals.
* trampoline/trampoline.h.in: Don't test for m88k host.
* trampoline/configure.ac: Don't test for m88k host.
* callback/vacall_r/Makefile.devel (vacall-m88k.s): Remove target.
* callback/vacall_r/vacall-m88k.s: Remove file.
* callback/vacall_r/Makefile.in (vacall-m88k.lo): Remove target.
(SOURCE_FILES): Remove vacall-m88k.[cs].
* callback/vacall_r/vacall_r.h.in: Remove defined(__m88k__) conditionals.
* callback/trampoline_r/Makefile.devel (proto-m88k.s, tramp-m88k.s): Remove targets.
* callback/trampoline_r/proto-m88k.s: Remove file.
* callback/trampoline_r/tramp-m88k.s: Remove file.
* callback/trampoline_r/proto.c: Remove defined(__m88k__) conditional.
* callback/trampoline_r/trampoline.c: Remove defined(__m88k__), HAVE_SYS_M88KBCS_H conditionals.
* callback/trampoline_r/trampoline_r.h.in: Don't test for m88k host.
* callback/trampoline_r/test1.c: Remove defined(__m88k__) conditionals.
* callback/trampoline_r/configure.ac: Don't test for m88k host.
* callback/call-used-registers.txt: Update.
* callback/elf-hack.txt: Update.
* common/reg-struct-return.txt: Update.
* PLATFORMS, **/PLATFORMS: Update.
* README: Update.
* autogen.sh: Don't copy vacall-m88k.c.
* Makefile.in (COPIED_FILES): Remove callback/vacall_r/vacall-m88k.c.
2017-01-08 Bruno Haible <bruno@clisp.org>
Fix last commit.
* common/asm-x86_64.sh: Escape '&' characters in replacement string.
2017-01-03 Bruno Haible <bruno@clisp.org>
Add support for the Mac OS X 10.5 / x86_64 platform.
* common/asm-x86_64.sh: Disable the frame info for exception handlers
on Mac OS X.
* avcall/avcall-x86_64-macro.S: Regenerated.
* vacall/vacall-x86_64-macro.S: Likewise.
* callback/vacall_r/vacall-x86_64-macro.S: Likewise.
* m4/mmap.m4 (FFCALL_MMAP): Renamed from CL_MMAP. Remove AC_BEFORE
invocations. Test mmap without MAP_FIXED only. Don't define
HAVE_MMAP_DEVZERO_SUN4_29.
* m4/mprotect.m4 (FFCALL_MPROTECT): Renamed from CL_MPROTECT. Update
dependency.
* m4/getpagesize.m4 (CL_GETPAGESIZE): Remove AC_BEFORE invocations.
* m4/general.m4 (FFCALL_COMMON_TRAMPOLINE): Update dependencies.
2017-01-02 Bruno Haible <bruno@clisp.org>
Ensure the alignment of trampolines when we use the free-list approach.
* trampoline/trampoline.c (alloc_trampoline): Consider TRAMP_ALIGN
when allocating a page of trampolines.
* callback/trampoline_r/trampoline.c (alloc_trampoline_r): Likewise.
2017-01-02 Bruno Haible <bruno@clisp.org>
Fix a build failure on Solaris/SPARC with newer gcc.
* trampoline/trampoline.c: Remove 'extern inline' declarations.
* callback/trampoline_r/trampoline.c: Likewise. For SPARC, declare
__TR_clear_cache_2, not __TR_clear_cache_4.
* PLATFORMS: Update.
* avcall/PLATFORMS: Likewise.
* vacall/PLATFORMS: Likewise.
* trampoline/PLATFORMS: Likewise.
* callback/PLATFORMS: Likewise.
2017-01-02 Bruno Haible <bruno@clisp.org>
Add support for the Solaris/x86 platform with cc.
* common/asm-i386.sh: Remove the whitespace in the second argument of
INSN2MOVX.
* vacall/vacall-i386-macro.S: Regenerated.
* callback/vacall_r/vacall-i386-macro.S: Likewise.
* avcall/Makefile.in (avcall-i386.s): Eliminate ##.
* vacall/Makefile.in (vacall-i386.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-i386.s): Likewise.
* PLATFORMS: Update.
* avcall/PLATFORMS: Likewise.
* vacall/PLATFORMS: Likewise.
* trampoline/PLATFORMS: Likewise.
* callback/PLATFORMS: Likewise.
2017-01-02 Bruno Haible <bruno@clisp.org>
Add support for the Solaris/x86_64 platform.
* common/asm-x86_64.sh: Introduce ALIGN macro. Disable the frame info
for exception handlers on Solaris.
* common/asm-x86_64.h (ALIGN): New macro.
(FUNEND, EH_FRAME_SECTION): Define differently for Solaris.
* vacall/Makefile.devel (vacall-x86_64-macro.S): Don't use a #define
that assumes an ANSI C preprocessor.
* avcall/avcall-x86_64-macro.S: Regenerated.
* vacall/vacall-x86_64-macro.S: Likewise.
* callback/vacall_r/vacall-x86_64-macro.S: Likewise.
* avcall/Makefile.in (avcall-x86_64.s): Eliminate ##.
* vacall/Makefile.in (vacall-x86_64.s): Likewise.
* callback/vacall_r/Makefile.in (vacall-x86_64.s): Likewise.
* PLATFORMS: Update.
* avcall/PLATFORMS: Likewise.
* vacall/PLATFORMS: Likewise.
* trampoline/PLATFORMS: Likewise.
* callback/PLATFORMS: Likewise.
2017-01-01 Bruno Haible <bruno@clisp.org>
Assume ANSI C in the documentation.
* vacall/vacall.{3,html}: Use ANSI C declaration syntax. Stop
mentioning <varargs.h>. Reference stdarg(3).
* trampoline/trampoline.{3,html}: Reference stdarg(3).
* callback/callback.{3,html}: Use ANSI C declaration syntax. Stop
mentioning <varargs.h>.
* callback/trampoline_r/trampoline_r.{3,html}: Reference stdarg(3).
2017-01-01 Bruno Haible <bruno@clisp.org>
Support the CPPFLAGS configure variable.
* avcall/Makefile.in (CPPFLAGS): New variable.
Use it in all .c file compilations.
* vacall/Makefile.in (CPPFLAGS): New variable.
Use it in all .c file compilations.
* trampoline/Makefile.in (CPPFLAGS): New variable.
Use it in all .c file compilations.
* callback/Makefile.in (CPPFLAGS): New variable.
Use it in all .c file compilations.
* callback/vacall_r/Makefile.in (CPPFLAGS): New variable.
Use it in all .c file compilations.
* callback/trampoline_r/Makefile.in (CPPFLAGS): New variable.
Use it in all .c file compilations.
2017-01-01 Bruno Haible <bruno@clisp.org>
Add option --disable-elf-hack to disable the ELF workaround.
* m4/binfmt-elf.m4 (FFCALL_BINFMT_ELF_OPTION): New macro.
(FFCALL_BINFMT_ELF): Require it. Set BINFMT_ELF to false and define
BINFMT_ELF to 0 if --disable-elf-hack was specified.
* configure.ac: Invoke FFCALL_BINFMT_ELF_OPTION.
* callback/configure.ac: Likewise.
* callback/elf-hack.txt: Explain how to use --disable-elf-hack for
testing.
2017-01-01 Bruno Haible <bruno@clisp.org>
Generic workaround against the ELF symbol resolving routine.
Reported for x86_64 by Andrey Kutejko <andy128k@gmail.com>
at https://savannah.gnu.org/bugs/?32466 .
* m4/binfmt-elf.m4: New file.
* Makefile.in (SOURCE_FILES): Add it.
* callback/elf-hack.txt: New file.
* callback/test1.c: New file.
* callback/Makefile.in (SOURCE_FILES): Add both.
(test1.o, test1): New targets.
(check): Also run test1.
(MOSTLYCLEANFILES): Add test1.o, test1.
* callback/trampoline_r/configure.ac: Invoke FFCALL_BINFMT_ELF.
* callback/trampoline_r/Makefile.devel: Update the paths to the cross
assemblers.
* callback/trampoline_r/tramp-*.s: Add a 'trampelf' function.
* callback/trampoline_r/tramp-*.S: Likewise.
* callback/trampoline_r/tramp-*.o: Regenerated.
* callback/trampoline_r/trampoline.c: Implement alternate trampolines on
platforms with BINFMT_ELF.
* callback/trampoline_r/test1.c: Skip the test if BINFMT_ELF.
* callback/vacall_r/configure.ac: Invoke FFCALL_BINFMT_ELF.
* callback/vacall_r/elfhack-alpha.S: New file.
* callback/vacall_r/elfhack-alpha.sed: New file.
* callback/vacall_r/elfhack-arm.S: New file.
* callback/vacall_r/elfhack-arm.sed: New file.
* callback/vacall_r/elfhack-i386.S: New file.
* callback/vacall_r/elfhack-i386.sed: New file.
* callback/vacall_r/elfhack-m68k.S: New file.
* callback/vacall_r/elfhack-m68k.sed: New file.
* callback/vacall_r/elfhack-mips.S: New file.
* callback/vacall_r/elfhack-mips.sed: New file.
* callback/vacall_r/elfhack-mips64.S: New file.
* callback/vacall_r/elfhack-mips64.sed: New file.
* callback/vacall_r/elfhack-powerpc.S: New file.
* callback/vacall_r/elfhack-powerpc.sed: New file.
* callback/vacall_r/elfhack-powerpc64le.S: New file.
* callback/vacall_r/elfhack-powerpc64le.sed: New file.
* callback/vacall_r/elfhack-s390.S: New file.
* callback/vacall_r/elfhack-s390.sed: New file.
* callback/vacall_r/elfhack-x86_64.S: New file.
* callback/vacall_r/elfhack-x86_64.sed: New file.
* callback/vacall_r/Makefile.devel (vacall-i386-macro.S): Insert an
include of elfhack-i386.S.
(vacall-m68k.mit.S, vacall-m68k-netbsd-macro.S): Insert an include of
elfhack-m68k.S.
(vacall-mips-macro.S, vacall-mipsn32-macro.S): Insert an include of
elfhack-mips.S.
(vacall-mips64-macro.S): Insert an include of elfhack-mips64.S.
(vacall-alpha-macro.S): Renamed from vacall-alpha.s. Insert an include
of elfhack-alpha.S.
(vacall-arm-macro.S): Insert an include of elfhack-arm.S.
(vacall-armel-macro.S): Renamed from vacall-armel.s. Insert an include
of asm-arm.h and elfhack-arm.S.
(vacall-powerpc-linux-macro.S, vacall-powerpc-netbsd-macro.S): New
targets.
(vacall-powerpc-sysv4-macro.S): Renamed from vacall-powerpc-sysv4.s.
Insert an include of elfhack-powerpc.S.
(vacall-powerpc64le-macro.S): Renamed from vacall-powerpc64le.s. Insert
an include of elfhack-powerpc64.S.
(vacall-x86_64-macro.S): Insert an include of elfhack-x86_64.S.
(vacall-s390-macro.S): New target.
* callback/vacall_r/vacall-alpha-macro.S: Renamed from
callback/vacall_r/vacall-alpha.s. Include elfhack-alpha.S.
* callback/vacall_r/vacall-arm-macro.S: Include elfhack-arm.S.
* callback/vacall_r/vacall-armel-macro.S: Renamed from
callback/vacall_r/vacall-armel.s. Include asm-arm.h and elfhack-arm.S.
* callback/vacall_r/vacall-i386-macro.S: Include elfhack-i386.S.
* callback/vacall_r/vacall-m68k.mit.S: Include elfhack-m68k.S.
* callback/vacall_r/vacall-m68k-netbsd-macro.S: Likewise.
* callback/vacall_r/vacall-mips-macro.S: Include elfhack-mips.S.
* callback/vacall_r/vacall-mipsn32-macro.S: Likewise.
* callback/vacall_r/vacall-mips64-macro.S: Include elfhack-mips64.S.
* callback/vacall_r/vacall-powerpc-linux-macro.S: Generated, to include
elfhack-powerpc.S.
* callback/vacall_r/vacall-powerpc-netbsd-macro.S: Generated, to include
elfhack-powerpc.S.
* callback/vacall_r/vacall-powerpc-sysv4-macro.S: Renamed from
callback/vacall_r/vacall-powerpc-sysv4.s. Include elfhack-powerpc.S.
* callback/vacall_r/vacall-powerpc64le-macro.S: Renamed from
callback/vacall_r/vacall-powerpc64le.s. Include elfhack-powerpc64le.S.
* callback/vacall_r/vacall-s390-linux.s: Renamed from
callback/vacall_r/vacall-s390.s.
* callback/vacall_r/vacall-s390-macro.S: Generated, to include
elfhack-s390.S.
* callback/vacall_r/vacall-x86_64-macro.S: Include elfhack-x86_64.S.
* callback/vacall_r/Makefile.in (ASPFLAGS): Conditionally define
BINFMT_ELF.
(vacall-i386.s, vacall-m68k.s, vacall-mips.s, vacall-mipsn32.s,
vacall-mips64.s): Add a -I option for elfhack-*.S.
(vacall-alpha.s): New target.
(vacall-alpha.lo): Depend on it.
(vacall-arm.s): Add a -I option for elfhack-*.S.
(vacall-armel.s): New target.
(vacall-armel.lo): Depend on it.
(vacall-powerpc.s): For the linux, netbsd, sysv4 syntaxes, use the
corresponding *.S file.
(vacall-powerpc64le.s): New target.
(vacall-powerpc64le.lo): Depend on it.
(vacall-x86_64.s): Add a -I option for elfhack-*.S.
(vacall-s390.s): New target.
(vacall-s390.lo): Depend on it.
(clean): Remove also vacall-alpha.s, vacall-armel.s,
vacall-powerpc64le.s, vacall-s390.s.
(SOURCE_FILES): Update for the renamed files. Add
vacall-powerpc-linux-macro.S, vacall-powerpc-netbsd-macro.S,
vacall-s390-macro.S, elfhack-*.S, elfhack-*.sed.
* README: Clarify on which platforms the problem with the ELF symbol
resolving routine still exists.
2016-12-31 Bruno Haible <bruno@clisp.org>
Update doc about available registers.
* callback/call-used-registers.txt: Clarify call-used registers versus
registers available for use in trampolines.
* trampoline/tramp-powerpc-old.s: Mark as obsolete.
* callback/trampoline_r/tramp-powerpc-old.s: Likewise.
* trampoline/tramp-x86_64.s: Fix comment about available registers.
* callback/trampoline_r/tramp-x86_64.s: Likewise.
* trampoline/tramp-powerpc-sysv4.s: Likewise.
* callback/trampoline_r/tramp-powerpc-sysv4.s: Likewise.
* trampoline/tramp-*.s: Update comment about available registers.
* trampoline/tramp-*.S: Likewise.
* callback/trampoline_r/tramp-*.s: Likewise.
* callback/trampoline_r/tramp-*.S: Likewise.
2016-12-31 Bruno Haible <bruno@clisp.org>
Simplify powerpc compilation rules.
* avcall/Makefile.in (avcall-powerpc.s): New rule.
(avcall-powerpc.lo): Depend on it. Remove libtool specific workaround.
(clean): Remove also avcall-powerpc.s.
* vacall/Makefile.in (vacall-powerpc.s): New rule.
(vacall-powerpc.o): Depend on it.
(clean): Remove also vacall-powerpc.s.
* callback/vacall_r/Makefile.in (vacall-powerpc.s): New rule.
(vacall-powerpc.lo): Depend on it. Remove libtool specific workaround.
(clean): Remove also vacall-powerpc.s.
2016-12-29 Bruno Haible <bruno@clisp.org>
Revert "Pass the environment argument through the stack, not in a
register." commit from 1999-06-01.
* vacall/vacall-i386.c: Revert: Allow use of registers %esi, %edi, %ebp.
Expect env in %ecx, not as first stack argument.
* vacall/vacall-i386-macro.S: Revert.
* callback/vacall_r/vacall-i386-macro.S: Revert.
* callback/trampoline_r/proto.c (tramp2): Remove function.
* callback/trampoline_r/proto-i386.s: Revert accordingly.
* callback/trampoline_r/tramp-i386.s: Put the data in %ecx, not as
first stack argument.
* callback/trampoline_r/trampoline.c [i386]: Revert to simple
trampoline.
* callback/trampoline_r/test1.c (f) [i386]: Expect env in %ecx, not as
first stack argument.
2016-12-29 Bruno Haible <bruno@clisp.org>
Revert "Never build shared libraries: --enable-shared has no effect."
commit from 2012-04-24.
* README: Revert, but still recommend --disable-shared.
* avcall/Makefile.in (libavcall.la): Don't pass -static to libtool.
* callback/Makefile.in (libcallback.la): Likewise.
* callback/vacall_r/Makefile.in (libvacall.la): Likewise.
* callback/trampoline_r/Makefile.in (libtrampoline.la): Likewise.
2016-12-30 Bruno Haible <bruno@clisp.org>
Rename text files.
* common/reg-struct-return.txt: Renamed from common/reg-struct-return.
* callback/call-used-registers.txt: Renamed from
callback/call-used-registers.
* trampoline/PORTING: Update.
* callback/README: Likewise.
2016-12-29 Bruno Haible <bruno@clisp.org>
Update documentation about register usage.
* callback/call-used-registers: Update regarding powerpc/NetBSD.
2016-12-29 Bruno Haible <bruno@clisp.org>
Remove support for the 'convex' CPU.
* avcall/Makefile.devel (avcall-convex.s, tests-convex.s): Remove
targets.
* avcall/avcall-convex.[cs]: Remove files.
* avcall/Makefile.in (avcall-convex.lo): Remove target.
(SOURCE_FILES): Remove avcall-convex.[cs].
* avcall/avcall.h.in: Remove defined(__convex__) conditionals.
* vacall/Makefile.devel (vacall-convex.s, tests-convex.s): Remove
targets.
* vacall/vacall-convex.[cs]: Remove files.
* vacall/Makefile.in (vacall-convex.o): Remove target.
(SOURCE_FILES): Remove vacall-convex.[cs].
* vacall/vacall.h.in: Remove defined(__convex__) conditionals.
* trampoline/Makefile.devel (proto-convex.s, cache-convex.s,
tramp-convex.s): Remove targets.
* trampoline/proto-convex.s: Remove file.
* trampoline/cache-convex.[cs]: Remove files.
* trampoline/tramp-convex.s: Remove file.
* trampoline/Makefile.in (cache-convex.o): Remove target.
(SOURCE_FILES): Remove cache-convex.[cs].
* trampoline/cache.c: Remove defined(__convex__) conditionals.
* trampoline/protexec.c: Remove defined(__convex__) conditionals.
* trampoline/trampoline.c: Remove defined(__convex__) conditionals.
* trampoline/trampoline.h.in: Don't test for convex host.
* trampoline/configure.ac: Don't test for convex host.
* callback/vacall_r/Makefile.devel (vacall-convex.s): Remove target.
* callback/vacall_r/vacall-convex.s: Remove file.
* callback/vacall_r/Makefile.in (vacall-convex.lo): Remove target.
(SOURCE_FILES): Remove vacall-convex.[cs].
* callback/vacall_r/vacall_r.h.in: Remove defined(__convex__)
conditionals.
* callback/trampoline_r/Makefile.devel (proto-convex.s, cache-convex.s,
tramp-convex.s): Remove targets.
* callback/trampoline_r/proto-convex.s: Remove file.
* callback/trampoline_r/tramp-convex.s: Remove file.
* callback/trampoline_r/Makefile.in (cache-convex.lo): Remove target.
(SOURCE_FILES): Remove cache-convex.[cs].
* callback/trampoline_r/proto.c: Remove defined(__convex__)
conditionals.
* callback/trampoline_r/trampoline.c: Remove defined(__convex__)
conditionals.
* callback/trampoline_r/trampoline_r.h.in: Don't test for convex host.
* callback/trampoline_r/test1.c: Remove defined(__convex__)
conditionals.
* callback/trampoline_r/configure.ac: Don't test for convex host.
* callback/call-used-registers: Update.
* common/reg-struct-return: Update.
* PLATFORMS, **/PLATFORMS: Update.
* autogen.sh: Don't copy vacall-convex.c, cache-convex.[cs].
* Makefile.in (COPIED_FILES): Remove callback/vacall_r/vacall-convex.c,
callback/trampoline_r/cache-convex.[cs].
2016-12-29 Bruno Haible <bruno@clisp.org>
Fix collision between different copies of __structcpy.
Reported in https://savannah.gnu.org/bugs/?23474 .
* avcall/avcall-structcpy.c: New file.
* avcall/Makefile.in (avcall-structcpy.lo): Renamed from structcpy.lo.
(SOURCE_FILES): Add avcall-structcpy.c.
* avcall/Makefile.mingw32 (avcall-structcpy.o): Renamed from
structcpy.o.
* avcall/Makefile.msvc (avcall-structcpy.obj): Renamed from
structcpy.obj.
* avcall/avcall.h.in: Declare and use avcall_structcpy instead of
__structcpy.
* avcall/README: Update.
* vacall/vacall-structcpy.c: New file.
* vacall/Makefile.in (vacall-structcpy.o): Renamed from structcpy.o.
(SOURCE_FILES): Add vacall-structcpy.c.
* vacall/Makefile.mingw32 (vacall-structcpy.o): Renamed from
structcpy.o.
* vacall/Makefile.msvc (vacall-structcpy.obj): Renamed from
structcpy.obj.
* vacall/vacall.h.in: Declare and use vacall_structcpy instead of
__structcpy.
* callback/vacall_r/vacall-structcpy.c: New file.
* callback/vacall_r/Makefile.in (vacall-structcpy.lo): Renamed from
structcpy.lo.
(SOURCE_FILES): Add vacall-structcpy.c.
* callback/vacall_r/Makefile.mingw32 (vacall-structcpy.o): Renamed from
structcpy.o.
* callback/vacall_r/Makefile.msvc (vacall-structcpy.obj): Renamed from
structcpy.obj.
* callback/vacall_r/vacall_r.h.in: Declare and use callback_structcpy
instead of __structcpy.
* callback/Makefile.in (libcallback.la): Use vacall-structcpy.lo, not
structcpy.lo.
* callback/Makefile.mingw32 (OBJECTS): Use vacall-structcpy.o, not
structcpy.o.
* callback/Makefile.msvc (OBJECTS): Use vacall-structcpy.obj, not
structcpy.obj.
(vacall_r/vacall-structcpy.obj): Renamed from vacall_r/structcpy.obj.
(clean): Update accordingly.
2016-12-29 Bruno Haible <bruno@clisp.org>
Put duplicated files under version control only once, part 2.
* vacall/vacall-powerpc.c: Update with the 'REENTRANT' code from
callback/vacall_r/.
* vacall/vacall-s390.c: Likewise.
* callback/vacall_r/vacall-alpha.c: Remove file.
* callback/vacall_r/vacall-arm.c: Remove file.
* callback/vacall_r/vacall-armel.c: Remove file.
* callback/vacall_r/vacall-convex.c: Remove file.
* callback/vacall_r/vacall-hppa.c: Remove file.
* callback/vacall_r/vacall-i386.c: Remove file.
* callback/vacall_r/vacall-ia64.c: Remove file.
* callback/vacall_r/vacall-m68k.c: Remove file.
* callback/vacall_r/vacall-m88k.c: Remove file.
* callback/vacall_r/vacall-mips.c: Remove file.
* callback/vacall_r/vacall-mipsn32.c: Remove file.
* callback/vacall_r/vacall-mips64.c: Remove file.
* callback/vacall_r/vacall-powerpc.c: Remove file.
* callback/vacall_r/vacall-powerpc64.c: Remove file.
* callback/vacall_r/vacall-powerpc64le.c: Remove file.
* callback/vacall_r/vacall-s390.c: Remove file.
* callback/vacall_r/vacall-sparc.c: Remove file.
* callback/vacall_r/vacall-sparc64.c: Remove file.
* callback/vacall_r/vacall-x86_64.c: Remove file.
* autogen.sh: Copy these files from vacall/.
* Makefile.in (COPIED_FILES): Add these files.
2016-12-28 Bruno Haible <bruno@clisp.org>
More robust quoting in Autoconf macros.
* configure.ac: Add brackets around Autoconf macro arguments.
* avcall/configure.ac: Likewise.
* vacall/configure.ac: Likewise.
* trampoline/configure.ac: Likewise.
* callback/configure.ac: Likewise.
* callback/vacall_r/configure.ac: Likewise.
* callback/trampoline_r/configure.ac: Likewise.
* m4/as-underscore.m4: Likewise.
* m4/cc-gcc.m4: Likewise.
* m4/codeexec.m4: Likewise.
* m4/general.m4: Likewise.
* m4/getpagesize.m4: Likewise.
* m4/ireg.m4: Likewise.
* m4/ln.m4: Likewise.
* m4/mach-vm.m4: Likewise.
* m4/mmap.m4: Likewise.
* m4/mprotect.m4: Likewise.
* m4/pccstruct.m4: Likewise.
* m4/proto.m4: Likewise.
* m4/shm.m4: Likewise.
* m4/smallstruct.m4: Likewise.
2016-12-28 Bruno Haible <bruno@clisp.org>
Update list of contributors.
* README: List all contributors.
2016-12-28 Bruno Haible <bruno@clisp.org>
Add support for 64-bit mode (x86_64) on Mac OS X.
* common/asm-x86_64.sh: New file.
* common/asm-x86_64.h: New file.
* Makefile.in (SOURCE_FILES): Add them.
* avcall/avcall-x86_64-linux.s: Renamed from avcall/avcall-x86_64.s.
* avcall/Makefile.devel (avcall-x86_64-linux.s): Renamed from avcall-x86_64.s.
(avcall-x86_64-macro.S): New target.
* avcall/avcall-x86_64-macro.S: New file, generated through avcall/Makefile.devel.
* avcall/Makefile.in (avcall-x86_64.s): New target.
(avcall-x86_64.lo): Use it, in the build dir.
(clean): Remove it.
(SOURCE_FILES): Add avcall-x86_64-linux.s, avcall-x86_64-macro.S. Remove avcall-x86_64.s.
* vacall/vacall-x86_64-linux.s: Renamed from vacall/vacall-x86_64.s.
* vacall/Makefile.devel (vacall-x86_64-linux.s): Renamed from vacall-x86_64.s.
(vacall-x86_64-macro.S): New target.
* vacall/vacall-x86_64-macro.S: New file, generated through vacall/Makefile.devel.
* vacall/Makefile.in (vacall-x86_64.s): New target.
(vacall-x86_64.o): Use it, in the build dir.
(clean): Remove it.
(SOURCE_FILES): Add vacall-x86_64-linux.s, vacall-x86_64-macro.S. Remove vacall-x86_64.s.
* callback/vacall_r/vacall-x86_64-linux.s: Renamed from callback/vacall_r/vacall-x86_64.s.
* callback/vacall_r/Makefile.devel (vacall-x86_64-linux.s): Renamed from vacall-x86_64.s.
(vacall-x86_64-macro.S): New target.
* callback/vacall_r/vacall-x86_64-macro.S: New file, generated through callback/vacall_r/Makefile.devel.
* callback/vacall_r/Makefile.in (vacall-x86_64.s): New target.
(vacall-x86_64.lo): Use it, in the build dir.
(clean): Remove it.
(SOURCE_FILES): Add vacall-x86_64-linux.s, vacall-x86_64-macro.S. Remove vacall-x86_64.s.
* callback/trampoline_r/test1.c (CHECK_ENV_REGISTER): New macro.
(f, main): Use it instead of __GNUC__.
* NEWS: Mention the change.
2016-12-28 Bruno Haible <bruno@clisp.org>
Rename the asm* files.
* common/asm-arm.h: Renamed from common/asmarm.h.
* common/asm-arm.sh: Renamed from common/asmarm.sh.
* common/asm-i386.hh: Renamed from common/asmi386.hh.
* common/asm-i386.sh: Renamed from common/asmi386.sh.
* common/asm-m68k.h: Renamed from common/asmm68k.h.
* common/asm-m68k.sh: Renamed from common/asmm68k.sh.
* common/asm-mips.h: Renamed from common/asmmips.h.
* common/asm-mips.sh: Renamed from common/asmmips.sh.
* common/asm-sparc.h: Renamed from common/asmsparc.h.
* common/asm-sparc.sh: Renamed from common/asmsparc.sh.
* common/asm-sparc64.sh: Renamed from common/asmsparc64.sh.
* **/Makefile.devel, **/*.S: Update.
* Makefile.maint (common/asm-i386.h): Renamed from common/asmi386.h.
* Makefile.in (SOURCE_FILES, GENERATED_FILES): Update.
2016-12-27 Bruno Haible <bruno@clisp.org>
Add the real source of asmi386.h.
* common/asmi386.hh: New file, from GNU clisp.
* common/asmi386.h: Remove file.
* Makefile.maint (common/asmi386.h): New target. Rule copied from
GNU clisp's Makefile.devel.
(all): Depend on it.
* Makefile.in (SOURCE_FILES): Add common/asmi386.hh. Remove
common/asmi386.h.
(GENERATED_FILES): Add common/asmi386.h.
2016-12-27 Bruno Haible <bruno@clisp.org>
Modernize Cygwin detection.
* common/asmi386.h: Test __CYGWIN__, not __CYGWIN32__.
From Ken Brown <kbrown@cornell.edu> on 2015-03-05.
2016-12-27 Bruno Haible <bruno@clisp.org>
Create tarballs through an Automake-like "make dist" command.
* Makefile.in (SOURCE_FILES, LIBTOOL_IMPORTED_FILES,
GNULIB_IMPORTED_FILES, IMPORTED_FILES, COPIED_FILES, GENERATED_FILES,
DISTFILES): New macros.
(distdir): New target.
(PACKAGE, VERSION, TAR, GZIP): New macros.
(dist): New target.
* avcall/Makefile.in (SOURCE_FILES, GENERATED_FILES, DISTFILES): New
macros.
(distdir): New target.
* vacall/Makefile.in (SOURCE_FILES, GENERATED_FILES, DISTFILES): New
macros.
(distdir): New target.
* trampoline/Makefile.in (SOURCE_FILES, GENERATED_FILES, DISTFILES):
New macros.
(distdir): New target.
* callback/Makefile.in (SOURCE_FILES, GENERATED_FILES, DISTFILES): New
macros.
(distdir): New target.
* callback/vacall_r/Makefile.in (SOURCE_FILES, GENERATED_FILES,
DISTFILES): New macros.
(distdir): New target.
* callback/trampoline_r/Makefile.in (SOURCE_FILES, GENERATED_FILES,
DISTFILES): New macros.
(distdir): New target.
* configure.ac (extrasub): Replace all occurrences of @subdir@.
* callback/configure.ac (extrasub): Likewise.
2016-12-27 Bruno Haible <bruno@clisp.org>
Bump version number.
* VERSION: Set to 0x010D (= 1.13).
2016-12-27 Bruno Haible <bruno@clisp.org>
Rename each configure.in to configure.ac.
* configure.ac: Renamed from configure.in.
* avcall/configure.ac: Renamed from avcall/configure.in.
* vacall/configure.ac: Renamed from vacall/configure.in.
* trampoline/configure.ac: Renamed from trampoline/configure.in.
* callback/configure.ac: Renamed from callback/configure.in.
* callback/vacall_r/configure.ac: Renamed from
callback/vacall_r/configure.in.
* callback/trampoline_r/configure.ac: Renamed from
callback/trampoline_r/configure.in.
* Makefile.maint (ALL_CONFIGURE_AC): Renamed from ALL_CONFIGURE_IN.
(aclocal.m4, configure, %/configure, %/config.h.in): Update.
* README, */README: Update.
2016-12-27 Bruno Haible <bruno@clisp.org>
Modernize quoting.
* NEWS: Quote ‘like this’, not `like this'.
* README.os2: Likewise.
* common/uniq-u.c: Likewise.
* avcall/DOC: Likewise.
* avcall/avcall-i386.c: Likewise.
* avcall/avcall-sparc.c: Likewise.
* avcall/avcall-sparc64.c: Likewise.
* avcall/avcall.h.in: Likewise.
* avcall/avcall.html: Likewise.
* vacall/vacall.h.in: Likewise.
* callback/trampoline_r/trampoline.c: Likewise.
* callback/trampoline_r/trampoline_r.h.in: Likewise.
* trampoline/PORTING: Likewise.
* trampoline/trampoline.c: Likewise.
* trampoline/trampoline.h.in: Likewise.
* callback/vacall_r/vacall_r.h.in: Likewise.
* configurations/README: Likewise.
* avcall/Makefile.maint (ROFF_MAN): Produce UTF-8 output instead of
ASCII output.
* vacall/Makefile.maint (ROFF_MAN): Likewise.
* trampoline/Makefile.maint (ROFF_MAN): Likewise.
* callback/Makefile.maint (ROFF_MAN): Likewise.
* callback/trampoline_r/Makefile.maint (ROFF_MAN): Likewise.
2016-12-27 Bruno Haible <bruno@clisp.org>
Avoid unnecessary recursion in "make maintainer-clean".
* Makefile.in (DISTCLEANFILES): New variable.
(distclean, maintainer-clean): Use it.
* callback/Makefile.in (DISTCLEANFILES): New variable.
(distclean): Use it. Don't depend on 'clean'. Instead, use
MOSTLYCLEANDIRS, MOSTLYCLEANFILES.
(maintainer-clean): Don't depend on 'distclean'. Instead, use
MOSTLYCLEANDIRS, MOSTLYCLEANFILES, DISTCLEANFILES.
(distclean-subdirs, maintainerclean-subdirs): Inline and remove targets.
2016-12-27 Bruno Haible <bruno@clisp.org>
Make "make mostlyclean" act like "make clean".
* callback/Makefile.in (MOSTLYCLEANDIRS, MOSTLYCLEANFILES): New
variables.
(mostlyclean, clean): Use them.
(clean-subdirs): Inline and remove target.
2016-12-27 Bruno Haible <bruno@clisp.org>
Fix Makefile rules for powerpc64, from 2006-04-27.
* trampoline/Makefile.in (clean): Also remove tramp-powerpc64.s.
* callback/trampoline_r/Makefile.in (clean): Likewise.
2016-12-26 Bruno Haible <bruno@clisp.org>
Reorder Makefile targets.
* trampoline/Makefile.in: Reorder.
* callback/trampoline_r/Makefile.in: Reorder.
2016-12-26 Bruno Haible <bruno@clisp.org>
Fix Makefile rules for powerpc64le, from 2015-08-23.
* trampoline/Makefile.devel (CPP): New variable.
(tramp-powerpc64le.o, tramp-powerpc64le.s): New targets.
* trampoline/Makefile.in (tramp-powerpc64le.o, tramp-powerpc64le.s):
Remove targets.
* callback/trampoline_r/Makefile.devel (CPP): New variable.
(tramp-powerpc64le.o, tramp-powerpc64le.s): New targets.
* callback/trampoline_r/Makefile.in (tramp-powerpc64le.lo,
tramp-powerpc64le.s): Remove targets.
2016-12-26 Bruno Haible <bruno@clisp.org>
Fix Makefile rules for s390, from 2002-03-24.
* trampoline/Makefile.devel (tramp-s390.o): New target.
* trampoline/Makefile.in (tramp-s390.o): Remove target.
* callback/trampoline_r/Makefile.devel (tramp-s390.o): New target.
* callback/trampoline_r/Makefile.in (tramp-s390.lo): Remove target.
2016-12-26 Bruno Haible <bruno@clisp.org>
Fix "make distclean".
* avcall/Makefile.in (distclean): Also remove config.h.
* callback/Makefile.in (distclean): Likewise.
2016-12-26 Bruno Haible <bruno@clisp.org>
Make it possible to build in $(srcdir) on case-insensitive file systems.
* avcall/avcall-${cpu}-macro.S: Renamed from avcall/avcall-${cpu}.S.
* avcall/Makefile.devel: Update accordingly.
* avcall/Makefile.in: Likewise.
* vacall/vacall-${cpu}-macro.S: Renamed from vacall/vacall-${cpu}.S.
* vacall/Makefile.devel: Update accordingly.
* vacall/Makefile.in: Likewise.
* trampoline/cache-sparc-macro.S: Renamed from trampoline/cache-sparc.S.
* trampoline/Makefile.devel: Update accordingly.
* trampoline/Makefile.in: Update accordingly.
* callback/vacall_r/vacall-${cpu}-macro.S: Renamed from
callback/vacall_r/vacall-${cpu}.S.
* callback/vacall_r/Makefile.devel: Update accordingly.
* callback/vacall_r/Makefile.in: Likewise.
* callback/trampoline_r/cache-sparc-macro.S: Renamed from
callback/trampoline_r/cache-sparc.S.
* callback/trampoline_r/Makefile.devel: Update accordingly.
* callback/trampoline_r/Makefile.in: Update accordingly.
2016-12-26 Bruno Haible <bruno@clisp.org>
Simplify armel build rule.
* avcall/Makefile.devel (avcall-armel.s): Renamed from avcall-armel.S.
Simplify.
* avcall/Makefile.in (avcall-armel.lo): Use $(srcdir)/avcall-armel.s.
(avcall-armel.s): Remove target.
2016-12-26 Bruno Haible <bruno@clisp.org>
Put duplicated files under version control only once.
* autogen.sh: Copy some files from trampoline/ to callback/trampoline_r.
* common/asm*.sh: Moved here from avcall/, vacall/, callback/vacall_r.
* common/asm*.h: Likewise.
* common/reg-struct-return: Likewise.
* common/structcpy.c: Likewise.
* common/uniq-u.c: Moved here from avcall/, vacall/, callback/.
* avcall/Makefile.devel: Update paths of asm*.sh.
* avcall/Makefile.in: Add -I options for asm*.h. Update path of structcpy.c.
* avcall/Makefile.mingw32: Likewise.
* avcall/Makefile.msvc: Likewise. Update path of uniq-u.c.
* vacall/Makefile.devel: Update paths of asm*.sh.
* vacall/Makefile.in: Add -I options for asm*.h. Update path of structcpy.c.
* vacall/Makefile.mingw32: Likewise.
* vacall/Makefile.msvc: Likewise. Update path of uniq-u.c.
* trampoline/Makefile.devel: Update paths of asm*.sh.
* trampoline/Makefile.in: Add -I options for asm*.h.
* callback/Makefile.msvc: Update path of uniq-u.c.
* callback/vacall_r/Makefile.devel: Update paths of asm*.sh.
* callback/vacall_r/Makefile.in: Add -I options for asm*.h. Update path of structcpy.c.
* callback/vacall_r/Makefile.mingw32: Likewise.
* callback/vacall_r/Makefile.msvc: Likewise.
* callback/trampoline_r/Makefile.devel: Update paths of asm*.sh.
* callback/trampoline_r/Makefile.in: Add -I options for asm*.h.
2016-12-26 Bruno Haible <bruno@clisp.org>
Fix dependencies.
* avcall/Makefile.devel (avcall-sparc64.S): Depend on asmsparc64.sh,
not asmsparc.sh.
* vacall/Makefile.devel (vacall-sparc64.S): Likewise.
* callback/vacall_r/Makefile.devel (vacall-sparc64.S): Likewise.
* callback/Makefile.maint (vacall_r/vacall-i386-*.c): Don't depend on
vacall_r/asmi386.sh.
2016-12-26 Bruno Haible <bruno@clisp.org>
Add missing dependency.
* callback/vacall_r/Makefile.devel (vacall-m68k-netbsd.S): Depend on
asmm68k.sh.
2016-12-26 Bruno Haible <bruno@clisp.org>
Switch to libtool-2.4.6.
* autogen.sh (LIBTOOL_VERSION): Set to 2.4.6.
* Makefile.maint (libtool-imported-files): Import also m4/ltoptions.m4,
m4/ltsugar.m4, m4/ltversion.m4, m4/lt~obsolete.m4.
* m4/general.m4 (FFCALL_COMMON_LIBTOOL): Invoke LT_INIT.
2016-12-26 Bruno Haible <bruno@clisp.org>
Switch to autoconf 2.69 and automake 1.15.
* Makefile.maint (ACLOCAL, AUTOCONF, AUTOHEADER): Bump version numbers.
2016-12-26 Bruno Haible <bruno@clisp.org>
Remove files that can easily be autogenerated from version control.
* autogen.sh: New file.
* Makefile.maint: New file, partially inspired by Makefile.devel.
* Makefile.devel (all): Remove target and its subtargets.
* avcall/Makefile.maint: New file, extracted from avcall/Makefile.devel.
* avcall/Makefile.devel (precompiled): Renamed from 'all'.
Remove all targets that are moved to avcall/Makefile.maint.
* vacall/Makefile.maint: New file, extracted from vacall/Makefile.devel.
* vacall/Makefile.devel (precompiled): Renamed from 'all'.
Remove all targets that are moved to vacall/Makefile.maint.
* trampoline/Makefile.maint: New file, extracted from
trampoline/Makefile.devel.
* trampoline/Makefile.devel (precompiled): Renamed from 'all'.
Remove all targets that are moved to trampoline/Makefile.maint.
* callback/Makefile.maint: Renamed from callback/Makefile.devel.
(trampoline_r/trampoline_r.man): New target.
(totally-clean, force): New targets.
* callback/vacall_r/Makefile.maint: New file, extracted from
callback/vacall_r/Makefile.devel.
* callback/vacall_r/Makefile.devel (precompiled): Renamed from 'all'.
Remove all targets that are moved to callback/vacall_r/Makefile.maint.
(vacall_r.man): Remove target.
* callback/trampoline_r/Makefile.maint: New file, extracted from
callback/trampoline_r/Makefile.devel.
* callback/trampoline_r/Makefile.devel (precompiled): Renamed from
'all'.
Remove all targets that are moved to
callback/trampoline_r/Makefile.maint.
2016-12-26 Bruno Haible <bruno@clisp.org>
Remove test result files from version control.
* callback/trampoline_r/tests.passed.i386-pc-win32-gcc: Remove file.
2015-08-23 Hernán Erasmo <dherasmo@gmail.com>
Added compatibility with ppc64le architecture. Credit goes
to Masanori Mitsugi <mitsugi@linux.vnet.ibm.com>
2012-04-24 Sam Steingold <sds@gnu.org>
Never build shared libraries: --enable-shared has no effect.
* avcall/Makefile.in (libavcall.la): pass -static to LIBTOOL_LINK
* callback/Makefile.in (libcallback.la): ditto
* callback/trampoline_r/Makefile.in (libtrampoline.la): ditto
* callback/vacall_r/Makefile.in (libvacall.la): ditto
2010-09-03 Sam Steingold <sds@gnu.org>
* configure.in: call AC_CONFIG_AUX_DIR(build-aux)
2010-09-03 Sam Steingold <sds@gnu.org>
* Makefile.devel (gnulib-imported): also import host-cpu-c-abi
* avcall/configure.in, callback/configure.in:
* callback/trampoline_r/configure.in, callback/vacall_r/configure.in:
* trampoline/configure.in, vacall/configure.in:
use gl_HOST_CPU_C_ABI instead of FFCALL_CANONICAL_HOST_CPU
* m4/general.m4: remove FFCALL_CANONICAL_HOST_CPU,
FFCALL_CACHE_EGREP_CPP, FFCALL_SET_CPU_ABI
* glm4/host-cpu-c-abi.m4: add
* avcall/Makefile.in, callback/Makefile.in:
* callback/trampoline_r/Makefile.in, callback/vacall_r/Makefile.in:
* trampoline/Makefile.in, vacall/Makefile.in,
use @HOST_CPU_C_ABI@ instead of @host_cpu_abi@
* callback/trampoline_r/configure.in, trampoline/configure.in:
* m4/codeexec.m4: use $HOST_CPU_C_ABI instead of $host_cpu_abi
2010-07-20 Sam Steingold <sds@gnu.org>
* callback/trampoline_r/trampoline_r.h.in, trampoline/trampoline.h.in:
add autoconf CPU detection block; this fixes trampoline on sparc64/linux
Suggested by Valeriy E. Ushakov <uwe@netbsd.org>
2010-07-20 Valeriy E. Ushakov <uwe@netbsd.org>
https://savannah.gnu.org/bugs/?22081
support sparc64 for solaris & *bsd
* avcall/avcall-sparc64.c, avcall/avcall.h.in:
Kill callee (%g2). Sparc64 doesn't need that code.
Delete space[] - gcc optimizes it away anyway, and it doesn't
guarantee correct operation even if it's not removed - if compiler
allocs it below other local vars on the stack, then calling
function with enough arguments will clobber local vars.
Instead i've changed the code to use alloca, see the comment in
the code for details on why this works. It also doesn't waste 2K
of stack on each call, we only grab the space we actually need.
I nuked farg_mask. It's not necessary for float args, marking
them in darg_mask does the right thing (new av_float). And they
just hurt structure passing, where, again, marking up darg_mask
does the right thing.
* avcall/avcall-saprc64.S: Regenerated with NetBSD gcc4
* vacall/vacall-sparc64.S, callback/vacall_r/vacall-sparc64.S:
New binutils on sparc64 insist on having global registers properly
declared with .register. I've just added the declarations manually
w/out actually regenerating the files to demonstrate that's the
only change needed there. IF the files are regenerated with a
newer compiler you will get them automatically.
2009-11-10 Sam Steingold <sds@gnu.org>
* vacall/Makefile.in (vacall-armel.o): vacall-armel.s is in $(srcdir)
* callback/vacall_r/Makefile.in (vacall-armel.lo): ditto
2009-10-16 Sam Steingold <sds@gnu.org>
the final fix for LIBFFCALL_VERSION
* Makefile.devel (vacall/vacall.h.msvc, vacall/vacall.h.mingw32)
(callback/vacall_r/vacall_r.h.msvc)
(callback/vacall_r/vacall_r.h.mingw32): depend on VERSION
* avcall/avcall.h.in, callback/callback.h.in,
* callback/trampoline_r/trampoline_r.h.in, vacall/vacall.h.in,
* callback/vacall_r/vacall_r.h.in, trampoline/trampoline.h.in:
use @LIBFFCALL_VERSION@ instead of @PACKAGE_VERSION@
* avcall/configure.in: additional processing for avcall.h to
substitute @LIBFFCALL_VERSION@
* callback/configure.in: ditto for callback.h
* callback/trampoline_r/configure.in: ditto for trampoline_r.h
* callback/vacall_r/configure.in: ditto for vacall_r.h
* trampoline/configure.in: ditto for trampoline.h
* vacall/configure.in: ditto for vacall.h
* callback/vacall_r/Makefile.devel (vacall_r.h.msvc)
(vacall_r.h.mingw32): depend on ../../VERSION;
substitute @LIBFFCALL_VERSION@
* vacall/Makefile.devel (vacall.h.msvc, vacall.h.mingw32): depend
on ../VERSION; substitute @LIBFFCALL_VERSION@
2009-10-16 Sam Steingold <sds@gnu.org>
* glm4/longlong.m4, glm4/nocrash.m4: update from gnulib
2009-10-16 Sam Steingold <sds@gnu.org>
* Makefile.devel (update-gnulib): use git when available
2009-10-16 Sam Steingold <sds@gnu.org>
* avcall/configure.in, callback/configure.in,
* callback/trampoline_r/configure.in, callback/vacall_r/configure.in,
* trampoline/configure.in, vacall/configure.in: list the main generated
header (avcall.h et al) in AC_CONFIG_HEADERS, not in AC_CONFIG_FILES
fixes the bug#27706 (introduced on 2009-04-24)
2009-04-28 Sam Steingold <sds@gnu.org>
* m4/general.m4 (FFCALL_CACHE_EGREP_CPP, FFCALL_SET_CPU_ABI):
abstracted out of FFCALL_CANONICAL_HOST_CPU
(FFCALL_CANONICAL_HOST_CPU): use them
2009-04-27 Max Lapan <max.lapan@gmail.com>
Sam Steingold <sds@gnu.org>
* avcall/Makefile.devel, avcall/Makefile.in, avcall/avcall.h.in,
* callback/trampoline_r/Makefile.devel,
* callback/trampoline_r/Makefile.in,
* callback/trampoline_r/configure.in,
* callback/vacall_r/Makefile.devel, callback/vacall_r/Makefile.in,
* callback/vacall_r/vacall_r.h.in, trampoline/Makefile.devel,
* trampoline/Makefile.in, trampoline/configure.in,
* vacall/Makefile.devel, vacall/Makefile.in, vacall/vacall.h.in:
Add ARMel support <https://savannah.gnu.org/bugs/?22492>
* m4/general.m4 (FFCALL_CANONICAL_HOST_CPU): use AC_EGREP_CPP to
distinguish between arm and armel
* avcall/avcall-armel.S, avcall/avcall-armel.c,
* callback/trampoline_r/cache-armel.c,
* callback/trampoline_r/cache-armel.s,
* callback/vacall_r/vacall-armel.c, callback/vacall_r/vacall-armel.s,
* trampoline/cache-armel.c, trampoline/cache-armel.s,
* vacall/vacall-armel.c, vacall/vacall-armel.s:
new files
2009-04-27 Max Lapan <max.lapan@gmail.com>
* avcall/tests.c, callback/tests.c, vacall/tests.c:
#include "config.h" for HAVE_LONG_LONG_INT
2009-04-27 Max Lapan <max.lapan@gmail.com>
* callback/trampoline_r/trampoline.c (is_tramp) [__arm__]:
fix bug in the last patch
2009-04-24 Sam Steingold <sds@gnu.org>
* avcall/configure.in, callback/configure.in,
* callback/trampoline_r/configure.in, callback/vacall_r/configure.in,
* trampoline/configure.in, vacall/configure.in:
use AC_CONFIG_FILES instead of AC_OUTPUT with argument
* Makefile.devel (aclocal.m4): adjust the grep regexp
2009-04-24 Sam Steingold <sds@gnu.org>
* Makefile.in, avcall/Makefile.in, callback/Makefile.in,
* callback/trampoline_r/Makefile.in, callback/vacall_r/Makefile.in,
* trampoline/Makefile.in, vacall/Makefile.in (datarootdir):
set to @datarootdir@ to avoid a configure warning
2009-04-24 Sam Steingold <sds@gnu.org>
* Makefile.devel (SUBDIRS_CONFIG_H): add avcall and callback
2009-04-24 Sam Steingold <sds@gnu.org>
* VERSION: new file
* configure.in: use AC_INIT with the version argument
* avcall/Makefile.mingw32: use sed to set LIBFFCALL_VERSION in avcall.h
* callback/vacall_r/Makefile.mingw32:
use sed to set LIBFFCALL_VERSION in vacall_r.h
* vacall/Makefile.mingw32: use sed to set LIBFFCALL_VERSION in vacall.h
* avcall/avcall.h.in, callback/callback.h.in,
* callback/trampoline_r/trampoline_r.h.in,
* callback/vacall_r/vacall_r.h.in,
* trampoline/trampoline.h.in, vacall/vacall.h.in:
(LIBFFCALL_VERSION): define to @PACKAGE_VERSION@
* avcall/configure.in, callback/configure.in,
* callback/trampoline_r/configure.in, callback/vacall_r/configure.in,
* trampoline/configure.in, vacall/configure.in:
use AC_INIT with the version argument,
pass [config.h] to AC_CONFIG_HEADERS
2009-04-23 Sam Steingold <sds@gnu.org>
* m4/codeexec.m4, m4/ireg.m4, m4/pccstruct.m4, m4/smallstruct.m4:
all 3 arguments of AC_DEFINE are now required
2009-04-21 Sam Steingold <sds@gnu.org>
* m4/as-underscore.m4, m4/codeexec.m4, m4/general.m4:
* m4/getpagesize.m4, m4/ireg.m4, m4/mach-vm.m4, m4/mmap.m4:
* m4/mprotect.m4, m4/pccstruct.m4, m4/shm.m4, m4/smallstruct.m4:
quote AC_DEFINE arguments
2008-09-28 Sam Steingold <sds@gnu.org>
* Makefile.devel (aclocal.m4): include glm4 (this defined gl_EARLY
and gl_INIT and fixes make check on x86_64)
2008-09-26 Sam Steingold <sds@gnu.org>
* avcall/avcall-ia64.s, avcall/avcall.h.in:
* callback/vacall_r/vacall_r.h.in:
support IA64 on Linux (kernel 2.6.16+ and gcc 4.1.0+)
https://savannah.gnu.org/bugs/index.php?22130
https://sourceforge.net/tracker/index.php?func=detail&aid=1528895&group_id=1355&atid=301355
2008-09-26 Sam Steingold <sds@gnu.org>
* callback/trampoline_r/Makefile.in, callback/trampoline_r/cache-arm.c:
* callback/trampoline_r/cache-arm.s, callback/trampoline_r/configure.in:
* callback/trampoline_r/tramp-arm.s, callback/trampoline_r/tramp-mips.s:
* callback/trampoline_r/trampoline.c, trampoline/cache-arm.c:
* trampoline/cache-arm.s, trampoline/configure.in:
* trampoline/tramp-arm.s, trampoline/trampoline.c:
add arm support from Jonathan Olson (debian 1.10-2)
https://savannah.gnu.org/bugs/?func=detailitem&item_id=9468
2008-09-26 Sam Steingold <sds@gnu.org>
* avcall/avcall-mips.S, avcall/avcall-mips.c, avcall/avcall.h.in:
* callback/trampoline_r/trampoline.c, callback/vacall_r/vacall_r.h.in:
* m4/general.m4, trampoline/trampoline.c, vacall/vacall.h.in:
add mipsel support from Thiemo Seufer (debian 1.10-2)
2008-09-26 Sam Steingold <sds@gnu.org>
* Makefile.devel, Makefile.in, callback/Makefile.devel,
* callback/Makefile.in: use "&&" instead of ";" for all targets
2008-07-13 Sam Steingold <sds@gnu.org>
* glm4/gnulib-cache.m4, glm4/gnulib-common.m4, glm4/gnulib-comp.m4:
* glm4/gnulib-tool.m4, glm4/onceonly.m4: add from gnulib
* glm4/nocrash.m4: update from gnulib
* Makefile.devel (gnulib-imported): remove gllib
* configure.ac: call gl_EARLY and gl_INIT
2008-07-08 Sam Steingold <sds@gnu.org>
* Makefile.devel (SUBDIRS_CONFIGURE): use $(CURDIR) instead of .
(%/configure): use "&&" instead of ";"
2008-07-03 Sam Steingold <sds@gnu.org>
* Makefile.devel (all): split into a few manageable targets
(config-h-in, woe32-h, woe32-c): new targets
(configure): use patterns
2008-07-03 Sam Steingold <sds@gnu.org>
* m4/smallstruct.m4 (FFCALL_SMALL_STRUCT_RETURN): rename from
CL_SMALL_STRUCT_RETURN; use ffcall_cv_* instead of cl_cv_*;
use return instead of exit()
* m4/pccstruct.m4 (FFCALL_PCC_STRUCT_RETURN): rename from
CL_PCC_STRUCT_RETURN; use ffcall_cv_* instead of cl_cv_*;
use return instead of exit()
* m4/ireg.m4 (FFCALL_IREG_FLOAT_RETURN): remame from
CL_IREG_FLOAT_RETURN; use ffcall_cv_* instead of cl_cv_*;
use return instead of exit()
* m4/codeexec.m4 (FFCALL_CODEEXEC): rename from CL_CODEEXEC
use ffcall_cv_* instead of cl_cv_*; use return instead of exit()
* m4/general.m4: remove non-FFCALL code
(FFCALL_COMMON_LIBTOOL): rename from CL_FFCALL_COMMON_LIBTOOL
(FFCALL_COMMON_TRAMPOLINE): rename from CL_FFCALL_COMMON_TRAMPOLINE
(FFCALL_CANONICAL_HOST_CPU): <- CL_CANONICAL_HOST_CPU_FOR_FFCALL
2008-07-03 Sam Steingold <sds@gnu.org>
* Makefile.devel (build-aux-update): new target
2008-07-02 Sam Steingold <sds@gnu.org>
* Makefile.devel (gnulib-imported, update-gnulib): new targets
* glm4: new directory
* longlong.m4, nocrash.m4: move from m4 to glm4
2008-07-02 Sam Steingold <sds@gnu.org>
* m4/ln.m4: update from clisp
* m4/cp.m4: remove
* m4/getpagesize.m4: update from clisp
* m4/general.m4: update from clisp
* m4/mmap.m4: update from clisp
* m4/mprotect.m4: update from clisp
* m4/proto.m4: update from clisp
* m4/openflags.m4: remove
* m4/cc-void.m4: remove
2008-07-02 Sam Steingold <sds@gnu.org>
* Makefile.devel, aclocal.m4: move autoconf/aclocal.m4 to aclocal.m4
* aclocal/autoconf.m4: remove
* Makefile.devel (CLISP_DIR): remove
2008-07-02 Sam Steingold <sds@gnu.org>
* m4/ffcall-pccstruct.m4, m4/ffcall-smallstruct.m4, m4/ffcall-ireg.m4:
* m4/ffcall-codeexec.m4: remove "ffcall-" prefix
* Makefile.devel: update
See clisp ChangeLog for earlier changes.
|