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
|
(*
Title: Foreign Function Interface: main part
Author: David Matthews
Copyright David Matthews 2015
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*)
signature FOREIGN =
sig
exception Foreign of string
structure Memory:
sig
eqtype volatileRef
val volatileRef: SysWord.word -> volatileRef
val setVolatileRef: volatileRef * SysWord.word -> unit
val getVolatileRef: volatileRef -> SysWord.word
eqtype voidStar
val voidStar2Sysword: voidStar -> SysWord.word
val sysWord2VoidStar: SysWord.word -> voidStar
val null: voidStar
val ++ : voidStar * word -> voidStar
val -- : voidStar * word -> voidStar
(* Remember an address except across loads. *)
val memoise: ('a -> voidStar) ->'a -> unit -> voidStar
exception Memory
(* malloc - allocate memory. N.B. argument is the number of bytes.
Raises Memory exception if it cannot allocate. *)
val malloc: word -> voidStar
(* free - free allocated memory. *)
val free: voidStar -> unit
val get8: voidStar * Word.word -> Word8.word
val get16: voidStar * Word.word -> Word.word
val get32: voidStar * Word.word -> Word32.word
val get64: voidStar * Word.word -> SysWord.word
val set8: voidStar * Word.word * Word8.word -> unit
val set16: voidStar * Word.word * Word.word -> unit
val set32: voidStar * Word.word * Word32.word -> unit
val set64: voidStar * Word.word * SysWord.word -> unit
val getFloat: voidStar * Word.word -> real
val getDouble: voidStar * Word.word -> real
val setFloat: voidStar * Word.word * real -> unit
val setDouble: voidStar * Word.word * real -> unit
val getAddress: voidStar * Word.word -> voidStar
val setAddress: voidStar * Word.word * voidStar -> unit
end
structure System:
sig
type voidStar = Memory.voidStar
val loadLibrary: string -> voidStar
and loadExecutable: unit -> voidStar
and freeLibrary: voidStar -> unit
and getSymbol: voidStar * string -> voidStar
end
structure LibFFI:
sig
eqtype abi
(* List of ABIs defined in libffi for this platform. *)
val abiList: (string * abi) list
(* The default Abi. *)
val abiDefault: abi
(* Type codes. *)
val ffiTypeCodeVoid: Word.word
and ffiTypeCodeInt: Word.word
and ffiTypeCodeFloat: Word.word
and ffiTypeCodeDouble: Word.word
and ffiTypeCodeUInt8: Word.word
and ffiTypeCodeSInt8: Word.word
and ffiTypeCodeUInt16: Word.word
and ffiTypeCodeSInt16: Word.word
and ffiTypeCodeUInt32: Word.word
and ffiTypeCodeSInt32: Word.word
and ffiTypeCodeUInt64: Word.word
and ffiTypeCodeSInt64: Word.word
and ffiTypeCodeStruct: Word.word
and ffiTypeCodePointer: Word.word
(* Predefined types. These are addresses so have to be reloaded
in each session. *)
eqtype ffiType
val ffiType2voidStar: ffiType -> Memory.voidStar
val voidStar2ffiType: Memory.voidStar -> ffiType
val getFFItypeVoid: unit -> ffiType
and getFFItypeUint8: unit -> ffiType
and getFFItypeSint8: unit -> ffiType
and getFFItypeUint16: unit -> ffiType
and getFFItypeSint16: unit -> ffiType
and getFFItypeUint32: unit -> ffiType
and getFFItypeSint32: unit -> ffiType
and getFFItypeUint64: unit -> ffiType
and getFFItypeSint64: unit -> ffiType
and getFFItypeFloat: unit -> ffiType
and getFFItypeDouble: unit -> ffiType
and getFFItypePointer: unit -> ffiType
and getFFItypeUChar: unit -> ffiType
and getFFItypeSChar: unit -> ffiType
and getFFItypeUShort: unit -> ffiType
and getFFItypeSShort: unit -> ffiType
and getFFItypeUint: unit -> ffiType
and getFFItypeSint: unit -> ffiType
and getFFItypeUlong: unit -> ffiType
and getFFItypeSlong: unit -> ffiType
val extractFFItype:
ffiType -> { size: word, align: word, typeCode: word, elements: ffiType list }
val createFFItype:
{ size: word, align: word, typeCode: word, elements: ffiType list } -> ffiType
eqtype cif
val cif2voidStar: cif -> Memory.voidStar
val voidStar2cif: Memory.voidStar -> cif
val createCIF: abi * ffiType * ffiType list -> cif
val callFunction:
{ cif: cif, function: Memory.voidStar, result: Memory.voidStar, arguments: Memory.voidStar } -> unit
val createCallback:
(Memory.voidStar * Memory.voidStar -> unit) * cif -> Memory.voidStar
val freeCallback: Memory.voidStar -> unit
end
type library
type symbol
val loadLibrary: string -> library
val loadExecutable: unit -> library
val getSymbol: library -> string -> symbol
val symbolAsAddress: symbol -> Memory.voidStar
structure LowLevel:
sig
type ctype =
{
size: Word.word, (* Size in bytes *)
align: Word.word, (* Alignment *)
ffiType: unit -> LibFFI.ffiType
}
val cTypeVoid: ctype
and cTypePointer: ctype
and cTypeInt8: ctype
and cTypeChar: ctype
and cTypeUint8: ctype
and cTypeUchar: ctype
and cTypeInt16: ctype
and cTypeUint16: ctype
and cTypeInt32: ctype
and cTypeUint32: ctype
and cTypeInt64: ctype
and cTypeUint64: ctype
and cTypeInt: ctype
and cTypeUint: ctype
and cTypeLong: ctype
and cTypeUlong: ctype
and cTypeFloat: ctype
and cTypeDouble: ctype
val cStruct: ctype list -> ctype
val callwithAbi: LibFFI.abi -> ctype list -> ctype -> symbol -> Memory.voidStar list * Memory.voidStar -> unit
val call: ctype list -> ctype -> symbol -> Memory.voidStar list * Memory.voidStar -> unit
val cFunctionWithAbi:
LibFFI.abi -> ctype list -> ctype -> (Memory.voidStar * Memory.voidStar -> unit) -> Memory.voidStar
val cFunction:
ctype list -> ctype -> (Memory.voidStar * Memory.voidStar -> unit) -> Memory.voidStar
end
type 'a conversion
val makeConversion:
{
load: Memory.voidStar -> 'a, (* Load a value from C memory *)
store: Memory.voidStar * 'a -> unit -> unit, (* Store value and return free function. *)
ctype: LowLevel.ctype
} -> 'a conversion
val breakConversion:
'a conversion ->
{
load: Memory.voidStar -> 'a, (* Load a value from C memory *)
store: Memory.voidStar * 'a -> unit -> unit, (* Store value and return free function. *)
ctype: LowLevel.ctype
}
val cVoid: unit conversion
val cPointer: Memory.voidStar conversion
val cInt8: int conversion
val cUint8: int conversion
val cChar: char conversion
val cUchar: Word8.word conversion
val cInt16: int conversion
val cUint16: int conversion
val cInt32: int conversion
val cUint32: int conversion
val cInt64: int conversion
val cUint64: int conversion
val cShort: int conversion
val cUshort: int conversion
val cInt: int conversion
val cUint: int conversion
val cLong: int conversion
val cUlong: int conversion
val cString: string conversion
val cByteArray: Word8Vector.vector conversion
val cFloat: real conversion
val cDouble: real conversion
(* When a pointer e.g. a string may be null. *)
val cOptionPtr: 'a conversion -> 'a option conversion
type 'a closure
val cFunction: ('a->'b) closure conversion
val buildClosure0withAbi: (unit -> 'a) * LibFFI.abi * unit * 'a conversion -> (unit -> 'a) closure
val buildClosure0: (unit -> 'a) * unit * 'a conversion -> (unit -> 'a) closure
val buildClosure1withAbi: ('a -> 'b) * LibFFI.abi * 'a conversion * 'b conversion -> ('a -> 'b) closure
val buildClosure1: ('a -> 'b) * 'a conversion * 'b conversion -> ('a -> 'b) closure
val buildClosure2withAbi:
('a * 'b -> 'c) * LibFFI.abi * ('a conversion * 'b conversion) * 'c conversion -> ('a * 'b -> 'c) closure
val buildClosure2: ('a * 'b -> 'c) * ('a conversion * 'b conversion) * 'c conversion -> ('a * 'b -> 'c) closure
val buildClosure3withAbi:
('a * 'b *'c -> 'd) * LibFFI.abi * ('a conversion * 'b conversion * 'c conversion) * 'd conversion ->
('a * 'b *'c -> 'd) closure
val buildClosure3: ('a * 'b *'c -> 'd) * ('a conversion * 'b conversion * 'c conversion) * 'd conversion ->
('a * 'b *'c -> 'd) closure
val buildClosure4withAbi:
('a * 'b * 'c * 'd -> 'e) * LibFFI.abi * ('a conversion * 'b conversion * 'c conversion* 'd conversion) * 'e conversion ->
('a * 'b * 'c * 'd -> 'e) closure
val buildClosure4:
('a * 'b * 'c * 'd -> 'e) * ('a conversion * 'b conversion * 'c conversion* 'd conversion) * 'e conversion ->
('a * 'b * 'c * 'd -> 'e) closure
val buildClosure5withAbi:
('a * 'b * 'c * 'd * 'e -> 'f) *
LibFFI.abi * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion) * 'f conversion ->
('a * 'b * 'c * 'd * 'e -> 'f) closure
val buildClosure5:
('a * 'b * 'c * 'd * 'e -> 'f) *
('a conversion * 'b conversion * 'c conversion* 'd conversion * 'e conversion) * 'f conversion ->
('a * 'b * 'c * 'd * 'e -> 'f) closure
val buildClosure6withAbi:
('a * 'b * 'c * 'd * 'e * 'f -> 'g) * LibFFI.abi *
('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion) * 'g conversion ->
('a * 'b * 'c * 'd * 'e * 'f -> 'g) closure
val buildClosure6:
('a * 'b * 'c * 'd * 'e * 'f -> 'g) *
('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion) * 'g conversion ->
('a * 'b * 'c * 'd * 'e * 'f -> 'g) closure
(* Remove the "free" from a conversion. Used if extra memory allocated
by the argument must not be freed when the function returns. *)
val permanent: 'a conversion -> 'a conversion
(* Call by reference. *)
val cStar: 'a conversion -> 'a ref conversion
(* Pass a const pointer *)
val cConstStar: 'a conversion -> 'a conversion
(* Fixed size vector. It is treated as a struct and passed by value or embedded in a structure. *)
val cVectorFixedSize: int * 'a conversion -> 'a vector conversion
(* Pass an ML vector as a pointer to a C array. *)
and cVectorPointer: 'a conversion -> 'a vector conversion
(* Pass an ML array as a pointer to a C array and, on return, update each element of
the ML array from the C array. *)
and cArrayPointer: 'a conversion -> 'a array conversion
(* structs. *)
val cStruct2: 'a conversion * 'b conversion -> ('a * 'b) conversion
val cStruct3: 'a conversion * 'b conversion * 'c conversion -> ('a*'b*'c)conversion
val cStruct4: 'a conversion * 'b conversion * 'c conversion * 'd conversion -> ('a*'b*'c*'d)conversion
val cStruct5: 'a conversion * 'b conversion * 'c conversion * 'd conversion *
'e conversion -> ('a*'b*'c*'d*'e)conversion
val cStruct6: 'a conversion * 'b conversion * 'c conversion * 'd conversion *
'e conversion * 'f conversion -> ('a*'b*'c*'d*'e*'f)conversion
val cStruct7: 'a conversion * 'b conversion * 'c conversion * 'd conversion *
'e conversion * 'f conversion * 'g conversion -> ('a*'b*'c*'d*'e*'f*'g)conversion
val cStruct8: 'a conversion * 'b conversion * 'c conversion * 'd conversion *
'e conversion * 'f conversion * 'g conversion * 'h conversion -> ('a*'b*'c*'d*'e*'f*'g*'h)conversion
val cStruct9: 'a conversion * 'b conversion * 'c conversion * 'd conversion *
'e conversion * 'f conversion * 'g conversion * 'h conversion * 'i conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i)conversion
val cStruct10: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion -> ('a*'b*'c*'d*'e*'f*'g*'h*'i*'j)conversion
val cStruct11: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion -> ('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k)conversion
val cStruct12: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l)conversion
val cStruct13: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m)conversion
val cStruct14: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n)conversion
val cStruct15: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion *
'o conversion -> ('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o)conversion
val cStruct16: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion *
'o conversion * 'p conversion -> ('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p)conversion
val cStruct17: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion *
'o conversion * 'p conversion * 'q conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q)conversion
val cStruct18: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion *
'o conversion * 'p conversion * 'q conversion * 'r conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q*'r)conversion
val cStruct19: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion *
'o conversion * 'p conversion * 'q conversion * 'r conversion * 's conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q*'r*'s)conversion
val cStruct20: 'a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion * 'g conversion *
'h conversion * 'i conversion * 'j conversion * 'k conversion * 'l conversion * 'm conversion * 'n conversion *
'o conversion * 'p conversion * 'q conversion * 'r conversion * 's conversion * 't conversion ->
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q*'r*'s*'t)conversion
val buildCall0withAbi: LibFFI.abi * symbol * unit * 'a conversion -> unit -> 'a
val buildCall0: symbol * unit * 'a conversion -> unit -> 'a
val buildCall1withAbi: LibFFI.abi * symbol * 'a conversion * 'b conversion -> 'a -> 'b
val buildCall1: symbol * 'a conversion * 'b conversion -> 'a -> 'b
val buildCall2withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion) * 'c conversion -> 'a * 'b -> 'c
val buildCall2:
symbol * ('a conversion * 'b conversion) * 'c conversion -> 'a * 'b -> 'c
val buildCall3withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion) * 'd conversion -> 'a * 'b * 'c -> 'd
val buildCall3:
symbol * ('a conversion * 'b conversion * 'c conversion) * 'd conversion -> 'a * 'b * 'c -> 'd
val buildCall4withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion) * 'e conversion ->
'a * 'b * 'c * 'd -> 'e
val buildCall4:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion) * 'e conversion ->
'a * 'b * 'c * 'd -> 'e
val buildCall5withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion) * 'f conversion ->
'a * 'b * 'c * 'd * 'e -> 'f
val buildCall5:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion) * 'f conversion ->
'a * 'b * 'c * 'd * 'e -> 'f
val buildCall6withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion) *
'g conversion -> 'a * 'b * 'c * 'd * 'e * 'f -> 'g
val buildCall6:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion * 'f conversion) *
'g conversion -> 'a * 'b * 'c * 'd * 'e * 'f -> 'g
val buildCall7withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion) *
'h conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g -> 'h
val buildCall7:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion) *
'h conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g -> 'h
val buildCall8withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion) *
'i conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h -> 'i
val buildCall8:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion) *
'i conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h -> 'i
val buildCall9withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion) *
'j conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i -> 'j
val buildCall9:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion) *
'j conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i -> 'j
val buildCall10withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion) *
'k conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j -> 'k
val buildCall10:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion) *
'k conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j -> 'k
val buildCall11withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion) *
'l conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k -> 'l
val buildCall11:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion) *
'l conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k -> 'l
val buildCall12withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion *
'l conversion) * 'm conversion ->
'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l -> 'm
val buildCall12:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion *
'l conversion) * 'm conversion ->
'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l -> 'm
val buildCall13withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion *
'l conversion * 'm conversion) *
'n conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l * 'm -> 'n
val buildCall13:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion *
'l conversion * 'm conversion) *
'n conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l * 'm -> 'n
val buildCall14withAbi:
LibFFI.abi * symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion *
'l conversion * 'm conversion * 'n conversion) *
'o conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l * 'm * 'n -> 'o
val buildCall14:
symbol * ('a conversion * 'b conversion * 'c conversion * 'd conversion * 'e conversion *
'f conversion * 'g conversion * 'h conversion * 'i conversion * 'j conversion * 'k conversion *
'l conversion * 'm conversion * 'n conversion) *
'o conversion -> 'a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l * 'm * 'n -> 'o
end;
structure Foreign:> FOREIGN =
struct
fun id x = x
exception Foreign = RunCall.Foreign
open ForeignConstants
structure Memory = ForeignMemory
infix 6 ++ --
(* Internal utility function. *)
fun alignUp(s, align) = Word.andb(s + align-0w1, ~ align)
structure System =
struct
type voidStar = Memory.voidStar
fun loadLibrary(s: string): voidStar = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (2, s)
and loadExecutable(): voidStar = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (3, ())
and freeLibrary(s: voidStar): unit = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (4, s)
and getSymbol(lib: voidStar, s: string): voidStar = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (5, (lib, s))
end
structure LibFFI =
struct
type abi = Word.word
val abiList: (string * abi) list = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (50, ())
local
fun getConstant (n: int) : Word.word = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (51, n)
in
val abiDefault = getConstant 0
and ffiTypeCodeVoid = getConstant 1
and ffiTypeCodeInt = getConstant 2
and ffiTypeCodeFloat = getConstant 3
and ffiTypeCodeDouble = getConstant 4
and ffiTypeCodeUInt8 = getConstant 5
and ffiTypeCodeSInt8 = getConstant 6
and ffiTypeCodeUInt16 = getConstant 7
and ffiTypeCodeSInt16 = getConstant 8
and ffiTypeCodeUInt32 = getConstant 9
and ffiTypeCodeSInt32 = getConstant 10
and ffiTypeCodeUInt64 = getConstant 11
and ffiTypeCodeSInt64 = getConstant 12
and ffiTypeCodeStruct = getConstant 13
and ffiTypeCodePointer = getConstant 14
end
type ffiType = Memory.voidStar
val ffiType2voidStar = id
and voidStar2ffiType = id
local
fun getFFItype (n: int) (): ffiType = RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (52, n)
in
val getFFItypeVoid = getFFItype 0
and getFFItypeUint8 = getFFItype 1
and getFFItypeSint8 = getFFItype 2
and getFFItypeUint16 = getFFItype 3
and getFFItypeSint16 = getFFItype 4
and getFFItypeUint32 = getFFItype 5
and getFFItypeSint32 = getFFItype 6
and getFFItypeUint64 = getFFItype 7
and getFFItypeSint64 = getFFItype 8
and getFFItypeFloat = getFFItype 9
and getFFItypeDouble = getFFItype 10
and getFFItypePointer = getFFItype 11
and getFFItypeUChar = getFFItype 12
and getFFItypeSChar = getFFItype 13
and getFFItypeUShort = getFFItype 14
and getFFItypeSShort = getFFItype 15
and getFFItypeUint = getFFItype 16
and getFFItypeSint = getFFItype 17
and getFFItypeUlong = getFFItype 18
and getFFItypeSlong = getFFItype 19
end
fun extractFFItype (s: ffiType) =
let
val (size: word, align: word, typ: word, elem: Memory.voidStar) =
RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (53, s)
(* Unpack the "elements". *)
open Memory
fun loadElements i =
let
val a = getAddress(elem, i)
in
if a = null
then []
else a :: loadElements(i+0w1)
end
val elements =
if elem = sysWord2VoidStar 0w0
then []
else loadElements 0w0
in
{ size=size, align=align, typeCode = typ, elements = elements }
end
(* Construct a new FFItype in allocated memory. *)
fun createFFItype { size: word, align: word, typeCode: word, elements: ffiType list }: ffiType =
RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (54, (size, align, typeCode, elements))
type cif = Memory.voidStar
val cif2voidStar = id
and voidStar2cif = id
(* Construct and prepare a CIF in allocated memory. *)
fun createCIF (abi: abi, resultType: ffiType, argTypes: ffiType list): cif =
RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (55, (abi, resultType, argTypes))
(* Call a function. We have to pass some space for the result *)
fun callFunction
{ cif: cif, function: Memory.voidStar, result: Memory.voidStar, arguments: Memory.voidStar }: unit =
RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (56, (cif, function, result, arguments))
(* Create a callback. Returns the C function. *)
fun createCallback(f: Memory.voidStar * Memory.voidStar -> unit, cif: cif): Memory.voidStar =
RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (57, (f, cif))
(* Free a callback. This takes the C function address returned by createCallback *)
fun freeCallback(cb: Memory.voidStar): unit =
RunCall.run_call2 RuntimeCalls.POLY_SYS_ffi (58, cb)
end
type library = unit -> Memory.voidStar
type symbol = unit -> Memory.voidStar
(* Load the library but memoise it so if we reference the library in another
session we will reload it. We load the library immediately so that if
there is an error we get the error immediately. *)
fun loadLibrary (name: string): library = Memory.memoise System.loadLibrary name
and loadExecutable (): library = Memory.memoise System.loadExecutable ()
(* To get a symbol we memoise a function that forces a library load if necessary
and then gets the symbol. *)
fun getSymbol(lib: library) (name: string): symbol =
Memory.memoise (fn s => System.getSymbol(lib(), s)) name
(* This forces the symbol to be loaded. The result is NOT memoised. *)
fun symbolAsAddress(s: symbol): Memory.voidStar = s()
structure LowLevel =
struct
type ctype =
{
size: Word.word, (* Size in bytes *)
align: Word.word, (* Alignment *)
ffiType: unit -> LibFFI.ffiType
}
local
open LibFFI Memory
val getffArg =
if ffiMinArgSize = 0w4 then Word32.toLargeWord o get32
else if ffiMinArgSize = 0w8 then get64
else raise Foreign ("Unable to load ffi_arg size=" ^ Word.toString ffiMinArgSize)
in
val cTypeVoid =
{ size= #size saVoid, align= #align saVoid, ffiType = memoise getFFItypeVoid () }
val cTypePointer =
{ size= #size saPointer, align= #align saPointer, ffiType = memoise getFFItypePointer () }
val cTypeInt8 =
{ size= #size saSint8, align= #align saSint8, ffiType = memoise getFFItypeSint8 () }
val cTypeChar = cTypeInt8
val cTypeUint8 =
{ size= #size saUint8, align= #align saUint8, ffiType = memoise getFFItypeUint8 () }
val cTypeUchar = cTypeUint8
val cTypeInt16 =
{ size= #size saSint16, align= #align saSint16, ffiType = memoise getFFItypeSint16 () }
val cTypeUint16 =
{ size= #size saUint16, align= #align saUint16, ffiType = memoise getFFItypeUint16 () }
val cTypeInt32 =
{ size= #size saSint32, align= #align saSint32, ffiType = memoise getFFItypeSint32 () }
val cTypeUint32 =
{ size= #size saUint32, align= #align saUint32, ffiType = memoise getFFItypeUint32 () }
val cTypeInt64 =
{ size= #size saSint64, align= #align saSint64, ffiType = memoise getFFItypeSint64 () }
val cTypeUint64 =
{ size= #size saUint64, align= #align saUint64, ffiType = memoise getFFItypeUint64 () }
val cTypeInt =
{ size= #size saSint, align= #align saSint, ffiType = memoise getFFItypeSint () }
val cTypeUint =
{ size= #size saUint, align= #align saUint, ffiType = memoise getFFItypeUint () }
val cTypeLong =
{ size= #size saSlong, align= #align saSlong, ffiType = memoise getFFItypeSlong () }
val cTypeUlong =
{ size= #size saUlong, align= #align saUlong, ffiType = memoise getFFItypeUlong () }
val cTypeFloat =
{ size= #size saFloat, align= #align saFloat, ffiType = memoise getFFItypeFloat () }
val cTypeDouble =
{ size= #size saDouble, align= #align saDouble, ffiType = memoise getFFItypeDouble () }
fun cStruct(fields: ctype list): ctype =
let
(* The total alignment is the maximum alignment of the fields. *)
val align = foldl(fn ({align, ...}, a) => Word.max(align, a)) 0w1 fields
(* Each field needs to be on its alignment. Finally we round up the size
to the total alignment. *)
val size =
alignUp(foldl(fn ({align, size, ...}, s) => alignUp(s, align) + size) 0w0 fields, align)
val types = map #ffiType fields
(* Make the type but only when it's used. *)
fun ffiType () =
LibFFI.createFFItype {
size = size, align = align, typeCode=LibFFI.ffiTypeCodeStruct,
elements = map (fn t => t()) types }
in
{align=align, size=size, ffiType=memoise ffiType ()}
end
fun callwithAbi (abi: abi) (argTypes: ctype list) (resType: ctype): symbol -> voidStar list * voidStar -> unit =
let
(* Preparation when we create the function. *)
fun buildCif () = createCIF (abi, #ffiType resType (), map (fn {ffiType, ...} => ffiType ()) argTypes)
val cif: unit->cif = memoise buildCif ()
val nArgs = List.length argTypes
val resSize = #size resType
(* If the result size is smaller than ffiMinArgSize we have to
first store the result in a value of size ffiMinArgSize then copy
the result. This is a restriction of libffi. *)
fun smallSpace (fnAddr: unit->voidStar) (args, resMem) =
let
val _ = List.length args = nArgs orelse raise Foreign "Incorrect number of arguments"
val resultSize = alignUp(ffiMinArgSize, #align saPointer)
val argResVec = malloc(resultSize + #size saPointer * Word.fromInt nArgs)
val argLocn = argResVec ++ resultSize
val _ = List.foldl(fn (arg, n) => (setAddress(argLocn, n, arg); n+0w1)) 0w0 args
in
let
val () = callFunction { cif=cif(), function=fnAddr(), result = argResVec, arguments = argLocn}
val result: SysWord.word = getffArg(argResVec, 0w0)
in
(* Copy to the final location. Currently "void" has size 1 so if
the function has a void result we still copy one byte. *)
if #size resType = 0w1
then set8(resMem, 0w0, Word8.fromLargeWord result)
else if #size resType = 0w2
then set16(resMem, 0w0, Word.fromLargeWord result)
else if #size resType = 0w4
then set32(resMem, 0w0, Word32.fromLargeWord result)
else raise Foreign "Unable to set result: wrong size";
free argResVec
end handle exn => (free argResVec; raise exn)
end
(* If we have enough space. *)
fun largeSpace (fnAddr: unit->voidStar) (args, resMem) =
let
val _ = List.length args = nArgs orelse raise Foreign "Incorrect number of arguments"
val argVec =
if nArgs = 0 then null else malloc(#size saPointer * Word.fromInt nArgs)
val _ = List.foldl(fn (arg, n) => (setAddress(argVec, n, arg); n+0w1)) 0w0 args
in
let
val () = callFunction { cif=cif(), function=fnAddr(), result = resMem, arguments = argVec}
in
free argVec
end handle exn => (free argVec; raise exn)
end
in
if resSize < ffiMinArgSize
then smallSpace
else largeSpace
end
fun call x = callwithAbi abiDefault x (* Have to make it a fun to avoid value restriction *)
(* Build a call-back function. Returns a function to take the actual ML function,
create a callback and then return the address. *)
fun cFunctionWithAbi (abi: abi) (argTypes: ctype list) (resType: ctype):
(voidStar * voidStar -> unit) -> voidStar =
let
fun buildCif () = createCIF (abi, #ffiType resType (), map (fn {ffiType, ...} => ffiType ()) argTypes)
val cif: unit->cif = memoise buildCif ()
in
fn cbFun => createCallback(cbFun, cif())
end
fun cFunction x = cFunctionWithAbi abiDefault x
end
end
type 'a conversion =
{
load: Memory.voidStar -> 'a, (* Load a value from C memory *)
store: Memory.voidStar * 'a -> unit -> unit, (* Store a value in C memory *)
updateML: Memory.voidStar * 'a -> unit, (* Update ML value after call - only used in cStar. *)
updateC: Memory.voidStar * 'a -> unit, (* Update C value after callback - only used in cStar. *)
ctype: LowLevel.ctype
}
fun makeConversion { load, store, ctype } =
{ load = load, store = store, ctype = ctype, updateML = fn _ => (), updateC = fn _ => () }
fun breakConversion({load, store, ctype, ... }: 'a conversion) =
{ load = load, store = store, ctype = ctype }
(* Conversions *)
local
open LibFFI Memory LowLevel
fun checkRange(i, min, max) = if i < min orelse i > max then raise Overflow else i
fun noFree _ = () (* None of these allocate extra memory or need to update. *)
in
val cVoid: unit conversion =
makeConversion{ load=fn _ => (), store=fn _ => noFree, ctype = cTypeVoid }
(* cPointer should only be used to base other conversions on. *)
val cPointer: voidStar conversion =
makeConversion { load=fn a => getAddress(a, 0w0), store=fn(a, v) => (setAddress(a, 0w0, v); noFree),
ctype = cTypePointer }
local
fun load(m: voidStar): int = Word8.toIntX(get8(m, 0w0))
fun store(m: voidStar, i: int) =
(set8(m, 0w0, Word8.fromInt(checkRange(i, ~128, 127))); noFree)
in
val cInt8: int conversion =
makeConversion { load=load, store=store, ctype = cTypeInt8 }
end
local
(* Char is signed in C but unsigned in ML. *)
fun load(m: voidStar): char = Char.chr(Word8.toInt(get8(m, 0w0)))
fun store(m: voidStar, i: char) =
(set8(m, 0w0, Word8.fromInt(Char.ord i)); noFree)
in
val cChar: char conversion =
makeConversion{ load=load, store=store, ctype = cTypeChar }
end
local
(* Uchar - convert as Word8.word. *)
fun load(m: voidStar): Word8.word = get8(m, 0w0)
fun store(m: voidStar, i: Word8.word) = (set8(m, 0w0, i); noFree)
in
val cUchar: Word8.word conversion =
makeConversion{ load=load, store=store, ctype = cTypeUchar }
end
local
fun load(m: voidStar): int = Word8.toInt(get8(m, 0w0))
fun store(m: voidStar, i: int) =
(set8(m, 0w0, Word8.fromInt(checkRange(i, 0, 255))); noFree)
in
val cUint8: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeUint8 }
end
local
fun load(m: voidStar): int = Word.toIntX(get16(m, 0w0))
fun store(m: voidStar, i: int) =
(set16(m, 0w0, Word.fromInt(checkRange(i, ~32768, 32767))); noFree)
in
val cInt16: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeInt16 }
end
local
fun load(m: voidStar): int = Word.toInt(get16(m, 0w0))
fun store(m: voidStar, i: int) =
(set16(m, 0w0, Word.fromInt(checkRange(i, 0, 65535))); noFree)
in
val cUint16: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeUint16 }
end
local
fun load(m: voidStar): int = Word32.toIntX(get32(m, 0w0))
fun store(m: voidStar, i: int) =
(set32(m, 0w0, Word32.fromInt(checkRange(i, ~2147483648, 2147483647))); noFree)
in
val cInt32: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeInt32 }
end
local
fun load(m: voidStar): int = Word32.toInt(get32(m, 0w0))
fun store(m: voidStar, i: int) =
(set32(m, 0w0, Word32.fromInt(checkRange(i, 0, 4294967295))); noFree)
in
val cUint32: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeUint32 }
end
local
fun load(m: voidStar): int =
if wordSize = 0w4
then
let
val v1 = get32(m, 0w0) and v2 = get32(m, 0w1)
in
if bigEndian
then IntInf.<<(Word32.toIntX v1, 0w32) + Word32.toInt v2
else IntInf.<<(Word32.toIntX v2, 0w32) + Word32.toInt v1
end
else SysWord.toIntX(get64(m, 0w0))
val max = IntInf.<<(1, 0w63) - 1 and min = ~ (IntInf.<<(1, 0w63))
fun store(m: voidStar, i: int) =
if wordSize = 0w4
then
let
val _ = checkRange(i, min, max)
val lo = Word32.fromInt i and hi = Word32.fromInt (IntInf.~>>(i, 0w32))
in
if bigEndian
then (set32(m, 0w0, hi); set32(m, 0w1, lo))
else (set32(m, 0w0, lo); set32(m, 0w1, hi));
noFree
end
else (set64(m, 0w0, SysWord.fromInt(checkRange(i, min, max))); noFree)
in
val cInt64: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeInt64 }
end
local
fun load(m: voidStar): int =
if wordSize = 0w4
then
let
val v1 = get32(m, 0w0) and v2 = get32(m, 0w1)
in
if bigEndian
then IntInf.<<(Word32.toInt v1, 0w32) + Word32.toInt v2
else IntInf.<<(Word32.toInt v2, 0w32) + Word32.toInt v1
end
else SysWord.toInt(get64(m, 0w0))
val max = IntInf.<<(1, 0w64) - 1
fun store(m: voidStar, i: int) =
if wordSize = 0w4
then
let
val _ = checkRange(i, 0, max)
val lo = Word32.fromInt i and hi = Word32.fromInt (IntInf.~>>(i, 0w32))
in
if bigEndian
then (set32(m, 0w0, hi); set32(m, 0w1, lo))
else (set32(m, 0w0, lo); set32(m, 0w1, hi));
noFree
end
else (set64(m, 0w0, SysWord.fromInt(checkRange(i, 0, max))); noFree)
in
val cUint64: int conversion =
makeConversion{ load=load, store=store, ctype = cTypeUint64 }
end
local
fun load(m: voidStar): real = getFloat(m, 0w0)
fun store(m: voidStar, v: real) = (setFloat(m, 0w0, v); noFree)
in
val cFloat: real conversion =
makeConversion{ load=load, store=store, ctype = cTypeFloat }
end
local
fun load(m: voidStar): real = getDouble(m, 0w0)
fun store(m: voidStar, v: real) = (setDouble(m, 0w0, v); noFree)
in
val cDouble: real conversion =
makeConversion{ load=load, store=store, ctype = cTypeDouble }
end
val cShort =
if #size saSShort = #size saSint16 then cInt16
else if #size saSShort = #size saSint32 then cInt32
else raise Foreign "Unable to find type for short"
val cUshort =
if #size saUShort = #size saUint16 then cUint16
else if #size saUShort = #size saUint32 then cUint32
else raise Foreign "Unable to find type for unsigned"
val cInt =
if #size saSint = #size saSint16 then cInt16
else if #size saSint = #size saSint32 then cInt32
else if #size saSint = #size saSint64 then cInt64
else raise Foreign "Unable to find type for int"
val cUint =
if #size saUint = #size saUint16 then cUint16
else if #size saUint = #size saUint32 then cUint32
else if #size saUint = #size saUint64 then cUint64
else raise Foreign "Unable to find type for unsigned"
val cLong =
if #size saSlong = #size saSint16 then cInt16
else if #size saSlong = #size saSint32 then cInt32
else if #size saSlong = #size saSint64 then cInt64
else raise Foreign "Unable to find type for long"
val cUlong =
if #size saUlong = #size saUint16 then cUint16
else if #size saUlong = #size saUint32 then cUint32
else if #size saUlong = #size saUint64 then cUint64
else raise Foreign "Unable to find type for unsigned long"
local
fun load(s: voidStar): string =
let
(* The location contains the address of the string. *)
val sAddr = getAddress(s, 0w0)
fun sLen i = if get8(sAddr, i) = 0w0 then i else sLen(i+0w1)
val length = sLen 0w0
fun loadChar i =
Char.chr(Word8.toInt(get8(sAddr, Word.fromInt i)))
in
CharVector.tabulate(Word.toInt length, loadChar)
end
fun store(v: voidStar, s: string) =
let
val sLen = Word.fromInt(String.size s)
val sMem = malloc(sLen + 0w1)
val () = CharVector.appi(fn(i, ch) => set8(sMem, Word.fromInt i, Word8.fromInt(Char.ord ch))) s
val () = set8(sMem, sLen, 0w0)
in
setAddress(v, 0w0, sMem);
fn () => Memory.free sMem
end
in
val cString: string conversion =
makeConversion { load=load, store=store, ctype = cTypePointer }
end
(* This is used if we want to pass NULL rather than a pointer in some cases. *)
fun cOptionPtr({load, store, updateML, updateC, ctype}:'a conversion): 'a option conversion =
if #typeCode(extractFFItype(#ffiType ctype ())) <> ffiTypeCodePointer
then raise Foreign "cOptionPtr must be applied to a pointer type"
else
let
fun loadOpt(s: voidStar) =
if getAddress(s, 0w0) = null then NONE else SOME(load s)
fun storeOpt(v: voidStar, NONE) = (setAddress(v, 0w0, null); fn _ => ())
| storeOpt(v: voidStar, SOME s) = store(v, s)
(* Do we have update here? *)
fun updateMLOpt(_, NONE) = ()
| updateMLOpt(v: voidStar, SOME s) = updateML(v, s)
fun updateCOpt(_, NONE) = ()
| updateCOpt(v, SOME s) = updateC(v, s)
in
{ load=loadOpt, store=storeOpt, updateML = updateMLOpt,
updateC = updateCOpt, ctype = cTypePointer }
end
local
(* Word8Vector.vector to C array of bytes. It is only possible to
do this one way because conversion from a C array requires
us to know the size. *)
fun load _ = raise Foreign "cByteArray cannot convert from C to ML"
fun store(v: voidStar, s: Word8Vector.vector) =
let
open Word8Vector
val sLen = Word.fromInt(length s)
val sMem = malloc sLen
val () = appi(fn(i, b) => set8(sMem, Word.fromInt i, b)) s
in
setAddress(v, 0w0, sMem);
fn () => Memory.free sMem
end
in
val cByteArray: Word8Vector.vector conversion =
makeConversion{ load=load, store=store, ctype = cTypePointer }
end
end
(* Remove the free part from the store fn. This is intended for situations
where an argument should not be deleted once the function completes. *)
fun permanent({load, store, ctype, updateML, updateC }: 'a conversion): 'a conversion =
let
fun storeP args = (ignore (store args); fn () => ())
in
{ load=load, store=storeP, updateML = updateML, updateC = updateC, ctype=ctype }
end
val op ++ = Memory.++
fun cStruct2(a: 'a conversion, b: 'b conversion): ('a*'b)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ... }} = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {align=alignb, ... }} = b
val offsetb = alignUp(sizea, alignb)
fun load s = (loada s, loadb(s ++ offsetb))
and store (x, (a, b)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b)
in
fn () => ( freea(); freeb() )
end
and updateML(s, (a, b)) = (updateMLa(s, a); updateMLb(s ++ offsetb, b))
and updateC(x, (a, b)) =
(updateCa(x, a); updateCb(x ++ offsetb, b))
in
{load=load, store=store, updateML = updateML, updateC=updateC, ctype = LowLevel.cStruct[ctypea, ctypeb]}
end
fun cStruct3(a: 'a conversion, b: 'b conversion, c: 'c conversion): ('a*'b*'c)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {align=alignc, ...} } = c
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
fun load s = (loada s, loadb(s ++ offsetb), loadc(s ++ offsetc))
and store (x, (a, b, c)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
in
fn () => ( freea(); freeb(); freec() )
end
and updateML(s, (a, b, c)) = (updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c))
and updateC(x, (a, b, c)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c))
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec]}
end
fun cStruct4(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion): ('a*'b*'c*'d)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {align=alignd, ...} } = d
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
fun load s = (loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd))
and store (x, (a, b, c, d)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d)
in
fn () => ( freea(); freeb(); freec(); freed() )
end
and updateML(s, (a, b, c, d)) =
(updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c); updateMLd(s ++ offsetd, d))
and updateC(x, (a, b, c, d)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d))
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped]}
end
fun cStruct5(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion): ('a*'b*'c*'d*'e)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {align=aligne, ...} } = e
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd), loade(s ++ offsete))
and store (x, (a, b, c, d, e)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e)
in
fn () => ( freea(); freeb(); freec(); freed(); freee() )
end
and updateML(s, (a, b, c, d, e)) =
(updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c);
updateMLd(s ++ offsetd, d); updateMLe(s ++ offsete, e))
and updateC(x, (a, b, c, d, e)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e))
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee]}
end
fun cStruct6(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion): ('a*'b*'c*'d*'e*'f)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {align=alignf, ...} } = f
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf))
and store (x, (a, b, c, d, e, f)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
in
fn () => ( freea(); freeb(); freec(); freed(); freee(); freef() )
end
and updateML(s, (a, b, c, d, e, f)) =
(updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c); updateMLd(s ++ offsetd, d);
updateMLe(s ++ offsete, e); updateMLf(s ++ offsetf, f))
and updateC(x, (a, b, c, d, e, f)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f))
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef]}
end
fun cStruct7(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion): ('a*'b*'c*'d*'e*'f*'g)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {align=aligng, ...} } = g
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg))
and store (x, (a, b, c, d, e, f, g)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g)
in
fn () => ( freea(); freeb(); freec(); freed(); freee(); freef(); freeg() )
end
and updateML(s, (a, b, c, d, e, f, g)) =
(updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c); updateMLd(s ++ offsetd, d);
updateMLe(s ++ offsete, e); updateMLf(s ++ offsetf, f); updateMLg(s ++ offsetg, g))
and updateC(x, (a, b, c, d, e, f, g)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g))
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg]}
end
fun cStruct8(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion):
('a*'b*'c*'d*'e*'f*'g*'h)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {align=alignh, ...} } = h
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg), loadh(s ++ offseth))
and store (x, (a, b, c, d, e, f, g, h)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h)
in
fn () => ( freea(); freeb(); freec(); freed(); freee(); freef(); freeg(); freeh() )
end
and updateML(s, (a, b, c, d, e, f, g, h)) =
(updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c); updateMLd(s ++ offsetd, d);
updateMLe(s ++ offsete, e); updateMLf(s ++ offsetf, f); updateMLg(s ++ offsetg, g);
updateMLh(s ++ offseth, h))
and updateC(x, (a, b, c, d, e, f, g, h)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh]}
end
fun cStruct9(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion): ('a*'b*'c*'d*'e*'f*'g*'h*'i)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {align=aligni, ...} } = i
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti))
and store (x, (a, b, c, d, e, f, g, h, i)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
in
fn () => ( freea(); freeb(); freec(); freed(); freee(); freef(); freeg(); freeh(); freei() )
end
and updateML(s, (a, b, c, d, e, f, g, h, i)) =
(updateMLa(s, a); updateMLb(s ++ offsetb, b); updateMLc(s ++ offsetc, c); updateMLd(s ++ offsetd, d);
updateMLe(s ++ offsete, e); updateMLf(s ++ offsetf, f); updateMLg(s ++ offsetg, g);
updateMLh(s ++ offseth, h); updateMLi(s ++ offseti, i))
and updateC(x, (a, b, c, d, e, f, g, h, i)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei]}
end
fun cStruct10(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {align=alignj, ...} } = j
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj))
and store (x, (a, b, c, d, e, f, g, h, i, j)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j))
and updateC(x, (a, b, c, d, e, f, g, h, i, j)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej]}
end
fun cStruct11(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {align=alignk, ...} } = k
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk))
and store (x, (a, b, c, d, e, f, g, h, i, j, k)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek]}
end
fun cStruct12(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {align=alignl, ...} } = l
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel]}
end
fun cStruct13(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {align=alignm, ...} } = m
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem]}
end
nonfix o
fun cStruct14(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {align=alignn, ...} } = n
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem();
freen()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen]}
end
fun cStruct15(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion, o: 'o conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {size=sizen, align=alignn, ...} } = n
and {load=loado, store=storeo, updateML=updateMLo, updateC=updateCo, ctype = ctypeo as {align=aligno, ...} } = o
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
val offseto = alignUp(offsetn + sizen, aligno)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn), loado(s ++ offseto))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n) and freeo = storeo(x ++ offseto, o)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem();
freen(); freeo()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n); updateMLo(x ++ offseto, o))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n); updateCo(x ++ offseto, o))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen, ctypeo]}
end
fun cStruct16(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion, o: 'o conversion, p: 'p conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {size=sizen, align=alignn, ...} } = n
and {load=loado, store=storeo, updateML=updateMLo, updateC=updateCo, ctype = ctypeo as {size=sizeo, align=aligno, ...} } = o
and {load=loadp, store=storep, updateML=updateMLp, updateC=updateCp, ctype = ctypep as {align=alignp, ...} } = p
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
val offseto = alignUp(offsetn + sizen, aligno)
val offsetp = alignUp(offseto + sizeo, alignp)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn), loado(s ++ offseto), loadp(s ++ offsetp))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n) and freeo = storeo(x ++ offseto, o)
and freep = storep(x ++ offsetp, p)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef();
freeg(); freeh(); freei(); freej(); freek(); freel();
freem(); freen(); freeo(); freep()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n); updateMLo(x ++ offseto, o); updateMLp(x ++ offsetp, p))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n); updateCo(x ++ offseto, o); updateCp(x ++ offsetp, p))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen, ctypeo, ctypep]}
end
fun cStruct17(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion, o: 'o conversion, p: 'p conversion,
q: 'q conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {size=sizen, align=alignn, ...} } = n
and {load=loado, store=storeo, updateML=updateMLo, updateC=updateCo, ctype = ctypeo as {size=sizeo, align=aligno, ...} } = o
and {load=loadp, store=storep, updateML=updateMLp, updateC=updateCp, ctype = ctypep as {size=sizep, align=alignp, ...} } = p
and {load=loadq, store=storeq, updateML=updateMLq, updateC=updateCq, ctype = ctypeq as {align=alignq, ...} } = q
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
val offseto = alignUp(offsetn + sizen, aligno)
val offsetp = alignUp(offseto + sizeo, alignp)
val offsetq = alignUp(offsetp + sizep, alignq)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn), loado(s ++ offseto), loadp(s ++ offsetp),
loadq(s ++ offsetq))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n) and freeo = storeo(x ++ offseto, o)
and freep = storep(x ++ offsetp, p) and freeq = storeq(x ++ offsetq, q)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem();
freen(); freeo(); freep(); freeq()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n); updateMLo(x ++ offseto, o); updateMLp(x ++ offsetp, p);
updateMLq(x ++ offsetq, q))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n); updateCo(x ++ offseto, o); updateCp(x ++ offsetp, p);
updateCq(x ++ offsetq, q))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen, ctypeo, ctypep, ctypeq]}
end
fun cStruct18(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion, o: 'o conversion, p: 'p conversion,
q: 'q conversion, r: 'r conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q*'r)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {size=sizen, align=alignn, ...} } = n
and {load=loado, store=storeo, updateML=updateMLo, updateC=updateCo, ctype = ctypeo as {size=sizeo, align=aligno, ...} } = o
and {load=loadp, store=storep, updateML=updateMLp, updateC=updateCp, ctype = ctypep as {size=sizep, align=alignp, ...} } = p
and {load=loadq, store=storeq, updateML=updateMLq, updateC=updateCq, ctype = ctypeq as {size=sizeq, align=alignq, ...} } = q
and {load=loadr, store=storer, updateML=updateMLr, updateC=updateCr, ctype = ctyper as {align=alignr, ...} } = r
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
val offseto = alignUp(offsetn + sizen, aligno)
val offsetp = alignUp(offseto + sizeo, alignp)
val offsetq = alignUp(offsetp + sizep, alignq)
val offsetr = alignUp(offsetq + sizeq, alignr)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn), loado(s ++ offseto), loadp(s ++ offsetp),
loadq(s ++ offsetq), loadr(s ++ offsetr))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n) and freeo = storeo(x ++ offseto, o)
and freep = storep(x ++ offsetp, p) and freeq = storeq(x ++ offsetq, q) and freer = storer(x ++ offsetr, r)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem();
freen(); freeo(); freep(); freeq(); freer()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n); updateMLo(x ++ offseto, o); updateMLp(x ++ offsetp, p);
updateMLq(x ++ offsetq, q); updateMLr(x ++ offsetr, r))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n); updateCo(x ++ offseto, o); updateCp(x ++ offsetp, p);
updateCq(x ++ offsetq, q); updateCr(x ++ offsetr, r))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen, ctypeo, ctypep, ctypeq, ctyper]}
end
fun cStruct19(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion, o: 'o conversion, p: 'p conversion,
q: 'q conversion, r: 'r conversion, s: 's conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q*'r*'s)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {size=sizen, align=alignn, ...} } = n
and {load=loado, store=storeo, updateML=updateMLo, updateC=updateCo, ctype = ctypeo as {size=sizeo, align=aligno, ...} } = o
and {load=loadp, store=storep, updateML=updateMLp, updateC=updateCp, ctype = ctypep as {size=sizep, align=alignp, ...} } = p
and {load=loadq, store=storeq, updateML=updateMLq, updateC=updateCq, ctype = ctypeq as {size=sizeq, align=alignq, ...} } = q
and {load=loadr, store=storer, updateML=updateMLr, updateC=updateCr, ctype = ctyper as {size=sizer, align=alignr, ...} } = r
and {load=loads, store=stores, updateML=updateMLs, updateC=updateCs, ctype = ctypes as {align=aligns, ...} } = s
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
val offseto = alignUp(offsetn + sizen, aligno)
val offsetp = alignUp(offseto + sizeo, alignp)
val offsetq = alignUp(offsetp + sizep, alignq)
val offsetr = alignUp(offsetq + sizeq, alignr)
val offsets = alignUp(offsetr + sizer, aligns)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn), loado(s ++ offseto), loadp(s ++ offsetp),
loadq(s ++ offsetq), loadr(s ++ offsetr), loads(s ++ offsets))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n) and freeo = storeo(x ++ offseto, o)
and freep = storep(x ++ offsetp, p) and freeq = storeq(x ++ offsetq, q) and freer = storer(x ++ offsetr, r)
and frees = stores(x ++ offsets, s)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem();
freen(); freeo(); freep(); freeq(); freer(); frees()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n); updateMLo(x ++ offseto, o); updateMLp(x ++ offsetp, p);
updateMLq(x ++ offsetq, q); updateMLr(x ++ offsetr, r); updateMLs(x ++ offsets, s))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n); updateCo(x ++ offseto, o); updateCp(x ++ offsetp, p);
updateCq(x ++ offsetq, q); updateCr(x ++ offsetr, r); updateCs(x ++ offsets, s))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen, ctypeo, ctypep, ctypeq, ctyper, ctypes]}
end
fun cStruct20(a: 'a conversion, b: 'b conversion, c: 'c conversion, d: 'd conversion,
e: 'e conversion, f: 'f conversion, g: 'g conversion, h: 'h conversion,
i: 'i conversion, j: 'j conversion, k: 'k conversion, l: 'l conversion,
m: 'm conversion, n: 'n conversion, o: 'o conversion, p: 'p conversion,
q: 'q conversion, r: 'r conversion, s: 's conversion, t: 't conversion):
('a*'b*'c*'d*'e*'f*'g*'h*'i*'j*'k*'l*'m*'n*'o*'p*'q*'r*'s*'t)conversion =
let
val {load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype = ctypea as {size=sizea, ...} } = a
and {load=loadb, store=storeb, updateML=updateMLb, updateC=updateCb, ctype = ctypeb as {size=sizeb, align=alignb, ...} } = b
and {load=loadc, store=storec, updateML=updateMLc, updateC=updateCc, ctype = ctypec as {size=sizec, align=alignc, ...} } = c
and {load=loadd, store=stored, updateML=updateMLd, updateC=updateCd, ctype = ctyped as {size=sized, align=alignd, ...} } = d
and {load=loade, store=storee, updateML=updateMLe, updateC=updateCe, ctype = ctypee as {size=sizee, align=aligne, ...} } = e
and {load=loadf, store=storef, updateML=updateMLf, updateC=updateCf, ctype = ctypef as {size=sizef, align=alignf, ...} } = f
and {load=loadg, store=storeg, updateML=updateMLg, updateC=updateCg, ctype = ctypeg as {size=sizeg, align=aligng, ...} } = g
and {load=loadh, store=storeh, updateML=updateMLh, updateC=updateCh, ctype = ctypeh as {size=sizeh, align=alignh, ...} } = h
and {load=loadi, store=storei, updateML=updateMLi, updateC=updateCi, ctype = ctypei as {size=sizei, align=aligni, ...} } = i
and {load=loadj, store=storej, updateML=updateMLj, updateC=updateCj, ctype = ctypej as {size=sizej, align=alignj, ...} } = j
and {load=loadk, store=storek, updateML=updateMLk, updateC=updateCk, ctype = ctypek as {size=sizek, align=alignk, ...} } = k
and {load=loadl, store=storel, updateML=updateMLl, updateC=updateCl, ctype = ctypel as {size=sizel, align=alignl, ...} } = l
and {load=loadm, store=storem, updateML=updateMLm, updateC=updateCm, ctype = ctypem as {size=sizem, align=alignm, ...} } = m
and {load=loadn, store=storen, updateML=updateMLn, updateC=updateCn, ctype = ctypen as {size=sizen, align=alignn, ...} } = n
and {load=loado, store=storeo, updateML=updateMLo, updateC=updateCo, ctype = ctypeo as {size=sizeo, align=aligno, ...} } = o
and {load=loadp, store=storep, updateML=updateMLp, updateC=updateCp, ctype = ctypep as {size=sizep, align=alignp, ...} } = p
and {load=loadq, store=storeq, updateML=updateMLq, updateC=updateCq, ctype = ctypeq as {size=sizeq, align=alignq, ...} } = q
and {load=loadr, store=storer, updateML=updateMLr, updateC=updateCr, ctype = ctyper as {size=sizer, align=alignr, ...} } = r
and {load=loads, store=stores, updateML=updateMLs, updateC=updateCs, ctype = ctypes as {size=sizes, align=aligns, ...} } = s
and {load=loadt, store=storet, updateML=updateMLt, updateC=updateCt, ctype = ctypet as {align=alignt, ...} } = t
val offsetb = alignUp(sizea, alignb)
val offsetc = alignUp(offsetb + sizeb, alignc)
val offsetd = alignUp(offsetc + sizec, alignd)
val offsete = alignUp(offsetd + sized, aligne)
val offsetf = alignUp(offsete + sizee, alignf)
val offsetg = alignUp(offsetf + sizef, aligng)
val offseth = alignUp(offsetg + sizeg, alignh)
val offseti = alignUp(offseth + sizeh, aligni)
val offsetj = alignUp(offseti + sizei, alignj)
val offsetk = alignUp(offsetj + sizej, alignk)
val offsetl = alignUp(offsetk + sizek, alignl)
val offsetm = alignUp(offsetl + sizel, alignm)
val offsetn = alignUp(offsetm + sizem, alignn)
val offseto = alignUp(offsetn + sizen, aligno)
val offsetp = alignUp(offseto + sizeo, alignp)
val offsetq = alignUp(offsetp + sizep, alignq)
val offsetr = alignUp(offsetq + sizeq, alignr)
val offsets = alignUp(offsetr + sizer, aligns)
val offsett = alignUp(offsets + sizes, alignt)
fun load s =
(loada s, loadb(s ++ offsetb), loadc(s ++ offsetc), loadd(s ++ offsetd),
loade(s ++ offsete), loadf(s ++ offsetf), loadg(s ++ offsetg),
loadh(s ++ offseth), loadi(s ++ offseti), loadj(s ++ offsetj),
loadk(s ++ offsetk), loadl(s ++ offsetl), loadm(s ++ offsetm),
loadn(s ++ offsetn), loado(s ++ offseto), loadp(s ++ offsetp),
loadq(s ++ offsetq), loadr(s ++ offsetr), loads(s ++ offsets), loadt(s ++ offsett))
and store (x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t)) =
let
val freea = storea(x, a) and freeb = storeb(x ++ offsetb, b) and freec = storec(x ++ offsetc, c)
and freed = stored(x ++ offsetd, d) and freee = storee(x ++ offsete, e) and freef = storef(x ++ offsetf, f)
and freeg = storeg(x ++ offsetg, g) and freeh = storeh(x ++ offseth, h) and freei = storei(x ++ offseti, i)
and freej = storej(x ++ offsetj, j) and freek = storek(x ++ offsetk, k) and freel = storel(x ++ offsetl, l)
and freem = storem(x ++ offsetm, m) and freen = storen(x ++ offsetn, n) and freeo = storeo(x ++ offseto, o)
and freep = storep(x ++ offsetp, p) and freeq = storeq(x ++ offsetq, q) and freer = storer(x ++ offsetr, r)
and frees = stores(x ++ offsets, s) and freet = storet(x ++ offsett, t)
in
fn () =>
(
freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem();
freen(); freeo(); freep(); freeq(); freer(); frees(); freet()
)
end
and updateML(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t)) =
(updateMLa(x, a); updateMLb(x ++ offsetb, b); updateMLc(x ++ offsetc, c); updateMLd(x ++ offsetd, d);
updateMLe(x ++ offsete, e); updateMLf(x ++ offsetf, f); updateMLg(x ++ offsetg, g);
updateMLh(x ++ offseth, h); updateMLi(x ++ offseti, i); updateMLj(x ++ offsetj, j);
updateMLk(x ++ offsetk, k); updateMLl(x ++ offsetl, l); updateMLm(x ++ offsetm, m);
updateMLn(x ++ offsetn, n); updateMLo(x ++ offseto, o); updateMLp(x ++ offsetp, p);
updateMLq(x ++ offsetq, q); updateMLr(x ++ offsetr, r); updateMLs(x ++ offsets, s); updateMLt(x ++ offsett, t))
and updateC(x, (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t)) =
(updateCa(x, a); updateCb(x ++ offsetb, b); updateCc(x ++ offsetc, c); updateCd(x ++ offsetd, d);
updateCe(x ++ offsete, e); updateCf(x ++ offsetf, f); updateCg(x ++ offsetg, g);
updateCh(x ++ offseth, h); updateCi(x ++ offseti, i); updateCj(x ++ offsetj, j);
updateCk(x ++ offsetk, k); updateCl(x ++ offsetl, l); updateCm(x ++ offsetm, m);
updateCn(x ++ offsetn, n); updateCo(x ++ offseto, o); updateCp(x ++ offsetp, p);
updateCq(x ++ offsetq, q); updateCr(x ++ offsetr, r); updateCs(x ++ offsets, s); updateCt(x ++ offsett, t))
in
{load=load, store=store, updateML=updateML, updateC=updateC,
ctype = LowLevel.cStruct[ctypea, ctypeb, ctypec, ctyped, ctypee, ctypef, ctypeg, ctypeh, ctypei, ctypej,
ctypek, ctypel, ctypem, ctypen, ctypeo, ctypep, ctypeq, ctyper, ctypes, ctypet]}
end
(* Conversion for call-by-reference. *)
local
open Memory LowLevel
in
fun cStar({load=loada, store=storea, ctype=ctypea, ...}: 'a conversion): 'a ref conversion =
let
fun store(m, ref s) =
let
(* When we pass a ref X into a cStar cX function we need to
allocate a memory cell big enough for a cX value. Then
we copy the current value of the ML into this. We set
the argument, a pointer, to the address of the cell. *)
val mem = malloc(#size ctypea)
val () = setAddress(m, 0w0, mem)
val freea = storea(mem, s)
in
fn () => (free mem; freea())
end
(* Called to update the ML value when the C . *)
fun updateML(m, s) = s := loada(getAddress(m, 0w0))
(* Used when an ML callback receives a cStar argument. *)
fun load s = ref(loada(getAddress(s, 0w0)))
(* Used when a callback has returned to update the C value.
If storea allocates then there's nothing we can do. *)
fun updateC(m, ref s) = ignore(storea(getAddress(m, 0w0), s))
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = cTypePointer}
end
(* Similar to cStar but without the need to update the result. *)
fun cConstStar({load=loada, store=storea, updateML=updateMLa, updateC=updateCa, ctype=ctypea}: 'a conversion): 'a conversion =
let
fun load s = loada(getAddress(s, 0w0))
fun store(m, s) =
let
val mem = malloc(#size ctypea)
val () = setAddress(m, 0w0, mem)
val freea = storea(mem, s)
in
fn () => (free mem; freea())
end
(* Do we have to do anything here? Could we pass a const pointer
to a structure with variable fields? *)
fun updateML(m, s) = updateMLa(getAddress(m, 0w0), s)
and updateC(m, s) = updateCa(getAddress(m, 0w0), s)
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = cTypePointer}
end
(* Fixed size vector. It is treated as a struct and passed by value or embedded in a structure. *)
fun cVectorFixedSize(n,
{load=loadEl, store=storeEl, updateML=updateMLel, updateC=updateCel,
ctype={size=sizeEl, align=alignEl, ffiType=ffiTypeEl}, ...}: 'a conversion)
: 'a vector conversion =
let
val arraySize = sizeEl * Word.fromInt n
fun ffiTypeArray () =
LibFFI.createFFItype {
size = arraySize, align = alignEl, typeCode=LibFFI.ffiTypeCodeStruct,
elements = List.tabulate (n, fn _ => ffiTypeEl()) }
val arrayType = { size = arraySize, align = alignEl, ffiType = ffiTypeArray }
fun load(v: voidStar): 'a vector =
Vector.tabulate(n, fn i => loadEl(v ++ Word.fromInt i))
fun store(v: voidStar, s: 'a vector) =
let
val sLen = Vector.length s
val _ = sLen <= n orelse raise Foreign "vector too long"
(* Store the values. Make a list of the free fns in case they allocate *)
val frees = Vector.foldli(fn(i, el, l) => storeEl(v ++ Word.fromInt i, el) :: l) [] s;
in
fn () => List.app (fn f => f()) frees
end
(* If we have a ref in here we need to update *)
fun updateML(v, s) = Vector.appi(fn (i, el) => updateMLel(v ++ Word.fromInt i, el)) s
and updateC(v, s) = Vector.appi(fn (i, el) => updateCel(v ++ Word.fromInt i, el)) s
in
{ load = load, store = store, updateML=updateML, updateC=updateC, ctype = arrayType }
end
(* Pass an ML vector as a pointer to a C array. *)
fun cVectorPointer
({store=storeEl, updateML=updateMLel, ctype={size=sizeEl, ...}, ...}: 'a conversion)
: 'a vector conversion =
let
(* We can't determine the size so can't construct a suitable ML value. *)
fun load _ = raise Foreign "Cannot return a cVectorPointer from C to ML"
fun store(m, s) =
let
val mem = malloc(sizeEl * Word.fromInt(Vector.length s))
val () = setAddress(m, 0w0, mem)
(* Store the values. Make a list of the free fns in case they allocate *)
val frees = Vector.foldli(fn(i, el, l) => storeEl(mem ++ (sizeEl * Word.fromInt i), el) :: l) [] s;
in
fn () => (List.app (fn f => f()) frees; free mem)
end
(* This is only appropriate if the elements are refs. *)
fun updateML(v, s) =
let
val addr = getAddress(v, 0w0)
in
Vector.appi(fn (i, el) => updateMLel(addr ++ (sizeEl * Word.fromInt i), el)) s
end
(* updateC can't actually be used because we can't load a suitable value *)
and updateC _ = raise Foreign "Cannot return a cVectorPointer from C to ML"
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = cTypePointer}
end
(* Pass an ML array as a pointer to a C array and, on return, update each element of
the ML array from the C array. *)
fun cArrayPointer
({load=loadEl, store=storeEl, ctype={size=sizeEl, ...}, ...}: 'a conversion) : 'a array conversion =
let
(* We can't determine the size so can't construct a suitable ML value. *)
fun load _ = raise Foreign "Cannot return a cArrayPointer from C to ML"
fun store(m, s) =
let
val mem = malloc(sizeEl * Word.fromInt(Array.length s))
val () = setAddress(m, 0w0, mem)
(* Store the values. Make a list of the free fns in case they allocate *)
val frees = Array.foldli(fn(i, el, l) => storeEl(mem ++ (sizeEl * Word.fromInt i), el) :: l) [] s;
in
fn () => (List.app (fn f => f()) frees; free mem)
end
(* updateML is used after a C function returns. It needs to update each element. *)
fun updateML(v, s) =
let
val addr = getAddress(v, 0w0)
in
Array.modifyi(fn (i, _) => loadEl(addr ++ (sizeEl * Word.fromInt i))) s
end
(* updateC can't actually be used because we can't load a suitable value *)
and updateC _ = raise Foreign "Cannot return a cArrayPointer from C to ML"
in
{load=load, store=store, updateML=updateML, updateC=updateC, ctype = cTypePointer}
end
end
(* Calls with conversion. *)
(* Note: it may be possible to have general functions to compute offsets
but we don't do that because this way the compiler can compute the offsets
as constants during inline expansion. *)
local
open LibFFI Memory LowLevel
in
fun buildCall0withAbi(abi: abi, fnAddr, (), {ctype = resType, load= resLoad, ...} : 'a conversion): unit->'a =
let
val callF = callwithAbi abi [] resType fnAddr
in
fn () =>
let
val rMem = malloc(#size resType)
in
let
val () = callF([], rMem)
val result = resLoad rMem
in
free rMem;
result
end handle exn => (free rMem; raise exn)
end
end
fun buildCall0(symbol, argTypes, resType) = buildCall0withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall1withAbi (abi: abi, fnAddr,
{ ctype = argType, store = argStore, updateML = argUpdate, ...}: 'a conversion,
{ ctype = resType, load= resLoad, ...}: 'b conversion): 'a ->'b =
let
val callF = callwithAbi abi [argType] resType fnAddr
in
fn x =>
let
(* Allocate space for argument(s) and result.
We can't use cStruct here because we only store the
argument before the call and load the result after. *)
val argOffset = alignUp(#size resType, #align argType)
val rMem = malloc(argOffset + #size argType)
val argAddr = rMem ++ argOffset
val freea = argStore (argAddr, x)
fun freeAll () = (freea(); free rMem)
in
let
val () = callF([argAddr], rMem)
val result = resLoad rMem
in
argUpdate (argAddr, x);
freeAll ();
result
end handle exn => (freeAll (); raise exn)
end
end
fun buildCall1(symbol, argTypes, resType) = buildCall1withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall2withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion),
{ ctype = resType, load= resLoad, ...}: 'c conversion): 'a * 'b -> 'c =
let
val callF = callwithAbi abi [arg1Type, arg2Type] resType fnAddr
in
fn (a, b) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val rMem = malloc(arg2Offset + #size arg2Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
fun freeAll() = (freea(); freeb(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall2(symbol, argTypes, resType) = buildCall2withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall3withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion),
{ ctype = resType, load= resLoad, ...}: 'd conversion): 'a * 'b *'c -> 'd =
let
val callF = callwithAbi abi [arg1Type, arg2Type, arg3Type] resType fnAddr
in
fn (a, b, c) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val rMem = malloc(arg3Offset + #size arg3Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
fun freeAll() = (freea(); freeb(); freec(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr, arg3Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall3(symbol, argTypes, resType) = buildCall3withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall4withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion),
{ ctype = resType, load= resLoad, ...}: 'e conversion): 'a * 'b *'c * 'd -> 'e =
let
val callF = callwithAbi abi [arg1Type, arg2Type, arg3Type, arg4Type] resType fnAddr
in
fn (a, b, c, d) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val rMem = malloc(arg4Offset + #size arg4Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
fun freeAll() = (freea(); freeb(); freec(); freed(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall4(symbol, argTypes, resType) = buildCall4withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall5withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion),
{ ctype = resType, load= resLoad, ...}: 'f conversion): 'a * 'b *'c * 'd * 'e -> 'f =
let
val callF =
callwithAbi abi [arg1Type, arg2Type, arg3Type, arg4Type, arg5Type] resType fnAddr
in
fn (a, b, c, d, e) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val rMem = malloc(arg5Offset + #size arg5Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall5(symbol, argTypes, resType) = buildCall5withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall6withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion),
{ ctype = resType, load= resLoad, ...}: 'g conversion): 'a * 'b *'c * 'd * 'e * 'f -> 'g =
let
val callF =
callwithAbi abi [arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type] resType fnAddr
in
fn (a, b, c, d, e, f) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val rMem = malloc(arg6Offset + #size arg6Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr , arg6Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall6(symbol, argTypes, resType) = buildCall6withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall7withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion),
{ ctype = resType, load= resLoad, ...}: 'h conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g -> 'h =
let
val callF =
callwithAbi abi [arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type] resType fnAddr
in
fn (a, b, c, d, e, f, g) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val rMem = malloc(arg7Offset + #size arg7Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall7(symbol, argTypes, resType) = buildCall7withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall8withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion),
{ ctype = resType, load= resLoad, ...}: 'i conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h -> 'i =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type, arg8Type] resType fnAddr
in
fn (a, b, c, d, e, f, g, h) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val rMem = malloc(arg8Offset + #size arg8Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); free rMem)
in
let
val () = callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr, arg8Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall8(symbol, argTypes, resType) = buildCall8withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall9withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion,
{ ctype = arg9Type, store = arg9Store, updateML = arg9Update, ...}: 'i conversion),
{ ctype = resType, load= resLoad, ...}: 'j conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h * 'i -> 'j =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type, arg8Type, arg9Type]
resType fnAddr
in
fn (a, b, c, d, e, f, g, h, i) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val arg9Offset = alignUp(arg8Offset + #size arg8Type, #align arg9Type)
val rMem = malloc(arg9Offset + #size arg9Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val arg9Addr = rMem ++ arg9Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
val freei = arg9Store (arg9Addr, i)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); free rMem)
in
let
val () =
callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr, arg8Addr, arg9Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h); arg9Update (arg9Addr, i);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall9(symbol, argTypes, resType) = buildCall9withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall10withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion,
{ ctype = arg9Type, store = arg9Store, updateML = arg9Update, ...}: 'i conversion,
{ ctype = arg10Type, store = arg10Store, updateML = arg10Update, ...}: 'j conversion),
{ ctype = resType, load= resLoad, ...}: 'k conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j -> 'k =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type,
arg8Type, arg9Type, arg10Type] resType fnAddr
in
fn (a, b, c, d, e, f, g, h, i, j) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val arg9Offset = alignUp(arg8Offset + #size arg8Type, #align arg9Type)
val arg10Offset = alignUp(arg9Offset + #size arg9Type, #align arg10Type)
val rMem = malloc(arg10Offset + #size arg10Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val arg9Addr = rMem ++ arg9Offset
val arg10Addr = rMem ++ arg10Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
val freei = arg9Store (arg9Addr, i)
val freej = arg10Store (arg10Addr, j)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); free rMem)
in
let
val () =
callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr,
arg8Addr, arg9Addr, arg10Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h); arg9Update (arg9Addr, i);
arg10Update (arg10Addr, j);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall10(symbol, argTypes, resType) = buildCall10withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall11withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion,
{ ctype = arg9Type, store = arg9Store, updateML = arg9Update, ...}: 'i conversion,
{ ctype = arg10Type, store = arg10Store, updateML = arg10Update, ...}: 'j conversion,
{ ctype = arg11Type, store = arg11Store, updateML = arg11Update, ...}: 'k conversion),
{ ctype = resType, load= resLoad, ...}: 'l conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k -> 'l =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type,
arg8Type, arg9Type, arg10Type, arg11Type] resType fnAddr
in
fn (a, b, c, d, e, f, g, h, i, j, k) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val arg9Offset = alignUp(arg8Offset + #size arg8Type, #align arg9Type)
val arg10Offset = alignUp(arg9Offset + #size arg9Type, #align arg10Type)
val arg11Offset = alignUp(arg10Offset + #size arg10Type, #align arg11Type)
val rMem = malloc(arg11Offset + #size arg11Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val arg9Addr = rMem ++ arg9Offset
val arg10Addr = rMem ++ arg10Offset
val arg11Addr = rMem ++ arg11Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
val freei = arg9Store (arg9Addr, i)
val freej = arg10Store (arg10Addr, j)
val freek = arg11Store (arg11Addr, k)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); free rMem)
in
let
val () =
callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr,
arg8Addr, arg9Addr, arg10Addr, arg11Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h); arg9Update (arg9Addr, i);
arg10Update (arg10Addr, j); arg11Update (arg11Addr, k);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall11(symbol, argTypes, resType) = buildCall11withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall12withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion,
{ ctype = arg9Type, store = arg9Store, updateML = arg9Update, ...}: 'i conversion,
{ ctype = arg10Type, store = arg10Store, updateML = arg10Update, ...}: 'j conversion,
{ ctype = arg11Type, store = arg11Store, updateML = arg11Update, ...}: 'k conversion,
{ ctype = arg12Type, store = arg12Store, updateML = arg12Update, ...}: 'l conversion),
{ ctype = resType, load= resLoad, ...}: 'm conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l -> 'm =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type,
arg8Type, arg9Type, arg10Type, arg11Type, arg12Type] resType fnAddr
in
fn (a, b, c, d, e, f, g, h, i, j, k, l) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val arg9Offset = alignUp(arg8Offset + #size arg8Type, #align arg9Type)
val arg10Offset = alignUp(arg9Offset + #size arg9Type, #align arg10Type)
val arg11Offset = alignUp(arg10Offset + #size arg10Type, #align arg11Type)
val arg12Offset = alignUp(arg11Offset + #size arg11Type, #align arg12Type)
val rMem = malloc(arg12Offset + #size arg12Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val arg9Addr = rMem ++ arg9Offset
val arg10Addr = rMem ++ arg10Offset
val arg11Addr = rMem ++ arg11Offset
val arg12Addr = rMem ++ arg12Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
val freei = arg9Store (arg9Addr, i)
val freej = arg10Store (arg10Addr, j)
val freek = arg11Store (arg11Addr, k)
val freel = arg12Store (arg12Addr, l)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); free rMem)
in
let
val () =
callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr,
arg8Addr, arg9Addr, arg10Addr, arg11Addr, arg12Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h); arg9Update (arg9Addr, i);
arg10Update (arg10Addr, j); arg11Update (arg11Addr, k); arg12Update (arg12Addr, l);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall12(symbol, argTypes, resType) = buildCall12withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall13withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion,
{ ctype = arg9Type, store = arg9Store, updateML = arg9Update, ...}: 'i conversion,
{ ctype = arg10Type, store = arg10Store, updateML = arg10Update, ...}: 'j conversion,
{ ctype = arg11Type, store = arg11Store, updateML = arg11Update, ...}: 'k conversion,
{ ctype = arg12Type, store = arg12Store, updateML = arg12Update, ...}: 'l conversion,
{ ctype = arg13Type, store = arg13Store, updateML = arg13Update, ...}: 'm conversion),
{ ctype = resType, load= resLoad, ...}: 'n conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l * 'm -> 'n =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type,
arg8Type, arg9Type, arg10Type, arg11Type, arg12Type, arg13Type] resType fnAddr
in
fn (a, b, c, d, e, f, g, h, i, j, k, l, m) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val arg9Offset = alignUp(arg8Offset + #size arg8Type, #align arg9Type)
val arg10Offset = alignUp(arg9Offset + #size arg9Type, #align arg10Type)
val arg11Offset = alignUp(arg10Offset + #size arg10Type, #align arg11Type)
val arg12Offset = alignUp(arg11Offset + #size arg11Type, #align arg12Type)
val arg13Offset = alignUp(arg12Offset + #size arg12Type, #align arg13Type)
val rMem = malloc(arg13Offset + #size arg13Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val arg9Addr = rMem ++ arg9Offset
val arg10Addr = rMem ++ arg10Offset
val arg11Addr = rMem ++ arg11Offset
val arg12Addr = rMem ++ arg12Offset
val arg13Addr = rMem ++ arg13Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
val freei = arg9Store (arg9Addr, i)
val freej = arg10Store (arg10Addr, j)
val freek = arg11Store (arg11Addr, k)
val freel = arg12Store (arg12Addr, l)
val freem = arg13Store (arg13Addr, m)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem(); free rMem)
in
let
val () =
callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr,
arg8Addr, arg9Addr, arg10Addr, arg11Addr, arg12Addr, arg13Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h); arg9Update (arg9Addr, i);
arg10Update (arg10Addr, j); arg11Update (arg11Addr, k); arg12Update (arg12Addr, l);
arg13Update (arg13Addr, m);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall13(symbol, argTypes, resType) = buildCall13withAbi (abiDefault, symbol, argTypes, resType)
fun buildCall14withAbi (abi: abi, fnAddr,
({ ctype = arg1Type, store = arg1Store, updateML = arg1Update, ...}: 'a conversion,
{ ctype = arg2Type, store = arg2Store, updateML = arg2Update, ...}: 'b conversion,
{ ctype = arg3Type, store = arg3Store, updateML = arg3Update, ...}: 'c conversion,
{ ctype = arg4Type, store = arg4Store, updateML = arg4Update, ...}: 'd conversion,
{ ctype = arg5Type, store = arg5Store, updateML = arg5Update, ...}: 'e conversion,
{ ctype = arg6Type, store = arg6Store, updateML = arg6Update, ...}: 'f conversion,
{ ctype = arg7Type, store = arg7Store, updateML = arg7Update, ...}: 'g conversion,
{ ctype = arg8Type, store = arg8Store, updateML = arg8Update, ...}: 'h conversion,
{ ctype = arg9Type, store = arg9Store, updateML = arg9Update, ...}: 'i conversion,
{ ctype = arg10Type, store = arg10Store, updateML = arg10Update, ...}: 'j conversion,
{ ctype = arg11Type, store = arg11Store, updateML = arg11Update, ...}: 'k conversion,
{ ctype = arg12Type, store = arg12Store, updateML = arg12Update, ...}: 'l conversion,
{ ctype = arg13Type, store = arg13Store, updateML = arg13Update, ...}: 'm conversion,
{ ctype = arg14Type, store = arg14Store, updateML = arg14Update, ...}: 'n conversion),
{ ctype = resType, load= resLoad, ...}: 'o conversion):
'a * 'b *'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j * 'k * 'l * 'm * 'n -> 'o =
let
val callF =
callwithAbi abi
[arg1Type, arg2Type, arg3Type, arg4Type, arg5Type, arg6Type, arg7Type,
arg8Type, arg9Type, arg10Type, arg11Type, arg12Type, arg13Type,
arg14Type] resType fnAddr
in
fn (a, b, c, d, e, f, g, h, i, j, k, l, m, n) =>
let
val arg1Offset = alignUp(#size resType, #align arg1Type)
val arg2Offset = alignUp(arg1Offset + #size arg1Type, #align arg2Type)
val arg3Offset = alignUp(arg2Offset + #size arg2Type, #align arg3Type)
val arg4Offset = alignUp(arg3Offset + #size arg3Type, #align arg4Type)
val arg5Offset = alignUp(arg4Offset + #size arg4Type, #align arg5Type)
val arg6Offset = alignUp(arg5Offset + #size arg5Type, #align arg6Type)
val arg7Offset = alignUp(arg6Offset + #size arg6Type, #align arg7Type)
val arg8Offset = alignUp(arg7Offset + #size arg7Type, #align arg8Type)
val arg9Offset = alignUp(arg8Offset + #size arg8Type, #align arg9Type)
val arg10Offset = alignUp(arg9Offset + #size arg9Type, #align arg10Type)
val arg11Offset = alignUp(arg10Offset + #size arg10Type, #align arg11Type)
val arg12Offset = alignUp(arg11Offset + #size arg11Type, #align arg12Type)
val arg13Offset = alignUp(arg12Offset + #size arg12Type, #align arg13Type)
val arg14Offset = alignUp(arg13Offset + #size arg13Type, #align arg14Type)
val rMem = malloc(arg14Offset + #size arg14Type)
val arg1Addr = rMem ++ arg1Offset
val arg2Addr = rMem ++ arg2Offset
val arg3Addr = rMem ++ arg3Offset
val arg4Addr = rMem ++ arg4Offset
val arg5Addr = rMem ++ arg5Offset
val arg6Addr = rMem ++ arg6Offset
val arg7Addr = rMem ++ arg7Offset
val arg8Addr = rMem ++ arg8Offset
val arg9Addr = rMem ++ arg9Offset
val arg10Addr = rMem ++ arg10Offset
val arg11Addr = rMem ++ arg11Offset
val arg12Addr = rMem ++ arg12Offset
val arg13Addr = rMem ++ arg13Offset
val arg14Addr = rMem ++ arg14Offset
val freea = arg1Store (arg1Addr, a)
val freeb = arg2Store (arg2Addr, b)
val freec = arg3Store (arg3Addr, c)
val freed = arg4Store (arg4Addr, d)
val freee = arg5Store (arg5Addr, e)
val freef = arg6Store (arg6Addr, f)
val freeg = arg7Store (arg7Addr, g)
val freeh = arg8Store (arg8Addr, h)
val freei = arg9Store (arg9Addr, i)
val freej = arg10Store (arg10Addr, j)
val freek = arg11Store (arg11Addr, k)
val freel = arg12Store (arg12Addr, l)
val freem = arg13Store (arg13Addr, m)
val freen = arg14Store (arg14Addr, n)
fun freeAll() =
(freea(); freeb(); freec(); freed(); freee(); freef(); freeg();
freeh(); freei(); freej(); freek(); freel(); freem(); freen(); free rMem)
in
let
val () =
callF([arg1Addr, arg2Addr, arg3Addr, arg4Addr, arg5Addr, arg6Addr, arg7Addr,
arg8Addr, arg9Addr, arg10Addr, arg11Addr, arg12Addr, arg13Addr, arg14Addr], rMem)
val result = resLoad rMem
in
arg1Update(arg1Addr, a); arg2Update (arg2Addr, b); arg3Update (arg3Addr, c);
arg4Update (arg4Addr, d); arg5Update (arg5Addr, e); arg6Update (arg6Addr, f);
arg7Update (arg7Addr, g); arg8Update (arg8Addr, h); arg9Update (arg9Addr, i);
arg10Update (arg10Addr, j); arg11Update (arg11Addr, k); arg12Update (arg12Addr, l);
arg13Update (arg13Addr, m); arg14Update (arg14Addr, n);
freeAll();
result
end handle exn => (freeAll(); raise exn)
end
end
fun buildCall14(symbol, argTypes, resType) = buildCall14withAbi (abiDefault, symbol, argTypes, resType)
end
(* A closure is a memoised address. *)
type 'a closure = unit -> Memory.voidStar
local
open Memory LowLevel
fun load _ = raise Foreign "Cannot return a closure"
(* "dememoise" the value when we store it. This means that the closure is actually
created when the value is first stored and then it is cached. *)
and store(v, cl: ('a->'b) closure) = (Memory.setAddress(v, 0w0, cl()); fn () => ())
in
val cFunction: ('a->'b) closure conversion =
makeConversion { load=load, store=store, ctype = LowLevel.cTypePointer }
end
local
open LibFFI Memory LowLevel
in
fun buildClosure0withAbi(f: unit-> 'a, abi: abi, (), resConv: 'a conversion): (unit->'a) closure =
let
fun callback (f: unit -> 'a) (_: voidStar, res: voidStar): unit =
ignore(#store resConv (res, f ()))
(* Ignore the result of #store resConv. What this means is if the
callback returns something, e.g. a string, that requires
dynamic allocation there will be a memory leak. *)
val makeCallback = cFunctionWithAbi abi [] (#ctype resConv)
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure0(f, argConv, resConv) = buildClosure0withAbi(f, abiDefault, argConv, resConv)
fun buildClosure1withAbi (f: 'a -> 'b, abi: abi, argConv: 'a conversion, resConv: 'b conversion) : ('a -> 'b) closure =
let
fun callback (f: 'a -> 'b) (args: voidStar, res: voidStar): unit =
let
val arg1Addr = getAddress(args, 0w0)
val arg1 = #load argConv arg1Addr
val result = f arg1
val () = #updateC argConv (arg1Addr, arg1)
in
ignore(#store resConv (res, result))
end
val makeCallback = cFunctionWithAbi abi [#ctype argConv] (#ctype resConv)
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure1(f, argConv, resConv) = buildClosure1withAbi(f, abiDefault, argConv, resConv)
fun buildClosure2withAbi
(f: 'a * 'b -> 'c, abi: abi, (arg1Conv: 'a conversion, arg2Conv: 'b conversion), resConv: 'c conversion) :
('a * 'b -> 'c) closure =
let
fun callback (f: 'a *'b -> 'c) (args: voidStar, res: voidStar): unit =
let
val arg1Addr = getAddress(args, 0w0)
and arg2Addr = getAddress(args, 0w1)
val arg1 = #load arg1Conv arg1Addr
and arg2 = #load arg2Conv arg2Addr
val result = f (arg1, arg2)
val () = #updateC arg1Conv(arg1Addr, arg1)
and () = #updateC arg2Conv(arg2Addr, arg2)
in
ignore(#store resConv (res, result))
end
val argTypes = [#ctype arg1Conv, #ctype arg2Conv]
and resType = #ctype resConv
val makeCallback = cFunctionWithAbi abi argTypes resType
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure2(f, argConv, resConv) = buildClosure2withAbi(f, abiDefault, argConv, resConv)
fun buildClosure3withAbi
(f, abi, (arg1Conv: 'a conversion, arg2Conv: 'b conversion, arg3Conv: 'c conversion), resConv: 'd conversion) =
let
fun callback (f: 'a *'b * 'c -> 'd) (args: voidStar, res: voidStar): unit =
let
val arg1Addr = getAddress(args, 0w0)
and arg2Addr = getAddress(args, 0w1)
and arg3Addr = getAddress(args, 0w2)
val arg1 = #load arg1Conv arg1Addr
and arg2 = #load arg2Conv arg2Addr
and arg3 = #load arg3Conv arg3Addr
val result = f (arg1, arg2, arg3)
val () = #updateC arg1Conv(arg1Addr, arg1)
and () = #updateC arg2Conv(arg2Addr, arg2)
and () = #updateC arg3Conv(arg3Addr, arg3)
in
ignore(#store resConv (res, result))
end
val argTypes =
[#ctype arg1Conv, #ctype arg2Conv, #ctype arg3Conv]
and resType = #ctype resConv
val makeCallback = cFunctionWithAbi abi argTypes resType
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure3(f, argConv, resConv) = buildClosure3withAbi(f, abiDefault, argConv, resConv)
fun buildClosure4withAbi
(f, abi,
(arg1Conv: 'a conversion, arg2Conv: 'b conversion, arg3Conv: 'c conversion, arg4Conv: 'd conversion),
resConv: 'e conversion) =
let
fun callback (f: 'a *'b * 'c * 'd -> 'e) (args: voidStar, res: voidStar): unit =
let
val arg1Addr = getAddress(args, 0w0)
and arg2Addr = getAddress(args, 0w1)
and arg3Addr = getAddress(args, 0w2)
and arg4Addr = getAddress(args, 0w3)
val arg1 = #load arg1Conv arg1Addr
and arg2 = #load arg2Conv arg2Addr
and arg3 = #load arg3Conv arg3Addr
and arg4 = #load arg4Conv arg4Addr
val result = f (arg1, arg2, arg3, arg4)
val () = #updateC arg1Conv(arg1Addr, arg1)
and () = #updateC arg2Conv(arg2Addr, arg2)
and () = #updateC arg3Conv(arg3Addr, arg3)
and () = #updateC arg4Conv(arg4Addr, arg4)
in
ignore(#store resConv (res, result))
end
val argTypes =
[#ctype arg1Conv, #ctype arg2Conv, #ctype arg3Conv, #ctype arg4Conv]
and resType = #ctype resConv
val makeCallback = cFunctionWithAbi abi argTypes resType
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure4(f, argConv, resConv) = buildClosure4withAbi(f, abiDefault, argConv, resConv)
fun buildClosure5withAbi
(f, abi,
(arg1Conv: 'a conversion, arg2Conv: 'b conversion, arg3Conv: 'c conversion,
arg4Conv: 'd conversion, arg5Conv: 'e conversion),
resConv: 'f conversion) =
let
fun callback (f: 'a *'b * 'c * 'd * 'e -> 'f) (args: voidStar, res: voidStar): unit =
let
val arg1Addr = getAddress(args, 0w0)
and arg2Addr = getAddress(args, 0w1)
and arg3Addr = getAddress(args, 0w2)
and arg4Addr = getAddress(args, 0w3)
and arg5Addr = getAddress(args, 0w4)
val arg1 = #load arg1Conv arg1Addr
and arg2 = #load arg2Conv arg2Addr
and arg3 = #load arg3Conv arg3Addr
and arg4 = #load arg4Conv arg4Addr
and arg5 = #load arg5Conv arg5Addr
val result = f (arg1, arg2, arg3, arg4, arg5)
val () = #updateC arg1Conv(arg1Addr, arg1)
and () = #updateC arg2Conv(arg2Addr, arg2)
and () = #updateC arg3Conv(arg3Addr, arg3)
and () = #updateC arg4Conv(arg4Addr, arg4)
and () = #updateC arg5Conv(arg5Addr, arg5)
in
ignore(#store resConv (res, result))
end
val argTypes =
[#ctype arg1Conv, #ctype arg2Conv, #ctype arg3Conv,
#ctype arg4Conv, #ctype arg5Conv]
and resType = #ctype resConv
val makeCallback = cFunctionWithAbi abi argTypes resType
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure5(f, argConv, resConv) = buildClosure5withAbi(f, abiDefault, argConv, resConv)
fun buildClosure6withAbi
(f, abi,
(arg1Conv: 'a conversion, arg2Conv: 'b conversion, arg3Conv: 'c conversion,
arg4Conv: 'd conversion, arg5Conv: 'e conversion, arg6Conv: 'f conversion),
resConv: 'g conversion) =
let
fun callback (f: 'a *'b * 'c * 'd * 'e * 'f -> 'g) (args: voidStar, res: voidStar): unit =
let
val arg1Addr = getAddress(args, 0w0)
and arg2Addr = getAddress(args, 0w1)
and arg3Addr = getAddress(args, 0w2)
and arg4Addr = getAddress(args, 0w3)
and arg5Addr = getAddress(args, 0w4)
and arg6Addr = getAddress(args, 0w5)
val arg1 = #load arg1Conv arg1Addr
and arg2 = #load arg2Conv arg2Addr
and arg3 = #load arg3Conv arg3Addr
and arg4 = #load arg4Conv arg4Addr
and arg5 = #load arg5Conv arg5Addr
and arg6 = #load arg6Conv arg6Addr
val result = f (arg1, arg2, arg3, arg4, arg5, arg6)
val () = #updateC arg1Conv(arg1Addr, arg1)
and () = #updateC arg2Conv(arg2Addr, arg2)
and () = #updateC arg3Conv(arg3Addr, arg3)
and () = #updateC arg4Conv(arg4Addr, arg4)
and () = #updateC arg5Conv(arg5Addr, arg5)
and () = #updateC arg6Conv(arg6Addr, arg6)
in
ignore(#store resConv (res, result))
end
val argTypes =
[#ctype arg1Conv, #ctype arg2Conv, #ctype arg3Conv,
#ctype arg4Conv, #ctype arg5Conv, #ctype arg6Conv]
and resType = #ctype resConv
val makeCallback = cFunctionWithAbi abi argTypes resType
in
Memory.memoise (fn () => makeCallback(callback f)) ()
end
fun buildClosure6(f, argConv, resConv) = buildClosure6withAbi(f, abiDefault, argConv, resConv)
end
end;
|