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
|
# There are two sorts of patterns in this test. A number of them are
# representative patterns whose lengths and offsets are checked. This is just a
# doublecheck test to ensure the sizes don't go horribly wrong when something
# is changed. The operation of these patterns is checked in other tests.
#
# This file also contains tests whose output varies with code unit size and/or
# link size. Unicode support is required for these tests. There are separate
# output files for each code unit size and link size.
#pattern fullbincode,memory
/((?i)b)/
Memory allocation - compiled block : 161
Memory allocation - code portion : 25
------------------------------------------------------------------
0 19 Bra
5 9 CBra 1
12 /i b
14 9 Ket
19 19 Ket
24 End
------------------------------------------------------------------
/(?s)(.*X|^B)/
Memory allocation - compiled block : 171
Memory allocation - code portion : 35
------------------------------------------------------------------
0 29 Bra
5 11 CBra 1
12 AllAny*
14 X
16 8 Alt
21 ^
22 B
24 19 Ket
29 29 Ket
34 End
------------------------------------------------------------------
/(?s:.*X|^B)/
Memory allocation - compiled block : 169
Memory allocation - code portion : 33
------------------------------------------------------------------
0 27 Bra
5 9 Bra
10 AllAny*
12 X
14 8 Alt
19 ^
20 B
22 17 Ket
27 27 Ket
32 End
------------------------------------------------------------------
/^[[:alnum:]]/
Memory allocation - compiled block : 181
Memory allocation - code portion : 45
------------------------------------------------------------------
0 39 Bra
5 ^
6 [0-9A-Za-z]
39 39 Ket
44 End
------------------------------------------------------------------
/#/Ix
Memory allocation - compiled block : 147
Memory allocation - code portion : 11
------------------------------------------------------------------
0 5 Bra
5 5 Ket
10 End
------------------------------------------------------------------
Capture group count = 0
May match empty string
Options: extended
Subject length lower bound = 0
/a#/Ix
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 a
7 7 Ket
12 End
------------------------------------------------------------------
Capture group count = 0
Options: extended
First code unit = 'a'
Subject length lower bound = 1
/x?+/
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 x?+
7 7 Ket
12 End
------------------------------------------------------------------
/x++/
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 x++
7 7 Ket
12 End
------------------------------------------------------------------
/x{1,3}+/
Memory allocation - compiled block : 153
Memory allocation - code portion : 17
------------------------------------------------------------------
0 11 Bra
5 x
7 x{0,2}+
11 11 Ket
16 End
------------------------------------------------------------------
/(x)*+/
Memory allocation - compiled block : 162
Memory allocation - code portion : 26
------------------------------------------------------------------
0 20 Bra
5 Braposzero
6 9 CBraPos 1
13 x
15 9 KetRpos
20 20 Ket
25 End
------------------------------------------------------------------
/^((a+)(?U)([ab]+)(?-U)([bc]+)(\w*))/
Memory allocation - compiled block : 280
Memory allocation - code portion : 144
------------------------------------------------------------------
0 138 Bra
5 ^
6 127 CBra 1
13 9 CBra 2
20 a+
22 9 Ket
27 41 CBra 3
34 [ab]+?
68 41 Ket
73 41 CBra 4
80 [bc]+
114 41 Ket
119 9 CBra 5
126 \w*+
128 9 Ket
133 127 Ket
138 138 Ket
143 End
------------------------------------------------------------------
"8J\$WE\<\.rX\+ix\[d1b\!H\#\?vV0vrK\:ZH1\=2M\>iV\;\?aPhFB\<\*vW\@QW\@sO9\}cfZA\-i\'w\%hKd6gt1UJP\,15_\#QY\$M\^Mss_U\/\]\&LK9\[5vQub\^w\[KDD\<EjmhUZ\?\.akp2dF\>qmj\;2\}YWFdYx\.Ap\]hjCPTP\(n28k\+3\;o\&WXqs\/gOXdr\$\:r\'do0\;b4c\(f_Gr\=\"\\4\)\[01T7ajQJvL\$W\~mL_sS\/4h\:x\*\[ZN\=KLs\&L5zX\/\/\>it\,o\:aU\(\;Z\>pW\&T7oP\'2K\^E\:x9\'c\[\%z\-\,64JQ5AeH_G\#KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.Kne9\#hP\?\+b3\(SOvL\,\^\;\&u5\@\?5C5Bhb\=m\-vEh_L15Jl\]U\)0RP6\{q\%L\^_z5E\'Dw6X\b"
Memory allocation - compiled block : 966
Memory allocation - code portion : 830
------------------------------------------------------------------
0 824 Bra
5 8J$WE<.rX+ix[d1b!H#?vV0vrK:ZH1=2M>iV;?aPhFB<*vW@QW@sO9}cfZA-i'w%hKd6gt1UJP,15_#QY$M^Mss_U/]&LK9[5vQub^w[KDD<EjmhUZ?.akp2dF>qmj;2}YWFdYx.Ap]hjCPTP(n28k+3;o&WXqs/gOXdr$:r'do0;b4c(f_Gr="\4)[01T7ajQJvL$W~mL_sS/4h:x*[ZN=KLs&L5zX//>it,o:aU(;Z>pW&T7oP'2K^E:x9'c[%z-,64JQ5AeH_G#KijUKghQw^\vea3a?kka_G$8#`*kynsxzBLru']k_[7FrVx}^=$blx>s-N%j;D*aZDnsw:YKZ%Q.Kne9#hP?+b3(SOvL,^;&u5@?5C5Bhb=m-vEh_L15Jl]U)0RP6{q%L^_z5E'Dw6X
823 \b
824 824 Ket
829 End
------------------------------------------------------------------
"\$\<\.X\+ix\[d1b\!H\#\?vV0vrK\:ZH1\=2M\>iV\;\?aPhFB\<\*vW\@QW\@sO9\}cfZA\-i\'w\%hKd6gt1UJP\,15_\#QY\$M\^Mss_U\/\]\&LK9\[5vQub\^w\[KDD\<EjmhUZ\?\.akp2dF\>qmj\;2\}YWFdYx\.Ap\]hjCPTP\(n28k\+3\;o\&WXqs\/gOXdr\$\:r\'do0\;b4c\(f_Gr\=\"\\4\)\[01T7ajQJvL\$W\~mL_sS\/4h\:x\*\[ZN\=KLs\&L5zX\/\/\>it\,o\:aU\(\;Z\>pW\&T7oP\'2K\^E\:x9\'c\[\%z\-\,64JQ5AeH_G\#KijUKghQw\^\\vea3a\?kka_G\$8\#\`\*kynsxzBLru\'\]k_\[7FrVx\}\^\=\$blx\>s\-N\%j\;D\*aZDnsw\:YKZ\%Q\.Kne9\#hP\?\+b3\(SOvL\,\^\;\&u5\@\?5C5Bhb\=m\-vEh_L15Jl\]U\)0RP6\{q\%L\^_z5E\'Dw6X\b"
Memory allocation - compiled block : 956
Memory allocation - code portion : 820
------------------------------------------------------------------
0 814 Bra
5 $<.X+ix[d1b!H#?vV0vrK:ZH1=2M>iV;?aPhFB<*vW@QW@sO9}cfZA-i'w%hKd6gt1UJP,15_#QY$M^Mss_U/]&LK9[5vQub^w[KDD<EjmhUZ?.akp2dF>qmj;2}YWFdYx.Ap]hjCPTP(n28k+3;o&WXqs/gOXdr$:r'do0;b4c(f_Gr="\4)[01T7ajQJvL$W~mL_sS/4h:x*[ZN=KLs&L5zX//>it,o:aU(;Z>pW&T7oP'2K^E:x9'c[%z-,64JQ5AeH_G#KijUKghQw^\vea3a?kka_G$8#`*kynsxzBLru']k_[7FrVx}^=$blx>s-N%j;D*aZDnsw:YKZ%Q.Kne9#hP?+b3(SOvL,^;&u5@?5C5Bhb=m-vEh_L15Jl]U)0RP6{q%L^_z5E'Dw6X
813 \b
814 814 Ket
819 End
------------------------------------------------------------------
/(a(?1)b)/
Memory allocation - compiled block : 168
Memory allocation - code portion : 32
------------------------------------------------------------------
0 26 Bra
5 16 CBra 1
12 a
14 5 Recurse
19 b
21 16 Ket
26 26 Ket
31 End
------------------------------------------------------------------
/(a(?1)+b)/
Memory allocation - compiled block : 178
Memory allocation - code portion : 42
------------------------------------------------------------------
0 36 Bra
5 26 CBra 1
12 a
14 10 SBra
19 5 Recurse
24 10 KetRmax
29 b
31 26 Ket
36 36 Ket
41 End
------------------------------------------------------------------
/a(?P<name1>b|c)d(?P<longername2>e)/
Memory allocation - compiled block : 214
Memory allocation - code portion : 50
------------------------------------------------------------------
0 44 Bra
5 a
7 9 CBra 1
14 b
16 7 Alt
21 c
23 16 Ket
28 d
30 9 CBra 2
37 e
39 9 Ket
44 44 Ket
49 End
------------------------------------------------------------------
/(?:a(?P<c>c(?P<d>d)))(?P<a>a)/
Memory allocation - compiled block : 213
Memory allocation - code portion : 65
------------------------------------------------------------------
0 59 Bra
5 35 Bra
10 a
12 23 CBra 1
19 c
21 9 CBra 2
28 d
30 9 Ket
35 23 Ket
40 35 Ket
45 9 CBra 3
52 a
54 9 Ket
59 59 Ket
64 End
------------------------------------------------------------------
/(?P<a>a)...(?P=a)bbb(?P>a)d/
Memory allocation - compiled block : 184
Memory allocation - code portion : 44
------------------------------------------------------------------
0 38 Bra
5 9 CBra 1
12 a
14 9 Ket
19 Any
20 Any
21 Any
22 \1
25 bbb
31 5 Recurse
36 d
38 38 Ket
43 End
------------------------------------------------------------------
/abc(?C255)de(?C)f/
Memory allocation - compiled block : 179
Memory allocation - code portion : 43
------------------------------------------------------------------
0 37 Bra
5 abc
11 Callout 255 10 1
21 de
25 Callout 0 16 1
35 f
37 37 Ket
42 End
------------------------------------------------------------------
/abcde/auto_callout
Memory allocation - compiled block : 217
Memory allocation - code portion : 81
------------------------------------------------------------------
0 75 Bra
5 Callout 255 0 1
15 a
17 Callout 255 1 1
27 b
29 Callout 255 2 1
39 c
41 Callout 255 3 1
51 d
53 Callout 255 4 1
63 e
65 Callout 255 5 0
75 75 Ket
80 End
------------------------------------------------------------------
/\x{100}/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{100}
8 8 Ket
13 End
------------------------------------------------------------------
/\x{1000}/utf
Memory allocation - compiled block : 151
Memory allocation - code portion : 15
------------------------------------------------------------------
0 9 Bra
5 \x{1000}
9 9 Ket
14 End
------------------------------------------------------------------
/\x{10000}/utf
Memory allocation - compiled block : 152
Memory allocation - code portion : 16
------------------------------------------------------------------
0 10 Bra
5 \x{10000}
10 10 Ket
15 End
------------------------------------------------------------------
/\x{100000}/utf
Memory allocation - compiled block : 152
Memory allocation - code portion : 16
------------------------------------------------------------------
0 10 Bra
5 \x{100000}
10 10 Ket
15 End
------------------------------------------------------------------
/\x{10ffff}/utf
Memory allocation - compiled block : 152
Memory allocation - code portion : 16
------------------------------------------------------------------
0 10 Bra
5 \x{10ffff}
10 10 Ket
15 End
------------------------------------------------------------------
/\x{110000}/utf
Failed: error 134 at offset 9: character code point value in \x{} or \o{} is too large
/[\x{ff}]/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{ff}
8 8 Ket
13 End
------------------------------------------------------------------
/[\x{100}]/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{100}
8 8 Ket
13 End
------------------------------------------------------------------
/\x80/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{80}
8 8 Ket
13 End
------------------------------------------------------------------
/\xff/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{ff}
8 8 Ket
13 End
------------------------------------------------------------------
/\x{0041}\x{2262}\x{0391}\x{002e}/I,utf
Memory allocation - compiled block : 158
Memory allocation - code portion : 22
------------------------------------------------------------------
0 16 Bra
5 A\x{2262}\x{391}.
16 16 Ket
21 End
------------------------------------------------------------------
Capture group count = 0
Options: utf
First code unit = 'A'
Last code unit = '.'
Subject length lower bound = 4
/\x{D55c}\x{ad6d}\x{C5B4}/I,utf
Memory allocation - compiled block : 159
Memory allocation - code portion : 23
------------------------------------------------------------------
0 17 Bra
5 \x{d55c}\x{ad6d}\x{c5b4}
17 17 Ket
22 End
------------------------------------------------------------------
Capture group count = 0
Options: utf
First code unit = \xed
Last code unit = \xb4
Subject length lower bound = 3
/\x{65e5}\x{672c}\x{8a9e}/I,utf
Memory allocation - compiled block : 159
Memory allocation - code portion : 23
------------------------------------------------------------------
0 17 Bra
5 \x{65e5}\x{672c}\x{8a9e}
17 17 Ket
22 End
------------------------------------------------------------------
Capture group count = 0
Options: utf
First code unit = \xe6
Last code unit = \x9e
Subject length lower bound = 3
/[\x{100}]/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{100}
8 8 Ket
13 End
------------------------------------------------------------------
/[Z\x{100}]/utf
Memory allocation - compiled block : 189
Memory allocation - code portion : 53
------------------------------------------------------------------
0 47 Bra
5 [Z\x{100}]
47 47 Ket
52 End
------------------------------------------------------------------
/^[\x{100}\E-\Q\E\x{150}]/utf
Memory allocation - compiled block : 160
Memory allocation - code portion : 24
------------------------------------------------------------------
0 18 Bra
5 ^
6 [\x{100}-\x{150}]
18 18 Ket
23 End
------------------------------------------------------------------
/^[\QĀ\E-\QŐ\E]/utf
Memory allocation - compiled block : 160
Memory allocation - code portion : 24
------------------------------------------------------------------
0 18 Bra
5 ^
6 [\x{100}-\x{150}]
18 18 Ket
23 End
------------------------------------------------------------------
/^[\QĀ\E-\QŐ\E/utf
Failed: error 106 at offset 15: missing terminating ] for character class
/[\p{L}]/
Memory allocation - compiled block : 157
Memory allocation - code portion : 21
------------------------------------------------------------------
0 15 Bra
5 [\p{L}]
15 15 Ket
20 End
------------------------------------------------------------------
/[\p{^L}]/
Memory allocation - compiled block : 157
Memory allocation - code portion : 21
------------------------------------------------------------------
0 15 Bra
5 [\P{L}]
15 15 Ket
20 End
------------------------------------------------------------------
/[\P{L}]/
Memory allocation - compiled block : 157
Memory allocation - code portion : 21
------------------------------------------------------------------
0 15 Bra
5 [\P{L}]
15 15 Ket
20 End
------------------------------------------------------------------
/[\P{^L}]/
Memory allocation - compiled block : 157
Memory allocation - code portion : 21
------------------------------------------------------------------
0 15 Bra
5 [\p{L}]
15 15 Ket
20 End
------------------------------------------------------------------
/[abc\p{L}\x{0660}]/utf
Memory allocation - compiled block : 192
Memory allocation - code portion : 56
------------------------------------------------------------------
0 50 Bra
5 [a-c\p{L}\x{660}]
50 50 Ket
55 End
------------------------------------------------------------------
/[\p{Nd}]/utf
Memory allocation - compiled block : 157
Memory allocation - code portion : 21
------------------------------------------------------------------
0 15 Bra
5 [\p{Nd}]
15 15 Ket
20 End
------------------------------------------------------------------
/[\p{Nd}+-]+/utf
Memory allocation - compiled block : 190
Memory allocation - code portion : 54
------------------------------------------------------------------
0 48 Bra
5 [+\-\p{Nd}]++
48 48 Ket
53 End
------------------------------------------------------------------
/A\x{391}\x{10427}\x{ff3a}\x{1fb0}/i,utf
Memory allocation - compiled block : 165
Memory allocation - code portion : 29
------------------------------------------------------------------
0 23 Bra
5 /i A\x{391}\x{10427}\x{ff3a}\x{1fb0}
23 23 Ket
28 End
------------------------------------------------------------------
/A\x{391}\x{10427}\x{ff3a}\x{1fb0}/utf
Memory allocation - compiled block : 165
Memory allocation - code portion : 29
------------------------------------------------------------------
0 23 Bra
5 A\x{391}\x{10427}\x{ff3a}\x{1fb0}
23 23 Ket
28 End
------------------------------------------------------------------
/[\x{105}-\x{109}]/i,utf
Memory allocation - compiled block : 159
Memory allocation - code portion : 23
------------------------------------------------------------------
0 17 Bra
5 [\x{104}-\x{109}]
17 17 Ket
22 End
------------------------------------------------------------------
/( ( (?(1)0|) )* )/x
Memory allocation - compiled block : 192
Memory allocation - code portion : 56
------------------------------------------------------------------
0 50 Bra
5 40 CBra 1
12 Brazero
13 27 SCBra 2
20 10 Cond
25 1 Cond ref
28 0
30 5 Alt
35 15 Ket
40 27 KetRmax
45 40 Ket
50 50 Ket
55 End
------------------------------------------------------------------
/( (?(1)0|)* )/x
Memory allocation - compiled block : 180
Memory allocation - code portion : 44
------------------------------------------------------------------
0 38 Bra
5 28 CBra 1
12 Brazero
13 10 SCond
18 1 Cond ref
21 0
23 5 Alt
28 15 KetRmax
33 28 Ket
38 38 Ket
43 End
------------------------------------------------------------------
/[a]/
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 a
7 7 Ket
12 End
------------------------------------------------------------------
/[a]/utf
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 a
7 7 Ket
12 End
------------------------------------------------------------------
/[\xaa]/
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 \x{aa}
7 7 Ket
12 End
------------------------------------------------------------------
/[\xaa]/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 \x{aa}
8 8 Ket
13 End
------------------------------------------------------------------
/[^a]/
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 [^a]
7 7 Ket
12 End
------------------------------------------------------------------
/[^a]/utf
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 [^a]
7 7 Ket
12 End
------------------------------------------------------------------
/[^\xaa]/
Memory allocation - compiled block : 149
Memory allocation - code portion : 13
------------------------------------------------------------------
0 7 Bra
5 [^\x{aa}]
7 7 Ket
12 End
------------------------------------------------------------------
/[^\xaa]/utf
Memory allocation - compiled block : 150
Memory allocation - code portion : 14
------------------------------------------------------------------
0 8 Bra
5 [^\x{aa}]
8 8 Ket
13 End
------------------------------------------------------------------
#pattern -memory
/[^\d]/utf,ucp
------------------------------------------------------------------
0 15 Bra
5 [^\p{Nd}]
15 15 Ket
20 End
------------------------------------------------------------------
/[[:^alpha:][:^cntrl:]]+/utf,ucp
------------------------------------------------------------------
0 19 Bra
5 [\P{L}\P{Cc}]++
19 19 Ket
24 End
------------------------------------------------------------------
/[[:^cntrl:][:^alpha:]]+/utf,ucp
------------------------------------------------------------------
0 19 Bra
5 [\P{Cc}\P{L}]++
19 19 Ket
24 End
------------------------------------------------------------------
/[[:alpha:]]+/utf,ucp
------------------------------------------------------------------
0 16 Bra
5 [\p{L}]++
16 16 Ket
21 End
------------------------------------------------------------------
/[[:^alpha:]\S]+/utf,ucp
------------------------------------------------------------------
0 19 Bra
5 [\P{L}\P{Xsp}]++
19 19 Ket
24 End
------------------------------------------------------------------
/abc(d|e)(*THEN)x(123(*THEN)4|567(b|q)(*THEN)xx)/
------------------------------------------------------------------
0 93 Bra
5 abc
11 9 CBra 1
18 d
20 7 Alt
25 e
27 16 Ket
32 *THEN
33 x
35 16 CBra 2
42 123
48 *THEN
49 4
51 37 Alt
56 567
62 9 CBra 3
69 b
71 7 Alt
76 q
78 16 Ket
83 *THEN
84 xx
88 53 Ket
93 93 Ket
98 End
------------------------------------------------------------------
/(((a\2)|(a*)\g<-1>))*a?/
------------------------------------------------------------------
0 73 Bra
5 Brazero
6 60 SCBra 1
13 24 CBra 2
20 12 CBra 3
27 a
29 \2
32 12 Ket
37 24 Alt
42 9 CBra 4
49 a*
51 9 Ket
56 42 Recurse
61 48 Ket
66 60 KetRmax
71 a?+
73 73 Ket
78 End
------------------------------------------------------------------
/((?+1)(\1))/
------------------------------------------------------------------
0 37 Bra
5 27 CBra 1
12 17 Recurse
17 10 CBra 2
24 \1
27 10 Ket
32 27 Ket
37 37 Ket
42 End
------------------------------------------------------------------
"(?1)(?#?'){2}(a)"
------------------------------------------------------------------
0 29 Bra
5 15 Recurse
10 15 Recurse
15 9 CBra 1
22 a
24 9 Ket
29 29 Ket
34 End
------------------------------------------------------------------
/.((?2)(?R)|\1|$)()/
------------------------------------------------------------------
0 54 Bra
5 Any
6 17 CBra 1
13 42 Recurse
18 0 Recurse
23 8 Alt
28 \1
31 6 Alt
36 $
37 31 Ket
42 7 CBra 2
49 7 Ket
54 54 Ket
59 End
------------------------------------------------------------------
/.((?3)(?R)()(?2)|\1|$)()/
------------------------------------------------------------------
0 71 Bra
5 Any
6 34 CBra 1
13 59 Recurse
18 0 Recurse
23 7 CBra 2
30 7 Ket
35 23 Recurse
40 8 Alt
45 \1
48 6 Alt
53 $
54 48 Ket
59 7 CBra 3
66 7 Ket
71 71 Ket
76 End
------------------------------------------------------------------
/(?1)()((((((\1++))\x85)+)|))/
------------------------------------------------------------------
0 115 Bra
5 10 Recurse
10 7 CBra 1
17 7 Ket
22 88 CBra 2
29 71 CBra 3
36 59 CBra 4
43 47 CBra 5
50 33 CBra 6
57 21 CBra 7
64 9 Once
69 \1+
73 9 Ket
78 21 Ket
83 33 Ket
88 \x{85}
90 47 KetRmax
95 59 Ket
100 5 Alt
105 76 Ket
110 88 Ket
115 115 Ket
120 End
------------------------------------------------------------------
# Check the absolute limit on nesting (?| etc. This varies with code unit
# width because the workspace is a different number of bytes. It will fail
# with link size 2 in 8-bit and 16-bit but not in 32-bit.
/(?|(?|(?J:(?|(?x:(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|(?|
)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))
/parens_nest_limit=1000,-fullbincode
# Use "expand" to create some very long patterns with nested parentheses, in
# order to test workspace overflow. Again, this varies with code unit width,
# and even when it fails in two modes, the error offset differs. It also varies
# with link size - hence multiple tests with different values.
/(?'ABC'\[[bar](]{792}*THEN:\[A]{255}\[)]{793}/expand,-fullbincode,parens_nest_limit=1000
/(?'ABC'\[[bar](]{793}*THEN:\[A]{255}\[)]{794}/expand,-fullbincode,parens_nest_limit=1000
/(?'ABC'\[[bar](]{1793}*THEN:\[A]{255}\[)]{1794}/expand,-fullbincode,parens_nest_limit=2000
Failed: error 186 at offset 12820: regular expression is too complicated
/(?(1)(?1)){8,}+()/debug
------------------------------------------------------------------
0 181 Bra
5 159 Once
10 13 Cond
15 1 Cond ref
18 169 Recurse
23 13 Ket
28 13 Cond
33 1 Cond ref
36 169 Recurse
41 13 Ket
46 13 Cond
51 1 Cond ref
54 169 Recurse
59 13 Ket
64 13 Cond
69 1 Cond ref
72 169 Recurse
77 13 Ket
82 13 Cond
87 1 Cond ref
90 169 Recurse
95 13 Ket
100 13 Cond
105 1 Cond ref
108 169 Recurse
113 13 Ket
118 13 Cond
123 1 Cond ref
126 169 Recurse
131 13 Ket
136 23 SBraPos
141 13 SCond
146 1 Cond ref
149 169 Recurse
154 13 Ket
159 23 KetRpos
164 159 Ket
169 7 CBra 1
176 7 Ket
181 181 Ket
186 End
------------------------------------------------------------------
Capture group count = 1
Max back reference = 1
May match empty string
Subject length lower bound = 0
abcd
0:
1:
/(?(1)|a(?1)b){2,}+()/debug
------------------------------------------------------------------
0 91 Bra
5 69 Once
10 8 Cond
15 1 Cond ref
18 14 Alt
23 a
25 79 Recurse
30 b
32 22 Ket
37 32 SBraPos
42 8 SCond
47 1 Cond ref
50 14 Alt
55 a
57 79 Recurse
62 b
64 22 Ket
69 32 KetRpos
74 69 Ket
79 7 CBra 1
86 7 Ket
91 91 Ket
96 End
------------------------------------------------------------------
Capture group count = 1
Max back reference = 1
May match empty string
Subject length lower bound = 0
abcde
No match
/((?1)(?2)(?3)(?4)(?5)(?6)(?7)(?8)(?9)(?9)(?8)(?7)(?6)(?5)(?4)(?3)(?2)(?1)(?0)){2,}()()()()()()()()()/debug
------------------------------------------------------------------
0 327 Bra
5 102 CBra 1
12 5 Recurse
17 219 Recurse
22 231 Recurse
27 243 Recurse
32 255 Recurse
37 267 Recurse
42 279 Recurse
47 291 Recurse
52 303 Recurse
57 303 Recurse
62 291 Recurse
67 279 Recurse
72 267 Recurse
77 255 Recurse
82 243 Recurse
87 231 Recurse
92 219 Recurse
97 5 Recurse
102 0 Recurse
107 102 Ket
112 102 SCBra 1
119 5 Recurse
124 219 Recurse
129 231 Recurse
134 243 Recurse
139 255 Recurse
144 267 Recurse
149 279 Recurse
154 291 Recurse
159 303 Recurse
164 303 Recurse
169 291 Recurse
174 279 Recurse
179 267 Recurse
184 255 Recurse
189 243 Recurse
194 231 Recurse
199 219 Recurse
204 5 Recurse
209 0 Recurse
214 102 KetRmax
219 7 CBra 2
226 7 Ket
231 7 CBra 3
238 7 Ket
243 7 CBra 4
250 7 Ket
255 7 CBra 5
262 7 Ket
267 7 CBra 6
274 7 Ket
279 7 CBra 7
286 7 Ket
291 7 CBra 8
298 7 Ket
303 7 CBra 9
310 7 Ket
315 7 CBra 10
322 7 Ket
327 327 Ket
332 End
------------------------------------------------------------------
Capture group count = 10
May match empty string
Subject length lower bound = 0
/([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00](*ACCEPT)/
Failed: error 114 at offset 509: missing closing parenthesis
/([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00]([00](*ACCEPT)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))/-fullbincode
#pattern -fullbincode
/\[()]{65535}/expand
# End of testinput8
|