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
|
: BEGIN{die "You meant to run regen/embed.pl"} # Stop early if fed to perl.
:
: WARNING: The meanings of some flags have been changed as of v5.31.0
:
: This file is known to be processed by regen/embed.pl, autodoc.pl,
: makedef.pl, Devel::PPPort, and porting/diag.t.
:
: This file contains entries for various functions and macros defined by perl.
: Each entry includes the name, parameters, and various attributes about it.
: In most functions listed here, the name is a short name, and the function's
: real name is the short one, prefixed by either 'Perl_' (for publicly visible
: functions) or 'S_' (for internal-to-a-file static ones). In many instances a
: macro is defined that is the name in this file, and which expands to call the
: real (full) name, with any appropriate thread context paramaters, thus hiding
: that detail from the typical code.
:
: Many macros (as opposed to functions) listed here are the complete full name,
: though we may want to start converting those to have full names.
:
: All non-static functions defined by perl need to be listed in this file.
: embed.pl uses the entries here to construct:
: 1) proto.h to declare to the compiler the function interfaces; and
: 2) embed.h to create short name macros
:
: Static functions internal to a file need not appear here, but there is
: benefit to declaring them here:
: 1) It generally handles the thread context parameter invisibly making it
: trivial to add or remove needing thread context passed;
: 2) It defines a PERL_ARGS_ASSERT_foo macro, which can save you debugging
: time;
: 3) It is is automatically known to Devel::PPPort, making it quicker to
: later find out when it came into existence. For example
: perl ppport.h --api-info=/edit_distance/
: yields
: Supported at least since perl-5.23.8, with or without ppport.h.
:
: Lines in this file are of the form:
: flags|return_type|name|arg1|arg2|...|argN
:
: 'flags' is a string of single letters. Most of the flags are meaningful only
: to embed.pl; some only to autodoc.pl, and others only to makedef.pl. The
: comments here mostly don't include how Devel::PPPort or diag.t use them:
: All the possible flags and their meanings are given below.
:
: A function taking no parameters will have no 'arg' elements.
: A line may be continued onto the next by ending it with a backslash.
: Leading and trailing whitespace will be ignored in each component.
:
: Most entries here have a macro created with the entry name. This presents
: name space collision potentials which haven't been well thought out, but are
: now documented here. In practice this has rarely been an issue. At least,
: with a macro, the XS author can #undef it, unlike a function.
:
: The default without flags is to declare a function for internal perl-core use
: only. The short name is visible only when the PERL_CORE symbol is defined.
: On some platforms all non-static functions are currently externally visible.
: Because of this, and also for programs that embed perl, most non-static
: functions should have the 'p' flag to avoid namespace clashes.
:
: There are several advantages to using a macro instead of the full Perl_foo or
: S_foo form: it hides the need to know if the called function requires a
: thread context parameter or not, and the code using it is more readable
: because of fewer parameters being visible. And if there is some bug in it
: that gets fixed in a later release, ppport.h can be changed to automatically
: backport the fixed version to modules. The only disadvantage khw can think
: of is the namespace pollution one.
:
: WARNING: Any macro created in a header file is visible to XS code, unless
: care is taken to wrap it within C preprocessor guards like the following
:
: #if defined(PERL_CORE)
: ...
: #endif
:
: A common pattern is to use defines like 'PERL_IN_FILE_C' (with FILE_C being
: appropriately replaced with the real filename). Most, if not all, of the
: perl core C files define such a symbol before importing perl.h. Some groups
: of files define more generalized flags which are referenced in this file and
: the files generated from it.
:
: In general you should restrict the exposure of your exports as much as
: possible, although older code may not do so. Be aware that non-static
: exports can be "over exported" and things will likely work out fine, but
: inline and static macros will cause errors unless restricted to the specific
: file they are intended for, and the generated PERL_ARGS_ macros will only
: be available to inline functions in the appropriate context.
:
: From time to time it may be necessary to change or expand which files can
: see a function, therefore we prefer the '#if defined()' form of condition
: instead of the '#ifdef' form as the latter only works with one symbol and
: the former can be combined with more than one. It is also why you may see
: functions with an 's' or 'i' export type grouped together into a single
: conditional block separate from most of the other functions from the same
: file with 'p' in them.
:
: The 'A' flag is used to make a function and its short name visible everywhere
: on all platforms. This should be used to make it part of Perl's API
: contract with XS developers. The documentation for these is usually
: placed in perlapi. If no documentation exists, that fact is also
: noted in perlapi.
:
: The 'C' flag is used instead for functions and their short names that need to
: be accessible everywhere, typically because they are called from a
: publicly available macro or inline function, but they are not for
: public use by themselves. The documentation for these is placed in
: perlintern. If no documentation exists, that fact is also noted in
: perlintern.
:
: These really need the 'p' flag to avoid name space collisions.
:
: Some of these have been constructed so that the wrapper macro names
: begin with an underscore to lessen the chances of a name collision.
: However, this is contrary to the C standard, and those should be
: changed.
:
: The 'E' flag is used instead for a function and its short name that is
: supposed to be used only in the core plus extensions compiled with
: the PERL_EXT symbol defined. Again, on some platforms, the function
: will be visible everywhere, so one of the 'p' or 'S' flags is
: generally needed. Also note that an XS writer can always cheat and
: pretend to be an extension by #defining PERL_EXT.
:
: The 'X' flag is similar to the 'C' flag in that the function (whose entry
: better have the 'p' flag) is accessible everywhere on all platforms.
: However the short name macro that normally gets generated is
: suppressed outside the core. (Except it is also visible in PERL_EXT
: extensions if the 'E' flag is also specified.) This flag is used for
: functions that are called from a public macro, the name of which
: isn't derived from the function name. You'll have to write the macro
: yourself, and from within it, refer to the function in its full
: 'Perl_' form with any necessary thread context parameter.
:
: Just below is a description of the relevant parts of the automatic
: documentation generation system which heavily involves this file. Below that
: is a description of all the flags used in this file.
:
: Scattered around the perl source are lines of the form:
:
: =for apidoc name ...
: =for apidoc_item name ...
: =for apidoc_defn name ...
:
: The purpose of these lines is to furnish documentation for functions and
: macros. The lines tend to be placed near the source for the item they
: describe. autodoc.pl is run as part of the standard build process to
: extract this documentation and build either perlapi.pod (from the elements
: that are flagged as A in this file), or perlintern.pod (from the other
: elements.
:
: Functions need to be specified in this file, but macros may not necessarily
: be. The information in this file is sufficient to generate a usage line for
: the element to be documented; otherwise that information needs to be
: specified in the apidoc-ish lines.
:
: 'apidoc_defn' was added to supplement, for macros, the information in this
: file. It is designed to be placed at the point of definition of the macro
: it is for, so that the information can easily be checked for correctness,
: and you know at a glance that the macro actually has documentation. It
: doesn't by itself create any documentation; instead the other apidoc lines
: pull in information specified by these lines. Many of the lines in this
: file for macros that don't also have the 'p' flag (described below) could be
: pulled out of here and replaced by these lines throughout the source. It is
: a goal to do that as convenience dictates.
:
: The other apidoc lines either have the usage data as part of the line, or
: pull in the data from this file or apidoc_defn lines.
:
: Many macros and functions are variants of each other. It makes sense to use
: a single group to document such elements so their similarities and
: differences stand out, with less repetition than if there were separate
: entries. Such groups start with a plain 'apidoc' line, followed by any
: number of 'apidoc_item' lines. These indicate that the macro or function
: listed as 'name' on each is part of the group whose head entry is the one
: specified by 'name' on the apidoc line.
:
: After the block of apidoc-like statements, is the text that is the
: documentation, ending with the next =cut or '=for apidoc foo' lines.
:
: The apidoc_item lines must all come after the apidoc line and before the pod
: text for the entry. There need not be empty lines between the apidoc line
: and any of its apidoc_item lines.
:
: The entries in this file that have corresponding '=for apidoc' entries must
: have the 'd' flag set in this file.
:
: In C files, the apidoc lines are inside comment blocks. They may also be
: placed in pod files. In those, the =for causes lines from there until the
: next line beginning with an '=' to not be considered part of that pod.
:
: The 'h' flag is used to hide (suppress) the pod associated with =apidoc lines
: from being placed in the generated perlapi or perlintern. There are several
: reasons you might want to do this, given in the 'h' flag description below,
: but one is for the case where the =apidoc occurs in a file that contains
: regular pod. Without that flag, the associated pod will be placed in both
: it, and perlapi or perlintern. That may be what you want, but it gives you
: the flexibility to choose that, or instead have just a link to the source pod
: inserted in perlapi or perlintern. This allows single-source browsing for
: someone; they don't have to scan multiple pods trying to find whether
: something suitable exists.
:
: There are also lines of this form scattered around the perl
: source:
:
: =for apidoc_section Section Name
: =head1 Section Name
:
: These organize the resultant pod file into major subgroups of related
: functionality, but aren't tied to this embed.fnc file, and so are documented
: in autodoc.pl.
:
: What goes into the documentation of a particular function ends with the next
: line that begins with an '='. In particular, an '=cut' line ends that
: documentation without introducing something new.
:
: Various macros and other elements aren't listed here in embed.fnc (though
: they could be). They are documented in the same manner, but since they don't
: have this file to get information from, the defining lines have the syntax
: and meaning they do in this file, so it can be specified:
:
: =for apidoc flags|return_type|name|arg1|arg2|...|argN
: =for apidoc_item flags|return_type|name|arg1|arg2|...|argN
: =for apidoc_defn flags|return_type|name|arg1|arg2|...|argN
:
: The 'name' in any such line must not be the same as any in this file (i.e.,
: no redundant definitions), and one of the flags on the apidoc lines must be
: 'm' or 'y', indicating it is not a function.
:
: All but the name field of an apidoc_item line are optional, and if empty,
: inherits from a corresponding apidoc_defn line, if one exists, or the
: controlling plain apidoc line if none such exist. The flags field is
: generally empty, and in fact, the only flags it can have are ones directly
: related to its display. For example it might have the T flag to indicate no
: thread context parameter is used, whereas the apidoc entry does have a
: thread context. Here is an example:
:
: =for apidoc Am|char* |SvPV |SV* sv|STRLEN len
: =for apidoc_item |const char*|SvPV_const |SV* sv|STRLEN len
: =for apidoc_item |char* |SvPV_nolen |SV* sv
:
: Since these are macros, the arguments need not be legal C parameters. To
: indicate this to downstream software that inspects these lines, there are a
: few conventions. An example would be:
:
: =for apidoc Am|void|Newxc|void* ptr|int nitems|type|cast
:
: In this example, a real call of Newxc, 'type' would be specified as something
: like 'int' or 'char', and 'cast' by perhaps 'struct foo'.
:
: The complete list of conventions is:
: type the argument names a type
: cast the argument names a type which the macro casts to
: SP the argument is the stack pointer, SP
: block the argument is a C brace-enclosed block
: number the argument is a C numeric constant, like 3
: token the argument is a generic C preprocessor token, like abc
: "string" the argument is a literal C double-quoted string; what's important
: here are the quotes; for clarity, you can say whatever you want
: inside them
:
: Unlike other arguments, none of these is of the form 'int name'. There is no
: name.
:
: If any argument or return value is not one of the above, and isn't legal C
: language, the entry still can be specified, using the 'u' flag.
:
: 'return_type' in these lines can be empty, unlike in this file:
:
: =for apidoc Amnu||START_EXTERN_C
:
: Devel::PPPort also looks at both this file and the '=for apidoc' lines. In
: part it is to construct lists of elements that are or are not backported.
:
: makedef.pl uses this file for constructing the export list which lists the
: symbols that should be available on all platforms.
:
: porting/diag.t checks some things for consistency based on this file.
:
: The remainder of these introductory comments detail all the possible flags:
:
: 'A' Both long and short names are accessible fully everywhere (usually
: part of the public API). If the function is not part of the public
: API, instead use 'C', 'E', or 'X'.
:
: * adds entry to the list of symbols available on all platforms unless
: 'e' or 'm' are also specified;
: * any doc entry goes in perlapi.pod rather than perlintern.pod. If
: there isn't a doc entry, autodoc.pl lists this in perlapi as
: existing and being undocumented; unless 'x' is also specified, in
: which case it simply isn't listed.
: * makes the short name defined for everywhere, not just for PERL_CORE
: or PERL_EXT
:
: 'a' Allocates memory a la malloc/calloc. Also implies 'R'. This flag
: should only be on a function which returns "empty" memory which has no
: other pointers to it, and which does not contain any pointers to other
: things. So for example realloc() can not be 'a'.
:
: proto.h: add __attribute__malloc__
:
: 'b' Binary backward compatibility. This is used for functions which are
: kept only to not have to change legacy applications that call them. If
: there are no such legacy applications in a Perl installation for all
: functions flagged with this, the installation can run Configure with
: the -Accflags='-DNO_MATHOMS' parameter to not even compile them.
:
: If the function can be implemented as a macro (that evaluates its
: arguments exactly once), use the 'm' and 'p' flags together to implement
: this. (See the discussion under 'm'.) Another option for this is to
: use the 'M' flag.
:
: Without the m or M flags, these functions should be deprecated, and it
: is an error to not also specify the 'D' flag.
:
: The 'b' functions are normally moved to mathoms.c, but if
: circumstances dictate otherwise, they can be anywhere, provided the
: whole function is wrapped with
:
: #ifndef NO_MATHOMS
: ...
: #endif
:
: Note that this flag no longer automatically adds a 'Perl_' prefix to
: the name. Additionally specify 'p' to do that.
:
: This flag effectively causes nothing to happen if the perl interpreter
: is compiled with -DNO_MATHOMS (which causes any functions with this
: flag to not be compiled); otherwise these happen:
:
: * add entry to the list of symbols available on all platforms;
: * create PERL_ARGS_ASSERT_foo;
: * add embed.h entry (unless overridden by the 'M' or 'o' flags)
:
: 'C' Intended for core use only. This indicates to XS writers that they
: shouldn't be using this function. Devel::PPPort informs them of this,
: for example. Some functions have to be accessible everywhere even if
: they are not intended for public use. An example is helper functions
: that are called from inline ones that are publicly available.
:
: * add entry to the list of symbols available on all platforms unless e
: or m are also specified;
: * any doc entry goes in perlintern.pod rather than perlapi.pod. If
: there isn't a doc entry, autodoc.pl lists this in perlintern as
: existing and being undocumented
: * makes the short name defined for everywhere, not just for PERL_CORE
: or PERL_EXT
:
: 'D' Function is deprecated:
:
: proto.h: add __attribute__deprecated__
: autodoc.pl adds a note to this effect in the doc entry
:
: 'd' Function has documentation (somewhere) in the source:
:
: Enables 'no docs for foo" warning in autodoc.pl if the documentation
: isn't found.
:
: 'E' Visible to extensions included in the Perl core:
:
: in embed.h, change "#ifdef PERL_CORE"
: into "#if defined(PERL_CORE) || defined(PERL_EXT)"
:
: To be usable from dynamically loaded extensions, either:
: 1) it must be static to its containing file ('i' or 'S' flag); or
: 2) be combined with the 'X' flag.
:
: 'e' Not exported
:
: suppress entry in the list of symbols available on all platforms
:
: 'f' Function takes a format string. If the function name =~ qr/strftime/
: then it is assumed to take a strftime-style format string as the 1st
: arg; otherwise it's assumed to take a printf style format string, not
: necessarily the 1st arg. All the arguments following the second form
: (including possibly '...') are assumed to be for the format.
:
: embed.h: any entry in here for the second form is suppressed because
: of varargs
: proto.h: add __attribute__format__ (or ...null_ok__)
:
: 'F' Function has a '...' parameter, but don't assume it is a format. This
: is to make sure that new functions with formats can't be added without
: considering if they are format functions or not. A reason to use this
: flag even on a format function is if the format would generate error:
: format string argument is not a string type
:
: 'G' Suppress empty PERL_ARGS_ASSERT_foo macro. Normally such a macro is
: generated for all entries for functions 'foo' in this file. If there
: is a pointer argument to 'foo', it needs to be declared in this file
: as either NN or NULLOK, and the function definition must call its
: corresponding PERL_ARGS_ASSERT_foo macro (a porting test ensures this)
: which asserts at runtime (under DEBUGGING builds) that NN arguments
: are not NULL. If there aren't NN arguments, use of this macro is
: optional. Rarely, a function will define its own PERL_ARGS_ASSERT_foo
: macro, and in those cases, adding this flag to its entry in this file
: will suppress the normal one. It is not possible to suppress the
: generated macro if it isn't optional, that is, if there is at least
: one NN argument.
:
: proto.h: PERL_ARGS_ASSERT macro is not defined unless the function
: has NN arguments
:
: 'h' Hide any documentation that would normally go into perlapi or
: perlintern. This is typically used when the documentation is actually
: in another pod. If you don't use the 'h', that documentation is
: displayed in both places; with the flag, it stays in the pod, and a
: link to that pod is instead placed in perlapi or perlintern. This
: allows one to browse perlapi or perlintern and see all the potentially
: relevant elements. A good example is perlapio. It has documentation
: about PerlIO functions with other text giving context. There's no
: point in writing a second entry for perlapi, but it would be good if
: someone browsing perlapi knew about the function and where it is
: documented. By adding '=for apidoc' lines in perlapio, the appropriate
: text could be simply copied into perlapi if deemed appropriate, or
: just a link added there when the 'h' flag is specified.
:
: This flag is useful for symbolic names for flags. A single =for apidoc
: line can be added to the pod where the meaning is discussed, and
: perlapi will list the name, with a link to the pod. Another use would
: be if there are a bunch of macros which follow a common paradigm in
: their naming, so rather than having an entry for each slight
: variation, there is an overarching one. This flag is useful for
: downstream programs, such as Devel::PPPort.
:
: 'i' inline static. This is used for functions that the compiler is being
: requested to inline. If the function is in a header file its
: definition will be visible (unless guarded by #if..#endif) to all XS
: code. (A typical guard will be that it is being included in a
: particular C file(s) or in the perl core.) Therefore, all non-guarded
: functions should also have the 'p' flag specified to avoid polluting
: the XS code name space. Otherwise, this flag also turns on the 'S'
: flag.
:
: proto.h: function is declared as PERL_STATIC_INLINE
:
: 'I' This flag works exactly the same as 'i' but it also adds
: __attribute__((always_inline)) or __forceinline if either of them is
: supported by the compiler.
:
: proto.h: function is declared as PERL_STATIC_FORCE_INLINE and
: __attribute__always_inline__ is added
:
: 'm' Implemented as a macro; there is no function associated with this
: name. There is no long S_ name.
:
: However, you may #define the macro with a long name like 'Perl_foo',
: and specify the 'p' flag. This will cause an embed.h entry to be
: created that #defines 'foo' as 'Perl_foo'. This can be used to make
: any macro have a long name, perhaps to avoid name collisions. If
: instead you define the macro as 'PERL_FOO' (all uppercase), the
: embed.h entry will use all uppercase. Without the T flag the behavior
: is subject to change when both 'm' and 'p are specified.
:
: suppress proto.h entry (actually, not suppressed, but commented out)
: suppress entry in the list of exported symbols available on all
: platforms
: suppress embed.h entry (when no 'p' flag), as the implementation
: should furnish the macro
:
: 'M' The implementation is furnishing its own macro instead of relying on
: the automatically generated short name macro (which simply expands to
: call the real name function). One reason to do this is if the
: parameters need to be cast from what the caller has. There is less
: need to do this now that 'm' and 'p' together is supported.
:
: This flag requires the 'p' flag to be specified, as there would be no
: need to do this if the function weren't publicly accessible before.
:
: The entry is processed based on the other flags, but the:
: embed.h entry is suppressed
:
: 'N' The name in the entry isn't strictly a name
:
: Normally, the name of the function or macro must contain all \w
: characters, and a warning is raised otherwise. This flag suppresses
: that warning, so that weird things can be documented
:
: 'n' Has no argument list (used only in =for apidoc entries)
:
: The macro (it can't be a function) is used without any parameters nor
: empty parentheses.
:
: Perhaps a better name for this flag would have been '0'. The reason
: the flag was not changed to that from 'n', is if D:P were to be
: regenerated on an older perl, it still would use the new embed.fnc
: shipped with it, but would be using the flags from the older perl
: source code.
:
: 'O' Has a perl_ compatibility macro.
:
: The really OLD name for API funcs.
:
: autodoc.pl adds a note that the perl_ form of this function is
: deprecated.
:
: 'o' Has no Perl_foo or S_foo compatibility macro:
:
: This is used for whatever reason to force the function to be called
: with the long name. Perhaps there is a varargs issue. Use the 'M'
: or 'm' flags instead for wrapper macros, and legacy-only functions
: should also use 'b'.
:
: embed.h: suppress "#define foo Perl_foo"
:
: mnemonic: 'omit' generated macro
:
: 'P' Pure function:
:
: A pure function has no effects except the return value, and the return
: value depends only on params and/or globals. This is a hint to the
: compiler that it can optimize calls to this function out of common
: subexpressions. Consequently if this flag is wrongly specified, it can
: lead to subtle bugs that vary by platform, compiler, compiler version,
: and optimization level. Also, a future commit could easily change a
: currently-pure function without even noticing this flag. So it should
: be used sparingly, only for functions that are unlikely to ever become
: not pure by future commits. It should not be used for static
: functions, as the compiler already has the information needed to make
: the 'pure' determination and doesn't need any hint; so it doesn't add
: value in those cases, and could be dangerous if it causes the compiler
: to skip doing its own checks. It should not be used on functions that
: touch SVs, as those can trigger unexpected magic. Also implies "R":
:
: proto.h: add __attribute__pure__
:
: 'p' Function or macro in source code has a Perl_ prefix:
:
: proto.h: function or macro is declared as Perl_foo rather than foo
: (though the entries for macros will be commented out)
: embed.h: "#define foo Perl_foo" entries added
:
: 'R' Return value must not be ignored (also implied by 'a' and 'P' flags):
:
: gcc has a bug (which they claim is a feature) in which casting the
: result of one of these to (void) doesn't silence the warning that the
: result is ignored. (Perl has a workaround for this bug, see
: PERL_UNUSED_RESULT docs)
:
: proto.h: add __attribute__warn_unused_result__
:
: 'r' Function never returns:
:
: proto.h: add __attribute__noreturn__
:
: 'S' Static function: function in source code has a S_ prefix:
:
: proto.h: function is declared as S_foo rather than foo,
: STATIC is added to declaration;
: embed.h: "#define foo S_foo" entries added
:
: 's' Static function, but function in source code has a Perl_ prefix:
:
: This is used for functions that have always had a Perl_ prefix, but
: have been moved to a header file and declared static.
:
: proto.h: function is declared as Perl_foo rather than foo
: STATIC is added to declaration;
: embed.h: "#define foo Perl_foo" entries added
:
: 'T' Has no implicit interpreter/thread context argument:
:
: suppress the pTHX part of "foo(pTHX...)" in proto.h;
: In the PERL_IMPLICIT_SYS branch of embed.h, generates
: "#define foo Perl_foo", rather than
: "#define foo(a,b,c) Perl_foo(aTHX_ a,b,c)
:
: 'u' The macro's (it has to be a macro) return value or parameters are
: unorthodox, and aren't in the list above of recognized weird ones. For
: example, they aren't C parameters, or the macro expands to something
: that isn't a symbol.
:
: For example, the expansion of STR_WITH_LEN is a comma separated pair
: of values, so would have this flag; or some macros take preprocessor
: tokens, so would have this flag.
:
: This also is used for entries that require processing for use, such as
: being compiled by xsubpp. This flag is an indication to downstream
: tools, such as Devel::PPPort, that this requires special handling.
:
: 'U' autodoc.pl will not output a usage example
:
: 'v' Guard the macro by !MULTIPLICITY || PERL_CORE if it uses __VA_ARGS__.
: This flag exists for backward-compatibility to ensure that code does
: not break when calling older functions without an aTHX in scope. It
: should not be added to newly-added functions as they will have no such
: compatibility issues.
:
: 'W' Add a comma_pDEPTH argument to function prototypes, and a comma_aDEPTH
: argument to the function calls. This means that under DEBUGGING a
: depth argument is added to the functions, which is used for example by
: the regex engine for debugging and trace output. A non DEBUGGING build
: will not pass the unused argument. Currently restricted to functions
: with at least one argument.
:
: 'X' Explicitly exported:
:
: add entry to the list of symbols available on all platforms, unless
: 'e' or 'm'
:
: This is often used for private functions that are used by public
: macros. In those cases the macros must use the long form of the name
: (Perl_blah(aTHX_ ...)).
:
: 'x' Experimental, may change:
:
: Any doc entry is marked that it may change. An undocumented
: experimental function is listed in perlintern rather than perlapi,
: even if it is allegedly API.
:
: 'y' Typedef. The element names a type rather than being a macro
:
: ';' autodoc.pl adds a terminating semi-colon to the usage example in the
: documentation.
:
: '#' The number sign flag indicates that this is a pre-processor symbol
: that is just #define'd or #undef'd. Must NOT be the first symbol on
: the line.
:
: '?' The question mark flag is used internally by Devel::PPPort to
: indicate that it does not have enough information to generate a
: proper test case.
:
: In this file, pointer parameters that must not be passed NULLs should be
: prefixed with NN.
:
: And, pointer parameters that may be NULL should be prefixed with NULLOK.
: This has no effect on output yet. It's a notation for the maintainers to
: know "I have defined whether NULL is OK or not" rather than having neither
: NULL or NULLOK, which is ambiguous.
:
: Pointer parameters that point to AVs, CVs or HVs will generate additional
: checks in the arguments assertion macro, that check on entry to the
: function that the SV being pointed to is of the intended type, by
: inspecting its SvTYPE(). For some functions this check may be inappropriate
: as in rare cases the arguments passed may not be of the correct type. To
: skip checking on an argument type, prefix its type with NOCHECK.
:
: Numeric arguments may also be prefixed with NZ, which will cause the
: appropriate asserts to be generated to validate that this is the case.
:
: Flags should be sorted asciibetically.
:
: Please keep the next line *BLANK*
pr |void |abort_execution|NULLOK SV *msg_sv \
|NN const char * const name
px |LOGOP *|alloc_LOGOP |I32 type \
|NULLOK OP *first \
|NULLOK OP *other
: Used in toke.c and perly.y
p |PADOFFSET|allocmy |NN const char * const name \
|const STRLEN len \
|const U32 flags
Xdp |bool |amagic_applies |NN SV *sv \
|int method \
|int flags
Adp |SV * |amagic_call |NN SV *left \
|NN SV *right \
|int method \
|int dir
Adp |SV * |amagic_deref_call \
|NN SV *ref \
|int method
p |bool |amagic_is_enabled \
|int method
ETXip |void |append_utf8_from_native_byte \
|const U8 byte \
|NN U8 **dest
: FIXME - this is only called by pp_chown. They should be merged.
p |SSize_t|apply |I32 type \
|NN SV **mark \
|NN SV **sp
Apx |void |apply_attrs_string \
|NN const char *stashpv \
|NN CV *cv \
|NN const char *attrstr \
|STRLEN len
Adp |OP * |apply_builtin_cv_attributes \
|NN CV *cv \
|NULLOK OP *attrlist
CTp |void |atfork_lock
CTp |void |atfork_unlock
Cop |SV ** |av_arylen_p |NN AV *av
Adp |void |av_clear |NN AV *av
ARdip |Size_t |av_count |NN AV *av
Adeop |void |av_create_and_push \
|NN AV ** const avp \
|NN SV * const val
Adeop |SV ** |av_create_and_unshift_one \
|NN AV ** const avp \
|NN SV * const val
Adp |SV * |av_delete |NN AV *av \
|SSize_t key \
|I32 flags
Adp |void |av_dump |NULLOK AV *av
ARdp |bool |av_exists |NN AV *av \
|SSize_t key
Adp |void |av_extend |NN AV *av \
|SSize_t key
p |void |av_extend_guts |NULLOK AV *av \
|SSize_t key \
|NN SSize_t *maxp \
|NN SV ***allocp \
|NN SV ***arrayp
ARdp |SV ** |av_fetch |NN AV *av \
|SSize_t key \
|I32 lval
CRdip |SV ** |av_fetch_simple|NN AV *av \
|SSize_t key \
|I32 lval
Adp |void |av_fill |NN AV *av \
|SSize_t fill
Cop |IV * |av_iter_p |NN AV *av
ARdp |SSize_t|av_len |NN AV *av
ARdp |AV * |av_make |SSize_t size \
|NN SV **strp
CRdip |AV * |av_new_alloc |SSize_t size \
|bool zeroflag
p |SV * |av_nonelem |NN AV *av \
|SSize_t ix
Adp |SV * |av_pop |NN AV *av
Adp |void |av_push |NN AV *av \
|NN SV *val
Adip |void |av_push_simple |NN AV *av \
|NN SV *val
: Used in scope.c, and by Data::Alias
EXp |void |av_reify |NN AV *av
ipx |void |av_remove_offset \
|NN AV *av
ARdp |SV * |av_shift |NN AV *av
Adp |SV ** |av_store |NN AV *av \
|SSize_t key \
|NULLOK SV *val
Cdip |SV ** |av_store_simple|NN AV *av \
|SSize_t key \
|NULLOK SV *val
Adp |void |av_undef |NN AV *av
Adp |void |av_unshift |NN AV *av \
|SSize_t num
: Used in perly.y
Rp |OP * |bind_match |I32 type \
|NN OP *left \
|NN OP *right
: Used in perly.y
ARdp |OP * |block_end |I32 floor \
|NULLOK OP *seq
CRp |U8 |block_gimme
Adopx |void |blockhook_register \
|NN BHK *hk
: Used in perly.y
ARdp |int |block_start |int full
p |void |boot_core_builtin
: Only used in perl.c
p |void |boot_core_mro
: Used in perl.c
p |void |boot_core_PerlIO
: Used in perl.c
p |void |boot_core_UNIVERSAL
p |OP * |build_infix_plugin \
|NN OP *lhs \
|NN OP *rhs \
|NN void *tokendata
EXp |const char *|_byte_dump_string \
|NULLOK const U8 * const start \
|const STRLEN len \
|const bool format
Adp |int |bytes_cmp_utf8 |NN const U8 *b \
|STRLEN blen \
|NN const U8 *u \
|STRLEN ulen
Adp |U8 * |bytes_from_utf8|NN const U8 *s \
|NN STRLEN *lenp \
|NN bool *is_utf8p
Adip |U8 * |bytes_to_utf8 |NN const U8 *s \
|NN STRLEN *lenp
Adp |U8 * |bytes_to_utf8_free_me \
|NN const U8 *s \
|NN STRLEN *lenp \
|NULLOK void **free_me
Adip |U8 * |bytes_to_utf8_temp_pv \
|NN const U8 *s \
|NN STRLEN *lenp
AOdp |SSize_t|call_argv |NN const char *sub_name \
|I32 flags \
|NN char **argv
: "Very" special - can't use the O flag for this one:
: (The rename from perl_atexit to Perl_call_atexit was in 864dbfa3ca8032ef)
Adp |void |call_atexit |ATEXIT_t fn \
|NULLOK void *ptr
Adp |const PERL_CONTEXT *|caller_cx \
|I32 level \
|NULLOK const PERL_CONTEXT **dbcxp
Cp |void |call_list |I32 oldscope \
|NN AV *paramList
AOdp |SSize_t|call_method |NN const char *methname \
|I32 flags
CTadop |Malloc_t|calloc |MEM_SIZE elements \
|MEM_SIZE size
AOdp |SSize_t|call_pv |NN const char *sub_name \
|I32 flags
AOdp |SSize_t|call_sv |NN SV *sv \
|I32 flags
: Used in several source files
Rp |bool |cando |Mode_t mode \
|bool effective \
|NN const Stat_t *statbufp
CRTp |I32 |cast_i32 |NV f
CRTp |IV |cast_iv |NV f
CRTp |U32 |cast_ulong |NV f
CRTp |UV |cast_uv |NV f
p |bool |check_utf8_print \
|NN const U8 *s \
|const STRLEN len
op |OP * |ck_entersub_args_core \
|NN OP *entersubop \
|NN GV *namegv \
|NN SV *protosv
Adp |OP * |ck_entersub_args_list \
|NN OP *entersubop
Adp |OP * |ck_entersub_args_proto \
|NN OP *entersubop \
|NN GV *namegv \
|NN SV *protosv
Adp |OP * |ck_entersub_args_proto_or_list \
|NN OP *entersubop \
|NN GV *namegv \
|NN SV *protosv
CPop |bool |ckwarn |U32 w
CPop |bool |ckwarn_d |U32 w
Adfpv |void |ck_warner |U32 err \
|NN const char *pat \
|...
Adfpv |void |ck_warner_d |U32 err \
|NN const char *pat \
|...
: Some static inline functions need predeclaration because they are used
: inside other static inline functions.
Cp |void |clear_defarray |NN AV *av \
|bool abandon
Cipx |void |clear_defarray_simple \
|NN AV *av
p |const COP *|closest_cop|NN const COP *cop \
|NULLOK const OP *o \
|NULLOK const OP *curop \
|bool opnext
Rp |OP * |cmpchain_extend|I32 type \
|NN OP *ch \
|NULLOK OP *right
Rp |OP * |cmpchain_finish|NN OP *ch
Rp |OP * |cmpchain_start |I32 type \
|NULLOK OP *left \
|NULLOK OP *right
ERTXp |const char *|cntrl_to_mnemonic \
|const U8 c
Adpx |const char *|cop_fetch_label \
|NN COP * const cop \
|NULLOK STRLEN *len \
|NULLOK U32 *flags
: Only used in op.c and the perl compiler
Adpx |void |cop_store_label|NN COP * const cop \
|NN const char *label \
|STRLEN len \
|U32 flags
: Used in pp.c
dp |SV * |core_prototype |NULLOK SV *sv \
|NN const char *name \
|const int code \
|NULLOK int * const opnum
: Used in gv.c
p |OP * |coresub_op |NN SV * const coreargssv \
|const int code \
|const int opnum
: Used in op.c and perl.c
px |void |create_eval_scope \
|NULLOK OP *retop \
|NN SV **sp \
|U32 flags
: croak()'s first parm can be NULL. Otherwise, mod_perl breaks.
Adfprv |void |croak |NULLOK const char *pat \
|...
Tfprv |void |croak_caller |NULLOK const char *pat \
|...
CTrs |void |croak_memory_wrap
Tpr |void |croak_no_mem
Tpr |void |croak_no_mem_ext \
|NN const char *context \
|STRLEN len
ATdpr |void |croak_no_modify
TXpr |void |croak_popstack
Adpr |void |croak_sv |NN SV *baseex
ATdpr |void |croak_xs_usage |NN const CV * const cv \
|NN const char * const params
CTp |Signal_t|csighandler1 |int sig
CTp |Signal_t|csighandler3 |int sig \
|NULLOK Siginfo_t *info \
|NULLOK void *uap
ATdmp |bool |c9strict_utf8_to_uv \
|NN const U8 * const s \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p
EXp |regexp_engine const *|current_re_engine
RXp |XOPRETANY|custom_op_get_field \
|NN const OP *o \
|const xop_flags_enum field
Adop |void |custom_op_register \
|NN Perl_ppaddr_t ppaddr \
|NN const XOP *xop
: Used in sv.c
EXpx |void |cv_ckproto_len_flags \
|NN const CV *cv \
|NULLOK const GV *gv \
|NULLOK const char *p \
|const STRLEN len \
|const U32 flags
Adp |CV * |cv_clone |NN CV *proto
p |CV * |cv_clone_into |NN CV *proto \
|NN CV *target
ARTdp |SV * |cv_const_sv |NULLOK const CV * const cv
RTp |SV * |cv_const_sv_or_av \
|NULLOK const CV * const cv
AMTdip |I32 * |CvDEPTH |NN const CV * const sv
dp |void |cv_forget_slab |NULLOK CV *cv
Adp |void |cv_get_call_checker \
|NN CV *cv \
|NN Perl_call_checker *ckfun_p \
|NN SV **ckobj_p
Adp |void |cv_get_call_checker_flags \
|NN CV *cv \
|U32 gflags \
|NN Perl_call_checker *ckfun_p \
|NN SV **ckobj_p \
|NN U32 *ckflags_p
AMdip |GV * |CvGV |NN CV *sv
Xop |GV * |cvgv_from_hek |NN CV *cv
Xp |void |cvgv_set |NN CV *cv \
|NULLOK GV *gv
Adp |SV * |cv_name |NN NOCHECK CV *cv \
|NULLOK SV *sv \
|U32 flags
Adp |void |cv_set_call_checker \
|NN CV *cv \
|NN Perl_call_checker ckfun \
|NN SV *ckobj
Adp |void |cv_set_call_checker_flags \
|NN CV *cv \
|NN Perl_call_checker ckfun \
|NN SV *ckobj \
|U32 ckflags
Xp |void |cvstash_set |NN CV *cv \
|NULLOK HV *stash
Adp |void |cv_undef |NN CV *cv
p |void |cv_undef_flags |NN CV *cv \
|U32 flags
Cp |void |cx_dump |NN PERL_CONTEXT *cx
: Used by CXINC, which appears to be in widespread use
CRp |I32 |cxinc
Adfpv |void |deb |NN const char *pat \
|...
Cdp |I32 |debop |NN const OP *o
Cdp |void |debprofdump
Adp |I32 |debstack
: Only used in dump.c
p |void |deb_stack_all
Cp |I32 |debstackptrs
p |void |debug_hash_seed|bool via_debug_h
Rp |SV * |defelem_target |NN SV *sv \
|NULLOK MAGIC *mg
: Used in op.c, perl.c
px |void |delete_eval_scope
ATdp |char * |delimcpy |NN char *to \
|NN const char *to_end \
|NN const char *from \
|NN const char *from_end \
|const int delim \
|NN I32 *retlen
ETXdp |char * |delimcpy_no_escape \
|NN char *to \
|NN const char *to_end \
|NN const char *from \
|NN const char *from_end \
|const int delim \
|NN I32 *retlen
Cp |void |despatch_signals
Adfprv |OP * |die |NULLOK const char *pat \
|...
Adpr |OP * |die_sv |NN SV *baseex
: Used in util.c
pr |void |die_unwind |NN SV *msv
: FIXME
Mbp |bool |do_aexec |NULLOK SV *really \
|NN SV **mark \
|NN SV **sp
: Used in pp_sys.c
p |bool |do_aexec5 |NULLOK SV *really \
|NN SV **mark \
|NN SV **sp \
|int fd \
|int do_report
: Used in pp.c
Adp |bool |do_close |NULLOK GV *gv \
|bool is_explicit
dp |void |do_dump_pad |I32 level \
|NN PerlIO *file \
|NULLOK PADLIST *padlist \
|int full
: Defined in doio.c, used only in pp_sys.c
p |bool |do_eof |NN GV *gv
: Used in perly.y
p |OP * |dofile |NN OP *term \
|I32 force_builtin
Cp |void |do_gv_dump |I32 level \
|NN PerlIO *file \
|NN const char *name \
|NULLOK GV *sv
Cp |void |do_gvgv_dump |I32 level \
|NN PerlIO *file \
|NN const char *name \
|NULLOK GV *sv
Cp |void |do_hv_dump |I32 level \
|NN PerlIO *file \
|NN const char *name \
|NULLOK HV *sv
CRTp |bool |doing_taint |int argc \
|NULLOK char **argv \
|NULLOK char **env
Adp |void |do_join |NN SV *sv \
|NN SV *delim \
|NN SV **mark \
|NN SV **sp
Cp |void |do_magic_dump |I32 level \
|NN PerlIO *file \
|NULLOK const MAGIC *mg \
|I32 nest \
|I32 maxnest \
|bool dumpops \
|STRLEN pvlim
: Used in pp.c and pp_hot.c, prototype generated by regen/opcode.pl
: p |OP* |do_kv
: used in pp.c, pp_hot.c
Rp |I32 |do_ncmp |NN SV * const left \
|NN SV * const right
Cp |void |do_op_dump |I32 level \
|NN PerlIO *file \
|NULLOK const OP *o
AMbp |bool |do_open |NN GV *gv \
|NN const char *name \
|I32 len \
|int as_raw \
|int rawmode \
|int rawperm \
|NULLOK PerlIO *supplied_fp
px |bool |do_open6 |NN GV *gv \
|NN const char *oname \
|STRLEN len \
|NULLOK PerlIO *supplied_fp \
|NULLOK SV **svp \
|U32 num
Ap |bool |do_openn |NN GV *gv \
|NN const char *oname \
|I32 len \
|int as_raw \
|int rawmode \
|int rawperm \
|NULLOK PerlIO *supplied_fp \
|NULLOK SV **svp \
|I32 num
px |bool |do_open_raw |NN GV *gv \
|NN const char *oname \
|STRLEN len \
|int rawmode \
|int rawperm \
|NULLOK Stat_t *statbufp
Cp |void |do_pmop_dump |I32 level \
|NN PerlIO *file \
|NULLOK const PMOP *pm
: Used in pp_hot.c and pp_sys.c
p |bool |do_print |NULLOK SV *sv \
|NN PerlIO *fp
: Used in pp_sys.c
Rp |OP * |do_readline
Cp |OP * |doref |NN OP *o \
|I32 type \
|bool set_op_ref
: Defined in doio.c, used only in pp_sys.c
p |bool |do_seek |NULLOK GV *gv \
|Off_t pos \
|int whence
Adp |void |do_sprintf |NN SV *sv \
|SSize_t len \
|NN SV **sarg
Cp |void |do_sv_dump |I32 level \
|NN PerlIO *file \
|NULLOK SV *sv \
|I32 nest \
|I32 maxnest \
|bool dumpops \
|STRLEN pvlim
: Defined in doio.c, used only in pp_sys.c
p |Off_t |do_sysseek |NN GV *gv \
|Off_t pos \
|int whence
: Defined in doio.c, used only in pp_sys.c
Rp |Off_t |do_tell |NN GV *gv
: Defined in doop.c, used only in pp.c
p |Size_t |do_trans |NN SV *sv
ERTXp |I16 |do_uniprop_match \
|NN const char * const key \
|const U16 key_len
Cdhp |void |dounwind |I32 cxix
: Used in my.c and pp.c
p |UV |do_vecget |NN SV *sv \
|STRLEN offset \
|int size
: Defined in doop.c, used only in mg.c (with /* XXX slurp this routine */)
p |void |do_vecset |NN SV *sv
: Defined in doop.c, used only in pp.c
p |void |do_vop |I32 optype \
|NN SV *sv \
|NN SV *left \
|NN SV *right
CDRdp |U8 |dowantarray
TXop |void |drand48_init_r |NN perl_drand48_t *random_state \
|U32 seed
TXop |double |drand48_r |NN perl_drand48_t *random_state
Adp |void |dump_all
p |void |dump_all_perl |bool justperl
Adhp |void |dump_eval
Adp |void |dump_form |NN const GV *gv
Cfpv |void |dump_indent |I32 level \
|NN PerlIO *file \
|NN const char *pat \
|...
Adp |void |dump_packsubs |NN const HV *stash
p |void |dump_packsubs_perl \
|NN const HV *stash \
|bool justperl
Adhp |void |dump_sub |NN const GV *gv
p |void |dump_sub_perl |NN const GV *gv \
|bool justperl
Cp |void |dump_vindent |I32 level \
|NN PerlIO *file \
|NN const char *pat \
|NULLOK va_list *args
EXop |char *|dup_warnings |NULLOK char *warnings
: Used by B
EXopx |void |emulate_cop_io |NN const COP * const c \
|NN SV * const sv
AOdp |SV * |eval_pv |NN const char *p \
|I32 croak_on_error
AOdp |SSize_t|eval_sv |NN SV *sv \
|I32 flags
ATdmp |bool |extended_utf8_to_uv \
|NN const U8 * const s \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p
Adfpv |void |fatal_warner |U32 err \
|NN const char *pat \
|...
Adp |void |fbm_compile |NN SV *sv \
|U32 flags
ARdp |char * |fbm_instr |NN unsigned char *big \
|NN unsigned char *bigend \
|NN SV *littlestr \
|U32 flags
Adhp |SV * |filter_add |NULLOK filter_t funcp \
|NULLOK SV *datasv
Adp |void |filter_del |NN filter_t funcp
ARdhp |I32 |filter_read |int idx \
|NN SV *buf_sv \
|int maxlen
p |CV * |find_lexical_cv|PADOFFSET off
ARdp |CV * |find_runcv |NULLOK U32 *db_seqp
Rp |CV * |find_runcv_where \
|U8 cond \
|IV arg \
|NULLOK U32 *db_seqp
Adp |SV * |find_rundefsv
: Defined in util.c, used only in perl.c
p |char * |find_script |NN const char *scriptname \
|bool dosearch \
|NULLOK const char * const * const search_ext \
|I32 flags
Adip |I32 |foldEQ |NN const char *a \
|NN const char *b \
|I32 len
Cip |I32 |foldEQ_latin1 |NN const char *a \
|NN const char *b \
|I32 len
Adip |I32 |foldEQ_locale |NN const char *a \
|NN const char *b \
|I32 len
Adm |I32 |foldEQ_utf8 |NN const char *s1 \
|NULLOK char **pe1 \
|UV l1 \
|bool u1 \
|NN const char *s2 \
|NULLOK char **pe2 \
|UV l2 \
|bool u2
Cp |I32 |foldEQ_utf8_flags \
|NN const char *s1 \
|NULLOK char **pe1 \
|UV l1 \
|bool u1 \
|NN const char *s2 \
|NULLOK char **pe2 \
|UV l2 \
|bool u2 \
|U32 flags
Adpx |void |forbid_outofblock_ops \
|NN OP *o \
|NN const char *blockname
p |void |force_locale_unlock
Cp |void |force_out_malformed_utf8_message_ \
|NN const U8 * const p \
|NN const U8 * const e \
|U32 flags \
|const bool die_here
Adfpv |char * |form |NN const char *pat \
|...
: Only used in perl.c
p |void |free_tied_hv_pool
Cp |void |free_tmps
ERXp |SV * |get_and_check_backslash_N_name \
|NN const char *s \
|NN const char *e \
|const bool is_utf8 \
|NN const char **error_msg
AOdp |AV * |get_av |NN const char *name \
|I32 flags
AOdp |CV * |get_cv |NN const char *name \
|I32 flags
Adp |CV * |get_cvn_flags |NN const char *name \
|STRLEN len \
|I32 flags
Adp |int |getcwd_sv |NN SV *sv
: Used in pp_ctl.c and pp_hot.c
eop |void |get_db_sub |NULLOK SV **svp \
|NN CV *cv
ERTXp |const char *|get_deprecated_property_msg \
|const Size_t warning_offset
MTp |int |get_extended_os_errno
: Only used in perl.c
p |void |get_hash_seed |NN unsigned char * const seed_buffer
AOdp |HV * |get_hv |NN const char *name \
|I32 flags
DPRp |const char *|get_no_modify
DPRp |U32 * |get_opargs
ADPRdp |char **|get_op_descs
ADPRdp |char **|get_op_names
CDPRp |PPADDR_t *|get_ppaddr
ERXp |SV * |get_prop_definition \
|const int table_index
ERTXp |const char * const *|get_prop_values \
|const int table_index
: Used by SvRX and SvRXOK
EXopx |REGEXP *|get_re_arg |NULLOK SV *sv
AOdp |SV * |get_sv |NN const char *name \
|I32 flags
CRipx |MGVTBL *|get_vtbl |int vtbl_id
Cp |void |gp_free |NULLOK GV *gv
Cp |GP * |gp_ref |NULLOK GP *gp
ATdp |bool |grok_atoUV |NN const char *pv \
|NN UV *valptr \
|NULLOK const char **endptr
AMdp |UV |grok_bin |NN const char *start \
|NN STRLEN *len_p \
|NN I32 *flags \
|NULLOK NV *result
Cp |UV |grok_bin_oct_hex \
|NN const char *start \
|NN STRLEN *len_p \
|NN I32 *flags \
|NULLOK NV *result \
|const unsigned shift \
|const U8 lookup_bit \
|const char prefix
AMdp |UV |grok_hex |NN const char *start \
|NN STRLEN *len_p \
|NN I32 *flags \
|NULLOK NV *result
Adp |int |grok_infnan |NN const char **sp \
|NN const char *send
Adp |int |grok_number |NN const char *pv \
|STRLEN len \
|NULLOK UV *valuep
Adp |int |grok_number_flags \
|NN const char *pv \
|STRLEN len \
|NULLOK UV *valuep \
|U32 flags
ARdp |bool |grok_numeric_radix \
|NN const char **sp \
|NN const char *send
AMdp |UV |grok_oct |NN const char *start \
|NN STRLEN *len_p \
|NN I32 *flags \
|NULLOK NV *result
Adp |GV * |gv_add_by_type |NULLOK GV *gv \
|svtype type
Adp |int |Gv_AMupdate |NN HV *stash \
|bool destructing
ARdp |GV * |gv_autoload_pv |NULLOK NOCHECK HV *stash \
|NN const char *namepv \
|U32 flags
ARdp |GV * |gv_autoload_pvn|NULLOK NOCHECK HV *stash \
|NN const char *name \
|STRLEN len \
|U32 flags
ARdp |GV * |gv_autoload_sv |NULLOK NOCHECK HV *stash \
|NN SV *namesv \
|U32 flags
AMbdp |GV * |gv_AVadd |NULLOK GV *gv
Cp |void |gv_check |NN HV *stash
: Used in pp.c and pp_sys.c
ARdp |SV * |gv_const_sv |NN GV *gv
Adp |void |gv_dump |NULLOK GV *gv
AMbdp |void |gv_efullname3 |NN SV *sv \
|NN const GV *gv \
|NULLOK const char *prefix
Adp |void |gv_efullname4 |NN SV *sv \
|NN const GV *gv \
|NULLOK const char *prefix \
|bool keepmain
Adp |GV * |gv_fetchfile |NN const char *name
Adp |GV * |gv_fetchfile_flags \
|NN const char * const name \
|const STRLEN len \
|const U32 flags
Adm |GV * |gv_fetchmeth |NULLOK NOCHECK HV *stash \
|NN const char *name \
|STRLEN len \
|I32 level
Adm |GV * |gv_fetchmeth_autoload \
|NULLOK NOCHECK HV *stash \
|NN const char *name \
|STRLEN len \
|I32 level
AMbdp |GV * |gv_fetchmethod |NN NOCHECK HV *stash \
|NN const char *name
Adp |GV * |gv_fetchmethod_autoload \
|NN NOCHECK HV *stash \
|NN const char *name \
|I32 autoload
Apx |GV * |gv_fetchmethod_pv_flags \
|NN NOCHECK HV *stash \
|NN const char *name \
|U32 flags
Apx |GV * |gv_fetchmethod_pvn_flags \
|NN NOCHECK HV *stash \
|NN const char *name \
|const STRLEN len \
|U32 flags
Apx |GV * |gv_fetchmethod_sv_flags \
|NN NOCHECK HV *stash \
|NN SV *namesv \
|U32 flags
Adp |GV * |gv_fetchmeth_pv|NULLOK NOCHECK HV *stash \
|NN const char *name \
|I32 level \
|U32 flags
Adp |GV * |gv_fetchmeth_pv_autoload \
|NULLOK NOCHECK HV *stash \
|NN const char *name \
|I32 level \
|U32 flags
Adp |GV * |gv_fetchmeth_pvn \
|NULLOK NOCHECK HV *stash \
|NN const char *name \
|STRLEN len \
|I32 level \
|U32 flags
Adp |GV * |gv_fetchmeth_pvn_autoload \
|NULLOK NOCHECK HV *stash \
|NN const char *name \
|STRLEN len \
|I32 level \
|U32 flags
Adp |GV * |gv_fetchmeth_sv|NULLOK NOCHECK HV *stash \
|NN SV *namesv \
|I32 level \
|U32 flags
Adp |GV * |gv_fetchmeth_sv_autoload \
|NULLOK NOCHECK HV *stash \
|NN SV *namesv \
|I32 level \
|U32 flags
Adp |GV * |gv_fetchpv |NN const char *nambeg \
|I32 flags \
|const svtype sv_type
Adp |GV * |gv_fetchpvn_flags \
|NN const char *name \
|STRLEN len \
|I32 flags \
|const svtype sv_type
Adp |GV * |gv_fetchsv |NN SV *name \
|I32 flags \
|const svtype sv_type
AMbdp |void |gv_fullname3 |NN SV *sv \
|NN const GV *gv \
|NULLOK const char *prefix
Adp |void |gv_fullname4 |NN SV *sv \
|NN const GV *gv \
|NULLOK const char *prefix \
|bool keepmain
CRdp |CV * |gv_handler |NULLOK HV *stash \
|I32 id
AMbdp |GV * |gv_HVadd |NULLOK GV *gv
Adm |void |gv_init |NN GV *gv \
|NULLOK HV *stash \
|NN const char *name \
|STRLEN len \
|int multi
Adp |void |gv_init_pv |NN GV *gv \
|NULLOK HV *stash \
|NN const char *name \
|U32 flags
Adp |void |gv_init_pvn |NN GV *gv \
|NULLOK HV *stash \
|NN const char *name \
|STRLEN len \
|U32 flags
Adp |void |gv_init_sv |NN GV *gv \
|NULLOK HV *stash \
|NN SV *namesv \
|U32 flags
AMbdp |GV * |gv_IOadd |NULLOK GV *gv
Adp |void |gv_name_set |NN GV *gv \
|NN const char *name \
|U32 len \
|U32 flags
ep |GV * |gv_override |NN const char * const name \
|const STRLEN len
p |void |gv_setref |NN SV * const dsv \
|NN SV * const ssv
Adp |HV * |gv_stashpv |NN const char *name \
|I32 flags
Adp |HV * |gv_stashpvn |NN const char *name \
|U32 namelen \
|I32 flags
Adp |HV * |gv_stashsv |NN SV *sv \
|I32 flags
Xdpx |void |gv_try_downgrade \
|NN GV *gv
op |struct xpvhv_aux *|hv_auxalloc \
|NN HV *hv
: Used in dump.c and hv.c
opx |AV ** |hv_backreferences_p \
|NN HV *hv
ARdpx |SV * |hv_bucket_ratio|NN HV *hv
Adp |void |hv_clear |NULLOK HV *hv
Adp |void |hv_clear_placeholders \
|NN HV *hv
Cp |void * |hv_common |NULLOK HV *hv \
|NULLOK SV *keysv \
|NULLOK const char *key \
|STRLEN klen \
|int flags \
|int action \
|NULLOK SV *val \
|U32 hash
Cp |void * |hv_common_key_len \
|NULLOK HV *hv \
|NN const char *key \
|I32 klen_i32 \
|const int action \
|NULLOK SV *val \
|const U32 hash
: used in SAVEHINTS() and op.c
ARdp |HV * |hv_copy_hints_hv \
|NULLOK HV * const ohv
Cp |void |hv_delayfree_ent \
|NULLOK HV *notused \
|NULLOK HE *entry
AMbdp |SV * |hv_delete |NULLOK HV *hv \
|NN const char *key \
|I32 klen \
|I32 flags
AMbdp |SV * |hv_delete_ent |NULLOK HV *hv \
|NN SV *keysv \
|I32 flags \
|U32 hash
Adp |void |hv_dump |NULLOK HV *hv
CRdop |HE ** |hv_eiter_p |NN HV *hv
Cdop |void |hv_eiter_set |NN HV *hv \
|NULLOK HE *eiter
dp |void |hv_ename_add |NN HV *hv \
|NN const char *name \
|U32 len \
|U32 flags
dp |void |hv_ename_delete|NN HV *hv \
|NN const char *name \
|U32 len \
|U32 flags
AMRbdp |bool |hv_exists |NULLOK HV *hv \
|NN const char *key \
|I32 klen
AMRbdp |bool |hv_exists_ent |NULLOK HV *hv \
|NN SV *keysv \
|U32 hash
AMbdp |SV ** |hv_fetch |NULLOK HV *hv \
|NN const char *key \
|I32 klen \
|I32 lval
AMbdp |HE * |hv_fetch_ent |NULLOK HV *hv \
|NN SV *keysv \
|I32 lval \
|U32 hash
Cdop |STRLEN |hv_fill |NN HV * const hv
Cp |void |hv_free_ent |NULLOK HV *notused \
|NULLOK HE *entry
Adp |I32 |hv_iterinit |NN HV *hv
ARdp |char * |hv_iterkey |NN HE *entry \
|NN I32 *retlen
ARdp |SV * |hv_iterkeysv |NN HE *entry
AMRbdp |HE * |hv_iternext |NN HV *hv
ARdpx |HE * |hv_iternext_flags \
|NN HV *hv \
|I32 flags
ARdp |SV * |hv_iternextsv |NN HV *hv \
|NN char **key \
|NN I32 *retlen
ARdp |SV * |hv_iterval |NN HV *hv \
|NN HE *entry
Adp |void |hv_ksplit |NN HV *hv \
|IV newmax
AMbdp |void |hv_magic |NN HV *hv \
|NULLOK GV *gv \
|int how
Adp |void |hv_name_set |NN HV *hv \
|NULLOK const char *name \
|U32 len \
|U32 flags
CRdop |I32 |hv_placeholders_get \
|NN const HV *hv
RXop |SSize_t *|hv_placeholders_p \
|NN HV *hv
Cdop |void |hv_placeholders_set \
|NN HV *hv \
|I32 ph
p |void |hv_pushkv |NN HV *hv \
|U32 flags
Cp |void |hv_rand_set |NN HV *hv \
|U32 new_xhv_rand
CRdop |I32 * |hv_riter_p |NN HV *hv
Cdop |void |hv_riter_set |NN HV *hv \
|I32 riter
ARdp |SV * |hv_scalar |NN HV *hv
AMbdp |SV ** |hv_store |NULLOK HV *hv \
|NULLOK const char *key \
|I32 klen \
|NULLOK SV *val \
|U32 hash
AMbdp |HE * |hv_store_ent |NULLOK HV *hv \
|NULLOK SV *key \
|NULLOK SV *val \
|U32 hash
AMbpx |SV ** |hv_store_flags |NULLOK HV *hv \
|NULLOK const char *key \
|I32 klen \
|NULLOK SV *val \
|U32 hash \
|int flags
Adm |SV ** |hv_stores |NULLOK HV *hv \
|"key" \
|NULLOK SV *val
Adm |void |hv_undef |NULLOK HV *hv
Xop |void |hv_undef_flags |NULLOK HV *hv \
|U32 flags
APdm |I32 |ibcmp |NN const char *a \
|NN const char *b \
|I32 len
APdm |I32 |ibcmp_locale |NN const char *a \
|NN const char *b \
|I32 len
Adm |I32 |ibcmp_utf8 |NN const char *s1 \
|NULLOK char **pe1 \
|UV l1 \
|bool u1 \
|NN const char *s2 \
|NULLOK char **pe2 \
|UV l2 \
|bool u2
eop |STRLEN |infix_plugin_standard \
|NN char *operator_ptr \
|STRLEN operator_len \
|NN struct Perl_custom_infix **def
: Used in toke.c
p |void |init_argv_symbols \
|int argc \
|NN char **argv
p |void |init_constants
: Used in pp_ctl.c
op |void |init_dbargs
: Used in mg.c
p |void |init_debugger
COp |int |init_i18nl10n |int printwarn
Xp |void |init_named_cv |NN CV *cv \
|NN OP *nameop
Cp |void |init_stacks
Cp |void |init_tm |NN struct tm *ptm
p |void |init_uniprops
: Used in perly.y
APRTdmp |char * |instr |NN const char *big \
|NN const char *little
Adp |U32 |intro_my
ERXp |Size_t |_inverse_folds |const UV cp \
|NN U32 *first_folds_to \
|NN const U32 **remaining_folds_to
: Used in perly.y
Rp |OP * |invert |NULLOK OP *cmd
p |void |invmap_dump |NN SV *invlist \
|NN UV *map
: Used in sv.c
p |bool |io_close |NN IO *io \
|NULLOK GV *gv \
|bool is_explicit \
|bool warn_on_fail
ARTdip |Size_t |isC9_STRICT_UTF8_CHAR \
|NN const U8 * const s0 \
|NN const U8 * const e
ARTdm |bool |is_c9strict_utf8_string \
|NN const U8 *s \
|STRLEN len
ATdm |bool |is_c9strict_utf8_string_loc \
|NN const U8 *s \
|STRLEN len \
|NN const U8 **ep
ATdip |bool |is_c9strict_utf8_string_loclen \
|NN const U8 *s \
|STRLEN len \
|NULLOK const U8 **ep \
|NULLOK STRLEN *el
APTdp |bool |isinfnan |NV nv
dp |bool |isinfnansv |NN SV *sv
Cp |bool |is_in_locale_category_ \
|const bool compiling \
|const int category
ARdp |I32 |is_lvalue_sub
: used to check for NULs in pathnames and other names
ARdip |bool |is_safe_syscall|NN const char *pv \
|STRLEN len \
|NN const char *what \
|NN const char *op_name
ARTdip |Size_t |isSTRICT_UTF8_CHAR \
|NN const U8 * const s0 \
|NN const U8 * const e
ARTdm |bool |is_strict_utf8_string \
|NN const U8 *s \
|STRLEN len
ATdm |bool |is_strict_utf8_string_loc \
|NN const U8 *s \
|STRLEN len \
|NN const U8 **ep
ATdip |bool |is_strict_utf8_string_loclen \
|NN const U8 *s \
|STRLEN len \
|NULLOK const U8 **ep \
|NULLOK STRLEN *el
CRp |bool |_is_uni_FOO |const U8 classnum \
|const UV c
CRp |bool |_is_uni_perl_idcont \
|UV c
CRp |bool |_is_uni_perl_idstart \
|UV c
ARTdip |Size_t |isUTF8_CHAR |NN const U8 * const s0 \
|NN const U8 * const e
AMTbdp |STRLEN |is_utf8_char_buf \
|NN const U8 *buf \
|NN const U8 *buf_end
ARTdip |Size_t |isUTF8_CHAR_flags \
|NN const U8 * const s0 \
|NN const U8 * const e \
|const U32 flags
CPRTp |STRLEN |is_utf8_char_helper_ \
|NN const U8 * const s \
|NN const U8 *e \
|const U32 flags
CPRTp |Size_t |is_utf8_FF_helper_ \
|NN const U8 * const s0 \
|NN const U8 * const e \
|const bool require_partial
ATdm |bool |is_utf8_fixed_width_buf_flags \
|NN const U8 * const s \
|STRLEN len \
|const U32 flags
ATdm |bool |is_utf8_fixed_width_buf_loc_flags \
|NN const U8 * const s \
|STRLEN len \
|NULLOK const U8 **ep \
|const U32 flags
ATdip |bool |is_utf8_fixed_width_buf_loclen_flags \
|NN const U8 * const s \
|STRLEN len \
|NULLOK const U8 **ep \
|NULLOK STRLEN *el \
|const U32 flags
CRp |bool |_is_utf8_FOO |const U8 classnum \
|NN const U8 *p \
|NN const U8 * const e
ARTdip |bool |is_utf8_invariant_string_loc \
|NN const U8 * const s \
|STRLEN len \
|NULLOK const U8 **ep
CRp |bool |_is_utf8_perl_idcont \
|NN const U8 *p \
|NN const U8 * const e
CRp |bool |_is_utf8_perl_idstart \
|NN const U8 *p \
|NN const U8 * const e
ARTdm |bool |is_utf8_string |NN const U8 *s \
|STRLEN len
ARTdip |bool |is_utf8_string_flags \
|NN const U8 *s \
|STRLEN len \
|const U32 flags
ATdmp |bool |is_utf8_string_loc \
|NN const U8 *s \
|const STRLEN len \
|NN const U8 **ep
ATdm |bool |is_utf8_string_loc_flags \
|NN const U8 *s \
|STRLEN len \
|NN const U8 **ep \
|const U32 flags
ATdip |bool |is_utf8_string_loclen \
|NN const U8 *s \
|STRLEN len \
|NULLOK const U8 **ep \
|NULLOK STRLEN *el
ATdip |bool |is_utf8_string_loclen_flags \
|NN const U8 *s \
|STRLEN len \
|NULLOK const U8 **ep \
|NULLOK STRLEN *el \
|const U32 flags
APTdm |bool |is_utf8_valid_partial_char \
|NN const U8 * const s0 \
|NN const U8 * const e
ARTdip |bool |is_utf8_valid_partial_char_flags \
|NN const U8 * const s0 \
|NN const U8 * const e \
|const U32 flags
: Used in perly.y
p |OP * |jmaybe |NN OP *o
: Used in pp.c
Pp |I32 |keyword |NN const char *name \
|I32 len \
|bool all_keywords
eop |int |keyword_plugin_standard \
|NN char *keyword_ptr \
|STRLEN keyword_len \
|NN OP **op_ptr
Apx |void |leave_adjust_stacks \
|NN SV **from_sp \
|NN SV **to_sp \
|U8 gimme \
|int filter
Cdp |void |leave_scope |I32 base
Adpx |bool |lex_bufutf8
Adpx |void |lex_discard_to |NN char *ptr
Adpx |char * |lex_grow_linestr \
|STRLEN len
Adpx |bool |lex_next_chunk |U32 flags
Adpx |I32 |lex_peek_unichar \
|U32 flags
Adpx |void |lex_read_space |U32 flags
Adpx |void |lex_read_to |NN char *ptr
Adpx |I32 |lex_read_unichar \
|U32 flags
: Public lexer API
Adpx |void |lex_start |NULLOK SV *line \
|NULLOK PerlIO *rsfp \
|U32 flags
Adpx |void |lex_stuff_pv |NN const char *pv \
|U32 flags
Adpx |void |lex_stuff_pvn |NN const char *pv \
|STRLEN len \
|U32 flags
Adpx |void |lex_stuff_sv |NN SV *sv \
|U32 flags
Adpx |void |lex_unstuff |NN char *ptr
p |OP * |list |NULLOK OP *o
ERXp |HV * |load_charnames |NN SV *char_name \
|NN const char *context \
|const STRLEN context_len \
|NN const char **error_msg
AFdpv |void |load_module |U32 flags \
|NN SV *name \
|NULLOK SV *ver \
|...
CTopr |void |locale_panic |NN const char *msg \
|const line_t immediate_caller_line \
|NN const char * const higher_caller_file \
|const line_t higher_caller_line
: Used in perly.y
p |OP * |localize |NN OP *o \
|I32 lex
ARdp |I32 |looks_like_number \
|NN SV * const sv
CRTip |unsigned|lsbit_pos32 |U32 word
p |int |magic_clear_all_env \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_cleararylen_p \
|NN SV *sv \
|NN MAGIC *mg
: These are all indirectly referenced by globals.c. This is somewhat annoying.
p |int |magic_clearenv |NN SV *sv \
|NN MAGIC *mg
dp |int |magic_clearhint|NN SV *sv \
|NN MAGIC *mg
dp |int |magic_clearhints \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_clearhook|NULLOK SV *sv \
|NN MAGIC *mg
p |int |magic_clearhookall \
|NULLOK SV *sv \
|NN MAGIC *mg
p |int |magic_clearisa |NULLOK SV *sv \
|NN MAGIC *mg
p |int |magic_clearpack|NN SV *sv \
|NN MAGIC *mg
p |int |magic_clearsig |NN SV *sv \
|NN MAGIC *mg
p |int |magic_copycallchecker \
|NN SV *sv \
|NN MAGIC *mg \
|NN SV *nsv \
|NULLOK const char *name \
|I32 namlen
Adp |void |magic_dump |NULLOK const MAGIC *mg
p |int |magic_existspack \
|NN SV *sv \
|NN const MAGIC *mg
p |int |magic_freearylen_p \
|NN SV *sv \
|NN MAGIC *mg
dp |int |magic_freedestruct \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_freemglob|NN SV *sv \
|NN MAGIC *mg
p |int |magic_freeovrld|NN SV *sv \
|NN MAGIC *mg
p |int |magic_freeutf8 |NN SV *sv \
|NN MAGIC *mg
p |int |magic_get |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getarylen|NN SV *sv \
|NN const MAGIC *mg
p |int |magic_getdebugvar \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_getdefelem \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_getnkeys |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getpack |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getpos |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getsig |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getsubstr|NN SV *sv \
|NN MAGIC *mg
p |int |magic_gettaint |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getuvar |NN SV *sv \
|NN MAGIC *mg
p |int |magic_getvec |NN SV *sv \
|NN MAGIC *mg
: This is indirectly referenced by globals.c. This is somewhat annoying.
p |int |magic_killbackrefs \
|NN SV *sv \
|NN MAGIC *mg
Fdopv |SV * |magic_methcall |NN SV *sv \
|NN const MAGIC *mg \
|NN SV *meth \
|U32 flags \
|U32 argc \
|...
p |int |magic_nextpack |NN SV *sv \
|NN MAGIC *mg \
|NN SV *key
p |U32 |magic_regdata_cnt \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_regdatum_get \
|NN SV *sv \
|NN MAGIC *mg
: This is indirectly referenced by globals.c. This is somewhat annoying.
p |SV * |magic_scalarpack \
|NN HV *hv \
|NN MAGIC *mg
:removing noreturn to silence a warning for this function resulted in no
:change to the interpreter DLL image under VS 2003 -O1 -GL 32 bits only because
:this is used in a magic vtable, do not use this on conventionally called funcs
p |int |magic_set |NN SV *sv \
|NN MAGIC *mg
p |int |magic_set_all_env \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setarylen|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setdbline|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setdebugvar \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setdefelem \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setenv |NN SV *sv \
|NN MAGIC *mg
dp |int |magic_sethint |NN SV *sv \
|NN MAGIC *mg
p |int |magic_sethook |NULLOK SV *sv \
|NN MAGIC *mg
p |int |magic_sethookall \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setisa |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setlvref |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setmglob |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setnkeys |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setnonelem \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setpack |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setpos |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setregexp|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setsig |NULLOK SV *sv \
|NN MAGIC *mg
p |int |magic_setsigall|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setsubstr|NN SV *sv \
|NN MAGIC *mg
p |int |magic_settaint |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setutf8 |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setuvar |NN SV *sv \
|NN MAGIC *mg
p |int |magic_setvec |NN SV *sv \
|NN MAGIC *mg
p |U32 |magic_sizepack |NN SV *sv \
|NN MAGIC *mg
p |int |magic_wipepack |NN SV *sv \
|NN MAGIC *mg
CTadop |Malloc_t|malloc |MEM_SIZE nbytes
Cp |Stack_off_t *|markstack_grow
EXp |int |mbtowc_ |NULLOK const wchar_t *pwc \
|NULLOK const char *s \
|const Size_t len
Adfpv |SV * |mess |NN const char *pat \
|...
Adp |SV * |mess_sv |NN SV *basemsg \
|bool consume
CTdop |Free_t |mfree |Malloc_t where
Adp |int |mg_clear |NN SV *sv
Adp |int |mg_copy |NN SV *sv \
|NN SV *nsv \
|NULLOK const char *key \
|I32 klen
ARTdp |MAGIC *|mg_find |NULLOK const SV *sv \
|int type
ARTdp |MAGIC *|mg_findext |NULLOK const SV *sv \
|int type \
|NULLOK const MGVTBL *vtbl
: exported for re.pm
ERXp |MAGIC *|mg_find_mglob |NN SV *sv
Adp |int |mg_free |NN SV *sv
Adp |void |mg_freeext |NN SV *sv \
|int how \
|NULLOK const MGVTBL *vtbl
Adp |void |mg_free_type |NN SV *sv \
|int how
Adp |int |mg_get |NN SV *sv
: Defined in mg.c, used only in scope.c
dp |void |mg_localize |NN SV *sv \
|NN SV *nsv \
|bool setmagic
ATdp |void |mg_magical |NN SV *sv
Adp |int |mg_set |NN SV *sv
Cp |I32 |mg_size |NN SV *sv
ATdp |void |mini_mktime |NN struct tm *ptm
: Used in op.c and pp_sys.c
p |int |mode_from_discipline \
|NULLOK const char *s \
|STRLEN len
: Used in sv.c and hv.c
Cop |void * |more_bodies |const svtype sv_type \
|const size_t body_size \
|const size_t arena_size
Cp |const char *|moreswitches \
|NN const char *s
Adp |void |mortal_destructor_sv \
|NN SV *coderef \
|NULLOK SV *args
CRTXip |char * |mortal_getenv |NN const char *str
Cdp |void |mortal_svfunc_x|SVFUNC_t f \
|NULLOK SV *p
Adop |const struct mro_alg *|mro_get_from_name \
|NN SV *name
Adp |AV * |mro_get_linear_isa \
|NN HV *stash
Chop |SV * |mro_get_private_data \
|NN struct mro_meta * const smeta \
|NN const struct mro_alg * const which
: Used in hv.c, mg.c, pp.c, sv.c
dp |void |mro_isa_changed_in \
|NN HV *stash
: Used in HvMROMETA(), which is public.
Xop |struct mro_meta *|mro_meta_init \
|NN HV *stash
Adp |void |mro_method_changed_in \
|NN HV *stash
dep |void |mro_package_moved \
|NULLOK HV * const stash \
|NULLOK HV * const oldstash \
|NN const GV * const gv \
|U32 flags
Adop |void |mro_register |NN const struct mro_alg *mro
Adop |void |mro_set_mro |NN struct mro_meta * const meta \
|NN SV * const name
Adhop |SV * |mro_set_private_data \
|NN struct mro_meta * const smeta \
|NN const struct mro_alg * const which \
|NN SV * const data
CRTip |unsigned|msbit_pos32 |U32 word
EXp |SV * |multiconcat_stringify \
|NN const OP *o
EXp |SV * |multideref_stringify \
|NN const OP *o \
|NULLOK CV *cv
Adp |NV |my_atof |NN const char *s
Cop |char * |my_atof2 |NN const char *orig \
|NN NV *value
Cp |char * |my_atof3 |NN const char *orig \
|NN NV *value \
|const STRLEN len
: Used in perly.y
p |OP * |my_attrs |NN OP *o \
|NULLOK OP *attrs
: Used in mg.c, sv.c
ep |void |my_clearenv
ATdp |int |my_dirfd |NULLOK DIR *dir
Adpr |void |my_exit |U32 status
Adpr |void |my_failure_exit
Cdp |I32 |my_fflush_all
CTdp |Pid_t |my_fork
m |I32 |my_lstat
Xp |I32 |my_lstat_flags |NULLOK const U32 flags
RTop |int |my_mkostemp_cloexec \
|NN char *templte \
|int flags
RTop |int |my_mkstemp_cloexec \
|NN char *templte
Cdp |PerlIO *|my_popen_list |NN const char *mode \
|int n \
|NN SV **args
Adp |void |my_setenv |NULLOK const char *nam \
|NULLOK const char *val
AMTdfpv |int |my_snprintf |NN char *buffer \
|const Size_t len \
|NN const char *format \
|...
CTdp |int |my_socketpair |int family \
|int type \
|int protocol \
|int fd[2]
m |I32 |my_stat
Xp |I32 |my_stat_flags |NULLOK const U32 flags
p |const char *|my_strerror \
|const int errnum \
|NN utf8ness_t *utf8ness
Adfp |char * |my_strftime |NN const char *fmt \
|int sec \
|int min \
|int hour \
|int mday \
|int mon \
|int year \
|int wday \
|int yday \
|int isdst
ARTdp |NV |my_strtod |NN const char * const s \
|NULLOK char **e
: Used in pp_ctl.c
p |void |my_unexec
AMTdp |int |my_vsnprintf |NN char *buffer \
|const Size_t len \
|NN const char *format \
|va_list ap
Adp |OP * |newANONATTRSUB |I32 floor \
|NULLOK OP *proto \
|NULLOK OP *attrs \
|NULLOK OP *block
ARdp |OP * |newANONHASH |NULLOK OP *o
ARdp |OP * |newANONLIST |NULLOK OP *o
Adp |OP * |newANONSUB |I32 floor \
|NULLOK OP *proto \
|NULLOK OP *block
ARdp |OP * |newARGDEFELEMOP|I32 flags \
|NN OP *expr \
|I32 argindex
ARdp |OP * |newASSIGNOP |I32 flags \
|NULLOK OP *left \
|I32 optype \
|NULLOK OP *right
Adm |CV * |newATTRSUB |I32 floor \
|NULLOK OP *o \
|NULLOK OP *proto \
|NULLOK OP *attrs \
|NULLOK OP *block
Xdp |CV * |newATTRSUB_x |I32 floor \
|NULLOK OP *o \
|NULLOK OP *proto \
|NULLOK OP *attrs \
|NULLOK OP *block \
|bool o_is_gv
AMRbdp |AV * |newAV
ARdm |AV * |newAV_alloc_x |SSize_t size
ARdm |AV * |newAV_alloc_xz |SSize_t size
ARdp |AV * |newAVav |NULLOK AV *oav
ARdp |AV * |newAVhv |NULLOK HV *ohv
ARdm |AV * |newAV_mortal
ARdp |OP * |newAVREF |NN OP *o
ARdp |OP * |newBINOP |I32 type \
|I32 flags \
|NULLOK OP *first \
|NULLOK OP *last
ARdp |OP * |newCONDOP |I32 flags \
|NN OP *first \
|NULLOK OP *trueop \
|NULLOK OP *falseop
Adp |CV * |newCONSTSUB |NULLOK HV *stash \
|NULLOK const char *name \
|NULLOK SV *sv
Adp |CV * |newCONSTSUB_flags \
|NULLOK HV *stash \
|NULLOK const char *name \
|STRLEN len \
|U32 flags \
|NULLOK SV *sv
ARdp |OP * |newCVREF |I32 flags \
|NULLOK OP *o
ARdpx |OP * |newDEFEROP |I32 flags \
|NN OP *block
ARdp |OP * |newDEFSVOP
Cp |void |newFORM |I32 floor \
|NULLOK OP *o \
|NULLOK OP *block
ARdp |OP * |newFOROP |I32 flags \
|NULLOK OP *sv \
|NN OP *expr \
|NULLOK OP *block \
|NULLOK OP *cont
ARdp |OP * |newGIVENOP |NN OP *cond \
|NN OP *block \
|PADOFFSET defsv_off
: Used in scope.c
eopx |GP * |newGP |NN GV * const gv
Adm |GV * |newGVgen |NN const char *pack
ARdp |GV * |newGVgen_flags |NN const char *pack \
|U32 flags
ARdp |OP * |newGVOP |I32 type \
|I32 flags \
|NN GV *gv
ARdp |OP * |newGVREF |I32 type \
|NULLOK OP *o
AMRbdp |HV * |newHV
ARdp |HV * |newHVhv |NULLOK HV *hv
ARdp |OP * |newHVREF |NN OP *o
AMRbdp |IO * |newIO
ARdp |OP * |newLISTOP |I32 type \
|I32 flags \
|NULLOK OP *first \
|NULLOK OP *last
AFRdp |OP * |newLISTOPn |I32 type \
|I32 flags \
|...
ARdp |OP * |newLOGOP |I32 optype \
|I32 flags \
|NN OP *first \
|NN OP *other
ARdp |OP * |newLOOPEX |I32 type \
|NN OP *label
ARdp |OP * |newLOOPOP |I32 flags \
|I32 debuggable \
|NN OP *expr \
|NULLOK OP *block
ARdp |OP * |newMETHOP |I32 type \
|I32 flags \
|NN OP *dynamic_meth
ARdp |OP * |newMETHOP_named|I32 type \
|I32 flags \
|NN SV * const_meth
Cdp |CV * |newMYSUB |I32 floor \
|NN OP *o \
|NULLOK OP *proto \
|NULLOK OP *attrs \
|NULLOK OP *block
ARdp |OP * |newNULLLIST
ARdp |OP * |newOP |I32 optype \
|I32 flags
ARTdpx |PADNAMELIST *|newPADNAMELIST \
|size_t max
ARTdpx |PADNAME *|newPADNAMEouter \
|NN PADNAME *outer
ARTdpx |PADNAME *|newPADNAMEpvn|NN const char *s \
|STRLEN len
ARdip |OP * |newPADxVOP |I32 type \
|I32 flags \
|PADOFFSET padix
ARdp |OP * |newPMOP |I32 type \
|I32 flags
Cp |void |newPROG |NN OP *o
ARdp |OP * |newPVOP |I32 type \
|I32 flags \
|NULLOK char *pv
ARdp |OP * |newRANGE |I32 flags \
|NN OP *left \
|NN OP *right
ARdp |SV * |newRV |NN SV * const sv
ARdip |SV * |newRV_noinc |NN SV * const tmpRef
ARdp |OP * |newSLICEOP |I32 flags \
|NULLOK OP *subscript \
|NULLOK OP *listop
CRp |PERL_SI *|new_stackinfo|I32 stitems \
|I32 cxitems
CRp |PERL_SI *|new_stackinfo_flags \
|I32 stitems \
|I32 cxitems \
|UV flags
ARdp |OP * |newSTATEOP |I32 flags \
|NULLOK char *label \
|NULLOK OP *o
p |CV * |newSTUB |NN GV *gv \
|bool fake
AMbdp |CV * |newSUB |I32 floor \
|NULLOK OP *o \
|NULLOK OP *proto \
|NULLOK OP *block
ARdp |SV * |newSV |const STRLEN len
: Perl_new_sv is inline, so needs to be visible outside of sv.c
Ciop |SV * |new_sv |NN const char *file \
|int line \
|NN const char *func
Rp |SV * |newSVavdefelem |NN AV *av \
|SSize_t ix \
|bool extendible
ARdp |SV * |newSVbool |const bool bool_val
ARdp |SV * |newSV_false
ARdp |SV * |newSVhek |NULLOK const HEK * const hek
ARdp |SV * |newSVhek_mortal|NULLOK const HEK * const hek
ARdp |SV * |newSViv |const IV i
ARdp |SV * |newSVnv |const NV n
ARdp |OP * |newSVOP |I32 type \
|I32 flags \
|NN SV *sv
ARdp |SV * |newSVpv |NULLOK const char * const s \
|const STRLEN len
ARdfpv |SV * |newSVpvf |NN const char * const pat \
|...
ARdp |SV * |newSVpvn |NULLOK const char * const s \
|const STRLEN len
ARdp |SV * |newSVpvn_flags |NULLOK const char * const s \
|const STRLEN len \
|const U32 flags
ARdp |SV * |newSVpvn_share |NULLOK const char *s \
|I32 len \
|U32 hash
ARdp |SV * |newSVpv_share |NULLOK const char *s \
|U32 hash
ARdp |SV * |newSVpvz |const STRLEN len
ARdp |OP * |newSVREF |NN OP *o
Adp |SV * |newSVrv |NN SV * const rv \
|NULLOK const char * const classname
AMRbdp |SV * |newSVsv |NULLOK SV * const old
ARdp |SV * |newSVsv_flags |NULLOK SV * const old \
|I32 flags
ARdm |SV * |newSVsv_nomg |NULLOK SV * const old
ARdp |SV * |newSV_true
ARdip |SV * |newSV_type |const svtype type
AIRdp |SV * |newSV_type_mortal \
|const svtype type
ARdp |SV * |newSVuv |const UV u
ARdpx |OP * |newTRYCATCHOP |I32 flags \
|NN OP *tryblock \
|NN OP *catchvar \
|NN OP *catchblock
ARdp |OP * |newUNOP |I32 type \
|I32 flags \
|NULLOK OP *first
ARdp |OP * |newUNOP_AUX |I32 type \
|I32 flags \
|NULLOK OP *first \
|NULLOK UNOP_AUX_item *aux
Adp |SV * |new_version |NN SV *ver
: FIXME - exported for ByteLoader - public or private?
ERXopx |char * |new_warnings_bitfield \
|NULLOK char *buffer \
|NN const char * const bits \
|STRLEN size
ARdp |OP * |newWHENOP |NULLOK OP *cond \
|NN OP *block
ARdp |OP * |newWHILEOP |I32 flags \
|I32 debuggable \
|NULLOK LOOP *loop \
|NULLOK OP *expr \
|NULLOK OP *block \
|NULLOK OP *cont \
|I32 has_my
AUdp |CV * |newXS |NULLOK const char *name \
|NN XSUBADDR_t subaddr \
|NN const char *filename
Xp |CV * |newXS_deffile |NN const char *name \
|NN XSUBADDR_t subaddr
Apx |CV * |newXS_flags |NULLOK const char *name \
|NN XSUBADDR_t subaddr \
|NN const char * const filename \
|NULLOK const char * const proto \
|U32 flags
dp |CV * |newXS_len_flags|NULLOK const char *name \
|STRLEN len \
|NN XSUBADDR_t subaddr \
|NULLOK const char * const filename \
|NULLOK const char * const proto \
|NULLOK SV ** const_svp \
|U32 flags
: Used in pp_hot.c and pp_sys.c
p |PerlIO *|nextargv |NN GV *gv \
|bool nomagicopen
AMPTdp |char * |ninstr |NN const char *big \
|NN const char *bigend \
|NN const char *little \
|NN const char *lend
p |void |no_bareword_filehandle \
|NN const char *fhname
Tefprv |void |noperl_die |NN const char *pat \
|...
CGTdp |void |noshutdownhook
Adp |int |nothreadhook
p |void |notify_parser_that_encoding_changed
: Used in perly.y
Rp |OP * |oopsAV |NN OP *o
: Used in perly.y
Rp |OP * |oopsHV |NN OP *o
Adp |OP * |op_append_elem |I32 optype \
|NULLOK OP *first \
|NULLOK OP *last
Adp |OP * |op_append_list |I32 optype \
|NULLOK OP *first \
|NULLOK OP *last
Adp |OPclass|op_class |NULLOK const OP *o
: FIXME. Used by Data::Alias
EXp |void |op_clear |NN OP *o
Adp |OP * |op_contextualize \
|NN OP *o \
|I32 context
: Used in perly.y
ARdp |OP * |op_convert_list|I32 optype \
|I32 flags \
|NULLOK OP *o
Adp |void |op_dump |NN const OP *o
Adfp |void |opdump_printf |NN struct Perl_OpDumpContext *ctx \
|NN const char *pat \
|...
; Used in op.c and class.c
Adp |OP * |op_force_list |NULLOK OP *o
Adp |void |op_free |NULLOK OP *arg
Adp |OP * |op_linklist |NN OP *o
Admx |OP * |op_lvalue |NULLOK OP *o \
|I32 type
Xop |OP * |op_lvalue_flags|NULLOK OP *o \
|I32 type \
|U32 flags
: Used in various files
Adp |void |op_null |NN OP *o
ATdp |OP * |op_parent |NN OP *o
Adp |OP * |op_prepend_elem|I32 optype \
|NULLOK OP *first \
|NULLOK OP *last
Cdp |void |op_refcnt_lock
Cdp |void |op_refcnt_unlock
Adpx |OP * |op_scope |NULLOK OP *o
Adp |OP * |op_sibling_splice \
|NULLOK OP *parent \
|NULLOK OP *start \
|int del_count \
|NULLOK OP *insert
px |OP * |op_unscope |NULLOK OP *o
ARdpx |OP * |op_wrap_finally|NN OP *block \
|NN OP *finally
: Used in perly.y
p |void |package |NN OP *o
: Used in perly.y
p |void |package_version|NN OP *v
Adp |void |packlist |NN SV *cat \
|NN const char *pat \
|NN const char *patend \
|NN SV **beglist \
|NN SV **endlist
Adp |PADOFFSET|pad_add_anon |NN CV *func \
|I32 optype
Adp |PADOFFSET|pad_add_name_pv \
|NN const char *name \
|const U32 flags \
|NULLOK HV *typestash \
|NULLOK HV *ourstash
Adp |PADOFFSET|pad_add_name_pvn \
|NN const char *namepv \
|STRLEN namelen \
|U32 flags \
|NULLOK HV *typestash \
|NULLOK HV *ourstash
Adp |PADOFFSET|pad_add_name_sv \
|NN SV *name \
|U32 flags \
|NULLOK HV *typestash \
|NULLOK HV *ourstash
p |void |pad_add_weakref|NN CV *func
Adpx |PADOFFSET|pad_alloc |I32 optype \
|U32 tmptype
dp |void |pad_block_start|int full
Adp |PADOFFSET|pad_findmy_pv|NN const char *name \
|U32 flags
Adp |PADOFFSET|pad_findmy_pvn \
|NN const char *namepv \
|STRLEN namelen \
|U32 flags
Adp |PADOFFSET|pad_findmy_sv|NN SV *name \
|U32 flags
dp |void |pad_fixup_inner_anons \
|NN PADLIST *padlist \
|NN CV *old_cv \
|NN CV *new_cv
dp |void |pad_free |PADOFFSET po
dp |OP * |pad_leavemy
p |PAD ** |padlist_store |NN PADLIST *padlist \
|I32 key \
|NULLOK PAD *val
Xop |void |padname_free |NN PADNAME *pn
ARTdpx |PADNAME *|padnamelist_fetch \
|NN PADNAMELIST *pnl \
|SSize_t key
Xop |void |padnamelist_free \
|NN PADNAMELIST *pnl
Adpx |PADNAME **|padnamelist_store \
|NN PADNAMELIST *pnl \
|SSize_t key \
|NULLOK PADNAME *val
: pad API
ARdp |PADLIST *|pad_new |int flags
Xdp |void |pad_push |NN PADLIST *padlist \
|int depth
dp |void |pad_swipe |PADOFFSET po \
|bool refadjust
Adpx |void |pad_tidy |padtidy_type type
: Public parser API
Adpx |OP * |parse_arithexpr|U32 flags
Adpx |OP * |parse_barestmt |U32 flags
Adpx |OP * |parse_block |U32 flags
Adpx |OP * |parse_fullexpr |U32 flags
Adpx |OP * |parse_fullstmt |U32 flags
Adpx |SV * |parse_label |U32 flags
Adpx |OP * |parse_listexpr |U32 flags
: Only used in scope.c
p |void |parser_free |NN const yy_parser *parser
Adpx |OP * |parse_stmtseq |U32 flags
Adpx |OP * |parse_subsignature \
|U32 flags
Adpx |OP * |parse_termexpr |U32 flags
: Used in locale.c and perl.c
p |U32 |parse_unicode_opts \
|NN const char **popt
: peephole optimiser
p |void |peep |NULLOK OP *o
ATdo |PerlInterpreter *|perl_alloc
ATdo |void |perl_construct |NN PerlInterpreter *my_perl
: The reason for the 'u' flag is that this passes "aTHX_ x" to its callee: not
: a legal C parameter
Admu |const XOP *|Perl_custom_op_xop \
|NN const OP *o
ATdo |int |perl_destruct |NN PerlInterpreter *my_perl
ATdo |void |perl_free |NN PerlInterpreter *my_perl
Cop |const char *|PerlIO_context_layers \
|NULLOK const char *mode
ATdo |const char *|Perl_langinfo \
|const nl_item item
ATdo |const char *|Perl_langinfo8 \
|const nl_item item \
|NN utf8ness_t *utf8ness
p |int |PerlLIO_dup2_cloexec \
|int oldfd \
|int newfd
Rp |int |PerlLIO_dup_cloexec \
|int oldfd
Rp |int |PerlLIO_open3_cloexec \
|NN const char *file \
|int flag \
|int perm
Rp |int |PerlLIO_open_cloexec \
|NN const char *file \
|int flag
Ado |HV * |Perl_localeconv
ATdo |int |perl_parse |NN PerlInterpreter *my_perl \
|XSINIT_t xsinit \
|int argc \
|NULLOK char **argv \
|NULLOK char **env
ATdo |int |perl_run |NN PerlInterpreter *my_perl
ATdo |const char *|Perl_setlocale \
|const int category \
|NULLOK const char *locale
CTp |Signal_t|perly_sighandler \
|int sig \
|NULLOK Siginfo_t *info \
|NULLOK void *uap \
|bool safe
Adm |const char * const|phase_name \
|enum perl_phase
Adp |void |pmop_dump |NULLOK PMOP *pm
: Used in perly.y
p |OP * |pmruntime |NN OP *o \
|NN OP *expr \
|NULLOK OP *repl \
|UV flags \
|I32 floor
Xiop |Stack_off_t|POPMARK
Cdp |void |pop_scope
Cipx |void |pop_stackinfo
: Used in perl.c and toke.c
Fopv |void |populate_isa |NN const char *name \
|STRLEN len \
|...
Adhp |REGEXP *|pregcomp |NN SV * const pattern \
|const U32 flags
Adhp |I32 |pregexec |NN REGEXP * const prog \
|NN char *stringarg \
|NN char *strend \
|NN char *strbeg \
|SSize_t minend \
|NN SV *screamer \
|U32 nosave
Cp |void |pregfree |NULLOK REGEXP *r
Cp |void |pregfree2 |NN REGEXP *rx
Adp |const char *|prescan_version \
|NN const char *s \
|bool strict \
|NULLOK const char **errstr \
|NULLOK bool *sqv \
|NULLOK int *ssaw_decimal \
|NULLOK int *swidth \
|NULLOK bool *salpha
ARdp |void * |ptr_table_fetch|NN PTR_TBL_t * const tbl \
|NULLOK const void * const sv
Adp |void |ptr_table_free |NULLOK PTR_TBL_t * const tbl
ARdp |PTR_TBL_t *|ptr_table_new
Adp |void |ptr_table_split|NN PTR_TBL_t * const tbl
Adp |void |ptr_table_store|NN PTR_TBL_t * const tbl \
|NULLOK const void * const oldsv \
|NN void * const newsv
Cdp |void |push_scope
Cipx |void |push_stackinfo |I32 type \
|UV flags
Adp |char * |pv_display |NN SV *dsv \
|NN const char *pv \
|STRLEN cur \
|STRLEN len \
|STRLEN pvlim
Adp |char * |pv_escape |NULLOK SV *dsv \
|NN char const * const str \
|const STRLEN count \
|STRLEN max \
|NULLOK STRLEN * const escaped \
|U32 flags
Adp |char * |pv_pretty |NN SV *dsv \
|NN char const * const str \
|const STRLEN count \
|const STRLEN max \
|NULLOK char const * const start_color \
|NULLOK char const * const end_color \
|const U32 flags
Adp |char * |pv_uni_display |NN SV *dsv \
|NN const U8 *spv \
|STRLEN len \
|STRLEN pvlim \
|UV flags
: FIXME - either make it public, or stop exporting it. (Data::Alias uses this)
: Used in gv.c, op.c, toke.c
EXp |void |qerror |NULLOK SV *err
Adp |char * |rcpv_copy |NULLOK char * const pv
Adp |char * |rcpv_free |NULLOK char * const pv
Aadp |char * |rcpv_new |NULLOK const char * const pv \
|STRLEN len \
|U32 flags
CRTdop |Malloc_t|realloc |Malloc_t where \
|MEM_SIZE nbytes
CTiop |struct regexp *|ReANY |NN const REGEXP * const re
Adp |REGEXP *|re_compile |NN SV * const pattern \
|U32 orig_rx_flags
Cp |void |reentrant_free
Cp |void |reentrant_init
CFTpv |void * |reentrant_retry|NN const char *f \
|...
Cp |void |reentrant_size
Xdp |HV * |refcounted_he_chain_2hv \
|NULLOK const struct refcounted_he *c \
|U32 flags
Xdp |SV * |refcounted_he_fetch_pv \
|NULLOK const struct refcounted_he *chain \
|NN const char *key \
|U32 hash \
|U32 flags
Xdp |SV * |refcounted_he_fetch_pvn \
|NULLOK const struct refcounted_he *chain \
|NN const char *keypv \
|STRLEN keylen \
|U32 hash \
|U32 flags
Xdp |SV * |refcounted_he_fetch_sv \
|NULLOK const struct refcounted_he *chain \
|NN SV *key \
|U32 hash \
|U32 flags
Xdp |void |refcounted_he_free \
|NULLOK struct refcounted_he *he
Xdp |struct refcounted_he *|refcounted_he_inc \
|NULLOK struct refcounted_he *he
Xdp |struct refcounted_he *|refcounted_he_new_pv \
|NULLOK struct refcounted_he *parent \
|NN const char *key \
|U32 hash \
|NULLOK SV *value \
|U32 flags
Xdp |struct refcounted_he *|refcounted_he_new_pvn \
|NULLOK struct refcounted_he *parent \
|NN const char *keypv \
|STRLEN keylen \
|U32 hash \
|NULLOK SV *value \
|U32 flags
Xdp |struct refcounted_he *|refcounted_he_new_sv \
|NULLOK struct refcounted_he *parent \
|NN SV *key \
|U32 hash \
|NULLOK SV *value \
|U32 flags
Cp |void |regdump |NN const regexp *r
Cp |I32 |regexec_flags |NN REGEXP * const rx \
|NN char *stringarg \
|NN char *strend \
|NN char *strbeg \
|SSize_t minend \
|NN SV *sv \
|NULLOK void *data \
|U32 flags
Cp |void |regfree_internal \
|NN REGEXP * const rx
Cp |void |reginitcolors
EXp |SV * |reg_named_buff |NN REGEXP * const rx \
|NULLOK SV * const key \
|NULLOK SV * const value \
|const U32 flags
Cp |SV * |reg_named_buff_all \
|NN REGEXP * const rx \
|const U32 flags
Cp |bool |reg_named_buff_exists \
|NN REGEXP * const rx \
|NN SV * const key \
|const U32 flags
Cp |SV * |reg_named_buff_fetch \
|NN REGEXP * const rx \
|NN SV * const namesv \
|const U32 flags
Cp |SV * |reg_named_buff_firstkey \
|NN REGEXP * const rx \
|const U32 flags
EXp |SV * |reg_named_buff_iter \
|NN REGEXP * const rx \
|NULLOK const SV * const lastkey \
|const U32 flags
Cp |SV * |reg_named_buff_nextkey \
|NN REGEXP * const rx \
|const U32 flags
Cp |SV * |reg_named_buff_scalar \
|NN REGEXP * const rx \
|const U32 flags
: FIXME - is anything in re using this now?
EXp |void |reg_numbered_buff_fetch \
|NN REGEXP * const re \
|const I32 paren \
|NULLOK SV * const sv
: FIXME - is anything in re using this now?
EXp |void |reg_numbered_buff_fetch_flags \
|NN REGEXP * const re \
|const I32 paren \
|NULLOK SV * const sv \
|U32 flags
: FIXME - is anything in re using this now?
EXp |I32 |reg_numbered_buff_length \
|NN REGEXP * const rx \
|NN const SV * const sv \
|const I32 paren
: FIXME - is anything in re using this now?
EXp |void |reg_numbered_buff_store \
|NN REGEXP * const rx \
|const I32 paren \
|NULLOK SV const * const value
: FIXME - is anything in re using this now?
EXp |SV * |reg_qr_package |NN REGEXP * const rx
: FIXME - is anything in re using this now?
EXp |REGEXP *|reg_temp_copy |NULLOK REGEXP *dsv \
|NN REGEXP *ssv
Cp |char * |re_intuit_start|NN REGEXP * const rx \
|NULLOK SV *sv \
|NN const char * const strbeg \
|NN char *strpos \
|NN char *strend \
|const U32 flags \
|NULLOK re_scream_pos_data *data
Cp |SV * |re_intuit_string \
|NN REGEXP * const r
p |void |release_RExC_state \
|NN void *vstate
Xp |REGEXP *|re_op_compile |NULLOK SV ** const patternp \
|int pat_count \
|NULLOK OP *expr \
|NN const regexp_engine *eng \
|NULLOK REGEXP *old_re \
|NULLOK bool *is_bare_re \
|const U32 rx_flags \
|const U32 pm_flags
ATdp |void |repeatcpy |NN char *to \
|NN const char *from \
|SSize_t len \
|IV count
: Used in doio.c, pp_hot.c, pp_sys.c
p |void |report_evil_fh |NULLOK const GV *gv
: Used in mg.c, pp.c, pp_hot.c, regcomp.c
EXdp |void |report_uninit |NULLOK const SV *uninit_sv
: Used in doio.c, pp_hot.c, pp_sys.c
p |void |report_wrongway_fh \
|NULLOK const GV *gv \
|const char have
AOdp |void |require_pv |NN const char *pv
Cop |void |resume_compcv |NN struct suspended_compcv *buffer \
|bool save
Adm |void |resume_compcv_and_save \
|NN struct suspended_compcv *buffer
Adm |void |resume_compcv_final \
|NN struct suspended_compcv *buffer
APTdp |char * |rninstr |NN const char *big \
|NN const char *bigend \
|NN const char *little \
|NN const char *lend
p |void |rpeep |NULLOK OP *o
Adipx |void |rpp_context |NN SV **mark \
|U8 gimme \
|SSize_t extra
Adipx |void |rpp_extend |SSize_t n
Xopx |void |rpp_free_2_ |NN SV * const sv1 \
|NN SV * const sv2 \
|const U32 rc1 \
|const U32 rc2
Adipx |void |rpp_invoke_xs |NN CV *cv
Adipx |bool |rpp_is_lone |NN SV *sv
Cpx |void |rpp_obliterate_stack_to \
|I32 ix
Adipx |void |rpp_popfree_1
Adipx |void |rpp_popfree_2
Adipx |void |rpp_popfree_1_NN
Adipx |void |rpp_popfree_2_NN
Adipx |void |rpp_popfree_to |NN SV **sp
Adipx |void |rpp_popfree_to_NN \
|NN SV **sp
Adipx |SV * |rpp_pop_1_norc
Adipx |void |rpp_push_1 |NN SV *sv
Adipx |void |rpp_push_2 |NN SV *sv1 \
|NN SV *sv2
Adipx |void |rpp_push_IMM |NN SV *sv
Adipx |void |rpp_push_1_norc|NN SV *sv
Adipx |void |rpp_replace_1_1|NN SV *sv
Adipx |void |rpp_replace_2_1|NN SV *sv
Adipx |void |rpp_replace_at |NN SV **sp \
|NN SV *sv
Adipx |void |rpp_replace_at_NN \
|NN SV **sp \
|NN SV *sv
Adipx |void |rpp_replace_at_norc \
|NN SV **sp \
|NN SV *sv
Adipx |void |rpp_replace_at_norc_NN \
|NN SV **sp \
|NN SV *sv
Cipx |void |rpp_replace_2_1_COMMON \
|NN SV *sv
Adipx |void |rpp_replace_1_IMM_NN \
|NN SV *sv
Adipx |void |rpp_replace_2_IMM_NN \
|NN SV *sv
Adipx |void |rpp_replace_1_1_NN \
|NN SV *sv
Adipx |void |rpp_replace_2_1_NN \
|NN SV *sv
Adipx |bool |rpp_stack_is_rc
Adipx |bool |rpp_try_AMAGIC_1 \
|int method \
|int flags
Adipx |bool |rpp_try_AMAGIC_2 \
|int method \
|int flags
Adipx |void |rpp_xpush_1 |NN SV *sv
Adipx |void |rpp_xpush_2 |NN SV *sv1 \
|NN SV *sv2
Adipx |void |rpp_xpush_IMM |NN SV *sv
Adp |Sighandler_t|rsignal |int i \
|Sighandler_t t
: Used in pp_sys.c
p |int |rsignal_restore|int i \
|NULLOK Sigsave_t *t
: Used in pp_sys.c
p |int |rsignal_save |int i \
|Sighandler_t t1 \
|NN Sigsave_t *save
Adp |Sighandler_t|rsignal_state \
|int i
Cdhp |int |runops_debug
Cdhp |int |runops_standard
Adp |CV * |rv2cv_op_cv |NN OP *cvop \
|U32 flags
: Used in pp_hot.c
p |void |rxres_save |NN void **rsp \
|NN REGEXP *rx
ATadp |Malloc_t|safesyscalloc |MEM_SIZE elements \
|MEM_SIZE size
ATdp |Free_t |safesysfree |Malloc_t where
ATadp |Malloc_t|safesysmalloc |MEM_SIZE nbytes
ARTdp |Malloc_t|safesysrealloc|Malloc_t where \
|MEM_SIZE nbytes
Cdp |void |save_adelete |NN AV *av \
|SSize_t key
Adm |void |save_aelem |NN AV *av \
|SSize_t idx \
|NN SV **sptr
Adp |void |save_aelem_flags \
|NN AV *av \
|SSize_t idx \
|NN SV **sptr \
|const U32 flags
Cdp |SSize_t|save_alloc |SSize_t size \
|I32 pad
Adhp |void |save_aptr |NN AV **aptr
Adhp |AV * |save_ary |NN GV *gv
Cp |void |save_bool |NN bool *boolp
Cp |void |save_clearsv |NN SV **svp
Cp |void |save_delete |NN HV *hv \
|NN char *key \
|I32 klen
Cp |void |save_destructor|DESTRUCTORFUNC_NOCONTEXT_t f \
|NN void *p
Cp |void |save_destructor_x \
|DESTRUCTORFUNC_t f \
|NULLOK void *p
: Used in SAVEFREOP(), used in op.c, pp_ctl.c
CMbp |void |save_freeop |NULLOK OP *o
CMbp |void |save_freepv |NULLOK char *pv
Cdp |void |save_freercpv |NN char *rcpv
CMbp |void |save_freesv |NULLOK SV *sv
Cdp |void |save_generic_pvref \
|NN char **str
Cdp |void |save_generic_svref \
|NN SV **sptr
Adp |void |save_gp |NN GV *gv \
|I32 empty
Adhp |HV * |save_hash |NN GV *gv
Cdp |void |save_hdelete |NN HV *hv \
|NN SV *keysv
Adm |void |save_helem |NN HV *hv \
|NN SV *key \
|NN SV **sptr
Adp |void |save_helem_flags \
|NN HV *hv \
|NN SV *key \
|NN SV **sptr \
|const U32 flags
Cdp |void |save_hints
Adhp |void |save_hptr |NN HV **hptr
Cp |void |save_I16 |NN I16 *intp
Cp |void |save_I32 |NN I32 *intp
Cp |void |save_I8 |NN I8 *bytep
Cp |void |save_int |NN int *intp
Adhp |void |save_item |NN SV *item
Cp |void |save_iv |NN IV *ivp
CMbp |void |save_mortalizesv \
|NN SV *sv
: Used in SAVEFREOP(), used in gv.c, op.c, perl.c, pp_ctl.c, pp_sort.c
CMbdp |void |save_op
Cdp |void |save_padsv_and_mortalize \
|PADOFFSET off
Cp |void |save_pptr |NN char **pptr
Cp |void |save_pushi32ptr|const I32 i \
|NULLOK void * const ptr \
|const int type
Cdp |void |save_pushptr |NULLOK void * const ptr \
|const int type
: Used by SAVESWITCHSTACK() in pp.c
Cp |void |save_pushptrptr|NULLOK void * const ptr1 \
|NULLOK void * const ptr2 \
|const int type
Aadip |char * |savepv |NULLOK const char *pv
Aadip |char * |savepvn |NULLOK const char *pv \
|Size_t len
Cdp |void |save_rcpv |NN char **prcpv
Cp |void |save_re_context
Adhp |SV * |save_scalar |NN GV *gv
Cdp |void |save_set_svflags \
|NN SV *sv \
|U32 mask \
|U32 val
Aadp |char * |savesharedpv |NULLOK const char *pv
: NULLOK only to suppress a compiler warning
Aadp |char * |savesharedpvn |NULLOK const char * const pv \
|const STRLEN len
Cdp |void |save_shared_pvref \
|NN char **str
Aadip |char * |savesharedsvpv |NN SV *sv
Cp |void |save_sptr |NN SV **sptr
Cp |void |savestack_grow
Cp |void |savestack_grow_cnt \
|I32 need
Xp |void |save_strlen |NN STRLEN *ptr
Aadip |char * |savesvpv |NN SV *sv
Adhp |SV * |save_svref |NN SV **sptr
Aopx |void |savetmps
Cdp |void |save_vptr |NN void *ptr
: Used in perly.y
p |OP * |sawparens |NULLOK OP *o
: Used in perly.y
p |OP * |scalar |NULLOK OP *o
: Used in pp_ctl.c
p |OP * |scalarvoid |NN OP *o
Adp |NV |scan_bin |NN const char *start \
|STRLEN len \
|NN STRLEN *retlen
Adp |NV |scan_hex |NN const char *start \
|STRLEN len \
|NN STRLEN *retlen
Cp |char * |scan_num |NN const char *s \
|NN YYSTYPE *lvalp
Adp |NV |scan_oct |NN const char *start \
|STRLEN len \
|NN STRLEN *retlen
: For use ONLY in B::Hooks::Parser, by special dispensation
ERXpx |char * |scan_str |NN char *start \
|int keep_quoted \
|int keep_delims \
|int re_reparse \
|NULLOK char **delimp
Adp |const char *|scan_version \
|NN const char *s \
|NN SV *rv \
|bool qv
Adp |char * |scan_vstring |NN const char *s \
|NN const char * const e \
|NN SV *sv
EXpx |char * |scan_word |NN char *s \
|NN char *dest \
|STRLEN destlen \
|int allow_package \
|NN STRLEN *slp
Cp |U32 |seed
: Only used by perl.c/miniperl.c, but defined in caretx.c
ep |void |set_caret_X
CTdp |void |set_context |NN void *t
Adp |void |setdefout |NN GV *gv
Tp |void |setfd_cloexec |int fd
p |void |setfd_cloexec_for_nonsysfd \
|int fd
p |void |setfd_cloexec_or_inhexec_by_sysfdness \
|int fd
Tp |void |setfd_inhexec |int fd
p |void |setfd_inhexec_for_sysfd \
|int fd
Xp |void |set_numeric_standard \
|NN const char *file \
|const line_t caller_line
Xp |void |set_numeric_underlying \
|NN const char *file \
|const line_t caller_line
Cp |HEK * |share_hek |NN const char *str \
|SSize_t len \
|U32 hash
Tp |Signal_t|sighandler1 |int sig
Tp |Signal_t|sighandler3 |int sig \
|NULLOK Siginfo_t *info \
|NULLOK void *uap
CRTip |unsigned|single_1bit_pos32 \
|U32 word
ERXpx |char * |skipspace_flags|NN char *s \
|U32 flags
RXp |void * |Slab_Alloc |size_t sz
Xp |void |Slab_Free |NN void *op
Adp |void |sortsv |NULLOK SV **array \
|size_t num_elts \
|NN SVCOMPARE_t cmp
Adp |void |sortsv_flags |NULLOK SV **array \
|size_t num_elts \
|NN SVCOMPARE_t cmp \
|U32 flags
Cp |SV ** |stack_grow |NN SV **sp \
|NN SV **p \
|SSize_t n
: Defined in doio.c, used only in pp_hot.c
dopx |PerlIO *|start_glob |NN SV *tmpglob \
|NN IO *io
Adp |I32 |start_subparse |I32 is_format \
|U32 flags
ATdmp |bool |strict_utf8_to_uv \
|NN const U8 * const s \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p
CRp |NV |str_to_version |NN SV *sv
: Used in pp_ctl.c
p |void |sub_crush_depth|NN CV *cv
: Used in perly.y
p |void |subsignature_append_positional \
|NULLOK OP *varop \
|OPCODE defmode \
|NULLOK OP *defexpr
p |void |subsignature_append_slurpy \
|I32 sigil \
|NULLOK OP *varop
p |OP * |subsignature_finish
p |void |subsignature_start
Adp |void |suspend_compcv |NN struct suspended_compcv *buffer
ATdip |void |SvAMAGIC_off |NN SV *sv
ATdip |void |SvAMAGIC_on |NN SV *sv
ATdp |void |sv_backoff |NN SV * const sv
Adp |SV * |sv_bless |NN SV * const sv \
|NN NOCHECK HV * const stash
CMbdp |bool |sv_2bool |NN SV * const sv
Cdp |bool |sv_2bool_flags |NN SV *sv \
|I32 flags
Cp |bool |sv_can_swipe_pv_buf \
|NN SV *sv
Adp |bool |sv_cat_decode |NN SV *dsv \
|NN SV *encoding \
|NN SV *ssv \
|NN int *offset \
|NN char *tstr \
|int tlen
Adp |void |sv_catpv |NN SV * const dsv \
|NULLOK const char *sstr
Adfpv |void |sv_catpvf |NN SV * const sv \
|NN const char * const pat \
|...
Adp |void |sv_catpv_flags |NN SV * const dsv \
|NN const char *sstr \
|const I32 flags
Adfpv |void |sv_catpvf_mg |NN SV * const sv \
|NN const char * const pat \
|...
Adp |void |sv_catpv_mg |NN SV * const dsv \
|NULLOK const char * const sstr
AMbdp |void |sv_catpvn |NN SV * const dsv \
|NN const char *sstr \
|STRLEN len
Adp |void |sv_catpvn_flags|NN SV * const dsv \
|NN const char *sstr \
|const STRLEN len \
|const I32 flags
AMbdp |void |sv_catpvn_mg |NN SV * const dsv \
|NN const char *sstr \
|STRLEN len
AMbdp |void |sv_catsv |NN SV * const dsv \
|NULLOK SV * const sstr
Adp |void |sv_catsv_flags |NN SV * const dsv \
|NULLOK SV * const sstr \
|const I32 flags
AMbdp |void |sv_catsv_mg |NN SV * const dsv \
|NULLOK SV * const sstr
Adp |void |sv_chop |NN SV * const sv \
|NULLOK const char * const ptr
: Used only in perl.c
dp |SSize_t|sv_clean_all
: Used only in perl.c
dp |void |sv_clean_objs
Adp |void |sv_clear |NN SV * const orig_sv
AMdp |I32 |sv_cmp |NULLOK SV * const sv1 \
|NULLOK SV * const sv2
Adp |I32 |sv_cmp_flags |NULLOK SV * const sv1 \
|NULLOK SV * const sv2 \
|const U32 flags
AMdp |I32 |sv_cmp_locale |NULLOK SV * const sv1 \
|NULLOK SV * const sv2
Adp |I32 |sv_cmp_locale_flags \
|NULLOK SV * const sv1 \
|NULLOK SV * const sv2 \
|const U32 flags
AMbdp |void |sv_copypv |NN SV * const dsv \
|NN SV * const ssv
Adp |void |sv_copypv_flags|NN SV * const dsv \
|NN SV * const ssv \
|const I32 flags
Adm |void |sv_copypv_nomg |NN SV * const dsv \
|NN SV * const ssv
Adp |CV * |sv_2cv |NULLOK SV *sv \
|NN HV ** const st \
|NN GV ** const gvp \
|const I32 lref
Adp |void |sv_dec |NULLOK SV * const sv
Adp |void |sv_dec_nomg |NULLOK SV * const sv
Xp |void |sv_del_backref |NN SV * const tsv \
|NN SV * const sv
ARdp |bool |sv_derived_from|NN SV *sv \
|NN const char * const name
ARdp |bool |sv_derived_from_hv \
|NN SV *sv \
|NN HV *hv
ARdp |bool |sv_derived_from_pv \
|NN SV *sv \
|NN const char * const name \
|U32 flags
ARdp |bool |sv_derived_from_pvn \
|NN SV *sv \
|NN const char * const name \
|const STRLEN len \
|U32 flags
ARdp |bool |sv_derived_from_sv \
|NN SV *sv \
|NN SV *namesv \
|U32 flags
Adp |bool |sv_destroyable |NULLOK SV *sv
ARdp |bool |sv_does |NN SV *sv \
|NN const char * const name
ARdp |bool |sv_does_pv |NN SV *sv \
|NN const char * const name \
|U32 flags
ARdp |bool |sv_does_pvn |NN SV *sv \
|NN const char * const name \
|const STRLEN len \
|U32 flags
ARdp |bool |sv_does_sv |NN SV *sv \
|NN SV *namesv \
|U32 flags
Adp |void |sv_dump |NULLOK SV *sv
Adp |void |sv_dump_depth |NULLOK SV *sv \
|I32 depth
AMbdp |I32 |sv_eq |NULLOK SV *sv1 \
|NULLOK SV *sv2
Adp |I32 |sv_eq_flags |NULLOK SV *sv1 \
|NULLOK SV *sv2 \
|const U32 flags
AMbdp |void |sv_force_normal|NN SV *sv
Adp |void |sv_force_normal_flags \
|NN SV * const sv \
|const U32 flags
Adp |void |sv_free |NULLOK SV * const sv
Xopx |void |sv_free2 |NN SV * const sv \
|const U32 refcnt
: Used only in perl.c
dp |void |sv_free_arenas
ATdpx |SV * |sv_get_backrefs|NN SV * const sv
Adip |void |SvGETMAGIC |NN SV *sv
Adp |char * |sv_gets |NN SV * const sv \
|NN PerlIO * const fp \
|SSize_t append
Cdp |char * |sv_grow |NN SV * const sv \
|STRLEN newlen
Cdp |char * |sv_grow_fresh |NN SV * const sv \
|STRLEN newlen
Adp |void |sv_inc |NULLOK SV * const sv
Adp |void |sv_inc_nomg |NULLOK SV * const sv
AMbdp |void |sv_insert |NN SV * const bigstr \
|const STRLEN offset \
|const STRLEN len \
|NN const char * const little \
|const STRLEN littlelen
Adp |void |sv_insert_flags|NN SV * const bigstr \
|const STRLEN offset \
|const STRLEN len \
|NN const char *little \
|const STRLEN littlelen \
|const U32 flags
Adp |IO * |sv_2io |NN SV * const sv
Adp |int |sv_isa |NULLOK SV *sv \
|NN const char * const name
ARdp |bool |sv_isa_sv |NN SV *sv \
|NN SV *namesv
Adp |int |sv_isobject |NULLOK SV *sv
Adip |IV |SvIV |NN SV *sv
CMbp |IV |sv_2iv |NN SV *sv
Adp |IV |sv_2iv_flags |NN SV * const sv \
|const I32 flags
Adip |IV |SvIV_nomg |NN SV *sv
Adp |SV * |sv_langinfo |const nl_item item
Adp |STRLEN |sv_len |NULLOK SV * const sv
Adp |STRLEN |sv_len_utf8 |NULLOK SV * const sv
Adp |STRLEN |sv_len_utf8_nomg \
|NN SV * const sv
Adp |void |sv_magic |NN SV * const sv \
|NULLOK SV * const obj \
|const int how \
|NULLOK const char * const name \
|const I32 namlen
Adp |MAGIC *|sv_magicext |NN SV * const sv \
|NULLOK SV * const obj \
|const int how \
|NULLOK const MGVTBL * const vtbl \
|NULLOK const char * const name \
|const I32 namlen
: exported for re.pm
EXp |MAGIC *|sv_magicext_mglob \
|NN SV *sv
Adp |SV * |sv_2mortal |NULLOK SV * const sv
AMRbdp |SV * |sv_mortalcopy |NULLOK SV * const oldsv
ARdp |SV * |sv_mortalcopy_flags \
|NULLOK SV * const oldsv \
|U32 flags
ARdp |SV * |sv_newmortal
Cdp |SV * |sv_newref |NULLOK SV * const sv
ADbdp |void |sv_nolocking |NULLOK SV *sv
Adp |void |sv_nosharing |NULLOK SV *sv
ADbdp |void |sv_nounlocking |NULLOK SV *sv
: Used in pp.c, pp_hot.c, sv.c
dpx |SV * |sv_2num |NN SV * const sv
Adm |bool |sv_numeq |NULLOK SV *sv1 \
|NULLOK SV *sv2
Adp |bool |sv_numeq_flags |NULLOK SV *sv1 \
|NULLOK SV *sv2 \
|const U32 flags
Adip |NV |SvNV |NN SV *sv
Adp |NV |sv_2nv_flags |NN SV * const sv \
|const I32 flags
Adip |NV |SvNV_nomg |NN SV *sv
ETip |bool |sv_only_taint_gmagic \
|NN SV *sv
Cdp |char * |sv_peek |NULLOK SV *sv
Adp |void |sv_pos_b2u |NULLOK SV * const sv \
|NN I32 * const offsetp
Adp |STRLEN |sv_pos_b2u_flags \
|NN SV * const sv \
|STRLEN const offset \
|U32 flags
Adp |void |sv_pos_u2b |NULLOK SV * const sv \
|NN I32 * const offsetp \
|NULLOK I32 * const lenp
Adp |STRLEN |sv_pos_u2b_flags \
|NN SV * const sv \
|STRLEN uoffset \
|NULLOK STRLEN * const lenp \
|U32 flags
AMbdp |char * |sv_2pv |NN SV *sv \
|NULLOK STRLEN *lp
CMRbdp |char * |sv_pv |NN SV *sv
AMbdp |char * |sv_2pvbyte |NN SV *sv \
|NULLOK STRLEN * const lp
CMRbdp |char * |sv_pvbyte |NN SV *sv
Adp |char * |sv_2pvbyte_flags \
|NN SV *sv \
|NULLOK STRLEN * const lp \
|const U32 flags
Cdp |char * |sv_pvbyten_force \
|NN SV * const sv \
|NULLOK STRLEN * const lp
ip |char * |sv_pvbyten_force_wrapper \
|NN SV * const sv \
|NULLOK STRLEN * const lp \
|const U32 dummy
CMRbdp |char * |sv_2pvbyte_nolen \
|NN SV *sv
Adp |char * |sv_2pv_flags |NN SV * const sv \
|NULLOK STRLEN * const lp \
|const U32 flags
CMbdp |char * |sv_pvn_force |NN SV *sv \
|NULLOK STRLEN *lp
Adp |char * |sv_pvn_force_flags \
|NN SV * const sv \
|NULLOK STRLEN * const lp \
|const U32 flags
CMRbdp |char * |sv_2pv_nolen |NN SV *sv
AMbdp |char * |sv_2pvutf8 |NN SV *sv \
|NULLOK STRLEN * const lp
CMRbdp |char * |sv_pvutf8 |NN SV *sv
Adp |char * |sv_2pvutf8_flags \
|NN SV *sv \
|NULLOK STRLEN * const lp \
|const U32 flags
Cdp |char * |sv_pvutf8n_force \
|NN SV * const sv \
|NULLOK STRLEN * const lp
ip |char * |sv_pvutf8n_force_wrapper \
|NN SV * const sv \
|NULLOK STRLEN * const lp \
|const U32 dummy
CMRbdp |char * |sv_2pvutf8_nolen \
|NN SV *sv
AIdp |bool |SvPVXtrue |NN SV *sv
Adp |char * |sv_recode_to_utf8 \
|NN SV *sv \
|NN SV *encoding
Adp |SV * |sv_ref |NULLOK SV *dst \
|NN const SV * const sv \
|const int ob
AMdip |void |SvREFCNT_dec |NULLOK SV *sv
AMdip |void |SvREFCNT_dec_NN|NN SV *sv
Adip |SV * |SvREFCNT_dec_ret_NULL \
|NULLOK SV *sv
Adm |void |SvREFCNT_dec_set_NULL \
|NULLOK SV *sv
AMTdip |SV * |SvREFCNT_inc |NULLOK SV *sv
AMTdip |SV * |SvREFCNT_inc_NN|NN SV *sv
AMTdip |void |SvREFCNT_inc_void \
|NULLOK SV *sv
ARdp |const char *|sv_reftype|NN const SV * const sv \
|const int ob
Adp |void |sv_regex_global_pos_clear \
|NN SV *sv
ARdp |bool |sv_regex_global_pos_get \
|NN SV *sv \
|NN STRLEN *posp \
|U32 flags
Adp |void |sv_regex_global_pos_set \
|NN SV *sv \
|STRLEN pos \
|U32 flags
Adp |void |sv_replace |NN SV * const sv \
|NN SV * const nsv
Adp |void |sv_report_used
Adp |void |sv_reset |NN const char *s \
|NULLOK HV * const stash
p |void |sv_resetpvn |NULLOK const char *s \
|STRLEN len \
|NULLOK HV * const stash
Adp |SV * |sv_rvunweaken |NN SV * const sv
Adp |SV * |sv_rvweaken |NN SV * const sv
Adp |void |sv_set_bool |NN SV *sv \
|const bool bool_val
Adp |void |sv_set_false |NN SV *sv
Xp |void |sv_sethek |NN SV * const sv \
|NULLOK const HEK * const hek
Adp |void |sv_setiv |NN SV * const sv \
|const IV num
Adp |void |sv_setiv_mg |NN SV * const sv \
|const IV i
Adp |void |sv_setnv |NN SV * const sv \
|const NV num
Adp |void |sv_setnv_mg |NN SV * const sv \
|const NV num
Adp |void |sv_setpv |NN SV * const sv \
|NULLOK const char * const ptr
Adp |char *|sv_setpv_bufsize \
|NN SV * const sv \
|const STRLEN cur \
|const STRLEN len
Adfpv |void |sv_setpvf |NN SV * const sv \
|NN const char * const pat \
|...
Adfpv |void |sv_setpvf_mg |NN SV * const sv \
|NN const char * const pat \
|...
Cipx |char *|sv_setpv_freshbuf \
|NN SV * const sv
Adp |void |sv_setpv_mg |NN SV * const sv \
|NULLOK const char * const ptr
Adp |void |sv_setpvn |NN SV * const sv \
|NULLOK const char * const ptr \
|const STRLEN len
Adp |void |sv_setpvn_fresh|NN SV * const sv \
|NULLOK const char * const ptr \
|const STRLEN len
Adp |void |sv_setpvn_mg |NN SV * const sv \
|NN const char * const ptr \
|const STRLEN len
Adp |SV * |sv_setref_iv |NN SV * const rv \
|NULLOK const char * const classname \
|const IV iv
Adp |SV * |sv_setref_nv |NN SV * const rv \
|NULLOK const char * const classname \
|const NV nv
Adp |SV * |sv_setref_pv |NN SV * const rv \
|NULLOK const char * const classname \
|NULLOK void * const pv
Adp |SV * |sv_setref_pvn |NN SV * const rv \
|NULLOK const char * const classname \
|NN const char * const pv \
|const STRLEN n
Adp |SV * |sv_setref_uv |NN SV * const rv \
|NULLOK const char * const classname \
|const UV uv
Adp |void |sv_setrv_inc |NN SV * const sv \
|NN SV * const ref
Adp |void |sv_setrv_inc_mg|NN SV * const sv \
|NN SV * const ref
Adp |void |sv_setrv_noinc |NN SV * const sv \
|NN SV * const ref
Adp |void |sv_setrv_noinc_mg \
|NN SV * const sv \
|NN SV * const ref
AMbdp |void |sv_setsv |NN SV *dsv \
|NULLOK SV *ssv
Adp |void |sv_setsv_flags |NN SV *dsv \
|NULLOK SV *ssv \
|const I32 flags
Adp |void |sv_setsv_mg |NN SV * const dsv \
|NULLOK SV * const ssv
Adp |void |sv_set_true |NN SV *sv
Adp |void |sv_set_undef |NN SV *sv
Adp |void |sv_setuv |NN SV * const sv \
|const UV num
Adp |void |sv_setuv_mg |NN SV * const sv \
|const UV u
Adm |bool |sv_streq |NULLOK SV *sv1 \
|NULLOK SV *sv2
Adp |bool |sv_streq_flags |NULLOK SV *sv1 \
|NULLOK SV *sv2 \
|const U32 flags
Adp |SV * |sv_strftime_ints \
|NN SV *fmt \
|int sec \
|int min \
|int hour \
|int mday \
|int mon \
|int year \
|int isdst
Adp |SV * |sv_strftime_tm |NN SV *fmt \
|NN const struct tm *mytm
Adp |SV * |sv_string_from_errnum \
|int errnum \
|NULLOK SV *tgtsv
CMbdp |void |sv_taint |NN SV *sv
CRdp |bool |sv_tainted |NN SV * const sv
Adip |bool |SvTRUE |NULLOK SV *sv
Cdp |I32 |sv_true |NULLOK SV * const sv
Cip |bool |SvTRUE_common |NN SV *sv \
|const bool sv_2bool_is_fallback
Adip |bool |SvTRUE_NN |NN SV *sv
Adip |bool |SvTRUE_nomg |NULLOK SV *sv
ARdp |char * |sv_uni_display |NN SV *dsv \
|NN SV *ssv \
|STRLEN pvlim \
|UV flags
Adp |int |sv_unmagic |NN SV * const sv \
|const int type
Adp |int |sv_unmagicext |NN SV * const sv \
|const int type \
|NULLOK const MGVTBL *vtbl
AMbdp |void |sv_unref |NN SV *sv
Adp |void |sv_unref_flags |NN SV * const ref \
|const U32 flags
Cdp |void |sv_untaint |NN SV * const sv
Adp |void |sv_upgrade |NN SV * const sv \
|svtype new_type
AMbdp |void |sv_usepvn |NN SV *sv \
|NULLOK char *ptr \
|STRLEN len
Adp |void |sv_usepvn_flags|NN SV * const sv \
|NULLOK char *ptr \
|const STRLEN len \
|const U32 flags
AMbdp |void |sv_usepvn_mg |NN SV *sv \
|NULLOK char *ptr \
|STRLEN len
Adp |bool |sv_utf8_decode |NN SV * const sv
AMbdp |bool |sv_utf8_downgrade \
|NN SV * const sv \
|const bool fail_ok
Adp |bool |sv_utf8_downgrade_flags \
|NN SV * const sv \
|const bool fail_ok \
|const U32 flags
Adm |bool |sv_utf8_downgrade_nomg \
|NN SV * const sv \
|const bool fail_ok
Adp |void |sv_utf8_encode |NN SV * const sv
AMbdp |STRLEN |sv_utf8_upgrade|NN SV *sv
Adm |STRLEN |sv_utf8_upgrade_flags \
|NN SV * const sv \
|const I32 flags
Adp |STRLEN |sv_utf8_upgrade_flags_grow \
|NN SV * const sv \
|const I32 flags \
|STRLEN extra
Adm |STRLEN |sv_utf8_upgrade_nomg \
|NN SV *sv
Adip |UV |SvUV |NN SV *sv
CMbp |UV |sv_2uv |NN SV *sv
Adp |UV |sv_2uv_flags |NN SV * const sv \
|const I32 flags
Adip |UV |SvUV_nomg |NN SV *sv
Adp |void |sv_vcatpvf |NN SV * const sv \
|NN const char * const pat \
|NULLOK va_list * const args
Adp |void |sv_vcatpvf_mg |NN SV * const sv \
|NN const char * const pat \
|NULLOK va_list * const args
Adp |void |sv_vcatpvfn |NN SV * const sv \
|NN const char * const pat \
|const STRLEN patlen \
|NULLOK va_list * const args \
|NULLOK SV ** const svargs \
|const Size_t sv_count \
|NULLOK bool * const maybe_tainted
Adp |void |sv_vcatpvfn_flags \
|NN SV * const sv \
|NN const char * const pat \
|const STRLEN patlen \
|NULLOK va_list * const args \
|NULLOK SV ** const svargs \
|const Size_t sv_count \
|NULLOK bool * const maybe_tainted \
|const U32 flags
Adp |void |sv_vsetpvf |NN SV * const sv \
|NN const char * const pat \
|NULLOK va_list * const args
Adp |void |sv_vsetpvf_mg |NN SV * const sv \
|NN const char * const pat \
|NULLOK va_list * const args
Adp |void |sv_vsetpvfn |NN SV * const sv \
|NN const char * const pat \
|const STRLEN patlen \
|NULLOK va_list * const args \
|NULLOK SV ** const svargs \
|const Size_t sv_count \
|NULLOK bool * const maybe_tainted
Adp |const char *|sv_vstring_get \
|NN SV * const sv \
|NULLOK STRLEN *lenp
Cipx |void |switch_argstack|NN AV *to
Adp |void |switch_to_global_locale
Adp |bool |sync_locale
CTop |void |sys_init |NN int *argc \
|NN char ***argv
CTop |void |sys_init3 |NN int *argc \
|NN char ***argv \
|NN char ***env
CTop |void |sys_term
Cdp |void |taint_env
Cdp |void |taint_proper |NULLOK const char *f \
|NN const char * const s
Fpv |OP * |tied_method |NN SV *methname \
|NN SV **mark \
|NN SV * const sv \
|NN const MAGIC * const mg \
|const U32 flags \
|U32 argc \
|...
Xp |SSize_t|tmps_grow_p |SSize_t ix
Xiop |Stack_off_t|TOPMARK
Cm |UV |to_uni_fold |UV c \
|NN U8 *p \
|NN STRLEN *lenp
Cp |UV |_to_uni_fold_flags \
|UV c \
|NN U8 *p \
|NN STRLEN *lenp \
|U8 flags
Cp |UV |to_uni_lower |UV c \
|NN U8 *p \
|NN STRLEN *lenp
Cp |UV |to_uni_title |UV c \
|NN U8 *p \
|NN STRLEN *lenp
Cp |UV |to_uni_upper |UV c \
|NN U8 *p \
|NN STRLEN *lenp
Cp |UV |_to_utf8_fold_flags \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|U8 flags
Cp |UV |_to_utf8_lower_flags \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|bool flags
Cp |UV |_to_utf8_title_flags \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|bool flags
Cp |UV |_to_utf8_upper_flags \
|NN const U8 *p \
|NULLOK const U8 *e \
|NN U8 *ustrp \
|NULLOK STRLEN *lenp \
|bool flags
EXop |bool |try_amagic_bin |int method \
|int flags
EXop |bool |try_amagic_un |int method \
|int flags
ARTdp |char * |uiv_2buf |NN char * const buf \
|const IV iv \
|UV uv \
|const int is_uv \
|NN char ** const peob
Adp |SSize_t|unpackstring |NN const char *pat \
|NN const char *patend \
|NN const char *s \
|NN const char *strend \
|U32 flags
: Used in gv.c, hv.c
Cp |void |unshare_hek |NULLOK HEK *hek
Cdp |void |unsharepvn |NULLOK const char *sv \
|I32 len \
|U32 hash
Adp |SV * |upg_version |NN SV *ver \
|bool qv
ARdip |IV |utf8_distance |NN const U8 *a \
|NN const U8 *b
ARTdip |U8 * |utf8_hop |NN const U8 *s \
|SSize_t off
ARTdmp |U8 * |utf8_hop_back |NN const U8 *s \
|SSize_t off \
|NN const U8 * const start
ARTdip |U8 * |utf8_hop_back_overshoot \
|NN const U8 *s \
|SSize_t off \
|NN const U8 * const start \
|NULLOK SSize_t *remaining
ARTdmp |U8 * |utf8_hop_forward \
|NN const U8 *s \
|SSize_t off \
|NN const U8 * const end
ARTdip |U8 * |utf8_hop_forward_overshoot \
|NN const U8 *s \
|SSize_t off \
|NN const U8 * const end \
|NULLOK SSize_t *remaining
ARTdip |U8 * |utf8_hop_overshoot \
|NN const U8 *s \
|SSize_t off \
|NN const U8 * const start \
|NN const U8 * const end \
|NULLOK SSize_t *remaining
ARTdmp |U8 * |utf8_hop_safe |NN const U8 *s \
|SSize_t off \
|NN const U8 * const start \
|NN const U8 * const end
ARdp |STRLEN |utf8_length |NN const U8 *s0 \
|NN const U8 *e
ATdmp |UV |utf8n_to_uvchr |NN const U8 *s \
|STRLEN curlen \
|NULLOK STRLEN *retlen \
|const U32 flags
ATdmp |UV |utf8n_to_uvchr_error \
|NN const U8 *s \
|STRLEN curlen \
|NULLOK STRLEN *retlen \
|const U32 flags \
|NULLOK U32 *errors
ATdip |UV |utf8n_to_uvchr_msgs \
|NN const U8 * const s0 \
|STRLEN curlen \
|NULLOK STRLEN *retlen \
|const U32 flags \
|NULLOK U32 *errors \
|NULLOK AV **msgs
CDbdp |UV |utf8n_to_uvuni |NN const U8 *s \
|STRLEN curlen \
|NULLOK STRLEN *retlen \
|U32 flags
Adpx |U8 * |utf8_to_bytes |NN U8 *s \
|NN STRLEN *lenp
Cp |bool |utf8_to_bytes_ |NN U8 **s_ptr \
|NN STRLEN *lenp \
|NN void **free_me \
|Perl_utf8_to_bytes_arg result_as
Adip |bool |utf8_to_bytes_new_pv \
|NN U8 const **s_ptr \
|NN STRLEN *lenp \
|NN void **free_me
Adip |bool |utf8_to_bytes_overwrite \
|NN U8 **s_ptr \
|NN STRLEN *lenp
Adip |bool |utf8_to_bytes_temp_pv \
|NN U8 const **s_ptr \
|NN STRLEN *lenp
EMXp |U8 * |utf16_to_utf8 |NN U8 *p \
|NN U8 *d \
|Size_t bytelen \
|NN Size_t *newlen
EXp |U8 * |utf16_to_utf8_base \
|NN U8 *p \
|NN U8 *d \
|Size_t bytelen \
|NN Size_t *newlen \
|const bool high \
|const bool low
EXpx |U8 * |utf8_to_utf16_base \
|NN U8 *s \
|NN U8 *d \
|Size_t bytelen \
|NN Size_t *newlen \
|const bool high \
|const bool low
EMXp |U8 * |utf16_to_utf8_reversed \
|NN U8 *p \
|NN U8 *d \
|Size_t bytelen \
|NN Size_t *newlen
ATdmp |bool |utf8_to_uv |NN const U8 * const s \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p
ADbdp |UV |utf8_to_uvchr |NN const U8 *s \
|NULLOK STRLEN *retlen
AMdip |UV |utf8_to_uvchr_buf \
|NN const U8 *s \
|NN const U8 *send \
|NULLOK STRLEN *retlen
ATdmp |bool |utf8_to_uv_errors \
|NN const U8 * const s \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p \
|U32 flags \
|NULLOK U32 *errors
ATdmp |bool |utf8_to_uv_flags \
|NN const U8 * const s \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p \
|U32 flags
ATdip |bool |utf8_to_uv_msgs|NN const U8 * const s0 \
|NN const U8 *e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p \
|U32 flags \
|NULLOK U32 *errors \
|NULLOK AV **msgs
CTp |bool |utf8_to_uv_msgs_helper_ \
|NN const U8 * const s0 \
|NN const U8 * const e \
|NN UV *cp_p \
|NULLOK Size_t *advance_p \
|U32 flags \
|NULLOK U32 *errors \
|NULLOK AV **msgs
ATdip |UV |utf8_to_uv_or_die \
|NN const U8 * const s \
|NN const U8 *e \
|NULLOK Size_t *advance_p
CDbdp |UV |utf8_to_uvuni |NN const U8 *s \
|NULLOK STRLEN *retlen
: Used in perly.y
p |void |utilize |int aver \
|I32 floor \
|NULLOK OP *version \
|NN OP *idop \
|NULLOK OP *arg
Adm |U8 * |uvchr_to_utf8 |NN U8 *d \
|UV uv
Adm |U8 * |uvchr_to_utf8_flags \
|NN U8 *d \
|UV uv \
|UV flags
Adm |U8 * |uvchr_to_utf8_flags_msgs \
|NN U8 *d \
|UV uv \
|UV flags \
|NULLOK HV **msgs
CMdp |U8 * |uvoffuni_to_utf8_flags \
|NN U8 *d \
|UV uv \
|UV flags
Cp |U8 * |uvoffuni_to_utf8_flags_msgs \
|NN U8 *d \
|UV input_uv \
|const UV flags \
|NULLOK HV **msgs
Adip |U8 * |uv_to_utf8 |NN U8 *d \
|UV uv
Adip |U8 * |uv_to_utf8_flags \
|NN U8 *d \
|UV uv \
|UV flags
Adip |U8 * |uv_to_utf8_msgs|NN U8 *d \
|UV uv \
|UV flags \
|NULLOK HV **msgs
CDbp |U8 * |uvuni_to_utf8 |NN U8 *d \
|UV uv
EXdpx |bool |validate_proto |NN SV *name \
|NULLOK SV *proto \
|bool warn \
|bool curstash
Adp |bool |valid_identifier_pve \
|NN const char *s \
|NN const char *end \
|U32 flags
Adp |bool |valid_identifier_pvn \
|NN const char *s \
|STRLEN len \
|U32 flags
Adp |bool |valid_identifier_sv \
|NULLOK SV *sv
CRTdip |UV |valid_utf8_to_uvchr \
|NN const U8 *s \
|NULLOK STRLEN *retlen
Adp |int |vcmp |NN SV *lhv \
|NN SV *rhv
Adpr |void |vcroak |NULLOK const char *pat \
|NULLOK va_list *args
Adp |void |vdeb |NN const char *pat \
|NULLOK va_list *args
Adp |void |vfatal_warner |U32 err \
|NN const char *pat \
|NULLOK va_list *args
Adp |char * |vform |NN const char *pat \
|NULLOK va_list *args
: Used by Data::Alias
EXp |void |vivify_defelem |NN SV *sv
: Used in pp.c
Rp |SV * |vivify_ref |NN SV *sv \
|U32 to_what
Adp |void |vload_module |U32 flags \
|NN SV *name \
|NULLOK SV *ver \
|NULLOK va_list *args
Adp |SV * |vmess |NN const char *pat \
|NULLOK va_list *args
ARdp |SV * |vnewSVpvf |NN const char * const pat \
|NULLOK va_list * const args
Adp |SV * |vnormal |NN SV *vs
Adp |SV * |vnumify |NN SV *vs
Adp |SV * |vstringify |NN SV *vs
Adp |SV * |vverify |NN SV *vs
Adp |void |vwarn |NN const char *pat \
|NULLOK va_list *args
Adp |void |vwarner |U32 err \
|NN const char *pat \
|NULLOK va_list *args
: Used in pp_sys.c
p |I32 |wait4pid |Pid_t pid \
|NN int *statusp \
|int flags
Adfpv |void |warn |NN const char *pat \
|...
Adfpv |void |warner |U32 err \
|NN const char *pat \
|...
Adp |void |warn_sv |NN SV *baseex
: Used in cop.h
RXop |I32 |was_lvalue_sub
: FIXME
p |void |watch |NN char **addr
Adm |I32 |whichsig |NN const char *sig
Adp |I32 |whichsig_pv |NN const char *sig
Adp |I32 |whichsig_pvn |NN const char *sig \
|STRLEN len
Adp |I32 |whichsig_sv |NN SV *sigsv
Adpx |void |wrap_infix_plugin \
|NN Perl_infix_plugin_t new_plugin \
|NN Perl_infix_plugin_t *old_plugin_p
Adpx |void |wrap_keyword_plugin \
|NN Perl_keyword_plugin_t new_plugin \
|NN Perl_keyword_plugin_t *old_plugin_p
Adp |void |wrap_op_checker|Optype opcode \
|NN Perl_check_t new_checker \
|NN Perl_check_t *old_checker_p
: Used in pp_ctl.c
p |void |write_to_stderr|NN SV *msv
Xp |void |xs_boot_epilog |const SSize_t ax
FTXopv |Stack_off_t|xs_handshake \
|const U32 key \
|NN void *v_my_perl \
|NN const char *file \
|...
: Used in op.c
p |int |yyerror |NN const char * const s
p |int |yyerror_pv |NN const char * const s \
|U32 flags
p |int |yyerror_pvn |NULLOK const char * const s \
|STRLEN len \
|U32 flags
: Used in perly.y, and by Data::Alias
EXp |int |yylex
: Used in perl.c, pp_ctl.c
p |int |yyparse |int gramtype
p |void |yyquit
p |void |yyunlex
#if defined(DEBUGGING)
: Used in mg.c
Rp |int |get_debug_opts |NN const char **s \
|bool givehelp
Adop |void |hv_assert |NN HV *hv
Cdp |void |pad_setsv |PADOFFSET po \
|NN SV *sv
Cdp |SV * |pad_sv |PADOFFSET po
TXp |void |set_padlist |NN CV *cv \
|NULLOK PADLIST *padlist
#endif
#if defined(DEBUG_LEAKING_SCALARS_FORK_DUMP)
: Used in sv.c
p |void |dump_sv_child |NN SV *sv
#endif
#if !defined(EBCDIC)
CRTip |unsigned int|variant_byte_number \
|PERL_UINTMAX_T word
#endif
#if defined(F_FREESP) && !defined(HAS_CHSIZE) && !defined(HAS_TRUNCATE)
ARdp |I32 |my_chsize |int fd \
|Off_t length
#endif
#if !defined(HAS_GETENV_LEN)
: Used in hv.c
p |char * |getenv_len |NN const char *env_elem \
|NN unsigned long *len
#endif
#if !defined(HAS_MKOSTEMP)
Tdop |int |my_mkostemp |NN char *templte \
|int flags
#endif
#if !defined(HAS_MKSTEMP)
Tdop |int |my_mkstemp |NN char *templte
#endif
#if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM)
: Defined in doio.c, used only in pp_sys.c
p |I32 |do_ipcctl |I32 optype \
|NN SV **mark \
|NN SV **sp
: Defined in doio.c, used only in pp_sys.c
p |I32 |do_ipcget |I32 optype \
|NN SV **mark \
|NN SV **sp
: Defined in doio.c, used only in pp_sys.c
p |SSize_t|do_msgrcv |NN SV **mark \
|NN SV **sp
: Defined in doio.c, used only in pp_sys.c
p |I32 |do_msgsnd |NN SV **mark \
|NN SV **sp
: Defined in doio.c, used only in pp_sys.c
p |I32 |do_semop |NN SV **mark \
|NN SV **sp
: Defined in doio.c, used only in pp_sys.c
p |I32 |do_shmio |I32 optype \
|NN SV **mark \
|NN SV **sp
#endif /* defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM) */
#if defined(HAS_PIPE)
Rp |int |PerlProc_pipe_cloexec \
|NN int *pipefd
#endif
#if !defined(HAS_RENAME)
: Used in pp_sys.c
p |I32 |same_dirent |NN const char *a \
|NN const char *b
#endif
#if !defined(HAS_SIGNBIT)
APTdox |int |Perl_signbit |NV f
#endif
#if defined(HAS_SOCKET)
Rp |int |PerlSock_accept_cloexec \
|int listenfd \
|NULLOK struct sockaddr *addr \
|NULLOK Sock_size_t *addrlen
Rp |int |PerlSock_socket_cloexec \
|int domain \
|int type \
|int protocol
#endif
#if defined(HAS_SOCKETPAIR) || \
( defined(AF_INET) && defined(HAS_SOCKET) && defined(PF_INET) && \
defined(SOCK_DGRAM) )
Rp |int |PerlSock_socketpair_cloexec \
|int domain \
|int type \
|int protocol \
|NN int *pairfd
#endif
#if !defined(HAS_STRLCAT)
ATdip |Size_t |my_strlcat |NULLOK char *dst \
|NULLOK const char *src \
|Size_t size
#endif
#if !defined(HAS_STRLCPY)
ATds |Size_t |my_strlcpy |NULLOK char *dst \
|NULLOK const char *src \
|Size_t size
#endif
#if !defined(HAS_STRNLEN)
ATdip |Size_t |my_strnlen |NN const char *str \
|Size_t maxlen
#endif
#if defined(HAVE_INTERP_INTERN)
Cp |void |sys_intern_clear
Cp |void |sys_intern_init
# if defined(USE_ITHREADS)
Cp |void |sys_intern_dup |NN struct interp_intern *src \
|NN struct interp_intern *dst
# endif
#endif
#if defined(_MSC_VER)
p |int |magic_regdatum_set \
|NN SV *sv \
|NN MAGIC *mg
#else
pr |int |magic_regdatum_set \
|NN SV *sv \
|NN MAGIC *mg
#endif
#if defined(MULTIPLICITY)
ATdfprv |void |croak_nocontext|NULLOK const char *pat \
|...
ATdfpv |void |deb_nocontext |NN const char *pat \
|...
ATdfprv |OP * |die_nocontext |NULLOK const char *pat \
|...
ATdfpv |char * |form_nocontext |NN const char *pat \
|...
AFTdpv |void |load_module_nocontext \
|U32 flags \
|NN SV *name \
|NULLOK SV *ver \
|...
ATdfpv |SV * |mess_nocontext |NN const char *pat \
|...
Cdop |void * |my_cxt_init |NN int *indexp \
|size_t size
ATdfpv |SV * |newSVpvf_nocontext \
|NN const char * const pat \
|...
ATdfpv |void |sv_catpvf_mg_nocontext \
|NN SV * const sv \
|NN const char * const pat \
|...
ATdfpv |void |sv_catpvf_nocontext \
|NN SV * const sv \
|NN const char * const pat \
|...
ATdfpv |void |sv_setpvf_mg_nocontext \
|NN SV * const sv \
|NN const char * const pat \
|...
ATdfpv |void |sv_setpvf_nocontext \
|NN SV * const sv \
|NN const char * const pat \
|...
ATdfpv |void |warner_nocontext \
|U32 err \
|NN const char *pat \
|...
ATdfpv |void |warn_nocontext |NN const char *pat \
|...
#endif /* defined(MULTIPLICITY) */
#if defined(MYMALLOC)
Adp |void |dump_mstats |NN const char *s
Cp |int |get_mstats |NN perl_mstats_t *buf \
|int buflen \
|int level
RTp |MEM_SIZE|malloced_size |NN void *p
RTp |MEM_SIZE|malloc_good_size \
|size_t nbytes
#endif
#if defined(PERL_ANY_COW)
: Used in regexec.c
EXpx |SV * |sv_setsv_cow |NULLOK SV *dsv \
|NN SV *ssv
#endif
#if defined(PERL_CORE)
p |void |opslab_force_free \
|NN OPSLAB *slab
p |void |opslab_free |NN OPSLAB *slab
p |void |opslab_free_nopad \
|NN OPSLAB *slab
p |void |parser_free_nexttoke_ops \
|NN yy_parser *parser \
|NN OPSLAB *slab
RTi |bool |should_warn_nl |NN const char *pv
# if defined(PERL_DEBUG_READONLY_OPS)
ep |void |Slab_to_ro |NN OPSLAB *slab
ep |void |Slab_to_rw |NN OPSLAB * const slab
# endif
#endif /* defined(PERL_CORE) */
#if defined(PERL_CORE) || defined(PERL_EXT)
ERXdp |bool |isSCRIPT_RUN |NN const U8 *s \
|NN const U8 *send \
|const bool utf8_target
ERTXdip |bool |is_utf8_non_invariant_string \
|NN const U8 * const s \
|STRLEN len
Ei |STRLEN |sv_or_pv_pos_u2b \
|NN SV *sv \
|NN const char *pv \
|STRLEN pos \
|NULLOK STRLEN *lenp
ERTdi |Size_t |variant_under_utf8_count \
|NN const U8 * const s \
|NN const U8 * const e
# if !defined(HAS_MEMRCHR)
ETei |void * |my_memrchr |NN const char *s \
|const char c \
|const STRLEN len
# endif
#endif
#if defined(PERL_CORE) || defined(PERL_USE_VOLATILE_API)
Adp |void |finalize_optree|NN OP *o
Adp |void |optimize_optree|NN OP *o
#endif
#if defined(PERL_DEBUG_READONLY_COW)
p |void |sv_buf_to_ro |NN SV *sv
#endif
#if defined(PERL_DEBUG_READONLY_OPS)
: FIXME - can be static.
eopx |PADOFFSET|op_refcnt_dec|NN OP *o
: Used in OpREFCNT_inc() in sv.c
eopx |OP * |op_refcnt_inc |NULLOK OP *o
#endif
#if defined(PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION)
Mp |bool |do_exec |NN const char *cmd
#else
p |bool |do_exec |NN const char *cmd
#endif
#if defined(PERL_DONT_CREATE_GVSV)
AMbdp |GV * |gv_SVadd |NULLOK GV *gv
#endif
#if defined(PERL_IMPLICIT_SYS)
CTo |PerlInterpreter *|perl_alloc_using \
|NN const struct IPerlMem **ipM \
|NN const struct IPerlMem **ipMS \
|NN const struct IPerlMem **ipMP \
|NN const struct IPerlEnv **ipE \
|NN const struct IPerlStdIO **ipStd \
|NN const struct IPerlLIO **ipLIO \
|NN const struct IPerlDir **ipD \
|NN const struct IPerlSock **ipS \
|NN const struct IPerlProc **ipP
# if defined(USE_ITHREADS)
CTo |PerlInterpreter *|perl_clone_using \
|NN PerlInterpreter *proto_perl \
|UV flags \
|NN const struct IPerlMem **ipM \
|NN const struct IPerlMem **ipMS \
|NN const struct IPerlMem **ipMP \
|NN const struct IPerlEnv **ipE \
|NN const struct IPerlStdIO **ipStd \
|NN const struct IPerlLIO **ipLIO \
|NN const struct IPerlDir **ipD \
|NN const struct IPerlSock **ipS \
|NN const struct IPerlProc **ipP
# endif
#else
Adp |I32 |my_pclose |NULLOK PerlIO *ptr
Adp |PerlIO *|my_popen |NN const char *cmd \
|NN const char *mode
# if defined(USE_ITHREADS)
i |bool |PerlEnv_putenv |NN char *str
# endif
#endif
#if defined(PERL_IN_AV_C)
S |MAGIC *|get_aux_mg |NN AV *av
#endif
#if defined(PERL_IN_BUILTIN_C) || defined(PERL_IN_OP_C)
p |void |finish_export_lexical
p |void |import_builtin_bundle \
|U16 ver
p |void |prepare_export_lexical
p |void |XS_builtin_indexed \
|NN CV *cv
#endif
#if defined(PERL_IN_CLASS_C)
S |void |class_cleanup_definition \
|NN HV *stash
#endif
#if defined(PERL_IN_CLASS_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_PAD_C) || defined(PERL_IN_PERLY_C) || \
defined(PERL_IN_TOKE_C)
; Functions in class.c that are called by the parser (perly.c, toke.c, pad.c)
Cp |void |class_add_ADJUST \
|NN HV *stash \
|NN CV *cv
Cp |void |class_add_field|NN HV *stash \
|NN PADNAME *pn
Cp |void |class_apply_attributes \
|NN HV *stash \
|NULLOK OP *attrlist
Cp |void |class_apply_field_attributes \
|NN PADNAME *pn \
|NULLOK OP *attrlist
Cp |void |class_prepare_initfield_parse
Cp |void |class_prepare_method_parse \
|NN CV *cv
Cp |void |class_seal_stash \
|NN HV *stash
Cp |void |class_set_field_defop \
|NN PADNAME *pn \
|OPCODE defmode \
|NN OP *defop
Cp |void |class_setup_stash \
|NN HV *stash
Cp |OP * |class_wrap_method_body \
|NULLOK OP *o
Cp |void |croak_kw_unless_class \
|NN const char *kw
#endif /* defined(PERL_IN_CLASS_C) || defined(PERL_IN_OP_C) ||
defined(PERL_IN_PAD_C) || defined(PERL_IN_PERLY_C) ||
defined(PERL_IN_TOKE_C) */
#if defined(PERL_IN_DEB_C)
S |void |deb_stack_n |NN SV **stack_base \
|SSize_t stack_min \
|SSize_t stack_max \
|SSize_t mark_min \
|SSize_t mark_max \
|SSize_t nonrc_base
#endif
#if defined(PERL_IN_DOIO_C)
S |bool |argvout_final |NN MAGIC *mg \
|NN IO *io \
|bool is_explicit
S |void |exec_failed |NN const char *cmd \
|int fd \
|int do_report
ST |bool |is_fork_open |NN const char *name
S |bool |openn_cleanup |NN GV *gv \
|NN IO *io \
|NULLOK PerlIO *fp \
|NN char *mode \
|NN const char *oname \
|NULLOK PerlIO *saveifp \
|NULLOK PerlIO *saveofp \
|int savefd \
|char savetype \
|int writing \
|bool was_fdopen \
|NULLOK const char *type \
|NULLOK Stat_t *statbufp
S |IO * |openn_setup |NN GV *gv \
|NN char *mode \
|NN PerlIO **saveifp \
|NN PerlIO **saveofp \
|NN int *savefd \
|NN char *savetype
# if !defined(DOSISH)
RS |bool |ingroup |Gid_t testgid \
|bool effective
# endif
#endif
#if defined(PERL_IN_DOOP_C)
RS |Size_t |do_trans_complex \
|NN SV * const sv \
|NN const OPtrans_map * const tbl
RS |Size_t |do_trans_count |NN SV * const sv \
|NN const OPtrans_map * const tbl
RS |Size_t |do_trans_count_invmap \
|NN SV * const sv \
|NN AV * const invmap
RS |Size_t |do_trans_invmap|NN SV * const sv \
|NN AV * const invmap
RS |Size_t |do_trans_simple|NN SV * const sv \
|NN const OPtrans_map * const tbl
#endif
#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_PP_C) || defined(PERL_IN_REGCOMP_ANY) || \
defined(PERL_IN_REGEXEC_C) || defined(PERL_IN_TOKE_C) || \
defined(PERL_IN_UTF8_C)
ERTi |bool * |get_invlist_offset_addr \
|NN SV *invlist
ERTi |UV * |invlist_array |NN SV * const invlist
ERTi |bool |_invlist_contains_cp \
|NN SV * const invlist \
|const UV cp
ERTi |UV |_invlist_len |NN SV * const invlist
ERTXp |SSize_t|_invlist_search|NN SV * const invlist \
|const UV cp
ERTi |bool |is_invlist |NULLOK const SV * const invlist
#endif
#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_REGCOMP_ANY)
ERi |SV * |add_cp_to_invlist \
|NULLOK SV *invlist \
|const UV cp
Ei |void |invlist_extend |NN SV * const invlist \
|const UV len
ERTi |UV |invlist_highest|NN SV * const invlist
Ei |void |invlist_set_len|NN SV * const invlist \
|const UV len \
|const bool offset
#endif
#if defined(PERL_IN_DOOP_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_REGCOMP_ANY) || defined(PERL_IN_UTF8_C)
ERXp |SV * |_add_range_to_invlist \
|NULLOK SV *invlist \
|UV start \
|UV end
m |void |_invlist_intersection \
|NN SV * const a \
|NN SV * const b \
|NN SV **i
EXp |void |_invlist_intersection_maybe_complement_2nd \
|NULLOK SV * const a \
|NN SV * const b \
|const bool complement_b \
|NN SV **i
EXp |void |_invlist_invert|NN SV * const invlist
m |void |_invlist_subtract \
|NN SV * const a \
|NN SV * const b \
|NN SV **result
Cm |void |_invlist_union |NULLOK SV * const a \
|NN SV * const b \
|NN SV **output
EXp |void |_invlist_union_maybe_complement_2nd \
|NULLOK SV * const a \
|NN SV * const b \
|const bool complement_b \
|NN SV **output
ERXp |SV * |_new_invlist |IV initial_size
ERXp |SV * |_setup_canned_invlist \
|const STRLEN size \
|const UV element0 \
|NN UV **other_elements_ptr
#endif /* defined(PERL_IN_DOOP_C) || defined(PERL_IN_OP_C) ||
defined(PERL_IN_REGCOMP_ANY) || defined(PERL_IN_UTF8_C) */
#if defined(PERL_IN_DQUOTE_C) || defined(PERL_IN_REGCOMP_C) || \
defined(PERL_IN_TOKE_C)
ERXp |const char *|form_alien_digit_msg \
|const U8 which \
|const STRLEN valids_len \
|NN const char * const first_bad \
|NN const char * const send \
|const bool UTF \
|const bool braced
ERXp |bool |grok_bslash_c |const char source \
|NN U8 *result \
|NN const char **message \
|NULLOK U32 *packed_warn
ERXp |bool |grok_bslash_o |NN char **s \
|NN const char * const send \
|NN UV *uv \
|NN const char **message \
|NULLOK U32 *packed_warn \
|const bool strict \
|const bool allow_UV_MAX \
|const bool utf8
ERXp |bool |grok_bslash_x |NN char **s \
|NN const char * const send \
|NN UV *uv \
|NN const char **message \
|NULLOK U32 *packed_warn \
|const bool strict \
|const bool allow_UV_MAX \
|const bool utf8
#endif
#if defined(PERL_IN_DQUOTE_C) || defined(PERL_IN_REGCOMP_C) || \
defined(PERL_IN_TOKE_C) || defined(PERL_IN_UTF8_C)
ERXp |const char *|form_cp_too_large_msg \
|const U8 which \
|NULLOK const char *string \
|const Size_t len \
|const UV cp
#endif
#if defined(PERL_IN_DUMP_C)
S |CV * |deb_curcv |I32 ix
Sd |void |debprof |NN const OP *o
S |SV * |pm_description |NN const PMOP *pm
S |UV |sequence_num |NULLOK const OP *o
#endif
#if defined(PERL_IN_DUMP_C) || defined(PERL_IN_HV_C) || \
defined(PERL_IN_SCOPE_C) || defined(PERL_IN_SV_C)
opx |void |hv_kill_backrefs \
|NN HV *hv
#endif
#if defined(PERL_IN_DUMP_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_REGCOMP_ANY)
EXp |void |_invlist_dump |NN PerlIO *file \
|I32 level \
|NN const char * const indent \
|NN SV * const invlist
#endif
#if defined(PERL_IN_GV_C)
S |bool |find_default_stash \
|NN HV **stash \
|NN const char *name \
|STRLEN len \
|const U32 is_utf8 \
|const I32 add \
|const svtype sv_type
i |GV * |gv_fetchmeth_internal \
|NULLOK HV *stash \
|NULLOK SV *meth \
|NULLOK const char *name \
|STRLEN len \
|I32 level \
|U32 flags
S |void |gv_init_svtype |NN GV *gv \
|const svtype sv_type
S |bool |gv_is_in_main |NN const char *name \
|STRLEN len \
|const U32 is_utf8
S |bool |gv_magicalize |NN GV *gv \
|NN HV *stash \
|NN const char *name \
|STRLEN len \
|const svtype sv_type
S |void |gv_magicalize_isa \
|NN GV *gv
i |HV * |gv_stashpvn_internal \
|NN const char *name \
|U32 namelen \
|I32 flags
S |void |maybe_multimagic_gv \
|NN GV *gv \
|NN const char *name \
|const svtype sv_type
S |bool |parse_gv_stash_name \
|NN HV **stash \
|NN GV **gv \
|NN const char **name \
|NN STRLEN *len \
|NN const char *nambeg \
|STRLEN full_len \
|const U32 is_utf8 \
|const I32 add
S |void |require_tie_mod|NN GV *gv \
|NN const char varname \
|NN const char *name \
|STRLEN len \
|const U32 flags
#endif /* defined(PERL_IN_GV_C) */
#if defined(PERL_IN_GV_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_PAD_C) || defined(PERL_IN_SV_C)
: Used in gv.c
op |void |sv_add_backref |NN SV * const tsv \
|NN SV * const sv
#endif
#if defined(PERL_IN_GV_C) || defined(PERL_IN_UNIVERSAL_C)
EGdp |HV * |gv_stashsvpvn_cached \
|SV *namesv \
|const char *name \
|U32 namelen \
|I32 flags
#endif
#if defined(PERL_IN_HV_C)
Sx |void |clear_placeholders \
|NN HV *hv \
|U32 items
S |void |hsplit |NN HV *hv \
|STRLEN const oldsize \
|STRLEN newsize
S |struct xpvhv_aux *|hv_auxinit \
|NN HV *hv
Sx |SV * |hv_delete_common \
|NULLOK HV *hv \
|NULLOK SV *keysv \
|NULLOK const char *key \
|STRLEN klen \
|int k_flags \
|I32 d_flags \
|U32 hash
S |SV * |hv_free_ent_ret|NN HE *entry
S |void |hv_free_entries|NN HV *hv
ST |void |hv_magic_check |NN HV *hv \
|NN bool *needs_copy \
|NN bool *needs_store
Sr |void |hv_notallowed |int flags \
|NN const char *key \
|I32 klen \
|NN const char *msg
S |SV * |refcounted_he_value \
|NN const struct refcounted_he *he
RSTa |HEK * |save_hek_flags |NN const char *str \
|I32 len \
|U32 hash \
|int flags
RS |HEK * |share_hek_flags|NN const char *str \
|STRLEN len \
|U32 hash \
|int flags
S |void |unshare_hek_or_pvn \
|NULLOK const HEK *hek \
|NULLOK const char *str \
|I32 len \
|U32 hash
# if !defined(PURIFY)
RS |HE * |new_he
# endif
#endif /* defined(PERL_IN_HV_C) */
#if defined(PERL_IN_HV_C) || defined(PERL_IN_MG_C) || defined(PERL_IN_SV_C)
: Used in hv.c and mg.c
opx |void |sv_kill_backrefs \
|NN SV * const sv \
|NULLOK NOCHECK AV * const av
#endif
#if defined(PERL_IN_HV_C) || defined(PERL_IN_SV_C)
op |SV * |hfree_next_entry \
|NN HV *hv \
|NN STRLEN *indexp
#endif
#if defined(PERL_IN_LOCALE_C)
S |utf8ness_t|get_locale_string_utf8ness_i \
|NULLOK const char *string \
|const locale_utf8ness_t known_utf8 \
|NULLOK const char *locale \
|const locale_category_index cat_index
S |void |ints_to_tm |NN struct tm *my_tm \
|NN const char *locale \
|int sec \
|int min \
|int hour \
|int mday \
|int mon \
|int year \
|int isdst
S |bool |is_locale_utf8 |NN const char *locale
S |HV * |my_localeconv |const int item
S |void |populate_hash_from_C_localeconv \
|NN HV *hv \
|NN const char *locale \
|const U32 which_mask \
|NN const lconv_offset_t *strings[2] \
|NN const lconv_offset_t *integers[2]
S |bool |strftime8 |NN const char *fmt \
|NN SV *sv \
|NN const char *locale \
|NN const struct tm *mytm \
|const utf8ness_t fmt_utf8ness \
|NN utf8ness_t *result_utf8ness \
|const bool called_externally
Sf |bool |strftime_tm |NN const char *fmt \
|NN SV *sv \
|NN const char *locale \
|NN const struct tm *mytm
S |SV * |sv_strftime_common \
|NN SV *fmt \
|NN const char *locale \
|NN const struct tm *mytm
# if defined(HAS_MISSING_LANGINFO_ITEM_) || !defined(HAS_NL_LANGINFO)
S |const char *|emulate_langinfo \
|const PERL_INTMAX_T item \
|NN const char *locale \
|NN SV *sv \
|NULLOK utf8ness_t *utf8ness
# endif
# if defined(USE_LOCALE)
S |const char *|calculate_LC_ALL_string \
|NULLOK const char **category_locales_list \
|const calc_LC_ALL_format format \
|const calc_LC_ALL_return returning \
|const line_t caller_line
S |const char *|external_call_langinfo \
|const nl_item item \
|NN SV *sv \
|NULLOK utf8ness_t *utf8ness
RS |locale_category_index|get_category_index_helper \
|const int category \
|NULLOK bool *success \
|const line_t caller_line
Ri |const char *|mortalized_pv_copy \
|NULLOK const char * const pv
S |const char *|native_querylocale_i \
|const locale_category_index cat_index
S |void |new_LC_ALL |NN const char *lc_all \
|bool force
S |void |output_check_environment_warning \
|NULLOK const char * const language \
|NULLOK const char * const lc_all \
|NULLOK const char * const lang
S |parse_LC_ALL_string_return|parse_LC_ALL_string \
|NN const char *string \
|NN const char **output \
|const parse_LC_ALL_STRING_action \
|bool always_use_full_array \
|const bool panic_on_error \
|const line_t caller_line
So |void |restore_toggled_locale_i \
|const locale_category_index cat_index \
|NULLOK const char *original_locale \
|const line_t caller_line
S |const char *|save_to_buffer \
|NULLOK const char *string \
|NULLOK char **buf \
|NULLOK Size_t *buf_size
Sr |void |setlocale_failure_panic_via_i \
|const locale_category_index cat_index \
|NULLOK const char *current \
|NN const char *failed \
|const line_t proxy_caller_line \
|const line_t immediate_caller_line \
|NN const char *higher_caller_file \
|const line_t higher_caller_line
S |void |set_save_buffer_min_size \
|const Size_t min_len \
|NULLOK char **buf \
|NULLOK Size_t *buf_size
So |const char *|toggle_locale_i \
|const locale_category_index cat_index \
|NN const char *new_locale \
|const line_t caller_line
# if defined(DEBUGGING)
RS |char * |my_setlocale_debug_string_i \
|const locale_category_index cat_index \
|NULLOK const char *locale \
|NULLOK const char *retval \
|const line_t line
# endif
# if defined(HAS_LOCALECONV) && \
( defined(USE_LOCALE_MONETARY) || defined(USE_LOCALE_NUMERIC) )
S |void |populate_hash_from_localeconv \
|NN HV *hv \
|NN const char *locale \
|const U32 which_mask \
|NN const lconv_offset_t *strings[2] \
|NN const lconv_offset_t *integers[2]
# endif
# if defined(HAS_NL_LANGINFO)
S |const char *|langinfo_sv_i \
|const nl_item item \
|locale_category_index cat_index \
|NN const char *locale \
|NN SV *sv \
|NULLOK utf8ness_t *utf8ness
# endif
# if defined(LC_ALL)
S |void |give_perl_locale_control \
|NN const char *lc_all_string \
|const line_t caller_line
# else
S |void |give_perl_locale_control \
|NN const char **curlocales \
|const line_t caller_line
# endif
# if defined(USE_LOCALE_COLLATE)
S |void |new_collate |NN const char *newcoll \
|bool force
# if defined(DEBUGGING)
S |void |print_collxfrm_input_and_return \
|NN const char *s \
|NN const char *e \
|NULLOK const char *xbuf \
|const STRLEN xlen \
|const bool is_utf8
# endif
# endif
# if defined(USE_LOCALE_CTYPE)
ST |bool |is_codeset_name_UTF8 \
|NN const char *name
S |void |new_ctype |NN const char *newctype \
|bool force
# endif
# if defined(USE_LOCALE_NUMERIC)
S |void |new_numeric |NN const char *newnum \
|bool force
# endif
# if defined(USE_PERL_SWITCH_LOCALE_CONTEXT) || defined(DEBUGGING)
S |const char *|get_LC_ALL_display
# endif
# if defined(USE_POSIX_2008_LOCALE)
S |bool |bool_setlocale_2008_i \
|const locale_category_index index \
|NN const char *new_locale \
|const line_t caller_line
S |const char *|querylocale_2008_i \
|const locale_category_index index \
|const line_t line
S |locale_t|use_curlocale_scratch
# if !defined(USE_QUERYLOCALE)
S |void |update_PL_curlocales_i \
|const locale_category_index index \
|NN const char *new_locale \
|const line_t caller_line
# endif
# elif defined(USE_LOCALE_THREADS) && !defined(USE_THREAD_SAFE_LOCALE) && \
!defined(USE_THREAD_SAFE_LOCALE_EMULATION)
S |bool |less_dicey_bool_setlocale_r \
|const int cat \
|NN const char *locale
S |const char *|less_dicey_setlocale_r \
|const int category \
|NULLOK const char *locale
# endif
# if defined(WIN32) || defined(WIN32_USE_FAKE_OLD_MINGW_LOCALES)
ST |wchar_t *|Win_byte_string_to_wstring \
|const UINT code_page \
|NULLOK const char *byte_string
S |const char *|win32_setlocale \
|int category \
|NULLOK const char *locale
ST |char * |Win_wstring_to_byte_string \
|const UINT code_page \
|NULLOK const wchar_t *wstring
S |const char *|wrap_wsetlocale \
|const int category \
|NULLOK const char *locale
# endif
# if defined(WIN32) || defined(WIN32_USE_FAKE_OLD_MINGW_LOCALES) || \
( defined(USE_POSIX_2008_LOCALE) && !defined(USE_QUERYLOCALE) )
S |const char *|find_locale_from_environment \
|const locale_category_index index
# endif
# endif /* defined(USE_LOCALE) */
# if defined(USE_LOCALE) || defined(DEBUGGING)
S |const char *|get_displayable_string \
|NN const char * const s \
|NN const char * const e \
|const bool is_utf8
# endif
#endif /* defined(PERL_IN_LOCALE_C) */
#if defined(PERL_IN_MALLOC_C)
ST |int |adjust_size_and_find_bucket \
|NN size_t *nbytes_p
#endif
#if defined(PERL_IN_MATHOMS_C) || defined(PERL_IN_OP_C) || \
defined(PERL_IN_PERLY_C) || defined(PERL_IN_TOKE_C)
Mbp |OP * |ref |NULLOK OP *o \
|I32 type
#endif
#if defined(PERL_IN_MG_C)
S |void |fixup_errno_string \
|NN SV *sv
S |SV * |magic_methcall1|NN SV *sv \
|NN const MAGIC *mg \
|NN SV *meth \
|U32 flags \
|int n \
|NULLOK SV *val
S |int |magic_methpack |NN SV *sv \
|NN const MAGIC *mg \
|NN SV *meth
S |void |restore_magic |NULLOK const void *p
S |void |save_magic_flags \
|SSize_t mgs_ix \
|NN SV *sv \
|U32 flags
S |void |unwind_handler_stack \
|NULLOK const void *p
#endif
#if defined(PERL_IN_MG_C) || defined(PERL_IN_PP_C)
Tp |bool |translate_substr_offsets \
|STRLEN curlen \
|IV pos1_iv \
|bool pos1_is_uv \
|IV len_iv \
|bool len_is_uv \
|NN STRLEN *posp \
|NN STRLEN *lenp
#endif
#if defined(PERL_IN_MRO_C)
S |void |mro_clean_isarev \
|NN HV * const isa \
|NN const char * const name \
|const STRLEN len \
|NULLOK HV * const exceptions \
|U32 hash \
|U32 flags
S |void |mro_gather_and_rename \
|NN HV * const stashes \
|NN HV * const seen_stashes \
|NULLOK HV *stash \
|NULLOK HV *oldstash \
|NN SV *namesv
Sd |AV * |mro_get_linear_isa_dfs \
|NN HV *stash \
|U32 level
#endif
#if defined(PERL_IN_NUMERIC_C)
S |void |output_non_portable \
|const U8 shift
#endif
#if defined(PERL_IN_OP_C)
S |void |apply_attrs |NN HV *stash \
|NN SV *target \
|NULLOK OP *attrs
S |void |apply_attrs_my |NN HV *stash \
|NN OP *target \
|NULLOK OP *attrs \
|NN OP **imopsp
RS |I32 |assignment_type|NULLOK const OP *o
S |void |bad_type_gv |I32 n \
|NN GV *gv \
|NN const OP *kid \
|NN const char *t
S |void |bad_type_pv |I32 n \
|NN const char *t \
|NN const OP *o \
|NN const OP *kid
S |void |clear_special_blocks \
|NN const char * const fullname \
|NN GV * const gv \
|NN CV * const cv
S |void |cop_free |NN COP *cop
S |OP * |dup_attrlist |NN OP *o
S |void |find_and_forget_pmops \
|NN OP *o
: FIXME
S |OP * |fold_constants |NN OP * const o
S |OP * |force_list |NULLOK OP *arg \
|bool nullit
S |void |forget_pmop |NN PMOP * const o
S |void |gen_constant_list \
|NULLOK OP *o
S |void |inplace_aassign|NN OP *o
RST |bool |is_handle_constructor \
|NN const OP *o \
|I32 numargs
Ti |bool |is_standard_filehandle_name \
|NN const char *fhname
S |OP * |listkids |NULLOK OP *o
S |bool |looks_like_bool|NN const OP *o
S |OP * |modkids |NULLOK OP *o \
|I32 type
S |void |move_proto_attr|NN OP **proto \
|NN OP **attrs \
|NN const GV *name \
|bool curstash
S |OP * |my_kid |NULLOK OP *o \
|NULLOK OP *attrs \
|NN OP **imopsp
S |OP * |newGIVWHENOP |NULLOK OP *cond \
|NN OP *block \
|I32 enter_opcode \
|I32 leave_opcode \
|PADOFFSET entertarg
RS |OP * |new_logop |I32 type \
|I32 flags \
|NN OP **firstp \
|NN OP **otherp
i |OP * |newMETHOP_internal \
|I32 type \
|I32 flags \
|NULLOK OP *dynamic_meth \
|NULLOK SV * const_meth
RS |OP * |no_fh_allowed |NN OP *o
i |OP * |op_integerize |NN OP *o
Ti |U16 |opslab_slot_offset \
|NN const OPSLAB *slab \
|NN const OPSLOT *slot
i |OP * |op_std_init |NN OP *o
S |OP * |pmtrans |NN OP *o \
|NN OP *expr \
|NN OP *repl
S |bool |process_special_blocks \
|I32 floor \
|NN const char * const fullname \
|NN GV * const gv \
|NN CV * const cv
S |OP * |ref_array_or_hash \
|NULLOK OP *cond
S |OP * |refkids |NULLOK OP *o \
|I32 type
S |OP * |scalarboolean |NN OP *o
S |OP * |scalarkids |NULLOK OP *o
RST |bool |scalar_mod_type|NULLOK const OP *o \
|I32 type
RS |OP * |search_const |NN OP *o
S |void |simplify_sort |NN OP *o
Ti |U16 |size_to_psize |size_t size
RS |OP * |too_few_arguments_pv \
|NN OP *o \
|NN const char *name \
|U32 flags
S |OP * |too_many_arguments_pv \
|NN OP *o \
|NN const char *name \
|U32 flags
S |OP * |voidnonfinal |NULLOK OP *o
#endif /* defined(PERL_IN_OP_C) */
#if defined(PERL_IN_OP_C) || defined(PERL_IN_PAD_C)
Ti |bool |PadnameIN_SCOPE|NN const PADNAME * const pn \
|const U32 seq
#endif
#if defined(PERL_IN_OP_C) || defined(PERL_IN_PEEP_C)
p |void |check_hash_fields_and_hekify \
|NULLOK UNOP *rop \
|NULLOK SVOP *key_op \
|int real
p |void |no_bareword_allowed \
|NN OP *o
Tp |void |op_prune_chain_head \
|NN OP **op_p
p |SV * |op_varname |NN const OP *o
p |void |warn_elem_scalar_context \
|NN const OP *o \
|NN SV *name \
|bool is_hash \
|bool is_slice
#endif
#if defined(PERL_IN_OP_C) || defined(PERL_IN_REGCOMP_ANY)
ERTi |STRLEN *|get_invlist_iter_addr \
|NN SV *invlist
ETi |void |invlist_iterfinish \
|NN SV *invlist
ETi |void |invlist_iterinit \
|NN SV *invlist
ERTi |bool |invlist_iternext \
|NN SV *invlist \
|NN UV *start \
|NN UV *end
#endif
#if defined(PERL_IN_OP_C) || defined(PERL_IN_SV_C)
p |void |report_redefined_cv \
|NN const SV *name \
|NN const CV *old_cv \
|NULLOK SV * const *new_const_svp
Rp |SV * |varname |NULLOK const GV * const gv \
|const char gvtype \
|PADOFFSET targ \
|NULLOK const SV * const keyname \
|SSize_t aindex \
|int subscript_type
#endif
#if defined(PERL_IN_PAD_C)
Sd |PADOFFSET|pad_alloc_name \
|NN PADNAME *name \
|U32 flags \
|NULLOK NOCHECK HV *typestash \
|NULLOK HV *ourstash
Sd |void |pad_check_dup |NN PADNAME *name \
|U32 flags \
|NULLOK const HV *ourstash
Sd |PADOFFSET|pad_findlex |NN const char *namepv \
|STRLEN namelen \
|U32 flags \
|NN const CV *cv \
|U32 seq \
|int warn \
|NULLOK SV **out_capture \
|NN PADNAME **out_name \
|NN int *out_flags
Sd |void |pad_reset
# if defined(DEBUGGING)
Sd |void |cv_dump |NN const CV *cv \
|NN const char *title
# endif
#endif
#if defined(PERL_IN_PEEP_C)
S |void |finalize_op |NN OP *o
S |void |optimize_op |NN OP *o
Sd |OP * |traverse_op_tree \
|NN OP *top \
|NN OP *o
#endif
#if defined(PERL_IN_PERL_C)
S |void |find_beginning |NN SV *linestr_sv \
|NN PerlIO *rsfp
S |void |forbid_setid |const char flag \
|const bool suidscript
S |void |incpush |NN const char * const dir \
|STRLEN len \
|U32 flags
S |void |incpush_use_sep|NN const char *p \
|STRLEN len \
|U32 flags
S |void |init_ids
S |void |init_interp
S |void |init_main_stash
S |void |init_perllib
S |void |init_postdump_symbols \
|int argc \
|NN char **argv \
|NULLOK char **env
S |void |init_predump_symbols
S |SV * |mayberelocate |NN const char * const dir \
|STRLEN len \
|U32 flags
Sr |void |minus_v
Sr |void |my_exit_jump
S |void |nuke_stacks
S |PerlIO *|open_script |NN const char *scriptname \
|bool dosearch \
|NN bool *suidscript
S |void * |parse_body |NULLOK char **env \
|XSINIT_t xsinit
Sr |void |run_body |I32 oldscope
Sr |void |usage
# if !defined(PERL_IS_MINIPERL)
S |SV * |incpush_if_exists \
|NN AV * const av \
|NN SV *dir \
|NN SV * const stem
# endif
# if !defined(SETUID_SCRIPTS_ARE_SECURE_NOW)
So |void |validate_suid |NN PerlIO *rsfp
# endif
#endif /* defined(PERL_IN_PERL_C) */
#if defined(PERL_IN_PERL_C) || defined(PERL_IN_REGCOMP_ANY) || \
defined(PERL_IN_UTF8_C)
EXp |bool |_invlistEQ |NN SV * const a \
|NN SV * const b \
|const bool complement_b
ERXp |SV * |_new_invlist_C_array \
|NN const UV * const list
#endif
#if defined(PERL_IN_PP_C)
S |size_t |do_chomp |NN SV *retval \
|NN SV *sv \
|bool chomping
S |OP * |do_delete_local
RS |SV * |refto |NN SV *sv
#endif
#if defined(PERL_IN_PP_C) || defined(PERL_IN_PP_HOT_C)
RTi |bool |lossless_NV_to_IV \
|const NV nv \
|NN IV *ivp
: Used in pp_hot.c
Reop |GV * |softref2xv |NN SV * const sv \
|NN const char * const what \
|const svtype type
#endif
#if defined(PERL_IN_PP_C) || defined(PERL_IN_REGCOMP_ANY) || \
defined(PERL_IN_TOKE_C) || defined(PERL_IN_UNIVERSAL_C)
ETi |const char *|get_regex_charset_name \
|const U32 flags \
|NN STRLEN * const lenp
#endif
#if defined(PERL_IN_PP_C) || defined(PERL_IN_UTF8_C)
p |UV |_to_upper_title_latin1 \
|const U8 c \
|NN U8 *p \
|NN STRLEN *lenp \
|const char S_or_s
#endif
#if defined(PERL_IN_PP_CTL_C)
RS |PerlIO *|check_type_and_open \
|NN SV *name
S |void |destroy_matcher|NN PMOP *matcher
RSd |OP * |docatch |Perl_ppaddr_t firstpp
S |bool |doeval_compile |U8 gimme \
|NULLOK CV *outside \
|U32 seq \
|NULLOK HV *hh
RS |OP * |dofindlabel |NN OP *o \
|NN const char *label \
|STRLEN len \
|U32 flags \
|NN OP **opstack \
|NN OP **oplimit
S |MAGIC *|doparseform |NN SV *sv
RS |I32 |dopoptoeval |I32 startingblock
RS |I32 |dopoptogivenfor|I32 startingblock
RS |I32 |dopoptolabel |NN const char *label \
|STRLEN len \
|U32 flags
RS |I32 |dopoptoloop |I32 startingblock
RS |I32 |dopoptosub_at |NN const PERL_CONTEXT *cxstk \
|I32 startingblock
RS |I32 |dopoptowhen |I32 startingblock
S |OP * |do_smartmatch |NULLOK HV *seen_this \
|NULLOK HV *seen_other \
|const bool copied
RS |PMOP * |make_matcher |NN REGEXP *re
RS |bool |matcher_matches_sv \
|NN PMOP *matcher \
|NN SV *sv
RST |bool |num_overflow |NV value \
|I32 fldsize \
|I32 frcsize
RTi |bool |path_is_searchable \
|NN const char *name
RS |I32 |run_user_filter|int idx \
|NN SV *buf_sv \
|int maxlen
S |void |rxres_free |NN void **rsp
S |void |rxres_restore |NN void **rsp \
|NN REGEXP *rx
S |void |save_lines |NULLOK AV *array \
|NN SV *sv
# if !defined(PERL_DISABLE_PMC)
RS |PerlIO *|doopen_pm |NN SV *name
# endif
#endif /* defined(PERL_IN_PP_CTL_C) */
#if defined(PERL_IN_PP_CTL_C) || defined(PERL_IN_UTIL_C)
p |bool |invoke_exception_hook \
|NULLOK SV *ex \
|bool warn
#endif
#if defined(PERL_IN_PP_HOT_C)
S |void |do_oddball |NN SV **oddkey \
|NN SV **firstkey
i |HV * |opmethod_stash |NN SV *meth
IR |bool |should_we_output_Debug_r \
|NN regexp *prog
#endif
#if defined(PERL_IN_PP_PACK_C)
S |int |div128 |NN SV *pnum \
|NN bool *done
ST |char |first_symbol |NN const char *pat \
|NN const char *patend
RS |const char *|get_num |NN const char *patptr \
|NN SSize_t *lenptr
S |const char *|group_end |NN const char *patptr \
|NN const char *patend \
|char ender
RS |SV * |is_an_int |NN const char *s \
|STRLEN l
S |SSize_t|measure_struct |NN struct tempsym *symptr
S |SV * |mul128 |NN SV *sv \
|U8 m
RST |char * |my_bytes_to_utf8 \
|NN const U8 *start \
|STRLEN len \
|NN char *dest \
|const bool needs_swap
ST |bool |need_utf8 |NN const char *pat \
|NN const char *patend
S |bool |next_symbol |NN struct tempsym *symptr
S |SV ** |pack_rec |NN SV *cat \
|NN struct tempsym *symptr \
|NN SV **beglist \
|NN SV **endlist
RS |char * |sv_exp_grow |NN SV *sv \
|STRLEN needed
S |SSize_t|unpack_rec |NN struct tempsym *symptr \
|NN const char *s \
|NN const char *strbeg \
|NN const char *strend \
|NULLOK const char **new_s
#endif /* defined(PERL_IN_PP_PACK_C) */
#if defined(PERL_IN_PP_SORT_C)
i |I32 |amagic_cmp |NN SV * const str1 \
|NN SV * const str2
i |I32 |amagic_cmp_desc|NN SV * const str1 \
|NN SV * const str2
i |I32 |amagic_i_ncmp |NN SV * const a \
|NN SV * const b
i |I32 |amagic_i_ncmp_desc \
|NN SV * const a \
|NN SV * const b
i |I32 |amagic_ncmp |NN SV * const a \
|NN SV * const b
i |I32 |amagic_ncmp_desc \
|NN SV * const a \
|NN SV * const b
i |I32 |cmp_desc |NN SV * const str1 \
|NN SV * const str2
S |I32 |sortcv |NN SV * const a \
|NN SV * const b
S |I32 |sortcv_stacked |NN SV * const a \
|NN SV * const b
S |I32 |sortcv_xsub |NN SV * const a \
|NN SV * const b
I |void |sortsv_flags_impl \
|NULLOK SV **array \
|size_t num_elts \
|NN SVCOMPARE_t cmp \
|U32 flags
i |I32 |sv_i_ncmp |NN SV * const a \
|NN SV * const b
i |I32 |sv_i_ncmp_desc |NN SV * const a \
|NN SV * const b
i |I32 |sv_ncmp |NN SV * const a \
|NN SV * const b
i |I32 |sv_ncmp_desc |NN SV * const a \
|NN SV * const b
# if defined(USE_LOCALE_COLLATE)
i |I32 |amagic_cmp_locale \
|NN SV * const str1 \
|NN SV * const str2
i |I32 |amagic_cmp_locale_desc \
|NN SV * const str1 \
|NN SV * const str2
i |I32 |cmp_locale_desc|NN SV * const str1 \
|NN SV * const str2
# endif
#endif /* defined(PERL_IN_PP_SORT_C) */
#if defined(PERL_IN_PP_SYS_C)
S |OP * |doform |NN CV *cv \
|NN GV *gv \
|NULLOK OP *retop
S |SV * |space_join_names_mortal \
|NULLOK char * const *array
S |void |warn_not_dirhandle \
|NN GV *gv
# if !defined(HAS_MKDIR) || !defined(HAS_RMDIR)
RS |int |dooneliner |NN const char *cmd \
|NN const char *filename
# endif
#endif
#if defined(PERL_IN_REGCOMP_ANY)
Ep |void |add_above_Latin1_folds \
|NN RExC_state_t *pRExC_state \
|const U8 cp \
|NN SV **invlist
Ep |regnode *|construct_ahocorasick_from_trie \
|NN RExC_state_t *pRExC_state \
|NN regnode *source \
|U32 depth
ERp |SV * |get_ANYOFHbbm_contents \
|NN const regnode *n
ERp |SV * |get_ANYOFM_contents \
|NN const regnode *n
ERi |SV * |invlist_contents \
|NN SV * const invlist \
|const bool traditional_style
ERTix |UV |invlist_highest_range_start \
|NN SV * const invlist
ERTi |bool |invlist_is_iterating \
|NN const SV * const invlist
ERTix |UV |invlist_lowest |NN SV * const invlist
Ep |U32 |join_exact |NN RExC_state_t *pRExC_state \
|NN regnode *scan \
|NN UV *min_subtract \
|NN bool *unfolded_multi_char \
|U32 flags \
|NULLOK regnode *val \
|U32 depth
Ep |I32 |make_trie |NN RExC_state_t *pRExC_state \
|NN regnode *startbranch \
|NN regnode *first \
|NN regnode *last \
|NN regnode *tail \
|U32 word_count \
|U32 flags \
|U32 depth
Ep |void |populate_anyof_bitmap_from_invlist \
|NN regnode *node \
|NN SV **invlist_ptr
ERTp |U32 |reg_add_data |NN RExC_state_t * const pRExC_state \
|NN const char * const s \
|const U32 n
Ep |void |scan_commit |NN const RExC_state_t *pRExC_state \
|NN struct scan_data_t *data \
|NN SSize_t *minlenp \
|int is_inf
Ep |void |set_ANYOF_arg |NN RExC_state_t * const pRExC_state \
|NN regnode * const node \
|NULLOK SV * const cp_list \
|NULLOK SV * const runtime_defns \
|NULLOK SV * const only_utf8_locale_list
Ep |void |ssc_init |NN const RExC_state_t *pRExC_state \
|NN regnode_ssc *ssc
Ep |SSize_t|study_chunk |NN RExC_state_t *pRExC_state \
|NN regnode **scanp \
|NN SSize_t *minlenp \
|NN SSize_t *deltap \
|NN regnode *last \
|NULLOK struct scan_data_t *data \
|I32 stopparen \
|U32 recursed_depth \
|NULLOK regnode_ssc *and_withp \
|U32 flags \
|U32 depth \
|bool was_mutate_ok
# if defined(PERL_IN_REGCOMP_TRIE_C) && defined(DEBUGGING)
ES |void |dump_trie |NN const struct _reg_trie_data *trie \
|NULLOK HV *widecharmap \
|NN AV *revcharmap \
|U32 depth
ES |void |dump_trie_interim_list \
|NN const struct _reg_trie_data *trie \
|NULLOK HV *widecharmap \
|NN AV *revcharmap \
|U32 next_alloc \
|U32 depth
ES |void |dump_trie_interim_table \
|NN const struct _reg_trie_data *trie \
|NULLOK HV *widecharmap \
|NN AV *revcharmap \
|U32 next_alloc \
|U32 depth
# endif
#endif /* defined(PERL_IN_REGCOMP_ANY) */
#if defined(PERL_IN_REGCOMP_ANY) || defined(PERL_IN_SV_C)
EXp |SV * |invlist_clone |NN SV * const invlist \
|NULLOK SV *newlist
#endif
#if defined(PERL_IN_REGCOMP_C)
ES |AV * |add_multi_match|NULLOK AV *multi_char_matches \
|NN SV *multi_string \
|const STRLEN cp_count
ES |void |change_engine_size \
|NN RExC_state_t *pRExC_state \
|const ptrdiff_t size
ERS |REGEXP *|compile_wildcard \
|NN const char *subpattern \
|const STRLEN len \
|const bool ignore_case
EST |U8 |compute_EXACTish \
|NN RExC_state_t *pRExC_state
ERST |int |edit_distance |NN const UV *src \
|NN const UV *tgt \
|const STRLEN x \
|const STRLEN y \
|const SSize_t maxDistance
ES |I32 |execute_wildcard \
|NN REGEXP * const prog \
|NN char *stringarg \
|NN char *strend \
|NN char *strbeg \
|SSize_t minend \
|NN SV *screamer \
|U32 nosave
ETi |Size_t |find_first_differing_byte_pos \
|NN const U8 *s1 \
|NN const U8 *s2 \
|const Size_t max
ES |U32 |get_quantifier_value \
|NN RExC_state_t *pRExC_state \
|NN const char *start \
|NN const char *end
ES |bool |grok_bslash_N |NN RExC_state_t *pRExC_state \
|NULLOK regnode_offset *nodep \
|NULLOK UV *code_point_p \
|NULLOK int *cp_count \
|NN I32 *flagp \
|const bool strict \
|const U32 depth
ES |regnode_offset|handle_named_backref \
|NN RExC_state_t *pRExC_state \
|NN I32 *flagp \
|NN char *backref_parse_start \
|char ch
ES |bool |handle_names_wildcard \
|NN const char *wname \
|const STRLEN wname_len \
|NN SV **prop_definition \
|NN AV **strings
ES |int |handle_possible_posix \
|NN RExC_state_t *pRExC_state \
|NN const char * const s \
|NULLOK char **updated_parse_ptr \
|NULLOK AV **posix_warnings \
|const bool check_only
ES |regnode_offset|handle_regex_sets \
|NN RExC_state_t *pRExC_state \
|NULLOK SV **return_invlist \
|NN I32 *flagp \
|U32 depth
ES |SV * |handle_user_defined_property \
|NN const char *name \
|const STRLEN name_len \
|const bool is_utf8 \
|const bool to_fold \
|const bool runtime \
|const bool deferrable \
|NN SV *contents \
|NN bool *user_defined_ptr \
|NN SV *msg \
|const STRLEN level
EST |bool |is_ssc_worth_it|NN const RExC_state_t *pRExC_state \
|NN const regnode_ssc *ssc
ES |void |nextchar |NN RExC_state_t *pRExC_state
ES |U8 |optimize_regclass \
|NN RExC_state_t *pRExC_state \
|NULLOK SV *cp_list \
|NULLOK SV *only_utf8_locale_list \
|NULLOK SV *upper_latin1_only_utf8_matches \
|const U32 has_runtime_dependency \
|const U32 posixl \
|NN U8 *anyof_flags \
|NN bool *invert \
|NN regnode_offset *ret \
|NN I32 *flagp
ES |void |output_posix_warnings \
|NN RExC_state_t *pRExC_state \
|NN AV *posix_warnings
ES |void |parse_lparen_question_flags \
|NN RExC_state_t *pRExC_state
ES |SV * |parse_uniprop_string \
|NN const char * const name \
|Size_t name_len \
|const bool is_utf8 \
|const bool to_fold \
|const bool runtime \
|const bool deferrable \
|NULLOK AV **strings \
|NN bool *user_defined_ptr \
|NN SV *msg \
|const STRLEN level
Sfrv |void |re_croak |bool utf8 \
|NN const char *pat \
|...
ES |regnode_offset|reg |NN RExC_state_t *pRExC_state \
|I32 paren \
|NN I32 *flagp \
|U32 depth
ES |regnode_offset|regatom |NN RExC_state_t *pRExC_state \
|NN I32 *flagp \
|U32 depth
ES |regnode_offset|regbranch \
|NN RExC_state_t *pRExC_state \
|NN I32 *flagp \
|I32 first \
|U32 depth
ES |regnode_offset|regclass|NN RExC_state_t *pRExC_state \
|NN I32 *flagp \
|U32 depth \
|const bool stop_at_1 \
|bool allow_multi_fold \
|const bool silence_non_portable \
|const bool strict \
|bool optimizable \
|NULLOK SV **ret_invlist
ERST |unsigned int|regex_set_precedence \
|const U8 my_operator
ES |void |reginsert |NN RExC_state_t *pRExC_state \
|const U8 op \
|const regnode_offset operand \
|const U32 depth
ES |regnode_offset|reg_la_NOTHING \
|NN RExC_state_t *pRExC_state \
|U32 flags \
|NN const char *type
ES |regnode_offset|reg_la_OPFAIL \
|NN RExC_state_t *pRExC_state \
|U32 flags \
|NN const char *type
ES |regnode_offset|reg1node|NN RExC_state_t *pRExC_state \
|U8 op \
|U32 arg
ES |regnode_offset|reg2node|NN RExC_state_t *pRExC_state \
|const U8 op \
|const U32 arg1 \
|const I32 arg2
ES |regnode_offset|reg_node|NN RExC_state_t *pRExC_state \
|U8 op
ES |regnode_offset|regnode_guts \
|NN RExC_state_t *pRExC_state \
|const STRLEN extra_len
ES |regnode_offset|regpiece|NN RExC_state_t *pRExC_state \
|NN I32 *flagp \
|U32 depth
ES |regnode_offset|regpnode|NN RExC_state_t *pRExC_state \
|U8 op \
|NN SV *arg
ES |SV * |reg_scan_name |NN RExC_state_t *pRExC_state \
|U32 flags
ETi |char * |reg_skipcomment|NN RExC_state_t *pRExC_state \
|NN char *p
ERS |bool |regtail |NN RExC_state_t *pRExC_state \
|NN const regnode_offset p \
|NN const regnode_offset val \
|const U32 depth
ES |void |set_regex_pv |NN RExC_state_t *pRExC_state \
|NN REGEXP *Rx
ES |void |skip_to_be_ignored_text \
|NN RExC_state_t *pRExC_state \
|NN char **p \
|const bool force_to_xmod
ES |void |ssc_finalize |NN RExC_state_t *pRExC_state \
|NN regnode_ssc *ssc
# if defined(DEBUGGING)
ES |regnode_offset|regnode_guts_debug \
|NN RExC_state_t *pRExC_state \
|const U8 op \
|const STRLEN extra_len
ERS |bool |regtail_study |NN RExC_state_t *pRExC_state \
|NN regnode_offset p \
|NN const regnode_offset val \
|U32 depth
# if defined(ENABLE_REGEX_SETS_DEBUGGING)
ES |void |dump_regex_sets_structures \
|NN RExC_state_t *pRExC_state \
|NN AV *stack \
|const IV fence \
|NN AV *fence_stack
# endif
# endif
#endif /* defined(PERL_IN_REGCOMP_C) */
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGCOMP_INVLIST_C)
Ep |void |populate_bitmap_from_invlist \
|NN SV *invlist \
|const UV offset \
|NN const U8 *bitmap \
|const Size_t len
Ep |void |populate_invlist_from_bitmap \
|NN const U8 *bitmap \
|const Size_t bitmap_len \
|NN SV **invlist \
|const UV offset
#endif
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || \
defined(PERL_IN_TOKE_C)
ERp |bool |is_grapheme |NN const U8 *strbeg \
|NN const U8 *s \
|NN const U8 *strend \
|const UV cp
#endif
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_REGEXEC_C) || \
defined(PERL_IN_UTF8_C)
ETXp |UV |_to_fold_latin1|const U8 c \
|NN U8 *p \
|NN STRLEN *lenp \
|const unsigned int flags
#endif
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_TOKE_C)
ERTXp |bool |regcurly |NN const char *s \
|NN const char *e \
|NULLOK const char *result[5]
#endif
#if defined(PERL_IN_REGCOMP_DEBUG_C) && defined(DEBUGGING)
ES |U8 |put_charclass_bitmap_innards \
|NN SV *sv \
|NULLOK char *bitmap \
|NULLOK SV *nonbitmap_invlist \
|NULLOK SV *only_utf8_locale_invlist \
|NULLOK const regnode * const node \
|const U8 flags \
|const bool force_as_is_display
ES |SV * |put_charclass_bitmap_innards_common \
|NN SV *invlist \
|NULLOK SV *posixes \
|NULLOK SV *only_utf8 \
|NULLOK SV *not_utf8 \
|NULLOK SV *only_utf8_locale \
|const bool invert
ES |void |put_charclass_bitmap_innards_invlist \
|NN SV *sv \
|NN SV *invlist
ES |void |put_code_point |NN SV *sv \
|UV c
ES |void |put_range |NN SV *sv \
|UV start \
|const UV end \
|const bool allow_literals
ES |void |regdump_extflags \
|NULLOK const char *lead \
|const U32 flags
ES |void |regdump_intflags \
|NULLOK const char *lead \
|const U32 flags
#endif
#if defined(PERL_IN_REGCOMP_INVLIST_C) && !defined(PERL_EXT_RE_BUILD)
ES |void |_append_range_to_invlist \
|NN SV * const invlist \
|const UV start \
|const UV end
ERTi |IV * |get_invlist_previous_index_addr \
|NN SV *invlist
S |void |initialize_invlist_guts \
|NN SV *invlist \
|const Size_t initial_size
ERTi |UV * |_invlist_array_init \
|NN SV * const invlist \
|const bool will_have_0
Ei |void |invlist_clear |NN SV *invlist
ERTi |UV |invlist_max |NN const SV * const invlist
ERTi |IV |invlist_previous_index \
|NN SV * const invlist
ES |void |invlist_replace_list_destroys_src \
|NN SV *dest \
|NN SV *src
ETi |void |invlist_set_previous_index \
|NN SV * const invlist \
|const IV index
ETi |void |invlist_trim |NN SV *invlist
#endif /* defined(PERL_IN_REGCOMP_INVLIST_C) && !defined(PERL_EXT_RE_BUILD) */
#if defined(PERL_IN_REGCOMP_STUDY_C)
ES |SV * |get_ANYOF_cp_list_for_ssc \
|NN const RExC_state_t *pRExC_state \
|NN const regnode_charclass * const node
ERS |SV * |make_exactf_invlist \
|NN RExC_state_t *pRExC_state \
|NN regnode *node
ES |void |rck_elide_nothing \
|NN regnode *node
ES |void |ssc_add_range |NN regnode_ssc *ssc \
|UV const start \
|UV const end
ES |void |ssc_and |NN const RExC_state_t *pRExC_state \
|NN regnode_ssc *ssc \
|NN const regnode_charclass *and_with
ES |void |ssc_anything |NN regnode_ssc *ssc
EST |void |ssc_clear_locale \
|NN regnode_ssc *ssc
ES |void |ssc_cp_and |NN regnode_ssc *ssc \
|UV const cp
ES |void |ssc_intersection \
|NN regnode_ssc *ssc \
|NN SV * const invlist \
|const bool invert_2nd
ERST |int |ssc_is_anything|NN const regnode_ssc *ssc
ERST |int |ssc_is_cp_posixl_init \
|NN const RExC_state_t *pRExC_state \
|NN const regnode_ssc *ssc
ES |void |ssc_or |NN const RExC_state_t *pRExC_state \
|NN regnode_ssc *ssc \
|NN const regnode_charclass *or_with
ES |void |ssc_union |NN regnode_ssc *ssc \
|NN SV * const invlist \
|const bool invert_2nd
ES |void |unwind_scan_frames \
|NN const void *p
#endif /* defined(PERL_IN_REGCOMP_STUDY_C) */
#if defined(PERL_IN_REGEXEC_C)
ERS |LB_enum|advance_one_LB |NN U8 **curpos \
|NN const U8 * const strend \
|const bool utf8_target
ERS |SB_enum|advance_one_SB |NN U8 **curpos \
|NN const U8 * const strend \
|const bool utf8_target
ERS |WB_enum|advance_one_WB_|NN U8 **curpos \
|NN const U8 * const strend \
|const bool utf8_target \
|const bool skip_Extend_Format
ERS |GCB_enum|backup_one_GCB|NN const U8 * const strbeg \
|NN U8 **curpos \
|const bool utf8_target
ERS |LB_enum|backup_one_LB_ |NN const U8 * const strbeg \
|NN U8 **curpos \
|const bool utf8_target \
|bool skip_CM_ZWJ
ERS |SB_enum|backup_one_SB |NN const U8 * const strbeg \
|NN U8 **curpos \
|const bool utf8_target
ERS |WB_enum|backup_one_WB_but_over_Extend_FO \
|NN WB_enum *previous \
|NN const U8 * const strbeg \
|NN U8 **curpos \
|const bool utf8_target
EWi |void |capture_clear |NN regexp *rex \
|U16 from_ix \
|U16 to_ix \
|NN const char *str
ERS |char * |find_byclass |NN regexp *prog \
|NN const regnode *c \
|NN char *s \
|NN const char *strend \
|NULLOK regmatch_info *reginfo
ERST |U8 * |find_next_masked \
|NN U8 *s \
|NN const U8 *send \
|const U8 byte \
|const U8 mask
ERST |U8 * |find_span_end |NN U8 *s \
|NN const U8 *send \
|const U8 span_byte
ERST |U8 * |find_span_end_mask \
|NN U8 *s \
|NN const U8 *send \
|const U8 span_byte \
|const U8 mask
Ei |I32 |foldEQ_latin1_s2_folded \
|NN const char *a \
|NN const char *b \
|I32 len
ERS |bool |isFOO_lc |const U8 classnum \
|const U8 character
ERS |bool |isFOO_utf8_lc |const U8 classnum \
|NN const U8 *character \
|NN const U8 *e
ERS |bool |isGCB |const GCB_enum before \
|const GCB_enum after \
|NN const U8 * const strbeg \
|NN const U8 * const curpos \
|const bool utf8_target
ERS |bool |isLB |LB_enum before \
|LB_enum after \
|NN const U8 * const strbeg \
|NN const U8 * const curpos \
|NN const U8 * const strend \
|const bool utf8_target
ERS |bool |isSB |SB_enum before \
|SB_enum after \
|NN const U8 * const strbeg \
|NN const U8 * const curpos \
|NN const U8 * const strend \
|const bool utf8_target
ERS |bool |isWB |WB_enum previous \
|WB_enum before \
|WB_enum after \
|NN const U8 * const strbeg \
|NN const U8 * const curpos \
|NN const U8 * const strend \
|const bool utf8_target
ERST |I32 |reg_check_named_buff_matched \
|NN const regexp *rex \
|NN const regnode *scan
ESW |void |regcppop |NN regexp *rex \
|NN U32 *maxopenparen_p
ESW |CHECKPOINT|regcppush |NN const regexp *rex \
|I32 parenfloor \
|U32 maxopenparen
ESW |void |regcp_restore |NN regexp *rex \
|I32 ix \
|NN U32 *maxopenparen_p
ERST |U8 * |reghop3 |NN U8 *s \
|SSize_t off \
|NN const U8 *lim
ERST |U8 * |reghopmaybe3 |NN U8 *s \
|SSize_t off \
|NN const U8 * const lim
ERS |bool |reginclass |NULLOK regexp * const prog \
|NN const regnode * const n \
|NN const U8 * const p \
|NN const U8 * const p_end \
|bool const utf8_target
ERS |SSize_t|regmatch |NN regmatch_info *reginfo \
|NN char *startpos \
|NN regnode *prog
ERSW |I32 |regrepeat |NN regexp *prog \
|NN char **startposp \
|NN const regnode *p \
|NN char *loceol \
|NN regmatch_info * const reginfo \
|NZ I32 max
ERS |bool |regtry |NN regmatch_info *reginfo \
|NN char **startposp
ES |bool |to_byte_substr |NN regexp *prog
ES |void |to_utf8_substr |NN regexp *prog
EWi |void |unwind_paren |NN regexp *rex \
|U32 lp \
|U32 lcp
# if defined(DEBUGGING)
ES |void |debug_start_match \
|NN const REGEXP *prog \
|const bool do_utf8 \
|NN const char *start \
|NN const char *end \
|NN const char *blurb
ES |void |dump_exec_pos |NN const char *locinput \
|NN const regnode *scan \
|NN const char *loc_regeol \
|NN const char *loc_bostr \
|NN const char *loc_reg_starttry \
|const bool do_utf8 \
|const U32 depth
EFpv |int |re_exec_indentf|NN const char *fmt \
|U32 depth \
|...
# endif
#endif /* defined(PERL_IN_REGEXEC_C) */
#if defined(PERL_IN_REGEX_ENGINE)
CRip |bool |check_regnode_after \
|NULLOK const regnode *p \
|const STRLEN extra
CRip |regnode *|regnext |NULLOK const regnode *p
CRip |regnode *|regnode_after|NULLOK const regnode *p \
|bool varies
# if defined(DEBUGGING)
Ep |void |debug_peep |NN const char *str \
|NN const RExC_state_t *pRExC_state \
|NULLOK regnode *scan \
|U32 depth \
|U32 flags
Ep |void |debug_show_study_flags \
|U32 flags \
|NN const char *open_str \
|NN const char *close_str
Ep |void |debug_studydata|NN const char *where \
|NULLOK scan_data_t *data \
|U32 depth \
|int is_inf \
|SSize_t min \
|SSize_t stopmin \
|SSize_t delta
Ep |const regnode *|dumpuntil \
|NN const regexp *r \
|NN const regnode *start \
|NN const regnode *node \
|NULLOK const regnode *last \
|NULLOK const regnode *plast \
|NN SV *sv \
|I32 indent \
|U32 depth
Ep |void |regprop |NULLOK const regexp *prog \
|NN SV *sv \
|NN const regnode *o \
|NULLOK const regmatch_info *reginfo \
|NULLOK const RExC_state_t *pRExC_state
EFpv |int |re_indentf |NN const char *fmt \
|U32 depth \
|...
Efpv |int |re_printf |NN const char *fmt \
|...
# endif
# if defined(PERL_EXT_RE_BUILD)
Ep |SV * |get_re_gclass_aux_data \
|NULLOK const regexp *prog \
|NN const struct regnode *node \
|bool doinit \
|NULLOK SV **listsvp \
|NULLOK SV **lonly_utf8_locale \
|NULLOK SV **output_invlist
# else
Ep |SV * |get_regclass_aux_data \
|NULLOK const regexp *prog \
|NN const struct regnode *node \
|bool doinit \
|NULLOK SV **listsvp \
|NULLOK SV **lonly_utf8_locale \
|NULLOK SV **output_invlist
# endif
#endif /* defined(PERL_IN_REGEX_ENGINE) */
#if defined(PERL_IN_SCOPE_C)
S |void |save_pushptri32ptr \
|NULLOK void * const ptr1 \
|const I32 i \
|NULLOK void * const ptr2 \
|const int type
Sd |SV * |save_scalar_at |NN SV **sptr \
|const U32 flags
#endif
#if defined(PERL_IN_SV_C)
S |void |anonymise_cv_maybe \
|NN GV *gv \
|NN CV *cv
S |void |assert_uft8_cache_coherent \
|NN const char * const func \
|STRLEN from_cache \
|STRLEN real \
|NN SV * const sv
S |void |croak_sv_setsv_flags \
|NN SV * const dsv \
|NN SV * const ssv
S |bool |curse |NN SV * const sv \
|const bool check_refcnt
RS |STRLEN |expect_number |NN const char ** const pattern
ST |char * |F0convert |NV nv \
|NN char * const endbuf \
|NN STRLEN * const len
S |SSize_t|find_array_subscript \
|NULLOK const AV * const av \
|NN const SV * const val
S |SV * |find_hash_subscript \
|NULLOK const HV * const hv \
|NN const SV * const val
Sdx |SV * |find_uninit_var|NULLOK const OP * const obase \
|NULLOK const SV * const uninit_sv \
|bool match \
|NN const char **desc_p
S |void |glob_assign_glob \
|NN SV * const dsv \
|NN SV * const ssv \
|const int dtype
S |bool |glob_2number |NN GV * const gv
Cp |SV * |more_sv
S |void |not_a_number |NN SV * const sv
S |void |not_incrementable \
|NN SV * const sv
RST |PTR_TBL_ENT_t *|ptr_table_find \
|NN PTR_TBL_t * const tbl \
|NULLOK const void * const sv
Sd |void |sv_add_arena |NN char * const ptr \
|const U32 size \
|const U32 flags
S |const char *|sv_display|NN SV * const sv \
|NN char *tmpbuf \
|STRLEN tmpbuf_size
S |bool |sv_2iuv_common |NN SV * const sv
S |STRLEN |sv_pos_b2u_midway \
|NN const U8 * const s \
|NN const U8 * const target \
|NN const U8 *end \
|STRLEN endu
S |STRLEN |sv_pos_u2b_cached \
|NN SV * const sv \
|NN MAGIC ** const mgp \
|NN const U8 * const start \
|NN const U8 * const send \
|STRLEN uoffset \
|STRLEN uoffset0 \
|STRLEN boffset0
ST |STRLEN |sv_pos_u2b_forwards \
|NN const U8 * const start \
|NN const U8 * const send \
|NN STRLEN * const uoffset \
|NN bool * const at_end \
|NN bool *canonical_position
ST |STRLEN |sv_pos_u2b_midway \
|NN const U8 * const start \
|NN const U8 *send \
|STRLEN uoffset \
|const STRLEN uend
i |void |sv_unglob |NN SV * const sv \
|U32 flags
S |void |utf8_mg_len_cache_update \
|NN SV * const sv \
|NN MAGIC ** const mgp \
|const STRLEN ulen
S |void |utf8_mg_pos_cache_update \
|NN SV * const sv \
|NN MAGIC ** const mgp \
|const STRLEN byte \
|const STRLEN utf8 \
|const STRLEN blen
S |SSize_t|visit |NN SVFUNC_t f \
|const U32 flags \
|const U32 mask
# if defined(DEBUGGING)
S |void |del_sv |NN SV *p
p |void |sv_mark_arenas
p |void |sv_sweep_arenas
# endif
# if !defined(NV_PRESERVES_UV)
# if defined(DEBUGGING)
S |int |sv_2iuv_non_preserve \
|NN SV * const sv \
|I32 numtype
# else
S |int |sv_2iuv_non_preserve \
|NN SV * const sv
# endif
# endif
# if defined(PERL_DEBUG_READONLY_COW)
S |void |sv_buf_to_rw |NN SV *sv
# endif
# if defined(USE_ITHREADS)
RS |SV * |sv_dup_common |NN const SV * const ssv \
|NN CLONE_PARAMS * const param
S |void |sv_dup_hvaux |NN const SV * const ssv \
|NN SV *dsv \
|NN CLONE_PARAMS * const param
S |SV ** |sv_dup_inc_multiple \
|NN SV * const *source \
|NN SV **dest \
|SSize_t items \
|NN CLONE_PARAMS * const param
S |void |unreferenced_to_tmp_stack \
|NN AV * const unreferenced
# endif
#endif /* defined(PERL_IN_SV_C) */
#if defined(PERL_IN_TOKE_C)
S |int |ao |int toketype
S |void |checkcomma |NN const char *s \
|NN const char *name \
|NN const char *what
S |void |check_uni
RS |char * |filter_gets |NN SV *sv \
|STRLEN append
RS |HV * |find_in_my_stash \
|NN const char *pkgname \
|STRLEN len
S |void |force_ident |NN const char *s \
|int kind
S |void |force_ident_maybe_lex \
|char pit
S |void |force_next |I32 type
S |char * |force_strict_version \
|NN char *s
S |char * |force_version |NN char *s \
|int guessing
S |char * |force_word |NN char *start \
|int token \
|int check_keyword \
|int allow_pack
RS |SV * |get_and_check_backslash_N_name_wrapper \
|NN const char *s \
|NN const char * const e
S |void |incline |NN const char *s \
|NN const char *end
S |int |intuit_method |NN char *s \
|NULLOK SV *ioname \
|NULLOK NOCHECK CV *cv
S |int |intuit_more |NN char *s \
|NN char *e
S |I32 |lop |enum yytokentype t \
|I32 f \
|U8 x \
|NN char *s
Sr |void |missingterm |NULLOK char *s \
|STRLEN len
So |SV * |new_constant |NULLOK const char *s \
|STRLEN len \
|NN const char *key \
|STRLEN keylen \
|NN SV *sv \
|NULLOK SV *pv \
|NULLOK const char *type \
|STRLEN typelen \
|NULLOK const char **error_msg
S |void |parse_ident |NN char **s \
|NN char **d \
|NN char * const e \
|int allow_package \
|bool is_utf8 \
|bool check_dollar
S |int |pending_ident
RS |char * |scan_const |NN char *start
RS |char * |scan_formline |NN char *s
RS |char * |scan_heredoc |NN char *s
S |char * |scan_ident |NN char *s \
|NN char *dest \
|STRLEN destlen \
|I32 ck_uni
RS |char * |scan_inputsymbol \
|NN char *start
RS |char * |scan_pat |NN char *start \
|I32 type
RS |char * |scan_subst |NN char *start
RS |char * |scan_trans |NN char *start
RS |I32 |sublex_done
RS |I32 |sublex_push
RS |I32 |sublex_start
RS |char * |swallow_bom |NN U8 *s
RS |char * |tokenize_use |int is_use \
|NN char *s
S |SV * |tokeq |NN SV *sv
S |void |update_debugger_info \
|NULLOK SV *orig_sv \
|NULLOK const char * const buf \
|STRLEN len
S |void |warn_expect_operator \
|NN const char * const what \
|NULLOK char *s \
|I32 pop_oldbufptr
S |void |yyerror_non_ascii_message \
|NN const U8 * const s
S |int |yywarn |NN const char * const s \
|U32 flags
# if defined(DEBUGGING)
Sf |void |printbuf |NN const char * const fmt \
|NN const char * const s
S |int |tokereport |I32 rv \
|NN const YYSTYPE *lvalp
# endif
# if !defined(PERL_NO_UTF16_FILTER)
S |U8 * |add_utf16_textfilter \
|NN U8 * const s \
|bool reversed
S |I32 |utf16_textfilter \
|int idx \
|NN SV *sv \
|int maxlen
# endif
#endif /* defined(PERL_IN_TOKE_C) */
#if defined(PERL_IN_UNIVERSAL_C)
GS |bool |isa_lookup |NULLOK HV *stash \
|NULLOK SV *namesv \
|NULLOK const char *name \
|STRLEN len \
|U32 flags
GS |bool |sv_derived_from_svpvn \
|NULLOK SV *sv \
|NULLOK SV *namesv \
|NULLOK const char *name \
|const STRLEN len \
|U32 flags
#endif
#if defined(PERL_IN_UTF8_C)
RS |UV |check_locale_boundary_crossing \
|NN const U8 * const p \
|const UV result \
|NN U8 * const ustrp \
|NN STRLEN *lenp
RTi |int |does_utf8_overflow \
|NN const U8 * const s \
|NN const U8 *e
RTi |int |isFF_overlong |NN const U8 * const s \
|const STRLEN len
RTi |int |is_utf8_overlong \
|NN const U8 * const s \
|const STRLEN len
RS |HV * |new_msg_hv |NN const char * const message \
|U32 categories \
|U32 flag
S |UV |to_case_cp_list|const UV original \
|NULLOK const U32 ** const remaining_list \
|NULLOK Size_t *remaining_count \
|NN SV *invlist \
|NN const I32 * const invmap \
|NULLOK const U32 * const * const aux_tables \
|NULLOK const U8 * const aux_table_lengths \
|NN const char * const normal
RST |U8 |to_lower_latin1|const U8 c \
|NULLOK U8 *p \
|NULLOK STRLEN *lenp \
|const char dummy
S |UV |_to_utf8_case |const UV original \
|NULLOK const U8 *p \
|NN U8 *ustrp \
|NN STRLEN *lenp \
|NN SV *invlist \
|NN const I32 * const invmap \
|NULLOK const U32 * const * const aux_tables \
|NULLOK const U8 * const aux_table_lengths \
|NN const char * const normal
S |UV |turkic_fc |NN const U8 * const p \
|NN const U8 * const e \
|NN U8 *ustrp \
|NN STRLEN *lenp
S |UV |turkic_lc |NN const U8 * const p0 \
|NN const U8 * const e \
|NN U8 *ustrp \
|NN STRLEN *lenp
S |UV |turkic_uc |NN const U8 * const p \
|NN const U8 * const e \
|NN U8 *ustrp \
|NN STRLEN *lenp
RS |char * |unexpected_non_continuation_text \
|NN const U8 * const s \
|STRLEN print_len \
|const STRLEN non_cont_byte_pos \
|const STRLEN expect_len
# if 0
S |void |warn_on_first_deprecated_use \
|U32 category \
|NN const char * const name \
|NN const char * const alternative \
|const bool use_locale \
|NN const char * const file \
|const unsigned line
# endif
#endif /* defined(PERL_IN_UTF8_C) */
#if defined(PERL_IN_UTIL_C)
S |bool |ckwarn_common |U32 w
S |SV * |mess_alloc
Ti |U32 |ptr_hash |PTRV u
S |SV * |with_queued_errors \
|NN SV *ex
So |void |xs_version_bootcheck \
|SSize_t items \
|SSize_t ax \
|NN const char *xs_p \
|STRLEN xs_len
# if defined(PERL_MEM_LOG) && !defined(PERL_MEM_LOG_NOIMPL)
ST |void |mem_log_common |enum mem_log_type mlt \
|const UV n \
|const UV typesize \
|NN const char *type_name \
|NULLOK const SV *sv \
|Malloc_t oldalloc \
|Malloc_t newalloc \
|NN const char *filename \
|const int linenumber \
|NN const char *funcname
# endif
# if defined(PERL_USES_PL_PIDSTATUS)
S |void |pidgone |Pid_t pid \
|int status
# endif
#endif /* defined(PERL_IN_UTIL_C) */
#if defined(PERL_MEM_LOG)
CTp |Malloc_t|mem_log_alloc |const UV nconst \
|UV typesize \
|NN const char *type_name \
|Malloc_t newalloc \
|NN const char *filename \
|const int linenumber \
|NN const char *funcname
CTp |void |mem_log_del_sv |NN const SV *sv \
|NN const char *filename \
|int linenumber \
|NN const char *funcname
CTp |Malloc_t|mem_log_free |Malloc_t oldalloc \
|NN const char *filename \
|const int linenumber \
|NN const char *funcname
CTp |void |mem_log_new_sv |NN const SV *sv \
|NN const char *filename \
|int linenumber \
|NN const char *funcname
CTp |Malloc_t|mem_log_realloc \
|const UV n \
|const UV typesize \
|NN const char *type_name \
|Malloc_t oldalloc \
|Malloc_t newalloc \
|NN const char *filename \
|const int linenumber \
|NN const char *funcname
#endif
#if !defined(PERL_NO_INLINE_FUNCTIONS)
Cipx |void |cx_popblock |NN PERL_CONTEXT *cx
Cipx |void |cx_popeval |NN PERL_CONTEXT *cx
Cipx |void |cx_popformat |NN PERL_CONTEXT *cx
Cipx |void |cx_popgiven |NN PERL_CONTEXT *cx
Cipx |void |cx_poploop |NN PERL_CONTEXT *cx
Cipx |void |cx_popsub |NN PERL_CONTEXT *cx
Cipx |void |cx_popsub_args |NN PERL_CONTEXT *cx
Cipx |void |cx_popsub_common \
|NN PERL_CONTEXT *cx
Cipx |void |cx_popwhen |NN PERL_CONTEXT *cx
Cipx |PERL_CONTEXT *|cx_pushblock \
|U8 type \
|U8 gimme \
|NN SV **sp \
|I32 saveix
Cipx |void |cx_pusheval |NN PERL_CONTEXT *cx \
|NULLOK OP *retop \
|NULLOK SV *namesv
Cipx |void |cx_pushformat |NN PERL_CONTEXT *cx \
|NN CV *cv \
|NULLOK OP *retop \
|NULLOK GV *gv
Cipx |void |cx_pushgiven |NN PERL_CONTEXT *cx \
|NULLOK SV *orig_defsv
Cipx |void |cx_pushloop_for|NN PERL_CONTEXT *cx \
|NN void *itervarp \
|NULLOK SV *itersave
Cipx |void |cx_pushloop_plain \
|NN PERL_CONTEXT *cx
Cipx |void |cx_pushsub |NN PERL_CONTEXT *cx \
|NN CV *cv \
|NULLOK OP *retop \
|bool hasargs
Cipx |void |cx_pushtry |NN PERL_CONTEXT *cx \
|NULLOK OP *retop
Cipx |void |cx_pushwhen |NN PERL_CONTEXT *cx
Cipx |void |cx_topblock |NN PERL_CONTEXT *cx
Cipx |U8 |gimme_V
#endif /* !defined(PERL_NO_INLINE_FUNCTIONS) */
#if defined(PERL_RC_STACK)
EXopx |OP * |pp_wrap |NN Perl_ppaddr_t real_pp_fn \
|I32 nargs \
|int nlists
Cpx |int |runops_wrap
EXopx |void |xs_wrap |NN XSUBADDR_t xsub \
|NN CV *cv
#endif
#if defined(PERL_USE_3ARG_SIGHANDLER)
CTp |Signal_t|csighandler |int sig \
|NULLOK Siginfo_t *info \
|NULLOK void *uap
: Used in perl.c
Tp |Signal_t|sighandler |int sig \
|NULLOK Siginfo_t *info \
|NULLOK void *uap
#else
CTp |Signal_t|csighandler |int sig
Tp |Signal_t|sighandler |int sig
#endif
#if defined(U64TYPE)
CRTip |unsigned|lsbit_pos64 |U64 word
CRTip |unsigned|msbit_pos64 |U64 word
CRTip |unsigned|single_1bit_pos64 \
|U64 word
#endif
#if defined(UNLINK_ALL_VERSIONS)
Cp |I32 |unlnk |NN const char *f
#endif
#if defined(USE_C_BACKTRACE)
Adp |bool |dump_c_backtrace \
|NN PerlIO *fp \
|int max_depth \
|int skip
dm |void |free_c_backtrace \
|NN Perl_c_backtrace *bt
dp |Perl_c_backtrace *|get_c_backtrace \
|int max_depth \
|int skip
Adp |SV * |get_c_backtrace_dump \
|int max_depth \
|int skip
#endif
#if defined(USE_DTRACE)
EXop |void |dtrace_probe_call \
|NN CV *cv \
|bool is_call
EXop |void |dtrace_probe_load \
|NN const char *name \
|bool is_loading
EXop |void |dtrace_probe_op|NN const OP *op
EXop |void |dtrace_probe_phase \
|enum perl_phase phase
#endif
#if defined(USE_ITHREADS)
Adpx |PADOFFSET|alloccopstash|NN HV *hv
CRp |void * |any_dup |NULLOK void *v \
|NN const PerlInterpreter *proto_perl
ATop |void |clone_params_del \
|NN CLONE_PARAMS *param
ARTop |CLONE_PARAMS *|clone_params_new \
|NN PerlInterpreter * const from \
|NN PerlInterpreter * const to
Cip |AV * |cop_file_avn |NN const COP *cop
CRp |PERL_CONTEXT *|cx_dup |NULLOK PERL_CONTEXT *cx \
|I32 ix \
|I32 max \
|NN CLONE_PARAMS *param
CRdp |DIR * |dirp_dup |NULLOK DIR * const dp \
|NN CLONE_PARAMS * const param
Cdp |PerlIO *|fp_dup |NULLOK PerlIO * const fp \
|const char type \
|NN CLONE_PARAMS * const param
CRdp |GP * |gp_dup |NULLOK GP * const gp \
|NN CLONE_PARAMS * const param
CRp |HE * |he_dup |NULLOK const HE *e \
|bool shared \
|NN CLONE_PARAMS *param
CRp |HEK * |hek_dup |NULLOK HEK *e \
|NN CLONE_PARAMS *param
CRdp |MAGIC *|mg_dup |NULLOK MAGIC *mg \
|NN CLONE_PARAMS * const param
: Only used in sv.c
p |struct mro_meta *|mro_meta_dup \
|NN struct mro_meta *smeta \
|NN CLONE_PARAMS *param
ARdp |OP * |newPADOP |I32 type \
|I32 flags \
|NN SV *sv
Rdp |PADLIST *|padlist_dup |NN PADLIST *srcpad \
|NN CLONE_PARAMS *param
Rdp |PADNAME *|padname_dup |NN PADNAME *src \
|NN CLONE_PARAMS *param
Rdp |PADNAMELIST *|padnamelist_dup \
|NN PADNAMELIST *srcpad \
|NN CLONE_PARAMS *param
Cp |yy_parser *|parser_dup |NULLOK const yy_parser * const proto \
|NN CLONE_PARAMS * const param
ATdo |PerlInterpreter *|perl_clone \
|NN PerlInterpreter *proto_perl \
|UV flags
Adp |void |re_dup_guts |NN const REGEXP *sstr \
|NN REGEXP *dstr \
|NN CLONE_PARAMS *param
Cp |void * |regdupe_internal \
|NN REGEXP * const r \
|NN CLONE_PARAMS *param
Cp |void |rvpv_dup |NN SV * const dsv \
|NN const SV * const ssv \
|NN CLONE_PARAMS * const param
CRdp |PERL_SI *|si_dup |NULLOK PERL_SI *si \
|NN CLONE_PARAMS *param
CRdp |ANY * |ss_dup |NN PerlInterpreter *proto_perl \
|NN CLONE_PARAMS *param
ARp |SV * |sv_dup |NULLOK const SV * const ssv \
|NN CLONE_PARAMS * const param
ARp |SV * |sv_dup_inc |NULLOK const SV * const ssv \
|NN CLONE_PARAMS * const param
# if defined(PERL_IN_OP_C) || defined(PERL_IN_PEEP_C)
p |void |op_relocate_sv |NN SV **svp \
|NN PADOFFSET *targp
# endif
#else /* if !defined(USE_ITHREADS) */
Adm |void |CopFILEGV_set |NN COP *c \
|NN GV *gv
#endif
#if defined(USE_LOCALE_COLLATE)
p |int |magic_freecollxfrm \
|NN SV *sv \
|NN MAGIC *mg
p |int |magic_setcollxfrm \
|NN SV *sv \
|NN MAGIC *mg
EXop |SV * |strxfrm |NN SV *src
: Defined in locale.c, used only in sv.c
AMbdp |char * |sv_collxfrm |NN SV * const sv \
|NN STRLEN * const nxp
Adp |char * |sv_collxfrm_flags \
|NN SV * const sv \
|NN STRLEN * const nxp \
|I32 const flags
# if defined(PERL_IN_LOCALE_C) || defined(PERL_IN_MATHOMS_C) || \
defined(PERL_IN_SV_C)
Ep |char * |mem_collxfrm_ |NN const char *input_string \
|STRLEN len \
|NN STRLEN *xlen \
|bool utf8
# endif
#endif /* defined(USE_LOCALE_COLLATE) */
#if defined(USE_LOCALE_CTYPE)
TXop |void |warn_problematic_locale
#endif
#if defined(USE_PERLIO)
Adhp |void |PerlIO_clearerr|NULLOK PerlIO *f
Adhp |int |PerlIO_close |NULLOK PerlIO *f
Adhp |int |PerlIO_eof |NULLOK PerlIO *f
Adhp |int |PerlIO_error |NULLOK PerlIO *f
Adhp |int |PerlIO_fileno |NULLOK PerlIO *f
Adp |int |PerlIO_fill |NULLOK PerlIO *f
Adhp |int |PerlIO_flush |NULLOK PerlIO *f
Adhp |STDCHAR *|PerlIO_get_base \
|NULLOK PerlIO *f
ARdhp |SSize_t|PerlIO_get_bufsiz \
|NULLOK PerlIO *f
ARdhp |SSize_t|PerlIO_get_cnt |NULLOK PerlIO *f
Adhp |STDCHAR *|PerlIO_get_ptr \
|NULLOK PerlIO *f
Adhp |SSize_t|PerlIO_read |NULLOK PerlIO *f \
|NN void *vbuf \
|Size_t count
Xp |void |PerlIO_restore_errno \
|NULLOK PerlIO *f
Xp |void |PerlIO_save_errno \
|NULLOK PerlIO *f
Adhp |int |PerlIO_seek |NULLOK PerlIO *f \
|Off_t offset \
|int whence
Adhp |void |PerlIO_set_cnt |NULLOK PerlIO *f \
|SSize_t cnt
Adhp |void |PerlIO_setlinebuf \
|NULLOK PerlIO *f
Adhp |void |PerlIO_set_ptrcnt \
|NULLOK PerlIO *f \
|NULLOK STDCHAR *ptr \
|SSize_t cnt
ARdhp |PerlIO *|PerlIO_stderr
ARdhp |PerlIO *|PerlIO_stdin
ARdhp |PerlIO *|PerlIO_stdout
Adhp |Off_t |PerlIO_tell |NULLOK PerlIO *f
Adp |SSize_t|PerlIO_unread |NULLOK PerlIO *f \
|NN const void *vbuf \
|Size_t count
Adhp |SSize_t|PerlIO_write |NULLOK PerlIO *f \
|NN const void *vbuf \
|Size_t count
#endif /* defined(USE_PERLIO) */
#if defined(USE_PERL_SWITCH_LOCALE_CONTEXT)
Cop |void |switch_locale_context
#endif
#if defined(USE_QUADMATH)
Tdp |bool |quadmath_format_needed \
|NN const char *format
Tdp |bool |quadmath_format_valid \
|NN const char *format
#endif
#if defined(USE_THREADS)
Apx |void |thread_locale_init
Apx |void |thread_locale_term
#endif
#if defined(VMS) || defined(WIN32)
Cp |int |do_aspawn |NULLOK SV *really \
|NN SV **mark \
|NN SV **sp
Cp |int |do_spawn |NN char *cmd
Cp |int |do_spawn_nowait|NN char *cmd
#endif
#if defined(WIN32)
CRTdp |void * |get_context
p |bool |get_win32_message_utf8ness \
|NULLOK const char *string
Teor |void |win32_croak_not_implemented \
|NN const char *fname
#else
p |bool |do_exec3 |NN const char *incmd \
|int fd \
|int do_report
CRTdip |void * |get_context
#endif
: ex: set ts=8 sts=4 sw=4 noet:
|