1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440
|
# Copyright (C) 2011-2023 Apple Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
# THE POSSIBILITY OF SUCH DAMAGE.
# Utilities
# FIXME: Merge "getOperand" macros on 32 and 64 bits LLInt
# https://bugs.webkit.org/show_bug.cgi?id=206342
macro getuOperandNarrow(opcodeStruct, fieldName, dst)
loadb constexpr %opcodeStruct%_%fieldName%_index + OpcodeIDNarrowSize[PB, PC, 1], dst
end
macro getOperandNarrow(opcodeStruct, fieldName, dst)
loadbsi constexpr %opcodeStruct%_%fieldName%_index + OpcodeIDNarrowSize[PB, PC, 1], dst
end
macro getuOperandWide16JS(opcodeStruct, fieldName, dst)
loadh constexpr %opcodeStruct%_%fieldName%_index * 2 + OpcodeIDWide16SizeJS[PB, PC, 1], dst
end
macro getuOperandWide16Wasm(opcodeStruct, fieldName, dst)
loadh constexpr %opcodeStruct%_%fieldName%_index * 2 + OpcodeIDWide16SizeWasm[PB, PC, 1], dst
end
macro getOperandWide16JS(opcodeStruct, fieldName, dst)
loadhsi constexpr %opcodeStruct%_%fieldName%_index * 2 + OpcodeIDWide16SizeJS[PB, PC, 1], dst
end
macro getOperandWide16Wasm(opcodeStruct, fieldName, dst)
loadhsi constexpr %opcodeStruct%_%fieldName%_index * 2 + OpcodeIDWide16SizeWasm[PB, PC, 1], dst
end
macro getuOperandWide32JS(opcodeStruct, fieldName, dst)
loadi constexpr %opcodeStruct%_%fieldName%_index * 4 + OpcodeIDWide32SizeJS[PB, PC, 1], dst
end
macro getuOperandWide32Wasm(opcodeStruct, fieldName, dst)
loadi constexpr %opcodeStruct%_%fieldName%_index * 4 + OpcodeIDWide32SizeWasm[PB, PC, 1], dst
end
macro getOperandWide32JS(opcodeStruct, fieldName, dst)
loadis constexpr %opcodeStruct%_%fieldName%_index * 4 + OpcodeIDWide32SizeJS[PB, PC, 1], dst
end
macro getOperandWide32Wasm(opcodeStruct, fieldName, dst)
loadis constexpr %opcodeStruct%_%fieldName%_index * 4 + OpcodeIDWide32SizeWasm[PB, PC, 1], dst
end
macro storeJSValueConcurrent(store, tag, payload)
if JIT
store(InvalidTag, TagOffset)
writefence
store(payload, PayloadOffset)
writefence
store(tag, TagOffset)
else
store(payload, PayloadOffset)
store(tag, TagOffset)
end
end
macro makeReturn(get, dispatch, fn)
fn(macro(tag, payload)
move tag, t5
move payload, t3
get(m_dst, t2)
storei t5, TagOffset[cfr, t2, 8]
storei t3, PayloadOffset[cfr, t2, 8]
dispatch()
end)
end
macro makeReturnProfiled(size, opcodeStruct, get, metadata, dispatch, fn)
fn(macro (tag, payload)
move tag, t1
move payload, t0
valueProfile(size, opcodeStruct, m_valueProfile, t1, t0, t5)
get(m_dst, t2)
storei t1, TagOffset[cfr, t2, 8]
storei t0, PayloadOffset[cfr, t2, 8]
dispatch()
end)
end
# After calling, calling bytecode is claiming input registers are not used.
macro dispatchAfterRegularCall(size, opcodeStruct, valueProfileName, dstVirtualRegister, dispatch)
loadi ArgumentCountIncludingThis + TagOffset[cfr], PC
if C_LOOP
# On non C_LOOP builds, CSR restore takes care of this.
loadp CodeBlock[cfr], PB
loadp CodeBlock::m_instructionsRawPointer[PB], PB
end
get(size, opcodeStruct, dstVirtualRegister, t3)
storei r1, TagOffset[cfr, t3, 8]
storei r0, PayloadOffset[cfr, t3, 8]
valueProfile(size, opcodeStruct, valueProfileName, r1, r0, t2)
dispatch()
end
macro dispatchAfterTailCall(size, opcodeStruct, valueProfileName, dstVirtualRegister, dispatch)
loadi ArgumentCountIncludingThis + TagOffset[cfr], PC
if C_LOOP
# On non C_LOOP builds, CSR restore takes care of this.
loadp CodeBlock[cfr], PB
loadp CodeBlock::m_instructionsRawPointer[PB], PB
end
get(size, opcodeStruct, dstVirtualRegister, t3)
storei r1, TagOffset[cfr, t3, 8]
storei r0, PayloadOffset[cfr, t3, 8]
metadata(size, opcodeStruct, t2, t3)
dispatch()
end
macro dispatchAfterRegularCallIgnoreResult(size, opcodeStruct, valueProfileName, dstVirtualRegister, dispatch)
loadi ArgumentCountIncludingThis + TagOffset[cfr], PC
if C_LOOP
# On non C_LOOP builds, CSR restore takes care of this.
loadp CodeBlock[cfr], PB
loadp CodeBlock::m_instructionsRawPointer[PB], PB
end
dispatch()
end
macro cCall2(function)
if C_LOOP
cloopCallSlowPath function, a0, a1
elsif ARMv7
call function
else
error
end
end
macro cCall2Void(function)
if C_LOOP
cloopCallSlowPathVoid function, a0, a1
else
cCall2(function)
end
end
macro cCall3(function)
if C_LOOP
cloopCallSlowPath3 function, a0, a1, a2
elsif ARMv7
call function
else
error
end
end
macro cCall4(function)
if C_LOOP
cloopCallSlowPath4 function, a0, a1, a2, a3
elsif ARMv7
call function
else
error
end
end
macro prepareStateForCCall()
addp PB, PC
end
macro restoreStateAfterCCall()
move r0, PC
subp PB, PC
end
macro callSlowPath(slowPath)
prepareStateForCCall()
move cfr, a0
move PC, a1
cCall2(slowPath)
restoreStateAfterCCall()
end
macro cagedPrimitive(ptr, length, scratch, scratch2)
end
macro doVMEntry(makeCall)
functionPrologue()
pushCalleeSaves()
const entry = a0
const vm = a1
const protoCallFrame = a2
# We are using t3, t4 and t5 as temporaries through the function.
# Since we have the guarantee that tX != aY when X != Y, we are safe from
# aliasing problems with our arguments.
if ARMv7
vmEntryRecord(cfr, t3)
move t3, sp
else
vmEntryRecord(cfr, sp)
end
storep vm, VMEntryRecord::m_vm[sp]
loadp VM::topCallFrame[vm], t4
storep t4, VMEntryRecord::m_prevTopCallFrame[sp]
loadp VM::topEntryFrame[vm], t4
storep t4, VMEntryRecord::m_prevTopEntryFrame[sp]
# Align stack pointer
if ARMv7
addp CallFrameAlignSlots * SlotSize, sp, t3
clrbp t3, StackAlignmentMask, t3
subp t3, CallFrameAlignSlots * SlotSize, t3
move t3, sp
end
loadi ProtoCallFrame::paddedArgCount[protoCallFrame], t4
addp CallFrameHeaderSlots, t4, t4
lshiftp 3, t4
subp sp, t4, t3
bpa t3, sp, _llint_throw_stack_overflow_error_from_vm_entry
# Ensure that we have enough additional stack capacity for the incoming args,
# and the frame for the JS code we're executing. We need to do this check
# before we start copying the args from the protoCallFrame below.
if C_LOOP
bpaeq t3, VM::m_cloopStackLimit[vm], .stackHeightOK
move entry, t4
move vm, t5
cloopCallSlowPath _llint_stack_check_at_vm_entry, vm, t3
bpeq t0, 0, .stackCheckFailed
move t4, entry
move t5, vm
jmp .stackHeightOK
.stackCheckFailed:
move t4, entry
move t5, vm
jmp _llint_throw_stack_overflow_error_from_vm_entry
else
bplteq t3, VM::m_softStackLimit[vm], _llint_throw_stack_overflow_error_from_vm_entry
end
.stackHeightOK:
move t3, sp
move (constexpr ProtoCallFrame::numberOfRegisters), t3
.copyHeaderLoop:
subi 1, t3
loadi TagOffset[protoCallFrame, t3, 8], t5
storei t5, TagOffset + CodeBlock[sp, t3, 8]
loadi PayloadOffset[protoCallFrame, t3, 8], t5
storei t5, PayloadOffset + CodeBlock[sp, t3, 8]
btinz t3, .copyHeaderLoop
loadi PayloadOffset + ProtoCallFrame::argCountAndCodeOriginValue[protoCallFrame], t4
subi 1, t4
loadi ProtoCallFrame::paddedArgCount[protoCallFrame], t5
subi 1, t5
bieq t4, t5, .copyArgs
.fillExtraArgsLoop:
subi 1, t5
storei UndefinedTag, ThisArgumentOffset + 8 + TagOffset[sp, t5, 8]
storei 0, ThisArgumentOffset + 8 + PayloadOffset[sp, t5, 8]
bineq t4, t5, .fillExtraArgsLoop
.copyArgs:
loadp ProtoCallFrame::args[protoCallFrame], t3
.copyArgsLoop:
btiz t4, .copyArgsDone
subi 1, t4
loadi TagOffset[t3, t4, 8], t5
storei t5, ThisArgumentOffset + 8 + TagOffset[sp, t4, 8]
loadi PayloadOffset[t3, t4, 8], t5
storei t5, ThisArgumentOffset + 8 + PayloadOffset[sp, t4, 8]
jmp .copyArgsLoop
.copyArgsDone:
storep sp, VM::topCallFrame[vm]
storep cfr, VM::topEntryFrame[vm]
makeCall(entry, protoCallFrame, t3, t4)
if ARMv7
vmEntryRecord(cfr, t3)
move t3, sp
else
vmEntryRecord(cfr, sp)
end
loadp VMEntryRecord::m_vm[sp], t5
loadp VMEntryRecord::m_prevTopCallFrame[sp], t4
storep t4, VM::topCallFrame[t5]
loadp VMEntryRecord::m_prevTopEntryFrame[sp], t4
storep t4, VM::topEntryFrame[t5]
if ARMv7
subp cfr, CalleeRegisterSaveSize, t5
move t5, sp
else
subp cfr, CalleeRegisterSaveSize, sp
end
popCalleeSaves()
functionEpilogue()
ret
end
_llint_throw_stack_overflow_error_from_vm_entry:
const entry = a0
const vm = a1
const protoCallFrame = a2
subp 8, sp # Align stack for cCall2() to make a call.
move vm, a0
move protoCallFrame, a1
cCall2(_llint_throw_stack_overflow_error)
if ARMv7
vmEntryRecord(cfr, t3)
move t3, sp
else
vmEntryRecord(cfr, sp)
end
loadp VMEntryRecord::m_vm[sp], t5
loadp VMEntryRecord::m_prevTopCallFrame[sp], t4
storep t4, VM::topCallFrame[t5]
loadp VMEntryRecord::m_prevTopEntryFrame[sp], t4
storep t4, VM::topEntryFrame[t5]
# Tag is stored in r1 and payload is stored in r0 in little-endian architectures.
move UndefinedTag, r1
move 0, r0
if ARMv7
subp cfr, CalleeRegisterSaveSize, t5
move t5, sp
else
subp cfr, CalleeRegisterSaveSize, sp
end
popCalleeSaves()
functionEpilogue()
ret
# a0, a2, t3, t4
macro makeJavaScriptCall(entry, protoCallFrame, temp1, temp2)
addp CallerFrameAndPCSize, sp
checkStackPointerAlignment(temp1, 0xbad0dc02)
if C_LOOP
cloopCallJSFunction entry
else
call entry
end
checkStackPointerAlignment(temp1, 0xbad0dc03)
subp CallerFrameAndPCSize, sp
end
# a0, a2, t3, t4
macro makeHostFunctionCall(entry, protoCallFrame, temp1, temp2)
move entry, temp1
storep cfr, [sp]
if C_LOOP
loadp ProtoCallFrame::globalObject[protoCallFrame], a0
move sp, a1
storep lr, PtrSize[sp]
cloopCallNative temp1
else
loadp ProtoCallFrame::globalObject[protoCallFrame], a0
move sp, a1
call temp1
end
end
llintOpWithMetadata(op_super_construct_varargs, OpSuperConstructVarargs, macro (size, get, dispatch, metadata, return)
doCallVarargs(op_super_construct_varargs, size, get, OpSuperConstructVarargs, m_valueProfile, m_dst, dispatch, metadata, _llint_slow_path_size_frame_for_varargs, _llint_slow_path_super_construct_varargs, prepareForRegularCall, invokeForRegularCall, prepareForSlowRegularCall, dispatchAfterRegularCall)
end)
op(llint_handle_uncaught_exception, macro()
getVMFromCallFrame(t3, t0)
restoreCalleeSavesFromVMEntryFrameCalleeSavesBuffer(t3, t0)
storep 0, VM::callFrameForCatch[t3]
loadp VM::topEntryFrame[t3], cfr
if ARMv7
vmEntryRecord(cfr, t3)
move t3, sp
else
vmEntryRecord(cfr, sp)
end
loadp VMEntryRecord::m_vm[sp], t3
loadp VMEntryRecord::m_prevTopCallFrame[sp], t5
storep t5, VM::topCallFrame[t3]
loadp VMEntryRecord::m_prevTopEntryFrame[sp], t5
storep t5, VM::topEntryFrame[t3]
# Tag is stored in r1 and payload is stored in r0 in little-endian architectures.
move UndefinedTag, r1
move 0, r0
if ARMv7
subp cfr, CalleeRegisterSaveSize, t3
move t3, sp
else
subp cfr, CalleeRegisterSaveSize, sp
end
popCalleeSaves()
functionEpilogue()
ret
end)
op(llint_get_host_call_return_value, macro ()
functionPrologue()
pushCalleeSaves()
loadp Callee + PayloadOffset[cfr], t0
convertJSCalleeToVM(t0)
loadi VM::encodedHostCallReturnValue + TagOffset[t0], t1
loadi VM::encodedHostCallReturnValue + PayloadOffset[t0], t0
popCalleeSaves()
functionEpilogue()
ret
end)
macro doReturnFromHostFunction(extraStackSpace)
functionEpilogue(extraStackSpace)
ret
end
# Debugging operation if you'd like to print an operand in the instruction stream. fromWhere
# should be an immediate integer - any integer you like; use it to identify the place you're
# debugging from. operand should likewise be an immediate, and should identify the operand
# in the instruction stream you'd like to print out.
macro traceOperand(fromWhere, operand)
prepareStateForCCall()
move fromWhere, a2
move operand, a3
move cfr, a0
move PC, a1
cCall4(_llint_trace_operand)
restoreStateAfterCCall()
move r1, cfr
end
# Debugging operation if you'd like to print the value of an operand in the instruction
# stream. Same as traceOperand(), but assumes that the operand is a register, and prints its
# value.
macro traceValue(fromWhere, operand)
prepareStateForCCall()
move fromWhere, a2
move operand, a3
move cfr, a0
move PC, a1
cCall4(_llint_trace_value)
restoreStateAfterCCall()
move r1, cfr
end
# Call a slowPath for call opcodes.
macro callCallSlowPath(slowPath, action)
storep PC, ArgumentCountIncludingThis + TagOffset[cfr]
prepareStateForCCall()
move cfr, a0
move PC, a1
cCall2(slowPath)
action(r0, r1)
end
macro callTrapHandler(throwHandler)
storei PC, ArgumentCountIncludingThis + TagOffset[cfr]
prepareStateForCCall()
move cfr, a0
move PC, a1
cCall2(_llint_slow_path_handle_traps)
btpnz r0, throwHandler
loadi ArgumentCountIncludingThis + TagOffset[cfr], PC
end
macro checkSwitchToJITForLoop()
checkSwitchToJIT(
1,
macro ()
storei PC, ArgumentCountIncludingThis + TagOffset[cfr]
prepareStateForCCall()
move cfr, a0
move PC, a1
cCall2(_llint_loop_osr)
btpz r0, .recover
move r1, sp
loadBaselineJITConstantPool()
jmp r0
.recover:
loadi ArgumentCountIncludingThis + TagOffset[cfr], PC
end)
end
# loadVariable loads the value of field fieldName using macro get
# into register tagReg and payloadReg
# Clobbers: indexReg
macro loadVariable(get, fieldName, indexReg, tagReg, payloadReg)
get(fieldName, indexReg)
loadi TagOffset[cfr, indexReg, 8], tagReg
loadi PayloadOffset[cfr, indexReg, 8], payloadReg
end
# Index, tag, and payload must be different registers. Index is not
# changed.
macro loadConstant(size, index, tag, payload)
size(FirstConstantRegisterIndexNarrow, FirstConstantRegisterIndexWide16, FirstConstantRegisterIndexWide32, macro (FirstConstantRegisterIndex)
loadp CodeBlock[cfr], payload
loadp CodeBlock::m_constantRegisters + VectorBufferOffset[payload], payload
subp FirstConstantRegisterIndex, index
loadp TagOffset[payload, index, 8], tag
loadp PayloadOffset[payload, index, 8], payload
end)
end
# Index, tag, and payload must be different registers. Index is not
# changed.
macro loadConstantOrVariable(size, index, tag, payload)
size(FirstConstantRegisterIndexNarrow, FirstConstantRegisterIndexWide16, FirstConstantRegisterIndexWide32, macro (FirstConstantRegisterIndex)
bigteq index, FirstConstantRegisterIndex, .constant
loadi TagOffset[cfr, index, 8], tag
loadi PayloadOffset[cfr, index, 8], payload
jmp .done
.constant:
loadConstant(size, index, tag, payload)
.done:
end)
end
macro loadConstantOrVariableTag(size, index, tag)
size(FirstConstantRegisterIndexNarrow, FirstConstantRegisterIndexWide16, FirstConstantRegisterIndexWide32, macro (FirstConstantRegisterIndex)
bigteq index, FirstConstantRegisterIndex, .constant
loadi TagOffset[cfr, index, 8], tag
jmp .done
.constant:
loadp CodeBlock[cfr], tag
loadp CodeBlock::m_constantRegisters + VectorBufferOffset[tag], tag
subi FirstConstantRegisterIndex, index
loadp TagOffset[tag, index, 8], tag
.done:
end)
end
# Index and payload may be the same register. Index may be clobbered.
macro loadConstantOrVariable2Reg(size, index, tag, payload)
size(FirstConstantRegisterIndexNarrow, FirstConstantRegisterIndexWide16, FirstConstantRegisterIndexWide32, macro (FirstConstantRegisterIndex)
bigteq index, FirstConstantRegisterIndex, .constant
loadi TagOffset[cfr, index, 8], tag
loadi PayloadOffset[cfr, index, 8], payload
jmp .done
.constant:
loadp CodeBlock[cfr], tag
loadp CodeBlock::m_constantRegisters + VectorBufferOffset[tag], tag
subi FirstConstantRegisterIndex, index
lshifti 3, index
addp index, tag
loadp PayloadOffset[tag], payload
loadp TagOffset[tag], tag
.done:
end)
end
macro loadConstantOrVariablePayloadTagCustom(size, index, tagCheck, payload)
size(FirstConstantRegisterIndexNarrow, FirstConstantRegisterIndexWide16, FirstConstantRegisterIndexWide32, macro (FirstConstantRegisterIndex)
bigteq index, FirstConstantRegisterIndex, .constant
tagCheck(TagOffset[cfr, index, 8])
loadi PayloadOffset[cfr, index, 8], payload
jmp .done
.constant:
loadp CodeBlock[cfr], payload
loadp CodeBlock::m_constantRegisters + VectorBufferOffset[payload], payload
subp FirstConstantRegisterIndex, index
tagCheck(TagOffset[payload, index, 8])
loadp PayloadOffset[payload, index, 8], payload
.done:
end)
end
# Index and payload must be different registers. Index is not mutated. Use
# this if you know what the tag of the variable should be. Doing the tag
# test as part of loading the variable reduces register use, but may not
# be faster than doing loadConstantOrVariable followed by a branch on the
# tag.
macro loadConstantOrVariablePayload(size, index, expectedTag, payload, slow)
loadConstantOrVariablePayloadTagCustom(
size,
index,
macro (actualTag) bineq actualTag, expectedTag, slow end,
payload)
end
macro loadConstantOrVariablePayloadUnchecked(size, index, payload)
loadConstantOrVariablePayloadTagCustom(
size,
index,
macro (actualTag) end,
payload)
end
macro writeBarrierOnCellWithReload(cell, reloadAfterSlowPath)
skipIfIsRememberedOrInEden(
cell,
macro()
push PB, PC
# We make two extra slots because cCall2 will poke.
subp 8, sp
move cell, a1 # cell can be a0
move cfr, a0
cCall2Void(_llint_write_barrier_slow)
addp 8, sp
pop PC, PB
reloadAfterSlowPath()
end)
end
macro writeBarrierOnOperandWithReload(size, get, cellFieldName, reloadAfterSlowPath)
get(cellFieldName, t1)
loadConstantOrVariablePayload(size, t1, CellTag, t2, .writeBarrierDone)
writeBarrierOnCellWithReload(t2, reloadAfterSlowPath)
.writeBarrierDone:
end
macro writeBarrierOnOperand(size, get, cellFieldName)
get(cellFieldName, t1)
loadConstantOrVariablePayload(size, t1, CellTag, t2, .writeBarrierDone)
writeBarrierOnCellWithReload(t2, macro() end)
.writeBarrierDone:
end
macro writeBarrierOnOperands(size, get, cellFieldName, valueFieldName)
get(valueFieldName, t1)
loadConstantOrVariableTag(size, t1, t0)
bineq t0, CellTag, .writeBarrierDone
writeBarrierOnOperand(size, get, cellFieldName)
.writeBarrierDone:
end
macro writeBarrierOnGlobal(size, get, valueFieldName, loadMacro)
get(valueFieldName, t1)
loadConstantOrVariableTag(size, t1, t0)
bineq t0, CellTag, .writeBarrierDone
loadMacro(t3)
writeBarrierOnCellWithReload(t3, macro() end)
.writeBarrierDone:
end
macro writeBarrierOnGlobalObject(size, get, valueFieldName)
writeBarrierOnGlobal(size, get, valueFieldName,
macro(registerToStoreGlobal)
loadp CodeBlock[cfr], registerToStoreGlobal
loadp CodeBlock::m_globalObject[registerToStoreGlobal], registerToStoreGlobal
end)
end
macro writeBarrierOnGlobalLexicalEnvironment(size, get, valueFieldName)
writeBarrierOnGlobal(size, get, valueFieldName,
macro(registerToStoreGlobal)
loadp CodeBlock[cfr], registerToStoreGlobal
loadp CodeBlock::m_globalObject[registerToStoreGlobal], registerToStoreGlobal
loadp JSGlobalObject::m_globalLexicalEnvironment[registerToStoreGlobal], registerToStoreGlobal
end)
end
macro valueProfile(size, opcodeStruct, profileName, tag, payload, scratch)
getu(size, opcodeStruct, profileName, scratch)
muli constexpr (-sizeof(ValueProfile)), scratch
storeJSValueConcurrent(
macro(val, offset)
storei val, constexpr (-sizeof(UnlinkedMetadataTable::LinkingData)) + ValueProfile::m_buckets + offset[metadataTable, scratch, 1]
end,
tag,
payload
)
end
# Entrypoints into the interpreter
# Expects that CodeBlock is in t1, which is what prologue() leaves behind.
macro functionArityCheck(opcodeName, doneLabel)
loadi PayloadOffset + ArgumentCountIncludingThis[cfr], t0
loadi CodeBlock::m_numParameters[t1], t2
biaeq t0, t2, doneLabel
# t0 argumentCountIncludingThis
# t1 CodeBlock
# t2 numParameters
addi CallFrameHeaderSlots, t2, t3
btiz t3, 0x1, .arityCheck
addi 1, t2
.arityCheck:
subi t2, t0, t2
addi 1, t2, t3
andi ~1, t3
lshiftp 3, t3
subp cfr, t3, t5
loadp CodeBlock::m_vm[t1], t0
if C_LOOP
bplteq VM::m_cloopStackLimit[t0], t5, .stackHeightOK
else
bplteq VM::m_softStackLimit[t0], t5, .stackHeightOK
end
prepareStateForCCall()
move cfr, a0
move PC, a1
cCall2(_llint_slow_path_arityCheck) # This slowPath has a simple protocol: t0 = 0 => no error, t0 != 0 => error
btiz r0, .noError
# We're throwing before the frame is fully set up. This frame will be
# ignored by the unwinder. So, let's restore the callee saves before we
# start unwinding. We need to do this before we change the cfr.
restoreCalleeSavesUsedByLLInt()
move r1, cfr # r1 contains caller frame
jmp _llint_throw_from_slow_path_trampoline
.stackHeightOK:
move t2, r1
.noError:
move r1, t1 # r1 contains slotsToAdd.
btiz t1, .continue
loadi PayloadOffset + ArgumentCountIncludingThis[cfr], t2
addi CallFrameHeaderSlots, t2
// Check if there are some unaligned slots we can use
move t1, t3
andi StackAlignmentSlots - 1, t3
btiz t3, .noExtraSlot
.fillExtraSlots:
move 0, t0
storei t0, PayloadOffset[cfr, t2, 8]
move UndefinedTag, t0
storei t0, TagOffset[cfr, t2, 8]
addi 1, t2
bsubinz 1, t3, .fillExtraSlots
andi ~(StackAlignmentSlots - 1), t1
btiz t1, .continue
.noExtraSlot:
// Move frame up t1 slots
negi t1
move cfr, t3
subp CalleeSaveSpaceAsVirtualRegisters * SlotSize, t3
addi CalleeSaveSpaceAsVirtualRegisters, t2
move t1, t0
lshiftp 3, t0
addp t0, cfr
addp t0, sp
.copyLoop:
loadi PayloadOffset[t3], t0
storei t0, PayloadOffset[t3, t1, 8]
loadi TagOffset[t3], t0
storei t0, TagOffset[t3, t1, 8]
addp 8, t3
bsubinz 1, t2, .copyLoop
// Fill new slots with JSUndefined
move t1, t2
.fillLoop:
move 0, t0
storei t0, PayloadOffset[t3, t1, 8]
move UndefinedTag, t0
storei t0, TagOffset[t3, t1, 8]
addp 8, t3
baddinz 1, t2, .fillLoop
.continue:
# Reload CodeBlock and PC, since the slow_path clobbered it.
loadp CodeBlock[cfr], t1
loadp CodeBlock::m_instructionsRawPointer[t1], PB
move 0, PC
jmp doneLabel
# It is required in ARMv7 because global label definitions
# for those architectures generates a set of instructions
# that can clobber LLInt execution, resulting in unexpected
# crashes.
_js_trampoline_%opcodeName%_untag:
_js_trampoline_%opcodeName%_tag:
crash()
end
# Instruction implementations
_llint_op_enter:
traceExecution()
checkStackPointerAlignment(t2, 0xdead00e1)
loadp CodeBlock[cfr], t2 // t2<CodeBlock> = cfr.CodeBlock
loadi CodeBlock::m_numVars[t2], t2 // t2<size_t> = t2<CodeBlock>.m_numVars
subi CalleeSaveSpaceAsVirtualRegisters, t2
move cfr, t3
subp CalleeSaveSpaceAsVirtualRegisters * SlotSize, t3
btiz t2, .opEnterDone
move UndefinedTag, t0
move 0, t1
negi t2
.opEnterLoop:
storei t0, TagOffset[t3, t2, 8]
storei t1, PayloadOffset[t3, t2, 8]
addi 1, t2
btinz t2, .opEnterLoop
.opEnterDone:
callSlowPath(_slow_path_enter)
dispatchOp(narrow, op_enter)
llintOpWithProfile(op_get_argument, OpGetArgument, macro (size, get, dispatch, return)
get(m_index, t2)
loadi PayloadOffset + ArgumentCountIncludingThis[cfr], t0
bilteq t0, t2, .opGetArgumentOutOfBounds
loadi ThisArgumentOffset + TagOffset[cfr, t2, 8], t0
loadi ThisArgumentOffset + PayloadOffset[cfr, t2, 8], t3
return (t0, t3)
.opGetArgumentOutOfBounds:
return (UndefinedTag, 0)
end)
llintOpWithReturn(op_argument_count, OpArgumentCount, macro (size, get, dispatch, return)
loadi PayloadOffset + ArgumentCountIncludingThis[cfr], t0
subi 1, t0
return(Int32Tag, t0)
end)
llintOpWithReturn(op_get_scope, OpGetScope, macro (size, get, dispatch, return)
loadi Callee + PayloadOffset[cfr], t0
loadp JSCallee::m_scope[t0], t0
return (CellTag, t0)
end)
llintOpWithMetadata(op_to_this, OpToThis, macro (size, get, dispatch, metadata, return)
get(m_srcDst, t0)
bineq TagOffset[cfr, t0, 8], CellTag, .opToThisSlow
loadi PayloadOffset[cfr, t0, 8], t0
bbneq JSCell::m_type[t0], FinalObjectType, .opToThisSlow
metadata(t2, t3)
loadi OpToThis::Metadata::m_cachedStructureID[t2], t2
bineq JSCell::m_structureID[t0], t2, .opToThisSlow
dispatch()
.opToThisSlow:
callSlowPath(_slow_path_to_this)
dispatch()
end)
llintOp(op_check_tdz, OpCheckTdz, macro (size, get, dispatch)
get(m_targetVirtualRegister, t0)
loadConstantOrVariableTag(size, t0, t1)
bineq t1, EmptyValueTag, .opNotTDZ
callSlowPath(_slow_path_check_tdz)
.opNotTDZ:
dispatch()
end)
llintOpWithReturn(op_mov, OpMov, macro (size, get, dispatch, return)
get(m_src, t1)
loadConstantOrVariable(size, t1, t2, t3)
return(t2, t3)
end)
llintOpWithReturn(op_not, OpNot, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t2, t3)
bineq t2, BooleanTag, .opNotSlow
xori 1, t3
return(t2, t3)
.opNotSlow:
callSlowPath(_slow_path_not)
dispatch()
end)
macro equalityComparisonOp(opcodeName, opcodeStruct, integerComparison)
llintOpWithReturn(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, return)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t2, t3, .opEqSlow
bieq t2, CellTag, .opEqSlow
bib t2, LowestTag, .opEqSlow
integerComparison(t0, t1, t0)
return(BooleanTag, t0)
.opEqSlow:
callSlowPath(_slow_path_%opcodeName%)
dispatch()
end)
end
macro equalityJumpOp(opcodeName, opcodeStruct, integerComparison)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t2, t3, .slow
bieq t2, CellTag, .slow
bib t2, LowestTag, .slow
integerComparison(t0, t1, .jumpTarget)
dispatch()
.jumpTarget:
jump(m_targetLabel)
.slow:
callSlowPath(_llint_slow_path_%opcodeName%)
nextInstruction()
end)
end
macro equalNullComparisonOp(opcodeName, opcodeStruct, fn)
llintOpWithReturn(opcodeName, opcodeStruct, macro (size, get, dispatch, return)
get(m_operand, t0)
assertNotConstant(size, t0)
loadi TagOffset[cfr, t0, 8], t1
loadi PayloadOffset[cfr, t0, 8], t0
bineq t1, CellTag, .opEqNullImmediate
btbnz JSCell::m_flags[t0], MasqueradesAsUndefined, .opEqNullMasqueradesAsUndefined
move 0, t1
jmp .opEqNullNotImmediate
.opEqNullMasqueradesAsUndefined:
loadi JSCell::m_structureID[t0], t1
loadp CodeBlock[cfr], t0
loadp CodeBlock::m_globalObject[t0], t0
cpeq Structure::m_globalObject[t1], t0, t1
jmp .opEqNullNotImmediate
.opEqNullImmediate:
cieq t1, NullTag, t2
cieq t1, UndefinedTag, t1
ori t2, t1
.opEqNullNotImmediate:
fn(t1)
return(BooleanTag, t1)
end)
end
equalNullComparisonOp(op_eq_null, OpEqNull, macro (value) end)
equalNullComparisonOp(op_neq_null, OpNeqNull,
macro (value) xori 1, value end)
llintOpWithReturn(op_is_undefined_or_null, OpIsUndefinedOrNull, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariableTag(size, t0, t1)
ori 1, t1
cieq t1, NullTag, t1
return(BooleanTag, t1)
end)
macro strictEqOp(opcodeName, opcodeStruct, equalityOperation)
llintOpWithReturn(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, return)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t2, t3, .slow
bib t2, LowestTag, .slow
bineq t2, CellTag, .notStringOrSymbol
bbaeq JSCell::m_type[t0], ObjectType, .notStringOrSymbol
bbb JSCell::m_type[t1], ObjectType, .slow
.notStringOrSymbol:
equalityOperation(t0, t1, t0)
return(BooleanTag, t0)
.slow:
callSlowPath(_slow_path_%opcodeName%)
dispatch()
end)
end
macro strictEqualityJumpOp(opcodeName, opcodeStruct, equalityOperation)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t2, t3, .slow
bib t2, LowestTag, .slow
bineq t2, CellTag, .notStringOrSymbol
bbaeq JSCell::m_type[t0], ObjectType, .notStringOrSymbol
bbb JSCell::m_type[t1], ObjectType, .slow
.notStringOrSymbol:
equalityOperation(t0, t1, .jumpTarget)
dispatch()
.jumpTarget:
jump(m_targetLabel)
.slow:
callSlowPath(_llint_slow_path_%opcodeName%)
nextInstruction()
end)
end
strictEqOp(stricteq, OpStricteq,
macro (left, right, result) cieq left, right, result end)
strictEqOp(nstricteq, OpNstricteq,
macro (left, right, result) cineq left, right, result end)
strictEqualityJumpOp(jstricteq, OpJstricteq,
macro (left, right, target) bieq left, right, target end)
strictEqualityJumpOp(jnstricteq, OpJnstricteq,
macro (left, right, target) bineq left, right, target end)
macro preOp(opcodeName, opcodeStruct, integerOperation)
llintOpWithMetadata(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, metadata, return)
get(m_srcDst, t0)
bineq TagOffset[cfr, t0, 8], Int32Tag, .slow
loadi PayloadOffset[cfr, t0, 8], t2
# srcDst in t2
integerOperation(t2, .slow)
storei t2, PayloadOffset[cfr, t0, 8]
updateUnaryArithProfile(size, opcodeStruct, ArithProfileInt, t5, t2)
dispatch()
.slow:
callSlowPath(_slow_path_%opcodeName%)
dispatch()
end)
end
llintOpWithReturn(op_to_number, OpToNumber, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t2, t3)
bieq t2, Int32Tag, .opToNumberIsInt
biaeq t2, LowestTag, .opToNumberSlow
updateUnaryArithProfile(size, OpToNumber, ArithProfileNumber, t5, t1)
.opToNumberIsInt:
return(t2, t3)
.opToNumberSlow:
callSlowPath(_slow_path_to_number)
dispatch()
end)
llintOpWithReturn(op_to_numeric, OpToNumeric, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t2, t3)
bieq t2, Int32Tag, .opToNumericIsInt
biaeq t2, LowestTag, .opToNumericSlow
updateUnaryArithProfile(size, OpToNumber, ArithProfileNumber, t5, t1)
.opToNumericIsInt:
return(t2, t3)
.opToNumericSlow:
callSlowPath(_slow_path_to_numeric)
dispatch()
end)
llintOpWithReturn(op_to_string, OpToString, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t2, t3)
bineq t2, CellTag, .opToStringSlow
bbneq JSCell::m_type[t3], StringType, .opToStringSlow
.opToStringIsString:
return(t2, t3)
.opToStringSlow:
callSlowPath(_slow_path_to_string)
dispatch()
end)
llintOpWithProfile(op_to_object, OpToObject, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t2, t3)
bineq t2, CellTag, .opToObjectSlow
bbb JSCell::m_type[t3], ObjectType, .opToObjectSlow
return(t2, t3)
.opToObjectSlow:
callSlowPath(_slow_path_to_object)
dispatch()
end)
llintOpWithMetadata(op_negate, OpNegate, macro (size, get, dispatch, metadata, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t1, t2)
bineq t1, Int32Tag, .opNegateSrcNotInt
btiz t2, 0x7fffffff, .opNegateSlow
negi t2
updateUnaryArithProfile(size, OpNegate, ArithProfileInt, t0, t3)
return (Int32Tag, t2)
.opNegateSrcNotInt:
bia t1, LowestTag, .opNegateSlow
xori 0x80000000, t1
updateUnaryArithProfile(size, OpNegate, ArithProfileNumber, t0, t3)
return(t1, t2)
.opNegateSlow:
callSlowPath(_slow_path_negate)
dispatch()
end)
macro binaryOpCustomStore(opcodeName, opcodeStruct, integerOperationAndStore, doubleOperation)
llintOpWithMetadata(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, metadata, return)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t2, Int32Tag, .op1NotInt
bineq t3, Int32Tag, .op2NotInt
updateBinaryArithProfile(size, opcodeStruct, ArithProfileIntInt, t5, t2)
get(m_dst, t2)
integerOperationAndStore(t3, t0, t1, .slow, t2)
dispatch()
.op1NotInt:
# First operand is definitely not an int, the second operand could be anything.
bia t2, LowestTag, .slow
bib t3, LowestTag, .op1NotIntOp2Double
bineq t3, Int32Tag, .slow
ci2ds t1, ft1
updateBinaryArithProfile(size, opcodeStruct, ArithProfileNumberInt, t5, t1)
jmp .op1NotIntReady
.op1NotIntOp2Double:
fii2d t1, t3, ft1
updateBinaryArithProfile(size, opcodeStruct, ArithProfileNumberNumber, t5, t1)
.op1NotIntReady:
get(m_dst, t1)
fii2d t0, t2, ft0
doubleOperation(ft0, ft1)
stored ft0, [cfr, t1, 8]
dispatch()
.op2NotInt:
# First operand is definitely an int, the second operand is definitely not.
bia t3, LowestTag, .slow
updateBinaryArithProfile(size, opcodeStruct, ArithProfileIntNumber, t5, t2)
get(m_dst, t2)
ci2ds t0, ft0
fii2d t1, t3, ft1
doubleOperation(ft0, ft1)
stored ft0, [cfr, t2, 8]
dispatch()
.slow:
callSlowPath(_slow_path_%opcodeName%)
dispatch()
end)
end
macro binaryOp(opcodeName, opcodeStruct, integerOperation, doubleOperation)
binaryOpCustomStore(opcodeName, opcodeStruct,
macro (int32Tag, lhs, rhs, slow, index)
integerOperation(lhs, rhs, slow)
storei int32Tag, TagOffset[cfr, index, 8]
storei lhs, PayloadOffset[cfr, index, 8]
end,
doubleOperation)
end
binaryOp(add, OpAdd,
macro (lhs, rhs, slow) baddio rhs, lhs, slow end,
macro (lhs, rhs) addd rhs, lhs end)
binaryOpCustomStore(mul, OpMul,
macro (int32Tag, lhs, rhs, slow, index)
const scratch = int32Tag # We know that we can reuse the int32Tag register since it has a constant.
move lhs, scratch
bmulio rhs, scratch, slow
btinz scratch, .done
bilt rhs, 0, slow
bilt lhs, 0, slow
.done:
storei Int32Tag, TagOffset[cfr, index, 8]
storei scratch, PayloadOffset[cfr, index, 8]
end,
macro (lhs, rhs) muld rhs, lhs end)
binaryOp(sub, OpSub,
macro (lhs, rhs, slow) bsubio rhs, lhs, slow end,
macro (lhs, rhs) subd rhs, lhs end)
binaryOpCustomStore(div, OpDiv,
macro (int32Tag, lhs, rhs, slow, index)
ci2ds rhs, ft0
ci2ds lhs, ft1
divd ft0, ft1
bcd2i ft1, lhs, .notInt
storei int32Tag, TagOffset[cfr, index, 8]
storei lhs, PayloadOffset[cfr, index, 8]
jmp .done
.notInt:
stored ft1, [cfr, index, 8]
.done:
end,
macro (lhs, rhs) divd rhs, lhs end)
llintOpWithReturn(op_pow, OpPow, macro (size, get, dispatch, return)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t3, Int32Tag, .slow
bilt t1, 0, .slow
bigt t1, (constexpr maxExponentForIntegerMathPow), .slow
bineq t2, Int32Tag, .lhsNotInt
ci2ds t0, ft0
jmp .lhsReady
.lhsNotInt:
bia t2, LowestTag, .slow
fii2d t0, t2, ft0
.lhsReady:
get(m_dst, t2)
move 1, t0
ci2ds t0, ft1
.loop:
btiz t1, 0x1, .exponentIsEven
muld ft0, ft1
.exponentIsEven:
muld ft0, ft0
rshifti 1, t1
btinz t1, .loop
stored ft1, [cfr, t2, 8]
dispatch()
.slow:
callSlowPath(_slow_path_pow)
dispatch()
end)
llintOpWithReturn(op_unsigned, OpUnsigned, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariablePayload(size, t1, Int32Tag, t2, .opUnsignedSlow)
bilt t2, 0, .opUnsignedSlow
return (Int32Tag, t2)
.opUnsignedSlow:
callSlowPath(_slow_path_unsigned)
dispatch()
end)
macro commonBitOp(opKind, opcodeName, opcodeStruct, operation)
opKind(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, return)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
bineq t3, Int32Tag, .slow
bineq t2, Int32Tag, .slow
operation(t0, t1)
return (t3, t0)
.slow:
callSlowPath(_slow_path_%opcodeName%)
dispatch()
end)
end
macro bitOp(opcodeName, opcodeStruct, operation)
commonBitOp(llintOpWithReturn, opcodeName, opcodeStruct, operation)
end
bitOp(lshift, OpLshift,
macro (lhs, rhs) lshifti rhs, lhs end)
bitOp(rshift, OpRshift,
macro (lhs, rhs) rshifti rhs, lhs end)
bitOp(urshift, OpUrshift,
macro (lhs, rhs) urshifti rhs, lhs end)
bitOp(bitxor, OpBitxor,
macro (lhs, rhs) xori rhs, lhs end)
bitOp(bitand, OpBitand,
macro (lhs, rhs) andi rhs, lhs end)
bitOp(bitor, OpBitor,
macro (lhs, rhs) ori rhs, lhs end)
llintOpWithReturn(op_bitnot, OpBitnot, macro (size, get, dispatch, return)
get(m_operand, t0)
loadConstantOrVariable(size, t0, t2, t3)
bineq t2, Int32Tag, .opBitNotSlow
noti t3
return (Int32Tag, t3)
.opBitNotSlow:
callSlowPath(_slow_path_bitnot)
dispatch()
end)
llintOp(op_overrides_has_instance, OpOverridesHasInstance, macro (size, get, dispatch)
get(m_dst, t3)
storei BooleanTag, TagOffset[cfr, t3, 8]
# First check if hasInstanceValue is the one on Function.prototype[Symbol.hasInstance]
get(m_hasInstanceValue, t0)
loadConstantOrVariablePayload(size, t0, CellTag, t2, .opOverrideshasInstanceValueNotCell)
loadConstantOrVariable(size, t0, t1, t2)
bineq t1, CellTag, .opOverrideshasInstanceValueNotCell
# We don't need hasInstanceValue's tag register anymore.
loadp CodeBlock[cfr], t1
loadp CodeBlock::m_globalObject[t1], t1
loadp JSGlobalObject::m_functionProtoHasInstanceSymbolFunction[t1], t1
bineq t1, t2, .opOverrideshasInstanceValueNotDefault
# We know the constructor is a cell.
get(m_constructor, t0)
loadConstantOrVariablePayloadUnchecked(size, t0, t1)
tbz JSCell::m_flags[t1], ImplementsDefaultHasInstance, t0
storei t0, PayloadOffset[cfr, t3, 8]
dispatch()
.opOverrideshasInstanceValueNotCell:
.opOverrideshasInstanceValueNotDefault:
storei 1, PayloadOffset[cfr, t3, 8]
dispatch()
end)
llintOpWithReturn(op_is_empty, OpIsEmpty, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariable(size, t1, t2, t3)
cieq t2, EmptyValueTag, t3
return(BooleanTag, t3)
end)
llintOpWithReturn(op_typeof_is_undefined, OpTypeofIsUndefined, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariable(size, t1, t2, t3)
bieq t2, CellTag, .opIsUndefinedCell
cieq t2, UndefinedTag, t3
return(BooleanTag, t3)
.opIsUndefinedCell:
btbnz JSCell::m_flags[t3], MasqueradesAsUndefined, .opIsUndefinedMasqueradesAsUndefined
return(BooleanTag, 0)
.opIsUndefinedMasqueradesAsUndefined:
loadi JSCell::m_structureID[t3], t1
loadp CodeBlock[cfr], t3
loadp CodeBlock::m_globalObject[t3], t3
cpeq Structure::m_globalObject[t1], t3, t1
return(BooleanTag, t1)
end)
slowPathOp(typeof_is_function)
llintOpWithReturn(op_is_boolean, OpIsBoolean, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariableTag(size, t1, t0)
cieq t0, BooleanTag, t0
return(BooleanTag, t0)
end)
llintOpWithReturn(op_is_number, OpIsNumber, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariableTag(size, t1, t0)
addi 1, t0
cib t0, LowestTag + 1, t1
return(BooleanTag, t1)
end)
# On 32-bit platforms BIGINT32 is not supported, so we generate op_is_cell_with_type instead of op_is_big_int
llintOp(op_is_big_int, OpIsBigInt, macro(unused, unused, unused)
notSupported()
end)
llintOpWithReturn(op_is_cell_with_type, OpIsCellWithType, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariable(size, t1, t0, t3)
bineq t0, CellTag, .notCellCase
getu(size, OpIsCellWithType, m_type, t0)
cbeq JSCell::m_type[t3], t0, t1
return(BooleanTag, t1)
.notCellCase:
return(BooleanTag, 0)
end)
llintOpWithReturn(op_is_object, OpIsObject, macro (size, get, dispatch, return)
get(m_operand, t1)
loadConstantOrVariable(size, t1, t0, t3)
bineq t0, CellTag, .opIsObjectNotCell
cbaeq JSCell::m_type[t3], ObjectType, t1
return(BooleanTag, t1)
.opIsObjectNotCell:
return(BooleanTag, 0)
end)
macro loadPropertyAtVariableOffsetKnownNotInline(propertyOffset, objectAndStorage, tag, payload)
assert(macro (ok) bigteq propertyOffset, firstOutOfLineOffset, ok end)
negi propertyOffset
loadp JSObject::m_butterfly[objectAndStorage], objectAndStorage
loadi TagOffset + (firstOutOfLineOffset - 2) * 8[objectAndStorage, propertyOffset, 8], tag
loadi PayloadOffset + (firstOutOfLineOffset - 2) * 8[objectAndStorage, propertyOffset, 8], payload
end
macro loadPropertyAtVariableOffset(propertyOffset, objectAndStorage, tag, payload)
bilt propertyOffset, firstOutOfLineOffset, .isInline
loadp JSObject::m_butterfly[objectAndStorage], objectAndStorage
negi propertyOffset
jmp .ready
.isInline:
addp sizeof JSObject - (firstOutOfLineOffset - 2) * 8, objectAndStorage
.ready:
loadi TagOffset + (firstOutOfLineOffset - 2) * 8[objectAndStorage, propertyOffset, 8], tag
loadi PayloadOffset + (firstOutOfLineOffset - 2) * 8[objectAndStorage, propertyOffset, 8], payload
end
macro storePropertyAtVariableOffset(propertyOffsetAsInt, objectAndStorage, tag, payload)
bilt propertyOffsetAsInt, firstOutOfLineOffset, .isInline
loadp JSObject::m_butterfly[objectAndStorage], objectAndStorage
negi propertyOffsetAsInt
jmp .ready
.isInline:
addp sizeof JSObject - (firstOutOfLineOffset - 2) * 8, objectAndStorage
.ready:
storeJSValueConcurrent(
macro(val, offset)
storei val, (firstOutOfLineOffset - 2) * 8 + offset[objectAndStorage, propertyOffsetAsInt, 8]
end,
tag,
payload
)
end
# We only do monomorphic get_by_id caching for now, and we do not modify the
# opcode for own properties. We also allow for the cache to change anytime it fails,
# since ping-ponging is free. At best we get lucky and the get_by_id will continue
# to take fast path on the new cache. At worst we take slow path, which is what
# we would have been doing anyway. For prototype/unset properties, we will attempt to
# convert opcode into a get_by_id_proto_load/get_by_id_unset, respectively, after an
# execution counter hits zero.
llintOpWithMetadata(op_try_get_by_id, OpTryGetById, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
get(m_base, t0)
loadi OpTryGetById::Metadata::m_structureID[t5], t1
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opTryGetByIdSlow)
loadi OpTryGetById::Metadata::m_offset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opTryGetByIdSlow
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpTryGetById, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opTryGetByIdSlow:
callSlowPath(_llint_slow_path_try_get_by_id)
dispatch()
end)
llintOpWithMetadata(op_get_by_id_direct, OpGetByIdDirect, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
get(m_base, t0)
loadi OpGetByIdDirect::Metadata::m_structureID[t5], t1
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetByIdDirectSlow)
loadi OpGetByIdDirect::Metadata::m_offset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opGetByIdDirectSlow
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpGetByIdDirect, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opGetByIdDirectSlow:
callSlowPath(_llint_slow_path_get_by_id_direct)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_get_by_id_direct, size)
valueProfile(size, OpGetByIdDirect, m_valueProfile, r1, r0, t2)
return(r1, r0)
end)
# Assumption: The base object is in t3
# metadata needs to be loaded in t2
# FIXME: this is very close to the 64bit version. Consider refactoring.
macro performGetByIDHelper(opcodeStruct, modeMetadataName, valueProfileName, slowLabel, size, return)
loadb %opcodeStruct%::Metadata::%modeMetadataName%.mode[t2], t1
.opGetByIdDefault:
bbneq t1, constexpr GetByIdMode::Default, .opGetByIdProtoLoad
loadi JSCell::m_structureID[t3], t1 # assumes base object in t3
loadi %opcodeStruct%::Metadata::%modeMetadataName%.defaultMode.structureID[t2], t0
bineq t0, t1, slowLabel
loadis %opcodeStruct%::Metadata::%modeMetadataName%.defaultMode.cachedOffset[t2], t1
loadPropertyAtVariableOffset(t1, t3, t0, t1)
valueProfile(size, opcodeStruct, valueProfileName, t0, t1, t2)
return(t0, t1)
.opGetByIdProtoLoad:
bbneq t1, constexpr GetByIdMode::ProtoLoad, .opGetByIdArrayLength
loadi JSCell::m_structureID[t3], t1
loadi %opcodeStruct%::Metadata::%modeMetadataName%.protoLoadMode.structureID[t2], t3
bineq t3, t1, slowLabel
loadis %opcodeStruct%::Metadata::%modeMetadataName%.protoLoadMode.cachedOffset[t2], t1
loadp %opcodeStruct%::Metadata::%modeMetadataName%.protoLoadMode.cachedSlot[t2], t3
loadPropertyAtVariableOffset(t1, t3, t0, t1)
valueProfile(size, opcodeStruct, valueProfileName, t0, t1, t2)
return(t0, t1)
.opGetByIdArrayLength:
bbneq t1, constexpr GetByIdMode::ArrayLength, .opGetByIdUnset
loadb JSCell::m_indexingTypeAndMisc[t3], t0
btiz t0, IsArray, slowLabel
btiz t0, IndexingShapeMask, slowLabel
loadp JSObject::m_butterfly[t3], t0
loadi -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0], t0
bilt t0, 0, slowLabel
valueProfile(size, opcodeStruct, valueProfileName, Int32Tag, t0, t2)
return(Int32Tag, t0)
.opGetByIdUnset:
loadi JSCell::m_structureID[t3], t1
loadi %opcodeStruct%::Metadata::%modeMetadataName%.unsetMode.structureID[t2], t0
bineq t0, t1, slowLabel
valueProfile(size, opcodeStruct, valueProfileName, UndefinedTag, 0, t2)
return(UndefinedTag, 0)
end
llintOpWithMetadata(op_get_by_id, OpGetById, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
loadb OpGetById::Metadata::m_modeMetadata.mode[t5], t1
get(m_base, t0)
.opGetByIdProtoLoad:
bbneq t1, constexpr GetByIdMode::ProtoLoad, .opGetByIdArrayLength
loadi OpGetById::Metadata::m_modeMetadata.protoLoadMode.structureID[t5], t1
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetByIdSlow)
loadis OpGetById::Metadata::m_modeMetadata.protoLoadMode.cachedOffset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opGetByIdSlow
loadp OpGetById::Metadata::m_modeMetadata.protoLoadMode.cachedSlot[t5], t3
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpGetById, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opGetByIdArrayLength:
bbneq t1, constexpr GetByIdMode::ArrayLength, .opGetByIdUnset
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetByIdSlow)
loadb JSCell::m_indexingTypeAndMisc[t3], t2
btiz t2, IsArray, .opGetByIdSlow
btiz t2, IndexingShapeMask, .opGetByIdSlow
loadp JSObject::m_butterfly[t3], t0
loadi -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0], t0
bilt t0, 0, .opGetByIdSlow
valueProfile(size, OpGetById, m_valueProfile, Int32Tag, t0, t5)
return(Int32Tag, t0)
.opGetByIdUnset:
bbneq t1, constexpr GetByIdMode::Unset, .opGetByIdDefault
loadi OpGetById::Metadata::m_modeMetadata.unsetMode.structureID[t5], t1
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetByIdSlow)
bineq JSCell::m_structureID[t3], t1, .opGetByIdSlow
valueProfile(size, OpGetById, m_valueProfile, UndefinedTag, 0, t5)
return(UndefinedTag, 0)
.opGetByIdDefault:
loadi OpGetById::Metadata::m_modeMetadata.defaultMode.structureID[t5], t1
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetByIdSlow)
loadis OpGetById::Metadata::m_modeMetadata.defaultMode.cachedOffset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opGetByIdSlow
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpGetById, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opGetByIdSlow:
callSlowPath(_llint_slow_path_get_by_id)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_get_by_id, size)
valueProfile(size, OpGetById, m_valueProfile, r1, r0, t2)
return(r1, r0)
end)
llintOpWithMetadata(op_get_length, OpGetLength, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
loadb OpGetLength::Metadata::m_modeMetadata.mode[t5], t1
get(m_base, t0)
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetLengthSlow)
arrayProfile(OpGetLength::Metadata::m_arrayProfile, t3, t5, t0)
.opGetLengthProtoLoad:
bbneq t1, constexpr GetByIdMode::ProtoLoad, .opGetLengthArrayLength
loadi OpGetLength::Metadata::m_modeMetadata.protoLoadMode.structureID[t5], t1
loadis OpGetLength::Metadata::m_modeMetadata.protoLoadMode.cachedOffset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opGetLengthSlow
loadp OpGetLength::Metadata::m_modeMetadata.protoLoadMode.cachedSlot[t5], t3
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpGetLength, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opGetLengthArrayLength:
bbneq t1, constexpr GetByIdMode::ArrayLength, .opGetLengthUnset
loadb JSCell::m_indexingTypeAndMisc[t3], t2
btiz t2, IsArray, .opGetLengthSlow
btiz t2, IndexingShapeMask, .opGetLengthSlow
loadp JSObject::m_butterfly[t3], t0
loadi -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0], t0
bilt t0, 0, .opGetLengthSlow
valueProfile(size, OpGetLength, m_valueProfile, Int32Tag, t0, t5)
return(Int32Tag, t0)
.opGetLengthUnset:
bbneq t1, constexpr GetByIdMode::Unset, .opGetLengthDefault
loadi OpGetLength::Metadata::m_modeMetadata.unsetMode.structureID[t5], t1
bineq JSCell::m_structureID[t3], t1, .opGetLengthSlow
valueProfile(size, OpGetLength, m_valueProfile, UndefinedTag, 0, t5)
return(UndefinedTag, 0)
.opGetLengthDefault:
loadi OpGetLength::Metadata::m_modeMetadata.defaultMode.structureID[t5], t1
loadis OpGetLength::Metadata::m_modeMetadata.defaultMode.cachedOffset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opGetLengthSlow
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpGetLength, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opGetLengthSlow:
callSlowPath(_llint_slow_path_get_length)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_get_length, size)
valueProfile(size, OpGetLength, m_valueProfile, r1, r0, t2)
return(r1, r0)
end)
llintOpWithMetadata(op_put_by_id, OpPutById, macro (size, get, dispatch, metadata, return)
writeBarrierOnOperands(size, get, m_base, m_value)
metadata(t5, t3)
get(m_base, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t0, .opPutByIdSlow)
loadi JSCell::m_structureID[t0], t2
bineq t2, OpPutById::Metadata::m_oldStructureID[t5], .opPutByIdSlow
# At this point, we have:
# t5 -> metadata
# t2 -> currentStructureID
# t0 -> object base
# We will lose currentStructureID in the shenanigans below.
loadi OpPutById::Metadata::m_newStructureID[t5], t1
btiz t1, .opPutByIdNotTransition
# This is the transition case. t1 holds the new Structure*. If we have a chain, we need to
# check it. t0 is the base. We may clobber t1 to use it as scratch.
loadp OpPutById::Metadata::m_structureChain[t5], t3
btpz t3, .opPutByIdTransitionDirect
loadi OpPutById::Metadata::m_oldStructureID[t5], t2 # Need old structure again.
loadp StructureChain::m_vector[t3], t3
assert(macro (ok) btpnz t3, ok end)
loadp Structure::m_prototype + PayloadOffset[t2], t2
btpz t2, .opPutByIdTransitionChainDone
.opPutByIdTransitionChainLoop:
loadp [t3], t1
bineq t1, JSCell::m_structureID[t2], .opPutByIdSlow
addp 4, t3
loadp Structure::m_prototype + PayloadOffset[t1], t2
btpnz t2, .opPutByIdTransitionChainLoop
.opPutByIdTransitionChainDone:
loadi OpPutById::Metadata::m_newStructureID[t5], t1
.opPutByIdTransitionDirect:
storei t1, JSCell::m_structureID[t0]
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
loadi OpPutById::Metadata::m_offset[t5], t1
storePropertyAtVariableOffset(t1, t0, t2, t3)
writeBarrierOnOperand(size, get, m_base)
dispatch()
.opPutByIdNotTransition:
# The only thing live right now is t0, which holds the base.
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
loadi OpPutById::Metadata::m_offset[t5], t1
storePropertyAtVariableOffset(t1, t0, t2, t3)
dispatch()
.opPutByIdSlow:
callSlowPath(_llint_slow_path_put_by_id)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_put_by_id, size)
dispatch()
end)
llintOpWithMetadata(op_get_by_val, OpGetByVal, macro (size, get, dispatch, metadata, return)
macro finishIntGetByVal(resultPayload, scratch)
get(m_dst, scratch)
storei Int32Tag, TagOffset[cfr, scratch, 8]
storei resultPayload, PayloadOffset[cfr, scratch, 8]
valueProfile(size, OpGetByVal, m_valueProfile, Int32Tag, resultPayload, t5)
dispatch()
end
macro finishDoubleGetByVal(result, scratch1, scratch2, scratch3)
get(m_dst, scratch1)
fd2ii result, scratch2, scratch3
storei scratch3, TagOffset[cfr, scratch1, 8]
storei scratch2, PayloadOffset[cfr, scratch1, 8]
valueProfile(size, OpGetByVal, m_valueProfile, scratch3, scratch2, t5)
dispatch()
end
macro setLargeTypedArray()
crash()
end
metadata(t5, t2)
get(m_base, t2)
loadConstantOrVariablePayload(size, t2, CellTag, t0, .opGetByValSlow)
move t0, t2
arrayProfile(OpGetByVal::Metadata::m_arrayProfile, t2, t5, t1)
loadb JSCell::m_indexingTypeAndMisc[t2], t2
get(m_property, t3)
loadConstantOrVariablePayload(size, t3, Int32Tag, t1, .opGetByValSlow)
loadp JSObject::m_butterfly[t0], t3
andi IndexingShapeMask, t2
bieq t2, Int32Shape, .opGetByValIsContiguous
bineq t2, ContiguousShape, .opGetByValNotContiguous
.opGetByValIsContiguous:
biaeq t1, -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t3], .opGetByValSlow
loadi TagOffset[t3, t1, 8], t2
loadi PayloadOffset[t3, t1, 8], t1
jmp .opGetByValDone
.opGetByValNotContiguous:
bineq t2, DoubleShape, .opGetByValNotDouble
biaeq t1, -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t3], .opGetByValSlow
loadd [t3, t1, 8], ft0
bdnequn ft0, ft0, .opGetByValSlow
# FIXME: This could be massively optimized.
fd2ii ft0, t1, t2
get(m_dst, t0)
jmp .opGetByValNotEmpty
.opGetByValNotDouble:
subi ArrayStorageShape, t2
bia t2, SlowPutArrayStorageShape - ArrayStorageShape, .opGetByValNotIndexedStorage
biaeq t1, -sizeof IndexingHeader + IndexingHeader::u.lengths.vectorLength[t3], .opGetByValSlow
loadi ArrayStorage::m_vector + TagOffset[t3, t1, 8], t2
loadi ArrayStorage::m_vector + PayloadOffset[t3, t1, 8], t1
.opGetByValDone:
get(m_dst, t0)
bieq t2, EmptyValueTag, .opGetByValSlow
.opGetByValNotEmpty:
storei t2, TagOffset[cfr, t0, 8]
storei t1, PayloadOffset[cfr, t0, 8]
valueProfile(size, OpGetByVal, m_valueProfile, t2, t1, t5)
dispatch()
.opGetByValNotIndexedStorage:
getByValTypedArray(t0, t1, finishIntGetByVal, finishDoubleGetByVal, setLargeTypedArray, .opGetByValSlow)
.opGetByValSlow:
callSlowPath(_llint_slow_path_get_by_val)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_get_by_val, size)
valueProfile(size, OpGetByVal, m_valueProfile, r1, r0, t2)
return(r1, r0)
end)
llintOpWithMetadata(op_get_private_name, OpGetPrivateName, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
# Slow path if the private field is stale
get(m_property, t1)
loadConstantOrVariablePayloadUnchecked(size, t1, t0)
loadp OpGetPrivateName::Metadata::m_property[t5], t1
bpneq t1, t0, .opGetPrivateNameSlow
get(m_base, t0)
loadi OpGetPrivateName::Metadata::m_structureID[t5], t1
loadConstantOrVariablePayload(size, t0, CellTag, t3, .opGetPrivateNameSlow)
loadi OpGetPrivateName::Metadata::m_offset[t5], t2
bineq JSCell::m_structureID[t3], t1, .opGetPrivateNameSlow
loadPropertyAtVariableOffset(t2, t3, t0, t1)
valueProfile(size, OpGetPrivateName, m_valueProfile, t0, t1, t5)
return(t0, t1)
.opGetPrivateNameSlow:
callSlowPath(_llint_slow_path_get_private_name)
dispatch()
end)
llintOpWithMetadata(op_put_private_name, OpPutPrivateName, macro (size, get, dispatch, metadata, return)
writeBarrierOnOperands(size, get, m_base, m_value)
get(m_base, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t0, .opPutPrivateNameSlow)
get(m_property, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t1, .opPutPrivateNameSlow)
metadata(t5, t2)
loadi OpPutPrivateName::Metadata::m_oldStructureID[t5], t2
bineq t2, JSCell::m_structureID[t0], .opPutPrivateNameSlow
loadi OpPutPrivateName::Metadata::m_property[t5], t3
bineq t3, t1, .opPutPrivateNameSlow
# At this point, we have:
# t0 -> object base
# t2 -> current structure ID
# t5 -> metadata
loadi OpPutPrivateName::Metadata::m_newStructureID[t5], t1
btiz t1, .opPutNotTransition
storei t1, JSCell::m_structureID[t0]
writeBarrierOnOperandWithReload(size, get, m_base, macro ()
# Reload metadata into t5
metadata(t5, t1)
# Reload base into t0
get(m_base, t1)
loadConstantOrVariablePayload(size, t1, CellTag, t0, .opPutPrivateNameSlow)
end)
.opPutNotTransition:
# The only thing live right now is t0, which holds the base.
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
loadi OpPutPrivateName::Metadata::m_offset[t5], t1
storePropertyAtVariableOffset(t1, t0, t2, t3)
dispatch()
.opPutPrivateNameSlow:
callSlowPath(_llint_slow_path_put_private_name)
dispatch()
end)
macro putByValOp(opcodeName, opcodeStruct, osrExitPoint)
llintOpWithMetadata(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, metadata, return)
macro contiguousPutByVal(storeCallback)
biaeq t3, -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0], .outOfBounds
.storeResult:
get(m_value, t2)
storeCallback(t2, t1, t0, t3)
dispatch()
.outOfBounds:
biaeq t3, -sizeof IndexingHeader + IndexingHeader::u.lengths.vectorLength[t0], .opPutByValOutOfBounds
loadi %opcodeStruct%::Metadata::m_arrayProfile.m_arrayProfileFlags[t5], t2
ori constexpr ArrayProfileFlag::MayStoreHole, t2
storei t2, %opcodeStruct%::Metadata::m_arrayProfile.m_arrayProfileFlags[t5]
addi 1, t3, t2
storei t2, -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0]
jmp .storeResult
end
writeBarrierOnOperands(size, get, m_base, m_value)
metadata(t5, t0)
get(m_base, t0)
loadConstantOrVariablePayload(size, t0, CellTag, t1, .opPutByValSlow)
move t1, t2
arrayProfile(%opcodeStruct%::Metadata::m_arrayProfile, t2, t5, t0)
loadb JSCell::m_indexingTypeAndMisc[t2], t2
get(m_property, t0)
loadConstantOrVariablePayload(size, t0, Int32Tag, t3, .opPutByValSlow)
loadp JSObject::m_butterfly[t1], t0
btinz t2, CopyOnWrite, .opPutByValSlow
andi IndexingShapeMask, t2
bineq t2, Int32Shape, .opPutByValNotInt32
contiguousPutByVal(
macro (operand, scratch, base, index)
loadConstantOrVariablePayload(size, operand, Int32Tag, scratch, .opPutByValSlow)
storei Int32Tag, TagOffset[base, index, 8]
storei scratch, PayloadOffset[base, index, 8]
end)
.opPutByValNotInt32:
bineq t2, DoubleShape, .opPutByValNotDouble
contiguousPutByVal(
macro (operand, scratch, base, index)
const tag = scratch
const payload = operand
loadConstantOrVariable2Reg(size, operand, tag, payload)
bineq tag, Int32Tag, .notInt
ci2ds payload, ft0
jmp .ready
.notInt:
fii2d payload, tag, ft0
bdnequn ft0, ft0, .opPutByValSlow
.ready:
stored ft0, [base, index, 8]
end)
.opPutByValNotDouble:
bineq t2, ContiguousShape, .opPutByValNotContiguous
contiguousPutByVal(
macro (operand, scratch, base, index)
const tag = scratch
const payload = operand
loadConstantOrVariable2Reg(size, operand, tag, payload)
storeJSValueConcurrent(
macro (val, offset)
storei val, offset[base, index, 8]
end,
tag,
payload
)
end)
.opPutByValNotContiguous:
bineq t2, ArrayStorageShape, .opPutByValSlow
biaeq t3, -sizeof IndexingHeader + IndexingHeader::u.lengths.vectorLength[t0], .opPutByValOutOfBounds
bieq ArrayStorage::m_vector + TagOffset[t0, t3, 8], EmptyValueTag, .opPutByValArrayStorageEmpty
.opPutByValArrayStorageStoreResult:
get(m_value, t2)
loadConstantOrVariable2Reg(size, t2, t1, t2)
storeJSValueConcurrent(
macro (val, offset)
storei val, ArrayStorage::m_vector + offset[t0, t3, 8]
end,
t1,
t2
)
dispatch()
.opPutByValArrayStorageEmpty:
loadi %opcodeStruct%::Metadata::m_arrayProfile.m_arrayProfileFlags[t5], t2
ori constexpr ArrayProfileFlag::MayStoreHole, t2
storei t2, %opcodeStruct%::Metadata::m_arrayProfile.m_arrayProfileFlags[t5]
addi 1, ArrayStorage::m_numValuesInVector[t0]
bib t3, -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0], .opPutByValArrayStorageStoreResult
addi 1, t3, t1
storei t1, -sizeof IndexingHeader + IndexingHeader::u.lengths.publicLength[t0]
jmp .opPutByValArrayStorageStoreResult
.opPutByValOutOfBounds:
loadi %opcodeStruct%::Metadata::m_arrayProfile.m_arrayProfileFlags[t5], t2
ori constexpr ArrayProfileFlag::OutOfBounds , t2
storei t2, %opcodeStruct%::Metadata::m_arrayProfile.m_arrayProfileFlags[t5]
.opPutByValSlow:
callSlowPath(_llint_slow_path_%opcodeName%)
dispatch()
.osrExitPoint:
osrExitPoint(size, dispatch)
end)
end
putByValOp(put_by_val, OpPutByVal, macro (size, dispatch)
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_put_by_val, size)
dispatch()
end)
putByValOp(put_by_val_direct, OpPutByValDirect, macro (size, dispatch)
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_put_by_val_direct, size)
dispatch()
end)
macro llintJumpTrueOrFalseOp(opcodeName, opcodeStruct, conditionOp, notUsed)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_condition, t1)
loadConstantOrVariablePayload(size, t1, BooleanTag, t0, .slow)
conditionOp(t0, .target)
dispatch()
.target:
jump(m_targetLabel)
.slow:
callSlowPath(_llint_slow_path_%opcodeName%)
nextInstruction()
end)
end
macro equalNullJumpOp(opcodeName, opcodeStruct, cellHandler, immediateHandler)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_value, t0)
assertNotConstant(size, t0)
loadi TagOffset[cfr, t0, 8], t1
loadi PayloadOffset[cfr, t0, 8], t0
bineq t1, CellTag, .immediate
loadi JSCell::m_structureID[t0], t2
cellHandler(t2, JSCell::m_flags[t0], .target)
dispatch()
.target:
jump(m_targetLabel)
.immediate:
ori 1, t1
immediateHandler(t1, .target)
dispatch()
end)
end
equalNullJumpOp(jeq_null, OpJeqNull,
macro (structure, value, target)
btbz value, MasqueradesAsUndefined, .opJeqNullNotMasqueradesAsUndefined
loadp CodeBlock[cfr], t0
loadp CodeBlock::m_globalObject[t0], t0
bpeq Structure::m_globalObject[structure], t0, target
.opJeqNullNotMasqueradesAsUndefined:
end,
macro (value, target) bieq value, NullTag, target end)
equalNullJumpOp(jneq_null, OpJneqNull,
macro (structure, value, target)
btbz value, MasqueradesAsUndefined, target
loadp CodeBlock[cfr], t0
loadp CodeBlock::m_globalObject[t0], t0
bpneq Structure::m_globalObject[structure], t0, target
end,
macro (value, target) bineq value, NullTag, target end)
macro undefinedOrNullJumpOp(opcodeName, opcodeStruct, fn)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_value, t1)
loadConstantOrVariableTag(size, t1, t0)
ori 1, t0
fn(t0, .target)
dispatch()
.target:
jump(m_targetLabel)
end)
end
undefinedOrNullJumpOp(jundefined_or_null, OpJundefinedOrNull,
macro (value, target) bieq value, NullTag, target end)
undefinedOrNullJumpOp(jnundefined_or_null, OpJnundefinedOrNull,
macro (value, target) bineq value, NullTag, target end)
llintOpWithReturn(op_jeq_ptr, OpJeqPtr, macro (size, get, dispatch, return)
get(m_value, t0)
get(m_specialPointer, t1)
loadConstant(size, t1, t3, t2)
bineq TagOffset[cfr, t0, 8], CellTag, .opJeqPtrFallThrough
bpneq PayloadOffset[cfr, t0, 8], t2, .opJeqPtrFallThrough
.opJeqPtrBranch:
get(m_targetLabel, t0)
jumpImpl(dispatchIndirect, t0)
.opJeqPtrFallThrough:
dispatch()
end)
llintOpWithMetadata(op_jneq_ptr, OpJneqPtr, macro (size, get, dispatch, metadata, return)
get(m_value, t0)
get(m_specialPointer, t1)
loadConstant(size, t1, t3, t2)
bineq TagOffset[cfr, t0, 8], CellTag, .opJneqPtrBranch
bpeq PayloadOffset[cfr, t0, 8], t2, .opJneqPtrFallThrough
.opJneqPtrBranch:
metadata(t5, t2)
storeb 1, OpJneqPtr::Metadata::m_hasJumped[t5]
get(m_targetLabel, t0)
jumpImpl(dispatchIndirect, t0)
.opJneqPtrFallThrough:
dispatch()
end)
macro compareUnsignedJumpOp(opcodeName, opcodeStruct, integerCompare)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_lhs, t2)
get(m_rhs, t3)
loadConstantOrVariable(size, t2, t0, t1)
loadConstantOrVariable2Reg(size, t3, t2, t3)
integerCompare(t1, t3, .jumpTarget)
dispatch()
.jumpTarget:
jump(m_targetLabel)
end)
end
macro compareOp(opcodeName, opcodeStruct, integerCompareAndSet, doubleCompareAndSet)
llintOpWithReturn(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, return)
get(m_lhs, t2)
get(m_rhs, t3)
loadConstantOrVariable(size, t2, t0, t1)
loadConstantOrVariable2Reg(size, t3, t2, t3)
bineq t0, Int32Tag, .op1NotInt
bineq t2, Int32Tag, .op2NotInt
integerCompareAndSet(t1, t3, t1)
return(BooleanTag, t1)
.op1NotInt:
bia t0, LowestTag, .slow
bib t2, LowestTag, .op1NotIntOp2Double
bineq t2, Int32Tag, .slow
ci2ds t3, ft1
jmp .op1NotIntReady
.op1NotIntOp2Double:
fii2d t3, t2, ft1
.op1NotIntReady:
fii2d t1, t0, ft0
doubleCompareAndSet(ft0, ft1, t1)
return(BooleanTag, t1)
.op2NotInt:
ci2ds t1, ft0
bia t2, LowestTag, .slow
fii2d t3, t2, ft1
doubleCompareAndSet(ft0, ft1, t1)
return(BooleanTag, t1)
.slow:
callSlowPath(_llint_slow_path_%opcodeName%)
dispatch()
end)
end
macro compareUnsignedOp(opcodeName, opcodeStruct, integerCompareAndSet)
llintOpWithReturn(op_%opcodeName%, opcodeStruct, macro (size, get, dispatch, return)
get(m_rhs, t2)
get(m_lhs, t0)
loadConstantOrVariable(size, t2, t3, t1)
loadConstantOrVariable2Reg(size, t0, t2, t0)
integerCompareAndSet(t0, t1, t0)
return(BooleanTag, t0)
end)
end
macro compareJumpOp(opcodeName, opcodeStruct, integerCompare, doubleCompare)
llintOpWithJump(op_%opcodeName%, opcodeStruct, macro (size, get, jump, dispatch)
get(m_lhs, t2)
get(m_rhs, t3)
loadConstantOrVariable(size, t2, t0, t1)
loadConstantOrVariable2Reg(size, t3, t2, t3)
bineq t0, Int32Tag, .op1NotInt
bineq t2, Int32Tag, .op2NotInt
integerCompare(t1, t3, .jumpTarget)
dispatch()
.op1NotInt:
bia t0, LowestTag, .slow
bib t2, LowestTag, .op1NotIntOp2Double
bineq t2, Int32Tag, .slow
ci2ds t3, ft1
jmp .op1NotIntReady
.op1NotIntOp2Double:
fii2d t3, t2, ft1
.op1NotIntReady:
fii2d t1, t0, ft0
doubleCompare(ft0, ft1, .jumpTarget)
dispatch()
.op2NotInt:
ci2ds t1, ft0
bia t2, LowestTag, .slow
fii2d t3, t2, ft1
doubleCompare(ft0, ft1, .jumpTarget)
dispatch()
.jumpTarget:
jump(m_targetLabel)
.slow:
callSlowPath(_llint_slow_path_%opcodeName%)
nextInstruction()
end)
end
llintOpWithJump(op_switch_imm, OpSwitchImm, macro (size, get, jump, dispatch)
get(m_scrutinee, t2)
getu(size, OpSwitchImm, m_tableIndex, t3)
loadConstantOrVariable(size, t2, t1, t0)
loadp CodeBlock[cfr], t2
loadp CodeBlock::m_unlinkedCode[t2], t2
loadp UnlinkedCodeBlock::m_rareData[t2], t2
muli sizeof UnlinkedSimpleJumpTable, t3
loadp UnlinkedCodeBlock::RareData::m_unlinkedSwitchJumpTables + UnlinkedSimpleJumpTableFixedVector::m_storage[t2], t2
addp (constexpr (UnlinkedSimpleJumpTableFixedVector::Storage::offsetOfData())), t2
addp t3, t2
bineq t1, Int32Tag, .opSwitchImmNotInt
subi UnlinkedSimpleJumpTable::m_min[t2], t0
loadp UnlinkedSimpleJumpTable::m_branchOffsets + Int32FixedVector::m_storage[t2], t3
btpz t3, .opSwitchImmFallThrough
biaeq t0, Int32FixedVector::Storage::m_size[t3], .opSwitchImmFallThrough
loadi (constexpr (Int32FixedVector::Storage::offsetOfData()))[t3, t0, 4], t1
btiz t1, .opSwitchImmFallThrough
dispatchIndirect(t1)
.opSwitchImmNotInt:
bib t1, LowestTag, .opSwitchImmSlow # Go to slow path if it's a double.
.opSwitchImmFallThrough:
loadis UnlinkedSimpleJumpTable::m_defaultOffset[t2], t1
dispatchIndirect(t1)
.opSwitchImmSlow:
callSlowPath(_llint_slow_path_switch_imm)
nextInstruction()
end)
llintOpWithJump(op_switch_char, OpSwitchChar, macro (size, get, jump, dispatch)
get(m_scrutinee, t2)
getu(size, OpSwitchChar, m_tableIndex, t3)
loadConstantOrVariable(size, t2, t1, t0)
loadp CodeBlock[cfr], t2
loadp CodeBlock::m_unlinkedCode[t2], t2
loadp UnlinkedCodeBlock::m_rareData[t2], t2
muli sizeof UnlinkedSimpleJumpTable, t3
loadp UnlinkedCodeBlock::RareData::m_unlinkedSwitchJumpTables + UnlinkedSimpleJumpTableFixedVector::m_storage[t2], t2
addp (constexpr (UnlinkedSimpleJumpTableFixedVector::Storage::offsetOfData())), t2
addp t3, t2
bineq t1, CellTag, .opSwitchCharFallThrough
bbneq JSCell::m_type[t0], StringType, .opSwitchCharFallThrough
loadp JSString::m_fiber[t0], t1
btpnz t1, isRopeInPointer, .opSwitchOnRope
bineq StringImpl::m_length[t1], 1, .opSwitchCharFallThrough
loadp StringImpl::m_data8[t1], t0
btinz StringImpl::m_hashAndFlags[t1], HashFlags8BitBuffer, .opSwitchChar8Bit
loadh [t0], t0
jmp .opSwitchCharReady
.opSwitchChar8Bit:
loadb [t0], t0
.opSwitchCharReady:
subi UnlinkedSimpleJumpTable::m_min[t2], t0
loadp UnlinkedSimpleJumpTable::m_branchOffsets + Int32FixedVector::m_storage[t2], t3
btpz t3, .opSwitchCharFallThrough
biaeq t0, Int32FixedVector::Storage::m_size[t3], .opSwitchCharFallThrough
loadi (constexpr (Int32FixedVector::Storage::offsetOfData()))[t3, t0, 4], t1
btiz t1, .opSwitchCharFallThrough
dispatchIndirect(t1)
.opSwitchCharFallThrough:
loadis UnlinkedSimpleJumpTable::m_defaultOffset[t2], t1
dispatchIndirect(t1)
.opSwitchOnRope:
bineq JSRopeString::m_compactFibers + JSRopeString::CompactFibers::m_length[t0], 1, .opSwitchCharFallThrough
.opSwitchOnRopeChar:
callSlowPath(_llint_slow_path_switch_char)
nextInstruction()
end)
macro arrayProfileForCall(opcodeStruct, getu)
getu(m_argv, t3)
negi t3
bineq ThisArgumentOffset + TagOffset[cfr, t3, 8], CellTag, .done
loadi ThisArgumentOffset + PayloadOffset[cfr, t3, 8], t0
loadi JSCell::m_structureID[t0], t0
storei t0, %opcodeStruct%::Metadata::m_arrayProfile.m_lastSeenStructureID[t5]
.done:
end
# t5 holds metadata.
macro callHelper(opcodeName, opcodeStruct, dispatchAfterCall, valueProfileName, dstVirtualRegister, prepareCall, invokeCall, prepareSlowCall, size, dispatch, metadata, getCallee, getArgumentStart, getArgumentCountIncludingThis)
getCallee(t3)
loadConstantOrVariable(size, t3, t1, t0)
# Aligned to JIT::compileSetupFrame
getArgumentStart(t3)
lshifti 3, t3
negi t3
addp cfr, t3 # t3 contains the new value of cfr
getArgumentCountIncludingThis(t2)
storei t2, ArgumentCountIncludingThis + PayloadOffset[t3]
# Store location bits and |callee|, and configure sp.
storei PC, ArgumentCountIncludingThis + TagOffset[cfr]
storei t0, Callee + PayloadOffset[t3]
storei t1, Callee + TagOffset[t3]
move t3, sp
addp CallerFrameAndPCSize, sp
bineq t1, CellTag, .opCallSlow
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_callee[t5], t3
btpz t3, (constexpr CallLinkInfo::polymorphicCalleeMask), .notPolymorphic
prepareCall(t2, t3, t4, t6, macro(address)
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_codeBlock[t5], t2
storep t2, address
end)
addp %opcodeStruct%::Metadata::m_callLinkInfo, t5, t2 # CallLinkInfo* in t2
jmp .goPolymorphic
.notPolymorphic:
bpneq t0, t3, .opCallSlow
prepareCall(t2, t3, t4, t6, macro(address)
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_codeBlock[t5], t2
storep t2, address
end)
.goPolymorphic:
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_monomorphicCallDestination[t5], t5
.dispatch:
invokeCall(opcodeName, size, opcodeStruct, valueProfileName, dstVirtualRegister, dispatch, t5, t1, JSEntryPtrTag)
.opCallSlow:
# 64bit:t0 32bit(t0,t1) is callee
# t2 is CallLinkInfo*
prepareCall(t2, t3, t4, t6, macro(address)
storep 0, address
end)
addp %opcodeStruct%::Metadata::m_callLinkInfo, t5, t2 # CallLinkInfo* in t2
leap _g_config, t5
loadp JSCConfigOffset + constexpr JSC::offsetOfJSCConfigDefaultCallThunk[t5], t5
jmp .dispatch
end
macro commonCallOp(opcodeName, opcodeStruct, prepareCall, invokeCall, prepareSlowCall, prologue, dispatchAfterCall)
llintOpWithMetadata(opcodeName, opcodeStruct, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
prologue(macro (fieldName, dst)
getu(size, opcodeStruct, fieldName, dst)
end, metadata)
macro getCallee(dst)
get(m_callee, dst)
end
macro getArgumentStart(dst)
getu(size, opcodeStruct, m_argv, dst)
end
macro getArgumentCount(dst)
getu(size, opcodeStruct, m_argc, dst)
end
# t5 holds metadata
callHelper(opcodeName, opcodeStruct, dispatchAfterCall, m_valueProfile, m_dst, prepareCall, invokeCall, prepareSlowCall, size, dispatch, metadata, getCallee, getArgumentStart, getArgumentCount)
end)
end
macro doCallVarargs(opcodeName, size, get, opcodeStruct, valueProfileName, dstVirtualRegister, dispatch, metadata, frameSlowPath, slowPath, prepareCall, invokeCall, prepareSlowCall, dispatchAfterCall)
callSlowPath(frameSlowPath)
branchIfException(_llint_throw_from_slow_path_trampoline)
# calleeFrame in r1
if JSVALUE64
move r1, sp
else
# The calleeFrame is not stack aligned, move down by CallerFrameAndPCSize to align
if ARMv7
subp r1, CallerFrameAndPCSize, t2
move t2, sp
else
subp r1, CallerFrameAndPCSize, sp
end
end
callCallSlowPath(
slowPath,
# Those parameters are r0 and r1
macro (restoredPCOrThrow, calleeFramePtr)
btpz calleeFramePtr, .dontUpdateSP
restoreStateAfterCCall()
move calleeFramePtr, sp
get(m_callee, t2)
loadConstantOrVariable(size, t2, t1, t0)
metadata(t5, t2)
bineq t1, CellTag, .opCallSlow
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_callee[t5], t3
btpz t3, (constexpr CallLinkInfo::polymorphicCalleeMask), .notPolymorphic
prepareCall(t2, t3, t4, t6, macro(address)
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_codeBlock[t5], t2
storep t2, address
end)
addp %opcodeStruct%::Metadata::m_callLinkInfo, t5, t2 # CallLinkInfo* in t2
jmp .goPolymorphic
.notPolymorphic:
bpneq t0, t3, .opCallSlow
prepareCall(t2, t3, t4, t6, macro(address)
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_codeBlock[t5], t2
storep t2, address
end)
.goPolymorphic:
loadp %opcodeStruct%::Metadata::m_callLinkInfo.m_monomorphicCallDestination[t5], t5
.dispatch:
invokeCall(opcodeName, size, opcodeStruct, valueProfileName, dstVirtualRegister, dispatch, t5, t1, JSEntryPtrTag)
.opCallSlow:
# 64bit:t0 32bit(t0,t1) is callee
# t2 is CallLinkInfo*
prepareCall(t2, t3, t4, t6, macro(address)
storep 0, address
end)
addp %opcodeStruct%::Metadata::m_callLinkInfo, t5, t2 # CallLinkInfo* in t2
leap _g_config, t5
loadp JSCConfigOffset + constexpr JSC::offsetOfJSCConfigDefaultCallThunk[t5], t5
jmp .dispatch
.dontUpdateSP:
jmp _llint_throw_from_slow_path_trampoline
end)
end
llintOp(op_ret, OpRet, macro (size, get, dispatch)
checkSwitchToJITForEpilogue()
get(m_value, t2)
loadConstantOrVariable(size, t2, t1, t0)
doReturn()
end)
llintOpWithReturn(op_to_primitive, OpToPrimitive, macro (size, get, dispatch, return)
get(m_src, t2)
loadConstantOrVariable(size, t2, t1, t0)
bineq t1, CellTag, .opToPrimitiveIsImm
bbaeq JSCell::m_type[t0], ObjectType, .opToPrimitiveSlowCase
.opToPrimitiveIsImm:
return(t1, t0)
.opToPrimitiveSlowCase:
callSlowPath(_slow_path_to_primitive)
dispatch()
end)
llintOpWithReturn(op_to_property_key, OpToPropertyKey, macro (size, get, dispatch, return)
get(m_src, t2)
loadConstantOrVariable(size, t2, t1, t0)
bineq t1, CellTag, .opToPropertyKeySlow
bbeq JSCell::m_type[t0], SymbolType, .done
bbneq JSCell::m_type[t0], StringType, .opToPropertyKeySlow
.done:
return(t1, t0)
.opToPropertyKeySlow:
callSlowPath(_slow_path_to_property_key)
dispatch()
end)
llintOpWithReturn(op_to_property_key_or_number, OpToPropertyKeyOrNumber, macro (size, get, dispatch, return)
get(m_src, t2)
loadConstantOrVariable(size, t2, t1, t0)
addi 1, t2
bib t2, LowestTag + 1, .done
bineq t1, CellTag, .opToPropertyKeyOrNumberSlow
bbeq JSCell::m_type[t0], SymbolType, .done
bbneq JSCell::m_type[t0], StringType, .opToPropertyKeyOrNumberSlow
.done:
return(t1, t0)
.opToPropertyKeyOrNumberSlow:
callSlowPath(_slow_path_to_property_key_or_number)
dispatch()
end)
commonOp(llint_op_catch, macro() end, macro (size)
# This is where we end up from the JIT's throw trampoline (because the
# machine code return address will be set to _llint_op_catch), and from
# the interpreter's throw trampoline (see _llint_throw_trampoline).
# The throwing code must have known that we were throwing to the interpreter,
# and have set VM::targetInterpreterPCForThrow.
getVMFromCallFrame(t3, t0)
restoreCalleeSavesFromVMEntryFrameCalleeSavesBuffer(t3, t0)
loadp VM::callFrameForCatch[t3], cfr
storep 0, VM::callFrameForCatch[t3]
restoreStackPointerAfterCall()
# restore metadataTable since we don't restore callee saves for CLoop during unwinding
loadp CodeBlock[cfr], t1
loadp CodeBlock::m_metadata[t1], metadataTable
loadp CodeBlock::m_instructionsRawPointer[t1], PB
loadp VM::targetInterpreterPCForThrow[t3], PC
subp PB, PC
callSlowPath(_llint_slow_path_retrieve_and_clear_exception_if_catchable)
bpneq r1, 0, .isCatchableException
jmp _llint_throw_from_slow_path_trampoline
.isCatchableException:
move r1, t0
get(size, OpCatch, m_exception, t2)
storei t0, PayloadOffset[cfr, t2, 8]
storei CellTag, TagOffset[cfr, t2, 8]
loadi Exception::m_value + TagOffset[t0], t1
loadi Exception::m_value + PayloadOffset[t0], t0
get(size, OpCatch, m_thrownValue, t2)
storei t0, PayloadOffset[cfr, t2, 8]
storei t1, TagOffset[cfr, t2, 8]
traceExecution() # This needs to be here because we don't want to clobber t0, t1, t2, t3 above.
callSlowPath(_llint_slow_path_profile_catch)
dispatchOp(size, op_catch)
end)
llintOp(op_end, OpEnd, macro (size, get, dispatch)
checkSwitchToJITForEpilogue()
get(m_value, t0)
assertNotConstant(size, t0)
loadi TagOffset[cfr, t0, 8], t1
loadi PayloadOffset[cfr, t0, 8], t0
doReturn()
end)
op(llint_throw_from_slow_path_trampoline, macro()
getVMFromCallFrame(t1, t2)
copyCalleeSavesToVMEntryFrameCalleeSavesBuffer(t1, t2)
callSlowPath(_llint_slow_path_handle_exception)
# When throwing from the interpreter (i.e. throwing from LLIntSlowPaths), so
# the throw target is not necessarily interpreted code, we come to here.
# This essentially emulates the JIT's throwing protocol.
getVMFromCallFrame(t1, t2)
jmp VM::targetMachinePCForThrow[t1]
end)
op(llint_throw_during_call_trampoline, macro()
preserveReturnAddressAfterCall(t2)
jmp _llint_throw_from_slow_path_trampoline
end)
macro nativeCallTrampoline(executableOffsetToFunction)
functionPrologue()
storep 0, CodeBlock[cfr]
subp 8, sp # align stack pointer
loadp Callee + PayloadOffset[cfr], a0
loadp JSFunction::m_executableOrRareData[a0], a2
btpz a2, (constexpr JSFunction::rareDataTag), .isExecutable
loadp (FunctionRareData::m_executable - (constexpr JSFunction::rareDataTag))[a2], a2
.isExecutable:
loadp JSFunction::m_scope[a0], a0
loadp JSGlobalObject::m_vm[a0], a1
storep cfr, VM::topCallFrame[a1]
move cfr, a1
checkStackPointerAlignment(t3, 0xdead0001)
if C_LOOP
cloopCallNative executableOffsetToFunction[a2]
else
call executableOffsetToFunction[a2]
end
loadp Callee + PayloadOffset[cfr], t3
loadp JSFunction::m_scope[t3], t3
loadp JSGlobalObject::m_vm[t3], t3
addp 8, sp
btpnz VM::m_exception[t3], .handleException
functionEpilogue()
ret
.handleException:
storep cfr, VM::topCallFrame[t3]
jmp _llint_throw_from_slow_path_trampoline
end
macro internalFunctionCallTrampoline(offsetOfFunction)
functionPrologue()
storep 0, CodeBlock[cfr]
// Callee is still in t1 for code below
subp 8, sp # align stack pointer
loadp Callee + PayloadOffset[cfr], a2
loadp InternalFunction::m_globalObject[a2], a0
loadp JSGlobalObject::m_vm[a0], a1
storep cfr, VM::topCallFrame[a1]
move cfr, a1
checkStackPointerAlignment(t3, 0xdead0001)
if C_LOOP
cloopCallNative offsetOfFunction[a2]
else
call offsetOfFunction[a2]
end
loadp Callee + PayloadOffset[cfr], t3
loadp InternalFunction::m_globalObject[t3], t3
loadp JSGlobalObject::m_vm[t3], t3
addp 8, sp
btpnz VM::m_exception[t3], .handleException
functionEpilogue()
ret
.handleException:
storep cfr, VM::topCallFrame[t3]
jmp _llint_throw_from_slow_path_trampoline
end
macro varInjectionCheck(slowPath)
loadp CodeBlock[cfr], t0
loadp CodeBlock::m_globalObject[t0], t0
loadp JSGlobalObject::m_varInjectionWatchpointSet[t0], t0
bbeq WatchpointSet::m_state[t0], IsInvalidated, slowPath
end
llintOpWithMetadata(op_resolve_scope, OpResolveScope, macro (size, get, dispatch, metadata, return)
macro getConstantScope(dst)
loadp OpResolveScope::Metadata::m_constantScope[t5], dst
end
macro returnConstantScope()
getConstantScope(t0)
return(CellTag, t0)
end
macro globalLexicalBindingEpochCheck(slowPath, globalObject, scratch)
loadi OpResolveScope::Metadata::m_globalLexicalBindingEpoch[t5], scratch
bineq JSGlobalObject::m_globalLexicalBindingEpoch[globalObject], scratch, slowPath
end
macro resolveScope()
loadi OpResolveScope::Metadata::m_localScopeDepth[t5], t2
get(m_scope, t0)
loadp PayloadOffset[cfr, t0, 8], t0
btiz t2, .resolveScopeLoopEnd
.resolveScopeLoop:
loadp JSScope::m_next[t0], t0
subi 1, t2
btinz t2, .resolveScopeLoop
.resolveScopeLoopEnd:
return(CellTag, t0)
end
metadata(t5, t0)
loadi OpResolveScope::Metadata::m_resolveType[t5], t0
#rGlobalProperty:
bineq t0, GlobalProperty, .rGlobalVar
getConstantScope(t0)
globalLexicalBindingEpochCheck(.rDynamic, t0, t2)
return(CellTag, t0)
.rGlobalVar:
bineq t0, GlobalVar, .rGlobalLexicalVar
returnConstantScope()
.rGlobalLexicalVar:
bineq t0, GlobalLexicalVar, .rClosureVar
returnConstantScope()
.rClosureVar:
bineq t0, ClosureVar, .rModuleVar
resolveScope()
.rModuleVar:
bineq t0, ModuleVar, .rGlobalPropertyWithVarInjectionChecks
returnConstantScope()
.rGlobalPropertyWithVarInjectionChecks:
bineq t0, GlobalPropertyWithVarInjectionChecks, .rGlobalVarWithVarInjectionChecks
varInjectionCheck(.rDynamic)
getConstantScope(t0)
globalLexicalBindingEpochCheck(.rDynamic, t0, t2)
return(CellTag, t0)
.rGlobalVarWithVarInjectionChecks:
bineq t0, GlobalVarWithVarInjectionChecks, .rGlobalLexicalVarWithVarInjectionChecks
varInjectionCheck(.rDynamic)
returnConstantScope()
.rGlobalLexicalVarWithVarInjectionChecks:
bineq t0, GlobalLexicalVarWithVarInjectionChecks, .rClosureVarWithVarInjectionChecks
varInjectionCheck(.rDynamic)
returnConstantScope()
.rClosureVarWithVarInjectionChecks:
bineq t0, ClosureVarWithVarInjectionChecks, .rDynamic
varInjectionCheck(.rDynamic)
resolveScope()
.rDynamic:
callSlowPath(_slow_path_resolve_scope)
dispatch()
end)
macro loadWithStructureCheck(opcodeStruct, get, operand, slowPath)
get(m_scope, t0)
loadp PayloadOffset[cfr, t0, 8], t0
loadp %opcodeStruct%::Metadata::m_structure[t5], t1
bineq JSCell::m_structureID[t0], t1, slowPath
end
llintOpWithMetadata(op_get_from_scope, OpGetFromScope, macro (size, get, dispatch, metadata, return)
macro getProperty()
loadp OpGetFromScope::Metadata::m_operand[t5], t3
loadPropertyAtVariableOffset(t3, t0, t1, t2)
valueProfile(size, OpGetFromScope, m_valueProfile, t1, t2, t5)
return(t1, t2)
end
macro getGlobalVar(tdzCheckIfNecessary)
loadp OpGetFromScope::Metadata::m_operand[t5], t0
loadp TagOffset[t0], t1
loadp PayloadOffset[t0], t2
tdzCheckIfNecessary(t1)
valueProfile(size, OpGetFromScope, m_valueProfile, t1, t2, t5)
return(t1, t2)
end
macro getClosureVar()
loadp OpGetFromScope::Metadata::m_operand[t5], t3
loadp JSLexicalEnvironment_variables + TagOffset[t0, t3, 8], t1
loadp JSLexicalEnvironment_variables + PayloadOffset[t0, t3, 8], t2
valueProfile(size, OpGetFromScope, m_valueProfile, t1, t2, t5)
return(t1, t2)
end
metadata(t5, t0)
loadi OpGetFromScope::Metadata::m_getPutInfo + GetPutInfo::m_operand[t5], t0
andi ResolveTypeMask, t0
#gGlobalProperty:
bineq t0, GlobalProperty, .gGlobalVar
loadWithStructureCheck(OpGetFromScope, get, scope, .gDynamic)
getProperty()
.gGlobalVar:
bineq t0, GlobalVar, .gGlobalLexicalVar
getGlobalVar(macro(t) end)
.gGlobalLexicalVar:
bineq t0, GlobalLexicalVar, .gClosureVar
getGlobalVar(
macro(tag)
bieq tag, EmptyValueTag, .gDynamic
end)
.gClosureVar:
bineq t0, ClosureVar, .gGlobalPropertyWithVarInjectionChecks
loadVariable(get, m_scope, t2, t1, t0)
getClosureVar()
.gGlobalPropertyWithVarInjectionChecks:
bineq t0, GlobalPropertyWithVarInjectionChecks, .gGlobalVarWithVarInjectionChecks
loadWithStructureCheck(OpGetFromScope, get, scope, .gDynamic)
getProperty()
.gGlobalVarWithVarInjectionChecks:
bineq t0, GlobalVarWithVarInjectionChecks, .gGlobalLexicalVarWithVarInjectionChecks
varInjectionCheck(.gDynamic)
getGlobalVar(macro(t) end)
.gGlobalLexicalVarWithVarInjectionChecks:
bineq t0, GlobalLexicalVarWithVarInjectionChecks, .gClosureVarWithVarInjectionChecks
varInjectionCheck(.gDynamic)
getGlobalVar(
macro(tag)
bieq tag, EmptyValueTag, .gDynamic
end)
.gClosureVarWithVarInjectionChecks:
bineq t0, ClosureVarWithVarInjectionChecks, .gDynamic
varInjectionCheck(.gDynamic)
loadVariable(get, m_scope, t2, t1, t0)
getClosureVar()
.gDynamic:
callSlowPath(_llint_slow_path_get_from_scope)
dispatch()
end)
llintOpWithMetadata(op_put_to_scope, OpPutToScope, macro (size, get, dispatch, metadata, return)
macro putProperty()
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
loadp OpPutToScope::Metadata::m_operand[t5], t1
storePropertyAtVariableOffset(t1, t0, t2, t3)
end
macro putGlobalVariable()
get(m_value, t0)
loadConstantOrVariable(size, t0, t1, t2)
loadp OpPutToScope::Metadata::m_watchpointSet[t5], t3
btpz t3, .noVariableWatchpointSet
notifyWrite(t3, .pDynamic)
.noVariableWatchpointSet:
loadp OpPutToScope::Metadata::m_operand[t5], t0
storeJSValueConcurrent(
macro (val, offset)
storei val, offset[t0]
end,
t1,
t2
)
end
macro putClosureVar()
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
loadp OpPutToScope::Metadata::m_operand[t5], t1
storeJSValueConcurrent(
macro (val, offset)
storei val, JSLexicalEnvironment_variables + offset[t0, t1, 8]
end,
t2,
t3
)
end
macro putResolvedClosureVar()
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
loadp OpPutToScope::Metadata::m_watchpointSet[t5], t1
btpz t1, .noVariableWatchpointSet
notifyWrite(t1, .pDynamic)
.noVariableWatchpointSet:
loadp OpPutToScope::Metadata::m_operand[t5], t1
storeJSValueConcurrent(
macro (val, offset)
storei val, JSLexicalEnvironment_variables + offset[t0, t1, 8]
end,
t2,
t3
)
end
macro checkTDZInGlobalPutToScopeIfNecessary()
loadi OpPutToScope::Metadata::m_getPutInfo + GetPutInfo::m_operand[t5], t0
andi InitializationModeMask, t0
rshifti InitializationModeShift, t0
bilt t0, NotInitialization, .noNeedForTDZCheck
loadp OpPutToScope::Metadata::m_operand[t5], t0
loadi TagOffset[t0], t0
bieq t0, EmptyValueTag, .pDynamic
.noNeedForTDZCheck:
end
metadata(t5, t0)
loadi OpPutToScope::Metadata::m_getPutInfo + GetPutInfo::m_operand[t5], t0
andi ResolveTypeMask, t0
#pResolvedClosureVar:
bineq t0, ResolvedClosureVar, .pGlobalProperty
loadVariable(get, m_scope, t2, t1, t0)
putResolvedClosureVar()
writeBarrierOnOperands(size, get, m_scope, m_value)
dispatch()
.pGlobalProperty:
bineq t0, GlobalProperty, .pGlobalVar
loadWithStructureCheck(OpPutToScope, get, scope, .pDynamic)
putProperty()
writeBarrierOnOperands(size, get, m_scope, m_value)
dispatch()
.pGlobalVar:
bineq t0, GlobalVar, .pGlobalLexicalVar
varReadOnlyCheck(.pDynamic, t2)
putGlobalVariable()
writeBarrierOnGlobalObject(size, get, m_value)
dispatch()
.pGlobalLexicalVar:
bineq t0, GlobalLexicalVar, .pClosureVar
checkTDZInGlobalPutToScopeIfNecessary()
putGlobalVariable()
writeBarrierOnGlobalLexicalEnvironment(size, get, m_value)
dispatch()
.pClosureVar:
bineq t0, ClosureVar, .pGlobalPropertyWithVarInjectionChecks
loadVariable(get, m_scope, t2, t1, t0)
putClosureVar()
writeBarrierOnOperands(size, get, m_scope, m_value)
dispatch()
.pGlobalPropertyWithVarInjectionChecks:
bineq t0, GlobalPropertyWithVarInjectionChecks, .pGlobalVarWithVarInjectionChecks
loadWithStructureCheck(OpPutToScope, get, scope, .pDynamic)
putProperty()
writeBarrierOnOperands(size, get, m_scope, m_value)
dispatch()
.pGlobalVarWithVarInjectionChecks:
bineq t0, GlobalVarWithVarInjectionChecks, .pGlobalLexicalVarWithVarInjectionChecks
# FIXME: Avoid loading m_globalObject twice
# https://bugs.webkit.org/show_bug.cgi?id=223097
varInjectionCheck(.pDynamic)
varReadOnlyCheck(.pDynamic, t2)
putGlobalVariable()
writeBarrierOnGlobalObject(size, get, m_value)
dispatch()
.pGlobalLexicalVarWithVarInjectionChecks:
bineq t0, GlobalLexicalVarWithVarInjectionChecks, .pClosureVarWithVarInjectionChecks
varInjectionCheck(.pDynamic)
checkTDZInGlobalPutToScopeIfNecessary()
putGlobalVariable()
writeBarrierOnGlobalLexicalEnvironment(size, get, m_value)
dispatch()
.pClosureVarWithVarInjectionChecks:
bineq t0, ClosureVarWithVarInjectionChecks, .pModuleVar
varInjectionCheck(.pDynamic)
loadVariable(get, m_scope, t2, t1, t0)
putClosureVar()
writeBarrierOnOperands(size, get, m_scope, m_value)
dispatch()
.pModuleVar:
bineq t0, ModuleVar, .pDynamic
callSlowPath(_slow_path_throw_strict_mode_readonly_property_write_error)
dispatch()
.pDynamic:
callSlowPath(_llint_slow_path_put_to_scope)
dispatch()
end)
llintOpWithProfile(op_get_from_arguments, OpGetFromArguments, macro (size, get, dispatch, return)
get(m_arguments, t0)
loadi PayloadOffset[cfr, t0, 8], t0
getu(size, OpGetFromArguments, m_index, t1)
loadi DirectArguments_storage + TagOffset[t0, t1, 8], t2
loadi DirectArguments_storage + PayloadOffset[t0, t1, 8], t3
return(t2, t3)
end)
llintOp(op_put_to_arguments, OpPutToArguments, macro (size, get, dispatch)
writeBarrierOnOperands(size, get, m_arguments, m_value)
get(m_arguments, t0)
loadi PayloadOffset[cfr, t0, 8], t0
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
getu(size, OpPutToArguments, m_index, t1)
storeJSValueConcurrent(
macro (val, offset)
storei val, DirectArguments_storage + offset[t0, t1, 8]
end,
t2,
t3
)
dispatch()
end)
llintOpWithReturn(op_get_parent_scope, OpGetParentScope, macro (size, get, dispatch, return)
get(m_scope, t0)
loadp PayloadOffset[cfr, t0, 8], t0
loadp JSScope::m_next[t0], t0
return(CellTag, t0)
end)
llintOpWithMetadata(op_profile_type, OpProfileType, macro (size, get, dispatch, metadata, return)
loadp CodeBlock[cfr], t1
loadp CodeBlock::m_vm[t1], t1
# t1 is holding the pointer to the typeProfilerLog.
loadp VM::m_typeProfilerLog[t1], t1
# t0 is holding the payload, t5 is holding the tag.
get(m_targetVirtualRegister, t2)
loadConstantOrVariable(size, t2, t5, t0)
bieq t5, EmptyValueTag, .opProfileTypeDone
metadata(t3, t2)
# t2 is holding the pointer to the current log entry.
loadp TypeProfilerLog::m_currentLogEntryPtr[t1], t2
# Store the JSValue onto the log entry.
storeJSValueConcurrent(
macro (val, offset)
storei val, TypeProfilerLog::LogEntry::value + offset[t2]
end,
t5,
t0
)
# Store the TypeLocation onto the log entry.
loadp OpProfileType::Metadata::m_typeLocation[t3], t3
storep t3, TypeProfilerLog::LogEntry::location[t2]
bieq t5, CellTag, .opProfileTypeIsCell
storei 0, TypeProfilerLog::LogEntry::structureID[t2]
jmp .opProfileTypeSkipIsCell
.opProfileTypeIsCell:
loadi JSCell::m_structureID[t0], t3
storei t3, TypeProfilerLog::LogEntry::structureID[t2]
.opProfileTypeSkipIsCell:
# Increment the current log entry.
addp sizeof TypeProfilerLog::LogEntry, t2
storep t2, TypeProfilerLog::m_currentLogEntryPtr[t1]
loadp TypeProfilerLog::m_logEndPtr[t1], t1
bpneq t2, t1, .opProfileTypeDone
callSlowPath(_slow_path_profile_type_clear_log)
.opProfileTypeDone:
dispatch()
end)
llintOpWithMetadata(op_profile_control_flow, OpProfileControlFlow, macro (size, get, dispatch, metadata, return)
metadata(t5, t0)
loadp OpProfileControlFlow::Metadata::m_basicBlockLocation[t5], t0
loadi BasicBlockLocation::m_executionCount[t0], t1
baddio 1, t1, .done
storei t1, BasicBlockLocation::m_executionCount[t0]
.done:
dispatch()
end)
llintOpWithReturn(op_get_rest_length, OpGetRestLength, macro (size, get, dispatch, return)
loadi PayloadOffset + ArgumentCountIncludingThis[cfr], t0
subi 1, t0
getu(size, OpGetRestLength, m_numParametersToSkip, t1)
bilteq t0, t1, .storeZero
subi t1, t0
jmp .finish
.storeZero:
move 0, t0
.finish:
return(Int32Tag, t0)
end)
llintOpWithMetadata(op_iterator_open, OpIteratorOpen, macro (size, get, dispatch, metadata, return)
macro fastNarrow()
callSlowPath(_iterator_open_try_fast_narrow)
end
macro fastWide16()
callSlowPath(_iterator_open_try_fast_wide16)
end
macro fastWide32()
callSlowPath(_iterator_open_try_fast_wide32)
end
size(fastNarrow, fastWide16, fastWide32, macro (callOp) callOp() end)
# FIXME: We should do this with inline assembly since it's the "fast" case.
bbeq r1, constexpr IterationMode::Generic, .iteratorOpenGeneric
dispatch()
.iteratorOpenGeneric:
macro gotoGetByIdCheckpoint()
jmp .getByIdStart
end
macro getCallee(dst)
get(m_symbolIterator, dst)
end
macro getArgumentIncludingThisStart(dst)
getu(size, OpIteratorOpen, m_stackOffset, dst)
end
macro getArgumentIncludingThisCount(dst)
move 1, dst
end
metadata(t5, t0)
callHelper(op_iterator_open, OpIteratorOpen, dispatchAfterRegularCall, m_iteratorValueProfile, m_iterator, prepareForRegularCall, invokeForRegularCall, prepareForSlowRegularCall, size, gotoGetByIdCheckpoint, metadata, getCallee, getArgumentIncludingThisStart, getArgumentIncludingThisCount)
.getByIdStart:
macro storeNextAndDispatch(valueTag, valuePayload)
move valueTag, t2
move valuePayload, t3
get(m_next, t1)
storei t2, TagOffset[cfr, t1, 8]
storei t3, PayloadOffset[cfr, t1, 8]
dispatch()
end
# We need to load m_iterator into t3 because that's where
# performGetByIDHelper expects the base object
loadVariable(get, m_iterator, t3, t0, t3)
bineq t0, CellTag, .iteratorOpenGenericGetNextSlow
metadata(t2, t1)
performGetByIDHelper(OpIteratorOpen, m_modeMetadata, m_nextValueProfile, .iteratorOpenGenericGetNextSlow, size, storeNextAndDispatch)
.iteratorOpenGenericGetNextSlow:
callSlowPath(_llint_slow_path_iterator_open_get_next)
dispatch()
end)
llintOpWithMetadata(op_iterator_next, OpIteratorNext, macro (size, get, dispatch, metadata, return)
loadVariable(get, m_next, t0, t1, t0)
bineq t1, EmptyValueTag, .iteratorNextGeneric
macro fastNarrow()
callSlowPath(_iterator_next_try_fast_narrow)
end
macro fastWide16()
callSlowPath(_iterator_next_try_fast_wide16)
end
macro fastWide32()
callSlowPath(_iterator_next_try_fast_wide32)
end
size(fastNarrow, fastWide16, fastWide32, macro (callOp) callOp() end)
# FIXME: We should do this with inline assembly since it's the "fast" case.
bbeq r1, constexpr IterationMode::Generic, .iteratorNextGeneric
dispatch()
.iteratorNextGeneric:
macro gotoGetDoneCheckpoint()
jmp .getDoneStart
end
macro getCallee(dst)
get(m_next, dst)
end
macro getArgumentIncludingThisStart(dst)
getu(size, OpIteratorNext, m_stackOffset, dst)
end
macro getArgumentIncludingThisCount(dst)
move 1, dst
end
# Use m_value slot as a tmp since we are going to write to it later.
metadata(t5, t0)
callHelper(op_iterator_next, OpIteratorNext, dispatchAfterRegularCall, m_nextResultValueProfile, m_value, prepareForRegularCall, invokeForRegularCall, prepareForSlowRegularCall, size, gotoGetDoneCheckpoint, metadata, getCallee, getArgumentIncludingThisStart, getArgumentIncludingThisCount)
.getDoneStart:
macro storeDoneAndJmpToGetValue(doneValueTag, doneValuePayload)
move doneValueTag, t0
move doneValuePayload, t1
get(m_done, t2)
storei t0, TagOffset[cfr, t2, 8]
storei t1, PayloadOffset[cfr, t2, 8]
jmp .getValueStart
end
loadVariable(get, m_value, t3, t0, t3)
bineq t0, CellTag, .getDoneSlow
metadata(t2, t1)
performGetByIDHelper(OpIteratorNext, m_doneModeMetadata, m_doneValueProfile, .getDoneSlow, size, storeDoneAndJmpToGetValue)
.getDoneSlow:
callSlowPath(_llint_slow_path_iterator_next_get_done)
branchIfException(_llint_throw_from_slow_path_trampoline)
loadVariable(get, m_done, t1, t0, t1)
# storeDoneAndJmpToGetValue puts the doneValue into t0
.getValueStart:
# In 32 bits, following slow path if tags is not null, undefined, int32, boolean.
# These satisfy the mask ~0x3.
# Therefore if the mask is _not_ satisfied, we branch to the slow case.
btinz t0, ~0x3, .getValueSlow
btiz t1, 0x1, .notDone
dispatch()
.notDone:
macro storeValueAndDispatch(vTag, vPayload)
move vTag, t2
move vPayload, t3
get(m_value, t1)
storei t2, TagOffset[cfr, t1, 8]
storei t3, PayloadOffset[cfr, t1, 8]
checkStackPointerAlignment(t0, 0xbaddb01e)
dispatch()
end
# Reload the next result tmp since the get_by_id above may have clobbered t3.
loadVariable(get, m_value, t3, t0, t3)
# We don't need to check if the iterator result is a cell here since we will have thrown an error before.
metadata(t2, t1)
performGetByIDHelper(OpIteratorNext, m_valueModeMetadata, m_valueValueProfile, .getValueSlow, size, storeValueAndDispatch)
.getValueSlow:
callSlowPath(_llint_slow_path_iterator_next_get_value)
dispatch()
end)
llintOpWithProfile(op_get_internal_field, OpGetInternalField, macro (size, get, dispatch, return)
get(m_base, t0)
loadi PayloadOffset[cfr, t0, 8], t0
getu(size, OpGetInternalField, m_index, t1)
loadi JSInternalFieldObjectImpl_internalFields + TagOffset[t0, t1, SlotSize], t2
loadi JSInternalFieldObjectImpl_internalFields + PayloadOffset[t0, t1, SlotSize], t3
return(t2, t3)
end)
llintOp(op_put_internal_field, OpPutInternalField, macro (size, get, dispatch)
get(m_base, t0)
loadi PayloadOffset[cfr, t0, 8], t0
get(m_value, t1)
loadConstantOrVariable(size, t1, t2, t3)
getu(size, OpPutInternalField, m_index, t1)
storeJSValueConcurrent(
macro (val, offset)
storei val, JSInternalFieldObjectImpl_internalFields + offset[t0, t1, SlotSize]
end,
t2,
t3
)
writeBarrierOnOperand(size, get, m_base)
dispatch()
end)
llintOp(op_log_shadow_chicken_prologue, OpLogShadowChickenPrologue, macro (size, get, dispatch)
acquireShadowChickenPacket(.opLogShadowChickenPrologueSlow)
storep cfr, ShadowChicken::Packet::frame[t0]
loadp CallerFrame[cfr], t1
storep t1, ShadowChicken::Packet::callerFrame[t0]
loadp Callee + PayloadOffset[cfr], t1
storep t1, ShadowChicken::Packet::callee[t0]
get(m_scope, t1)
loadi PayloadOffset[cfr, t1, 8], t1
storep t1, ShadowChicken::Packet::scope[t0]
dispatch()
.opLogShadowChickenPrologueSlow:
callSlowPath(_llint_slow_path_log_shadow_chicken_prologue)
dispatch()
end)
llintOp(op_log_shadow_chicken_tail, OpLogShadowChickenTail, macro (size, get, dispatch)
acquireShadowChickenPacket(.opLogShadowChickenTailSlow)
storep cfr, ShadowChicken::Packet::frame[t0]
storep ShadowChickenTailMarker, ShadowChicken::Packet::callee[t0]
loadVariable(get, m_thisValue, t3, t2, t1)
storeJSValueConcurrent(
macro (val, offset)
storei val, ShadowChicken::Packet::thisValue + offset[t0]
end,
t2,
t1
)
get(m_scope, t1)
loadi PayloadOffset[cfr, t1, 8], t1
storep t1, ShadowChicken::Packet::scope[t0]
loadp CodeBlock[cfr], t1
storep t1, ShadowChicken::Packet::codeBlock[t0]
storei PC, ShadowChicken::Packet::callSiteIndex[t0]
dispatch()
.opLogShadowChickenTailSlow:
callSlowPath(_llint_slow_path_log_shadow_chicken_tail)
dispatch()
end)
op(fuzzer_return_early_from_loop_hint, macro ()
loadp CodeBlock[cfr], t0
loadp CodeBlock::m_globalObject[t0], t0
loadp JSGlobalObject::m_globalThis[t0], t0
move t0, r0
move CellTag, r1
doReturn()
end)
op(loop_osr_entry_gate, macro ()
crash() # Should never reach here.
end)
llintOpWithMetadata(op_check_private_brand, OpCheckPrivateBrand, macro (size, get, dispatch, metadata, return)
metadata(t5, t2)
get(m_base, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t0, .opCheckPrivateBrandSlow)
get(m_brand, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t1, .opCheckPrivateBrandSlow)
loadi OpCheckPrivateBrand::Metadata::m_structureID[t5], t3
bineq JSCell::m_structureID[t0], t3, .opCheckPrivateBrandSlow
loadp OpCheckPrivateBrand::Metadata::m_brand[t5], t3
bpneq t3, t1, .opCheckPrivateBrandSlow
dispatch()
.opCheckPrivateBrandSlow:
callSlowPath(_llint_slow_path_check_private_brand)
dispatch()
end)
llintOpWithMetadata(op_set_private_brand, OpSetPrivateBrand, macro (size, get, dispatch, metadata, return)
metadata(t5, t2)
get(m_base, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t0, .opSetPrivateBrandSlow)
get(m_brand, t3)
loadConstantOrVariablePayload(size, t3, CellTag, t1, .opSetPrivateBrandSlow)
loadi OpSetPrivateBrand::Metadata::m_oldStructureID[t5], t2
bineq t2, JSCell::m_structureID[t0], .opSetPrivateBrandSlow
loadp OpSetPrivateBrand::Metadata::m_brand[t5], t3
bpneq t3, t1, .opSetPrivateBrandSlow
loadi OpSetPrivateBrand::Metadata::m_newStructureID[t5], t1
storei t1, JSCell::m_structureID[t0]
writeBarrierOnOperand(size, get, m_base)
dispatch()
.opSetPrivateBrandSlow:
callSlowPath(_llint_slow_path_set_private_brand)
dispatch()
end)
llintOpWithReturn(op_in_by_id, OpInById, macro (size, get, dispatch, return)
callSlowPath(_llint_slow_path_in_by_id)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_in_by_id, size)
return(r1, r0)
end)
llintOpWithReturn(op_in_by_val, OpInByVal, macro (size, get, dispatch, return)
callSlowPath(_llint_slow_path_in_by_val)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_in_by_val, size)
return(r1, r0)
end)
llintOpWithReturn(op_enumerator_in_by_val, OpEnumeratorInByVal, macro (size, get, dispatch, return)
callSlowPath(_slow_path_enumerator_in_by_val)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_enumerator_in_by_val, size)
return(r1, r0)
end)
llintOpWithReturn(op_enumerator_get_by_val, OpEnumeratorGetByVal, macro (size, get, dispatch, return)
callSlowPath(_slow_path_enumerator_get_by_val)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_enumerator_get_by_val, size)
valueProfile(size, OpEnumeratorGetByVal, m_valueProfile, r1, r0, t2)
return(r1, r0)
end)
llintOpWithReturn(op_enumerator_put_by_val, OpEnumeratorPutByVal, macro (size, get, dispatch, return)
callSlowPath(_slow_path_enumerator_put_by_val)
dispatch()
.osrReturnPoint:
getterSetterOSRExitReturnPoint(op_enumerator_put_by_val, size)
dispatch()
end)
slowPathOp(get_property_enumerator)
slowPathOp(enumerator_next)
slowPathOp(enumerator_has_own_property)
slowPathOp(mod)
llintSlowPathOp(has_structure_with_flags)
llintSlowPathOp(instanceof)
|