3 # File has two sections, divided by a line of dashes '-'.
5 # Lines beginning with # are ignored, except for those that start with #*
6 # which are included in pod/perldebguts.pod. # within a line may be part
9 # First section is for regops, second section is for regmatch-states
11 # Note that the order in this file is important.
13 # Format for first section:
14 # NAME \s+ TYPE, arg-description [num-args] [flags] [longjump] ; DESCRIPTION
15 # flag <S> means is REGNODE_SIMPLE; flag <V> means is REGNODE_VARIES; <.> is
17 # longjump is 1 if the (first) argument holds the next offset.
20 # run perl regen.pl after editing this file
26 END END, no ; End of program.
27 SUCCEED END, no ; Return from a subroutine, basically.
29 #* Line Start Anchors:
30 #Note flags field for SBOL indicates if it is a /^/ or a /\A/
31 SBOL BOL, no ; Match "" at beginning of line: /^/, /\A/
32 MBOL BOL, no ; Same, assuming multiline: /^/m
35 SEOL EOL, no ; Match "" at end of line: /$/
36 MEOL EOL, no ; Same, assuming multiline: /$/m
37 EOS EOL, no ; Match "" at end of string: /\z/
39 #* Match Start Anchors:
40 GPOS GPOS, no ; Matches where last m//g left off.
42 #* Word Boundary Opcodes:
43 # The regops that have varieties that vary depending on the character set regex
44 # modifiers have to ordered thusly: /d, /l, /u, /a, /aa. This is because code
45 # in regcomp.c uses the enum value of the modifier as an offset from the /d
46 # version. The complements must come after the non-complements.
47 # BOUND, POSIX and their complements are affected, as well as EXACTF.
48 BOUND BOUND, no ; Like BOUNDA for non-utf8, otherwise match "" between any Unicode \w\W or \W\w
49 BOUNDL BOUND, no ; Like BOUND/BOUNDU, but \w and \W are defined by current locale
50 BOUNDU BOUND, no ; Match "" at any boundary of a given type using Unicode rules
51 BOUNDA BOUND, no ; Match "" at any boundary between \w\W or \W\w, where \w is [_a-zA-Z0-9]
52 # All NBOUND nodes are required by code in regexec.c to be greater than all BOUND ones
53 NBOUND NBOUND, no ; Like NBOUNDA for non-utf8, otherwise match "" between any Unicode \w\w or \W\W
54 NBOUNDL NBOUND, no ; Like NBOUND/NBOUNDU, but \w and \W are defined by current locale
55 NBOUNDU NBOUND, no ; Match "" at any non-boundary of a given type using using Unicode rules
56 NBOUNDA NBOUND, no ; Match "" betweeen any \w\w or \W\W, where \w is [_a-zA-Z0-9]
58 #* [Special] alternatives:
59 REG_ANY REG_ANY, no 0 S ; Match any one character (except newline).
60 SANY REG_ANY, no 0 S ; Match any one character.
61 ANYOF ANYOF, sv charclass S ; Match character in (or not in) this class, single char match only
62 ANYOFD ANYOF, sv charclass S ; Like ANYOF, but /d is in effect
63 ANYOFL ANYOF, sv charclass S ; Like ANYOF, but /l is in effect
64 ANYOFPOSIXL ANYOF, sv charclass_posixl S ; Like ANYOFL, but matches [[:posix:]] classes
65 ANYOFM ANYOFM byte 1 S ; Like ANYOF, but matches an invariant byte as determined by the mask and arg
66 NANYOFM ANYOFM byte 1 S ; complement of ANYOFM
68 #* POSIX Character Classes:
69 # Order of the below is important. See ordering comment above.
70 POSIXD POSIXD, none 0 S ; Some [[:class:]] under /d; the FLAGS field gives which one
71 POSIXL POSIXD, none 0 S ; Some [[:class:]] under /l; the FLAGS field gives which one
72 POSIXU POSIXD, none 0 S ; Some [[:class:]] under /u; the FLAGS field gives which one
73 POSIXA POSIXD, none 0 S ; Some [[:class:]] under /a; the FLAGS field gives which one
74 NPOSIXD NPOSIXD, none 0 S ; complement of POSIXD, [[:^class:]]
75 NPOSIXL NPOSIXD, none 0 S ; complement of POSIXL, [[:^class:]]
76 NPOSIXU NPOSIXD, none 0 S ; complement of POSIXU, [[:^class:]]
77 NPOSIXA NPOSIXD, none 0 S ; complement of POSIXA, [[:^class:]]
78 # End of order is important
80 ASCII ASCII, none 0 S ; [[:ascii:]]
81 NASCII ASCII, none 0 S ; [[:^ascii:]]
83 CLUMP CLUMP, no 0 V ; Match any extended grapheme cluster sequence
87 #* BRANCH The set of branches constituting a single choice are
88 #* hooked together with their "next" pointers, since
89 #* precedence prevents anything being concatenated to
90 #* any individual branch. The "next" pointer of the last
91 #* BRANCH in a choice points to the thing following the
92 #* whole choice. This is also where the final "next"
93 #* pointer of each individual branch points; each branch
94 #* starts with the operand node of a BRANCH node.
96 BRANCH BRANCH, node 0 V ; Match this alternative, or the next...
99 # NOTE: the relative ordering of these types is important do not change it
101 EXACT EXACT, str ; Match this string (preceded by length).
102 EXACTL EXACT, str ; Like EXACT, but /l is in effect (used so locale-related warnings can be checked for).
103 EXACTF EXACT, str ; Match this non-UTF-8 string (not guaranteed to be folded) using /id rules (w/len).
104 EXACTFL EXACT, str ; Match this string (not guaranteed to be folded) using /il rules (w/len).
105 EXACTFU EXACT, str ; Match this string (folded iff in UTF-8, length in folding doesn't change if not in UTF-8) using /iu rules (w/len).
106 EXACTFAA EXACT, str ; Match this string (not guaranteed to be folded) using /iaa rules (w/len).
108 # End of important relative ordering.
110 EXACTFU_SS EXACT, str ; Match this string (folded iff in UTF-8, length in folding may change even if not in UTF-8) using /iu rules (w/len).
111 EXACTFLU8 EXACT, str ; Rare circumstances: like EXACTFU, but is under /l, UTF-8, folded, and everything in it is above 255.
112 EXACTFAA_NO_TRIE EXACT, str ; Match this string (which is not trie-able; not guaranteed to be folded) using /iaa rules (w/len).
116 NOTHING NOTHING, no ; Match empty string.
117 #*A variant of above which delimits a group, thus stops optimizations
118 TAIL NOTHING, no ; Match empty string. Can jump here from outside.
122 #* STAR,PLUS '?', and complex '*' and '+', are implemented as
123 #* circular BRANCH structures. Simple cases
124 #* (one character per match) are implemented with STAR
125 #* and PLUS for speed and to minimize recursive plunges.
127 STAR STAR, node 0 V ; Match this (simple) thing 0 or more times.
128 PLUS PLUS, node 0 V ; Match this (simple) thing 1 or more times.
130 CURLY CURLY, sv 2 V ; Match this simple thing {n,m} times.
131 CURLYN CURLY, no 2 V ; Capture next-after-this simple thing
132 CURLYM CURLY, no 2 V ; Capture this medium-complex thing {n,m} times.
133 CURLYX CURLY, sv 2 V ; Match this complex thing {n,m} times.
135 #*This terminator creates a loop structure for CURLYX
136 WHILEM WHILEM, no 0 V ; Do curly processing and see if rest matches.
140 #*OPEN,CLOSE,GROUPP ...are numbered at compile time.
141 OPEN OPEN, num 1 ; Mark this point in input as start of #n.
142 CLOSE CLOSE, num 1 ; Close corresponding OPEN of #n.
143 SROPEN SROPEN, none ; Same as OPEN, but for script run
144 SRCLOSE SRCLOSE, none ; Close preceding SROPEN
146 REF REF, num 1 V ; Match some already matched string
147 REFF REF, num 1 V ; Match already matched string, folded using native charset rules for non-utf8
148 REFFL REF, num 1 V ; Match already matched string, folded in loc.
149 # N?REFF[AU] could have been implemented using the FLAGS field of the
150 # regnode, but by having a separate node type, we can use the existing switch
151 # statement to avoid some tests
152 REFFU REF, num 1 V ; Match already matched string, folded using unicode rules for non-utf8
153 REFFA REF, num 1 V ; Match already matched string, folded using unicode rules for non-utf8, no mixing ASCII, non-ASCII
155 #*Named references. Code in regcomp.c assumes that these all are after
156 #*the numbered references
157 NREF REF, no-sv 1 V ; Match some already matched string
158 NREFF REF, no-sv 1 V ; Match already matched string, folded using native charset rules for non-utf8
159 NREFFL REF, no-sv 1 V ; Match already matched string, folded in loc.
160 NREFFU REF, num 1 V ; Match already matched string, folded using unicode rules for non-utf8
161 NREFFA REF, num 1 V ; Match already matched string, folded using unicode rules for non-utf8, no mixing ASCII, non-ASCII
163 #*Support for long RE
164 LONGJMP LONGJMP, off 1 . 1 ; Jump far away.
165 BRANCHJ BRANCHJ, off 1 V 1 ; BRANCH with long offset.
167 #*Special Case Regops
168 IFMATCH BRANCHJ, off 1 . 1 ; Succeeds if the following matches.
169 UNLESSM BRANCHJ, off 1 . 1 ; Fails if the following matches.
170 SUSPEND BRANCHJ, off 1 V 1 ; "Independent" sub-RE.
171 IFTHEN BRANCHJ, off 1 V 1 ; Switch, should be preceded by switcher.
172 GROUPP GROUPP, num 1 ; Whether the group matched.
177 EVAL EVAL, evl/flags 2L ; Execute some Perl code.
181 MINMOD MINMOD, no ; Next operator is not greedy.
182 LOGICAL LOGICAL, no ; Next opcode should set the flag only.
184 #*This is not used yet
185 RENUM BRANCHJ, off 1 . 1 ; Group with independently numbered parens.
189 #* Behave the same as A|LIST|OF|WORDS would. The '..C' variants
190 #* have inline charclass data (ascii only), the 'C' store it in the
192 # NOTE: the relative order of the TRIE-like regops is significant
194 TRIE TRIE, trie 1 ; Match many EXACT(F[ALU]?)? at once. flags==type
195 TRIEC TRIE,trie charclass ; Same as TRIE, but with embedded charclass data
197 # For start classes, contains an added fail table.
198 AHOCORASICK TRIE, trie 1 ; Aho Corasick stclass. flags==type
199 AHOCORASICKC TRIE,trie charclass ; Same as AHOCORASICK, but with embedded charclass data
202 GOSUB GOSUB, num/ofs 2L ; recurse to paren arg1 at (signed) ofs arg2
204 #*Special conditionals
205 NGROUPP NGROUPP, no-sv 1 ; Whether the group matched.
206 INSUBP INSUBP, num 1 ; Whether we are in a specific recurse.
207 DEFINEP DEFINEP, none 1 ; Never execute directly.
210 ENDLIKE ENDLIKE, none ; Used only for the type field of verbs
211 OPFAIL ENDLIKE, no-sv 1 ; Same as (?!), but with verb arg
212 ACCEPT ENDLIKE, no-sv/num 2L ; Accepts the current matched string, with verbar
214 #*Verbs With Arguments
215 VERB VERB, no-sv 1 ; Used only for the type field of verbs
216 PRUNE VERB, no-sv 1 ; Pattern fails at this startpoint if no-backtracking through this
217 MARKPOINT VERB, no-sv 1 ; Push the current location for rollback by cut.
218 SKIP VERB, no-sv 1 ; On failure skip forward (to the mark) before retrying
219 COMMIT VERB, no-sv 1 ; Pattern fails outright if backtracking through this
220 CUTGROUP VERB, no-sv 1 ; On failure go to the next alternation in the group
222 #*Control what to keep in $&.
223 KEEPS KEEPS, no ; $& begins here.
225 #*New charclass like patterns
226 LNBREAK LNBREAK, none ; generic newline pattern
228 # NEW STUFF SOMEWHERE ABOVE THIS LINE
230 ################################################################################
234 #* This is not really a node, but an optimized away piece of a "long"
235 #* node. To simplify debugging output, we mark it as if it were a node
236 OPTIMIZED NOTHING, off ; Placeholder for dump.
238 #* Special opcode with the property that no opcode in a compiled program
239 #* will ever be of this type. Thus it can be used as a flag value that
240 #* no other opcode has been seen. END is used similarly, in that an END
241 #* node cant be optimized. So END implies "unoptimizable" and PSEUDO
242 #* mean "not seen anything to optimize yet".
243 PSEUDO PSEUDO, off ; Pseudo opcode for internal use.
245 -------------------------------------------------------------------------------
246 # Format for second section:
247 # REGOP \t typelist [ \t typelist]
252 # Anything below is a state
256 EVAL B,postponed_AB:FAIL
258 WHILEM A_pre,A_min,A_max,B_min,B_max:FAIL
262 CURLY B_min,B_max:FAIL