1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918
|
/* pp_hot.c
*
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
* 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
/*
* Then he heard Merry change the note, and up went the Horn-cry of Buckland,
* shaking the air.
*
* Awake! Awake! Fear, Fire, Foes! Awake!
* Fire, Foes! Awake!
*
* [p.1007 of _The Lord of the Rings_, VI/viii: "The Scouring of the Shire"]
*/
/* This file contains 'hot' pp ("push/pop") functions that
* execute the opcodes that make up a perl program. A typical pp function
* expects to find its arguments on the stack, and usually pushes its
* results onto the stack, hence the 'pp' terminology. Each OP structure
* contains a pointer to the relevant pp_foo() function.
*
* By 'hot', we mean common ops whose execution speed is critical.
* By gathering them together into a single file, we encourage
* CPU cache hits on hot code. Also it could be taken as a warning not to
* change any code in this file unless you're sure it won't affect
* performance.
*/
#include "EXTERN.h"
#define PERL_IN_PP_HOT_C
#include "perl.h"
#include "regcomp.h"
#include "feature.h"
/* Hot code. */
#ifdef PERL_RC_STACK
/* common code for pp_wrap() and xs_wrap():
* free any original arguments, and bump and shift down any return
* args
*/
STATIC void
S_pp_xs_wrap_return(pTHX_ I32 nargs, I32 old_sp)
{
I32 nret = (I32)(PL_stack_sp - PL_stack_base) - old_sp;
assert(nret >= 0);
/* bump any returned values */
if (nret) {
SV **svp = PL_stack_sp - nret + 1;
while (svp <= PL_stack_sp) {
SvREFCNT_inc(*svp);
svp++;
}
}
PL_curstackinfo->si_stack_nonrc_base = 0;
/* free the original args and shift the returned valued down */
if (nargs) {
SV **svp = PL_stack_sp - nret;
I32 i = nargs;
while (i--) {
SvREFCNT_dec(*svp);
*svp = NULL;
svp--;
}
if (nret) {
Move(PL_stack_sp - nret + 1,
PL_stack_sp - nret - nargs + 1,
nret, SV*);
}
PL_stack_sp -= nargs;
}
}
/* pp_wrap():
* wrapper function for pp() functions to turn them into functions
* that can operate on a reference-counted stack, by taking a non-
* reference-counted copy of the current stack frame, calling the real
* pp() function, then incrementing the reference count of any returned
* args.
*
* nargs or nlists indicate the number of stack arguments or the
* number of stack lists (delimited by MARKs) which the function expects.
*/
OP*
Perl_pp_wrap(pTHX_ Perl_ppaddr_t real_pp_fn, I32 nargs, int nlists)
{
PERL_ARGS_ASSERT_PP_WRAP;
if (!rpp_stack_is_rc())
/* stack-already non-RC; nothing needing wrapping */
return real_pp_fn(aTHX);
OP *next_op;
I32 old_sp = (I32)(PL_stack_sp - PL_stack_base);
assert(nargs >= 0);
assert(nlists >= 0);
assert(AvREAL(PL_curstack));
PL_curstackinfo->si_stack_nonrc_base = PL_stack_sp - PL_stack_base + 1;
if (nlists) {
assert(nargs == 0);
I32 mark = PL_markstack_ptr[-nlists+1];
nargs = (PL_stack_sp - PL_stack_base) - mark;
assert(nlists <= 2); /* if ever more, make below a loop */
PL_markstack_ptr[0] += nargs;
if (nlists == 2)
PL_markstack_ptr[-1] += nargs;
}
if (nargs) {
/* duplicate all the arg pointers further up the stack */
rpp_extend(nargs);
Copy(PL_stack_sp - nargs + 1, PL_stack_sp + 1, nargs, SV*);
PL_stack_sp += nargs;
}
next_op = real_pp_fn(aTHX);
/* we should still be a split stack */
assert(AvREAL(PL_curstack));
assert(PL_curstackinfo->si_stack_nonrc_base);
S_pp_xs_wrap_return(aTHX_ nargs, old_sp);
return next_op;
}
/* xs_wrap():
* similar in concept to pp_wrap: make a non-referenced-counted copy of
* a (not refcount aware) XS sub's args, call the XS subs, then bump any
* return values and free the original args */
void
Perl_xs_wrap(pTHX_ XSUBADDR_t xsub, CV *cv)
{
PERL_ARGS_ASSERT_XS_WRAP;
I32 old_sp = (I32)(PL_stack_sp - PL_stack_base);
I32 mark = PL_markstack_ptr[0];
I32 nargs = (PL_stack_sp - PL_stack_base) - mark;
/* we should be a fully refcounted stack */
assert(AvREAL(PL_curstack));
assert(!PL_curstackinfo->si_stack_nonrc_base);
PL_curstackinfo->si_stack_nonrc_base = PL_stack_sp - PL_stack_base + 1;
if (nargs) {
/* duplicate all the arg pointers further up the stack */
rpp_extend(nargs);
Copy(PL_stack_sp - nargs + 1, PL_stack_sp + 1, nargs, SV*);
PL_stack_sp += nargs;
PL_markstack_ptr[0] += nargs;
}
xsub(aTHX_ cv);
S_pp_xs_wrap_return(aTHX_ nargs, old_sp);
}
#endif
/* Private helper function for Perl_rpp_replace_2_1_COMMON()
* and rpp_popfree_2_NN().
* Free the two passed SVs, whose original ref counts are rc1 and rc2.
* Assumes the stack initially looked like
* .... sv1 sv2
* and is now:
* .... X
* but where sv2 is still on the slot above the current PL_stack_sp.
*/
void
Perl_rpp_free_2_(pTHX_ SV *const sv1, SV *const sv2,
const U32 rc1, const U32 rc2)
{
PERL_ARGS_ASSERT_RPP_FREE_2_;
#ifdef PERL_RC_STACK
if (rc1 > 1)
SvREFCNT(sv1) = rc1 - 1;
else {
/* temporarily reclaim sv2 on stack in case we die while freeing sv1 */
assert(PL_stack_sp[1] == sv2);
PL_stack_sp++;
Perl_sv_free2(aTHX_ sv1, rc1);
PL_stack_sp--;
}
if (rc2 > 1)
SvREFCNT(sv2) = rc2 - 1;
else
Perl_sv_free2(aTHX_ sv2, rc2);
#else
PERL_UNUSED_VAR(sv1);
PERL_UNUSED_VAR(sv2);
PERL_UNUSED_VAR(rc1);
PERL_UNUSED_VAR(rc2);
#endif
}
/* ----------------------------------------------------------- */
PP(pp_const)
{
rpp_xpush_1(cSVOP_sv);
return NORMAL;
}
PP(pp_nextstate)
{
PL_curcop = (COP*)PL_op;
TAINT_NOT; /* Each statement is presumed innocent */
rpp_popfree_to_NN(PL_stack_base + CX_CUR()->blk_oldsp);
FREETMPS;
PERL_ASYNC_CHECK();
return NORMAL;
}
PP(pp_gvsv)
{
assert(SvTYPE(cGVOP_gv) == SVt_PVGV);
rpp_xpush_1(
UNLIKELY(PL_op->op_private & OPpLVAL_INTRO)
? save_scalar(cGVOP_gv)
: GvSVn(cGVOP_gv));
return NORMAL;
}
/* also used for: pp_lineseq() pp_regcmaybe() pp_scalar() pp_scope() */
PP(pp_null)
{
return NORMAL;
}
/* This is sometimes called directly by pp_coreargs, pp_grepstart and
amagic_call. */
PP(pp_pushmark)
{
PUSHMARK(PL_stack_sp);
return NORMAL;
}
PP(pp_stringify)
{
dTARGET;
sv_copypv(TARG, *PL_stack_sp);
SvSETMAGIC(TARG);
rpp_replace_1_1_NN(TARG);
return NORMAL;
}
PP(pp_gv)
{
/* cGVOP_gv might be a real GV or might be an RV to a CV */
assert(SvTYPE(cGVOP_gv) == SVt_PVGV ||
(SvTYPE(cGVOP_gv) <= SVt_PVMG && SvROK(cGVOP_gv) && SvTYPE(SvRV(cGVOP_gv)) == SVt_PVCV));
rpp_xpush_1(MUTABLE_SV(cGVOP_gv));
return NORMAL;
}
/* also used for: pp_andassign() */
PP(pp_and)
{
PERL_ASYNC_CHECK();
{
SV * const sv = *PL_stack_sp;
if (!SvTRUE_NN(sv))
return NORMAL;
else {
if (PL_op->op_type == OP_AND)
rpp_popfree_1_NN();
return cLOGOP->op_other;
}
}
}
/*
* Mashup of simple padsv + sassign OPs
* Doesn't support the following lengthy and unlikely sassign case:
* (UNLIKELY(PL_op->op_private & OPpASSIGN_CV_TO_GV))
* These cases have a separate optimization, so are not handled here:
* (PL_op->op_private & OPpASSIGN_BACKWARDS) {or,and,dor}assign
*/
PP(pp_padsv_store)
{
OP * const op = PL_op;
SV** const padentry = &PAD_SVl(op->op_targ);
SV* targ = *padentry; /* lvalue to assign into */
SV* const val = *PL_stack_sp; /* RHS value to assign */
/* !OPf_STACKED is not handled by this OP */
assert(op->op_flags & OPf_STACKED);
/* Inlined, simplified pp_padsv here */
if ((op->op_private & (OPpLVAL_INTRO|OPpPAD_STATE)) == OPpLVAL_INTRO) {
save_clearsv(padentry);
}
/* Inlined, simplified pp_sassign from here */
assert(TAINTING_get || !TAINT_get);
if (UNLIKELY(TAINT_get) && !SvTAINTED(val))
TAINT_NOT;
if (
UNLIKELY(SvTEMP(targ)) && !SvSMAGICAL(targ) && SvREFCNT(targ) == 1 &&
(!isGV_with_GP(targ) || SvFAKE(targ)) && ckWARN(WARN_MISC)
)
Perl_warner(aTHX_
packWARN(WARN_MISC), "Useless assignment to a temporary"
);
SvSetMagicSV(targ, val);
rpp_replace_1_1_NN(targ);
return NORMAL;
}
/* A mashup of simplified AELEMFAST_LEX + SASSIGN OPs */
PP(pp_aelemfastlex_store)
{
OP * const op = PL_op;
SV* const val = *PL_stack_sp; /* RHS value to assign */
AV * const av = MUTABLE_AV(PAD_SV(op->op_targ));
const I8 key = (I8)PL_op->op_private;
SV * targ = NULL;
/* !OPf_STACKED is not handled by this OP */
assert(op->op_flags & OPf_STACKED);
/* Inlined, simplified pp_aelemfast here */
assert(SvTYPE(av) == SVt_PVAV);
/* inlined av_fetch() for simple cases ... */
if (!SvRMAGICAL(av) && key >=0 && key <= AvFILLp(av)) {
targ = AvARRAY(av)[key];
}
/* ... else do it the hard way */
if (!targ) {
SV **svp = av_fetch(av, key, 1);
if (svp)
targ = *svp;
else
DIE(aTHX_ PL_no_aelem, (int)key);
}
/* Inlined, simplified pp_sassign from here */
assert(TAINTING_get || !TAINT_get);
if (UNLIKELY(TAINT_get) && !SvTAINTED(val))
TAINT_NOT;
/* This assertion is a deviation from pp_sassign, which uses an if()
* condition to check for "Useless assignment to a temporary" and
* warns if the condition is true. Here, the condition should NEVER
* be true when the LHS is the result of an array fetch. The
* assertion is here as a final check that this remains the case.
*/
assert(!(SvTEMP(targ) && SvREFCNT(targ) == 1 && !SvSMAGICAL(targ)));
SvSetMagicSV(targ, val);
assert(GIMME_V == G_VOID);
rpp_popfree_1_NN();
return NORMAL;
}
PP(pp_sassign)
{
/* sassign keeps its args in the optree traditionally backwards.
So we pop them differently.
*/
SV *left = PL_stack_sp[0];
SV *right = PL_stack_sp[-1];
if (PL_op->op_private & OPpASSIGN_BACKWARDS) { /* {or,and,dor}assign */
SV * const temp = left;
left = right; right = temp;
PL_stack_sp[0] = left;
PL_stack_sp[-1] = right;
}
assert(TAINTING_get || !TAINT_get);
if (UNLIKELY(TAINT_get) && !SvTAINTED(right))
TAINT_NOT;
if (UNLIKELY(PL_op->op_private & OPpASSIGN_CV_TO_GV)) {
/* *foo =\&bar */
SV * const cv = SvRV(right);
const U32 cv_type = SvTYPE(cv);
const bool is_gv = isGV_with_GP(left);
const bool got_coderef = cv_type == SVt_PVCV || cv_type == SVt_PVFM;
if (!got_coderef) {
assert(SvROK(cv));
}
/* Can do the optimisation if left (LVALUE) is not a typeglob,
right (RVALUE) is a reference to something, and we're in void
context. */
if (!got_coderef && !is_gv && GIMME_V == G_VOID) {
/* Is the target symbol table currently empty? */
GV * const gv = gv_fetchsv_nomg(left, GV_NOINIT, SVt_PVGV);
if (SvTYPE(gv) != SVt_PVGV && !SvOK(gv)) {
/* Good. Create a new proxy constant subroutine in the target.
The gv becomes a(nother) reference to the constant. */
SV *const value = SvRV(cv);
SvUPGRADE(MUTABLE_SV(gv), SVt_IV);
SvPCS_IMPORTED_on(gv);
SvRV_set(gv, value);
SvREFCNT_inc_simple_void(value);
rpp_replace_2_1_NN(left);
return NORMAL;
}
}
/* Need to fix things up. */
if (!is_gv) {
/* Need to fix GV. */
SV *sv = MUTABLE_SV(gv_fetchsv_nomg(left,GV_ADD, SVt_PVGV));
rpp_replace_1_1_NN(sv);
left = sv;
}
if (!got_coderef) {
/* We've been returned a constant rather than a full subroutine,
but they expect a subroutine reference to apply. */
if (SvROK(cv)) {
ENTER_with_name("sassign_coderef");
SvREFCNT_inc_void(SvRV(cv));
/* newCONSTSUB takes a reference count on the passed in SV
from us. We set the name to NULL, otherwise we get into
all sorts of fun as the reference to our new sub is
donated to the GV that we're about to assign to.
*/
SvRV_set(right, MUTABLE_SV(newCONSTSUB(GvSTASH(left), NULL,
SvRV(cv))));
SvREFCNT_dec_NN(cv);
LEAVE_with_name("sassign_coderef");
} else {
/* What can happen for the corner case *{"BONK"} = \&{"BONK"};
is that
First: ops for \&{"BONK"}; return us the constant in the
symbol table
Second: ops for *{"BONK"} cause that symbol table entry
(and our reference to it) to be upgraded from RV
to typeblob)
Thirdly: We get here. cv is actually PVGV now, and its
GvCV() is actually the subroutine we're looking for
So change the reference so that it points to the subroutine
of that typeglob, as that's what they were after all along.
*/
GV *const upgraded = MUTABLE_GV(cv);
CV *const source = GvCV(upgraded);
assert(source);
assert(CvFLAGS(source) & CVf_CONST);
SvREFCNT_inc_simple_void_NN(source);
SvREFCNT_dec_NN(upgraded);
SvRV_set(right, MUTABLE_SV(source));
}
}
}
if (
rpp_is_lone(left) && !SvSMAGICAL(left) &&
(!isGV_with_GP(left) || SvFAKE(left)) && ckWARN(WARN_MISC)
)
Perl_warner(aTHX_
packWARN(WARN_MISC), "Useless assignment to a temporary"
);
SvSetMagicSV(left, right);
if (LIKELY(GIMME_V == G_VOID))
rpp_popfree_2_NN(); /* pop left and right */
else {
/* pop right, leave left on the stack */
assert(PL_stack_sp[-1] == right);
assert(PL_stack_sp[0] == left);
*--PL_stack_sp = left;
#ifdef PERL_RC_STACK
SvREFCNT_dec_NN(right);
#endif
}
return NORMAL;
}
PP(pp_cond_expr)
{
PERL_ASYNC_CHECK();
bool ok = SvTRUE_NN(*PL_stack_sp);
rpp_popfree_1_NN();
return (ok ? cLOGOP->op_other : cLOGOP->op_next);
}
PP(pp_unstack)
{
PERL_CONTEXT *cx;
PERL_ASYNC_CHECK();
TAINT_NOT; /* Each statement is presumed innocent */
cx = CX_CUR();
rpp_popfree_to_NN(PL_stack_base + CX_CUR()->blk_oldsp);
FREETMPS;
if (!(PL_op->op_flags & OPf_SPECIAL)) {
assert(CxTYPE(cx) == CXt_BLOCK || CxTYPE_is_LOOP(cx));
CX_LEAVE_SCOPE(cx);
}
return NORMAL;
}
/* The main body of pp_concat, not including the magic/overload and
* stack handling.
* It does targ = left . right.
* Moved into a separate function so that pp_multiconcat() can use it
* too.
*/
PERL_STATIC_INLINE void
S_do_concat(pTHX_ SV *left, SV *right, SV *targ, U8 targmy)
{
bool lbyte;
STRLEN rlen;
const char *rpv = NULL;
bool rbyte = FALSE;
bool rcopied = FALSE;
if (TARG == right && right != left) { /* $r = $l.$r */
rpv = SvPV_nomg_const(right, rlen);
rbyte = !DO_UTF8(right);
right = newSVpvn_flags(rpv, rlen, SVs_TEMP);
rpv = SvPV_const(right, rlen); /* no point setting UTF-8 here */
rcopied = TRUE;
}
if (TARG != left) { /* not $l .= $r */
STRLEN llen;
const char* const lpv = SvPV_nomg_const(left, llen);
lbyte = !DO_UTF8(left);
sv_setpvn(TARG, lpv, llen);
if (!lbyte)
SvUTF8_on(TARG);
else
SvUTF8_off(TARG);
}
else { /* $l .= $r and left == TARG */
if (!SvOK(left)) {
if ((left == right /* $l .= $l */
|| targmy) /* $l = $l . $r */
&& ckWARN(WARN_UNINITIALIZED)
)
report_uninit(left);
SvPVCLEAR(left);
}
else {
SvPV_force_nomg_nolen(left);
}
lbyte = !DO_UTF8(left);
if (IN_BYTES)
SvUTF8_off(left);
}
if (!rcopied) {
rpv = SvPV_nomg_const(right, rlen);
rbyte = !DO_UTF8(right);
}
if (lbyte != rbyte) {
if (lbyte)
sv_utf8_upgrade_nomg(TARG);
else {
if (!rcopied)
right = newSVpvn_flags(rpv, rlen, SVs_TEMP);
sv_utf8_upgrade_nomg(right);
rpv = SvPV_nomg_const(right, rlen);
}
}
sv_catpvn_nomg(TARG, rpv, rlen);
SvSETMAGIC(TARG);
}
PP(pp_concat)
{
SV *targ = (PL_op->op_flags & OPf_STACKED)
? PL_stack_sp[-1]
: PAD_SV(PL_op->op_targ);
if (rpp_try_AMAGIC_2(concat_amg, AMGf_assign))
return NORMAL;
SV *right = PL_stack_sp[0];
SV *left = PL_stack_sp[-1];
S_do_concat(aTHX_ left, right, targ, PL_op->op_private & OPpTARGET_MY);
rpp_replace_2_1_NN(targ);
return NORMAL;
}
/* pp_multiconcat()
Concatenate one or more args, possibly interleaved with constant string
segments. The result may be assigned to, or appended to, a variable or
expression.
Several op_flags and/or op_private bits indicate what the target is, and
whether it's appended to. Valid permutations are:
- (PADTMP) = (A.B.C....)
OPpTARGET_MY $lex = (A.B.C....)
OPpTARGET_MY,OPpLVAL_INTRO my $lex = (A.B.C....)
OPpTARGET_MY,OPpMULTICONCAT_APPEND $lex .= (A.B.C....)
OPf_STACKED expr = (A.B.C....)
OPf_STACKED,OPpMULTICONCAT_APPEND expr .= (A.B.C....)
Other combinations like (A.B).(C.D) are not optimised into a multiconcat
op, as it's too hard to get the correct ordering of ties, overload etc.
In addition:
OPpMULTICONCAT_FAKE: not a real concat, instead an optimised
sprintf "...%s...". Don't call '.'
overloading: only use '""' overloading.
OPpMULTICONCAT_STRINGIFY: the RHS was of the form
"...$a...$b..." rather than
"..." . $a . "..." . $b . "..."
An OP_MULTICONCAT is of type UNOP_AUX. The fixed slots of the aux array are
defined with PERL_MULTICONCAT_IX_FOO constants, where:
FOO index description
-------- ----- ----------------------------------
NARGS 0 number of arguments
PLAIN_PV 1 non-utf8 constant string
PLAIN_LEN 2 non-utf8 constant string length
UTF8_PV 3 utf8 constant string
UTF8_LEN 4 utf8 constant string length
LENGTHS 5 first of nargs+1 const segment lengths
The idea is that a general string concatenation will have a fixed (known
at compile time) number of variable args, interspersed with constant
strings, e.g. "a=$a b=$b\n"
All the constant string segments "a=", " b=" and "\n" are stored as a
single string "a= b=\n", pointed to from the PLAIN_PV/UTF8_PV slot, along
with a series of segment lengths: e.g. 2,3,1. In the case where the
constant string is plain but has a different utf8 representation, both
variants are stored, and two sets of (nargs+1) segments lengths are stored
in the slots beginning at PERL_MULTICONCAT_IX_LENGTHS.
A segment length of -1 indicates that there is no constant string at that
point; this distinguishes between e.g. ($a . $b) and ($a . "" . $b), which
have differing overloading behaviour.
*/
PP(pp_multiconcat)
{
SV *targ; /* The SV to be assigned or appended to */
char *targ_pv; /* where within SvPVX(targ) we're writing to */
STRLEN targ_len; /* SvCUR(targ) */
SV **toparg; /* the highest arg position on the stack */
UNOP_AUX_item *aux; /* PL_op->op_aux buffer */
UNOP_AUX_item *const_lens; /* the segment length array part of aux */
const char *const_pv; /* the current segment of the const string buf */
SSize_t nargs; /* how many args were expected */
SSize_t stack_adj; /* how much to adjust PL_stack_sp on return */
STRLEN grow; /* final size of destination string (targ) */
UV targ_count; /* how many times targ has appeared on the RHS */
bool is_append; /* OPpMULTICONCAT_APPEND flag is set */
bool slow_concat; /* args too complex for quick concat */
U32 dst_utf8; /* the result will be utf8 (indicate this with
SVf_UTF8 in a U32, rather than using bool,
for ease of testing and setting) */
/* for each arg, holds the result of an SvPV() call */
struct multiconcat_svpv {
const char *pv;
SSize_t len;
}
*targ_chain, /* chain of slots where targ has appeared on RHS */
*svpv_p, /* ptr for looping through svpv_buf */
*svpv_base, /* first slot (may be greater than svpv_buf), */
*svpv_end, /* and slot after highest result so far, of: */
svpv_buf[PERL_MULTICONCAT_MAXARG]; /* buf for storing SvPV() results */
aux = cUNOP_AUXx(PL_op)->op_aux;
stack_adj = nargs = aux[PERL_MULTICONCAT_IX_NARGS].ssize;
is_append = cBOOL(PL_op->op_private & OPpMULTICONCAT_APPEND);
/* get targ from the stack or pad */
toparg = PL_stack_sp;
if (PL_op->op_flags & OPf_STACKED) {
stack_adj++;
if (is_append) {
/* for 'expr .= ...', expr is the bottom item on the stack */
targ = PL_stack_sp[-nargs];
}
else {
/* for 'expr = ...', expr is the top item on the stack */
targ = *PL_stack_sp;
toparg--;
}
}
else {
SV **svp = &(PAD_SVl(PL_op->op_targ));
targ = *svp;
if (PL_op->op_private & OPpLVAL_INTRO) {
assert(PL_op->op_private & OPpTARGET_MY);
save_clearsv(svp);
}
if (!nargs)
/* $lex .= "const" doesn't cause anything to be pushed */
rpp_extend(1);
}
grow = 1; /* allow for '\0' at minimum */
targ_count = 0;
targ_chain = NULL;
targ_len = 0;
svpv_end = svpv_buf;
/* only utf8 variants of the const strings? */
dst_utf8 = aux[PERL_MULTICONCAT_IX_PLAIN_PV].pv ? 0 : SVf_UTF8;
/* --------------------------------------------------------------
* Phase 1:
*
* stringify (i.e. SvPV()) every arg and store the resultant pv/len/utf8
* triplets in svpv_buf[]. Also increment 'grow' by the args' lengths.
*
* utf8 is indicated by storing a negative length.
*
* Where an arg is actually targ, the stringification is deferred:
* the length is set to 0, and the slot is added to targ_chain.
*
* If a magic, overloaded, or otherwise weird arg is found, which
* might have side effects when stringified, the loop is abandoned and
* we goto a code block where a more basic 'emulate calling
* pp_cpncat() on each arg in turn' is done.
*/
for (SV **svp = toparg - (nargs - 1); svp <= toparg; svp++, svpv_end++) {
U32 utf8;
STRLEN len;
SV *sv;
assert(svpv_end - svpv_buf < PERL_MULTICONCAT_MAXARG);
sv = *svp;
/* this if/else chain is arranged so that common/simple cases
* take few conditionals */
if (LIKELY((SvFLAGS(sv) & (SVs_GMG|SVf_ROK|SVf_POK)) == SVf_POK)) {
/* common case: sv is a simple non-magical PV */
if (targ == sv) {
/* targ appears on RHS.
* Delay storing PV pointer; instead, add slot to targ_chain
* so it can be populated later, after targ has been grown and
* we know its final SvPVX() address.
*/
targ_on_rhs:
svpv_end->len = 0; /* zerojng here means we can skip
updating later if targ_len == 0 */
svpv_end->pv = (char*)targ_chain;
targ_chain = svpv_end;
targ_count++;
continue;
}
len = SvCUR(sv);
svpv_end->pv = SvPVX(sv);
}
else if (UNLIKELY(SvFLAGS(sv) & (SVs_GMG|SVf_ROK)))
/* may have side effects: tie, overload etc.
* Abandon 'stringify everything first' and handle
* args in strict order. Note that already-stringified args
* will be reprocessed, which is safe because the each first
* stringification would have been idempotent.
*/
goto do_magical;
else if (SvNIOK(sv)) {
if (targ == sv)
goto targ_on_rhs;
/* stringify general valid scalar */
svpv_end->pv = sv_2pv_flags(sv, &len, 0);
}
else if (!SvOK(sv)) {
if (ckWARN(WARN_UNINITIALIZED))
/* an undef value in the presence of warnings may trigger
* side affects */
goto do_magical;
svpv_end->pv = "";
len = 0;
}
else
goto do_magical; /* something weird */
utf8 = (SvFLAGS(sv) & SVf_UTF8);
dst_utf8 |= utf8;
ASSUME(len < SSize_t_MAX);
svpv_end->len = utf8 ? -(SSize_t)len : (SSize_t)len;
grow += len;
}
/* --------------------------------------------------------------
* Phase 2:
*
* Stringify targ:
*
* if targ appears on the RHS or is appended to, force stringify it;
* otherwise set it to "". Then set targ_len.
*/
if (is_append) {
/* abandon quick route if using targ might have side effects */
if (UNLIKELY(SvFLAGS(targ) & (SVs_GMG|SVf_ROK)))
goto do_magical;
if (SvOK(targ)) {
U32 targ_utf8;
stringify_targ:
SvPV_force_nomg_nolen(targ);
targ_utf8 = SvFLAGS(targ) & SVf_UTF8;
if (UNLIKELY(dst_utf8 & ~targ_utf8)) {
if (LIKELY(!IN_BYTES))
sv_utf8_upgrade_nomg(targ);
}
else
dst_utf8 |= targ_utf8;
targ_len = SvCUR(targ);
grow += targ_len * (targ_count + is_append);
goto phase3;
}
else if (ckWARN(WARN_UNINITIALIZED))
/* warning might have side effects */
goto do_magical;
/* the undef targ will be silently SvPVCLEAR()ed below */
}
else if (UNLIKELY(SvTYPE(targ) >= SVt_REGEXP)) {
/* Assigning to some weird LHS type. Don't force the LHS to be an
* empty string; instead, do things 'long hand' by using the
* overload code path, which concats to a TEMP sv and does
* sv_catsv() calls rather than COPY()s. This ensures that even
* bizarre code like this doesn't break or crash:
* *F = *F . *F.
* (which makes the 'F' typeglob an alias to the
* '*main::F*main::F' typeglob).
*/
goto do_magical;
}
else if (targ_chain)
/* targ was found on RHS.
* Force stringify it, using the same code as the append branch
* above, except that we don't need the magic/overload/undef
* checks as these will already have been done in the phase 1
* loop.
*/
goto stringify_targ;
/* unrolled SvPVCLEAR() - mostly: no need to grow or set SvCUR() to 0;
* those will be done later. */
SV_CHECK_THINKFIRST_COW_DROP(targ);
SvUPGRADE(targ, SVt_PV);
SvFLAGS(targ) &= ~(SVf_OK|SVf_IVisUV|SVf_UTF8);
SvFLAGS(targ) |= (SVf_POK|SVp_POK|dst_utf8);
phase3:
/* --------------------------------------------------------------
* Phase 3:
*
* UTF-8 tweaks and grow targ:
*
* Now that we know the length and utf8-ness of both the targ and
* args, grow targ to the size needed to accumulate all the args, based
* on whether targ appears on the RHS, whether we're appending, and
* whether any non-utf8 args expand in size if converted to utf8.
*
* For the latter, if dst_utf8 we scan non-utf8 args looking for
* variant chars, and adjust the svpv->len value of those args to the
* utf8 size and negate it to flag them. At the same time we un-negate
* the lens of any utf8 args since after this phase we no longer care
* whether an arg is utf8 or not.
*
* Finally, initialise const_lens and const_pv based on utf8ness.
* Note that there are 3 permutations:
*
* * If the constant string is invariant whether utf8 or not (e.g. "abc"),
* then aux[PERL_MULTICONCAT_IX_PLAIN_PV/LEN] are the same as
* aux[PERL_MULTICONCAT_IX_UTF8_PV/LEN] and there is one set of
* segment lengths.
*
* * If the string is fully utf8, e.g. "\x{100}", then
* aux[PERL_MULTICONCAT_IX_PLAIN_PV/LEN] == (NULL,0) and there is
* one set of segment lengths.
*
* * If the string has different plain and utf8 representations
* (e.g. "\x80"), then aux[PERL_MULTICONCAT_IX_PLAIN_PV/LEN]]
* holds the plain rep, while aux[PERL_MULTICONCAT_IX_UTF8_PV/LEN]
* holds the utf8 rep, and there are 2 sets of segment lengths,
* with the utf8 set following after the plain set.
*
* On entry to this section the (pv,len) pairs in svpv_buf have the
* following meanings:
* (pv, len) a plain string
* (pv, -len) a utf8 string
* (NULL, 0) left-most targ \ linked together R-to-L
* (next, 0) other targ / in targ_chain
*/
/* turn off utf8 handling if 'use bytes' is in scope */
if (UNLIKELY(dst_utf8 && IN_BYTES)) {
dst_utf8 = 0;
SvUTF8_off(targ);
/* undo all the negative lengths which flag utf8-ness */
for (svpv_p = svpv_buf; svpv_p < svpv_end; svpv_p++) {
SSize_t len = svpv_p->len;
if (len < 0)
svpv_p->len = -len;
}
}
/* grow += total of lengths of constant string segments */
{
SSize_t len;
len = aux[dst_utf8 ? PERL_MULTICONCAT_IX_UTF8_LEN
: PERL_MULTICONCAT_IX_PLAIN_LEN].ssize;
slow_concat = cBOOL(len);
grow += len;
}
const_lens = aux + PERL_MULTICONCAT_IX_LENGTHS;
if (dst_utf8) {
const_pv = aux[PERL_MULTICONCAT_IX_UTF8_PV].pv;
if ( aux[PERL_MULTICONCAT_IX_PLAIN_PV].pv
&& const_pv != aux[PERL_MULTICONCAT_IX_PLAIN_PV].pv)
/* separate sets of lengths for plain and utf8 */
const_lens += nargs + 1;
/* If the result is utf8 but some of the args aren't,
* calculate how much extra growth is needed for all the chars
* which will expand to two utf8 bytes.
* Also, if the growth is non-zero, negate the length to indicate
* that this is a variant string. Conversely, un-negate the
* length on utf8 args (which was only needed to flag non-utf8
* args in this loop */
for (svpv_p = svpv_buf; svpv_p < svpv_end; svpv_p++) {
SSize_t len, extra;
len = svpv_p->len;
if (len <= 0) {
svpv_p->len = -len;
continue;
}
extra = variant_under_utf8_count((U8 *) svpv_p->pv,
(U8 *) svpv_p->pv + len);
if (UNLIKELY(extra)) {
grow += extra;
/* -ve len indicates special handling */
svpv_p->len = -(len + extra);
slow_concat = TRUE;
}
}
}
else
const_pv = aux[PERL_MULTICONCAT_IX_PLAIN_PV].pv;
/* unrolled SvGROW(), except don't check for SVf_IsCOW, which should
* already have been dropped */
assert(!SvIsCOW(targ));
targ_pv = (SvLEN(targ) < (grow) ? sv_grow(targ,grow) : SvPVX(targ));
/* --------------------------------------------------------------
* Phase 4:
*
* Now that targ has been grown, we know the final address of the targ
* PVX, if needed. Preserve / move targ contents if appending or if
* targ appears on RHS.
*
* Also update svpv_buf slots in targ_chain.
*
* Don't bother with any of this if the target length is zero:
* targ_len is set to zero unless we're appending or targ appears on
* RHS. And even if it is, we can optimise by skipping this chunk of
* code for zero targ_len. In the latter case, we don't need to update
* the slots in targ_chain with the (zero length) target string, since
* we set the len in such slots to 0 earlier, and since the Copy() is
* skipped on zero length, it doesn't matter what svpv_p->pv contains.
*
* On entry to this section the (pv,len) pairs in svpv_buf have the
* following meanings:
* (pv, len) a pure-plain or utf8 string
* (pv, -(len+extra)) a plain string which will expand by 'extra'
* bytes when converted to utf8
* (NULL, 0) left-most targ \ linked together R-to-L
* (next, 0) other targ / in targ_chain
*
* On exit, the targ contents will have been moved to the
* earliest place they are needed (e.g. $x = "abc$x" will shift them
* 3 bytes, while $x .= ... will leave them at the beginning);
* and dst_pv will point to the location within SvPVX(targ) where the
* next arg should be copied.
*/
svpv_base = svpv_buf;
if (targ_len) {
struct multiconcat_svpv *tc_stop;
char *targ_buf = targ_pv; /* ptr to original targ string */
assert(is_append || targ_count);
if (is_append) {
targ_pv += targ_len;
tc_stop = NULL;
}
else {
/* The targ appears on RHS, e.g. '$t = $a . $t . $t'.
* Move the current contents of targ to the first
* position where it's needed, and use that as the src buffer
* for any further uses (such as the second RHS $t above).
* In calculating the first position, we need to sum the
* lengths of all consts and args before that.
*/
UNOP_AUX_item *lens = const_lens;
/* length of first const string segment */
STRLEN offset = lens->ssize > 0 ? lens->ssize : 0;
assert(targ_chain);
svpv_p = svpv_base;
for (;;) {
SSize_t len;
if (!svpv_p->pv)
break; /* the first targ argument */
/* add lengths of the next arg and const string segment */
len = svpv_p->len;
if (len < 0) /* variant args have this */
len = -len;
offset += (STRLEN)len;
len = (++lens)->ssize;
offset += (len >= 0) ? (STRLEN)len : 0;
if (!offset) {
/* all args and consts so far are empty; update
* the start position for the concat later */
svpv_base++;
const_lens++;
}
svpv_p++;
assert(svpv_p < svpv_end);
}
if (offset) {
targ_buf += offset;
Move(targ_pv, targ_buf, targ_len, char);
/* a negative length implies don't Copy(), but do increment */
svpv_p->len = -((SSize_t)targ_len);
slow_concat = TRUE;
}
else {
/* skip the first targ copy */
svpv_base++;
const_lens++;
targ_pv += targ_len;
}
/* Don't populate the first targ slot in the loop below; it's
* either not used because we advanced svpv_base beyond it, or
* we already stored the special -targ_len value in it
*/
tc_stop = svpv_p;
}
/* populate slots in svpv_buf representing targ on RHS */
while (targ_chain != tc_stop) {
struct multiconcat_svpv *p = targ_chain;
targ_chain = (struct multiconcat_svpv *)(p->pv);
p->pv = targ_buf;
p->len = (SSize_t)targ_len;
}
}
/* --------------------------------------------------------------
* Phase 5:
*
* Append all the args in svpv_buf, plus the const strings, to targ.
*
* On entry to this section the (pv,len) pairs in svpv_buf have the
* following meanings:
* (pv, len) a pure-plain or utf8 string (which may be targ)
* (pv, -(len+extra)) a plain string which will expand by 'extra'
* bytes when converted to utf8
* (0, -len) left-most targ, whose content has already
* been copied. Just advance targ_pv by len.
*/
/* If there are no constant strings and no special case args
* (svpv_p->len < 0), use a simpler, more efficient concat loop
*/
if (!slow_concat) {
for (svpv_p = svpv_base; svpv_p < svpv_end; svpv_p++) {
SSize_t len = svpv_p->len;
if (!len)
continue;
Copy(svpv_p->pv, targ_pv, len, char);
targ_pv += len;
}
const_lens += (svpv_end - svpv_base + 1);
}
else {
/* Note that we iterate the loop nargs+1 times: to append nargs
* arguments and nargs+1 constant strings. For example, "-$a-$b-"
*/
svpv_p = svpv_base;
for (;;) {
SSize_t len = (const_lens++)->ssize;
/* append next const string segment */
if (len > 0) {
Copy(const_pv, targ_pv, len, char);
targ_pv += len;
const_pv += len;
}
if (svpv_p == svpv_end)
break;
/* append next arg */
len = svpv_p->len;
if (LIKELY(len > 0)) {
Copy(svpv_p->pv, targ_pv, len, char);
targ_pv += len;
}
else if (UNLIKELY(len < 0)) {
/* negative length indicates two special cases */
const char *p = svpv_p->pv;
len = -len;
if (UNLIKELY(p)) {
/* copy plain-but-variant pv to a utf8 targ */
char * end_pv = targ_pv + len;
assert(dst_utf8);
while (targ_pv < end_pv) {
U8 c = (U8) *p++;
append_utf8_from_native_byte(c, (U8**)&targ_pv);
}
}
else
/* arg is already-copied targ */
targ_pv += len;
}
++svpv_p;
}
}
*targ_pv = '\0';
SvCUR_set(targ, targ_pv - SvPVX(targ));
assert(grow >= SvCUR(targ) + 1);
assert(SvLEN(targ) >= SvCUR(targ) + 1);
/* --------------------------------------------------------------
* Phase 6:
*
* return result
*/
rpp_popfree_to_NN(PL_stack_sp - stack_adj);
SvTAINT(targ);
SvSETMAGIC(targ);
rpp_push_1(targ);
return NORMAL;
/* --------------------------------------------------------------
* Phase 7:
*
* We only get here if any of the args (or targ too in the case of
* append) have something which might cause side effects, such
* as magic, overload, or an undef value in the presence of warnings.
* In that case, any earlier attempt to stringify the args will have
* been abandoned, and we come here instead.
*
* Here, we concat each arg in turn the old-fashioned way: essentially
* emulating pp_concat() in a loop. This means that all the weird edge
* cases will be handled correctly, if not necessarily speedily.
*
* Note that some args may already have been stringified - those are
* processed again, which is safe, since only args without side-effects
* were stringified earlier.
*/
do_magical:
{
SSize_t i, n;
SV *left = NULL;
SV *right;
SV* nexttarg;
bool nextappend;
U32 utf8 = 0;
SV **svp;
const char *cpv = aux[PERL_MULTICONCAT_IX_PLAIN_PV].pv;
SV *csv = NULL; /* SV which will hold cpv */
UNOP_AUX_item *lens = aux + PERL_MULTICONCAT_IX_LENGTHS;
Size_t arg_count = 0; /* how many args have been processed */
if (!cpv) {
cpv = aux[PERL_MULTICONCAT_IX_UTF8_PV].pv;
utf8 = SVf_UTF8;
}
svp = toparg - nargs + 1;
/* iterate for:
* nargs arguments,
* plus possible nargs+1 consts,
* plus, if appending, a final targ in an extra last iteration
*/
n = nargs *2 + 1;
for (i = 0; i <= n; i++) {
SSize_t len;
/* if necessary, stringify the final RHS result in
* something like $targ .= "$a$b$c" - simulating
* pp_stringify
*/
if ( i == n
&& (PL_op->op_private &OPpMULTICONCAT_STRINGIFY)
&& !(SvPOK(left))
/* extra conditions for backwards compatibility:
* probably incorrect, but keep the existing behaviour
* for now. The rules are:
* $x = "$ov" single arg: stringify;
* $x = "$ov$y" multiple args: don't stringify,
* $lex = "$ov$y$z" except TARGMY with at least 2 concats
*/
&& ( arg_count == 1
|| ( arg_count >= 3
&& !is_append
&& (PL_op->op_private & OPpTARGET_MY)
&& !(PL_op->op_private & OPpLVAL_INTRO)
)
)
)
{
assert(aux[PERL_MULTICONCAT_IX_PADTMP2].pad_offset);
SV *tmp = PAD_SV(aux[PERL_MULTICONCAT_IX_PADTMP2].pad_offset);
sv_copypv(tmp, left);
SvSETMAGIC(tmp);
left = tmp;
}
/* do one extra iteration to handle $targ in $targ .= ... */
if (i == n && !is_append)
break;
/* get the next arg SV or regen the next const SV */
len = lens[i >> 1].ssize;
if (i == n) {
/* handle the final targ .= (....) */
right = left;
left = targ;
}
else if (i & 1)
right = svp[(i >> 1)];
else if (len < 0)
continue; /* no const in this position */
else {
/* Use one of our PADTMPs to fake up the SV which would
* have been returned by an OP_CONST. Try to reuse it if
* possible. If the refcount has gone up, something like
* overload code has taken a reference to it, so abandon
* it */
if (!csv || SvREFCNT(csv) > 1 || SvLEN(csv) != 0) {
if (csv)
csv = newSV_type_mortal(SVt_PV);
else {
assert(aux[PERL_MULTICONCAT_IX_PADTMP1].pad_offset);
csv = PAD_SV(
aux[PERL_MULTICONCAT_IX_PADTMP1].pad_offset);
SvUPGRADE(csv, SVt_PV);
}
if (utf8)
SvUTF8_on(csv);
SvREADONLY_on(csv);
SvPOK_on(csv);
}
/* use the const string buffer directly with the
* SvLEN==0 trick */
/* cast away constness because we think we know it's safe
* (SvREADONLY) */
SvPV_set(csv, (char *)cpv);
SvLEN_set(csv, 0);
SvCUR_set(csv, len);
right = csv;
cpv += len;
}
arg_count++;
if (arg_count <= 1) {
left = right;
continue; /* need at least two SVs to concat together */
}
if (arg_count == 2 && i < n) {
/* for the first concat, use one of the PADTMPs to emulate
* the PADTMP from OP_CONST. In later iterations this will
* be appended to */
nexttarg = PAD_SV(aux[PERL_MULTICONCAT_IX_PADTMP0].pad_offset);
nextappend = FALSE;
}
else {
nexttarg = left;
nextappend = TRUE;
}
/* Handle possible overloading.
* This is basically an unrolled
* tryAMAGICbin_MG(concat_amg, AMGf_assign);
* and
* Perl_try_amagic_bin()
* call, but using left and right rather than
* PL_stack_sp[-1], PL_stack_sp[0],
* and not relying on OPf_STACKED implying .=
*/
if ((SvFLAGS(left)|SvFLAGS(right)) & (SVf_ROK|SVs_GMG)) {
SvGETMAGIC(left);
if (left != right)
SvGETMAGIC(right);
if ((SvAMAGIC(left) || SvAMAGIC(right))
/* sprintf doesn't do concat overloading,
* but allow for $x .= sprintf(...)
*/
&& ( !(PL_op->op_private & OPpMULTICONCAT_FAKE)
|| i == n)
)
{
SV * const tmpsv = amagic_call(left, right, concat_amg,
(nextappend ? AMGf_assign: 0));
if (tmpsv) {
/* NB: tryAMAGICbin_MG() includes an OPpTARGET_MY test
* here, which isn't needed as any implicit
* assign done under OPpTARGET_MY is done after
* this loop */
if (nextappend) {
sv_setsv(left, tmpsv);
SvSETMAGIC(left);
}
else
left = tmpsv;
continue;
}
}
/* if both args are the same magical value, make one a copy */
if (left == right && SvGMAGICAL(left)) {
SV * targetsv = right;
/* Print the uninitialized warning now, so it includes the
* variable name. */
if (!SvOK(right)) {
if (ckWARN(WARN_UNINITIALIZED))
report_uninit(right);
targetsv = &PL_sv_no;
}
left = sv_mortalcopy_flags(targetsv, 0);
SvGETMAGIC(right);
}
}
/* nexttarg = left . right */
S_do_concat(aTHX_ left, right, nexttarg, 0);
left = nexttarg;
}
/* Return the result of all RHS concats, unless this op includes
* an assign ($lex = x.y.z or expr = x.y.z), in which case copy
* to target (which will be $lex or expr).
* If we are appending, targ will already have been appended to in
* the loop */
if ( !is_append
&& ( (PL_op->op_flags & OPf_STACKED)
|| (PL_op->op_private & OPpTARGET_MY))
) {
sv_setsv(targ, left);
SvSETMAGIC(targ);
}
else
targ = left;
rpp_popfree_to_NN(PL_stack_sp - stack_adj);
rpp_push_1(targ);
return NORMAL;
}
}
/* push the elements of av onto the stack.
* Returns PL_op->op_next to allow tail-call optimisation of its callers */
STATIC OP*
S_pushav(pTHX_ AV* const av)
{
const SSize_t maxarg = AvFILL(av) + 1;
rpp_extend(maxarg);
if (UNLIKELY(SvRMAGICAL(av))) {
PADOFFSET i;
for (i=0; i < (PADOFFSET)maxarg; i++) {
SV ** const svp = av_fetch(av, i, FALSE);
rpp_push_1(LIKELY(svp)
? *svp
: UNLIKELY(PL_op->op_flags & OPf_MOD)
? av_nonelem(av,i)
: &PL_sv_undef
);
}
}
else {
PADOFFSET i;
for (i=0; i < (PADOFFSET)maxarg; i++) {
SV *sv = AvARRAY(av)[i];
rpp_push_1(LIKELY(sv)
? sv
: UNLIKELY(PL_op->op_flags & OPf_MOD)
? av_nonelem(av,i)
: &PL_sv_undef
);
}
}
return NORMAL;
}
/* ($lex1,@lex2,...) or my ($lex1,@lex2,...) */
PP(pp_padrange)
{
PADOFFSET base = PL_op->op_targ;
int count = (int)(PL_op->op_private) & OPpPADRANGE_COUNTMASK;
if (PL_op->op_flags & OPf_SPECIAL) {
/* fake the RHS of my ($x,$y,..) = @_ */
PUSHMARK(PL_stack_sp);
(void)S_pushav(aTHX_ GvAVn(PL_defgv));
}
/* note, this is only skipped for compile-time-known void cxt */
if ((PL_op->op_flags & OPf_WANT) != OPf_WANT_VOID) {
int i;
rpp_extend(count);
PUSHMARK(PL_stack_sp);
for (i = 0; i <count; i++)
rpp_push_1(PAD_SV(base+i));
}
if (PL_op->op_private & OPpLVAL_INTRO) {
SV **svp = &(PAD_SVl(base));
const UV payload = (UV)(
(base << (OPpPADRANGE_COUNTSHIFT + SAVE_TIGHT_SHIFT))
| (count << SAVE_TIGHT_SHIFT)
| SAVEt_CLEARPADRANGE);
int i;
STATIC_ASSERT_STMT(OPpPADRANGE_COUNTMASK + 1 == (1 << OPpPADRANGE_COUNTSHIFT));
assert((payload >> (OPpPADRANGE_COUNTSHIFT+SAVE_TIGHT_SHIFT))
== (Size_t)base);
{
dSS_ADD;
SS_ADD_UV(payload);
SS_ADD_END(1);
}
for (i = 0; i <count; i++)
SvPADSTALE_off(*svp++); /* mark lexical as active */
}
return NORMAL;
}
PP(pp_padsv)
{
{
OP * const op = PL_op;
/* access PL_curpad once */
SV ** const padentry = &(PAD_SVl(op->op_targ));
{
dTARG;
TARG = *padentry;
rpp_xpush_1(TARG);
}
if (op->op_flags & OPf_MOD) {
if (op->op_private & OPpLVAL_INTRO)
if (!(op->op_private & OPpPAD_STATE))
save_clearsv(padentry);
if (op->op_private & OPpDEREF) {
/* *sp is equivalent to TARG here. Using *sp rather
than TARG reduces the scope of TARG, so it does not
span the call to save_clearsv, resulting in smaller
machine code. */
rpp_replace_1_1_NN(
vivify_ref(*PL_stack_sp, op->op_private & OPpDEREF));
}
}
return op->op_next;
}
}
/* Implement readline(), and also <X> and <<X>> in the cases where X is
* seen by the parser as file-handle-ish rather than glob-ish.
*
* It expects at least one arg: the typeglob or scalar filehandle to read
* from. An empty <> isn't handled specially by this op; instead the parser
* will have planted a preceding gv(*ARGV) op.
*
* Scalar assignment is optimised away by making the assignment target be
* passed as a second argument, with OPf_STACKED set. For example,
*
* $x[$i] = readline($fh);
*
* is implemented as if written as
*
* readline($x[$i], $fh);
*
* (that is, if the perl-level readline function took two args, which it
* doesn't). The 'while (<>) {...}' construct is handled specially by the
* parser, but not specially by this op. The parser treats the condition
* as
*
* defined($_ = <>)
*
* which is then optimised into the equivalent of
*
* defined(readline($_, *ARGV))
*
* When called as a real function, e.g. (\&CORE::readline)->(*STDIN),
* pp_coreargs() will have pushed a NULL if no argument was supplied.
*
* The parser decides whether '<something>' in the perl src code causes an
* OP_GLOB or an OP_READLINE op to be planted.
*/
PP(pp_readline)
{
SV *arg = *PL_stack_sp;
/* pp_coreargs pushes a NULL to indicate no args passed to
* CORE::readline() */
if (arg) {
SvGETMAGIC(arg);
/* unrolled tryAMAGICunTARGETlist(iter_amg, 0) */
SV *tmpsv;
U8 gimme = GIMME_V;
if (UNLIKELY(SvAMAGIC(arg) &&
(tmpsv = amagic_call(arg, &PL_sv_undef, iter_amg,
AMGf_want_list | AMGf_noright
|AMGf_unary))))
{
if (gimme == G_VOID) {
NOOP;
}
else if (gimme == G_LIST) {
SSize_t i;
SSize_t len;
assert(SvTYPE(tmpsv) == SVt_PVAV);
len = av_count((AV *)tmpsv);
assert(*PL_stack_sp == arg);
rpp_popfree_1_NN(); /* pop the original filehhandle arg */
/* no assignment target to pop */
assert(!(PL_op->op_flags & OPf_STACKED));
rpp_extend(len);
for (i = 0; i < len; ++i)
/* amagic_call() naughtily doesn't increment the ref counts
* of the items it pushes onto the temporary array. So we
* don't need to decrement them when shifting off. */
rpp_push_1(av_shift((AV *)tmpsv));
}
else { /* AMGf_want_scalar */
/* OPf_STACKED: assignment optimised away and target
* on stack */
SV *targ = (PL_op->op_flags & OPf_STACKED)
? PL_stack_sp[-1]
: PAD_SV(PL_op->op_targ);
sv_setsv(targ, tmpsv);
SvSETMAGIC(targ);
if (PL_op->op_flags & OPf_STACKED) {
rpp_popfree_1_NN();
assert(*PL_stack_sp == targ);
}
else
rpp_replace_1_1_NN(targ);
}
return NORMAL;
}
/* end of unrolled tryAMAGICunTARGETlist */
PL_last_in_gv = MUTABLE_GV(*PL_stack_sp);
#ifdef PERL_RC_STACK
/* PL_last_in_gv appears to be non-refcounted, so won't keep
* GV alive */
if (SvREFCNT(PL_last_in_gv) < 2)
sv_2mortal((SV*)PL_last_in_gv);
#endif
rpp_popfree_1_NN();
}
else {
PL_last_in_gv = PL_argvgv;
PL_stack_sp--;
}
/* is it *FOO, $fh, or 'FOO' ? */
if (!isGV_with_GP(PL_last_in_gv)) {
if (SvROK(PL_last_in_gv) && isGV_with_GP(SvRV(PL_last_in_gv)))
PL_last_in_gv = MUTABLE_GV(SvRV(PL_last_in_gv));
else {
rpp_xpush_1(MUTABLE_SV(PL_last_in_gv));
Perl_pp_rv2gv(aTHX);
PL_last_in_gv = MUTABLE_GV(*PL_stack_sp);
rpp_popfree_1_NN();
assert( (SV*)PL_last_in_gv == &PL_sv_undef
|| isGV_with_GP(PL_last_in_gv));
}
}
return do_readline();
}
PP(pp_eq)
{
if (rpp_try_AMAGIC_2(eq_amg, AMGf_numeric))
return NORMAL;
SV *right = PL_stack_sp[0];
SV *left = PL_stack_sp[-1];
U32 flags_and = SvFLAGS(left) & SvFLAGS(right);
U32 flags_or = SvFLAGS(left) | SvFLAGS(right);
rpp_replace_2_IMM_NN(boolSV(
( (flags_and & SVf_IOK) && ((flags_or & SVf_IVisUV) ==0 ) )
? (SvIVX(left) == SvIVX(right))
: (flags_and & SVf_NOK)
? (SvNVX(left) == SvNVX(right))
: ( do_ncmp(left, right) == 0)
));
return NORMAL;
}
/* also used for: pp_i_preinc() */
PP(pp_preinc)
{
SV *sv = *PL_stack_sp;
if (LIKELY(((sv->sv_flags &
(SVf_THINKFIRST|SVs_GMG|SVf_IVisUV|
SVf_IOK|SVf_NOK|SVf_POK|SVp_NOK|SVp_POK|SVf_ROK))
== SVf_IOK))
&& SvIVX(sv) != IV_MAX)
{
SvIV_set(sv, SvIVX(sv) + 1);
}
else /* Do all the PERL_PRESERVE_IVUV and hard cases in sv_inc */
sv_inc(sv);
SvSETMAGIC(sv);
return NORMAL;
}
/* also used for: pp_i_predec() */
PP(pp_predec)
{
SV *sv = *PL_stack_sp;
if (LIKELY(((sv->sv_flags &
(SVf_THINKFIRST|SVs_GMG|SVf_IVisUV|
SVf_IOK|SVf_NOK|SVf_POK|SVp_NOK|SVp_POK|SVf_ROK))
== SVf_IOK))
&& SvIVX(sv) != IV_MIN)
{
SvIV_set(sv, SvIVX(sv) - 1);
}
else /* Do all the PERL_PRESERVE_IVUV and hard cases in sv_dec */
sv_dec(sv);
SvSETMAGIC(sv);
return NORMAL;
}
/* also used for: pp_orassign() */
PP(pp_or)
{
SV *sv;
PERL_ASYNC_CHECK();
sv = *PL_stack_sp;
if (SvTRUE_NN(sv))
return NORMAL;
else {
if (PL_op->op_type == OP_OR)
rpp_popfree_1_NN();
return cLOGOP->op_other;
}
}
/* also used for: pp_dor() pp_dorassign() */
PP(pp_defined)
{
SV* sv = *PL_stack_sp;
bool defined = FALSE;
const int op_type = PL_op->op_type;
const bool is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN);
if (is_dor) {
PERL_ASYNC_CHECK();
if (UNLIKELY(!sv || !SvANY(sv))) {
if (op_type == OP_DOR)
rpp_popfree_1();
return cLOGOP->op_other;
}
}
else {
/* OP_DEFINED */
if (UNLIKELY(!sv || !SvANY(sv))) {
rpp_replace_1_1(&PL_sv_no);
return NORMAL;
}
}
/* Historically what followed was a switch on SvTYPE(sv), handling SVt_PVAV,
* SVt_PVCV, SVt_PVHV and "default". `defined &sub` is still valid syntax,
* hence we still need the special case PVCV code. But AVs and HVs now
* should never arrive here... */
#ifdef DEBUGGING
assert(SvTYPE(sv) != SVt_PVAV);
assert(SvTYPE(sv) != SVt_PVHV);
#endif
if (UNLIKELY(SvTYPE(sv) == SVt_PVCV)) {
if (CvROOT(sv) || CvXSUB(sv))
defined = TRUE;
}
else {
SvGETMAGIC(sv);
if (SvOK(sv))
defined = TRUE;
}
if (is_dor) {
if(defined)
return NORMAL;
if(op_type == OP_DOR)
rpp_popfree_1_NN();
return cLOGOP->op_other;
}
/* assuming OP_DEFINED */
rpp_replace_1_IMM_NN(defined ? &PL_sv_yes : &PL_sv_no);
return NORMAL;
}
PP(pp_add)
{
bool useleft; SV *svl, *svr;
SV *targ = (PL_op->op_flags & OPf_STACKED)
? PL_stack_sp[-1]
: PAD_SV(PL_op->op_targ);
if (rpp_try_AMAGIC_2(add_amg, AMGf_assign|AMGf_numeric))
return NORMAL;
svr = PL_stack_sp[0];
svl = PL_stack_sp[-1];
#ifdef PERL_PRESERVE_IVUV
/* special-case some simple common cases */
if (!((svl->sv_flags|svr->sv_flags) & (SVf_IVisUV|SVs_GMG))) {
IV il, ir;
U32 flags = (svl->sv_flags & svr->sv_flags);
if (flags & SVf_IOK) {
/* both args are simple IVs */
UV topl, topr;
il = SvIVX(svl);
ir = SvIVX(svr);
do_iv:
topl = ((UV)il) >> (UVSIZE * 8 - 2);
topr = ((UV)ir) >> (UVSIZE * 8 - 2);
/* if both are in a range that can't under/overflow, do a
* simple integer add: if the top of both numbers
* are 00 or 11, then it's safe */
if (!( ((topl+1) | (topr+1)) & 2)) {
TARGi(il + ir, 0); /* args not GMG, so can't be tainted */
goto ret;
}
goto generic;
}
else if (flags & SVf_NOK) {
/* both args are NVs */
NV nl = SvNVX(svl);
NV nr = SvNVX(svr);
if (lossless_NV_to_IV(nl, &il) && lossless_NV_to_IV(nr, &ir)) {
/* nothing was lost by converting to IVs */
goto do_iv;
}
TARGn(nl + nr, 0); /* args not GMG, so can't be tainted */
goto ret;
}
}
generic:
useleft = USE_LEFT(svl);
/* We must see if we can perform the addition with integers if possible,
as the integer code detects overflow while the NV code doesn't.
If either argument hasn't had a numeric conversion yet attempt to get
the IV. It's important to do this now, rather than just assuming that
it's not IOK as a PV of "9223372036854775806" may not take well to NV
addition, and an SV which is NOK, NV=6.0 ought to be coerced to
integer in case the second argument is IV=9223372036854775806
We can (now) rely on sv_2iv to do the right thing, only setting the
public IOK flag if the value in the NV (or PV) slot is truly integer.
A side effect is that this also aggressively prefers integer maths over
fp maths for integer values.
How to detect overflow?
C 99 section 6.2.6.1 says
The range of nonnegative values of a signed integer type is a subrange
of the corresponding unsigned integer type, and the representation of
the same value in each type is the same. A computation involving
unsigned operands can never overflow, because a result that cannot be
represented by the resulting unsigned integer type is reduced modulo
the number that is one greater than the largest value that can be
represented by the resulting type.
(the 9th paragraph)
which I read as "unsigned ints wrap."
signed integer overflow seems to be classed as "exception condition"
If an exceptional condition occurs during the evaluation of an
expression (that is, if the result is not mathematically defined or not
in the range of representable values for its type), the behavior is
undefined.
(6.5, the 5th paragraph)
I had assumed that on 2s complement machines signed arithmetic would
wrap, hence coded pp_add and pp_subtract on the assumption that
everything perl builds on would be happy. After much wailing and
gnashing of teeth it would seem that irix64 knows its ANSI spec well,
knows that it doesn't need to, and doesn't. Bah. Anyway, the all-
unsigned code below is actually shorter than the old code. :-)
*/
if (SvIV_please_nomg(svr)) {
/* Unless the left argument is integer in range we are going to have to
use NV maths. Hence only attempt to coerce the right argument if
we know the left is integer. */
UV auv = 0;
bool auvok = FALSE;
bool a_valid = 0;
if (!useleft) {
auv = 0;
a_valid = auvok = 1;
/* left operand is undef, treat as zero. + 0 is identity,
Could TARGi or TARGu right now, but space optimise by not
adding lots of code to speed up what is probably a rare-ish
case. */
} else {
/* Left operand is defined, so is it IV? */
if (SvIV_please_nomg(svl)) {
if ((auvok = SvUOK(svl)))
auv = SvUVX(svl);
else {
const IV aiv = SvIVX(svl);
if (aiv >= 0) {
auv = aiv;
auvok = 1; /* Now acting as a sign flag. */
} else {
/* Using 0- here and later to silence bogus warning
* from MS VC */
auv = (UV) (0 - (UV) aiv);
}
}
a_valid = 1;
}
}
if (a_valid) {
bool result_good = 0;
UV result;
UV buv;
bool buvok = SvUOK(svr);
if (buvok)
buv = SvUVX(svr);
else {
const IV biv = SvIVX(svr);
if (biv >= 0) {
buv = biv;
buvok = 1;
} else
buv = (UV) (0 - (UV) biv);
}
/* ?uvok if value is >= 0. basically, flagged as UV if it's +ve,
else "IV" now, independent of how it came in.
if a, b represents positive, A, B negative, a maps to -A etc
a + b => (a + b)
A + b => -(a - b)
a + B => (a - b)
A + B => -(a + b)
all UV maths. negate result if A negative.
add if signs same, subtract if signs differ. */
if (auvok ^ buvok) {
/* Signs differ. */
if (auv >= buv) {
result = auv - buv;
/* Must get smaller */
if (result <= auv)
result_good = 1;
} else {
result = buv - auv;
if (result <= buv) {
/* result really should be -(auv-buv). as its negation
of true value, need to swap our result flag */
auvok = !auvok;
result_good = 1;
}
}
} else {
/* Signs same */
result = auv + buv;
if (result >= auv)
result_good = 1;
}
if (result_good) {
if (auvok)
TARGu(result,1);
else {
/* Negate result */
if (result <= (UV)IV_MIN)
TARGi(result == (UV)IV_MIN
? IV_MIN : -(IV)result, 1);
else {
/* result valid, but out of range for IV. */
TARGn(-(NV)result, 1);
}
}
goto ret;
} /* Overflow, drop through to NVs. */
}
}
#else
useleft = USE_LEFT(svl);
#endif
{
NV value = SvNV_nomg(svr);
if (!useleft) {
/* left operand is undef, treat as zero. + 0.0 is identity. */
TARGn(value, 1);
}
else {
TARGn(value + SvNV_nomg(svl), 1);
}
}
ret:
rpp_replace_2_1_NN(targ);
return NORMAL;
}
/* also used for: pp_aelemfast_lex() */
PP(pp_aelemfast)
{
AV * const av = PL_op->op_type == OP_AELEMFAST_LEX
? MUTABLE_AV(PAD_SV(PL_op->op_targ)) : GvAVn(cGVOP_gv);
const U32 lval = PL_op->op_flags & OPf_MOD;
const I8 key = (I8)PL_op->op_private;
SV** svp;
SV *sv;
assert(SvTYPE(av) == SVt_PVAV);
/* inlined av_fetch() for simple cases ... */
if (!SvRMAGICAL(av) && key >= 0 && key <= AvFILLp(av)) {
sv = AvARRAY(av)[key];
if (sv)
goto ret;
if (!lval) {
sv = &PL_sv_undef;
goto ret;
}
}
/* ... else do it the hard way */
svp = av_fetch(av, key, lval);
sv = (svp ? *svp : &PL_sv_undef);
if (UNLIKELY(!svp && lval))
DIE(aTHX_ PL_no_aelem, (int)key);
if (!lval && SvRMAGICAL(av) && SvGMAGICAL(sv)) /* see note in pp_helem() */
mg_get(sv);
ret:
rpp_xpush_1(sv);
return NORMAL;
}
PP(pp_join)
{
dMARK; dTARGET;
MARK++;
do_join(TARG, *MARK, MARK, PL_stack_sp);
rpp_popfree_to_NN(MARK - 1);
rpp_push_1(TARG);
return NORMAL;
}
/* Oversized hot code. */
/* also used for: pp_say() */
PP(pp_print)
{
dMARK; dORIGMARK;
PerlIO *fp;
MAGIC *mg;
GV * const gv
= (PL_op->op_flags & OPf_STACKED) ? MUTABLE_GV(*++MARK) : PL_defoutgv;
IO *io = GvIO(gv);
SV *retval = &PL_sv_undef;
if (io
&& (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
{
had_magic:
if (MARK == ORIGMARK) {
/* If using default handle then we need to make space to
* pass object as 1st arg, so move other args up ...
*/
rpp_extend(1);
MARK = ORIGMARK; /* stack may have been realloced */
++MARK;
Move(MARK, MARK + 1, (PL_stack_sp - MARK) + 1, SV*);
*MARK = NULL;
++PL_stack_sp;
}
return Perl_tied_method(aTHX_ SV_CONST(PRINT), mark - 1, MUTABLE_SV(io),
mg,
(G_SCALAR | TIED_METHOD_ARGUMENTS_ON_STACK
| (PL_op->op_type == OP_SAY
? TIED_METHOD_SAY : 0)),
PL_stack_sp - mark);
}
if (!io) {
if ( gv && GvEGVx(gv) && (io = GvIO(GvEGV(gv)))
&& (mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar)))
goto had_magic;
report_evil_fh(gv);
SETERRNO(EBADF,RMS_IFI);
goto just_say_no;
}
else if (!(fp = IoOFP(io))) {
if (IoIFP(io))
report_wrongway_fh(gv, '<');
else
report_evil_fh(gv);
SETERRNO(EBADF,IoIFP(io)?RMS_FAC:RMS_IFI);
goto just_say_no;
}
else {
SV * const ofs = GvSV(PL_ofsgv); /* $, */
MARK++;
if (ofs && (SvGMAGICAL(ofs) || SvOK(ofs))) {
while (MARK <= PL_stack_sp) {
if (!do_print(*MARK, fp))
break;
MARK++;
if (MARK <= PL_stack_sp) {
/* don't use 'ofs' here - it may be invalidated by magic callbacks */
if (!do_print(GvSV(PL_ofsgv), fp)) {
MARK--;
break;
}
}
}
}
else {
while (MARK <= PL_stack_sp) {
if (!do_print(*MARK, fp))
break;
MARK++;
}
}
if (MARK <= PL_stack_sp)
goto just_say_no;
else {
if (PL_op->op_type == OP_SAY) {
if (PerlIO_write(fp, "\n", 1) == 0 || PerlIO_error(fp))
goto just_say_no;
}
else if (PL_ors_sv && SvOK(PL_ors_sv))
if (!do_print(PL_ors_sv, fp)) /* $\ */
goto just_say_no;
if (IoFLAGS(io) & IOf_FLUSH)
if (PerlIO_flush(fp) == EOF)
goto just_say_no;
}
}
retval = &PL_sv_yes;
just_say_no:
rpp_popfree_to_NN(ORIGMARK);
if ((PL_op->op_flags & OPf_WANT) != OPf_WANT_VOID)
rpp_xpush_IMM(retval);
return NORMAL;
}
/* do the common parts of pp_padhv() and pp_rv2hv()
* It assumes the caller has done rpp_extend(1) or equivalent.
* 'is_keys' indicates the OPpPADHV_ISKEYS/OPpRV2HV_ISKEYS flag is set.
* 'has_targ' indicates that the op has a target - this should
* be a compile-time constant so that the code can constant-folded as
* appropriate. has_targ also implies that the caller has left an
* arg on the stack which needs freeing.
* */
PERL_STATIC_INLINE OP*
S_padhv_rv2hv_common(pTHX_ HV *hv, U8 gimme, bool is_keys, bool has_targ)
{
assert(PL_op->op_type == OP_PADHV || PL_op->op_type == OP_RV2HV);
if (gimme == G_LIST) {
/* push all (key,value) pairs onto stack */
if (has_targ) { /* i.e. if has arg still on stack */
#ifdef PERL_RC_STACK
SSize_t sp_base = PL_stack_sp - PL_stack_base;
hv_pushkv(hv, 3);
/* Now safe to free the original arg on the stack and shuffle
* down one place anything pushed on top of it */
SSize_t nitems = PL_stack_sp - (PL_stack_base + sp_base);
SV *old_sv = PL_stack_sp[-nitems];
if (nitems)
Move(PL_stack_sp - nitems + 1,
PL_stack_sp - nitems, nitems, SV*);
PL_stack_sp--;
SvREFCNT_dec_NN(old_sv);
#else
rpp_popfree_1_NN();
hv_pushkv(hv, 3);
#endif
}
else
hv_pushkv(hv, 3);
return NORMAL;
}
if (is_keys)
/* 'keys %h' masquerading as '%h': reset iterator */
(void)hv_iterinit(hv);
if (gimme == G_VOID) {
if (has_targ)
rpp_popfree_1_NN();
return NORMAL;
}
bool is_bool = ( PL_op->op_private & OPpTRUEBOOL
|| ( PL_op->op_private & OPpMAYBE_TRUEBOOL
&& block_gimme() == G_VOID));
MAGIC *is_tied_mg = SvRMAGICAL(hv)
? mg_find(MUTABLE_SV(hv), PERL_MAGIC_tied)
: NULL;
IV i = 0;
SV *sv = NULL;
if (UNLIKELY(is_tied_mg)) {
if (is_keys && !is_bool) {
i = 0;
while (hv_iternext(hv))
i++;
/* hv finished with. Safe to free arg now */
if (has_targ)
rpp_popfree_1_NN();
goto push_i;
}
else {
sv = magic_scalarpack(hv, is_tied_mg);
/* hv finished with. Safe to free arg now */
if (has_targ)
rpp_popfree_1_NN();
rpp_push_1(sv);
}
}
else {
#if defined(DYNAMIC_ENV_FETCH) && defined(VMS)
/* maybe nothing set up %ENV for iteration yet...
do this always (not just if HvUSEDKEYS(hv) is currently 0) because
we ought to give a *consistent* answer to "how many keys?"
whether we ask this op in scalar context, or get the list of all
keys then check its length, and whether we do either with or without
an %ENV lookup first. prime_env_iter() returns quickly if nothing
needs doing. */
if (SvRMAGICAL((const SV *)hv)
&& mg_find((const SV *)hv, PERL_MAGIC_env)) {
prime_env_iter();
}
#endif
i = HvUSEDKEYS(hv);
/* hv finished with. Safe to free arg now */
if (has_targ)
rpp_popfree_1_NN();
if (is_bool) {
rpp_push_IMM(i ? &PL_sv_yes : &PL_sv_zero);
}
else {
push_i:
if (has_targ) {
dTARGET;
TARGi(i,1);
rpp_push_1(targ);
}
else
if (is_keys) {
/* parent op should be an unused OP_KEYS whose targ we can
* use */
dTARG;
OP *k;
assert(!OpHAS_SIBLING(PL_op));
k = PL_op->op_sibparent;
assert(k->op_type == OP_KEYS);
TARG = PAD_SV(k->op_targ);
TARGi(i,1);
rpp_push_1(targ);
}
else
rpp_push_1_norc(newSViv(i));
}
}
return NORMAL;
}
/* This is also called directly by pp_lvavref. */
PP(pp_padav)
{
dTARGET;
U8 gimme;
assert(SvTYPE(TARG) == SVt_PVAV);
if (UNLIKELY( PL_op->op_private & OPpLVAL_INTRO ))
if (LIKELY( !(PL_op->op_private & OPpPAD_STATE) ))
SAVECLEARSV(PAD_SVl(PL_op->op_targ));
if (PL_op->op_flags & OPf_REF)
goto ret;
if (PL_op->op_private & OPpMAYBE_LVSUB) {
const I32 flags = is_lvalue_sub();
if (flags && !(flags & OPpENTERSUB_INARGS)) {
if (GIMME_V == G_SCALAR)
/* diag_listed_as: Can't return %s to lvalue scalar context */
Perl_croak(aTHX_ "Can't return array to lvalue scalar context");
goto ret;
}
}
gimme = GIMME_V;
if (gimme == G_LIST)
return S_pushav(aTHX_ (AV*)TARG);
if (gimme == G_VOID)
return NORMAL;
{
const SSize_t maxarg = AvFILL(MUTABLE_AV(TARG)) + 1;
rpp_extend(1);
if (!maxarg)
targ = &PL_sv_zero;
else if (PL_op->op_private & OPpTRUEBOOL)
targ = &PL_sv_yes;
else {
rpp_push_1_norc(newSViv(maxarg));
return NORMAL;
}
rpp_push_IMM(targ);
return NORMAL;
}
ret:
rpp_xpush_1(targ);
return NORMAL;
}
PP(pp_padhv)
{
dTARGET;
U8 gimme;
assert(SvTYPE(TARG) == SVt_PVHV);
if (UNLIKELY( PL_op->op_private & OPpLVAL_INTRO ))
if (LIKELY( !(PL_op->op_private & OPpPAD_STATE) ))
SAVECLEARSV(PAD_SVl(PL_op->op_targ));
rpp_extend(1);
if (PL_op->op_flags & OPf_REF) {
rpp_push_1(TARG);
return NORMAL;
}
else if (PL_op->op_private & OPpMAYBE_LVSUB) {
const I32 flags = is_lvalue_sub();
if (flags && !(flags & OPpENTERSUB_INARGS)) {
if (GIMME_V == G_SCALAR)
/* diag_listed_as: Can't return %s to lvalue scalar context */
Perl_croak(aTHX_ "Can't return hash to lvalue scalar context");
rpp_push_1(TARG);
return NORMAL;
}
}
gimme = GIMME_V;
return S_padhv_rv2hv_common(aTHX_ (HV*)TARG, gimme,
cBOOL(PL_op->op_private & OPpPADHV_ISKEYS),
0 /* has_targ*/);
}
/* also used for: pp_rv2hv() */
/* also called directly by pp_lvavref */
PP(pp_rv2av)
{
SV *sv = *PL_stack_sp;
const U8 gimme = GIMME_V;
static const char an_array[] = "an ARRAY";
static const char a_hash[] = "a HASH";
const bool is_pp_rv2av = PL_op->op_type == OP_RV2AV
|| PL_op->op_type == OP_LVAVREF;
const svtype type = is_pp_rv2av ? SVt_PVAV : SVt_PVHV;
SvGETMAGIC(sv);
if (SvROK(sv)) {
if (UNLIKELY(SvAMAGIC(sv))) {
sv = amagic_deref_call(sv, is_pp_rv2av ? to_av_amg : to_hv_amg);
}
sv = SvRV(sv);
if (UNLIKELY(SvTYPE(sv) != type))
/* diag_listed_as: Not an ARRAY reference */
DIE(aTHX_ "Not %s reference", is_pp_rv2av ? an_array : a_hash);
else if (UNLIKELY(PL_op->op_flags & OPf_MOD
&& PL_op->op_private & OPpLVAL_INTRO))
Perl_croak(aTHX_ "%s", PL_no_localize_ref);
}
else if (UNLIKELY(SvTYPE(sv) != type)) {
GV *gv;
if (!isGV_with_GP(sv)) {
gv = Perl_softref2xv(aTHX_ sv, is_pp_rv2av ? an_array : a_hash,
type);
if (!gv)
return NORMAL;
}
else {
gv = MUTABLE_GV(sv);
}
sv = is_pp_rv2av ? MUTABLE_SV(GvAVn(gv)) : MUTABLE_SV(GvHVn(gv));
if (PL_op->op_private & OPpLVAL_INTRO)
sv = is_pp_rv2av ? MUTABLE_SV(save_ary(gv)) : MUTABLE_SV(save_hash(gv));
}
if (PL_op->op_flags & OPf_REF) {
rpp_replace_1_1_NN(sv);
return NORMAL;
}
else if (UNLIKELY(PL_op->op_private & OPpMAYBE_LVSUB)) {
const I32 flags = is_lvalue_sub();
if (flags && !(flags & OPpENTERSUB_INARGS)) {
if (gimme != G_LIST)
goto croak_cant_return;
rpp_replace_1_1_NN(sv);
return NORMAL;
}
}
if (is_pp_rv2av) {
AV *const av = MUTABLE_AV(sv);
if (gimme == G_LIST) {
#ifdef PERL_RC_STACK
SSize_t sp_base = PL_stack_sp - PL_stack_base;
(void)S_pushav(aTHX_ av);
/* Now safe to free the original arg on the stack and shuffle
* down one place anything pushed on top of it */
SSize_t nitems = PL_stack_sp - (PL_stack_base + sp_base);
SV *old_sv = PL_stack_sp[-nitems];
if (nitems)
Move(PL_stack_sp - nitems + 1,
PL_stack_sp - nitems, nitems, SV*);
PL_stack_sp--;
SvREFCNT_dec_NN(old_sv);
return NORMAL;
#else
rpp_popfree_1_NN();
return S_pushav(aTHX_ av);
#endif
}
if (gimme == G_SCALAR) {
const SSize_t maxarg = AvFILL(av) + 1;
if (PL_op->op_private & OPpTRUEBOOL)
rpp_replace_1_IMM_NN(maxarg ? &PL_sv_yes : &PL_sv_zero);
else {
dTARGET;
TARGi(maxarg, 1);
rpp_replace_1_1_NN(targ);
}
}
}
else {
/* this static function is responsible for popping sv off stack */
return S_padhv_rv2hv_common(aTHX_ (HV*)sv, gimme,
cBOOL(PL_op->op_private & OPpRV2HV_ISKEYS),
1 /* has_targ*/);
}
return NORMAL;
croak_cant_return:
Perl_croak(aTHX_ "Can't return %s to lvalue scalar context",
is_pp_rv2av ? "array" : "hash");
}
STATIC void
S_do_oddball(pTHX_ SV **oddkey, SV **firstkey)
{
PERL_ARGS_ASSERT_DO_ODDBALL;
if (*oddkey) {
if (ckWARN(WARN_MISC)) {
const char *err;
if (oddkey == firstkey &&
SvROK(*oddkey) &&
(SvTYPE(SvRV(*oddkey)) == SVt_PVAV ||
SvTYPE(SvRV(*oddkey)) == SVt_PVHV))
{
err = "Reference found where even-sized list expected";
}
else
err = "Odd number of elements in hash assignment";
Perl_warner(aTHX_ packWARN(WARN_MISC), "%s", err);
}
}
}
/* Do a mark and sweep with the SVf_BREAK flag to detect elements which
* are common to both the LHS and RHS of an aassign, and replace them
* with copies. All these copies are made before the actual list assign is
* done.
*
* For example in ($a,$b) = ($b,$a), assigning the value of the first RHS
* element ($b) to the first LH element ($a), modifies $a; when the
* second assignment is done, the second RH element now has the wrong
* value. So we initially replace the RHS with ($b, copy($a)).
* Note that we don't need to make a copy of $b.
*
* The algorithm below works by, for every RHS element, mark the
* corresponding LHS target element with SVf_BREAK. Then if the RHS
* element is found with SVf_BREAK set, it means it would have been
* modified, so make a copy.
* Note that by scanning both LHS and RHS in lockstep, we avoid
* unnecessary copies (like $b above) compared with a naive
* "mark all LHS; copy all marked RHS; unmark all LHS".
*
* If the LHS element is a 'my' declaration' and has a refcount of 1, then
* it can't be common and can be skipped.
*
* On DEBUGGING builds it takes an extra boolean, fake. If true, it means
* that we thought we didn't need to call S_aassign_copy_common(), but we
* have anyway for sanity checking. If we find we need to copy, then panic.
*/
PERL_STATIC_INLINE void
S_aassign_copy_common(pTHX_ SV **firstlelem, SV **lastlelem,
SV **firstrelem, SV **lastrelem
#ifdef DEBUGGING
, bool fake
#endif
)
{
SV **relem;
SV **lelem;
SSize_t lcount = lastlelem - firstlelem + 1;
bool marked = FALSE; /* have we marked any LHS with SVf_BREAK ? */
bool const do_rc1 = cBOOL(PL_op->op_private & OPpASSIGN_COMMON_RC1);
bool copy_all = FALSE;
assert(!PL_in_clean_all); /* SVf_BREAK not already in use */
assert(firstlelem < lastlelem); /* at least 2 LH elements */
assert(firstrelem < lastrelem); /* at least 2 RH elements */
lelem = firstlelem;
/* we never have to copy the first RH element; it can't be corrupted
* by assigning something to the corresponding first LH element.
* So this scan does in a loop: mark LHS[N]; test RHS[N+1]
*/
relem = firstrelem + 1;
for (; relem <= lastrelem; relem++) {
SV *svr;
/* mark next LH element */
if (--lcount >= 0) {
SV *svl = *lelem++;
if (UNLIKELY(!svl)) {/* skip AV alias marker */
assert (lelem <= lastlelem);
svl = *lelem++;
lcount--;
}
assert(svl);
if (SvSMAGICAL(svl)) {
copy_all = TRUE;
}
if (SvTYPE(svl) == SVt_PVAV || SvTYPE(svl) == SVt_PVHV) {
if (!marked)
return;
/* this LH element will consume all further args;
* no need to mark any further LH elements (if any).
* But we still need to scan any remaining RHS elements;
* set lcount negative to distinguish from lcount == 0,
* so the loop condition continues being true
*/
lcount = -1;
lelem--; /* no need to unmark this element */
}
else if (!(do_rc1 &&
#ifdef PERL_RC_STACK
SvREFCNT(svl) <= 2
#else
SvREFCNT(svl) == 1
#endif
) && !SvIMMORTAL(svl))
{
SvFLAGS(svl) |= SVf_BREAK;
marked = TRUE;
}
else if (!marked) {
/* don't check RH element if no SVf_BREAK flags set yet */
if (!lcount)
break;
continue;
}
}
/* see if corresponding RH element needs copying */
assert(marked);
svr = *relem;
assert(svr);
if (UNLIKELY(SvFLAGS(svr) & (SVf_BREAK|SVs_GMG) || copy_all)) {
U32 brk = (SvFLAGS(svr) & SVf_BREAK);
#ifdef DEBUGGING
if (fake) {
/* op_dump(PL_op); */
Perl_croak(aTHX_
"panic: aassign skipped needed copy of common RH elem %"
UVuf, (UV)(relem - firstrelem));
}
#endif
TAINT_NOT; /* Each item is independent */
#ifndef PERL_RC_STACK
/* The TODO test was eventually commented out. It's now been
* revived, but only on PERL_RC_STACK builds. Continue
* this hacky workaround otherwise - DAPM Sept 2023 */
/* Dear TODO test in t/op/sort.t, I love you.
(It's relying on a panic, not a "semi-panic" from newSVsv()
and then an assertion failure below.) */
if (UNLIKELY(SvIS_FREED(svr))) {
Perl_croak(aTHX_ "panic: attempt to copy freed scalar %p",
(void*)svr);
}
#endif
/* avoid break flag while copying; otherwise COW etc
* disabled... */
SvFLAGS(svr) &= ~SVf_BREAK;
/* Not newSVsv(), as it does not allow copy-on-write,
resulting in wasteful copies.
Also, we use SV_NOSTEAL in case the SV is used more than
once, e.g. (...) = (f())[0,0]
Where the same SV appears twice on the RHS without a ref
count bump. (Although I suspect that the SV won't be
stealable here anyway - DAPM).
*/
#ifdef PERL_RC_STACK
*relem = newSVsv_flags(svr,
SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL);
SvREFCNT_dec_NN(svr);
#else
*relem = sv_mortalcopy_flags(svr,
SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL);
#endif
/* ... but restore afterwards in case it's needed again,
* e.g. ($a,$b,$c) = (1,$a,$a)
*/
SvFLAGS(svr) |= brk;
}
if (!lcount)
break;
}
if (!marked)
return;
/*unmark LHS */
while (lelem > firstlelem) {
SV * const svl = *(--lelem);
if (svl)
SvFLAGS(svl) &= ~SVf_BREAK;
}
}
/* Helper function for pp_aassign(): after performing something like
*
* ($<,$>) = ($>,$<); # swap real and effective uids
*
* the assignment to the magic variables just sets various flags in
* PL_delaymagic; now we tell the OS to update the uids/gids atomically.
*/
STATIC void
S_aassign_uid(pTHX)
{
/* Will be used to set PL_tainting below */
Uid_t tmp_uid = PerlProc_getuid();
Uid_t tmp_euid = PerlProc_geteuid();
Gid_t tmp_gid = PerlProc_getgid();
Gid_t tmp_egid = PerlProc_getegid();
/* XXX $> et al currently silently ignore failures */
if (PL_delaymagic & DM_UID) {
#ifdef HAS_SETRESUID
PERL_UNUSED_RESULT(
setresuid((PL_delaymagic & DM_RUID) ? PL_delaymagic_uid : (Uid_t)-1,
(PL_delaymagic & DM_EUID) ? PL_delaymagic_euid : (Uid_t)-1,
(Uid_t)-1));
#elif defined(HAS_SETREUID)
PERL_UNUSED_RESULT(
setreuid((PL_delaymagic & DM_RUID) ? PL_delaymagic_uid : (Uid_t)-1,
(PL_delaymagic & DM_EUID) ? PL_delaymagic_euid : (Uid_t)-1));
#else
# ifdef HAS_SETRUID
if ((PL_delaymagic & DM_UID) == DM_RUID) {
PERL_UNUSED_RESULT(setruid(PL_delaymagic_uid));
PL_delaymagic &= ~DM_RUID;
}
# endif /* HAS_SETRUID */
# ifdef HAS_SETEUID
if ((PL_delaymagic & DM_UID) == DM_EUID) {
PERL_UNUSED_RESULT(seteuid(PL_delaymagic_euid));
PL_delaymagic &= ~DM_EUID;
}
# endif /* HAS_SETEUID */
if (PL_delaymagic & DM_UID) {
if (PL_delaymagic_uid != PL_delaymagic_euid)
Perl_die(aTHX_ "No setreuid available");
PERL_UNUSED_RESULT(PerlProc_setuid(PL_delaymagic_uid));
}
#endif /* HAS_SETRESUID */
tmp_uid = PerlProc_getuid();
tmp_euid = PerlProc_geteuid();
}
/* XXX $> et al currently silently ignore failures */
if (PL_delaymagic & DM_GID) {
#ifdef HAS_SETRESGID
PERL_UNUSED_RESULT(
setresgid((PL_delaymagic & DM_RGID) ? PL_delaymagic_gid : (Gid_t)-1,
(PL_delaymagic & DM_EGID) ? PL_delaymagic_egid : (Gid_t)-1,
(Gid_t)-1));
#elif defined(HAS_SETREGID)
PERL_UNUSED_RESULT(
setregid((PL_delaymagic & DM_RGID) ? PL_delaymagic_gid : (Gid_t)-1,
(PL_delaymagic & DM_EGID) ? PL_delaymagic_egid : (Gid_t)-1));
#else
# ifdef HAS_SETRGID
if ((PL_delaymagic & DM_GID) == DM_RGID) {
PERL_UNUSED_RESULT(setrgid(PL_delaymagic_gid));
PL_delaymagic &= ~DM_RGID;
}
# endif /* HAS_SETRGID */
# ifdef HAS_SETEGID
if ((PL_delaymagic & DM_GID) == DM_EGID) {
PERL_UNUSED_RESULT(setegid(PL_delaymagic_egid));
PL_delaymagic &= ~DM_EGID;
}
# endif /* HAS_SETEGID */
if (PL_delaymagic & DM_GID) {
if (PL_delaymagic_gid != PL_delaymagic_egid)
Perl_die(aTHX_ "No setregid available");
PERL_UNUSED_RESULT(PerlProc_setgid(PL_delaymagic_gid));
}
#endif /* HAS_SETRESGID */
tmp_gid = PerlProc_getgid();
tmp_egid = PerlProc_getegid();
}
TAINTING_set( TAINTING_get | (tmp_uid && (tmp_euid != tmp_uid || tmp_egid != tmp_gid)) );
#ifdef NO_TAINT_SUPPORT
PERL_UNUSED_VAR(tmp_uid);
PERL_UNUSED_VAR(tmp_euid);
PERL_UNUSED_VAR(tmp_gid);
PERL_UNUSED_VAR(tmp_egid);
#endif
}
PP(pp_aassign)
{
SV **lastlelem = PL_stack_sp;
SV **lastrelem = PL_stack_base + POPMARK;
SV **firstrelem = PL_stack_base + POPMARK + 1;
SV **firstlelem = lastrelem + 1;
SV **relem;
SV **lelem;
U8 gimme;
/* PL_delaymagic is restored by JMPENV_POP on dieing, so we
* only need to save locally, not on the save stack */
U16 old_delaymagic = PL_delaymagic;
#ifdef DEBUGGING
bool fake = 0;
#endif
PL_delaymagic = DM_DELAY; /* catch simultaneous items */
/* If there's a common identifier on both sides we have to take
* special care that assigning the identifier on the left doesn't
* clobber a value on the right that's used later in the list.
*/
/* at least 2 LH and RH elements, or commonality isn't an issue */
if (firstlelem < lastlelem && firstrelem < lastrelem) {
for (relem = firstrelem+1; relem <= lastrelem; relem++) {
if (SvGMAGICAL(*relem))
goto do_scan;
}
for (lelem = firstlelem; lelem <= lastlelem; lelem++) {
if (*lelem && SvSMAGICAL(*lelem))
goto do_scan;
}
if ( PL_op->op_private & (OPpASSIGN_COMMON_SCALAR|OPpASSIGN_COMMON_RC1) ) {
if (PL_op->op_private & OPpASSIGN_COMMON_RC1) {
/* skip the scan if all scalars have a ref count of 1 */
for (lelem = firstlelem; lelem <= lastlelem; lelem++) {
SV *sv = *lelem;
if (!sv ||
#ifdef PERL_RC_STACK
SvREFCNT(sv) <= 2
#else
SvREFCNT(sv) == 1
#endif
)
continue;
if (SvTYPE(sv) != SVt_PVAV && SvTYPE(sv) != SVt_PVAV)
goto do_scan;
break;
}
}
else {
do_scan:
S_aassign_copy_common(aTHX_
firstlelem, lastlelem, firstrelem, lastrelem
#ifdef DEBUGGING
, fake
#endif
);
}
}
}
#ifdef DEBUGGING
else {
/* on debugging builds, do the scan even if we've concluded we
* don't need to, then panic if we find commonality. Note that the
* scanner assumes at least 2 elements */
if (firstlelem < lastlelem && firstrelem < lastrelem) {
fake = 1;
goto do_scan;
}
}
#endif
gimme = GIMME_V;
bool is_list = (gimme == G_LIST);
relem = firstrelem;
lelem = firstlelem;
#ifdef PERL_RC_STACK
/* Where we can reset stack to at the end, without needing to free
* each element. This is normally all the lelem's, but it can vary for
* things like odd number of hash elements, which pushes a
* &PL_sv_undef into the 'lvalue' part of the stack.
*/
SV ** first_discard = firstlelem;
#endif
if (relem > lastrelem)
goto no_relems;
/* first lelem loop while there are still relems */
while (LIKELY(lelem <= lastlelem)) {
bool alias = FALSE;
SV *lsv = *lelem;
TAINT_NOT; /* Each item stands on its own, taintwise. */
assert(relem <= lastrelem);
if (UNLIKELY(!lsv)) {
alias = TRUE;
lsv = *++lelem;
ASSUME(SvTYPE(lsv) == SVt_PVAV);
}
switch (SvTYPE(lsv)) {
case SVt_PVAV: {
SV **svp;
SSize_t i;
SSize_t nelems = lastrelem - relem + 1;
AV *ary = MUTABLE_AV(lsv);
/* Assigning to an aggregate is tricky. First there is the
* issue of commonality, e.g. @a = ($a[0]). Since the
* stack isn't refcounted, clearing @a prior to storing
* elements will free $a[0]. Similarly with
* sub FETCH { $status[$_[1]] } @status = @tied[0,1];
*
* The way to avoid these issues is to make the copy of each
* SV (and we normally store a *copy* in the array) *before*
* clearing the array. But this has a problem in that
* if the code croaks during copying, the not-yet-stored copies
* could leak. One way to avoid this is to make all the copies
* mortal, but that's quite expensive.
*
* The current solution to these issues is to use a chunk
* of the tmps stack as a temporary refcounted-stack. SVs
* will be put on there during processing to avoid leaks,
* but will be removed again before the end of this block,
* so free_tmps() is never normally called. Also, the
* sv_refcnt of the SVs doesn't have to be manipulated, since
* the ownership of 1 reference count is transferred directly
* from the tmps stack to the AV when the SV is stored.
*
* We disarm slots in the temps stack by storing PL_sv_undef
* there: it doesn't matter if that SV's refcount is
* repeatedly decremented during a croak. But usually this is
* only an interim measure. By the end of this code block
* we try where possible to not leave any PL_sv_undef's on the
* tmps stack e.g. by shuffling newer entries down.
*
* There is one case where we don't copy: non-magical
* SvTEMP(sv)'s with a ref count of 1. The only owner of these
* is on the tmps stack, so its safe to directly steal the SV
* rather than copying. This is common in things like function
* returns, map etc, which all return a list of such SVs.
*
* Note however something like @a = (f())[0,0], where there is
* a danger of the same SV being shared: this avoided because
* when the SV is stored as $a[0], its ref count gets bumped,
* so the RC==1 test fails and the second element is copied
* instead.
*
* We also use one slot in the tmps stack to hold an extra
* ref to the array, to ensure it doesn't get prematurely
* freed. Again, this is removed before the end of this block.
*
* Note that OPpASSIGN_COMMON_AGG is used to flag a possible
* @a = ($a[0]) case, but the current implementation uses the
* same algorithm regardless, so ignores that flag. (It *is*
* used in the hash branch below, however).
*
*
* The net effect of this next block of code (apart from
* optimisations and aliasing) is to make a copy of each
* *relem and store the new SV both in the array and back on
* the *relem slot of the stack, overwriting the original.
* This new list of SVs will later be either returned
* (G_LIST), or popped.
*
* Note that under PERL_RC_STACK builds most of this
* complexity can be thrown away: things can be kept alive on
* the argument stack without involving the temps stack. In
* particular, the args are kept on the argument stack and
* processed from there, rather than their pointers being
* copied to the temps stack and then processed from there.
*/
#ifndef PERL_RC_STACK
/* Reserve slots for ary, plus the elems we're about to copy,
* then protect ary and temporarily void the remaining slots
* with &PL_sv_undef */
EXTEND_MORTAL(nelems + 1);
PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple_NN(ary);
SSize_t tmps_base = PL_tmps_ix + 1;
for (i = 0; i < nelems; i++)
PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
PL_tmps_ix += nelems;
#endif
/* Make a copy of each RHS elem and save on the tmps_stack
* (or pass through where we can optimise away the copy) */
if (UNLIKELY(alias)) {
U32 lval = (is_list)
? (PL_op->op_flags & OPf_MOD || LVRET) : 0;
for (svp = relem; svp <= lastrelem; svp++) {
SV *rsv = *svp;
SvGETMAGIC(rsv);
if (!SvROK(rsv))
DIE(aTHX_ "Assigned value is not a reference");
if (SvTYPE(SvRV(rsv)) > SVt_PVLV)
/* diag_listed_as: Assigned value is not %s reference */
DIE(aTHX_
"Assigned value is not a SCALAR reference");
if (lval) {
/* XXX the 'mortal' part here is probably
* unnecessary under PERL_RC_STACK.
*/
rsv = sv_mortalcopy(rsv);
rpp_replace_at_NN(svp, rsv);
}
/* XXX else check for weak refs? */
#ifndef PERL_RC_STACK
rsv = SvREFCNT_inc_NN(SvRV(rsv));
assert(tmps_base <= PL_tmps_max);
PL_tmps_stack[tmps_base++] = rsv;
#endif
}
}
else {
for (svp = relem; svp <= lastrelem; svp++) {
SV *rsv = *svp;
if (rpp_is_lone(rsv) && !SvGMAGICAL(rsv)) {
/* can skip the copy */
#ifndef PERL_RC_STACK
SvREFCNT_inc_simple_void_NN(rsv);
#endif
SvTEMP_off(rsv);
}
else {
SV *nsv;
/* see comment in S_aassign_copy_common about
* SV_NOSTEAL */
nsv = newSVsv_flags(rsv,
(SV_DO_COW_SVSETSV|SV_NOSTEAL|SV_GMAGIC));
#ifdef PERL_RC_STACK
rpp_replace_at_norc_NN(svp, nsv);
#else
/* using rpp_replace_at_norc() would mortalise,
* but we're manually adding nsv to the tmps stack
* below already */
rpp_replace_at_NN(svp, nsv);
#endif
rsv = nsv;
}
#ifndef PERL_RC_STACK
assert(tmps_base <= PL_tmps_max);
PL_tmps_stack[tmps_base++] = rsv;
#endif
}
}
if (SvRMAGICAL(ary) || AvFILLp(ary) >= 0) /* may be non-empty */
av_clear(ary);
/* Store in the array, the argument copies that are in the
* tmps stack (or for PERL_RC_STACK, on the args stack) */
#ifndef PERL_RC_STACK
tmps_base -= nelems;
#endif
if (alias || SvMAGICAL(ary) || SvREADONLY(ary) || !AvREAL(ary)) {
/* for arrays we can't cheat with, use the official API */
av_extend(ary, nelems - 1);
for (i = 0; i < nelems; i++) {
SV **svp =
#ifdef PERL_RC_STACK
&relem[i];
#else
&(PL_tmps_stack[tmps_base + i]);
#endif
SV *rsv = *svp;
#ifdef PERL_RC_STACK
if (alias) {
assert(SvROK(rsv));
rsv = SvRV(rsv);
}
#endif
/* A tied store won't take ownership of rsv, so keep
* the 1 refcnt on the tmps stack; otherwise disarm
* the tmps stack entry */
if (av_store(ary, i, rsv))
#ifdef PERL_RC_STACK
SvREFCNT_inc_simple_NN(rsv);
#else
*svp = &PL_sv_undef;
#endif
/* av_store() may have added set magic to rsv */;
SvSETMAGIC(rsv);
}
#ifndef PERL_RC_STACK
/* disarm ary refcount: see comments below about leak */
PL_tmps_stack[tmps_base - 1] = &PL_sv_undef;
#endif
}
else {
/* Simple array: directly access/set the guts of the AV */
SSize_t fill = nelems - 1;
if (fill > AvMAX(ary))
av_extend_guts(ary, fill, &AvMAX(ary), &AvALLOC(ary),
&AvARRAY(ary));
AvFILLp(ary) = fill;
#ifdef PERL_RC_STACK
Copy(relem, AvARRAY(ary), nelems, SV*);
/* ownership of one ref count of each elem passed to
* array. Quietly remove old SVs from stack, or if need
* to keep the list on the stack too, bump the count */
if (UNLIKELY(is_list))
for (i = 0; i < nelems; i++)
SvREFCNT_inc_void_NN(relem[i]);
else {
assert(first_discard == relem + nelems);
Zero(relem, nelems, SV*);
first_discard = relem;
}
#else
Copy(&(PL_tmps_stack[tmps_base]), AvARRAY(ary), nelems, SV*);
/* Quietly remove all the SVs from the tmps stack slots,
* since ary has now taken ownership of the refcnt.
* Also remove ary: which will now leak if we die before
* the SvREFCNT_dec_NN(ary) below */
if (UNLIKELY(PL_tmps_ix >= tmps_base + nelems))
Move(&PL_tmps_stack[tmps_base + nelems],
&PL_tmps_stack[tmps_base - 1],
PL_tmps_ix - (tmps_base + nelems) + 1,
SV*);
PL_tmps_ix -= (nelems + 1);
#endif
}
if (UNLIKELY(PL_delaymagic & DM_ARRAY_ISA))
/* its assumed @ISA set magic can't die and leak ary */
SvSETMAGIC(MUTABLE_SV(ary));
#ifdef PERL_RC_STACK
assert(*lelem == (SV*)ary);
*lelem = NULL;
#endif
lelem++;
SvREFCNT_dec_NN(ary);
relem = lastrelem + 1;
goto no_relems;
}
case SVt_PVHV: { /* normal hash */
SV **svp;
SSize_t i;
SSize_t nelems = lastrelem - relem + 1;
HV *hash = MUTABLE_HV(lsv);
if (UNLIKELY(nelems & 1)) {
do_oddball(lastrelem, relem);
/* we have firstlelem to reuse, it's not needed any more */
#ifdef PERL_RC_STACK
if (lelem == lastrelem + 1) {
/* the lelem slot we want to use is the
* one keeping hash alive. Mortalise the hash
* so it doesn't leak */
assert(lastrelem[1] == (SV*)hash);
sv_2mortal((SV*)hash);
}
else {
/* safe to repurpose old lelem slot */
assert(!lastrelem[1] || SvIMMORTAL(lastrelem[1]));
}
first_discard++;
assert(first_discard = lastrelem + 2);
#endif
*++lastrelem = &PL_sv_undef;
nelems++;
}
/* See the SVt_PVAV branch above for a long description of
* how the following all works. The main difference for hashes
* is that we treat keys and values separately (and have
* separate loops for them): as for arrays, values are always
* copied (except for the SvTEMP optimisation), since they
* need to be stored in the hash; while keys are only
* processed where they might get prematurely freed or
* whatever. The same comments about simplifying under
* PERL_RC_STACK apply here too */
/* tmps stack slots:
* * reserve a slot for the hash keepalive;
* * reserve slots for the hash values we're about to copy;
* * preallocate for the keys we'll possibly copy or refcount bump
* later;
* then protect hash and temporarily void the remaining
* value slots with &PL_sv_undef */
#ifndef PERL_RC_STACK
EXTEND_MORTAL(nelems + 1);
#endif
/* convert to number of key/value pairs */
nelems >>= 1;
#ifndef PERL_RC_STACK
PL_tmps_stack[++PL_tmps_ix] = SvREFCNT_inc_simple_NN(hash);
SSize_t tmps_base = PL_tmps_ix + 1;
for (i = 0; i < nelems; i++)
PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
PL_tmps_ix += nelems;
#endif
/* Make a copy of each RHS hash value and save on the tmps_stack
* (or pass through where we can optimise away the copy) */
for (svp = relem + 1; svp <= lastrelem; svp += 2) {
SV *rsv = *svp;
if (rpp_is_lone(rsv) && !SvGMAGICAL(rsv)) {
/* can skip the copy */
#ifndef PERL_RC_STACK
SvREFCNT_inc_simple_void_NN(rsv);
#endif
SvTEMP_off(rsv);
}
else {
SV *nsv;
/* see comment in S_aassign_copy_common about
* SV_NOSTEAL */
nsv = newSVsv_flags(rsv,
(SV_DO_COW_SVSETSV|SV_NOSTEAL|SV_GMAGIC));
#ifdef PERL_RC_STACK
rpp_replace_at_norc_NN(svp, nsv);
#else
/* using rpp_replace_at_norc() would mortalise,
* but we're manually adding nsv to the tmps stack
* below already */
rpp_replace_at_NN(svp, nsv);
#endif
rsv = nsv;
}
#ifndef PERL_RC_STACK
assert(tmps_base <= PL_tmps_max);
PL_tmps_stack[tmps_base++] = rsv;
#endif
}
#ifndef PERL_RC_STACK
tmps_base -= nelems;
#endif
/* possibly protect keys */
if (UNLIKELY(is_list)) {
/* handle e.g.
* @a = ((%h = ($$r, 1)), $r = "x");
* $_++ for %h = (1,2,3,4);
*/
#ifndef PERL_RC_STACK
EXTEND_MORTAL(nelems);
#endif
for (svp = relem; svp <= lastrelem; svp += 2) {
rpp_replace_at_norc_NN(svp,
newSVsv_flags(*svp,
SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL));
}
}
else if (PL_op->op_private & OPpASSIGN_COMMON_AGG) {
/* for possible commonality, e.g.
* %h = ($h{a},1)
* avoid premature freeing RHS keys by mortalising
* them.
* For a magic element, make a copy so that its magic is
* called *before* the hash is emptied (which may affect
* a tied value for example).
* In theory we should check for magic keys in all
* cases, not just under OPpASSIGN_COMMON_AGG, but in
* practice, !OPpASSIGN_COMMON_AGG implies only
* constants or padtmps on the RHS.
*
* For PERL_RC_STACK, no danger of premature frees, so
* just handle the magic.
*/
#ifdef PERL_RC_STACK
for (svp = relem; svp <= lastrelem; svp += 2) {
SV *rsv = *svp;
if (UNLIKELY(SvGMAGICAL(rsv)))
/* XXX does this actually need to be copied, or
* could we just call the get magic??? */
rpp_replace_at_norc_NN(svp,
newSVsv_flags(rsv,
SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL));
}
#else
EXTEND_MORTAL(nelems);
for (svp = relem; svp <= lastrelem; svp += 2) {
SV *rsv = *svp;
if (UNLIKELY(SvGMAGICAL(rsv))) {
SSize_t n;
rpp_replace_at_norc_NN(svp,
newSVsv_flags(rsv,
SV_GMAGIC|SV_DO_COW_SVSETSV|SV_NOSTEAL));
/* allow other branch to continue pushing
* onto tmps stack without checking each time */
n = (lastrelem - relem) >> 1;
EXTEND_MORTAL(n);
}
else
PL_tmps_stack[++PL_tmps_ix] =
SvREFCNT_inc_simple_NN(rsv);
}
#endif
}
if (SvRMAGICAL(hash) || HvUSEDKEYS(hash))
hv_clear(hash);
/* "nelems" was converted to the number of pairs earlier. */
if (nelems > PERL_HASH_DEFAULT_HvMAX) {
hv_ksplit(hash, nelems);
}
/* now assign the keys and values to the hash */
#ifndef PERL_RC_STACK
bool dirty_tmps = FALSE;
#endif
if (UNLIKELY(is_list)) {
/* @a = (%h = (...)) etc */
SV **svp;
SV **topelem = relem;
for (i = 0, svp = relem; svp <= lastrelem; i++, svp++) {
SV *key = *svp++;
SV *val = *svp;
/* remove duplicates from list we return */
if (!hv_exists_ent(hash, key, 0)) {
/* copy key back: possibly to an earlier
* stack location if we encountered dups earlier,
* The values will be updated later
*/
rpp_replace_at_NN(topelem, key);
topelem += 2;
}
/* A tied store won't take ownership of val, so keep
* the 1 refcnt on the tmps stack; otherwise disarm
* the tmps stack entry */
if (hv_store_ent(hash, key, val, 0))
#ifdef PERL_RC_STACK
SvREFCNT_inc_simple_NN(val);
#else
PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
else
dirty_tmps = TRUE;
#endif
/* hv_store_ent() may have added set magic to val */;
SvSETMAGIC(val);
}
if (topelem < svp) {
/* at this point we have removed the duplicate key/value
* pairs from the stack, but the remaining values may be
* wrong; i.e. with (a 1 a 2 b 3) on the stack we've removed
* the (a 2), but the stack now probably contains
* (a <freed> b 3), because { hv_save(a,1); hv_save(a,2) }
* obliterates the earlier key. So refresh all values. */
lastrelem = topelem - 1;
while (relem < lastrelem) {
HE *he;
he = hv_fetch_ent(hash, *relem++, 0, 0);
rpp_replace_at_NN(relem++,
(he ? HeVAL(he) : &PL_sv_undef));
}
}
}
else {
SV **svp;
for (i = 0, svp = relem; svp <= lastrelem; i++, svp++) {
SV *key = *svp++;
SV *val = *svp;
#ifdef PERL_RC_STACK
{
HE *stored = hv_store_ent(hash, key, val, 0);
/* hv_store_ent() may have added set magic to val */;
SvSETMAGIC(val);
/* remove key and val from stack */
*svp = NULL;
if (!stored)
SvREFCNT_dec_NN(val);
svp[-1] = NULL;
SvREFCNT_dec_NN(key);
}
#else
if (hv_store_ent(hash, key, val, 0))
PL_tmps_stack[tmps_base + i] = &PL_sv_undef;
else
dirty_tmps = TRUE;
/* hv_store_ent() may have added set magic to val */;
SvSETMAGIC(val);
#endif
}
#ifdef PERL_RC_STACK
/* now that all the key and val slots on the stack have
* been discarded, we can skip freeing them on return */
assert(first_discard == lastrelem + 1);
first_discard = relem;
#endif
}
#ifdef PERL_RC_STACK
/* Disarm the ref-counted pointer on the stack. This will
* usually point to the hash, except for the case of an odd
* number of elems where the hash was mortalised and its slot
* on the stack was made part of the relems with the slot's
* value overwritten with &PL_sv_undef. */
if (*lelem == (SV*)hash) {
*lelem = NULL;
SvREFCNT_dec_NN(hash);
}
#else
if (dirty_tmps) {
/* there are still some 'live' recounts on the tmps stack
* - usually caused by storing into a tied hash. So let
* free_tmps() do the proper but slow job later.
* Just disarm hash refcount: see comments below about leak
*/
PL_tmps_stack[tmps_base - 1] = &PL_sv_undef;
}
else {
/* Quietly remove all the SVs from the tmps stack slots,
* since hash has now taken ownership of the refcnt.
* Also remove hash: which will now leak if we die before
* the SvREFCNT_dec_NN(hash) below */
if (UNLIKELY(PL_tmps_ix >= tmps_base + nelems))
Move(&PL_tmps_stack[tmps_base + nelems],
&PL_tmps_stack[tmps_base - 1],
PL_tmps_ix - (tmps_base + nelems) + 1,
SV*);
PL_tmps_ix -= (nelems + 1);
}
SvREFCNT_dec_NN(hash);
#endif
lelem++;
relem = lastrelem + 1;
goto no_relems;
}
default:
if (!SvIMMORTAL(lsv)) {
if (UNLIKELY(
rpp_is_lone(lsv) && !SvSMAGICAL(lsv) &&
(!isGV_with_GP(lsv) || SvFAKE(lsv)) && ckWARN(WARN_MISC)
))
Perl_warner(aTHX_
packWARN(WARN_MISC),
"Useless assignment to a temporary"
);
#ifndef PERL_RC_STACK
/* avoid freeing $$lsv if it might be needed for further
* elements, e.g. ($ref, $foo) = (1, $$ref) */
SV *ref;
if ( SvROK(lsv)
&& ( ((ref = SvRV(lsv)), SvREFCNT(ref)) == 1)
&& lelem < lastlelem
) {
SSize_t ix;
SvREFCNT_inc_simple_void_NN(ref);
/* an unrolled sv_2mortal */
ix = ++PL_tmps_ix;
if (UNLIKELY(ix >= PL_tmps_max))
/* speculatively grow enough to cover other
* possible refs */
(void)tmps_grow_p(ix + (lastlelem - lelem + 1));
PL_tmps_stack[ix] = ref;
}
#endif
sv_setsv(lsv, *relem);
SvSETMAGIC(lsv);
if (UNLIKELY(is_list))
rpp_replace_at_NN(relem, lsv);
#ifdef PERL_RC_STACK
*lelem = NULL;
SvREFCNT_dec_NN(lsv);
#endif
}
lelem++;
if (++relem > lastrelem)
goto no_relems;
break;
} /* switch */
} /* while */
no_relems:
/* simplified lelem loop for when there are no relems left */
while (LIKELY(lelem <= lastlelem)) {
SV *lsv = *lelem;
TAINT_NOT; /* Each item stands on its own, taintwise. */
if (UNLIKELY(!lsv)) {
lsv = *++lelem;
ASSUME(SvTYPE(lsv) == SVt_PVAV);
}
switch (SvTYPE(lsv)) {
case SVt_PVAV:
if (SvRMAGICAL(lsv) || AvFILLp((SV*)lsv) >= 0) {
av_clear((AV*)lsv);
if (UNLIKELY(PL_delaymagic & DM_ARRAY_ISA))
SvSETMAGIC(lsv);
}
break;
case SVt_PVHV:
if (SvRMAGICAL(lsv) || HvUSEDKEYS((HV*)lsv))
hv_clear((HV*)lsv);
break;
default:
if (!SvIMMORTAL(lsv)) {
sv_set_undef(lsv);
SvSETMAGIC(lsv);
}
if (UNLIKELY(is_list)) {
/* this usually grows the list of relems to be returned
* into the stack space holding lelems (unless
* there was previously a hash with dup elements) */
#ifdef PERL_RC_STACK
assert(relem <= first_discard);
assert(relem <= lelem);
if (relem == first_discard)
first_discard++;
#endif
rpp_replace_at(relem++, lsv);
#ifdef PERL_RC_STACK
if (relem == lelem + 1) {
lelem++;
/* skip the NULLing of the slot */
continue;
}
#endif
}
break;
} /* switch */
#ifdef PERL_RC_STACK
*lelem = NULL;
SvREFCNT_dec_NN(lsv);
#endif
lelem++;
} /* while */
TAINT_NOT; /* result of list assign isn't tainted */
if (UNLIKELY(PL_delaymagic & ~DM_DELAY))
/* update system UIDs and/or GIDs */
S_aassign_uid(aTHX);
PL_delaymagic = old_delaymagic;
#ifdef PERL_RC_STACK
/* On ref-counted builds, the code above should have stored
* NULL in each lelem field and already freed each lelem. Thus
* the popfree_to() can start at a lower point.
* Under some circumstances, &PL_sv_undef might be stored rather than
* NULL, but this also doesn't need its refcount decrementing.
* Assert that this is true.
* Note that duplicate hash keys in list context can cause
* lastrelem and relem to be lower than at the start;
* while an odd number of hash elements can cause lastrelem to
* have a value one higher than at the start */
# ifdef DEBUGGING
for (SV **svp = first_discard; svp <= PL_stack_sp; svp++)
assert(!*svp || SvIMMORTAL(*svp));
# endif
PL_stack_sp = first_discard - 1;
/* now pop all the R elements too */
rpp_popfree_to_NN((is_list ? relem : firstrelem) - 1);
#else
/* pop all L and R elements apart from any being returned */
rpp_popfree_to_NN((is_list ? relem : firstrelem) - 1);
#endif
if (gimme == G_SCALAR) {
rpp_extend(1);
SV *sv;
if (PL_op->op_private & OPpASSIGN_TRUEBOOL)
rpp_push_IMM((firstlelem - firstrelem) ? &PL_sv_yes : &PL_sv_zero);
else {
dTARGET;
TARGi(firstlelem - firstrelem, 1);
sv = targ;
rpp_push_1(sv);
}
}
return NORMAL;
}
PP(pp_qr)
{
PMOP * const pm = cPMOP;
REGEXP * rx = PM_GETRE(pm);
regexp *prog = ReANY(rx);
SV * const pkg = RXp_ENGINE(prog)->qr_package(aTHX_ (rx));
SV * const rv = newSV_type_mortal(SVt_IV);
CV **cvp;
CV *cv;
SvUPGRADE(rv, SVt_IV);
/* For a subroutine describing itself as "This is a hacky workaround" I'm
loathe to use it here, but it seems to be the right fix. Or close.
The key part appears to be that it's essential for pp_qr to return a new
object (SV), which implies that there needs to be an effective way to
generate a new SV from the existing SV that is pre-compiled in the
optree. */
SvRV_set(rv, MUTABLE_SV(reg_temp_copy(NULL, rx)));
SvROK_on(rv);
cvp = &( ReANY((REGEXP *)SvRV(rv))->qr_anoncv);
if (UNLIKELY((cv = *cvp) && CvCLONE(*cvp))) {
*cvp = cv_clone(cv);
SvREFCNT_dec_NN(cv);
}
if (pkg) {
HV *const stash = gv_stashsv(pkg, GV_ADD);
SvREFCNT_dec_NN(pkg);
(void)sv_bless(rv, stash);
}
if (UNLIKELY(RXp_ISTAINTED(prog))) {
SvTAINTED_on(rv);
SvTAINTED_on(SvRV(rv));
}
rpp_xpush_1(rv);
return NORMAL;
}
STATIC bool
S_are_we_in_Debug_EXECUTE_r(pTHX)
{
/* Given a 'use re' is in effect, does it ask for outputting execution
* debug info?
*
* This is separated from the sole place it's called, an inline function,
* because it is the large-ish slow portion of the function */
DECLARE_AND_GET_RE_DEBUG_FLAGS_NON_REGEX;
return cBOOL(RE_DEBUG_FLAG(RE_DEBUG_EXECUTE_MASK));
}
PERL_STATIC_INLINE bool
S_should_we_output_Debug_r(pTHX_ regexp *prog)
{
PERL_ARGS_ASSERT_SHOULD_WE_OUTPUT_DEBUG_R;
/* pp_match can output regex debugging info. This function returns a
* boolean as to whether or not it should.
*
* Under -Dr, it should. Any reasonable compiler will optimize this bit of
* code away on non-debugging builds. */
if (UNLIKELY(DEBUG_r_TEST)) {
return TRUE;
}
/* If the regex engine is using the non-debugging execution routine, then
* no debugging should be output. Same if the field is NULL that pluggable
* engines are not supposed to fill. */
if ( LIKELY(prog->engine->exec == &Perl_regexec_flags)
|| UNLIKELY(prog->engine->op_comp == NULL))
{
return FALSE;
}
/* Otherwise have to check */
return S_are_we_in_Debug_EXECUTE_r(aTHX);
}
PP(pp_match)
{
SV *targ;
PMOP *pm = cPMOP;
PMOP *dynpm = pm;
const char *s;
const char *strend;
SSize_t curpos = 0; /* initial pos() or current $+[0] */
I32 global;
U8 r_flags = 0;
const char *truebase; /* Start of string */
REGEXP *rx = PM_GETRE(pm);
regexp *prog = ReANY(rx);
bool rxtainted;
const U8 gimme = GIMME_V;
STRLEN len;
const I32 oldsave = PL_savestack_ix;
I32 had_zerolen = 0;
MAGIC *mg = NULL;
SSize_t sp_base;
if (PL_op->op_flags & OPf_STACKED) {
targ = PL_stack_sp[0];
/* We have to keep targ alive on the stack. At the end we have to
* free it and shuffle down all the return values by one.
* Remember the position.
*/
sp_base = PL_stack_sp - PL_stack_base;
assert(sp_base > 0);
}
else {
sp_base = 0;
if (PL_op->op_targ)
targ = PAD_SV(PL_op->op_targ);
else {
targ = DEFSV;
}
rpp_extend(1);
}
/* Skip get-magic if this is a qr// clone, because regcomp has
already done it. */
truebase = prog->mother_re
? SvPV_nomg_const(TARG, len)
: SvPV_const(TARG, len);
if (!truebase)
DIE(aTHX_ "panic: pp_match");
strend = truebase + len;
rxtainted = (RXp_ISTAINTED(prog) ||
(TAINT_get && (pm->op_pmflags & PMf_RETAINT)));
TAINT_NOT;
/* We need to know this in case we fail out early - pos() must be reset */
global = dynpm->op_pmflags & PMf_GLOBAL;
/* PMdf_USED is set after a ?? matches once */
if (
#ifdef USE_ITHREADS
SvREADONLY(PL_regex_pad[pm->op_pmoffset])
#else
pm->op_pmflags & PMf_USED
#endif
) {
if (UNLIKELY(should_we_output_Debug_r(prog))) {
PerlIO_printf(Perl_debug_log, "?? already matched once");
}
goto nope;
}
/* handle the empty pattern */
if (!RX_PRELEN(rx) && PL_curpm && !prog->mother_re) {
if (PL_curpm == PL_reg_curpm) {
if (PL_curpm_under) {
if (PL_curpm_under == PL_reg_curpm) {
Perl_croak(aTHX_ "Infinite recursion via empty pattern");
} else {
pm = PL_curpm_under;
}
}
} else {
pm = PL_curpm;
}
rx = PM_GETRE(pm);
prog = ReANY(rx);
}
if (RXp_MINLEN(prog) >= 0 && (STRLEN)RXp_MINLEN(prog) > len) {
if (UNLIKELY(should_we_output_Debug_r(prog))) {
PerlIO_printf(Perl_debug_log,
"String shorter than min possible regex match (%zd < %zd)\n",
len, RXp_MINLEN(prog));
}
goto nope;
}
/* get pos() if //g */
if (global) {
mg = mg_find_mglob(TARG);
if (mg && mg->mg_len >= 0) {
curpos = MgBYTEPOS(mg, TARG, truebase, len);
/* last time pos() was set, it was zero-length match */
if (mg->mg_flags & MGf_MINMATCH)
had_zerolen = 1;
}
}
#ifdef PERL_SAWAMPERSAND
if ( RXp_NPARENS(prog)
|| PL_sawampersand
|| (RXp_EXTFLAGS(prog) & (RXf_EVAL_SEEN|RXf_PMf_KEEPCOPY))
|| (dynpm->op_pmflags & PMf_KEEPCOPY)
)
#endif
{
r_flags |= (REXEC_COPY_STR|REXEC_COPY_SKIP_PRE);
/* In @a = /(.)/g, we iterate multiple times, but copy the buffer
* only on the first iteration. Therefore we need to copy $' as well
* as $&, to make the rest of the string available for captures in
* subsequent iterations */
if (! (global && gimme == G_LIST))
r_flags |= REXEC_COPY_SKIP_POST;
};
#ifdef PERL_SAWAMPERSAND
if (dynpm->op_pmflags & PMf_KEEPCOPY)
/* handle KEEPCOPY in pmop but not rx, eg $r=qr/a/; /$r/p */
r_flags &= ~(REXEC_COPY_SKIP_PRE|REXEC_COPY_SKIP_POST);
#endif
s = truebase;
play_it_again:
if (global)
s = truebase + curpos;
if (!CALLREGEXEC(rx, (char*)s, (char *)strend, (char*)truebase,
had_zerolen, TARG, NULL, r_flags))
goto nope;
PL_curpm = pm;
if (dynpm->op_pmflags & PMf_ONCE)
#ifdef USE_ITHREADS
SvREADONLY_on(PL_regex_pad[dynpm->op_pmoffset]);
#else
dynpm->op_pmflags |= PMf_USED;
#endif
if (rxtainted)
RXp_MATCH_TAINTED_on(prog);
TAINT_IF(RXp_MATCH_TAINTED(prog));
/* update pos */
if (global && (gimme != G_LIST || (dynpm->op_pmflags & PMf_CONTINUE))) {
if (!mg)
mg = sv_magicext_mglob(TARG);
MgBYTEPOS_set(mg, TARG, truebase, RXp_OFFS_END(prog,0));
if (RXp_ZERO_LEN(prog))
mg->mg_flags |= MGf_MINMATCH;
else
mg->mg_flags &= ~MGf_MINMATCH;
}
if ((!RXp_NPARENS(prog) && !global) || gimme != G_LIST) {
LEAVE_SCOPE(oldsave);
if (sp_base)
rpp_popfree_1(); /* free arg */
rpp_push_IMM(&PL_sv_yes);
return NORMAL;
}
/* push captures on stack */
{
const I32 logical_nparens = RXp_LOGICAL_NPARENS(prog);
/* This following statement is *devious* code. If we are in a global
match and the pattern has no parens in it, we should return $&
(offset pair 0). So we set logical_paren to 1 when we should return
$&, otherwise we set it to 0.
This allows us to simply add logical_nparens to logical_paren to
compute the number of elements we are going to return.
In the loop init we "not" it with: logical_paren = !logical_paren
which results in it being 0 inside the loop when we want to return
$&, and results in it being 1 when we want to return the parens.
Thus we either loop over 1..logical_nparens, or just over 0.
This is an elegant way to do this code-wise, but is super devious
and potentially confusing. When I first saw this logic I thought
"WTF?". But it makes sense after you poke it a while.
Frankly I probably would have done it differently, but it works so
I am leaving it. - Yves */
I32 logical_paren = (global && !logical_nparens) ? 1 : 0;
I32 *l2p = RXp_LOGICAL_TO_PARNO(prog);
/* This is used to step through the physical parens associated
with a given logical paren. */
I32 *p2l_next = RXp_PARNO_TO_LOGICAL_NEXT(prog);
rpp_extend(logical_nparens + logical_paren); /* devious code ... */
EXTEND_MORTAL(logical_nparens + logical_paren); /* ... see above */
/* Loop over the logical parens in the pattern. This may not
correspond to the actual paren checked, as branch reset may
mean that there is more than one paren "behind" the logical
parens. Eg, in /(?|(a)|(b))/ there are two parens, but one
logical paren. */
for (logical_paren = !logical_paren;
logical_paren <= logical_nparens;
logical_paren++)
{
/* Now convert the logical_paren to the physical parens which
are "behind" it. If branch reset was not used, then
physical_paren and logical_paren are the same as each other
and we will only perform one iteration of the loop. */
I32 phys_paren = l2p ? l2p[logical_paren] : logical_paren;
SSize_t offs_start, offs_end;
/* We check the loop invariants below and break out of the loop
explicitly if our checks fail, so we use while (1) here to
avoid double testing a conditional. */
while (1) {
/* Check end offset first, as the start might be >=0 even
though the end is -1, so testing the end first helps
us avoid the start check. Really we should be able to
get away with ONLY testing the end, but testing both
doesn't hurt much and preserves sanity. */
if (((offs_end = RXp_OFFS_END(prog, phys_paren)) != -1) &&
((offs_start = RXp_OFFS_START(prog, phys_paren)) != -1))
{
const SSize_t len = offs_end - offs_start;
const char * const s = offs_start + truebase;
if ( UNLIKELY( len < 0 || len > strend - s) ) {
DIE(aTHX_ "panic: pp_match start/end pointers, paren=%" I32df ", "
"start=%zd, end=%zd, s=%p, strend=%p, len=%zd",
phys_paren, offs_start, offs_end, s, strend, len);
}
rpp_push_1(newSVpvn_flags(s, len,
(DO_UTF8(TARG))
? SVf_UTF8|SVs_TEMP
: SVs_TEMP)
);
break;
} else if (!p2l_next || !(phys_paren = p2l_next[phys_paren])) {
/* Either logical_paren and phys_paren are the same and
we won't have a p2l_next, or they aren't the same (and
we do have a p2l_next) but we have exhausted the list
of physical parens associated with this logical paren.
Either way we are done, and we can push undef and break
out of the loop. */
rpp_push_1(sv_newmortal());
break;
}
}
}
if (global) {
curpos = (UV)RXp_OFFS_END(prog,0);
had_zerolen = RXp_ZERO_LEN(prog);
r_flags |= REXEC_IGNOREPOS | REXEC_NOT_FIRST;
goto play_it_again;
}
LEAVE_SCOPE(oldsave);
goto ret_list;
}
NOT_REACHED; /* NOTREACHED */
nope:
if (global && !(dynpm->op_pmflags & PMf_CONTINUE)) {
if (!mg)
mg = mg_find_mglob(TARG);
if (mg)
mg->mg_len = -1;
}
LEAVE_SCOPE(oldsave);
if (gimme != G_LIST) {
if (sp_base)
rpp_popfree_1(); /* free arg */
rpp_push_IMM(&PL_sv_no);
return NORMAL;
}
ret_list:
/* return when in list context (i.e. don't push YES/NO, but do return
* a (possibly empty) list of matches */
if (sp_base) {
/* need to free the original argument and shift any results down
* by one */
SSize_t nitems = PL_stack_sp - (PL_stack_base + sp_base);
#ifdef PERL_RC_STACK
SV *old_sv = PL_stack_sp[-nitems];
#endif
if (nitems)
Move(PL_stack_sp - nitems + 1,
PL_stack_sp - nitems, nitems, SV*);
PL_stack_sp--;
#ifdef PERL_RC_STACK
SvREFCNT_dec_NN(old_sv);
#endif
}
return NORMAL;
}
/* Perl_do_readline(): implement <$fh>, readline($fh) and glob('*.h')
*
* This function is tail-called by pp_readline(), pp_rcatline() and
* pp_glob(), and it may check PL_op's op_type and op_flags as
* appropriate.
*
* For file reading:
* It reads the line(s) from PL_last_in_gv.
* It returns a list of lines, or in scalar context, reads one line into
* targ (or if OPf_STACKED, into the top SV on the stack), and
* returns that. (If OP_RCATLINE, concats rather than sets).
*
* So it normally expects zero args, or one arg when the OPf_STACKED
* optimisation is present.
*
* For file globbing:
* Note that we don't normally reach here: we only get here if perl is
* built with PERL_EXTERNAL_GLOB, which is normally only when
* building miniperl.
*
* Expects one arg, which is the pattern string (e.g. '*.h').
* The caller sets PL_last_in_gv to a plain GV that just has a new
* IO::File PVIO attached. That PVIO is used to attach a pipe file
* handle to when an external glob is being run in scalar context,
* so the pipe is available on subsequent iterations.
*
* Handles tied IO magic, but not overloading - that's the caller's
* responsibility.
*
* Handles the *ARGV filehandle specially, to do all the <> wizardry.
*
* In summary: on entry, the stack has zero or one items pushed, and
* looks like:
*
* - when OP_READLINE without OPf_STACKED
* target when OP_READLINE with OPf_STACKED, or when OP_RCATLINE
* '*.h' when OP_GLOB
*/
OP *
Perl_do_readline(pTHX)
{
const I32 type = PL_op->op_type;
/* only readline/rcatline can have the STACKED optimisation,
* and rcatline *always* has it */
if (PL_op->op_flags & OPf_STACKED) {
assert(type != OP_GLOB);
assert(GIMME_V == G_SCALAR);
}
if (type == OP_RCATLINE)
assert(PL_op->op_flags & OPf_STACKED);
const U8 gimme = GIMME_V;
SV *targ = (gimme == G_SCALAR)
? (PL_op->op_flags & OPf_STACKED)
? *PL_stack_sp
: PAD_SV(PL_op->op_targ)
: NULL;
SV *sv;
STRLEN tmplen = 0;
STRLEN offset;
PerlIO *fp;
IO * const io = GvIO(PL_last_in_gv);
/* process tied file handle if present */
if (io) {
const MAGIC *const mg = SvTIED_mg((const SV *)io, PERL_MAGIC_tiedscalar);
if (mg) {
/* not possible for the faked-up IO passed by an OP_GLOB to be
* tied */
assert(type != OP_GLOB);
/* OPf_STACKED only applies when in scalar context */
assert(!(gimme != G_SCALAR && (PL_op->op_flags & OPf_STACKED)));
/* tied_method() frees everything currently above the passed
* mark, and returns any values at mark[1] onwards */
Perl_tied_method(aTHX_ SV_CONST(READLINE),
/* mark => */ PL_stack_sp,
MUTABLE_SV(io), mg, gimme, 0);
if (gimme == G_SCALAR) {
SvSetSV_nosteal(targ, *PL_stack_sp);
SvSETMAGIC(targ);
if (PL_op->op_flags & OPf_STACKED) {
/* free the tied method call's return value */
rpp_popfree_1();
assert(*PL_stack_sp == targ);
}
else
rpp_replace_1_1(targ);
}
else
/* no targ to pop off the stack - any returned values
* are in the right place in the stack */
assert(!(PL_op->op_flags & OPf_STACKED));
return NORMAL;
}
}
fp = NULL;
/* handle possible *ARGV, and check for read on write-only FH */
if (io) {
fp = IoIFP(io);
if (fp) {
if (IoTYPE(io) == IoTYPE_WRONLY)
report_wrongway_fh(PL_last_in_gv, '>');
}
else {
if (IoFLAGS(io) & IOf_ARGV) {
if (IoFLAGS(io) & IOf_START) {
IoLINES(io) = 0;
if (av_count(GvAVn(PL_last_in_gv)) == 0) {
IoFLAGS(io) &= ~IOf_START;
do_open6(PL_last_in_gv, "-", 1, NULL, NULL, 0);
SvTAINTED_off(GvSVn(PL_last_in_gv)); /* previous tainting irrelevant */
sv_setpvs(GvSVn(PL_last_in_gv), "-");
SvSETMAGIC(GvSV(PL_last_in_gv));
fp = IoIFP(io);
goto have_fp;
}
}
fp = nextargv(PL_last_in_gv, PL_op->op_flags & OPf_SPECIAL);
if (!fp) { /* Note: fp != IoIFP(io) */
(void)do_close(PL_last_in_gv, FALSE); /* now it does*/
}
}
else if (type == OP_GLOB) {
fp = Perl_start_glob(aTHX_ *PL_stack_sp, io);
rpp_popfree_1_NN();
}
}
}
/* handle bad file handle */
if (!fp) {
if ((!io || !(IoFLAGS(io) & IOf_START))
&& ckWARN(WARN_CLOSED)
&& type != OP_GLOB)
{
report_evil_fh(PL_last_in_gv);
}
if (gimme == G_SCALAR) {
/* undef targ, and return that undefined value */
if (type != OP_RCATLINE)
sv_set_undef(targ);
if (!(PL_op->op_flags & OPf_STACKED))
rpp_push_1(targ);
}
return NORMAL;
}
have_fp:
/* prepare targ to have a string assigned to it */
if (gimme == G_SCALAR) {
sv = targ;
if (type == OP_RCATLINE && SvGMAGICAL(sv))
mg_get(sv);
if (SvROK(sv)) {
if (type == OP_RCATLINE)
SvPV_force_nomg_nolen(sv);
else
sv_unref(sv);
}
else if (isGV_with_GP(sv)) {
SvPV_force_nomg_nolen(sv);
}
SvUPGRADE(sv, SVt_PV);
tmplen = SvLEN(sv); /* remember if already alloced */
if (!tmplen && !SvREADONLY(sv) && !SvIsCOW(sv)) {
/* try short-buffering it. Please update t/op/readline.t
* if you change the growth length.
*/
Sv_Grow(sv, 80);
}
offset = 0;
if (type == OP_RCATLINE && SvOK(sv)) {
if (!SvPOK(sv)) {
SvPV_force_nomg_nolen(sv);
}
offset = SvCUR(sv);
}
}
else {
/* XXX on RC builds, push on stack rather than mortalize ? */
sv = sv_2mortal(newSV(80));
offset = 0;
}
/* This should not be marked tainted if the fp is marked clean */
#define MAYBE_TAINT_LINE(io, sv) \
if (!(IoFLAGS(io) & IOf_UNTAINT)) { \
TAINT; \
SvTAINTED_on(sv); \
}
/* delay EOF state for a snarfed empty file */
#define SNARF_EOF(gimme,rs,io,sv) \
(gimme != G_SCALAR || SvCUR(sv) \
|| (IoFLAGS(io) & IOf_NOLINE) || !RsSNARF(rs))
/* create one or more lines, or (if OP_GLOB), pathnames */
for (;;) {
if (!sv_gets(sv, fp, offset)
&& (type == OP_GLOB
|| SNARF_EOF(gimme, PL_rs, io, sv)
|| PerlIO_error(fp)))
{
if (IoFLAGS(io) & IOf_ARGV) {
fp = nextargv(PL_last_in_gv, PL_op->op_flags & OPf_SPECIAL);
if (fp) {
continue;
}
(void)do_close(PL_last_in_gv, FALSE);
}
else if (type == OP_GLOB) {
/* clear any errors here so we only fail on the pclose()
failing, which should only happen on the child
failing
*/
PerlIO_clearerr(fp);
if (!do_close(PL_last_in_gv, FALSE)) {
Perl_ck_warner(aTHX_ packWARN(WARN_GLOB),
"glob failed (child exited with status %d%s)",
(int)(STATUS_CURRENT >> 8),
(STATUS_CURRENT & 0x80) ? ", core dumped" : "");
}
}
if (gimme == G_SCALAR) {
if (type != OP_RCATLINE) {
SV_CHECK_THINKFIRST_COW_DROP(targ);
SvOK_off(targ);
}
/* targ not already there? */
if (!(PL_op->op_flags & OPf_STACKED))
rpp_push_1(targ);
}
else if (PL_op->op_flags & OPf_STACKED)
rpp_popfree_1_NN();
MAYBE_TAINT_LINE(io, sv);
return NORMAL;
}
MAYBE_TAINT_LINE(io, sv);
IoLINES(io)++;
IoFLAGS(io) |= IOf_NOLINE;
SvSETMAGIC(sv);
rpp_extend(1);
if (PL_op->op_flags & OPf_STACKED) {
/* push sv while keeping targ above it, so targ doesn't get
* freed */
assert(*PL_stack_sp == targ);
PL_stack_sp[1] = targ;
*PL_stack_sp++ = NULL;
rpp_replace_at(PL_stack_sp - 1, sv);
}
else
rpp_push_1(sv);
if (type == OP_GLOB) {
const char *t1;
Stat_t statbuf;
/* chomp(sv) */
if (SvCUR(sv) > 0 && SvCUR(PL_rs) > 0) {
char * const tmps = SvEND(sv) - 1;
if (*tmps == *SvPVX_const(PL_rs)) {
*tmps = '\0';
SvCUR_set(sv, SvCUR(sv) - 1);
}
}
/* find longest substring of sv up to first metachar */
for (t1 = SvPVX_const(sv); *t1; t1++) {
#ifdef __VMS
if (memCHRs("*%?", *t1))
#else
if (memCHRs("$&*(){}[]'\";\\|?<>~`", *t1))
#endif
break;
}
if (*t1 && PerlLIO_lstat(SvPVX_const(sv), &statbuf) < 0) {
/* Unmatched wildcard? Chuck it... */
/* no need to worry about targ still on top of stack */
assert(!(PL_op->op_flags & OPf_STACKED));
rpp_popfree_1();
continue;
}
} else if (SvUTF8(sv)) { /* OP_READLINE, OP_RCATLINE */
/* check line if valid Unicode */
if (ckWARN(WARN_UTF8)) {
const U8 * const s = (const U8*)SvPVX_const(sv) + offset;
const STRLEN len = SvCUR(sv) - offset;
const U8 *f;
if (!is_utf8_string_loc(s, len, &f))
/* Emulate :encoding(utf8) warning in the same case. */
Perl_warner(aTHX_ packWARN(WARN_UTF8),
"utf8 \"\\x%02X\" does not map to Unicode",
f < (U8*)SvEND(sv) ? *f : 0);
}
}
if (gimme == G_LIST) {
if (SvLEN(sv) - SvCUR(sv) > 20) {
SvPV_shrink_to_cur(sv);
}
/* XXX on RC builds, push on stack rather than mortalize ? */
sv = sv_2mortal(newSV(80));
continue;
}
if (gimme == G_SCALAR && !tmplen && SvLEN(sv) - SvCUR(sv) > 80) {
/* try to reclaim a bit of scalar space (only on 1st alloc) */
const STRLEN new_len
= SvCUR(sv) < 60 ? 80 : SvCUR(sv)+40; /* allow some slop */
SvPV_renew(sv, new_len);
}
if (PL_op->op_flags & OPf_STACKED)
rpp_popfree_1_NN(); /* finally remove targ */
/* return sv, which was recently pushed onto the stack */
return NORMAL;
} /* for (;;) */
}
PP(pp_helem)
{
HE* he;
SV **svp;
SV * const keysv = PL_stack_sp[0];
HV * const hv = MUTABLE_HV(PL_stack_sp[-1]);
const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
SV *sv;
const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
bool preeminent = TRUE;
SV *retsv;
if (SvTYPE(hv) != SVt_PVHV) {
retsv = &PL_sv_undef;
goto ret;
}
if (localizing) {
MAGIC *mg;
HV *stash;
/* Try to preserve the existence of a tied hash
* element by using EXISTS and DELETE if possible.
* Fall back to FETCH and STORE otherwise. */
if (SvCANEXISTDELETE(hv))
preeminent = hv_exists_ent(hv, keysv, 0);
}
he = hv_fetch_ent(hv, keysv, lval && !defer, 0);
svp = he ? &HeVAL(he) : NULL;
if (lval) {
if (!svp || !*svp || *svp == &PL_sv_undef) {
SV* lv;
SV* key2;
if (!defer) {
DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv));
}
lv = newSV_type_mortal(SVt_PVLV);
LvTYPE(lv) = 'y';
sv_magic(lv, key2 = newSVsv(keysv), PERL_MAGIC_defelem, NULL, 0);
SvREFCNT_dec_NN(key2); /* sv_magic() increments refcount */
LvTARG(lv) = SvREFCNT_inc_simple_NN(hv);
LvTARGLEN(lv) = 1;
retsv = lv;
goto ret;
}
if (localizing) {
if (HvNAME_get(hv) && isGV_or_RVCV(*svp))
save_gp(MUTABLE_GV(*svp), !(PL_op->op_flags & OPf_SPECIAL));
else if (preeminent)
save_helem_flags(hv, keysv, svp,
(PL_op->op_flags & OPf_SPECIAL) ? 0 : SAVEf_SETMAGIC);
else
SAVEHDELETE(hv, keysv);
}
else if (PL_op->op_private & OPpDEREF) {
retsv = vivify_ref(*svp, PL_op->op_private & OPpDEREF);
goto ret;;
}
}
sv = (svp && *svp ? *svp : &PL_sv_undef);
/* Originally this did a conditional C<sv = sv_mortalcopy(sv)>; this
* was to make C<local $tied{foo} = $tied{foo}> possible.
* However, it seems no longer to be needed for that purpose, and
* introduced a new bug: stuff like C<while ($hash{taintedval} =~ /.../g>
* would loop endlessly since the pos magic is getting set on the
* mortal copy and lost. However, the copy has the effect of
* triggering the get magic, and losing it altogether made things like
* c<$tied{foo};> in void context no longer do get magic, which some
* code relied on. Also, delayed triggering of magic on @+ and friends
* meant the original regex may be out of scope by now. So as a
* compromise, do the get magic here. (The MGf_GSKIP flag will stop it
* being called too many times). */
if (!lval && SvRMAGICAL(hv) && SvGMAGICAL(sv))
mg_get(sv);
retsv = sv;
ret:
rpp_replace_2_1_NN(retsv);
return NORMAL;
}
/* a stripped-down version of Perl_softref2xv() for use by
* pp_multideref(), which doesn't use PL_op->op_flags */
STATIC GV *
S_softref2xv_lite(pTHX_ SV *const sv, const char *const what,
const svtype type)
{
if (PL_op->op_private & HINT_STRICT_REFS) {
if (SvOK(sv))
Perl_die(aTHX_ PL_no_symref_sv, sv,
(SvPOKp(sv) && SvCUR(sv)>32 ? "..." : ""), what);
else
Perl_die(aTHX_ PL_no_usym, what);
}
if (!SvOK(sv))
Perl_die(aTHX_ PL_no_usym, what);
return gv_fetchsv_nomg(sv, GV_ADD, type);
}
/* Handle one or more aggregate derefs and array/hash indexings, e.g.
* $h->{foo} or $a[0]{$key}[$i] or f()->[1]
*
* op_aux points to an array of unions of UV / IV / SV* / PADOFFSET.
* Each of these either contains a set of actions, or an argument, such as
* an IV to use as an array index, or a lexical var to retrieve.
* Several actions are stored per UV; we keep shifting new actions off the
* one UV, and only reload when it becomes zero.
*/
PP(pp_multideref)
{
SV *sv = NULL; /* init to avoid spurious 'may be used uninitialized' */
UNOP_AUX_item *items = cUNOP_AUXx(PL_op)->op_aux;
UV actions = items->uv;
assert(actions);
/* this tells find_uninit_var() where we're up to */
PL_multideref_pc = items;
bool replace = FALSE;
while (1) {
/* there are three main classes of action; the first retrieves
* the initial AV or HV from a variable or the stack; the second
* does the equivalent of an unrolled (/DREFAV, rv2av, aelem),
* the third an unrolled (/DREFHV, rv2hv, helem).
*/
switch (actions & MDEREF_ACTION_MASK) {
case MDEREF_reload:
actions = (++items)->uv;
continue;
case MDEREF_AV_padav_aelem: /* $lex[...] */
sv = PAD_SVl((++items)->pad_offset);
goto do_AV_aelem;
case MDEREF_AV_gvav_aelem: /* $pkg[...] */
sv = UNOP_AUX_item_sv(++items);
assert(isGV_with_GP(sv));
sv = (SV*)GvAVn((GV*)sv);
goto do_AV_aelem;
case MDEREF_AV_pop_rv2av_aelem: /* expr->[...] */
{
sv = *PL_stack_sp;
replace = TRUE;
goto do_AV_rv2av_aelem;
}
case MDEREF_AV_gvsv_vivify_rv2av_aelem: /* $pkg->[...] */
sv = UNOP_AUX_item_sv(++items);
assert(isGV_with_GP(sv));
sv = GvSVn((GV*)sv);
goto do_AV_vivify_rv2av_aelem;
case MDEREF_AV_padsv_vivify_rv2av_aelem: /* $lex->[...] */
sv = PAD_SVl((++items)->pad_offset);
/* FALLTHROUGH */
do_AV_vivify_rv2av_aelem:
case MDEREF_AV_vivify_rv2av_aelem: /* vivify, ->[...] */
/* this is the OPpDEREF action normally found at the end of
* ops like aelem, helem, rv2sv */
sv = vivify_ref(sv, OPpDEREF_AV);
/* FALLTHROUGH */
do_AV_rv2av_aelem:
/* this is basically a copy of pp_rv2av when it just has the
* sKR/1 flags */
SvGETMAGIC(sv);
if (LIKELY(SvROK(sv))) {
if (UNLIKELY(SvAMAGIC(sv))) {
sv = amagic_deref_call(sv, to_av_amg);
}
sv = SvRV(sv);
if (UNLIKELY(SvTYPE(sv) != SVt_PVAV))
DIE(aTHX_ "Not an ARRAY reference");
}
else if (SvTYPE(sv) != SVt_PVAV) {
if (!isGV_with_GP(sv))
sv = (SV*)S_softref2xv_lite(aTHX_ sv, "an ARRAY", SVt_PVAV);
sv = MUTABLE_SV(GvAVn((GV*)sv));
}
/* FALLTHROUGH */
do_AV_aelem:
{
/* retrieve the key; this may be either a lexical or package
* var (whose index/ptr is stored as an item) or a signed
* integer constant stored as an item.
*/
SV *elemsv;
IV elem = 0; /* to shut up stupid compiler warnings */
assert(SvTYPE(sv) == SVt_PVAV);
switch (actions & MDEREF_INDEX_MASK) {
case MDEREF_INDEX_none:
goto finish;
case MDEREF_INDEX_const:
elem = (++items)->iv;
break;
case MDEREF_INDEX_padsv:
elemsv = PAD_SVl((++items)->pad_offset);
goto check_elem;
case MDEREF_INDEX_gvsv:
elemsv = UNOP_AUX_item_sv(++items);
assert(isGV_with_GP(elemsv));
elemsv = GvSVn((GV*)elemsv);
check_elem:
if (UNLIKELY(SvROK(elemsv) && !SvGAMAGIC(elemsv)
&& ckWARN(WARN_MISC)))
Perl_warner(aTHX_ packWARN(WARN_MISC),
"Use of reference \"%" SVf "\" as array index",
SVfARG(elemsv));
/* the only time that S_find_uninit_var() needs this
* is to determine which index value triggered the
* undef warning. So just update it here. Note that
* since we don't save and restore this var (e.g. for
* tie or overload execution), its value will be
* meaningless apart from just here */
PL_multideref_pc = items;
elem = SvIV(elemsv);
break;
}
/* this is basically a copy of pp_aelem with OPpDEREF skipped */
if (!(actions & MDEREF_FLAG_last)) {
SV** svp = av_fetch((AV*)sv, elem, 1);
if (!svp || ! (sv=*svp))
DIE(aTHX_ PL_no_aelem, elem);
break;
}
if (PL_op->op_private &
(OPpMULTIDEREF_EXISTS|OPpMULTIDEREF_DELETE))
{
if (PL_op->op_private & OPpMULTIDEREF_EXISTS) {
sv = av_exists((AV*)sv, elem) ? &PL_sv_yes : &PL_sv_no;
}
else {
I32 discard = (GIMME_V == G_VOID) ? G_DISCARD : 0;
sv = av_delete((AV*)sv, elem, discard);
if (discard)
return NORMAL;
if (!sv)
sv = &PL_sv_undef;
}
}
else {
const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
bool preeminent = TRUE;
AV *const av = (AV*)sv;
SV** svp;
if (UNLIKELY(localizing)) {
MAGIC *mg;
HV *stash;
/* Try to preserve the existence of a tied array
* element by using EXISTS and DELETE if possible.
* Fall back to FETCH and STORE otherwise. */
if (SvCANEXISTDELETE(av))
preeminent = av_exists(av, elem);
}
svp = av_fetch(av, elem, lval && !defer);
if (lval) {
if (!svp || !(sv = *svp)) {
IV len;
if (!defer)
DIE(aTHX_ PL_no_aelem, elem);
len = av_top_index(av);
/* Resolve a negative index that falls within
* the array. Leave it negative it if falls
* outside the array. */
if (elem < 0 && len + elem >= 0)
elem = len + elem;
if (elem >= 0 && elem <= len)
/* Falls within the array. */
sv = av_nonelem(av,elem);
else
/* Falls outside the array. If it is neg-
ative, magic_setdefelem will use the
index for error reporting. */
sv = sv_2mortal(newSVavdefelem(av,elem,1));
}
else {
if (UNLIKELY(localizing)) {
if (preeminent) {
save_aelem(av, elem, svp);
sv = *svp; /* may have changed */
}
else
SAVEADELETE(av, elem);
}
}
}
else {
sv = (svp ? *svp : &PL_sv_undef);
/* see note in pp_helem() */
if (SvRMAGICAL(av) && SvGMAGICAL(sv))
mg_get(sv);
}
}
}
finish:
{
if (replace)
rpp_replace_1_1_NN(sv);
else
rpp_xpush_1(sv);
return NORMAL;
}
/* NOTREACHED */
case MDEREF_HV_padhv_helem: /* $lex{...} */
sv = PAD_SVl((++items)->pad_offset);
goto do_HV_helem;
case MDEREF_HV_gvhv_helem: /* $pkg{...} */
sv = UNOP_AUX_item_sv(++items);
assert(isGV_with_GP(sv));
sv = (SV*)GvHVn((GV*)sv);
goto do_HV_helem;
case MDEREF_HV_pop_rv2hv_helem: /* expr->{...} */
{
sv = *PL_stack_sp;
replace = TRUE;
goto do_HV_rv2hv_helem;
}
case MDEREF_HV_gvsv_vivify_rv2hv_helem: /* $pkg->{...} */
sv = UNOP_AUX_item_sv(++items);
assert(isGV_with_GP(sv));
sv = GvSVn((GV*)sv);
goto do_HV_vivify_rv2hv_helem;
case MDEREF_HV_padsv_vivify_rv2hv_helem: /* $lex->{...} */
sv = PAD_SVl((++items)->pad_offset);
/* FALLTHROUGH */
do_HV_vivify_rv2hv_helem:
case MDEREF_HV_vivify_rv2hv_helem: /* vivify, ->{...} */
/* this is the OPpDEREF action normally found at the end of
* ops like aelem, helem, rv2sv */
sv = vivify_ref(sv, OPpDEREF_HV);
/* FALLTHROUGH */
do_HV_rv2hv_helem:
/* this is basically a copy of pp_rv2hv when it just has the
* sKR/1 flags (and pp_rv2hv is aliased to pp_rv2av) */
SvGETMAGIC(sv);
if (LIKELY(SvROK(sv))) {
if (UNLIKELY(SvAMAGIC(sv))) {
sv = amagic_deref_call(sv, to_hv_amg);
}
sv = SvRV(sv);
if (UNLIKELY(SvTYPE(sv) != SVt_PVHV))
DIE(aTHX_ "Not a HASH reference");
}
else if (SvTYPE(sv) != SVt_PVHV) {
if (!isGV_with_GP(sv))
sv = (SV*)S_softref2xv_lite(aTHX_ sv, "a HASH", SVt_PVHV);
sv = MUTABLE_SV(GvHVn((GV*)sv));
}
/* FALLTHROUGH */
do_HV_helem:
{
/* retrieve the key; this may be either a lexical / package
* var or a string constant, whose index/ptr is stored as an
* item
*/
SV *keysv = NULL; /* to shut up stupid compiler warnings */
assert(SvTYPE(sv) == SVt_PVHV);
switch (actions & MDEREF_INDEX_MASK) {
case MDEREF_INDEX_none:
goto finish;
case MDEREF_INDEX_const:
keysv = UNOP_AUX_item_sv(++items);
break;
case MDEREF_INDEX_padsv:
keysv = PAD_SVl((++items)->pad_offset);
break;
case MDEREF_INDEX_gvsv:
keysv = UNOP_AUX_item_sv(++items);
keysv = GvSVn((GV*)keysv);
break;
}
/* see comment above about setting this var */
PL_multideref_pc = items;
/* ensure that candidate CONSTs have been HEKified */
assert( ((actions & MDEREF_INDEX_MASK) != MDEREF_INDEX_const)
|| SvTYPE(keysv) >= SVt_PVMG
|| !SvOK(keysv)
|| SvROK(keysv)
|| SvIsCOW_shared_hash(keysv));
/* this is basically a copy of pp_helem with OPpDEREF skipped */
if (!(actions & MDEREF_FLAG_last)) {
HE *he = hv_fetch_ent((HV*)sv, keysv, 1, 0);
if (!he || !(sv=HeVAL(he)) || sv == &PL_sv_undef)
DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv));
break;
}
if (PL_op->op_private &
(OPpMULTIDEREF_EXISTS|OPpMULTIDEREF_DELETE))
{
if (PL_op->op_private & OPpMULTIDEREF_EXISTS) {
sv = hv_exists_ent((HV*)sv, keysv, 0)
? &PL_sv_yes : &PL_sv_no;
}
else {
I32 discard = (GIMME_V == G_VOID) ? G_DISCARD : 0;
sv = hv_delete_ent((HV*)sv, keysv, discard, 0);
if (discard)
return NORMAL;
if (!sv)
sv = &PL_sv_undef;
}
}
else {
const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
bool preeminent = TRUE;
SV **svp;
HV * const hv = (HV*)sv;
HE* he;
if (UNLIKELY(localizing)) {
MAGIC *mg;
HV *stash;
/* Try to preserve the existence of a tied hash
* element by using EXISTS and DELETE if possible.
* Fall back to FETCH and STORE otherwise. */
if (SvCANEXISTDELETE(hv))
preeminent = hv_exists_ent(hv, keysv, 0);
}
he = hv_fetch_ent(hv, keysv, lval && !defer, 0);
svp = he ? &HeVAL(he) : NULL;
if (lval) {
if (!svp || !(sv = *svp) || sv == &PL_sv_undef) {
SV* lv;
SV* key2;
if (!defer)
DIE(aTHX_ PL_no_helem_sv, SVfARG(keysv));
lv = newSV_type_mortal(SVt_PVLV);
LvTYPE(lv) = 'y';
sv_magic(lv, key2 = newSVsv(keysv),
PERL_MAGIC_defelem, NULL, 0);
/* sv_magic() increments refcount */
SvREFCNT_dec_NN(key2);
LvTARG(lv) = SvREFCNT_inc_simple_NN(hv);
LvTARGLEN(lv) = 1;
sv = lv;
}
else {
if (localizing) {
if (HvNAME_get(hv) && isGV_or_RVCV(sv))
save_gp(MUTABLE_GV(sv),
!(PL_op->op_flags & OPf_SPECIAL));
else if (preeminent) {
save_helem_flags(hv, keysv, svp,
(PL_op->op_flags & OPf_SPECIAL)
? 0 : SAVEf_SETMAGIC);
sv = *svp; /* may have changed */
}
else
SAVEHDELETE(hv, keysv);
}
}
}
else {
sv = (svp && *svp ? *svp : &PL_sv_undef);
/* see note in pp_helem() */
if (SvRMAGICAL(hv) && SvGMAGICAL(sv))
mg_get(sv);
}
}
goto finish;
}
} /* switch */
actions >>= MDEREF_SHIFT;
} /* while */
/* NOTREACHED */
}
PP(pp_iter)
{
PERL_CONTEXT *cx = CX_CUR();
SV **itersvp = CxITERVAR(cx);
const U8 type = CxTYPE(cx);
/* Classic "for" syntax iterates one-at-a-time.
Many-at-a-time for loops are only for lexicals declared as part of the
for loop, and rely on all the lexicals being in adjacent pad slots.
Curiously, even if the iterator variable is a lexical, the pad offset is
stored in the targ slot of the ENTERITER op, meaning that targ of this OP
has always been zero. Hence we can use this op's targ to hold "how many"
for many-at-a-time. We actually store C<how_many - 1>, so that for the
case of one-at-a-time we have zero (as before), as this makes all the
logic of the for loop below much simpler, with all the other
one-at-a-time cases just falling out of this "naturally". */
PADOFFSET how_many = PL_op->op_targ;
PADOFFSET i = 0;
assert(itersvp);
for (; i <= how_many; ++i ) {
SV *oldsv;
SV *sv;
AV *av;
IV ix;
IV inc;
switch (type) {
case CXt_LOOP_LAZYSV: /* string increment */
{
SV* cur = cx->blk_loop.state_u.lazysv.cur;
SV *end = cx->blk_loop.state_u.lazysv.end;
/* If the maximum is !SvOK(), pp_enteriter substitutes PL_sv_no.
It has SvPVX of "" and SvCUR of 0, which is what we want. */
STRLEN maxlen = 0;
const char *max = SvPV_const(end, maxlen);
bool pad_it = FALSE;
if (DO_UTF8(end) && IN_UNI_8_BIT)
maxlen = sv_len_utf8_nomg(end);
if (UNLIKELY(SvNIOK(cur) || SvCUR(cur) > maxlen)) {
if (LIKELY(!i)) {
goto retno;
}
/* We are looping n-at-a-time and the range isn't a multiple
of n, so we fill the rest of the lexicals with undef.
This only happens on the last iteration of the loop, and
we will have already set up the "terminate next time"
condition earlier in this for loop for this call of the
ITER op when we set up the lexical corresponding to the
last value in the range. Hence we don't goto retno (yet),
and just below we don't repeat the setup for "terminate
next time". */
pad_it = TRUE;
}
oldsv = *itersvp;
/* NB: on the first iteration, oldsv will have a ref count of at
* least 2 (one extra from blk_loop.itersave), so the GV or pad
* slot will get localised; on subsequent iterations the RC==1
* optimisation may kick in and the SV will be reused. */
if (UNLIKELY(pad_it)) {
*itersvp = &PL_sv_undef;
SvREFCNT_dec(oldsv);
}
else if (oldsv && LIKELY(SvREFCNT(oldsv) == 1 && !SvMAGICAL(oldsv))) {
/* safe to reuse old SV */
sv_setsv(oldsv, cur);
}
else {
/* we need a fresh SV every time so that loop body sees a
* completely new SV for closures/references to work as
* they used to */
*itersvp = newSVsv(cur);
SvREFCNT_dec(oldsv);
}
if (UNLIKELY(pad_it)) {
/* We're "beyond the end" of the iterator here, filling the
extra lexicals with undef, so we mustn't do anything
(further) to the iterator itself at this point.
(Observe how the other two blocks modify the iterator's
value) */
}
else if (strEQ(SvPVX_const(cur), max))
sv_setiv(cur, 0); /* terminate next time */
else
sv_inc(cur);
break;
}
case CXt_LOOP_LAZYIV: /* integer increment */
{
IV cur = cx->blk_loop.state_u.lazyiv.cur;
bool pad_it = FALSE;
if (UNLIKELY(cur > cx->blk_loop.state_u.lazyiv.end)) {
if (LIKELY(!i)) {
goto retno;
}
pad_it = TRUE;
}
oldsv = *itersvp;
/* see NB comment above */
if (UNLIKELY(pad_it)) {
*itersvp = &PL_sv_undef;
SvREFCNT_dec(oldsv);
}
else if (oldsv && LIKELY(SvREFCNT(oldsv) == 1 && !SvMAGICAL(oldsv))) {
/* safe to reuse old SV */
if ( (SvFLAGS(oldsv) & (SVTYPEMASK|SVf_THINKFIRST|SVf_IVisUV))
== SVt_IV) {
/* Cheap SvIOK_only().
* Assert that flags which SvIOK_only() would test or
* clear can't be set, because we're SVt_IV */
assert(!(SvFLAGS(oldsv) &
(SVf_OOK|SVf_UTF8|(SVf_OK & ~(SVf_IOK|SVp_IOK)))));
SvFLAGS(oldsv) |= (SVf_IOK|SVp_IOK);
/* SvIV_set() where sv_any points to head */
oldsv->sv_u.svu_iv = cur;
}
else
sv_setiv(oldsv, cur);
}
else {
/* we need a fresh SV every time so that loop body sees a
* completely new SV for closures/references to work as they
* used to */
*itersvp = newSViv(cur);
SvREFCNT_dec(oldsv);
}
if (UNLIKELY(pad_it)) {
/* We're good (see "We are looping n-at-a-time" comment
above). */
}
else if (UNLIKELY(cur == IV_MAX)) {
/* Handle end of range at IV_MAX */
cx->blk_loop.state_u.lazyiv.end = IV_MIN;
} else
++cx->blk_loop.state_u.lazyiv.cur;
break;
}
case CXt_LOOP_LIST: /* for (1,2,3) */
assert(OPpITER_REVERSED == 2); /* so inc becomes -1 or 1 */
inc = (IV)1 - (IV)(PL_op->op_private & OPpITER_REVERSED);
ix = (cx->blk_loop.state_u.stack.ix += inc);
if (UNLIKELY(inc > 0
? ix > cx->blk_oldsp
: ix <= cx->blk_loop.state_u.stack.basesp)
) {
if (LIKELY(!i)) {
goto retno;
}
sv = &PL_sv_undef;
}
else {
sv = PL_stack_base[ix];
}
av = NULL;
goto loop_ary_common;
case CXt_LOOP_ARY: /* for (@ary) */
av = cx->blk_loop.state_u.ary.ary;
inc = (IV)1 - (IV)(PL_op->op_private & OPpITER_REVERSED);
ix = (cx->blk_loop.state_u.ary.ix += inc);
if (UNLIKELY(inc > 0
? ix > AvFILL(av)
: ix < 0)
) {
if (LIKELY(!i)) {
goto retno;
}
sv = &PL_sv_undef;
} else if (UNLIKELY(SvRMAGICAL(av))) {
SV * const * const svp = av_fetch(av, ix, FALSE);
sv = svp ? *svp : NULL;
}
else {
sv = AvARRAY(av)[ix];
}
loop_ary_common:
if (UNLIKELY(cx->cx_type & CXp_FOR_LVREF)) {
SvSetMagicSV(*itersvp, sv);
break;
}
if (LIKELY(sv)) {
if (UNLIKELY(SvIS_FREED(sv))) {
*itersvp = NULL;
Perl_croak(aTHX_ "Use of freed value in iteration");
}
if (SvPADTMP(sv)) {
sv = newSVsv(sv);
}
else {
SvTEMP_off(sv);
SvREFCNT_inc_simple_void_NN(sv);
}
}
else if (av) {
sv = newSVavdefelem(av, ix, 0);
}
else
sv = &PL_sv_undef;
oldsv = *itersvp;
*itersvp = sv;
SvREFCNT_dec(oldsv);
break;
default:
DIE(aTHX_ "panic: pp_iter, type=%u", CxTYPE(cx));
}
/* Only relevant for a many-at-a-time loop: */
++itersvp;
}
/* Try to bypass pushing &PL_sv_yes and calling pp_and(); instead
* jump straight to the AND op's op_other */
assert(PL_op->op_next->op_type == OP_AND);
if (PL_op->op_next->op_ppaddr == Perl_pp_and) {
return cLOGOPx(PL_op->op_next)->op_other;
}
else {
/* An XS module has replaced the op_ppaddr, so fall back to the slow,
* obvious way. */
/* pp_enteriter should have pre-extended the stack */
EXTEND_SKIP(PL_stack_sp, 1);
rpp_push_IMM(&PL_sv_yes);
return PL_op->op_next;
}
retno:
/* Try to bypass pushing &PL_sv_no and calling pp_and(); instead
* jump straight to the AND op's op_next */
assert(PL_op->op_next->op_type == OP_AND);
/* pp_enteriter should have pre-extended the stack */
EXTEND_SKIP(PL_stack_sp, 1);
/* we only need this for the rare case where the OP_AND isn't
* in void context, e.g. $x = do { for (..) {...} };
* (or for when an XS module has replaced the op_ppaddr)
* but it's cheaper to just push it rather than testing first
*/
rpp_push_IMM(&PL_sv_no);
if (PL_op->op_next->op_ppaddr == Perl_pp_and) {
return PL_op->op_next->op_next;
}
else {
/* An XS module has replaced the op_ppaddr, so fall back to the slow,
* obvious way. */
return PL_op->op_next;
}
}
/*
A description of how taint works in pattern matching and substitution.
This is all conditional on NO_TAINT_SUPPORT remaining undefined (the default).
Under NO_TAINT_SUPPORT, taint-related operations should become no-ops.
While the pattern is being assembled/concatenated and then compiled,
PL_tainted will get set (via TAINT_set) if any component of the pattern
is tainted, e.g. /.*$tainted/. At the end of pattern compilation,
the RXf_TAINTED flag is set on the pattern if PL_tainted is set (via
TAINT_get). It will also be set if any component of the pattern matches
based on locale-dependent behavior.
When the pattern is copied, e.g. $r = qr/..../, the SV holding the ref to
the pattern is marked as tainted. This means that subsequent usage, such
as /x$r/, will set PL_tainted using TAINT_set, and thus RXf_TAINTED,
on the new pattern too.
RXf_TAINTED_SEEN is used post-execution by the get magic code
of $1 et al to indicate whether the returned value should be tainted.
It is the responsibility of the caller of the pattern (i.e. pp_match,
pp_subst etc) to set this flag for any other circumstances where $1 needs
to be tainted.
The taint behaviour of pp_subst (and pp_substcont) is quite complex.
There are three possible sources of taint
* the source string
* the pattern (both compile- and run-time, RXf_TAINTED / RXf_TAINTED_SEEN)
* the replacement string (or expression under /e)
There are four destinations of taint and they are affected by the sources
according to the rules below:
* the return value (not including /r):
tainted by the source string and pattern, but only for the
number-of-iterations case; boolean returns aren't tainted;
* the modified string (or modified copy under /r):
tainted by the source string, pattern, and replacement strings;
* $1 et al:
tainted by the pattern, and under 'use re "taint"', by the source
string too;
* PL_taint - i.e. whether subsequent code (e.g. in a /e block) is tainted:
should always be unset before executing subsequent code.
The overall action of pp_subst is:
* at the start, set bits in rxtainted indicating the taint status of
the various sources.
* After each pattern execution, update the SUBST_TAINT_PAT bit in
rxtainted if RXf_TAINTED_SEEN has been set, to indicate that the
pattern has subsequently become tainted via locale ops.
* If control is being passed to pp_substcont to execute a /e block,
save rxtainted in the CXt_SUBST block, for future use by
pp_substcont.
* Whenever control is being returned to perl code (either by falling
off the "end" of pp_subst/pp_substcont, or by entering a /e block),
use the flag bits in rxtainted to make all the appropriate types of
destination taint visible; e.g. set RXf_TAINTED_SEEN so that $1
et al will appear tainted.
pp_match is just a simpler version of the above.
*/
PP(pp_subst)
{
dTARG;
PMOP *pm = cPMOP;
PMOP *rpm = pm;
char *s;
char *strend;
const char *c;
STRLEN clen;
SSize_t iters = 0;
SSize_t maxiters;
bool once;
U8 rxtainted = 0; /* holds various SUBST_TAINT_* flag bits.
See "how taint works" above */
char *orig;
U8 r_flags;
REGEXP *rx = PM_GETRE(pm);
regexp *prog = ReANY(rx);
STRLEN len;
int force_on_match = 0;
const I32 oldsave = PL_savestack_ix;
bool doutf8 = FALSE; /* whether replacement is in utf8 */
#ifdef PERL_ANY_COW
bool was_cow;
#endif
SV *nsv = NULL;
SSize_t sp_offset = 0; /* number of items left on stack */
SV *dstr;
SV *retval;
PERL_ASYNC_CHECK();
if (pm->op_pmflags & PMf_CONST) {
/* known replacement string */
dstr = *PL_stack_sp;
sp_offset++;
}
else
dstr = NULL;
if (PL_op->op_flags & OPf_STACKED) {
/* expr =~ s///; */
TARG = PL_stack_sp[-sp_offset];
sp_offset++;
}
else {
if (ARGTARG)
/* $lex =~ s///; */
GETTARGET;
else {
/* s///; */
TARG = DEFSV;
}
if (!sp_offset)
rpp_extend(1);
}
SvGETMAGIC(TARG); /* must come before cow check */
#ifdef PERL_ANY_COW
/* note that a string might get converted to COW during matching */
was_cow = cBOOL(SvIsCOW(TARG));
#endif
if (!(rpm->op_pmflags & PMf_NONDESTRUCT)) {
#ifndef PERL_ANY_COW
if (SvIsCOW(TARG))
sv_force_normal_flags(TARG,0);
#endif
if ((SvREADONLY(TARG)
|| ( ((SvTYPE(TARG) == SVt_PVGV && isGV_with_GP(TARG))
|| SvTYPE(TARG) > SVt_PVLV)
&& !(SvTYPE(TARG) == SVt_PVGV && SvFAKE(TARG)))))
Perl_croak_no_modify();
}
orig = SvPV_nomg(TARG, len);
/* note we don't (yet) force the var into being a string; if we fail
* to match, we leave as-is; on successful match however, we *will*
* coerce into a string, then repeat the match */
if (!SvPOKp(TARG) || SvTYPE(TARG) == SVt_PVGV || SvVOK(TARG))
force_on_match = 1;
/* only replace once? */
once = !(rpm->op_pmflags & PMf_GLOBAL);
/* See "how taint works" above */
if (TAINTING_get) {
rxtainted = (
(SvTAINTED(TARG) ? SUBST_TAINT_STR : 0)
| (RXp_ISTAINTED(prog) ? SUBST_TAINT_PAT : 0)
| ((pm->op_pmflags & PMf_RETAINT) ? SUBST_TAINT_RETAINT : 0)
| (( (once && !(rpm->op_pmflags & PMf_NONDESTRUCT))
|| (PL_op->op_private & OPpTRUEBOOL)) ? SUBST_TAINT_BOOLRET : 0));
TAINT_NOT;
}
force_it:
if (!pm || !orig)
DIE(aTHX_ "panic: pp_subst, pm=%p, orig=%p", pm, orig);
strend = orig + len;
/* We can match twice at each position, once with zero-length,
* second time with non-zero.
* Don't handle utf8 specially; we can use length-in-bytes as an
* upper bound on length-in-characters, and avoid the cpu-cost of
* computing a tighter bound. */
maxiters = 2 * len + 10;
/* handle the empty pattern */
if (!RX_PRELEN(rx) && PL_curpm && !prog->mother_re) {
if (PL_curpm == PL_reg_curpm) {
if (PL_curpm_under) {
if (PL_curpm_under == PL_reg_curpm) {
Perl_croak(aTHX_ "Infinite recursion via empty pattern");
} else {
pm = PL_curpm_under;
}
}
} else {
pm = PL_curpm;
}
rx = PM_GETRE(pm);
prog = ReANY(rx);
}
#ifdef PERL_SAWAMPERSAND
r_flags = ( RXp_NPARENS(prog)
|| PL_sawampersand
|| (RXp_EXTFLAGS(prog) & (RXf_EVAL_SEEN|RXf_PMf_KEEPCOPY))
|| (rpm->op_pmflags & PMf_KEEPCOPY)
)
? REXEC_COPY_STR
: 0;
#else
r_flags = REXEC_COPY_STR;
#endif
if (!CALLREGEXEC(rx, orig, strend, orig, 0, TARG, NULL, r_flags))
{
SV *ret = rpm->op_pmflags & PMf_NONDESTRUCT ? TARG : &PL_sv_no;
if (dstr)
rpp_popfree_1_NN(); /* pop replacement string */
if (PL_op->op_flags & OPf_STACKED)
rpp_replace_1_1_NN(ret); /* pop LHS of =~ */
else
rpp_push_1(ret);
LEAVE_SCOPE(oldsave);
return NORMAL;
}
PL_curpm = pm;
/* known replacement string? */
if (dstr) {
/* replacement needing upgrading? */
if (DO_UTF8(TARG) && !doutf8) {
nsv = sv_newmortal();
SvSetSV(nsv, dstr);
sv_utf8_upgrade(nsv);
c = SvPV_const(nsv, clen);
doutf8 = TRUE;
}
else {
c = SvPV_const(dstr, clen);
doutf8 = DO_UTF8(dstr);
}
if (UNLIKELY(TAINT_get))
rxtainted |= SUBST_TAINT_REPL;
}
else {
c = NULL;
doutf8 = FALSE;
}
if (c
#ifdef PERL_ANY_COW
&& !was_cow
#endif
&& (SSize_t)clen <= RXp_MINLENRET(prog)
&& ( once
|| !(r_flags & REXEC_COPY_STR)
|| (!SvGMAGICAL(dstr) && !(RXp_EXTFLAGS(prog) & RXf_EVAL_SEEN))
)
&& !(RXp_EXTFLAGS(prog) & RXf_NO_INPLACE_SUBST)
&& (!doutf8 || SvUTF8(TARG))
&& !(rpm->op_pmflags & PMf_NONDESTRUCT))
{
/* known replacement string and can do in-place substitution */
#ifdef PERL_ANY_COW
/* string might have got converted to COW since we set was_cow */
if (SvIsCOW(TARG)) {
if (!force_on_match)
goto have_a_cow;
assert(SvVOK(TARG));
}
#endif
if (force_on_match) {
/* redo the first match, this time with the orig var
* forced into being a string */
force_on_match = 0;
orig = SvPV_force_nomg(TARG, len);
goto force_it;
}
if (once) {
char *d, *m;
if (RXp_MATCH_TAINTED(prog)) /* run time pattern taint, eg locale */
rxtainted |= SUBST_TAINT_PAT;
m = orig + RXp_OFFS_START(prog,0);
d = orig + RXp_OFFS_END(prog,0);
s = orig;
if (m - s > strend - d) { /* faster to shorten from end */
SSize_t i;
if (clen) {
Copy(c, m, clen, char);
m += clen;
}
i = strend - d;
if (i > 0) {
Move(d, m, i, char);
m += i;
}
*m = '\0';
SvCUR_set(TARG, m - s);
}
else { /* faster from front */
SSize_t i = m - s;
d -= clen;
if (i > 0)
Move(s, d - i, i, char);
sv_chop(TARG, d-i);
if (clen)
Copy(c, d, clen, char);
}
retval = &PL_sv_yes;
goto ret;
}
else {
char *d, *m;
d = s = RXp_OFFS_START(prog,0) + orig;
do {
SSize_t i;
if (UNLIKELY(iters++ > maxiters))
DIE(aTHX_ "Substitution loop");
/* run time pattern taint, eg locale */
if (UNLIKELY(RXp_MATCH_TAINTED(prog)))
rxtainted |= SUBST_TAINT_PAT;
m = RXp_OFFS_START(prog,0) + orig;
if ((i = m - s)) {
if (s != d)
Move(s, d, i, char);
d += i;
}
if (clen) {
Copy(c, d, clen, char);
d += clen;
}
s = RXp_OFFS_END(prog,0) + orig;
} while (CALLREGEXEC(rx, s, strend, orig,
s == m, /* don't match same null twice */
TARG, NULL,
REXEC_NOT_FIRST|REXEC_IGNOREPOS|REXEC_FAIL_ON_UNDERFLOW));
if (s != d) {
SSize_t i = strend - s;
SvCUR_set(TARG, d - SvPVX_const(TARG) + i);
Move(s, d, i+1, char); /* include the NUL */
}
assert(iters);
goto ret_iters;
}
}
else {
/* not known replacement string or can't do in-place substitution) */
bool first;
char *m;
SV *repl;
if (force_on_match) {
/* redo the first match, this time with the orig var
* forced into being a string */
force_on_match = 0;
if (rpm->op_pmflags & PMf_NONDESTRUCT) {
/* I feel that it should be possible to avoid this mortal copy
given that the code below copies into a new destination.
However, I suspect it isn't worth the complexity of
unravelling the C<goto force_it> for the small number of
cases where it would be viable to drop into the copy code. */
TARG = sv_2mortal(newSVsv(TARG));
}
orig = SvPV_force_nomg(TARG, len);
goto force_it;
}
#ifdef PERL_ANY_COW
have_a_cow:
#endif
if (RXp_MATCH_TAINTED(prog)) /* run time pattern taint, eg locale */
rxtainted |= SUBST_TAINT_PAT;
repl = dstr;
s = RXp_OFFS_START(prog,0) + orig;
dstr = newSVpvn_flags(orig, s-orig,
SVs_TEMP | (DO_UTF8(TARG) ? SVf_UTF8 : 0));
if (!c) {
/* not known replacement string - call out to ops and OP_SUBSTCONT */
PERL_CONTEXT *cx;
m = orig;
/* note that a whole bunch of local vars are saved here for
* use by pp_substcont: here's a list of them in case you're
* searching for places in this sub that uses a particular var:
* iters maxiters r_flags oldsave rxtainted orig dstr targ
* s m strend rx once */
CX_PUSHSUBST(cx);
return cPMOP->op_pmreplrootu.op_pmreplroot;
}
/* We get here if it's a known replacement string, but can't
* substitute in-place */
first = TRUE;
do {
if (UNLIKELY(iters++ > maxiters))
DIE(aTHX_ "Substitution loop");
if (UNLIKELY(RXp_MATCH_TAINTED(prog)))
rxtainted |= SUBST_TAINT_PAT;
if (RXp_MATCH_COPIED(prog) && RXp_SUBBEG(prog) != orig) {
char *old_s = s;
char *old_orig = orig;
assert(RXp_SUBOFFSET(prog) == 0);
orig = RXp_SUBBEG(prog);
s = orig + (old_s - old_orig);
strend = s + (strend - old_s);
}
m = RXp_OFFS_START(prog,0) + orig;
sv_catpvn_nomg_maybeutf8(dstr, s, m - s, DO_UTF8(TARG));
s = RXp_OFFS_END(prog,0) + orig;
if (first) {
/* replacement already stringified */
if (clen)
sv_catpvn_nomg_maybeutf8(dstr, c, clen, doutf8);
first = FALSE;
}
else {
sv_catsv(dstr, repl);
}
if (once)
break;
} while (CALLREGEXEC(rx, s, strend, orig,
s == m, /* Yields minend of 0 or 1 */
TARG, NULL,
REXEC_NOT_FIRST|REXEC_IGNOREPOS|REXEC_FAIL_ON_UNDERFLOW));
assert(strend >= s);
sv_catpvn_nomg_maybeutf8(dstr, s, strend - s, DO_UTF8(TARG));
if (rpm->op_pmflags & PMf_NONDESTRUCT) {
/* From here on down we're using the copy, and leaving the original
untouched. */
TARG = dstr;
retval = dstr;
goto ret;
} else {
#ifdef PERL_ANY_COW
/* The match may make the string COW. If so, brilliant, because
that's just saved us one malloc, copy and free - the regexp has
donated the old buffer, and we malloc an entirely new one, rather
than the regexp malloc()ing a buffer and copying our original,
only for us to throw it away here during the substitution. */
if (SvIsCOW(TARG)) {
sv_force_normal_flags(TARG, SV_COW_DROP_PV);
} else
#endif
{
SvPV_free(TARG);
}
SvPV_set(TARG, SvPVX(dstr));
SvCUR_set(TARG, SvCUR(dstr));
SvLEN_set(TARG, SvLEN(dstr));
SvFLAGS(TARG) |= SvUTF8(dstr);
SvPV_set(dstr, NULL);
goto ret_iters;
}
}
ret_iters:
if (PL_op->op_private & OPpTRUEBOOL)
retval = &PL_sv_yes;
else {
retval = sv_newmortal();
sv_setiv(retval, iters);
}
ret:
if (dstr)
rpp_popfree_1_NN(); /* pop replacement string */
if (PL_op->op_flags & OPf_STACKED)
rpp_replace_1_1_NN(retval); /* pop LHS of =~ */
else
rpp_push_1(retval);
if (!(rpm->op_pmflags & PMf_NONDESTRUCT)) {
(void)SvPOK_only_UTF8(TARG);
}
/* See "how taint works" above */
if (TAINTING_get) {
if ((rxtainted & SUBST_TAINT_PAT) ||
((rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_RETAINT)) ==
(SUBST_TAINT_STR|SUBST_TAINT_RETAINT))
)
(RXp_MATCH_TAINTED_on(prog)); /* taint $1 et al */
if (!(rxtainted & SUBST_TAINT_BOOLRET)
&& (rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT))
)
SvTAINTED_on(retval); /* taint return value */
else
SvTAINTED_off(retval); /* may have got tainted earlier */
/* needed for mg_set below */
TAINT_set(
cBOOL(rxtainted & (SUBST_TAINT_STR|SUBST_TAINT_PAT|SUBST_TAINT_REPL))
);
SvTAINT(TARG);
}
SvSETMAGIC(TARG); /* PL_tainted must be correctly set for this mg_set */
TAINT_NOT;
LEAVE_SCOPE(oldsave);
return NORMAL;
}
PP(pp_grepwhile)
{
/* Understanding the stack during a grep.
*
* 'grep expr, args' is implemented in the form of
* grepstart;
* do {
* expr;
* grepwhile;
* } while (args);
*
* The stack examples below are in the form of 'perl -Ds' output,
* where any stack element indexed by PL_markstack_ptr[i] has a star
* just to the right of it. In addition, the corresponding i value
* is displayed under the indexed stack element.
*
* On entry to grepwhile, the stack looks like this:
*
* => * M1..Mn X1 * X2..Xn C * R1..Rn BOOL
* [-2] [-1] [0]
*
* where:
* M1..Mn Accumulated args which have been matched so far.
* X1..Xn Random discardable elements from previous iterations.
* C The current (just processed) arg, still aliased to $_.
* R1..Rn The args remaining to be processed.
* BOOL the result of the just-executed grep expression.
*
* Note that it is easiest to think of the top two stack marks as both
* being one too high, and so it would make more sense to have had the
* marks like this:
*
* => * M1..Mn * X1..Xn * C R1..Rn BOOL
* [-2] [-1] [0]
*
* where the stack is divided neatly into 3 groups:
* - matched,
* - discarded,
* - being, or yet to be, processed.
* But off-by-one is the way it is currently, and it works as long as
* we keep it consistent and bear it in mind.
*
* pp_grepwhile() does the following:
*
* - for a match, replace the X1 pointer with a pointer to C and bump
* PL_markstack_ptr[-1]
* - if more args to process, bump PL_markstack_ptr[0] and update the
* $_ alias, else
* - remove top 3 MARKs and return M1..Mn, or a scalar,
* or void as appropriate.
*
*/
bool match = SvTRUE_NN(*PL_stack_sp);
rpp_popfree_1_NN();
if (match) {
SV **from_p = PL_stack_base + PL_markstack_ptr[0];
SV **to_p = PL_stack_base + PL_markstack_ptr[-1]++;
SV *from = *from_p;
SV *to = *to_p;
if (from != to) {
*to_p = from;
#ifdef PERL_RC_STACK
SvREFCNT_inc_simple_void_NN(from);
SvREFCNT_dec(to);
#endif
}
}
++*PL_markstack_ptr;
FREETMPS;
LEAVE_with_name("grep_item"); /* exit inner scope */
/* All done yet? */
if (UNLIKELY(PL_stack_base + *PL_markstack_ptr > PL_stack_sp)) {
SSize_t items;
const U8 gimme = GIMME_V;
LEAVE_with_name("grep"); /* exit outer scope */
(void)POPMARK; /* pop src */
items = --*PL_markstack_ptr - PL_markstack_ptr[-1];
(void)POPMARK; /* pop dst */
SV **base = PL_stack_base + POPMARK; /* pop original mark */
if (gimme == G_LIST)
rpp_popfree_to_NN(base + items);
else {
rpp_popfree_to_NN(base);
if (gimme == G_SCALAR) {
if (PL_op->op_private & OPpTRUEBOOL)
rpp_push_IMM(items ? &PL_sv_yes : &PL_sv_zero);
else {
dTARGET;
TARGi(items,1);
rpp_push_1(TARG);
}
}
}
return NORMAL;
}
else {
SV *src;
ENTER_with_name("grep_item"); /* enter inner scope */
SAVEVPTR(PL_curpm);
src = PL_stack_base[TOPMARK];
if (SvPADTMP(src)) {
SV *newsrc = sv_mortalcopy(src);
PL_stack_base[TOPMARK] = newsrc;
#ifdef PERL_RC_STACK
SvREFCNT_inc_simple_void_NN(newsrc);
SvREFCNT_dec(src);
#endif
src = newsrc;
PL_tmps_floor++;
}
SvTEMP_off(src);
DEFSV_set(src);
return cLOGOP->op_other;
}
}
/* leave_adjust_stacks():
*
* Process a scope's return args (in the range from_sp+1 .. PL_stack_sp),
* positioning them at to_sp+1 onwards, and do the equivalent of a
* FREEMPS and TAINT_NOT.
*
* Not intended to be called in void context.
*
* When leaving a sub, eval, do{} or other scope, the things that need
* doing to process the return args are:
* * in scalar context, only return the last arg (or PL_sv_undef if none);
* * for the types of return that return copies of their args (such
* as rvalue sub return), make a mortal copy of every return arg,
* except where we can optimise the copy away without it being
* semantically visible;
* * make sure that the arg isn't prematurely freed; in the case of an
* arg not copied, this may involve mortalising it. For example, in
* C<sub f { my $x = ...; $x }>, $x would be freed when we do
* CX_LEAVE_SCOPE(cx) unless it's protected or copied.
*
* What condition to use when deciding whether to pass the arg through
* or make a copy, is determined by the 'pass' arg; its valid values are:
* 0: rvalue sub/eval exit
* 1: other rvalue scope exit
* 2: :lvalue sub exit in rvalue context
* 3: :lvalue sub exit in lvalue context and other lvalue scope exits
*
* There is a big issue with doing a FREETMPS. We would like to free any
* temps created by the last statement which the sub executed, rather than
* leaving them for the caller. In a situation where a sub call isn't
* soon followed by a nextstate (e.g. nested recursive calls, a la
* fibonacci()), temps can accumulate, causing memory and performance
* issues.
*
* On the other hand, we don't want to free any TEMPs which are keeping
* alive any return args that we skipped copying; nor do we wish to undo
* any mortalising done here.
*
* The solution is to split the temps stack frame into two, with a cut
* point delineating the two halves. We arrange that by the end of this
* function, all the temps stack frame entries we wish to keep are in the
* range PL_tmps_floor+1.. tmps_base-1, while the ones to free now are in
* the range tmps_base .. PL_tmps_ix. During the course of this
* function, tmps_base starts off as PL_tmps_floor+1, then increases
* whenever we find or create a temp that we know should be kept. In
* general the stuff above tmps_base is undecided until we reach the end,
* and we may need a sort stage for that.
*
* To determine whether a TEMP is keeping a return arg alive, every
* arg that is kept rather than copied and which has the SvTEMP flag
* set, has the flag temporarily unset, to mark it. At the end we scan
* the temps stack frame above the cut for entries without SvTEMP and
* keep them, while turning SvTEMP on again. Note that if we die before
* the SvTEMPs flags are set again, its safe: at worst, subsequent use of
* those SVs may be slightly less efficient.
*
* In practice various optimisations for some common cases mean we can
* avoid most of the scanning and swapping about with the temps stack.
*/
void
Perl_leave_adjust_stacks(pTHX_ SV **from_sp, SV **to_sp, U8 gimme, int pass)
{
SSize_t tmps_base; /* lowest index into tmps stack that needs freeing now */
SSize_t nargs;
PERL_ARGS_ASSERT_LEAVE_ADJUST_STACKS;
TAINT_NOT;
if (gimme == G_LIST) {
nargs = PL_stack_sp - from_sp;
from_sp++;
}
else {
assert(gimme == G_SCALAR);
if (UNLIKELY(from_sp >= PL_stack_sp)) {
/* no return args */
assert(from_sp == PL_stack_sp);
rpp_xpush_IMM(&PL_sv_undef);
}
from_sp = PL_stack_sp;
nargs = 1;
}
/* common code for G_SCALAR and G_LIST */
#ifdef PERL_RC_STACK
{
/* free any items from the stack which are about to get
* over-written */
SV **p = from_sp - 1;
assert(p >= to_sp);
while (p > to_sp) {
SV *sv = *p;
*p-- = NULL;
SvREFCNT_dec(sv);
}
}
#endif
tmps_base = PL_tmps_floor + 1;
assert(nargs >= 0);
if (nargs) {
/* pointer version of tmps_base. Not safe across temp stack
* reallocs. */
SV **tmps_basep;
EXTEND_MORTAL(nargs); /* one big extend for worst-case scenario */
tmps_basep = PL_tmps_stack + tmps_base;
/* process each return arg */
do {
SV *sv = *from_sp++;
assert(PL_tmps_ix + nargs < PL_tmps_max);
#ifdef DEBUGGING
/* PADTMPs with container set magic shouldn't appear in the
* wild. This assert is more important for pp_leavesublv(),
* but by testing for it here, we're more likely to catch
* bad cases (what with :lvalue subs not being widely
* deployed). The two issues are that for something like
* sub :lvalue { $tied{foo} }
* or
* sub :lvalue { substr($foo,1,2) }
* pp_leavesublv() will croak if the sub returns a PADTMP,
* and currently functions like pp_substr() return a mortal
* rather than using their PADTMP when returning a PVLV.
* This is because the PVLV will hold a ref to $foo,
* so $foo would get delayed in being freed while
* the PADTMP SV remained in the PAD.
* So if this assert fails it means either:
* 1) there is pp code similar to pp_substr that is
* returning a PADTMP instead of a mortal, and probably
* needs fixing, or
* 2) pp_leavesublv is making unwarranted assumptions
* about always croaking on a PADTMP
*/
if (SvPADTMP(sv) && SvSMAGICAL(sv)) {
MAGIC *mg;
for (mg = SvMAGIC(sv); mg; mg = mg->mg_moremagic) {
assert(PERL_MAGIC_TYPE_IS_VALUE_MAGIC(mg->mg_type));
}
}
#endif
if (
pass == 0 ? (rpp_is_lone(sv) && !SvMAGICAL(sv))
: pass == 1 ? ((SvTEMP(sv) || SvPADTMP(sv)) && !SvMAGICAL(sv) && SvREFCNT(sv) == 1)
: pass == 2 ? (!SvPADTMP(sv))
: 1)
{
/* pass through: skip copy for logic or optimisation
* reasons; instead mortalise it, except that ... */
#ifdef PERL_RC_STACK
from_sp[-1] = NULL;
#endif
*++to_sp = sv;
if (SvTEMP(sv)) {
/* ... since this SV is an SvTEMP , we don't need to
* re-mortalise it; instead we just need to ensure
* that its existing entry in the temps stack frame
* ends up below the cut and so avoids being freed
* this time round. We mark it as needing to be kept
* by temporarily unsetting SvTEMP; then at the end,
* we shuffle any !SvTEMP entries on the tmps stack
* back below the cut.
* However, there's a significant chance that there's
* a 1:1 correspondence between the first few (or all)
* elements in the return args stack frame and those
* in the temps stack frame; e,g.:
* sub f { ....; map {...} .... },
* or if we're exiting multiple scopes and one of the
* inner scopes has already made mortal copies of each
* return arg.
*
* If so, this arg sv will correspond to the next item
* on the tmps stack above the cut, and so can be kept
* merely by moving the cut boundary up one, rather
* than messing with SvTEMP. If all args are 1:1 then
* we can avoid the sorting stage below completely.
*
* If there are no items above the cut on the tmps
* stack, then the SvTEMP must comne from an item
* below the cut, so there's nothing to do.
*/
if (tmps_basep <= &PL_tmps_stack[PL_tmps_ix]) {
if (sv == *tmps_basep)
tmps_basep++;
else
SvTEMP_off(sv);
}
}
else if (!SvPADTMP(sv)) {
/* mortalise arg to avoid it being freed during save
* stack unwinding. Pad tmps don't need mortalising as
* they're never freed. This is the equivalent of
* sv_2mortal(SvREFCNT_inc(sv)), except that:
* * it assumes that the temps stack has already been
* extended;
* * it puts the new item at the cut rather than at
* ++PL_tmps_ix, moving the previous occupant there
* instead.
*/
if (!SvIMMORTAL(sv)) {
SvREFCNT_inc_simple_void_NN(sv);
SvTEMP_on(sv);
/* Note that if there's nothing above the cut,
* this copies the garbage one slot above
* PL_tmps_ix onto itself. This is harmless (the
* stack's already been extended), but might in
* theory trigger warnings from tools like ASan
*/
PL_tmps_stack[++PL_tmps_ix] = *tmps_basep;
*tmps_basep++ = sv;
}
}
}
else {
/* Make a mortal copy of the SV.
* The following code is the equivalent of sv_mortalcopy()
* except that:
* * it assumes the temps stack has already been extended;
* * it optimises the copying for some simple SV types;
* * it puts the new item at the cut rather than at
* ++PL_tmps_ix, moving the previous occupant there
* instead.
*/
SV *newsv = newSV_type(SVt_NULL);
PL_tmps_stack[++PL_tmps_ix] = *tmps_basep;
/* put it on the tmps stack early so it gets freed if we die */
*tmps_basep++ = newsv;
if (SvTYPE(sv) <= SVt_IV) {
/* arg must be one of undef, IV/UV, or RV: skip
* sv_setsv_flags() and do the copy directly */
U32 dstflags;
U32 srcflags = SvFLAGS(sv);
assert(!SvGMAGICAL(sv));
if (srcflags & (SVf_IOK|SVf_ROK)) {
SET_SVANY_FOR_BODYLESS_IV(newsv);
if (srcflags & SVf_ROK) {
newsv->sv_u.svu_rv = SvREFCNT_inc(SvRV(sv));
/* SV type plus flags */
dstflags = (SVt_IV|SVf_ROK|SVs_TEMP);
}
else {
/* both src and dst are <= SVt_IV, so sv_any
* points to the head; so access the heads
* directly rather than going via sv_any.
*/
assert( &(sv->sv_u.svu_iv)
== &(((XPVIV*) SvANY(sv))->xiv_iv));
assert( &(newsv->sv_u.svu_iv)
== &(((XPVIV*) SvANY(newsv))->xiv_iv));
newsv->sv_u.svu_iv = sv->sv_u.svu_iv;
/* SV type plus flags */
dstflags = (SVt_IV|SVf_IOK|SVp_IOK|SVs_TEMP
|(srcflags & SVf_IVisUV));
}
}
else {
assert(!(srcflags & SVf_OK));
dstflags = (SVt_NULL|SVs_TEMP); /* SV type plus flags */
}
SvFLAGS(newsv) = dstflags;
}
else {
/* do the full sv_setsv() */
SSize_t old_base;
SvTEMP_on(newsv);
old_base = tmps_basep - PL_tmps_stack;
SvGETMAGIC(sv);
sv_setsv_flags(newsv, sv, SV_DO_COW_SVSETSV);
/* the mg_get or sv_setsv might have created new temps
* or realloced the tmps stack; regrow and reload */
EXTEND_MORTAL(nargs);
tmps_basep = PL_tmps_stack + old_base;
TAINT_NOT; /* Each item is independent */
}
#ifdef PERL_RC_STACK
from_sp[-1] = NULL;
SvREFCNT_dec_NN(sv);
assert(!to_sp[1]);
*++to_sp = newsv;
SvREFCNT_inc_simple_void_NN(newsv);
#else
*++to_sp = newsv;
#endif
}
} while (--nargs);
/* If there are any temps left above the cut, we need to sort
* them into those to keep and those to free. The only ones to
* keep are those for which we've temporarily unset SvTEMP.
* Work inwards from the two ends at tmps_basep .. PL_tmps_ix,
* swapping pairs as necessary. Stop when we meet in the middle.
*/
{
SV **top = PL_tmps_stack + PL_tmps_ix;
while (tmps_basep <= top) {
SV *sv = *top;
if (SvTEMP(sv))
top--;
else {
SvTEMP_on(sv);
*top = *tmps_basep;
*tmps_basep = sv;
tmps_basep++;
}
}
}
tmps_base = tmps_basep - PL_tmps_stack;
}
PL_stack_sp = to_sp;
/* unrolled FREETMPS() but using tmps_base-1 rather than PL_tmps_floor */
while (PL_tmps_ix >= tmps_base) {
SV* const sv = PL_tmps_stack[PL_tmps_ix--];
#ifdef PERL_POISON
PoisonWith(PL_tmps_stack + PL_tmps_ix + 1, 1, SV *, 0xAB);
#endif
if (LIKELY(sv)) {
SvTEMP_off(sv);
SvREFCNT_dec_NN(sv); /* note, can modify tmps_ix!!! */
}
}
}
/* also tail-called by pp_return */
PP(pp_leavesub)
{
U8 gimme;
PERL_CONTEXT *cx;
SV **oldsp;
OP *retop;
cx = CX_CUR();
assert(CxTYPE(cx) == CXt_SUB);
if (CxMULTICALL(cx)) {
/* entry zero of a stack is always PL_sv_undef, which
* simplifies converting a '()' return into undef in scalar context */
assert(PL_stack_sp > PL_stack_base || *PL_stack_base == &PL_sv_undef);
return 0;
}
gimme = cx->blk_gimme;
oldsp = PL_stack_base + cx->blk_oldsp; /* last arg of previous frame */
if (gimme == G_VOID)
rpp_popfree_to_NN(oldsp);
else
leave_adjust_stacks(oldsp, oldsp, gimme, 0);
CX_LEAVE_SCOPE(cx);
cx_popsub(cx); /* Stack values are safe: release CV and @_ ... */
cx_popblock(cx);
retop = cx->blk_sub.retop;
CX_POP(cx);
return retop;
}
/* clear (if possible) or abandon the current @_. If 'abandon' is true,
* forces an abandon */
void
Perl_clear_defarray(pTHX_ AV* av, bool abandon)
{
PERL_ARGS_ASSERT_CLEAR_DEFARRAY;
if (LIKELY(!abandon && SvREFCNT(av) == 1 && !SvMAGICAL(av))
#ifndef PERL_RC_STACK
&& !AvREAL(av)
#endif
) {
clear_defarray_simple(av);
#ifndef PERL_RC_STACK
AvREIFY_only(av);
#endif
}
else {
/* abandon */
const SSize_t size = AvFILLp(av) + 1;
/* The ternary gives consistency with av_extend() */
AV *newav = newAV_alloc_xz(size < PERL_ARRAY_NEW_MIN_KEY ?
PERL_ARRAY_NEW_MIN_KEY : size);
#ifndef PERL_RC_STACK
AvREIFY_only(newav);
#endif
PAD_SVl(0) = MUTABLE_SV(newav);
SvREFCNT_dec_NN(av);
}
}
PP(pp_entersub)
{
GV *gv;
CV *cv;
PERL_CONTEXT *cx;
I32 old_savestack_ix;
SV *sv = *PL_stack_sp;
if (UNLIKELY(!sv))
goto do_die;
/* Locate the CV to call:
* - most common case: RV->CV: f(), $ref->():
* note that if a sub is compiled before its caller is compiled,
* the stash entry will be a ref to a CV, rather than being a GV.
* - second most common case: CV: $ref->method()
*/
/* a non-magic-RV -> CV ? */
if (LIKELY( (SvFLAGS(sv) & (SVf_ROK|SVs_GMG)) == SVf_ROK)) {
cv = MUTABLE_CV(SvRV(sv));
if (UNLIKELY(SvOBJECT(cv))) /* might be overloaded */
goto do_ref;
}
else
cv = MUTABLE_CV(sv);
/* a CV ? */
if (UNLIKELY(SvTYPE(cv) != SVt_PVCV)) {
/* handle all the weird cases */
switch (SvTYPE(sv)) {
case SVt_PVLV:
if (!isGV_with_GP(sv))
goto do_default;
/* FALLTHROUGH */
case SVt_PVGV:
cv = GvCVu((const GV *)sv);
if (UNLIKELY(!cv)) {
HV *stash;
cv = sv_2cv(sv, &stash, &gv, 0);
if (!cv) {
old_savestack_ix = PL_savestack_ix;
goto try_autoload;
}
}
break;
default:
do_default:
SvGETMAGIC(sv);
if (SvROK(sv)) {
do_ref:
if (UNLIKELY(SvAMAGIC(sv))) {
sv = amagic_deref_call(sv, to_cv_amg);
}
}
else {
const char *sym;
STRLEN len;
if (UNLIKELY(!SvOK(sv)))
DIE(aTHX_ PL_no_usym, "a subroutine");
sym = SvPV_nomg_const(sv, len);
if (PL_op->op_private & HINT_STRICT_REFS)
DIE(aTHX_ "Can't use string (\"%" SVf32 "\"%s) as a subroutine ref while \"strict refs\" in use", sv, len>32 ? "..." : "");
cv = get_cvn_flags(sym, len, GV_ADD|SvUTF8(sv));
break;
}
cv = MUTABLE_CV(SvRV(sv));
if (LIKELY(SvTYPE(cv) == SVt_PVCV))
break;
/* FALLTHROUGH */
case SVt_PVHV:
case SVt_PVAV:
do_die:
DIE(aTHX_ "Not a CODE reference");
}
}
/* At this point we want to save PL_savestack_ix, either by doing a
* cx_pushsub(), or for XS, doing an ENTER. But we don't yet know the final
* CV we will be using (so we don't know whether its XS, so we can't
* cx_pushsub() or ENTER yet), and determining cv may itself push stuff on
* the save stack. So remember where we are currently on the save
* stack, and later update the CX or scopestack entry accordingly. */
old_savestack_ix = PL_savestack_ix;
/* these two fields are in a union. If they ever become separate,
* we have to test for both of them being null below */
assert(cv);
assert((void*)&CvROOT(cv) == (void*)&CvXSUB(cv));
while (UNLIKELY(!CvROOT(cv))) {
GV* autogv;
SV* sub_name;
/* anonymous or undef'd function leaves us no recourse */
if (CvLEXICAL(cv) && CvHASGV(cv))
DIE(aTHX_ "Undefined subroutine &%" SVf " called",
SVfARG(cv_name(cv, NULL, 0)));
if (CvANON(cv) || !CvHASGV(cv)) {
DIE(aTHX_ "Undefined subroutine called");
}
/* autoloaded stub? */
if (cv != GvCV(gv = CvGV(cv))) {
cv = GvCV(gv);
}
/* should call AUTOLOAD now? */
else {
try_autoload:
autogv = gv_autoload_pvn(GvSTASH(gv), GvNAME(gv), GvNAMELEN(gv),
(GvNAMEUTF8(gv) ? SVf_UTF8 : 0)
|(PL_op->op_flags & OPf_REF
? GV_AUTOLOAD_ISMETHOD
: 0));
cv = autogv ? GvCV(autogv) : NULL;
}
if (!cv) {
sub_name = sv_newmortal();
gv_efullname3(sub_name, gv, NULL);
DIE(aTHX_ "Undefined subroutine &%" SVf " called", SVfARG(sub_name));
}
}
/* unrolled "CvCLONE(cv) && ! CvCLONED(cv)" */
if (UNLIKELY((CvFLAGS(cv) & (CVf_CLONE|CVf_CLONED)) == CVf_CLONE))
DIE(aTHX_ "Closure prototype called");
if (UNLIKELY((PL_op->op_private & OPpENTERSUB_DB) && GvCV(PL_DBsub)
&& !CvNODEBUG(cv)))
{
Perl_get_db_sub(aTHX_ &sv, cv);
if (CvISXSUB(cv))
PL_curcopdb = PL_curcop;
if (CvLVALUE(cv)) {
/* check for lsub that handles lvalue subroutines */
cv = GvCV(gv_fetchpvs("DB::lsub", GV_ADDMULTI, SVt_PVCV));
/* if lsub not found then fall back to DB::sub */
if (!cv) cv = GvCV(PL_DBsub);
} else {
cv = GvCV(PL_DBsub);
}
if (!cv || (!CvXSUB(cv) && !CvSTART(cv)))
DIE(aTHX_ "No DB::sub routine defined");
}
rpp_popfree_1_NN(); /* finished with sv now */
if (!(CvISXSUB(cv))) {
/* This path taken at least 75% of the time */
dMARK;
PADLIST *padlist;
I32 depth;
bool hasargs;
U8 gimme;
/* keep PADTMP args alive throughout the call (we need to do this
* because @_ isn't refcounted). Note that we create the mortals
* in the caller's tmps frame, so they won't be freed until after
* we return from the sub.
*/
{
SV **svp = MARK;
while (svp < PL_stack_sp) {
SV *sv = *++svp;
if (!sv)
continue;
if (SvPADTMP(sv)) {
SV *newsv = sv_mortalcopy(sv);
*svp = newsv;
#ifdef PERL_RC_STACK
/* should just skip the mortalisation instead */
SvREFCNT_inc_simple_void_NN(newsv);
SvREFCNT_dec_NN(sv);
#endif
sv = newsv;
}
SvTEMP_off(sv);
}
}
gimme = GIMME_V;
cx = cx_pushblock(CXt_SUB, gimme, MARK, old_savestack_ix);
hasargs = cBOOL(PL_op->op_flags & OPf_STACKED);
cx_pushsub(cx, cv, PL_op->op_next, hasargs);
padlist = CvPADLIST(cv);
if (UNLIKELY((depth = ++CvDEPTH(cv)) >= 2))
pad_push(padlist, depth);
PAD_SET_CUR_NOSAVE(padlist, depth);
if (LIKELY(hasargs)) {
AV *const av = MUTABLE_AV(PAD_SVl(0));
SSize_t items;
AV **defavp;
defavp = &GvAV(PL_defgv);
cx->blk_sub.savearray = *defavp;
*defavp = MUTABLE_AV(SvREFCNT_inc_simple_NN(av));
/* it's the responsibility of whoever leaves a sub to ensure
* that a clean, empty AV is left in pad[0]. This is normally
* done by cx_popsub() */
#ifdef PERL_RC_STACK
assert(AvREAL(av));
#else
assert(!AvREAL(av));
#endif
assert(AvFILLp(av) == -1);
items = PL_stack_sp - MARK;
if (UNLIKELY(items - 1 > AvMAX(av))) {
SV **ary = AvALLOC(av);
Renew(ary, items, SV*);
AvMAX(av) = items - 1;
AvALLOC(av) = ary;
AvARRAY(av) = ary;
}
if (items)
Copy(MARK+1,AvARRAY(av),items,SV*);
AvFILLp(av) = items - 1;
#ifdef PERL_RC_STACK
/* transfer ownership of the arguments' refcounts to av */
PL_stack_sp = MARK;
#endif
}
if (UNLIKELY((cx->blk_u16 & OPpENTERSUB_LVAL_MASK) == OPpLVAL_INTRO &&
!CvLVALUE(cv)))
DIE(aTHX_ "Can't modify non-lvalue subroutine call of &%" SVf,
SVfARG(cv_name(cv, NULL, 0)));
/* warning must come *after* we fully set up the context
* stuff so that __WARN__ handlers can safely dounwind()
* if they want to
*/
if (UNLIKELY(depth == PERL_SUB_DEPTH_WARN
&& ckWARN(WARN_RECURSION)
&& !(PERLDB_SUB && cv == GvCV(PL_DBsub))))
sub_crush_depth(cv);
return CvSTART(cv);
}
else {
SSize_t markix = TOPMARK;
bool is_scalar;
ENTER;
/* pretend we did the ENTER earlier */
PL_scopestack[PL_scopestack_ix - 1] = old_savestack_ix;
SAVETMPS;
if (UNLIKELY(((PL_op->op_private
& CX_PUSHSUB_GET_LVALUE_MASK(Perl_is_lvalue_sub)
) & OPpENTERSUB_LVAL_MASK) == OPpLVAL_INTRO &&
!CvLVALUE(cv)))
DIE(aTHX_ "Can't modify non-lvalue subroutine call of &%" SVf,
SVfARG(cv_name(cv, NULL, 0)));
if (UNLIKELY(!(PL_op->op_flags & OPf_STACKED) && GvAV(PL_defgv))) {
/* Need to copy @_ to stack. Alternative may be to
* switch stack to @_, and copy return values
* back. This would allow popping @_ in XSUB, e.g.. XXXX */
AV * const av = GvAV(PL_defgv);
const SSize_t items = AvFILL(av) + 1;
if (items) {
SSize_t i = 0;
const bool m = cBOOL(SvRMAGICAL(av));
/* Mark is at the end of the stack. */
rpp_extend(items);
for (; i < items; ++i)
{
SV *sv;
if (m) {
SV ** const svp = av_fetch(av, i, 0);
sv = svp ? *svp : NULL;
}
else
sv = AvARRAY(av)[i];
rpp_push_1(sv ? sv : av_nonelem(av, i));
}
}
}
else {
SV **mark = PL_stack_base + markix;
SSize_t items = PL_stack_sp - mark;
while (items--) {
mark++;
if (*mark && SvPADTMP(*mark)) {
SV *oldsv = *mark;
SV *newsv = sv_mortalcopy(oldsv);
*mark = newsv;
#ifdef PERL_RC_STACK
/* should just skip the mortalisation instead */
SvREFCNT_inc_simple_void_NN(newsv);
SvREFCNT_dec_NN(oldsv);
#endif
}
}
}
/* We assume first XSUB in &DB::sub is the called one. */
if (UNLIKELY(PL_curcopdb)) {
SAVEVPTR(PL_curcop);
PL_curcop = PL_curcopdb;
PL_curcopdb = NULL;
}
/* Do we need to open block here? XXXX */
/* calculate gimme here as PL_op might get changed and then not
* restored until the LEAVE further down */
is_scalar = (GIMME_V == G_SCALAR);
/* CvXSUB(cv) must not be NULL because newXS() refuses NULL xsub address */
assert(CvXSUB(cv));
rpp_invoke_xs(cv);
#ifdef PERL_USE_HWM
/* This duplicates the check done in runops_debug(), but provides more
* information in the common case of the fault being with an XSUB.
*
* It should also catch an XSUB pushing more than it extends
* in scalar context.
*/
if (PL_curstackinfo->si_stack_hwm < PL_stack_sp - PL_stack_base)
Perl_croak_nocontext(
"panic: XSUB %s::%s (%s) failed to extend arg stack: "
"base=%p, sp=%p, hwm=%p\n",
HvNAME(GvSTASH(CvGV(cv))), GvNAME(CvGV(cv)), CvFILE(cv),
PL_stack_base, PL_stack_sp,
PL_stack_base + PL_curstackinfo->si_stack_hwm);
#endif
/* Enforce some sanity in scalar context. */
if (is_scalar) {
SV **svp = PL_stack_base + markix + 1;
if (svp != PL_stack_sp) {
#ifdef PERL_RC_STACK
if (svp < PL_stack_sp) {
/* move return value to bottom of stack frame
* and free everything else */
SV* retsv = *PL_stack_sp;
*PL_stack_sp = *svp;
*svp = retsv;
rpp_popfree_to_NN(svp);
}
else
rpp_push_IMM(&PL_sv_undef);
#else
*svp = svp > PL_stack_sp ? &PL_sv_undef : *PL_stack_sp;
PL_stack_sp = svp;
#endif
}
}
LEAVE;
return NORMAL;
}
}
void
Perl_sub_crush_depth(pTHX_ CV *cv)
{
PERL_ARGS_ASSERT_SUB_CRUSH_DEPTH;
if (CvANON(cv))
Perl_warner(aTHX_ packWARN(WARN_RECURSION), "Deep recursion on anonymous subroutine");
else {
Perl_warner(aTHX_ packWARN(WARN_RECURSION), "Deep recursion on subroutine \"%" SVf "\"",
SVfARG(cv_name(cv,NULL,0)));
}
}
/* like croak, but report in context of caller */
void
Perl_croak_caller(const char *pat, ...)
{
dTHX;
va_list args;
const PERL_CONTEXT *cx = caller_cx(0, NULL);
/* make error appear at call site */
assert(cx);
PL_curcop = cx->blk_oldcop;
va_start(args, pat);
vcroak(pat, &args);
NOT_REACHED; /* NOTREACHED */
va_end(args);
}
PP(pp_aelem)
{
SV** svp;
SV* const elemsv = PL_stack_sp[0];
IV elem = SvIV(elemsv);
AV *const av = MUTABLE_AV(PL_stack_sp[-1]);
const U32 lval = PL_op->op_flags & OPf_MOD || LVRET;
const U32 defer = PL_op->op_private & OPpLVAL_DEFER;
const bool localizing = PL_op->op_private & OPpLVAL_INTRO;
bool preeminent = TRUE;
SV *sv;
SV *retsv;
if (UNLIKELY(SvROK(elemsv) && !SvGAMAGIC(elemsv) && ckWARN(WARN_MISC)))
Perl_warner(aTHX_ packWARN(WARN_MISC),
"Use of reference \"%" SVf "\" as array index",
SVfARG(elemsv));
if (UNLIKELY(SvTYPE(av) != SVt_PVAV)) {
retsv = &PL_sv_undef;
goto ret;
}
if (UNLIKELY(localizing)) {
MAGIC *mg;
HV *stash;
/* Try to preserve the existence of a tied array
* element by using EXISTS and DELETE if possible.
* Fall back to FETCH and STORE otherwise. */
if (SvCANEXISTDELETE(av))
preeminent = av_exists(av, elem);
}
svp = av_fetch(av, elem, lval && !defer);
if (lval) {
#ifdef PERL_MALLOC_WRAP
if (SvUOK(elemsv)) {
const UV uv = SvUV(elemsv);
elem = uv > IV_MAX ? IV_MAX : uv;
}
else if (SvNOK(elemsv))
elem = (IV)SvNV(elemsv);
if (elem > 0) {
MEM_WRAP_CHECK_s(elem,SV*,"Out of memory during array extend");
}
#endif
if (!svp || !*svp) {
IV len;
if (!defer)
DIE(aTHX_ PL_no_aelem, elem);
len = av_top_index(av);
/* Resolve a negative index that falls within the array. Leave
it negative it if falls outside the array. */
if (elem < 0 && len + elem >= 0)
elem = len + elem;
if (elem >= 0 && elem <= len)
/* Falls within the array. */
retsv = av_nonelem(av, elem);
else
/* Falls outside the array. If it is negative,
magic_setdefelem will use the index for error reporting.
*/
retsv = sv_2mortal(newSVavdefelem(av, elem, 1));
goto ret;
}
if (UNLIKELY(localizing)) {
if (preeminent)
save_aelem(av, elem, svp);
else
SAVEADELETE(av, elem);
}
else if (PL_op->op_private & OPpDEREF) {
retsv = vivify_ref(*svp, PL_op->op_private & OPpDEREF);
goto ret;
}
}
sv = (svp ? *svp : &PL_sv_undef);
if (!lval && SvRMAGICAL(av) && SvGMAGICAL(sv)) /* see note in pp_helem() */
mg_get(sv);
retsv = sv;
ret:
rpp_replace_2_1_NN(retsv);
return NORMAL;
}
SV*
Perl_vivify_ref(pTHX_ SV *sv, U32 to_what)
{
PERL_ARGS_ASSERT_VIVIFY_REF;
SvGETMAGIC(sv);
if (!SvOK(sv)) {
if (SvREADONLY(sv))
Perl_croak_no_modify();
prepare_SV_for_RV(sv);
switch (to_what) {
case OPpDEREF_SV:
SvRV_set(sv, newSV_type(SVt_NULL));
break;
case OPpDEREF_AV:
SvRV_set(sv, MUTABLE_SV(newAV()));
break;
case OPpDEREF_HV:
SvRV_set(sv, MUTABLE_SV(newHV()));
break;
}
SvROK_on(sv);
SvSETMAGIC(sv);
SvGETMAGIC(sv);
}
if (SvGMAGICAL(sv)) {
/* copy the sv without magic to prevent magic from being
executed twice */
SV* msv = sv_newmortal();
sv_setsv_nomg(msv, sv);
return msv;
}
return sv;
}
PERL_STATIC_INLINE HV *
S_opmethod_stash(pTHX_ SV* meth)
{
SV* ob;
HV* stash;
SV* const sv = PL_stack_base + TOPMARK == PL_stack_sp
? (Perl_croak(aTHX_ "Can't call method \"%" SVf "\" without a "
"package or object reference", SVfARG(meth)),
(SV *)NULL)
: *(PL_stack_base + TOPMARK + 1);
PERL_ARGS_ASSERT_OPMETHOD_STASH;
if (UNLIKELY(!sv))
undefined:
Perl_croak(aTHX_ "Can't call method \"%" SVf "\" on an undefined value",
SVfARG(meth));
if (UNLIKELY(SvGMAGICAL(sv))) mg_get(sv);
else if (SvIsCOW_shared_hash(sv)) { /* MyClass->meth() */
stash = gv_stashsv(sv, GV_CACHE_ONLY);
if (stash) return stash;
}
if (SvROK(sv))
ob = MUTABLE_SV(SvRV(sv));
else if (!SvOK(sv)) goto undefined;
else if (isGV_with_GP(sv)) {
if (!GvIO(sv))
Perl_croak(aTHX_ "Can't call method \"%" SVf "\" "
"without a package or object reference",
SVfARG(meth));
ob = sv;
if (SvTYPE(ob) == SVt_PVLV && LvTYPE(ob) == 'y') {
assert(!LvTARGLEN(ob));
ob = LvTARG(ob);
assert(ob);
}
/* Replace the object at the base of the stack frame.
* This is "below" whatever pp_wrap has wrapped, so needs freeing.
*/
SV *newsv = sv_2mortal(newRV(ob));
SV **svp = (PL_stack_base + TOPMARK + 1);
#ifdef PERL_RC_STACK
SV *oldsv = *svp;
#endif
*svp = newsv;
#ifdef PERL_RC_STACK
SvREFCNT_inc_simple_void_NN(newsv);
SvREFCNT_dec_NN(oldsv);
#endif
}
else {
/* this isn't a reference */
GV* iogv;
STRLEN packlen;
const char * const packname = SvPV_nomg_const(sv, packlen);
const U32 packname_utf8 = SvUTF8(sv);
stash = gv_stashpvn(packname, packlen, packname_utf8 | GV_CACHE_ONLY);
if (stash) return stash;
if ((PL_op->op_private & OPpMETH_NO_BAREWORD_IO) ||
!(iogv = gv_fetchpvn_flags(
packname, packlen, packname_utf8, SVt_PVIO
)) ||
!(ob=MUTABLE_SV(GvIO(iogv))))
{
/* this isn't the name of a filehandle either */
if (!packlen)
{
Perl_croak(aTHX_ "Can't call method \"%" SVf "\" "
"without a package or object reference",
SVfARG(meth));
}
/* assume it's a package name */
stash = gv_stashpvn(packname, packlen, packname_utf8);
if (stash) return stash;
else return MUTABLE_HV(sv);
}
/* it _is_ a filehandle name -- replace with a reference.
* Replace the object at the base of the stack frame.
* This is "below" whatever pp_wrap has wrapped, so needs freeing.
*/
SV *newsv = sv_2mortal(newRV(MUTABLE_SV(iogv)));
SV **svp = (PL_stack_base + TOPMARK + 1);
#ifdef PERL_RC_STACK
SV *oldsv = *svp;
#endif
*svp = newsv;
#ifdef PERL_RC_STACK
SvREFCNT_inc_simple_void_NN(newsv);
SvREFCNT_dec_NN(oldsv);
#endif
}
/* if we got here, ob should be an object or a glob */
if (!ob || !(SvOBJECT(ob)
|| (isGV_with_GP(ob)
&& (ob = MUTABLE_SV(GvIO((const GV *)ob)))
&& SvOBJECT(ob))))
{
Perl_croak(aTHX_ "Can't call method \"%" SVf "\" on unblessed reference",
SVfARG((SvPOK(meth) && SvPVX(meth) == PL_isa_DOES)
? newSVpvs_flags("DOES", SVs_TEMP)
: meth));
}
return SvSTASH(ob);
}
PP(pp_method)
{
GV* gv;
HV* stash;
SV* const meth = *PL_stack_sp;
if (SvROK(meth)) {
SV* const rmeth = SvRV(meth);
if (SvTYPE(rmeth) == SVt_PVCV) {
rpp_replace_1_1_NN(rmeth);
return NORMAL;
}
}
stash = opmethod_stash(meth);
gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK);
assert(gv);
rpp_replace_1_1_NN(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
return NORMAL;
}
#define METHOD_CHECK_CACHE(stash,cache,meth) \
const HE* const he = hv_fetch_ent(cache, meth, 0, 0); \
if (he) { \
gv = MUTABLE_GV(HeVAL(he)); \
if (isGV(gv) && GvCV(gv) && (!GvCVGEN(gv) || GvCVGEN(gv) \
== (PL_sub_generation + HvMROMETA(stash)->cache_gen))) \
{ \
rpp_xpush_1(MUTABLE_SV(GvCV(gv))); \
return NORMAL; \
} \
} \
PP(pp_method_named)
{
GV* gv;
SV* const meth = cMETHOP_meth;
HV* const stash = opmethod_stash(meth);
if (LIKELY(SvTYPE(stash) == SVt_PVHV)) {
METHOD_CHECK_CACHE(stash, stash, meth);
}
gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK);
assert(gv);
rpp_xpush_1(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
return NORMAL;
}
PP(pp_method_super)
{
GV* gv;
HV* cache;
SV* const meth = cMETHOP_meth;
HV* const stash = CopSTASH(PL_curcop);
/* Actually, SUPER doesn't need real object's (or class') stash at all,
* as it uses CopSTASH. However, we must ensure that object(class) is
* correct (this check is done by S_opmethod_stash) */
opmethod_stash(meth);
if ((cache = HvMROMETA(stash)->super)) {
METHOD_CHECK_CACHE(stash, cache, meth);
}
gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK|GV_SUPER);
assert(gv);
rpp_xpush_1(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
return NORMAL;
}
PP(pp_method_redir)
{
GV* gv;
SV* const meth = cMETHOP_meth;
HV* stash = gv_stashsv(cMETHOP_rclass, 0);
opmethod_stash(meth); /* not used but needed for error checks */
if (stash) { METHOD_CHECK_CACHE(stash, stash, meth); }
else stash = MUTABLE_HV(cMETHOP_rclass);
gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK);
assert(gv);
rpp_xpush_1(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
return NORMAL;
}
PP(pp_method_redir_super)
{
GV* gv;
HV* cache;
SV* const meth = cMETHOP_meth;
HV* stash = gv_stashsv(cMETHOP_rclass, 0);
opmethod_stash(meth); /* not used but needed for error checks */
if (UNLIKELY(!stash)) stash = MUTABLE_HV(cMETHOP_rclass);
else if ((cache = HvMROMETA(stash)->super)) {
METHOD_CHECK_CACHE(stash, cache, meth);
}
gv = gv_fetchmethod_sv_flags(stash, meth, GV_AUTOLOAD|GV_CROAK|GV_SUPER);
assert(gv);
rpp_xpush_1(isGV(gv) ? MUTABLE_SV(GvCV(gv)) : MUTABLE_SV(gv));
return NORMAL;
}
/*
* ex: set ts=8 sts=4 sw=4 et:
*/
|