Mercurial > vim
annotate src/regexp.c @ 15248:1e57afb3e8e9
Added tag v8.1.0632 for changeset 336728a577f564977cc90ce7fd946546ac8f4ca5
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 24 Dec 2018 20:30:05 +0100 |
parents | de63593896b3 |
children | 7fff2d18e191 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * Handling of regular expressions: vim_regcomp(), vim_regexec(), vim_regsub() | |
4 * | |
5 * NOTICE: | |
6 * | |
7 * This is NOT the original regular expression code as written by Henry | |
8 * Spencer. This code has been modified specifically for use with the VIM | |
9 * editor, and should not be used separately from Vim. If you want a good | |
10 * regular expression library, get the original code. The copyright notice | |
11 * that follows is from the original. | |
12 * | |
13 * END NOTICE | |
14 * | |
15 * Copyright (c) 1986 by University of Toronto. | |
16 * Written by Henry Spencer. Not derived from licensed software. | |
17 * | |
18 * Permission is granted to anyone to use this software for any | |
19 * purpose on any computer system, and to redistribute it freely, | |
20 * subject to the following restrictions: | |
21 * | |
22 * 1. The author is not responsible for the consequences of use of | |
23 * this software, no matter how awful, even if they arise | |
24 * from defects in it. | |
25 * | |
26 * 2. The origin of this software must not be misrepresented, either | |
27 * by explicit claim or by omission. | |
28 * | |
29 * 3. Altered versions must be plainly marked as such, and must not | |
30 * be misrepresented as being the original software. | |
31 * | |
32 * Beware that some of this code is subtly aware of the way operator | |
33 * precedence is structured in regular expressions. Serious changes in | |
34 * regular-expression syntax might require a total rethink. | |
35 * | |
24 | 36 * Changes have been made by Tony Andrews, Olaf 'Rhialto' Seibert, Robert |
37 * Webb, Ciaran McCreesh and Bram Moolenaar. | |
7 | 38 * Named character class support added by Walter Briscoe (1998 Jul 01) |
39 */ | |
40 | |
4444 | 41 /* Uncomment the first if you do not want to see debugging logs or files |
42 * related to regular expressions, even when compiling with -DDEBUG. | |
43 * Uncomment the second to get the regexp debugging. */ | |
44 /* #undef DEBUG */ | |
45 /* #define DEBUG */ | |
46 | |
7 | 47 #include "vim.h" |
48 | |
4444 | 49 #ifdef DEBUG |
50 /* show/save debugging data when BT engine is used */ | |
51 # define BT_REGEXP_DUMP | |
52 /* save the debugging data to a file instead of displaying it */ | |
53 # define BT_REGEXP_LOG | |
4460 | 54 # define BT_REGEXP_DEBUG_LOG |
55 # define BT_REGEXP_DEBUG_LOG_NAME "bt_regexp_debug.log" | |
4444 | 56 #endif |
7 | 57 |
58 /* | |
59 * The "internal use only" fields in regexp.h are present to pass info from | |
60 * compile to execute that permits the execute phase to run lots faster on | |
61 * simple cases. They are: | |
62 * | |
63 * regstart char that must begin a match; NUL if none obvious; Can be a | |
64 * multi-byte character. | |
65 * reganch is the match anchored (at beginning-of-line only)? | |
66 * regmust string (pointer into program) that match must include, or NULL | |
67 * regmlen length of regmust string | |
68 * regflags RF_ values or'ed together | |
69 * | |
70 * Regstart and reganch permit very fast decisions on suitable starting points | |
71 * for a match, cutting down the work a lot. Regmust permits fast rejection | |
72 * of lines that cannot possibly match. The regmust tests are costly enough | |
73 * that vim_regcomp() supplies a regmust only if the r.e. contains something | |
74 * potentially expensive (at present, the only such thing detected is * or + | |
75 * at the start of the r.e., which can involve a lot of backup). Regmlen is | |
76 * supplied because the test in vim_regexec() needs it and vim_regcomp() is | |
77 * computing it anyway. | |
78 */ | |
79 | |
80 /* | |
81 * Structure for regexp "program". This is essentially a linear encoding | |
82 * of a nondeterministic finite-state machine (aka syntax charts or | |
83 * "railroad normal form" in parsing technology). Each node is an opcode | |
84 * plus a "next" pointer, possibly plus an operand. "Next" pointers of | |
85 * all nodes except BRANCH and BRACES_COMPLEX implement concatenation; a "next" | |
86 * pointer with a BRANCH on both ends of it is connecting two alternatives. | |
87 * (Here we have one of the subtle syntax dependencies: an individual BRANCH | |
88 * (as opposed to a collection of them) is never concatenated with anything | |
89 * because of operator precedence). The "next" pointer of a BRACES_COMPLEX | |
167 | 90 * node points to the node after the stuff to be repeated. |
91 * The operand of some types of node is a literal string; for others, it is a | |
92 * node leading into a sub-FSM. In particular, the operand of a BRANCH node | |
93 * is the first node of the branch. | |
94 * (NB this is *not* a tree structure: the tail of the branch connects to the | |
95 * thing following the set of BRANCHes.) | |
7 | 96 * |
97 * pattern is coded like: | |
98 * | |
99 * +-----------------+ | |
100 * | V | |
101 * <aa>\|<bb> BRANCH <aa> BRANCH <bb> --> END | |
102 * | ^ | ^ | |
103 * +------+ +----------+ | |
104 * | |
105 * | |
106 * +------------------+ | |
107 * V | | |
108 * <aa>* BRANCH BRANCH <aa> --> BACK BRANCH --> NOTHING --> END | |
109 * | | ^ ^ | |
110 * | +---------------+ | | |
111 * +---------------------------------------------+ | |
112 * | |
113 * | |
167 | 114 * +----------------------+ |
115 * V | | |
233 | 116 * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END |
856 | 117 * | | ^ ^ |
118 * | +-----------+ | | |
179 | 119 * +--------------------------------------------------+ |
167 | 120 * |
121 * | |
7 | 122 * +-------------------------+ |
123 * V | | |
124 * <aa>\{} BRANCH BRACE_LIMITS --> BRACE_COMPLEX <aa> --> BACK END | |
125 * | | ^ | |
126 * | +----------------+ | |
127 * +-----------------------------------------------+ | |
128 * | |
129 * | |
130 * <aa>\@!<bb> BRANCH NOMATCH <aa> --> END <bb> --> END | |
131 * | | ^ ^ | |
132 * | +----------------+ | | |
133 * +--------------------------------+ | |
134 * | |
135 * +---------+ | |
136 * | V | |
137 * \z[abc] BRANCH BRANCH a BRANCH b BRANCH c BRANCH NOTHING --> END | |
138 * | | | | ^ ^ | |
139 * | | | +-----+ | | |
140 * | | +----------------+ | | |
141 * | +---------------------------+ | | |
142 * +------------------------------------------------------+ | |
143 * | |
1209 | 144 * They all start with a BRANCH for "\|" alternatives, even when there is only |
7 | 145 * one alternative. |
146 */ | |
147 | |
148 /* | |
149 * The opcodes are: | |
150 */ | |
151 | |
152 /* definition number opnd? meaning */ | |
153 #define END 0 /* End of program or NOMATCH operand. */ | |
154 #define BOL 1 /* Match "" at beginning of line. */ | |
155 #define EOL 2 /* Match "" at end of line. */ | |
156 #define BRANCH 3 /* node Match this alternative, or the | |
157 * next... */ | |
158 #define BACK 4 /* Match "", "next" ptr points backward. */ | |
159 #define EXACTLY 5 /* str Match this string. */ | |
160 #define NOTHING 6 /* Match empty string. */ | |
161 #define STAR 7 /* node Match this (simple) thing 0 or more | |
162 * times. */ | |
163 #define PLUS 8 /* node Match this (simple) thing 1 or more | |
164 * times. */ | |
165 #define MATCH 9 /* node match the operand zero-width */ | |
166 #define NOMATCH 10 /* node check for no match with operand */ | |
167 #define BEHIND 11 /* node look behind for a match with operand */ | |
168 #define NOBEHIND 12 /* node look behind for no match with operand */ | |
169 #define SUBPAT 13 /* node match the operand here */ | |
170 #define BRACE_SIMPLE 14 /* node Match this (simple) thing between m and | |
171 * n times (\{m,n\}). */ | |
172 #define BOW 15 /* Match "" after [^a-zA-Z0-9_] */ | |
173 #define EOW 16 /* Match "" at [^a-zA-Z0-9_] */ | |
174 #define BRACE_LIMITS 17 /* nr nr define the min & max for BRACE_SIMPLE | |
175 * and BRACE_COMPLEX. */ | |
176 #define NEWL 18 /* Match line-break */ | |
177 #define BHPOS 19 /* End position for BEHIND or NOBEHIND */ | |
178 | |
179 | |
180 /* character classes: 20-48 normal, 50-78 include a line-break */ | |
181 #define ADD_NL 30 | |
182 #define FIRST_NL ANY + ADD_NL | |
183 #define ANY 20 /* Match any one character. */ | |
184 #define ANYOF 21 /* str Match any character in this string. */ | |
185 #define ANYBUT 22 /* str Match any character not in this | |
186 * string. */ | |
187 #define IDENT 23 /* Match identifier char */ | |
188 #define SIDENT 24 /* Match identifier char but no digit */ | |
189 #define KWORD 25 /* Match keyword char */ | |
190 #define SKWORD 26 /* Match word char but no digit */ | |
191 #define FNAME 27 /* Match file name char */ | |
192 #define SFNAME 28 /* Match file name char but no digit */ | |
193 #define PRINT 29 /* Match printable char */ | |
194 #define SPRINT 30 /* Match printable char but no digit */ | |
195 #define WHITE 31 /* Match whitespace char */ | |
196 #define NWHITE 32 /* Match non-whitespace char */ | |
197 #define DIGIT 33 /* Match digit char */ | |
198 #define NDIGIT 34 /* Match non-digit char */ | |
199 #define HEX 35 /* Match hex char */ | |
200 #define NHEX 36 /* Match non-hex char */ | |
201 #define OCTAL 37 /* Match octal char */ | |
202 #define NOCTAL 38 /* Match non-octal char */ | |
203 #define WORD 39 /* Match word char */ | |
204 #define NWORD 40 /* Match non-word char */ | |
205 #define HEAD 41 /* Match head char */ | |
206 #define NHEAD 42 /* Match non-head char */ | |
207 #define ALPHA 43 /* Match alpha char */ | |
208 #define NALPHA 44 /* Match non-alpha char */ | |
209 #define LOWER 45 /* Match lowercase char */ | |
210 #define NLOWER 46 /* Match non-lowercase char */ | |
211 #define UPPER 47 /* Match uppercase char */ | |
212 #define NUPPER 48 /* Match non-uppercase char */ | |
213 #define LAST_NL NUPPER + ADD_NL | |
214 #define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL) | |
215 | |
216 #define MOPEN 80 /* -89 Mark this point in input as start of | |
217 * \( subexpr. MOPEN + 0 marks start of | |
218 * match. */ | |
219 #define MCLOSE 90 /* -99 Analogous to MOPEN. MCLOSE + 0 marks | |
220 * end of match. */ | |
221 #define BACKREF 100 /* -109 node Match same string again \1-\9 */ | |
222 | |
223 #ifdef FEAT_SYN_HL | |
224 # define ZOPEN 110 /* -119 Mark this point in input as start of | |
225 * \z( subexpr. */ | |
226 # define ZCLOSE 120 /* -129 Analogous to ZOPEN. */ | |
227 # define ZREF 130 /* -139 node Match external submatch \z1-\z9 */ | |
228 #endif | |
229 | |
230 #define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */ | |
231 | |
232 #define NOPEN 150 /* Mark this point in input as start of | |
233 \%( subexpr. */ | |
234 #define NCLOSE 151 /* Analogous to NOPEN. */ | |
235 | |
236 #define MULTIBYTECODE 200 /* mbc Match one multi-byte character */ | |
237 #define RE_BOF 201 /* Match "" at beginning of file. */ | |
238 #define RE_EOF 202 /* Match "" at end of file. */ | |
239 #define CURSOR 203 /* Match location of cursor. */ | |
240 | |
241 #define RE_LNUM 204 /* nr cmp Match line number */ | |
242 #define RE_COL 205 /* nr cmp Match column number */ | |
243 #define RE_VCOL 206 /* nr cmp Match virtual column number */ | |
244 | |
639 | 245 #define RE_MARK 207 /* mark cmp Match mark position */ |
246 #define RE_VISUAL 208 /* Match Visual area */ | |
5901 | 247 #define RE_COMPOSING 209 /* any composing characters */ |
639 | 248 |
7 | 249 /* |
250 * Magic characters have a special meaning, they don't match literally. | |
251 * Magic characters are negative. This separates them from literal characters | |
252 * (possibly multi-byte). Only ASCII characters can be Magic. | |
253 */ | |
254 #define Magic(x) ((int)(x) - 256) | |
255 #define un_Magic(x) ((x) + 256) | |
256 #define is_Magic(x) ((x) < 0) | |
257 | |
258 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
259 no_Magic(int x) |
7 | 260 { |
261 if (is_Magic(x)) | |
262 return un_Magic(x); | |
263 return x; | |
264 } | |
265 | |
266 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
267 toggle_Magic(int x) |
7 | 268 { |
269 if (is_Magic(x)) | |
270 return un_Magic(x); | |
271 return Magic(x); | |
272 } | |
273 | |
274 /* | |
275 * The first byte of the regexp internal "program" is actually this magic | |
276 * number; the start node begins in the second byte. It's used to catch the | |
277 * most severe mutilation of the program by the caller. | |
278 */ | |
279 | |
280 #define REGMAGIC 0234 | |
281 | |
282 /* | |
283 * Opcode notes: | |
284 * | |
285 * BRANCH The set of branches constituting a single choice are hooked | |
286 * together with their "next" pointers, since precedence prevents | |
287 * anything being concatenated to any individual branch. The | |
288 * "next" pointer of the last BRANCH in a choice points to the | |
289 * thing following the whole choice. This is also where the | |
290 * final "next" pointer of each individual branch points; each | |
291 * branch starts with the operand node of a BRANCH node. | |
292 * | |
293 * BACK Normal "next" pointers all implicitly point forward; BACK | |
294 * exists to make loop structures possible. | |
295 * | |
296 * STAR,PLUS '=', and complex '*' and '+', are implemented as circular | |
297 * BRANCH structures using BACK. Simple cases (one character | |
298 * per match) are implemented with STAR and PLUS for speed | |
299 * and to minimize recursive plunges. | |
300 * | |
301 * BRACE_LIMITS This is always followed by a BRACE_SIMPLE or BRACE_COMPLEX | |
302 * node, and defines the min and max limits to be used for that | |
303 * node. | |
304 * | |
305 * MOPEN,MCLOSE ...are numbered at compile time. | |
306 * ZOPEN,ZCLOSE ...ditto | |
307 */ | |
308 | |
309 /* | |
310 * A node is one char of opcode followed by two chars of "next" pointer. | |
311 * "Next" pointers are stored as two 8-bit bytes, high order first. The | |
312 * value is a positive offset from the opcode of the node containing it. | |
313 * An operand, if any, simply follows the node. (Note that much of the | |
314 * code generation knows about this implicit relationship.) | |
315 * | |
316 * Using two bytes for the "next" pointer is vast overkill for most things, | |
317 * but allows patterns to get big without disasters. | |
318 */ | |
319 #define OP(p) ((int)*(p)) | |
320 #define NEXT(p) (((*((p) + 1) & 0377) << 8) + (*((p) + 2) & 0377)) | |
321 #define OPERAND(p) ((p) + 3) | |
322 /* Obtain an operand that was stored as four bytes, MSB first. */ | |
323 #define OPERAND_MIN(p) (((long)(p)[3] << 24) + ((long)(p)[4] << 16) \ | |
324 + ((long)(p)[5] << 8) + (long)(p)[6]) | |
325 /* Obtain a second operand stored as four bytes. */ | |
326 #define OPERAND_MAX(p) OPERAND_MIN((p) + 4) | |
327 /* Obtain a second single-byte operand stored after a four bytes operand. */ | |
328 #define OPERAND_CMP(p) (p)[7] | |
329 | |
330 /* | |
331 * Utility definitions. | |
332 */ | |
333 #define UCHARAT(p) ((int)*(char_u *)(p)) | |
334 | |
335 /* Used for an error (down from) vim_regcomp(): give the error message, set | |
336 * rc_did_emsg and return NULL */ | |
653 | 337 #define EMSG_RET_NULL(m) return (EMSG(m), rc_did_emsg = TRUE, (void *)NULL) |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
338 #define IEMSG_RET_NULL(m) return (IEMSG(m), rc_did_emsg = TRUE, (void *)NULL) |
308 | 339 #define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL) |
4444 | 340 #define EMSG2_RET_NULL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, (void *)NULL) |
341 #define EMSG2_RET_FAIL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, FAIL) | |
342 #define EMSG_ONE_RET_NULL EMSG2_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL) | |
7 | 343 |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
344 |
7 | 345 #define MAX_LIMIT (32767L << 16L) |
346 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
347 static int cstrncmp(char_u *s1, char_u *s2, int *n); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
348 static char_u *cstrchr(char_u *, int); |
7 | 349 |
4444 | 350 #ifdef BT_REGEXP_DUMP |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
351 static void regdump(char_u *, bt_regprog_T *); |
4444 | 352 #endif |
7 | 353 #ifdef DEBUG |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
354 static char_u *regprop(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
355 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
356 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
357 static int re_mult_next(char *what); |
6203 | 358 |
4444 | 359 static char_u e_missingbracket[] = N_("E769: Missing ] after %s["); |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
360 static char_u e_reverse_range[] = N_("E944: Reverse range in character class"); |
11482
e691ebe6558e
patch 8.0.0624: warning for unused variable in tiny build
Christian Brabandt <cb@256bit.org>
parents:
11480
diff
changeset
|
361 #ifdef FEAT_MBYTE |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
362 static char_u e_large_class[] = N_("E945: Range too large in character class"); |
11482
e691ebe6558e
patch 8.0.0624: warning for unused variable in tiny build
Christian Brabandt <cb@256bit.org>
parents:
11480
diff
changeset
|
363 #endif |
4444 | 364 static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%("); |
365 static char_u e_unmatchedp[] = N_("E54: Unmatched %s("); | |
366 static char_u e_unmatchedpar[] = N_("E55: Unmatched %s)"); | |
4720
bd6bef0bd0fb
updated for version 7.3.1107
Bram Moolenaar <bram@vim.org>
parents:
4688
diff
changeset
|
367 #ifdef FEAT_SYN_HL |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
368 static char_u e_z_not_allowed[] = N_("E66: \\z( not allowed here"); |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
369 static char_u e_z1_not_allowed[] = N_("E67: \\z1 - \\z9 not allowed here"); |
4720
bd6bef0bd0fb
updated for version 7.3.1107
Bram Moolenaar <bram@vim.org>
parents:
4688
diff
changeset
|
370 #endif |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
371 static char_u e_missing_sb[] = N_("E69: Missing ] after %s%%["); |
4760
532a9855bd30
updated for version 7.3.1127
Bram Moolenaar <bram@vim.org>
parents:
4746
diff
changeset
|
372 static char_u e_empty_sb[] = N_("E70: Empty %s%%[]"); |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
373 static char_u e_recursive[] = N_("E956: Cannot use pattern recursively"); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
374 |
7 | 375 #define NOT_MULTI 0 |
376 #define MULTI_ONE 1 | |
377 #define MULTI_MULT 2 | |
378 /* | |
379 * Return NOT_MULTI if c is not a "multi" operator. | |
380 * Return MULTI_ONE if c is a single "multi" operator. | |
381 * Return MULTI_MULT if c is a multi "multi" operator. | |
382 */ | |
383 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
384 re_multi_type(int c) |
7 | 385 { |
386 if (c == Magic('@') || c == Magic('=') || c == Magic('?')) | |
387 return MULTI_ONE; | |
388 if (c == Magic('*') || c == Magic('+') || c == Magic('{')) | |
389 return MULTI_MULT; | |
390 return NOT_MULTI; | |
391 } | |
392 | |
393 /* | |
394 * Flags to be passed up and down. | |
395 */ | |
396 #define HASWIDTH 0x1 /* Known never to match null string. */ | |
397 #define SIMPLE 0x2 /* Simple enough to be STAR/PLUS operand. */ | |
398 #define SPSTART 0x4 /* Starts with * or +. */ | |
399 #define HASNL 0x8 /* Contains some \n. */ | |
400 #define HASLOOKBH 0x10 /* Contains "\@<=" or "\@<!". */ | |
401 #define WORST 0 /* Worst case. */ | |
402 | |
403 /* | |
404 * When regcode is set to this value, code is not emitted and size is computed | |
405 * instead. | |
406 */ | |
407 #define JUST_CALC_SIZE ((char_u *) -1) | |
408 | |
359 | 409 static char_u *reg_prev_sub = NULL; |
410 | |
7 | 411 /* |
412 * REGEXP_INRANGE contains all characters which are always special in a [] | |
413 * range after '\'. | |
414 * REGEXP_ABBR contains all characters which act as abbreviations after '\'. | |
415 * These are: | |
416 * \n - New line (NL). | |
417 * \r - Carriage Return (CR). | |
418 * \t - Tab (TAB). | |
419 * \e - Escape (ESC). | |
420 * \b - Backspace (Ctrl_H). | |
24 | 421 * \d - Character code in decimal, eg \d123 |
422 * \o - Character code in octal, eg \o80 | |
423 * \x - Character code in hex, eg \x4a | |
424 * \u - Multibyte character code, eg \u20ac | |
425 * \U - Long multibyte character code, eg \U12345678 | |
7 | 426 */ |
427 static char_u REGEXP_INRANGE[] = "]^-n\\"; | |
24 | 428 static char_u REGEXP_ABBR[] = "nrtebdoxuU"; |
7 | 429 |
430 /* | |
431 * Translate '\x' to its control character, except "\n", which is Magic. | |
432 */ | |
433 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
434 backslash_trans(int c) |
7 | 435 { |
436 switch (c) | |
437 { | |
438 case 'r': return CAR; | |
439 case 't': return TAB; | |
440 case 'e': return ESC; | |
441 case 'b': return BS; | |
442 } | |
443 return c; | |
444 } | |
445 | |
446 /* | |
167 | 447 * Check for a character class name "[:name:]". "pp" points to the '['. |
7 | 448 * Returns one of the CLASS_ items. CLASS_NONE means that no item was |
449 * recognized. Otherwise "pp" is advanced to after the item. | |
450 */ | |
451 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
452 get_char_class(char_u **pp) |
7 | 453 { |
454 static const char *(class_names[]) = | |
455 { | |
456 "alnum:]", | |
457 #define CLASS_ALNUM 0 | |
458 "alpha:]", | |
459 #define CLASS_ALPHA 1 | |
460 "blank:]", | |
461 #define CLASS_BLANK 2 | |
462 "cntrl:]", | |
463 #define CLASS_CNTRL 3 | |
464 "digit:]", | |
465 #define CLASS_DIGIT 4 | |
466 "graph:]", | |
467 #define CLASS_GRAPH 5 | |
468 "lower:]", | |
469 #define CLASS_LOWER 6 | |
470 "print:]", | |
471 #define CLASS_PRINT 7 | |
472 "punct:]", | |
473 #define CLASS_PUNCT 8 | |
474 "space:]", | |
475 #define CLASS_SPACE 9 | |
476 "upper:]", | |
477 #define CLASS_UPPER 10 | |
478 "xdigit:]", | |
479 #define CLASS_XDIGIT 11 | |
480 "tab:]", | |
481 #define CLASS_TAB 12 | |
482 "return:]", | |
483 #define CLASS_RETURN 13 | |
484 "backspace:]", | |
485 #define CLASS_BACKSPACE 14 | |
486 "escape:]", | |
487 #define CLASS_ESCAPE 15 | |
488 }; | |
489 #define CLASS_NONE 99 | |
490 int i; | |
491 | |
492 if ((*pp)[1] == ':') | |
493 { | |
1877 | 494 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i) |
7 | 495 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) |
496 { | |
497 *pp += STRLEN(class_names[i]) + 2; | |
498 return i; | |
499 } | |
500 } | |
501 return CLASS_NONE; | |
502 } | |
503 | |
504 /* | |
505 * Specific version of character class functions. | |
506 * Using a table to keep this fast. | |
507 */ | |
508 static short class_tab[256]; | |
509 | |
510 #define RI_DIGIT 0x01 | |
511 #define RI_HEX 0x02 | |
512 #define RI_OCTAL 0x04 | |
513 #define RI_WORD 0x08 | |
514 #define RI_HEAD 0x10 | |
515 #define RI_ALPHA 0x20 | |
516 #define RI_LOWER 0x40 | |
517 #define RI_UPPER 0x80 | |
518 #define RI_WHITE 0x100 | |
519 | |
520 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
521 init_class_tab(void) |
7 | 522 { |
523 int i; | |
524 static int done = FALSE; | |
525 | |
526 if (done) | |
527 return; | |
528 | |
529 for (i = 0; i < 256; ++i) | |
530 { | |
531 if (i >= '0' && i <= '7') | |
532 class_tab[i] = RI_DIGIT + RI_HEX + RI_OCTAL + RI_WORD; | |
533 else if (i >= '8' && i <= '9') | |
534 class_tab[i] = RI_DIGIT + RI_HEX + RI_WORD; | |
535 else if (i >= 'a' && i <= 'f') | |
536 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
537 #ifdef EBCDIC | |
538 else if ((i >= 'g' && i <= 'i') || (i >= 'j' && i <= 'r') | |
539 || (i >= 's' && i <= 'z')) | |
540 #else | |
541 else if (i >= 'g' && i <= 'z') | |
542 #endif | |
543 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
544 else if (i >= 'A' && i <= 'F') | |
545 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
546 #ifdef EBCDIC | |
547 else if ((i >= 'G' && i <= 'I') || ( i >= 'J' && i <= 'R') | |
548 || (i >= 'S' && i <= 'Z')) | |
549 #else | |
550 else if (i >= 'G' && i <= 'Z') | |
551 #endif | |
552 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
553 else if (i == '_') | |
554 class_tab[i] = RI_WORD + RI_HEAD; | |
555 else | |
556 class_tab[i] = 0; | |
557 } | |
558 class_tab[' '] |= RI_WHITE; | |
559 class_tab['\t'] |= RI_WHITE; | |
560 done = TRUE; | |
561 } | |
562 | |
563 #ifdef FEAT_MBYTE | |
564 # define ri_digit(c) (c < 0x100 && (class_tab[c] & RI_DIGIT)) | |
565 # define ri_hex(c) (c < 0x100 && (class_tab[c] & RI_HEX)) | |
566 # define ri_octal(c) (c < 0x100 && (class_tab[c] & RI_OCTAL)) | |
567 # define ri_word(c) (c < 0x100 && (class_tab[c] & RI_WORD)) | |
568 # define ri_head(c) (c < 0x100 && (class_tab[c] & RI_HEAD)) | |
569 # define ri_alpha(c) (c < 0x100 && (class_tab[c] & RI_ALPHA)) | |
570 # define ri_lower(c) (c < 0x100 && (class_tab[c] & RI_LOWER)) | |
571 # define ri_upper(c) (c < 0x100 && (class_tab[c] & RI_UPPER)) | |
572 # define ri_white(c) (c < 0x100 && (class_tab[c] & RI_WHITE)) | |
573 #else | |
574 # define ri_digit(c) (class_tab[c] & RI_DIGIT) | |
575 # define ri_hex(c) (class_tab[c] & RI_HEX) | |
576 # define ri_octal(c) (class_tab[c] & RI_OCTAL) | |
577 # define ri_word(c) (class_tab[c] & RI_WORD) | |
578 # define ri_head(c) (class_tab[c] & RI_HEAD) | |
579 # define ri_alpha(c) (class_tab[c] & RI_ALPHA) | |
580 # define ri_lower(c) (class_tab[c] & RI_LOWER) | |
581 # define ri_upper(c) (class_tab[c] & RI_UPPER) | |
582 # define ri_white(c) (class_tab[c] & RI_WHITE) | |
583 #endif | |
584 | |
585 /* flags for regflags */ | |
586 #define RF_ICASE 1 /* ignore case */ | |
587 #define RF_NOICASE 2 /* don't ignore case */ | |
588 #define RF_HASNL 4 /* can match a NL */ | |
589 #define RF_ICOMBINE 8 /* ignore combining characters */ | |
590 #define RF_LOOKBH 16 /* uses "\@<=" or "\@<!" */ | |
591 | |
592 /* | |
593 * Global work variables for vim_regcomp(). | |
594 */ | |
595 | |
596 static char_u *regparse; /* Input-scan pointer. */ | |
597 static int prevchr_len; /* byte length of previous char */ | |
598 static int num_complex_braces; /* Complex \{...} count */ | |
599 static int regnpar; /* () count. */ | |
600 #ifdef FEAT_SYN_HL | |
601 static int regnzpar; /* \z() count. */ | |
602 static int re_has_z; /* \z item detected */ | |
603 #endif | |
604 static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */ | |
605 static long regsize; /* Code size. */ | |
2010 | 606 static int reg_toolong; /* TRUE when offset out of range */ |
7 | 607 static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */ |
608 static unsigned regflags; /* RF_ flags for prog */ | |
609 static long brace_min[10]; /* Minimums for complex brace repeats */ | |
610 static long brace_max[10]; /* Maximums for complex brace repeats */ | |
611 static int brace_count[10]; /* Current counts for complex brace repeats */ | |
612 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
613 static int had_eol; /* TRUE when EOL found by vim_regcomp() */ | |
614 #endif | |
615 static int one_exactly = FALSE; /* only do one char for EXACTLY */ | |
616 | |
617 static int reg_magic; /* magicness of the pattern: */ | |
618 #define MAGIC_NONE 1 /* "\V" very unmagic */ | |
619 #define MAGIC_OFF 2 /* "\M" or 'magic' off */ | |
620 #define MAGIC_ON 3 /* "\m" or 'magic' */ | |
621 #define MAGIC_ALL 4 /* "\v" very magic */ | |
622 | |
623 static int reg_string; /* matching with a string instead of a buffer | |
624 line */ | |
481 | 625 static int reg_strict; /* "[abc" is illegal */ |
7 | 626 |
627 /* | |
628 * META contains all characters that may be magic, except '^' and '$'. | |
629 */ | |
630 | |
631 #ifdef EBCDIC | |
632 static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~"; | |
633 #else | |
634 /* META[] is used often enough to justify turning it into a table. */ | |
635 static char_u META_flags[] = { | |
636 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
637 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
638 /* % & ( ) * + . */ | |
639 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, | |
640 /* 1 2 3 4 5 6 7 8 9 < = > ? */ | |
641 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, | |
642 /* @ A C D F H I K L M O */ | |
643 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, | |
644 /* P S U V W X Z [ _ */ | |
645 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, | |
646 /* a c d f h i k l m n o */ | |
647 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, | |
648 /* p s u v w x z { | ~ */ | |
649 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1 | |
650 }; | |
651 #endif | |
652 | |
4444 | 653 static int curchr; /* currently parsed character */ |
654 /* Previous character. Note: prevchr is sometimes -1 when we are not at the | |
655 * start, eg in /[ ^I]^ the pattern was never found even if it existed, | |
656 * because ^ was taken to be magic -- webb */ | |
657 static int prevchr; | |
658 static int prevprevchr; /* previous-previous character */ | |
659 static int nextchr; /* used for ungetchr() */ | |
7 | 660 |
661 /* arguments for reg() */ | |
662 #define REG_NOPAREN 0 /* toplevel reg() */ | |
663 #define REG_PAREN 1 /* \(\) */ | |
664 #define REG_ZPAREN 2 /* \z(\) */ | |
665 #define REG_NPAREN 3 /* \%(\) */ | |
666 | |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
667 typedef struct |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
668 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
669 char_u *regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
670 int prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
671 int curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
672 int prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
673 int prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
674 int nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
675 int at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
676 int prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
677 int regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
678 } parse_state_T; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
679 |
7 | 680 /* |
681 * Forward declarations for vim_regcomp()'s friends. | |
682 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
683 static void initchr(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
684 static int getchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
685 static void skipchr_keepstart(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
686 static int peekchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
687 static void skipchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
688 static void ungetchr(void); |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
689 static long gethexchrs(int maxinputlen); |
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
690 static long getoctchrs(void); |
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
691 static long getdecchrs(void); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
692 static int coll_get_char(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
693 static void regcomp_start(char_u *expr, int flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
694 static char_u *reg(int, int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
695 static char_u *regbranch(int *flagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
696 static char_u *regconcat(int *flagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
697 static char_u *regpiece(int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
698 static char_u *regatom(int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
699 static char_u *regnode(int); |
714 | 700 #ifdef FEAT_MBYTE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
701 static int use_multibytecode(int c); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
702 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
703 static int prog_magic_wrong(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
704 static char_u *regnext(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
705 static void regc(int b); |
7 | 706 #ifdef FEAT_MBYTE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
707 static void regmbc(int c); |
2974 | 708 # define REGMBC(x) regmbc(x); |
709 # define CASEMBC(x) case x: | |
167 | 710 #else |
711 # define regmbc(c) regc(c) | |
2974 | 712 # define REGMBC(x) |
713 # define CASEMBC(x) | |
7 | 714 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
715 static void reginsert(int, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
716 static void reginsert_nr(int op, long val, char_u *opnd); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
717 static void reginsert_limits(int, long, long, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
718 static char_u *re_put_long(char_u *pr, long_u val); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
719 static int read_limits(long *, long *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
720 static void regtail(char_u *, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
721 static void regoptail(char_u *, char_u *); |
7 | 722 |
4444 | 723 static regengine_T bt_regengine; |
724 static regengine_T nfa_regengine; | |
725 | |
7 | 726 /* |
727 * Return TRUE if compiled regular expression "prog" can match a line break. | |
728 */ | |
729 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
730 re_multiline(regprog_T *prog) |
7 | 731 { |
732 return (prog->regflags & RF_HASNL); | |
733 } | |
734 | |
735 /* | |
736 * Return TRUE if compiled regular expression "prog" looks before the start | |
737 * position (pattern contains "\@<=" or "\@<!"). | |
738 */ | |
739 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
740 re_lookbehind(regprog_T *prog) |
7 | 741 { |
742 return (prog->regflags & RF_LOOKBH); | |
743 } | |
744 | |
745 /* | |
167 | 746 * Check for an equivalence class name "[=a=]". "pp" points to the '['. |
747 * Returns a character representing the class. Zero means that no item was | |
748 * recognized. Otherwise "pp" is advanced to after the item. | |
749 */ | |
750 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
751 get_equi_class(char_u **pp) |
167 | 752 { |
753 int c; | |
754 int l = 1; | |
755 char_u *p = *pp; | |
756 | |
757 if (p[1] == '=') | |
758 { | |
759 #ifdef FEAT_MBYTE | |
760 if (has_mbyte) | |
474 | 761 l = (*mb_ptr2len)(p + 2); |
167 | 762 #endif |
763 if (p[l + 2] == '=' && p[l + 3] == ']') | |
764 { | |
765 #ifdef FEAT_MBYTE | |
766 if (has_mbyte) | |
767 c = mb_ptr2char(p + 2); | |
768 else | |
769 #endif | |
770 c = p[2]; | |
771 *pp += l + 4; | |
772 return c; | |
773 } | |
774 } | |
775 return 0; | |
776 } | |
777 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
778 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
779 /* |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
780 * Table for equivalence class "c". (IBM-1047) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
781 */ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
782 char *EQUIVAL_CLASS_C[16] = { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
783 "A\x62\x63\x64\x65\x66\x67", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
784 "C\x68", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
785 "E\x71\x72\x73\x74", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
786 "I\x75\x76\x77\x78", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
787 "N\x69", |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
788 "O\xEB\xEC\xED\xEE\xEF\x80", |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
789 "U\xFB\xFC\xFD\xFE", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
790 "Y\xBA", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
791 "a\x42\x43\x44\x45\x46\x47", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
792 "c\x48", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
793 "e\x51\x52\x53\x54", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
794 "i\x55\x56\x57\x58", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
795 "n\x49", |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
796 "o\xCB\xCC\xCD\xCE\xCF\x70", |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
797 "u\xDB\xDC\xDD\xDE", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
798 "y\x8D\xDF", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
799 }; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
800 #endif |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
801 |
167 | 802 /* |
803 * Produce the bytes for equivalence class "c". | |
804 * Currently only handles latin1, latin9 and utf-8. | |
4444 | 805 * NOTE: When changing this function, also change nfa_emit_equi_class() |
167 | 806 */ |
807 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
808 reg_equi_class(int c) |
167 | 809 { |
810 #ifdef FEAT_MBYTE | |
811 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0 | |
492 | 812 || STRCMP(p_enc, "iso-8859-15") == 0) |
167 | 813 #endif |
814 { | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
815 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
816 int i; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
817 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
818 /* This might be slower than switch/case below. */ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
819 for (i = 0; i < 16; i++) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
820 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
821 if (vim_strchr(EQUIVAL_CLASS_C[i], c) != NULL) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
822 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
823 char *p = EQUIVAL_CLASS_C[i]; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
824 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
825 while (*p != 0) |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
826 regmbc(*p++); |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
827 return; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
828 } |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
829 } |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
830 #else |
167 | 831 switch (c) |
832 { | |
6765 | 833 /* Do not use '\300' style, it results in a negative number. */ |
834 case 'A': case 0xc0: case 0xc1: case 0xc2: | |
835 case 0xc3: case 0xc4: case 0xc5: | |
2974 | 836 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd) |
837 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2) | |
6765 | 838 regmbc('A'); regmbc(0xc0); regmbc(0xc1); |
839 regmbc(0xc2); regmbc(0xc3); regmbc(0xc4); | |
840 regmbc(0xc5); | |
2974 | 841 REGMBC(0x100) REGMBC(0x102) REGMBC(0x104) |
842 REGMBC(0x1cd) REGMBC(0x1de) REGMBC(0x1e0) | |
843 REGMBC(0x1ea2) | |
844 return; | |
845 case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06) | |
846 regmbc('B'); REGMBC(0x1e02) REGMBC(0x1e06) | |
167 | 847 return; |
6765 | 848 case 'C': case 0xc7: |
2974 | 849 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c) |
6765 | 850 regmbc('C'); regmbc(0xc7); |
2974 | 851 REGMBC(0x106) REGMBC(0x108) REGMBC(0x10a) |
852 REGMBC(0x10c) | |
853 return; | |
854 case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a) | |
855 CASEMBC(0x1e0e) CASEMBC(0x1e10) | |
856 regmbc('D'); REGMBC(0x10e) REGMBC(0x110) | |
857 REGMBC(0x1e0a) REGMBC(0x1e0e) REGMBC(0x1e10) | |
167 | 858 return; |
6765 | 859 case 'E': case 0xc8: case 0xc9: case 0xca: case 0xcb: |
2974 | 860 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118) |
861 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc) | |
6765 | 862 regmbc('E'); regmbc(0xc8); regmbc(0xc9); |
863 regmbc(0xca); regmbc(0xcb); | |
2974 | 864 REGMBC(0x112) REGMBC(0x114) REGMBC(0x116) |
865 REGMBC(0x118) REGMBC(0x11a) REGMBC(0x1eba) | |
866 REGMBC(0x1ebc) | |
867 return; | |
868 case 'F': CASEMBC(0x1e1e) | |
869 regmbc('F'); REGMBC(0x1e1e) | |
870 return; | |
871 case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120) | |
872 CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4) | |
873 CASEMBC(0x1e20) | |
874 regmbc('G'); REGMBC(0x11c) REGMBC(0x11e) | |
875 REGMBC(0x120) REGMBC(0x122) REGMBC(0x1e4) | |
876 REGMBC(0x1e6) REGMBC(0x1f4) REGMBC(0x1e20) | |
877 return; | |
878 case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22) | |
879 CASEMBC(0x1e26) CASEMBC(0x1e28) | |
880 regmbc('H'); REGMBC(0x124) REGMBC(0x126) | |
881 REGMBC(0x1e22) REGMBC(0x1e26) REGMBC(0x1e28) | |
167 | 882 return; |
6765 | 883 case 'I': case 0xcc: case 0xcd: case 0xce: case 0xcf: |
2974 | 884 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e) |
885 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8) | |
6765 | 886 regmbc('I'); regmbc(0xcc); regmbc(0xcd); |
887 regmbc(0xce); regmbc(0xcf); | |
2974 | 888 REGMBC(0x128) REGMBC(0x12a) REGMBC(0x12c) |
889 REGMBC(0x12e) REGMBC(0x130) REGMBC(0x1cf) | |
890 REGMBC(0x1ec8) | |
891 return; | |
892 case 'J': CASEMBC(0x134) | |
893 regmbc('J'); REGMBC(0x134) | |
894 return; | |
895 case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30) | |
896 CASEMBC(0x1e34) | |
897 regmbc('K'); REGMBC(0x136) REGMBC(0x1e8) | |
898 REGMBC(0x1e30) REGMBC(0x1e34) | |
899 return; | |
900 case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d) | |
901 CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a) | |
902 regmbc('L'); REGMBC(0x139) REGMBC(0x13b) | |
903 REGMBC(0x13d) REGMBC(0x13f) REGMBC(0x141) | |
904 REGMBC(0x1e3a) | |
905 return; | |
906 case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40) | |
907 regmbc('M'); REGMBC(0x1e3e) REGMBC(0x1e40) | |
167 | 908 return; |
6765 | 909 case 'N': case 0xd1: |
2974 | 910 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44) |
911 CASEMBC(0x1e48) | |
6765 | 912 regmbc('N'); regmbc(0xd1); |
2974 | 913 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147) |
914 REGMBC(0x1e44) REGMBC(0x1e48) | |
167 | 915 return; |
6765 | 916 case 'O': case 0xd2: case 0xd3: case 0xd4: case 0xd5: |
917 case 0xd6: case 0xd8: | |
2974 | 918 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0) |
919 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece) | |
6765 | 920 regmbc('O'); regmbc(0xd2); regmbc(0xd3); |
921 regmbc(0xd4); regmbc(0xd5); regmbc(0xd6); | |
922 regmbc(0xd8); | |
2974 | 923 REGMBC(0x14c) REGMBC(0x14e) REGMBC(0x150) |
924 REGMBC(0x1a0) REGMBC(0x1d1) REGMBC(0x1ea) | |
925 REGMBC(0x1ec) REGMBC(0x1ece) | |
926 return; | |
927 case 'P': case 0x1e54: case 0x1e56: | |
928 regmbc('P'); REGMBC(0x1e54) REGMBC(0x1e56) | |
929 return; | |
930 case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158) | |
931 CASEMBC(0x1e58) CASEMBC(0x1e5e) | |
932 regmbc('R'); REGMBC(0x154) REGMBC(0x156) REGMBC(0x158) | |
933 REGMBC(0x1e58) REGMBC(0x1e5e) | |
934 return; | |
935 case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e) | |
936 CASEMBC(0x160) CASEMBC(0x1e60) | |
937 regmbc('S'); REGMBC(0x15a) REGMBC(0x15c) | |
938 REGMBC(0x15e) REGMBC(0x160) REGMBC(0x1e60) | |
939 return; | |
940 case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166) | |
941 CASEMBC(0x1e6a) CASEMBC(0x1e6e) | |
942 regmbc('T'); REGMBC(0x162) REGMBC(0x164) | |
943 REGMBC(0x166) REGMBC(0x1e6a) REGMBC(0x1e6e) | |
167 | 944 return; |
6765 | 945 case 'U': case 0xd9: case 0xda: case 0xdb: case 0xdc: |
2974 | 946 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e) |
947 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3) | |
948 CASEMBC(0x1ee6) | |
6765 | 949 regmbc('U'); regmbc(0xd9); regmbc(0xda); |
950 regmbc(0xdb); regmbc(0xdc); | |
2974 | 951 REGMBC(0x168) REGMBC(0x16a) REGMBC(0x16c) |
952 REGMBC(0x16e) REGMBC(0x170) REGMBC(0x172) | |
953 REGMBC(0x1af) REGMBC(0x1d3) REGMBC(0x1ee6) | |
954 return; | |
955 case 'V': CASEMBC(0x1e7c) | |
956 regmbc('V'); REGMBC(0x1e7c) | |
957 return; | |
958 case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82) | |
959 CASEMBC(0x1e84) CASEMBC(0x1e86) | |
960 regmbc('W'); REGMBC(0x174) REGMBC(0x1e80) | |
961 REGMBC(0x1e82) REGMBC(0x1e84) REGMBC(0x1e86) | |
962 return; | |
963 case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c) | |
964 regmbc('X'); REGMBC(0x1e8a) REGMBC(0x1e8c) | |
167 | 965 return; |
6765 | 966 case 'Y': case 0xdd: |
2974 | 967 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2) |
968 CASEMBC(0x1ef6) CASEMBC(0x1ef8) | |
6765 | 969 regmbc('Y'); regmbc(0xdd); |
2974 | 970 REGMBC(0x176) REGMBC(0x178) REGMBC(0x1e8e) |
971 REGMBC(0x1ef2) REGMBC(0x1ef6) REGMBC(0x1ef8) | |
972 return; | |
973 case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d) | |
974 CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94) | |
975 regmbc('Z'); REGMBC(0x179) REGMBC(0x17b) | |
976 REGMBC(0x17d) REGMBC(0x1b5) REGMBC(0x1e90) | |
977 REGMBC(0x1e94) | |
167 | 978 return; |
6765 | 979 case 'a': case 0xe0: case 0xe1: case 0xe2: |
980 case 0xe3: case 0xe4: case 0xe5: | |
2974 | 981 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce) |
982 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3) | |
6765 | 983 regmbc('a'); regmbc(0xe0); regmbc(0xe1); |
984 regmbc(0xe2); regmbc(0xe3); regmbc(0xe4); | |
985 regmbc(0xe5); | |
2974 | 986 REGMBC(0x101) REGMBC(0x103) REGMBC(0x105) |
987 REGMBC(0x1ce) REGMBC(0x1df) REGMBC(0x1e1) | |
988 REGMBC(0x1ea3) | |
989 return; | |
990 case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07) | |
991 regmbc('b'); REGMBC(0x1e03) REGMBC(0x1e07) | |
167 | 992 return; |
6765 | 993 case 'c': case 0xe7: |
2974 | 994 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d) |
6765 | 995 regmbc('c'); regmbc(0xe7); |
2974 | 996 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b) |
997 REGMBC(0x10d) | |
998 return; | |
6914 | 999 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1e0b) |
1000 CASEMBC(0x1e0f) CASEMBC(0x1e11) | |
2974 | 1001 regmbc('d'); REGMBC(0x10f) REGMBC(0x111) |
6914 | 1002 REGMBC(0x1e0b) REGMBC(0x1e0f) REGMBC(0x1e11) |
167 | 1003 return; |
6765 | 1004 case 'e': case 0xe8: case 0xe9: case 0xea: case 0xeb: |
2974 | 1005 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119) |
1006 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd) | |
6765 | 1007 regmbc('e'); regmbc(0xe8); regmbc(0xe9); |
1008 regmbc(0xea); regmbc(0xeb); | |
2974 | 1009 REGMBC(0x113) REGMBC(0x115) REGMBC(0x117) |
1010 REGMBC(0x119) REGMBC(0x11b) REGMBC(0x1ebb) | |
1011 REGMBC(0x1ebd) | |
1012 return; | |
1013 case 'f': CASEMBC(0x1e1f) | |
1014 regmbc('f'); REGMBC(0x1e1f) | |
1015 return; | |
1016 case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121) | |
1017 CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5) | |
1018 CASEMBC(0x1e21) | |
1019 regmbc('g'); REGMBC(0x11d) REGMBC(0x11f) | |
1020 REGMBC(0x121) REGMBC(0x123) REGMBC(0x1e5) | |
1021 REGMBC(0x1e7) REGMBC(0x1f5) REGMBC(0x1e21) | |
1022 return; | |
1023 case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23) | |
1024 CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96) | |
1025 regmbc('h'); REGMBC(0x125) REGMBC(0x127) | |
1026 REGMBC(0x1e23) REGMBC(0x1e27) REGMBC(0x1e29) | |
1027 REGMBC(0x1e96) | |
167 | 1028 return; |
6765 | 1029 case 'i': case 0xec: case 0xed: case 0xee: case 0xef: |
2974 | 1030 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f) |
1031 CASEMBC(0x1d0) CASEMBC(0x1ec9) | |
6765 | 1032 regmbc('i'); regmbc(0xec); regmbc(0xed); |
1033 regmbc(0xee); regmbc(0xef); | |
2974 | 1034 REGMBC(0x129) REGMBC(0x12b) REGMBC(0x12d) |
1035 REGMBC(0x12f) REGMBC(0x1d0) REGMBC(0x1ec9) | |
1036 return; | |
1037 case 'j': CASEMBC(0x135) CASEMBC(0x1f0) | |
1038 regmbc('j'); REGMBC(0x135) REGMBC(0x1f0) | |
1039 return; | |
1040 case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31) | |
1041 CASEMBC(0x1e35) | |
1042 regmbc('k'); REGMBC(0x137) REGMBC(0x1e9) | |
1043 REGMBC(0x1e31) REGMBC(0x1e35) | |
1044 return; | |
1045 case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e) | |
1046 CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b) | |
1047 regmbc('l'); REGMBC(0x13a) REGMBC(0x13c) | |
1048 REGMBC(0x13e) REGMBC(0x140) REGMBC(0x142) | |
1049 REGMBC(0x1e3b) | |
1050 return; | |
1051 case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41) | |
1052 regmbc('m'); REGMBC(0x1e3f) REGMBC(0x1e41) | |
167 | 1053 return; |
6765 | 1054 case 'n': case 0xf1: |
2974 | 1055 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149) |
1056 CASEMBC(0x1e45) CASEMBC(0x1e49) | |
6765 | 1057 regmbc('n'); regmbc(0xf1); |
2974 | 1058 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148) |
1059 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49) | |
167 | 1060 return; |
6765 | 1061 case 'o': case 0xf2: case 0xf3: case 0xf4: case 0xf5: |
1062 case 0xf6: case 0xf8: | |
2974 | 1063 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1) |
1064 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf) | |
6765 | 1065 regmbc('o'); regmbc(0xf2); regmbc(0xf3); |
1066 regmbc(0xf4); regmbc(0xf5); regmbc(0xf6); | |
1067 regmbc(0xf8); | |
2974 | 1068 REGMBC(0x14d) REGMBC(0x14f) REGMBC(0x151) |
1069 REGMBC(0x1a1) REGMBC(0x1d2) REGMBC(0x1eb) | |
1070 REGMBC(0x1ed) REGMBC(0x1ecf) | |
1071 return; | |
1072 case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57) | |
1073 regmbc('p'); REGMBC(0x1e55) REGMBC(0x1e57) | |
1074 return; | |
1075 case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159) | |
1076 CASEMBC(0x1e59) CASEMBC(0x1e5f) | |
1077 regmbc('r'); REGMBC(0x155) REGMBC(0x157) REGMBC(0x159) | |
1078 REGMBC(0x1e59) REGMBC(0x1e5f) | |
1079 return; | |
1080 case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f) | |
1081 CASEMBC(0x161) CASEMBC(0x1e61) | |
1082 regmbc('s'); REGMBC(0x15b) REGMBC(0x15d) | |
1083 REGMBC(0x15f) REGMBC(0x161) REGMBC(0x1e61) | |
1084 return; | |
1085 case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167) | |
1086 CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97) | |
1087 regmbc('t'); REGMBC(0x163) REGMBC(0x165) REGMBC(0x167) | |
1088 REGMBC(0x1e6b) REGMBC(0x1e6f) REGMBC(0x1e97) | |
167 | 1089 return; |
6765 | 1090 case 'u': case 0xf9: case 0xfa: case 0xfb: case 0xfc: |
2974 | 1091 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f) |
1092 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4) | |
1093 CASEMBC(0x1ee7) | |
6765 | 1094 regmbc('u'); regmbc(0xf9); regmbc(0xfa); |
1095 regmbc(0xfb); regmbc(0xfc); | |
2974 | 1096 REGMBC(0x169) REGMBC(0x16b) REGMBC(0x16d) |
1097 REGMBC(0x16f) REGMBC(0x171) REGMBC(0x173) | |
1098 REGMBC(0x1b0) REGMBC(0x1d4) REGMBC(0x1ee7) | |
1099 return; | |
1100 case 'v': CASEMBC(0x1e7d) | |
1101 regmbc('v'); REGMBC(0x1e7d) | |
1102 return; | |
1103 case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83) | |
1104 CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98) | |
1105 regmbc('w'); REGMBC(0x175) REGMBC(0x1e81) | |
1106 REGMBC(0x1e83) REGMBC(0x1e85) REGMBC(0x1e87) | |
1107 REGMBC(0x1e98) | |
1108 return; | |
1109 case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d) | |
1110 regmbc('x'); REGMBC(0x1e8b) REGMBC(0x1e8d) | |
167 | 1111 return; |
6765 | 1112 case 'y': case 0xfd: case 0xff: |
2974 | 1113 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99) |
1114 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9) | |
6765 | 1115 regmbc('y'); regmbc(0xfd); regmbc(0xff); |
2974 | 1116 REGMBC(0x177) REGMBC(0x1e8f) REGMBC(0x1e99) |
1117 REGMBC(0x1ef3) REGMBC(0x1ef7) REGMBC(0x1ef9) | |
1118 return; | |
1119 case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e) | |
1120 CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95) | |
1121 regmbc('z'); REGMBC(0x17a) REGMBC(0x17c) | |
1122 REGMBC(0x17e) REGMBC(0x1b6) REGMBC(0x1e91) | |
1123 REGMBC(0x1e95) | |
167 | 1124 return; |
1125 } | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
1126 #endif |
167 | 1127 } |
1128 regmbc(c); | |
1129 } | |
1130 | |
1131 /* | |
1132 * Check for a collating element "[.a.]". "pp" points to the '['. | |
1133 * Returns a character. Zero means that no item was recognized. Otherwise | |
1134 * "pp" is advanced to after the item. | |
1135 * Currently only single characters are recognized! | |
1136 */ | |
1137 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1138 get_coll_element(char_u **pp) |
167 | 1139 { |
1140 int c; | |
1141 int l = 1; | |
1142 char_u *p = *pp; | |
1143 | |
6830 | 1144 if (p[0] != NUL && p[1] == '.') |
167 | 1145 { |
1146 #ifdef FEAT_MBYTE | |
1147 if (has_mbyte) | |
474 | 1148 l = (*mb_ptr2len)(p + 2); |
167 | 1149 #endif |
1150 if (p[l + 2] == '.' && p[l + 3] == ']') | |
1151 { | |
1152 #ifdef FEAT_MBYTE | |
1153 if (has_mbyte) | |
1154 c = mb_ptr2char(p + 2); | |
1155 else | |
1156 #endif | |
1157 c = p[2]; | |
1158 *pp += l + 4; | |
1159 return c; | |
1160 } | |
1161 } | |
1162 return 0; | |
1163 } | |
1164 | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1165 static int reg_cpo_lit; /* 'cpoptions' contains 'l' flag */ |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1166 static int reg_cpo_bsl; /* 'cpoptions' contains '\' flag */ |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1167 |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1168 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1169 get_cpo_flags(void) |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1170 { |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1171 reg_cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL; |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1172 reg_cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL; |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1173 } |
167 | 1174 |
1175 /* | |
1176 * Skip over a "[]" range. | |
1177 * "p" must point to the character after the '['. | |
1178 * The returned pointer is on the matching ']', or the terminating NUL. | |
1179 */ | |
1180 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1181 skip_anyof(char_u *p) |
167 | 1182 { |
1183 #ifdef FEAT_MBYTE | |
1184 int l; | |
1185 #endif | |
1186 | |
1187 if (*p == '^') /* Complement of range. */ | |
1188 ++p; | |
1189 if (*p == ']' || *p == '-') | |
1190 ++p; | |
1191 while (*p != NUL && *p != ']') | |
1192 { | |
1193 #ifdef FEAT_MBYTE | |
474 | 1194 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
167 | 1195 p += l; |
1196 else | |
1197 #endif | |
1198 if (*p == '-') | |
1199 { | |
1200 ++p; | |
1201 if (*p != ']' && *p != NUL) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1202 MB_PTR_ADV(p); |
167 | 1203 } |
1204 else if (*p == '\\' | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1205 && !reg_cpo_bsl |
167 | 1206 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1207 || (!reg_cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL))) |
167 | 1208 p += 2; |
1209 else if (*p == '[') | |
1210 { | |
1211 if (get_char_class(&p) == CLASS_NONE | |
1212 && get_equi_class(&p) == 0 | |
6830 | 1213 && get_coll_element(&p) == 0 |
1214 && *p != NUL) | |
1215 ++p; /* it is not a class name and not NUL */ | |
167 | 1216 } |
1217 else | |
1218 ++p; | |
1219 } | |
1220 | |
1221 return p; | |
1222 } | |
1223 | |
1224 /* | |
7 | 1225 * Skip past regular expression. |
153 | 1226 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc). |
7 | 1227 * Take care of characters with a backslash in front of it. |
1228 * Skip strings inside [ and ]. | |
1229 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the | |
1230 * expression and change "\?" to "?". If "*newp" is not NULL the expression | |
1231 * is changed in-place. | |
1232 */ | |
1233 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1234 skip_regexp( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1235 char_u *startp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1236 int dirc, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1237 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1238 char_u **newp) |
7 | 1239 { |
1240 int mymagic; | |
1241 char_u *p = startp; | |
1242 | |
1243 if (magic) | |
1244 mymagic = MAGIC_ON; | |
1245 else | |
1246 mymagic = MAGIC_OFF; | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1247 get_cpo_flags(); |
7 | 1248 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1249 for (; p[0] != NUL; MB_PTR_ADV(p)) |
7 | 1250 { |
1251 if (p[0] == dirc) /* found end of regexp */ | |
1252 break; | |
1253 if ((p[0] == '[' && mymagic >= MAGIC_ON) | |
1254 || (p[0] == '\\' && p[1] == '[' && mymagic <= MAGIC_OFF)) | |
1255 { | |
1256 p = skip_anyof(p + 1); | |
1257 if (p[0] == NUL) | |
1258 break; | |
1259 } | |
1260 else if (p[0] == '\\' && p[1] != NUL) | |
1261 { | |
1262 if (dirc == '?' && newp != NULL && p[1] == '?') | |
1263 { | |
1264 /* change "\?" to "?", make a copy first. */ | |
1265 if (*newp == NULL) | |
1266 { | |
1267 *newp = vim_strsave(startp); | |
1268 if (*newp != NULL) | |
1269 p = *newp + (p - startp); | |
1270 } | |
1271 if (*newp != NULL) | |
1621 | 1272 STRMOVE(p, p + 1); |
7 | 1273 else |
1274 ++p; | |
1275 } | |
1276 else | |
1277 ++p; /* skip next character */ | |
1278 if (*p == 'v') | |
1279 mymagic = MAGIC_ALL; | |
1280 else if (*p == 'V') | |
1281 mymagic = MAGIC_NONE; | |
1282 } | |
1283 } | |
1284 return p; | |
1285 } | |
1286 | |
11525
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1287 /* |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1288 * Return TRUE if the back reference is legal. We must have seen the close |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1289 * brace. |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1290 * TODO: Should also check that we don't refer to something that is repeated |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1291 * (+*=): what instance of the repetition should we match? |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1292 */ |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1293 static int |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1294 seen_endbrace(int refnum) |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1295 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1296 if (!had_endbrace[refnum]) |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1297 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1298 char_u *p; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1299 |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1300 /* Trick: check if "@<=" or "@<!" follows, in which case |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1301 * the \1 can appear before the referenced match. */ |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1302 for (p = regparse; *p != NUL; ++p) |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1303 if (p[0] == '@' && p[1] == '<' && (p[2] == '!' || p[2] == '=')) |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1304 break; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1305 if (*p == NUL) |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1306 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1307 EMSG(_("E65: Illegal back reference")); |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1308 rc_did_emsg = TRUE; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1309 return FALSE; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1310 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1311 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1312 return TRUE; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1313 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1314 |
7 | 1315 /* |
4444 | 1316 * bt_regcomp() - compile a regular expression into internal code for the |
1317 * traditional back track matcher. | |
41 | 1318 * Returns the program in allocated space. Returns NULL for an error. |
7 | 1319 * |
1320 * We can't allocate space until we know how big the compiled form will be, | |
1321 * but we can't compile it (and thus know how big it is) until we've got a | |
1322 * place to put the code. So we cheat: we compile it twice, once with code | |
1323 * generation turned off and size counting turned on, and once "for real". | |
1324 * This also means that we don't allocate space until we are sure that the | |
1325 * thing really will compile successfully, and we never have to move the | |
1326 * code and thus invalidate pointers into it. (Note that it has to be in | |
1327 * one piece because vim_free() must be able to free it all.) | |
1328 * | |
1329 * Whether upper/lower case is to be ignored is decided when executing the | |
1330 * program, it does not matter here. | |
1331 * | |
1332 * Beware that the optimization-preparation code in here knows about some | |
1333 * of the structure of the compiled regexp. | |
1334 * "re_flags": RE_MAGIC and/or RE_STRING. | |
1335 */ | |
4444 | 1336 static regprog_T * |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1337 bt_regcomp(char_u *expr, int re_flags) |
7 | 1338 { |
4444 | 1339 bt_regprog_T *r; |
7 | 1340 char_u *scan; |
1341 char_u *longest; | |
1342 int len; | |
1343 int flags; | |
1344 | |
1345 if (expr == NULL) | |
1346 EMSG_RET_NULL(_(e_null)); | |
1347 | |
1348 init_class_tab(); | |
1349 | |
1350 /* | |
1351 * First pass: determine size, legality. | |
1352 */ | |
1353 regcomp_start(expr, re_flags); | |
1354 regcode = JUST_CALC_SIZE; | |
1355 regc(REGMAGIC); | |
1356 if (reg(REG_NOPAREN, &flags) == NULL) | |
1357 return NULL; | |
1358 | |
1359 /* Allocate space. */ | |
4444 | 1360 r = (bt_regprog_T *)lalloc(sizeof(bt_regprog_T) + regsize, TRUE); |
7 | 1361 if (r == NULL) |
1362 return NULL; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
1363 r->re_in_use = FALSE; |
7 | 1364 |
1365 /* | |
1366 * Second pass: emit code. | |
1367 */ | |
1368 regcomp_start(expr, re_flags); | |
1369 regcode = r->program; | |
1370 regc(REGMAGIC); | |
2010 | 1371 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong) |
7 | 1372 { |
1373 vim_free(r); | |
2010 | 1374 if (reg_toolong) |
1375 EMSG_RET_NULL(_("E339: Pattern too long")); | |
7 | 1376 return NULL; |
1377 } | |
1378 | |
1379 /* Dig out information for optimizations. */ | |
1380 r->regstart = NUL; /* Worst-case defaults. */ | |
1381 r->reganch = 0; | |
1382 r->regmust = NULL; | |
1383 r->regmlen = 0; | |
1384 r->regflags = regflags; | |
1385 if (flags & HASNL) | |
1386 r->regflags |= RF_HASNL; | |
1387 if (flags & HASLOOKBH) | |
1388 r->regflags |= RF_LOOKBH; | |
1389 #ifdef FEAT_SYN_HL | |
1390 /* Remember whether this pattern has any \z specials in it. */ | |
1391 r->reghasz = re_has_z; | |
1392 #endif | |
1393 scan = r->program + 1; /* First BRANCH. */ | |
1394 if (OP(regnext(scan)) == END) /* Only one top-level choice. */ | |
1395 { | |
1396 scan = OPERAND(scan); | |
1397 | |
1398 /* Starting-point info. */ | |
1399 if (OP(scan) == BOL || OP(scan) == RE_BOF) | |
1400 { | |
1401 r->reganch++; | |
1402 scan = regnext(scan); | |
1403 } | |
1404 | |
1405 if (OP(scan) == EXACTLY) | |
1406 { | |
1407 #ifdef FEAT_MBYTE | |
1408 if (has_mbyte) | |
1409 r->regstart = (*mb_ptr2char)(OPERAND(scan)); | |
1410 else | |
1411 #endif | |
1412 r->regstart = *OPERAND(scan); | |
1413 } | |
1414 else if ((OP(scan) == BOW | |
1415 || OP(scan) == EOW | |
1416 || OP(scan) == NOTHING | |
1417 || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN | |
1418 || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE) | |
1419 && OP(regnext(scan)) == EXACTLY) | |
1420 { | |
1421 #ifdef FEAT_MBYTE | |
1422 if (has_mbyte) | |
1423 r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan))); | |
1424 else | |
1425 #endif | |
1426 r->regstart = *OPERAND(regnext(scan)); | |
1427 } | |
1428 | |
1429 /* | |
1430 * If there's something expensive in the r.e., find the longest | |
1431 * literal string that must appear and make it the regmust. Resolve | |
1432 * ties in favor of later strings, since the regstart check works | |
1433 * with the beginning of the r.e. and avoiding duplication | |
1434 * strengthens checking. Not a strong reason, but sufficient in the | |
1435 * absence of others. | |
1436 */ | |
1437 /* | |
1438 * When the r.e. starts with BOW, it is faster to look for a regmust | |
1439 * first. Used a lot for "#" and "*" commands. (Added by mool). | |
1440 */ | |
1441 if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW) | |
1442 && !(flags & HASNL)) | |
1443 { | |
1444 longest = NULL; | |
1445 len = 0; | |
1446 for (; scan != NULL; scan = regnext(scan)) | |
1447 if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len) | |
1448 { | |
1449 longest = OPERAND(scan); | |
1450 len = (int)STRLEN(OPERAND(scan)); | |
1451 } | |
1452 r->regmust = longest; | |
1453 r->regmlen = len; | |
1454 } | |
1455 } | |
4444 | 1456 #ifdef BT_REGEXP_DUMP |
7 | 1457 regdump(expr, r); |
1458 #endif | |
4444 | 1459 r->engine = &bt_regengine; |
1460 return (regprog_T *)r; | |
7 | 1461 } |
1462 | |
1463 /* | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1464 * Free a compiled regexp program, returned by bt_regcomp(). |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1465 */ |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1466 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1467 bt_regfree(regprog_T *prog) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1468 { |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1469 vim_free(prog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1470 } |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1471 |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1472 /* |
7 | 1473 * Setup to parse the regexp. Used once to get the length and once to do it. |
1474 */ | |
1475 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1476 regcomp_start( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1477 char_u *expr, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1478 int re_flags) /* see vim_regcomp() */ |
7 | 1479 { |
1480 initchr(expr); | |
1481 if (re_flags & RE_MAGIC) | |
1482 reg_magic = MAGIC_ON; | |
1483 else | |
1484 reg_magic = MAGIC_OFF; | |
1485 reg_string = (re_flags & RE_STRING); | |
481 | 1486 reg_strict = (re_flags & RE_STRICT); |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1487 get_cpo_flags(); |
7 | 1488 |
1489 num_complex_braces = 0; | |
1490 regnpar = 1; | |
1491 vim_memset(had_endbrace, 0, sizeof(had_endbrace)); | |
1492 #ifdef FEAT_SYN_HL | |
1493 regnzpar = 1; | |
1494 re_has_z = 0; | |
1495 #endif | |
1496 regsize = 0L; | |
2010 | 1497 reg_toolong = FALSE; |
7 | 1498 regflags = 0; |
1499 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1500 had_eol = FALSE; | |
1501 #endif | |
1502 } | |
1503 | |
1504 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1505 /* | |
1506 * Check if during the previous call to vim_regcomp the EOL item "$" has been | |
1507 * found. This is messy, but it works fine. | |
1508 */ | |
1509 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1510 vim_regcomp_had_eol(void) |
7 | 1511 { |
1512 return had_eol; | |
1513 } | |
1514 #endif | |
1515 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
1516 // variables used for parsing |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
1517 static int at_start; // True when on the first character |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
1518 static int prev_at_start; // True when on the second character |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1519 |
7 | 1520 /* |
4444 | 1521 * Parse regular expression, i.e. main body or parenthesized thing. |
7 | 1522 * |
1523 * Caller must absorb opening parenthesis. | |
1524 * | |
1525 * Combining parenthesis handling with the base level of regular expression | |
1526 * is a trifle forced, but the need to tie the tails of the branches to what | |
1527 * follows makes it hard to avoid. | |
1528 */ | |
1529 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1530 reg( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1531 int paren, /* REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1532 int *flagp) |
7 | 1533 { |
1534 char_u *ret; | |
1535 char_u *br; | |
1536 char_u *ender; | |
1537 int parno = 0; | |
1538 int flags; | |
1539 | |
1540 *flagp = HASWIDTH; /* Tentatively. */ | |
1541 | |
1542 #ifdef FEAT_SYN_HL | |
1543 if (paren == REG_ZPAREN) | |
1544 { | |
1545 /* Make a ZOPEN node. */ | |
1546 if (regnzpar >= NSUBEXP) | |
1547 EMSG_RET_NULL(_("E50: Too many \\z(")); | |
1548 parno = regnzpar; | |
1549 regnzpar++; | |
1550 ret = regnode(ZOPEN + parno); | |
1551 } | |
1552 else | |
1553 #endif | |
1554 if (paren == REG_PAREN) | |
1555 { | |
1556 /* Make a MOPEN node. */ | |
1557 if (regnpar >= NSUBEXP) | |
4444 | 1558 EMSG2_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL); |
7 | 1559 parno = regnpar; |
1560 ++regnpar; | |
1561 ret = regnode(MOPEN + parno); | |
1562 } | |
1563 else if (paren == REG_NPAREN) | |
1564 { | |
1565 /* Make a NOPEN node. */ | |
1566 ret = regnode(NOPEN); | |
1567 } | |
1568 else | |
1569 ret = NULL; | |
1570 | |
1571 /* Pick up the branches, linking them together. */ | |
1572 br = regbranch(&flags); | |
1573 if (br == NULL) | |
1574 return NULL; | |
1575 if (ret != NULL) | |
1576 regtail(ret, br); /* [MZ]OPEN -> first. */ | |
1577 else | |
1578 ret = br; | |
1579 /* If one of the branches can be zero-width, the whole thing can. | |
1580 * If one of the branches has * at start or matches a line-break, the | |
1581 * whole thing can. */ | |
1582 if (!(flags & HASWIDTH)) | |
1583 *flagp &= ~HASWIDTH; | |
1584 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1585 while (peekchr() == Magic('|')) | |
1586 { | |
1587 skipchr(); | |
1588 br = regbranch(&flags); | |
2010 | 1589 if (br == NULL || reg_toolong) |
7 | 1590 return NULL; |
1591 regtail(ret, br); /* BRANCH -> BRANCH. */ | |
1592 if (!(flags & HASWIDTH)) | |
1593 *flagp &= ~HASWIDTH; | |
1594 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1595 } | |
1596 | |
1597 /* Make a closing node, and hook it on the end. */ | |
1598 ender = regnode( | |
1599 #ifdef FEAT_SYN_HL | |
1600 paren == REG_ZPAREN ? ZCLOSE + parno : | |
1601 #endif | |
1602 paren == REG_PAREN ? MCLOSE + parno : | |
1603 paren == REG_NPAREN ? NCLOSE : END); | |
1604 regtail(ret, ender); | |
1605 | |
1606 /* Hook the tails of the branches to the closing node. */ | |
1607 for (br = ret; br != NULL; br = regnext(br)) | |
1608 regoptail(br, ender); | |
1609 | |
1610 /* Check for proper termination. */ | |
1611 if (paren != REG_NOPAREN && getchr() != Magic(')')) | |
1612 { | |
1613 #ifdef FEAT_SYN_HL | |
1614 if (paren == REG_ZPAREN) | |
308 | 1615 EMSG_RET_NULL(_("E52: Unmatched \\z(")); |
7 | 1616 else |
1617 #endif | |
1618 if (paren == REG_NPAREN) | |
4444 | 1619 EMSG2_RET_NULL(_(e_unmatchedpp), reg_magic == MAGIC_ALL); |
7 | 1620 else |
4444 | 1621 EMSG2_RET_NULL(_(e_unmatchedp), reg_magic == MAGIC_ALL); |
7 | 1622 } |
1623 else if (paren == REG_NOPAREN && peekchr() != NUL) | |
1624 { | |
1625 if (curchr == Magic(')')) | |
4444 | 1626 EMSG2_RET_NULL(_(e_unmatchedpar), reg_magic == MAGIC_ALL); |
7 | 1627 else |
308 | 1628 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */ |
7 | 1629 /* NOTREACHED */ |
1630 } | |
1631 /* | |
1632 * Here we set the flag allowing back references to this set of | |
1633 * parentheses. | |
1634 */ | |
1635 if (paren == REG_PAREN) | |
1636 had_endbrace[parno] = TRUE; /* have seen the close paren */ | |
1637 return ret; | |
1638 } | |
1639 | |
1640 /* | |
4444 | 1641 * Parse one alternative of an | operator. |
7 | 1642 * Implements the & operator. |
1643 */ | |
1644 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1645 regbranch(int *flagp) |
7 | 1646 { |
1647 char_u *ret; | |
1648 char_u *chain = NULL; | |
1649 char_u *latest; | |
1650 int flags; | |
1651 | |
1652 *flagp = WORST | HASNL; /* Tentatively. */ | |
1653 | |
1654 ret = regnode(BRANCH); | |
1655 for (;;) | |
1656 { | |
1657 latest = regconcat(&flags); | |
1658 if (latest == NULL) | |
1659 return NULL; | |
1660 /* If one of the branches has width, the whole thing has. If one of | |
1661 * the branches anchors at start-of-line, the whole thing does. | |
1662 * If one of the branches uses look-behind, the whole thing does. */ | |
1663 *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH); | |
1664 /* If one of the branches doesn't match a line-break, the whole thing | |
1665 * doesn't. */ | |
1666 *flagp &= ~HASNL | (flags & HASNL); | |
1667 if (chain != NULL) | |
1668 regtail(chain, latest); | |
1669 if (peekchr() != Magic('&')) | |
1670 break; | |
1671 skipchr(); | |
1672 regtail(latest, regnode(END)); /* operand ends */ | |
2010 | 1673 if (reg_toolong) |
1674 break; | |
7 | 1675 reginsert(MATCH, latest); |
1676 chain = latest; | |
1677 } | |
1678 | |
1679 return ret; | |
1680 } | |
1681 | |
1682 /* | |
4444 | 1683 * Parse one alternative of an | or & operator. |
7 | 1684 * Implements the concatenation operator. |
1685 */ | |
1686 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1687 regconcat(int *flagp) |
7 | 1688 { |
1689 char_u *first = NULL; | |
1690 char_u *chain = NULL; | |
1691 char_u *latest; | |
1692 int flags; | |
1693 int cont = TRUE; | |
1694 | |
1695 *flagp = WORST; /* Tentatively. */ | |
1696 | |
1697 while (cont) | |
1698 { | |
1699 switch (peekchr()) | |
1700 { | |
1701 case NUL: | |
1702 case Magic('|'): | |
1703 case Magic('&'): | |
1704 case Magic(')'): | |
1705 cont = FALSE; | |
1706 break; | |
1707 case Magic('Z'): | |
1708 #ifdef FEAT_MBYTE | |
1709 regflags |= RF_ICOMBINE; | |
1710 #endif | |
1711 skipchr_keepstart(); | |
1712 break; | |
1713 case Magic('c'): | |
1714 regflags |= RF_ICASE; | |
1715 skipchr_keepstart(); | |
1716 break; | |
1717 case Magic('C'): | |
1718 regflags |= RF_NOICASE; | |
1719 skipchr_keepstart(); | |
1720 break; | |
1721 case Magic('v'): | |
1722 reg_magic = MAGIC_ALL; | |
1723 skipchr_keepstart(); | |
1724 curchr = -1; | |
1725 break; | |
1726 case Magic('m'): | |
1727 reg_magic = MAGIC_ON; | |
1728 skipchr_keepstart(); | |
1729 curchr = -1; | |
1730 break; | |
1731 case Magic('M'): | |
1732 reg_magic = MAGIC_OFF; | |
1733 skipchr_keepstart(); | |
1734 curchr = -1; | |
1735 break; | |
1736 case Magic('V'): | |
1737 reg_magic = MAGIC_NONE; | |
1738 skipchr_keepstart(); | |
1739 curchr = -1; | |
1740 break; | |
1741 default: | |
1742 latest = regpiece(&flags); | |
2010 | 1743 if (latest == NULL || reg_toolong) |
7 | 1744 return NULL; |
1745 *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH); | |
1746 if (chain == NULL) /* First piece. */ | |
1747 *flagp |= flags & SPSTART; | |
1748 else | |
1749 regtail(chain, latest); | |
1750 chain = latest; | |
1751 if (first == NULL) | |
1752 first = latest; | |
1753 break; | |
1754 } | |
1755 } | |
1756 if (first == NULL) /* Loop ran zero times. */ | |
1757 first = regnode(NOTHING); | |
1758 return first; | |
1759 } | |
1760 | |
1761 /* | |
4444 | 1762 * Parse something followed by possible [*+=]. |
7 | 1763 * |
1764 * Note that the branching code sequences used for = and the general cases | |
1765 * of * and + are somewhat optimized: they use the same NOTHING node as | |
1766 * both the endmarker for their branch list and the body of the last branch. | |
1767 * It might seem that this node could be dispensed with entirely, but the | |
1768 * endmarker role is not redundant. | |
1769 */ | |
1770 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1771 regpiece(int *flagp) |
7 | 1772 { |
1773 char_u *ret; | |
1774 int op; | |
1775 char_u *next; | |
1776 int flags; | |
1777 long minval; | |
1778 long maxval; | |
1779 | |
1780 ret = regatom(&flags); | |
1781 if (ret == NULL) | |
1782 return NULL; | |
1783 | |
1784 op = peekchr(); | |
1785 if (re_multi_type(op) == NOT_MULTI) | |
1786 { | |
1787 *flagp = flags; | |
1788 return ret; | |
1789 } | |
1790 /* default flags */ | |
1791 *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH))); | |
1792 | |
1793 skipchr(); | |
1794 switch (op) | |
1795 { | |
1796 case Magic('*'): | |
1797 if (flags & SIMPLE) | |
1798 reginsert(STAR, ret); | |
1799 else | |
1800 { | |
1801 /* Emit x* as (x&|), where & means "self". */ | |
1802 reginsert(BRANCH, ret); /* Either x */ | |
1803 regoptail(ret, regnode(BACK)); /* and loop */ | |
1804 regoptail(ret, ret); /* back */ | |
1805 regtail(ret, regnode(BRANCH)); /* or */ | |
1806 regtail(ret, regnode(NOTHING)); /* null. */ | |
1807 } | |
1808 break; | |
1809 | |
1810 case Magic('+'): | |
1811 if (flags & SIMPLE) | |
1812 reginsert(PLUS, ret); | |
1813 else | |
1814 { | |
1815 /* Emit x+ as x(&|), where & means "self". */ | |
1816 next = regnode(BRANCH); /* Either */ | |
1817 regtail(ret, next); | |
233 | 1818 regtail(regnode(BACK), ret); /* loop back */ |
7 | 1819 regtail(next, regnode(BRANCH)); /* or */ |
1820 regtail(ret, regnode(NOTHING)); /* null. */ | |
1821 } | |
1822 *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1823 break; | |
1824 | |
1825 case Magic('@'): | |
1826 { | |
1827 int lop = END; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1828 long nr; |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1829 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1830 nr = getdecchrs(); |
7 | 1831 switch (no_Magic(getchr())) |
1832 { | |
1833 case '=': lop = MATCH; break; /* \@= */ | |
1834 case '!': lop = NOMATCH; break; /* \@! */ | |
1835 case '>': lop = SUBPAT; break; /* \@> */ | |
1836 case '<': switch (no_Magic(getchr())) | |
1837 { | |
1838 case '=': lop = BEHIND; break; /* \@<= */ | |
1839 case '!': lop = NOBEHIND; break; /* \@<! */ | |
1840 } | |
1841 } | |
1842 if (lop == END) | |
4444 | 1843 EMSG2_RET_NULL(_("E59: invalid character after %s@"), |
7 | 1844 reg_magic == MAGIC_ALL); |
1845 /* Look behind must match with behind_pos. */ | |
1846 if (lop == BEHIND || lop == NOBEHIND) | |
1847 { | |
1848 regtail(ret, regnode(BHPOS)); | |
1849 *flagp |= HASLOOKBH; | |
1850 } | |
1851 regtail(ret, regnode(END)); /* operand ends */ | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1852 if (lop == BEHIND || lop == NOBEHIND) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1853 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1854 if (nr < 0) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1855 nr = 0; /* no limit is same as zero limit */ |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1856 reginsert_nr(lop, nr, ret); |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1857 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1858 else |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1859 reginsert(lop, ret); |
7 | 1860 break; |
1861 } | |
1862 | |
1863 case Magic('?'): | |
1864 case Magic('='): | |
1865 /* Emit x= as (x|) */ | |
1866 reginsert(BRANCH, ret); /* Either x */ | |
1867 regtail(ret, regnode(BRANCH)); /* or */ | |
1868 next = regnode(NOTHING); /* null. */ | |
1869 regtail(ret, next); | |
1870 regoptail(ret, next); | |
1871 break; | |
1872 | |
1873 case Magic('{'): | |
1874 if (!read_limits(&minval, &maxval)) | |
1875 return NULL; | |
1876 if (flags & SIMPLE) | |
1877 { | |
1878 reginsert(BRACE_SIMPLE, ret); | |
1879 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1880 } | |
1881 else | |
1882 { | |
1883 if (num_complex_braces >= 10) | |
4444 | 1884 EMSG2_RET_NULL(_("E60: Too many complex %s{...}s"), |
7 | 1885 reg_magic == MAGIC_ALL); |
1886 reginsert(BRACE_COMPLEX + num_complex_braces, ret); | |
1887 regoptail(ret, regnode(BACK)); | |
1888 regoptail(ret, ret); | |
1889 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1890 ++num_complex_braces; | |
1891 } | |
1892 if (minval > 0 && maxval > 0) | |
1893 *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1894 break; | |
1895 } | |
1896 if (re_multi_type(peekchr()) != NOT_MULTI) | |
1897 { | |
1898 /* Can't have a multi follow a multi. */ | |
1899 if (peekchr() == Magic('*')) | |
1900 sprintf((char *)IObuff, _("E61: Nested %s*"), | |
1901 reg_magic >= MAGIC_ON ? "" : "\\"); | |
1902 else | |
1903 sprintf((char *)IObuff, _("E62: Nested %s%c"), | |
1904 reg_magic == MAGIC_ALL ? "" : "\\", no_Magic(peekchr())); | |
1905 EMSG_RET_NULL(IObuff); | |
1906 } | |
1907 | |
1908 return ret; | |
1909 } | |
1910 | |
4444 | 1911 /* When making changes to classchars also change nfa_classcodes. */ |
1912 static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU"; | |
1913 static int classcodes[] = { | |
1914 ANY, IDENT, SIDENT, KWORD, SKWORD, | |
1915 FNAME, SFNAME, PRINT, SPRINT, | |
1916 WHITE, NWHITE, DIGIT, NDIGIT, | |
1917 HEX, NHEX, OCTAL, NOCTAL, | |
1918 WORD, NWORD, HEAD, NHEAD, | |
1919 ALPHA, NALPHA, LOWER, NLOWER, | |
1920 UPPER, NUPPER | |
1921 }; | |
1922 | |
7 | 1923 /* |
4444 | 1924 * Parse the lowest level. |
7 | 1925 * |
1926 * Optimization: gobbles an entire sequence of ordinary characters so that | |
1927 * it can turn them into a single node, which is smaller to store and | |
1928 * faster to run. Don't do this when one_exactly is set. | |
1929 */ | |
1930 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1931 regatom(int *flagp) |
7 | 1932 { |
1933 char_u *ret; | |
1934 int flags; | |
1935 int c; | |
1936 char_u *p; | |
1937 int extra = 0; | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1938 int save_prev_at_start = prev_at_start; |
7 | 1939 |
1940 *flagp = WORST; /* Tentatively. */ | |
1941 | |
1942 c = getchr(); | |
1943 switch (c) | |
1944 { | |
1945 case Magic('^'): | |
1946 ret = regnode(BOL); | |
1947 break; | |
1948 | |
1949 case Magic('$'): | |
1950 ret = regnode(EOL); | |
1951 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1952 had_eol = TRUE; | |
1953 #endif | |
1954 break; | |
1955 | |
1956 case Magic('<'): | |
1957 ret = regnode(BOW); | |
1958 break; | |
1959 | |
1960 case Magic('>'): | |
1961 ret = regnode(EOW); | |
1962 break; | |
1963 | |
1964 case Magic('_'): | |
1965 c = no_Magic(getchr()); | |
1966 if (c == '^') /* "\_^" is start-of-line */ | |
1967 { | |
1968 ret = regnode(BOL); | |
1969 break; | |
1970 } | |
1971 if (c == '$') /* "\_$" is end-of-line */ | |
1972 { | |
1973 ret = regnode(EOL); | |
1974 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1975 had_eol = TRUE; | |
1976 #endif | |
1977 break; | |
1978 } | |
1979 | |
1980 extra = ADD_NL; | |
1981 *flagp |= HASNL; | |
1982 | |
1983 /* "\_[" is character range plus newline */ | |
1984 if (c == '[') | |
1985 goto collection; | |
1986 | |
1987 /* "\_x" is character class plus newline */ | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
1988 /* FALLTHROUGH */ |
7 | 1989 |
1990 /* | |
1991 * Character classes. | |
1992 */ | |
1993 case Magic('.'): | |
1994 case Magic('i'): | |
1995 case Magic('I'): | |
1996 case Magic('k'): | |
1997 case Magic('K'): | |
1998 case Magic('f'): | |
1999 case Magic('F'): | |
2000 case Magic('p'): | |
2001 case Magic('P'): | |
2002 case Magic('s'): | |
2003 case Magic('S'): | |
2004 case Magic('d'): | |
2005 case Magic('D'): | |
2006 case Magic('x'): | |
2007 case Magic('X'): | |
2008 case Magic('o'): | |
2009 case Magic('O'): | |
2010 case Magic('w'): | |
2011 case Magic('W'): | |
2012 case Magic('h'): | |
2013 case Magic('H'): | |
2014 case Magic('a'): | |
2015 case Magic('A'): | |
2016 case Magic('l'): | |
2017 case Magic('L'): | |
2018 case Magic('u'): | |
2019 case Magic('U'): | |
2020 p = vim_strchr(classchars, no_Magic(c)); | |
2021 if (p == NULL) | |
2022 EMSG_RET_NULL(_("E63: invalid use of \\_")); | |
714 | 2023 #ifdef FEAT_MBYTE |
2024 /* When '.' is followed by a composing char ignore the dot, so that | |
2025 * the composing char is matched here. */ | |
2026 if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr())) | |
2027 { | |
2028 c = getchr(); | |
2029 goto do_multibyte; | |
2030 } | |
2031 #endif | |
7 | 2032 ret = regnode(classcodes[p - classchars] + extra); |
2033 *flagp |= HASWIDTH | SIMPLE; | |
2034 break; | |
2035 | |
2036 case Magic('n'): | |
2037 if (reg_string) | |
2038 { | |
2039 /* In a string "\n" matches a newline character. */ | |
2040 ret = regnode(EXACTLY); | |
2041 regc(NL); | |
2042 regc(NUL); | |
2043 *flagp |= HASWIDTH | SIMPLE; | |
2044 } | |
2045 else | |
2046 { | |
2047 /* In buffer text "\n" matches the end of a line. */ | |
2048 ret = regnode(NEWL); | |
2049 *flagp |= HASWIDTH | HASNL; | |
2050 } | |
2051 break; | |
2052 | |
2053 case Magic('('): | |
2054 if (one_exactly) | |
2055 EMSG_ONE_RET_NULL; | |
2056 ret = reg(REG_PAREN, &flags); | |
2057 if (ret == NULL) | |
2058 return NULL; | |
2059 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2060 break; | |
2061 | |
2062 case NUL: | |
2063 case Magic('|'): | |
2064 case Magic('&'): | |
2065 case Magic(')'): | |
1468 | 2066 if (one_exactly) |
2067 EMSG_ONE_RET_NULL; | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
2068 IEMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */ |
7 | 2069 /* NOTREACHED */ |
2070 | |
2071 case Magic('='): | |
2072 case Magic('?'): | |
2073 case Magic('+'): | |
2074 case Magic('@'): | |
2075 case Magic('{'): | |
2076 case Magic('*'): | |
2077 c = no_Magic(c); | |
2078 sprintf((char *)IObuff, _("E64: %s%c follows nothing"), | |
2079 (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL) | |
2080 ? "" : "\\", c); | |
2081 EMSG_RET_NULL(IObuff); | |
2082 /* NOTREACHED */ | |
2083 | |
2084 case Magic('~'): /* previous substitute pattern */ | |
359 | 2085 if (reg_prev_sub != NULL) |
7 | 2086 { |
2087 char_u *lp; | |
2088 | |
2089 ret = regnode(EXACTLY); | |
2090 lp = reg_prev_sub; | |
2091 while (*lp != NUL) | |
2092 regc(*lp++); | |
2093 regc(NUL); | |
2094 if (*reg_prev_sub != NUL) | |
2095 { | |
2096 *flagp |= HASWIDTH; | |
2097 if ((lp - reg_prev_sub) == 1) | |
2098 *flagp |= SIMPLE; | |
2099 } | |
2100 } | |
2101 else | |
2102 EMSG_RET_NULL(_(e_nopresub)); | |
2103 break; | |
2104 | |
2105 case Magic('1'): | |
2106 case Magic('2'): | |
2107 case Magic('3'): | |
2108 case Magic('4'): | |
2109 case Magic('5'): | |
2110 case Magic('6'): | |
2111 case Magic('7'): | |
2112 case Magic('8'): | |
2113 case Magic('9'): | |
2114 { | |
2115 int refnum; | |
2116 | |
2117 refnum = c - Magic('0'); | |
11525
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2118 if (!seen_endbrace(refnum)) |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2119 return NULL; |
7 | 2120 ret = regnode(BACKREF + refnum); |
2121 } | |
2122 break; | |
2123 | |
2124 case Magic('z'): | |
2125 { | |
2126 c = no_Magic(getchr()); | |
2127 switch (c) | |
2128 { | |
741 | 2129 #ifdef FEAT_SYN_HL |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
2130 case '(': if ((reg_do_extmatch & REX_SET) == 0) |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
2131 EMSG_RET_NULL(_(e_z_not_allowed)); |
7 | 2132 if (one_exactly) |
2133 EMSG_ONE_RET_NULL; | |
2134 ret = reg(REG_ZPAREN, &flags); | |
2135 if (ret == NULL) | |
2136 return NULL; | |
2137 *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH); | |
2138 re_has_z = REX_SET; | |
2139 break; | |
2140 | |
2141 case '1': | |
2142 case '2': | |
2143 case '3': | |
2144 case '4': | |
2145 case '5': | |
2146 case '6': | |
2147 case '7': | |
2148 case '8': | |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
2149 case '9': if ((reg_do_extmatch & REX_USE) == 0) |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
2150 EMSG_RET_NULL(_(e_z1_not_allowed)); |
7 | 2151 ret = regnode(ZREF + c - '0'); |
2152 re_has_z = REX_USE; | |
2153 break; | |
741 | 2154 #endif |
7 | 2155 |
2156 case 's': ret = regnode(MOPEN + 0); | |
6203 | 2157 if (re_mult_next("\\zs") == FAIL) |
2158 return NULL; | |
7 | 2159 break; |
2160 | |
2161 case 'e': ret = regnode(MCLOSE + 0); | |
6203 | 2162 if (re_mult_next("\\ze") == FAIL) |
2163 return NULL; | |
7 | 2164 break; |
2165 | |
2166 default: EMSG_RET_NULL(_("E68: Invalid character after \\z")); | |
2167 } | |
2168 } | |
2169 break; | |
2170 | |
2171 case Magic('%'): | |
2172 { | |
2173 c = no_Magic(getchr()); | |
2174 switch (c) | |
2175 { | |
2176 /* () without a back reference */ | |
2177 case '(': | |
2178 if (one_exactly) | |
2179 EMSG_ONE_RET_NULL; | |
2180 ret = reg(REG_NPAREN, &flags); | |
2181 if (ret == NULL) | |
2182 return NULL; | |
2183 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2184 break; | |
2185 | |
2186 /* Catch \%^ and \%$ regardless of where they appear in the | |
2187 * pattern -- regardless of whether or not it makes sense. */ | |
2188 case '^': | |
2189 ret = regnode(RE_BOF); | |
2190 break; | |
2191 | |
2192 case '$': | |
2193 ret = regnode(RE_EOF); | |
2194 break; | |
2195 | |
2196 case '#': | |
2197 ret = regnode(CURSOR); | |
2198 break; | |
2199 | |
639 | 2200 case 'V': |
2201 ret = regnode(RE_VISUAL); | |
2202 break; | |
2203 | |
5901 | 2204 case 'C': |
2205 ret = regnode(RE_COMPOSING); | |
2206 break; | |
2207 | |
7 | 2208 /* \%[abc]: Emit as a list of branches, all ending at the last |
2209 * branch which matches nothing. */ | |
2210 case '[': | |
2211 if (one_exactly) /* doesn't nest */ | |
2212 EMSG_ONE_RET_NULL; | |
2213 { | |
2214 char_u *lastbranch; | |
2215 char_u *lastnode = NULL; | |
2216 char_u *br; | |
2217 | |
2218 ret = NULL; | |
2219 while ((c = getchr()) != ']') | |
2220 { | |
2221 if (c == NUL) | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2222 EMSG2_RET_NULL(_(e_missing_sb), |
7 | 2223 reg_magic == MAGIC_ALL); |
2224 br = regnode(BRANCH); | |
2225 if (ret == NULL) | |
2226 ret = br; | |
2227 else | |
2228 regtail(lastnode, br); | |
2229 | |
2230 ungetchr(); | |
2231 one_exactly = TRUE; | |
2232 lastnode = regatom(flagp); | |
2233 one_exactly = FALSE; | |
2234 if (lastnode == NULL) | |
2235 return NULL; | |
2236 } | |
2237 if (ret == NULL) | |
4760
532a9855bd30
updated for version 7.3.1127
Bram Moolenaar <bram@vim.org>
parents:
4746
diff
changeset
|
2238 EMSG2_RET_NULL(_(e_empty_sb), |
7 | 2239 reg_magic == MAGIC_ALL); |
2240 lastbranch = regnode(BRANCH); | |
2241 br = regnode(NOTHING); | |
2242 if (ret != JUST_CALC_SIZE) | |
2243 { | |
2244 regtail(lastnode, br); | |
2245 regtail(lastbranch, br); | |
2246 /* connect all branches to the NOTHING | |
2247 * branch at the end */ | |
2248 for (br = ret; br != lastnode; ) | |
2249 { | |
2250 if (OP(br) == BRANCH) | |
2251 { | |
2252 regtail(br, lastbranch); | |
2253 br = OPERAND(br); | |
2254 } | |
2255 else | |
2256 br = regnext(br); | |
2257 } | |
2258 } | |
1701 | 2259 *flagp &= ~(HASWIDTH | SIMPLE); |
7 | 2260 break; |
2261 } | |
2262 | |
24 | 2263 case 'd': /* %d123 decimal */ |
2264 case 'o': /* %o123 octal */ | |
2265 case 'x': /* %xab hex 2 */ | |
2266 case 'u': /* %uabcd hex 4 */ | |
2267 case 'U': /* %U1234abcd hex 8 */ | |
2268 { | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2269 long i; |
24 | 2270 |
2271 switch (c) | |
2272 { | |
2273 case 'd': i = getdecchrs(); break; | |
2274 case 'o': i = getoctchrs(); break; | |
2275 case 'x': i = gethexchrs(2); break; | |
2276 case 'u': i = gethexchrs(4); break; | |
2277 case 'U': i = gethexchrs(8); break; | |
2278 default: i = -1; break; | |
2279 } | |
2280 | |
2281 if (i < 0) | |
4444 | 2282 EMSG2_RET_NULL( |
24 | 2283 _("E678: Invalid character after %s%%[dxouU]"), |
2284 reg_magic == MAGIC_ALL); | |
714 | 2285 #ifdef FEAT_MBYTE |
2286 if (use_multibytecode(i)) | |
2287 ret = regnode(MULTIBYTECODE); | |
2288 else | |
2289 #endif | |
2290 ret = regnode(EXACTLY); | |
24 | 2291 if (i == 0) |
2292 regc(0x0a); | |
2293 else | |
2294 #ifdef FEAT_MBYTE | |
2295 regmbc(i); | |
2296 #else | |
2297 regc(i); | |
2298 #endif | |
2299 regc(NUL); | |
2300 *flagp |= HASWIDTH; | |
2301 break; | |
2302 } | |
2303 | |
7 | 2304 default: |
639 | 2305 if (VIM_ISDIGIT(c) || c == '<' || c == '>' |
2306 || c == '\'') | |
7 | 2307 { |
2308 long_u n = 0; | |
2309 int cmp; | |
2310 | |
2311 cmp = c; | |
2312 if (cmp == '<' || cmp == '>') | |
2313 c = getchr(); | |
2314 while (VIM_ISDIGIT(c)) | |
2315 { | |
2316 n = n * 10 + (c - '0'); | |
2317 c = getchr(); | |
2318 } | |
639 | 2319 if (c == '\'' && n == 0) |
2320 { | |
2321 /* "\%'m", "\%<'m" and "\%>'m": Mark */ | |
2322 c = getchr(); | |
2323 ret = regnode(RE_MARK); | |
2324 if (ret == JUST_CALC_SIZE) | |
2325 regsize += 2; | |
2326 else | |
2327 { | |
2328 *regcode++ = c; | |
2329 *regcode++ = cmp; | |
2330 } | |
2331 break; | |
2332 } | |
2333 else if (c == 'l' || c == 'c' || c == 'v') | |
7 | 2334 { |
2335 if (c == 'l') | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2336 { |
7 | 2337 ret = regnode(RE_LNUM); |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2338 if (save_prev_at_start) |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2339 at_start = TRUE; |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2340 } |
7 | 2341 else if (c == 'c') |
2342 ret = regnode(RE_COL); | |
2343 else | |
2344 ret = regnode(RE_VCOL); | |
2345 if (ret == JUST_CALC_SIZE) | |
2346 regsize += 5; | |
2347 else | |
2348 { | |
2349 /* put the number and the optional | |
2350 * comparator after the opcode */ | |
2351 regcode = re_put_long(regcode, n); | |
2352 *regcode++ = cmp; | |
2353 } | |
2354 break; | |
2355 } | |
2356 } | |
2357 | |
4444 | 2358 EMSG2_RET_NULL(_("E71: Invalid character after %s%%"), |
7 | 2359 reg_magic == MAGIC_ALL); |
2360 } | |
2361 } | |
2362 break; | |
2363 | |
2364 case Magic('['): | |
2365 collection: | |
2366 { | |
2367 char_u *lp; | |
2368 | |
2369 /* | |
2370 * If there is no matching ']', we assume the '[' is a normal | |
2371 * character. This makes 'incsearch' and ":help [" work. | |
2372 */ | |
2373 lp = skip_anyof(regparse); | |
2374 if (*lp == ']') /* there is a matching ']' */ | |
2375 { | |
2376 int startc = -1; /* > 0 when next '-' is a range */ | |
2377 int endc; | |
2378 | |
2379 /* | |
2380 * In a character class, different parsing rules apply. | |
2381 * Not even \ is special anymore, nothing is. | |
2382 */ | |
2383 if (*regparse == '^') /* Complement of range. */ | |
2384 { | |
2385 ret = regnode(ANYBUT + extra); | |
2386 regparse++; | |
2387 } | |
2388 else | |
2389 ret = regnode(ANYOF + extra); | |
2390 | |
2391 /* At the start ']' and '-' mean the literal character. */ | |
2392 if (*regparse == ']' || *regparse == '-') | |
167 | 2393 { |
2394 startc = *regparse; | |
7 | 2395 regc(*regparse++); |
167 | 2396 } |
7 | 2397 |
2398 while (*regparse != NUL && *regparse != ']') | |
2399 { | |
2400 if (*regparse == '-') | |
2401 { | |
2402 ++regparse; | |
2403 /* The '-' is not used for a range at the end and | |
2404 * after or before a '\n'. */ | |
2405 if (*regparse == ']' || *regparse == NUL | |
2406 || startc == -1 | |
2407 || (regparse[0] == '\\' && regparse[1] == 'n')) | |
2408 { | |
2409 regc('-'); | |
2410 startc = '-'; /* [--x] is a range */ | |
2411 } | |
2412 else | |
2413 { | |
167 | 2414 /* Also accept "a-[.z.]" */ |
2415 endc = 0; | |
2416 if (*regparse == '[') | |
2417 endc = get_coll_element(®parse); | |
2418 if (endc == 0) | |
2419 { | |
7 | 2420 #ifdef FEAT_MBYTE |
167 | 2421 if (has_mbyte) |
2422 endc = mb_ptr2char_adv(®parse); | |
2423 else | |
7 | 2424 #endif |
167 | 2425 endc = *regparse++; |
2426 } | |
24 | 2427 |
2428 /* Handle \o40, \x20 and \u20AC style sequences */ | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2429 if (endc == '\\' && !reg_cpo_lit && !reg_cpo_bsl) |
24 | 2430 endc = coll_get_char(); |
2431 | |
7 | 2432 if (startc > endc) |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
2433 EMSG_RET_NULL(_(e_reverse_range)); |
7 | 2434 #ifdef FEAT_MBYTE |
2435 if (has_mbyte && ((*mb_char2len)(startc) > 1 | |
2436 || (*mb_char2len)(endc) > 1)) | |
2437 { | |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
2438 /* Limit to a range of 256 chars. */ |
7 | 2439 if (endc > startc + 256) |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
2440 EMSG_RET_NULL(_(e_large_class)); |
7 | 2441 while (++startc <= endc) |
2442 regmbc(startc); | |
2443 } | |
2444 else | |
2445 #endif | |
2446 { | |
2447 #ifdef EBCDIC | |
2448 int alpha_only = FALSE; | |
2449 | |
2450 /* for alphabetical range skip the gaps | |
2451 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */ | |
2452 if (isalpha(startc) && isalpha(endc)) | |
2453 alpha_only = TRUE; | |
2454 #endif | |
2455 while (++startc <= endc) | |
2456 #ifdef EBCDIC | |
2457 if (!alpha_only || isalpha(startc)) | |
2458 #endif | |
2459 regc(startc); | |
2460 } | |
2461 startc = -1; | |
2462 } | |
2463 } | |
2464 /* | |
2465 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim | |
2466 * accepts "\t", "\e", etc., but only when the 'l' flag in | |
2467 * 'cpoptions' is not included. | |
167 | 2468 * Posix doesn't recognize backslash at all. |
7 | 2469 */ |
2470 else if (*regparse == '\\' | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2471 && !reg_cpo_bsl |
7 | 2472 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2473 || (!reg_cpo_lit |
7 | 2474 && vim_strchr(REGEXP_ABBR, |
2475 regparse[1]) != NULL))) | |
2476 { | |
2477 regparse++; | |
2478 if (*regparse == 'n') | |
2479 { | |
2480 /* '\n' in range: also match NL */ | |
2481 if (ret != JUST_CALC_SIZE) | |
2482 { | |
4084 | 2483 /* Using \n inside [^] does not change what |
2484 * matches. "[^\n]" is the same as ".". */ | |
2485 if (*ret == ANYOF) | |
2486 { | |
7 | 2487 *ret = ANYOF + ADD_NL; |
4084 | 2488 *flagp |= HASNL; |
2489 } | |
7 | 2490 /* else: must have had a \n already */ |
2491 } | |
2492 regparse++; | |
2493 startc = -1; | |
2494 } | |
24 | 2495 else if (*regparse == 'd' |
2496 || *regparse == 'o' | |
2497 || *regparse == 'x' | |
2498 || *regparse == 'u' | |
2499 || *regparse == 'U') | |
2500 { | |
2501 startc = coll_get_char(); | |
2502 if (startc == 0) | |
2503 regc(0x0a); | |
2504 else | |
2505 #ifdef FEAT_MBYTE | |
2506 regmbc(startc); | |
2507 #else | |
2508 regc(startc); | |
2509 #endif | |
2510 } | |
7 | 2511 else |
2512 { | |
2513 startc = backslash_trans(*regparse++); | |
2514 regc(startc); | |
2515 } | |
2516 } | |
2517 else if (*regparse == '[') | |
2518 { | |
2519 int c_class; | |
2520 int cu; | |
2521 | |
167 | 2522 c_class = get_char_class(®parse); |
7 | 2523 startc = -1; |
2524 /* Characters assumed to be 8 bits! */ | |
2525 switch (c_class) | |
2526 { | |
2527 case CLASS_NONE: | |
167 | 2528 c_class = get_equi_class(®parse); |
2529 if (c_class != 0) | |
2530 { | |
2531 /* produce equivalence class */ | |
2532 reg_equi_class(c_class); | |
2533 } | |
2534 else if ((c_class = | |
2535 get_coll_element(®parse)) != 0) | |
2536 { | |
2537 /* produce a collating element */ | |
2538 regmbc(c_class); | |
2539 } | |
2540 else | |
2541 { | |
2542 /* literal '[', allow [[-x] as a range */ | |
2543 startc = *regparse++; | |
2544 regc(startc); | |
2545 } | |
7 | 2546 break; |
2547 case CLASS_ALNUM: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2548 for (cu = 1; cu < 128; cu++) |
7 | 2549 if (isalnum(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2550 regmbc(cu); |
7 | 2551 break; |
2552 case CLASS_ALPHA: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2553 for (cu = 1; cu < 128; cu++) |
7 | 2554 if (isalpha(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2555 regmbc(cu); |
7 | 2556 break; |
2557 case CLASS_BLANK: | |
2558 regc(' '); | |
2559 regc('\t'); | |
2560 break; | |
2561 case CLASS_CNTRL: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2562 for (cu = 1; cu <= 127; cu++) |
7 | 2563 if (iscntrl(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2564 regmbc(cu); |
7 | 2565 break; |
2566 case CLASS_DIGIT: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2567 for (cu = 1; cu <= 127; cu++) |
7 | 2568 if (VIM_ISDIGIT(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2569 regmbc(cu); |
7 | 2570 break; |
2571 case CLASS_GRAPH: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2572 for (cu = 1; cu <= 127; cu++) |
7 | 2573 if (isgraph(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2574 regmbc(cu); |
7 | 2575 break; |
2576 case CLASS_LOWER: | |
2577 for (cu = 1; cu <= 255; cu++) | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2578 if (MB_ISLOWER(cu) && cu != 170 |
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2579 && cu != 186) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2580 regmbc(cu); |
7 | 2581 break; |
2582 case CLASS_PRINT: | |
2583 for (cu = 1; cu <= 255; cu++) | |
2584 if (vim_isprintc(cu)) | |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2585 regmbc(cu); |
7 | 2586 break; |
2587 case CLASS_PUNCT: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2588 for (cu = 1; cu < 128; cu++) |
7 | 2589 if (ispunct(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2590 regmbc(cu); |
7 | 2591 break; |
2592 case CLASS_SPACE: | |
2593 for (cu = 9; cu <= 13; cu++) | |
2594 regc(cu); | |
2595 regc(' '); | |
2596 break; | |
2597 case CLASS_UPPER: | |
2598 for (cu = 1; cu <= 255; cu++) | |
1347 | 2599 if (MB_ISUPPER(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2600 regmbc(cu); |
7 | 2601 break; |
2602 case CLASS_XDIGIT: | |
2603 for (cu = 1; cu <= 255; cu++) | |
2604 if (vim_isxdigit(cu)) | |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2605 regmbc(cu); |
7 | 2606 break; |
2607 case CLASS_TAB: | |
2608 regc('\t'); | |
2609 break; | |
2610 case CLASS_RETURN: | |
2611 regc('\r'); | |
2612 break; | |
2613 case CLASS_BACKSPACE: | |
2614 regc('\b'); | |
2615 break; | |
2616 case CLASS_ESCAPE: | |
2617 regc('\033'); | |
2618 break; | |
2619 } | |
2620 } | |
2621 else | |
2622 { | |
2623 #ifdef FEAT_MBYTE | |
2624 if (has_mbyte) | |
2625 { | |
2626 int len; | |
2627 | |
2628 /* produce a multibyte character, including any | |
2629 * following composing characters */ | |
2630 startc = mb_ptr2char(regparse); | |
474 | 2631 len = (*mb_ptr2len)(regparse); |
7 | 2632 if (enc_utf8 && utf_char2len(startc) != len) |
2633 startc = -1; /* composing chars */ | |
2634 while (--len >= 0) | |
2635 regc(*regparse++); | |
2636 } | |
2637 else | |
2638 #endif | |
2639 { | |
2640 startc = *regparse++; | |
2641 regc(startc); | |
2642 } | |
2643 } | |
2644 } | |
2645 regc(NUL); | |
2646 prevchr_len = 1; /* last char was the ']' */ | |
2647 if (*regparse != ']') | |
2648 EMSG_RET_NULL(_(e_toomsbra)); /* Cannot happen? */ | |
2649 skipchr(); /* let's be friends with the lexer again */ | |
2650 *flagp |= HASWIDTH | SIMPLE; | |
2651 break; | |
2652 } | |
481 | 2653 else if (reg_strict) |
4444 | 2654 EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF); |
7 | 2655 } |
2656 /* FALLTHROUGH */ | |
2657 | |
2658 default: | |
2659 { | |
2660 int len; | |
2661 | |
2662 #ifdef FEAT_MBYTE | |
2663 /* A multi-byte character is handled as a separate atom if it's | |
714 | 2664 * before a multi and when it's a composing char. */ |
2665 if (use_multibytecode(c)) | |
7 | 2666 { |
714 | 2667 do_multibyte: |
7 | 2668 ret = regnode(MULTIBYTECODE); |
2669 regmbc(c); | |
2670 *flagp |= HASWIDTH | SIMPLE; | |
2671 break; | |
2672 } | |
2673 #endif | |
2674 | |
2675 ret = regnode(EXACTLY); | |
2676 | |
2677 /* | |
2678 * Append characters as long as: | |
2679 * - there is no following multi, we then need the character in | |
2680 * front of it as a single character operand | |
2681 * - not running into a Magic character | |
2682 * - "one_exactly" is not set | |
2683 * But always emit at least one character. Might be a Multi, | |
2684 * e.g., a "[" without matching "]". | |
2685 */ | |
2686 for (len = 0; c != NUL && (len == 0 | |
2687 || (re_multi_type(peekchr()) == NOT_MULTI | |
2688 && !one_exactly | |
2689 && !is_Magic(c))); ++len) | |
2690 { | |
2691 c = no_Magic(c); | |
2692 #ifdef FEAT_MBYTE | |
2693 if (has_mbyte) | |
2694 { | |
2695 regmbc(c); | |
2696 if (enc_utf8) | |
2697 { | |
2698 int l; | |
2699 | |
714 | 2700 /* Need to get composing character too. */ |
7 | 2701 for (;;) |
2702 { | |
714 | 2703 l = utf_ptr2len(regparse); |
2704 if (!UTF_COMPOSINGLIKE(regparse, regparse + l)) | |
7 | 2705 break; |
714 | 2706 regmbc(utf_ptr2char(regparse)); |
2707 skipchr(); | |
7 | 2708 } |
2709 } | |
2710 } | |
2711 else | |
2712 #endif | |
2713 regc(c); | |
2714 c = getchr(); | |
2715 } | |
2716 ungetchr(); | |
2717 | |
2718 regc(NUL); | |
2719 *flagp |= HASWIDTH; | |
2720 if (len == 1) | |
2721 *flagp |= SIMPLE; | |
2722 } | |
2723 break; | |
2724 } | |
2725 | |
2726 return ret; | |
2727 } | |
2728 | |
714 | 2729 #ifdef FEAT_MBYTE |
2730 /* | |
2731 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for | |
2732 * character "c". | |
2733 */ | |
2734 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2735 use_multibytecode(int c) |
714 | 2736 { |
2737 return has_mbyte && (*mb_char2len)(c) > 1 | |
2738 && (re_multi_type(peekchr()) != NOT_MULTI | |
2739 || (enc_utf8 && utf_iscomposing(c))); | |
2740 } | |
2741 #endif | |
2742 | |
7 | 2743 /* |
4444 | 2744 * Emit a node. |
7 | 2745 * Return pointer to generated code. |
2746 */ | |
2747 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2748 regnode(int op) |
7 | 2749 { |
2750 char_u *ret; | |
2751 | |
2752 ret = regcode; | |
2753 if (ret == JUST_CALC_SIZE) | |
2754 regsize += 3; | |
2755 else | |
2756 { | |
2757 *regcode++ = op; | |
2758 *regcode++ = NUL; /* Null "next" pointer. */ | |
2759 *regcode++ = NUL; | |
2760 } | |
2761 return ret; | |
2762 } | |
2763 | |
2764 /* | |
2765 * Emit (if appropriate) a byte of code | |
2766 */ | |
2767 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2768 regc(int b) |
7 | 2769 { |
2770 if (regcode == JUST_CALC_SIZE) | |
2771 regsize++; | |
2772 else | |
2773 *regcode++ = b; | |
2774 } | |
2775 | |
2776 #ifdef FEAT_MBYTE | |
2777 /* | |
2778 * Emit (if appropriate) a multi-byte character of code | |
2779 */ | |
2780 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2781 regmbc(int c) |
7 | 2782 { |
2974 | 2783 if (!has_mbyte && c > 0xff) |
2784 return; | |
7 | 2785 if (regcode == JUST_CALC_SIZE) |
2786 regsize += (*mb_char2len)(c); | |
2787 else | |
2788 regcode += (*mb_char2bytes)(c, regcode); | |
2789 } | |
2790 #endif | |
2791 | |
2792 /* | |
4444 | 2793 * Insert an operator in front of already-emitted operand |
7 | 2794 * |
2795 * Means relocating the operand. | |
2796 */ | |
2797 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2798 reginsert(int op, char_u *opnd) |
7 | 2799 { |
2800 char_u *src; | |
2801 char_u *dst; | |
2802 char_u *place; | |
2803 | |
2804 if (regcode == JUST_CALC_SIZE) | |
2805 { | |
2806 regsize += 3; | |
2807 return; | |
2808 } | |
2809 src = regcode; | |
2810 regcode += 3; | |
2811 dst = regcode; | |
2812 while (src > opnd) | |
2813 *--dst = *--src; | |
2814 | |
2815 place = opnd; /* Op node, where operand used to be. */ | |
2816 *place++ = op; | |
2817 *place++ = NUL; | |
2818 *place = NUL; | |
2819 } | |
2820 | |
2821 /* | |
4444 | 2822 * Insert an operator in front of already-emitted operand. |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2823 * Add a number to the operator. |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2824 */ |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2825 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2826 reginsert_nr(int op, long val, char_u *opnd) |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2827 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2828 char_u *src; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2829 char_u *dst; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2830 char_u *place; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2831 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2832 if (regcode == JUST_CALC_SIZE) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2833 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2834 regsize += 7; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2835 return; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2836 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2837 src = regcode; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2838 regcode += 7; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2839 dst = regcode; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2840 while (src > opnd) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2841 *--dst = *--src; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2842 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2843 place = opnd; /* Op node, where operand used to be. */ |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2844 *place++ = op; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2845 *place++ = NUL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2846 *place++ = NUL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2847 place = re_put_long(place, (long_u)val); |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2848 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2849 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2850 /* |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2851 * Insert an operator in front of already-emitted operand. |
7 | 2852 * The operator has the given limit values as operands. Also set next pointer. |
2853 * | |
2854 * Means relocating the operand. | |
2855 */ | |
2856 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2857 reginsert_limits( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2858 int op, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2859 long minval, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2860 long maxval, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2861 char_u *opnd) |
7 | 2862 { |
2863 char_u *src; | |
2864 char_u *dst; | |
2865 char_u *place; | |
2866 | |
2867 if (regcode == JUST_CALC_SIZE) | |
2868 { | |
2869 regsize += 11; | |
2870 return; | |
2871 } | |
2872 src = regcode; | |
2873 regcode += 11; | |
2874 dst = regcode; | |
2875 while (src > opnd) | |
2876 *--dst = *--src; | |
2877 | |
2878 place = opnd; /* Op node, where operand used to be. */ | |
2879 *place++ = op; | |
2880 *place++ = NUL; | |
2881 *place++ = NUL; | |
2882 place = re_put_long(place, (long_u)minval); | |
2883 place = re_put_long(place, (long_u)maxval); | |
2884 regtail(opnd, place); | |
2885 } | |
2886 | |
2887 /* | |
2888 * Write a long as four bytes at "p" and return pointer to the next char. | |
2889 */ | |
2890 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2891 re_put_long(char_u *p, long_u val) |
7 | 2892 { |
2893 *p++ = (char_u) ((val >> 24) & 0377); | |
2894 *p++ = (char_u) ((val >> 16) & 0377); | |
2895 *p++ = (char_u) ((val >> 8) & 0377); | |
2896 *p++ = (char_u) (val & 0377); | |
2897 return p; | |
2898 } | |
2899 | |
2900 /* | |
4444 | 2901 * Set the next-pointer at the end of a node chain. |
7 | 2902 */ |
2903 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2904 regtail(char_u *p, char_u *val) |
7 | 2905 { |
2906 char_u *scan; | |
2907 char_u *temp; | |
2908 int offset; | |
2909 | |
2910 if (p == JUST_CALC_SIZE) | |
2911 return; | |
2912 | |
2913 /* Find last node. */ | |
2914 scan = p; | |
2915 for (;;) | |
2916 { | |
2917 temp = regnext(scan); | |
2918 if (temp == NULL) | |
2919 break; | |
2920 scan = temp; | |
2921 } | |
2922 | |
233 | 2923 if (OP(scan) == BACK) |
7 | 2924 offset = (int)(scan - val); |
2925 else | |
2926 offset = (int)(val - scan); | |
2010 | 2927 /* When the offset uses more than 16 bits it can no longer fit in the two |
2974 | 2928 * bytes available. Use a global flag to avoid having to check return |
2010 | 2929 * values in too many places. */ |
2930 if (offset > 0xffff) | |
2931 reg_toolong = TRUE; | |
2932 else | |
2933 { | |
2934 *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377); | |
2935 *(scan + 2) = (char_u) (offset & 0377); | |
2936 } | |
7 | 2937 } |
2938 | |
2939 /* | |
4444 | 2940 * Like regtail, on item after a BRANCH; nop if none. |
7 | 2941 */ |
2942 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2943 regoptail(char_u *p, char_u *val) |
7 | 2944 { |
2945 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */ | |
2946 if (p == NULL || p == JUST_CALC_SIZE | |
2947 || (OP(p) != BRANCH | |
2948 && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9))) | |
2949 return; | |
2950 regtail(OPERAND(p), val); | |
2951 } | |
2952 | |
2953 /* | |
4444 | 2954 * Functions for getting characters from the regexp input. |
7 | 2955 */ |
4444 | 2956 /* |
2957 * Start parsing at "str". | |
2958 */ | |
7 | 2959 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2960 initchr(char_u *str) |
7 | 2961 { |
2962 regparse = str; | |
2963 prevchr_len = 0; | |
2964 curchr = prevprevchr = prevchr = nextchr = -1; | |
2965 at_start = TRUE; | |
2966 prev_at_start = FALSE; | |
2967 } | |
2968 | |
4444 | 2969 /* |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2970 * Save the current parse state, so that it can be restored and parsing |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2971 * starts in the same state again. |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2972 */ |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2973 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2974 save_parse_state(parse_state_T *ps) |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2975 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2976 ps->regparse = regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2977 ps->prevchr_len = prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2978 ps->curchr = curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2979 ps->prevchr = prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2980 ps->prevprevchr = prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2981 ps->nextchr = nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2982 ps->at_start = at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2983 ps->prev_at_start = prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2984 ps->regnpar = regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2985 } |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2986 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2987 /* |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2988 * Restore a previously saved parse state. |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2989 */ |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2990 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2991 restore_parse_state(parse_state_T *ps) |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2992 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2993 regparse = ps->regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2994 prevchr_len = ps->prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2995 curchr = ps->curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2996 prevchr = ps->prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2997 prevprevchr = ps->prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2998 nextchr = ps->nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2999 at_start = ps->at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3000 prev_at_start = ps->prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3001 regnpar = ps->regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3002 } |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3003 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3004 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3005 /* |
4444 | 3006 * Get the next character without advancing. |
3007 */ | |
7 | 3008 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3009 peekchr(void) |
7 | 3010 { |
167 | 3011 static int after_slash = FALSE; |
3012 | |
7 | 3013 if (curchr == -1) |
3014 { | |
3015 switch (curchr = regparse[0]) | |
3016 { | |
3017 case '.': | |
3018 case '[': | |
3019 case '~': | |
3020 /* magic when 'magic' is on */ | |
3021 if (reg_magic >= MAGIC_ON) | |
3022 curchr = Magic(curchr); | |
3023 break; | |
3024 case '(': | |
3025 case ')': | |
3026 case '{': | |
3027 case '%': | |
3028 case '+': | |
3029 case '=': | |
3030 case '?': | |
3031 case '@': | |
3032 case '!': | |
3033 case '&': | |
3034 case '|': | |
3035 case '<': | |
3036 case '>': | |
3037 case '#': /* future ext. */ | |
3038 case '"': /* future ext. */ | |
3039 case '\'': /* future ext. */ | |
3040 case ',': /* future ext. */ | |
3041 case '-': /* future ext. */ | |
3042 case ':': /* future ext. */ | |
3043 case ';': /* future ext. */ | |
3044 case '`': /* future ext. */ | |
3045 case '/': /* Can't be used in / command */ | |
3046 /* magic only after "\v" */ | |
3047 if (reg_magic == MAGIC_ALL) | |
3048 curchr = Magic(curchr); | |
3049 break; | |
3050 case '*': | |
167 | 3051 /* * is not magic as the very first character, eg "?*ptr", when |
3052 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But | |
3053 * "\(\*" is not magic, thus must be magic if "after_slash" */ | |
3054 if (reg_magic >= MAGIC_ON | |
3055 && !at_start | |
3056 && !(prev_at_start && prevchr == Magic('^')) | |
3057 && (after_slash | |
3058 || (prevchr != Magic('(') | |
3059 && prevchr != Magic('&') | |
3060 && prevchr != Magic('|')))) | |
7 | 3061 curchr = Magic('*'); |
3062 break; | |
3063 case '^': | |
3064 /* '^' is only magic as the very first character and if it's after | |
3065 * "\(", "\|", "\&' or "\n" */ | |
3066 if (reg_magic >= MAGIC_OFF | |
3067 && (at_start | |
3068 || reg_magic == MAGIC_ALL | |
3069 || prevchr == Magic('(') | |
3070 || prevchr == Magic('|') | |
3071 || prevchr == Magic('&') | |
3072 || prevchr == Magic('n') | |
3073 || (no_Magic(prevchr) == '(' | |
3074 && prevprevchr == Magic('%')))) | |
3075 { | |
3076 curchr = Magic('^'); | |
3077 at_start = TRUE; | |
3078 prev_at_start = FALSE; | |
3079 } | |
3080 break; | |
3081 case '$': | |
3082 /* '$' is only magic as the very last char and if it's in front of | |
3083 * either "\|", "\)", "\&", or "\n" */ | |
3084 if (reg_magic >= MAGIC_OFF) | |
3085 { | |
3086 char_u *p = regparse + 1; | |
6041 | 3087 int is_magic_all = (reg_magic == MAGIC_ALL); |
3088 | |
3089 /* ignore \c \C \m \M \v \V and \Z after '$' */ | |
7 | 3090 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C' |
6041 | 3091 || p[1] == 'm' || p[1] == 'M' |
3092 || p[1] == 'v' || p[1] == 'V' || p[1] == 'Z')) | |
3093 { | |
3094 if (p[1] == 'v') | |
3095 is_magic_all = TRUE; | |
3096 else if (p[1] == 'm' || p[1] == 'M' || p[1] == 'V') | |
3097 is_magic_all = FALSE; | |
7 | 3098 p += 2; |
6041 | 3099 } |
7 | 3100 if (p[0] == NUL |
3101 || (p[0] == '\\' | |
3102 && (p[1] == '|' || p[1] == '&' || p[1] == ')' | |
3103 || p[1] == 'n')) | |
6041 | 3104 || (is_magic_all |
3105 && (p[0] == '|' || p[0] == '&' || p[0] == ')')) | |
7 | 3106 || reg_magic == MAGIC_ALL) |
3107 curchr = Magic('$'); | |
3108 } | |
3109 break; | |
3110 case '\\': | |
3111 { | |
3112 int c = regparse[1]; | |
3113 | |
3114 if (c == NUL) | |
3115 curchr = '\\'; /* trailing '\' */ | |
3116 else if ( | |
3117 #ifdef EBCDIC | |
3118 vim_strchr(META, c) | |
3119 #else | |
3120 c <= '~' && META_flags[c] | |
3121 #endif | |
3122 ) | |
3123 { | |
3124 /* | |
3125 * META contains everything that may be magic sometimes, | |
3126 * except ^ and $ ("\^" and "\$" are only magic after | |
6830 | 3127 * "\V"). We now fetch the next character and toggle its |
7 | 3128 * magicness. Therefore, \ is so meta-magic that it is |
3129 * not in META. | |
3130 */ | |
3131 curchr = -1; | |
3132 prev_at_start = at_start; | |
3133 at_start = FALSE; /* be able to say "/\*ptr" */ | |
3134 ++regparse; | |
167 | 3135 ++after_slash; |
7 | 3136 peekchr(); |
3137 --regparse; | |
167 | 3138 --after_slash; |
7 | 3139 curchr = toggle_Magic(curchr); |
3140 } | |
3141 else if (vim_strchr(REGEXP_ABBR, c)) | |
3142 { | |
3143 /* | |
3144 * Handle abbreviations, like "\t" for TAB -- webb | |
3145 */ | |
3146 curchr = backslash_trans(c); | |
3147 } | |
3148 else if (reg_magic == MAGIC_NONE && (c == '$' || c == '^')) | |
3149 curchr = toggle_Magic(c); | |
3150 else | |
3151 { | |
3152 /* | |
3153 * Next character can never be (made) magic? | |
3154 * Then backslashing it won't do anything. | |
3155 */ | |
3156 #ifdef FEAT_MBYTE | |
3157 if (has_mbyte) | |
3158 curchr = (*mb_ptr2char)(regparse + 1); | |
3159 else | |
3160 #endif | |
3161 curchr = c; | |
3162 } | |
3163 break; | |
3164 } | |
3165 | |
3166 #ifdef FEAT_MBYTE | |
3167 default: | |
3168 if (has_mbyte) | |
3169 curchr = (*mb_ptr2char)(regparse); | |
3170 #endif | |
3171 } | |
3172 } | |
3173 | |
3174 return curchr; | |
3175 } | |
3176 | |
3177 /* | |
3178 * Eat one lexed character. Do this in a way that we can undo it. | |
3179 */ | |
3180 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3181 skipchr(void) |
7 | 3182 { |
3183 /* peekchr() eats a backslash, do the same here */ | |
3184 if (*regparse == '\\') | |
3185 prevchr_len = 1; | |
3186 else | |
3187 prevchr_len = 0; | |
3188 if (regparse[prevchr_len] != NUL) | |
3189 { | |
3190 #ifdef FEAT_MBYTE | |
714 | 3191 if (enc_utf8) |
1449 | 3192 /* exclude composing chars that mb_ptr2len does include */ |
3193 prevchr_len += utf_ptr2len(regparse + prevchr_len); | |
714 | 3194 else if (has_mbyte) |
474 | 3195 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len); |
7 | 3196 else |
3197 #endif | |
3198 ++prevchr_len; | |
3199 } | |
3200 regparse += prevchr_len; | |
3201 prev_at_start = at_start; | |
3202 at_start = FALSE; | |
3203 prevprevchr = prevchr; | |
3204 prevchr = curchr; | |
3205 curchr = nextchr; /* use previously unget char, or -1 */ | |
3206 nextchr = -1; | |
3207 } | |
3208 | |
3209 /* | |
3210 * Skip a character while keeping the value of prev_at_start for at_start. | |
3211 * prevchr and prevprevchr are also kept. | |
3212 */ | |
3213 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3214 skipchr_keepstart(void) |
7 | 3215 { |
3216 int as = prev_at_start; | |
3217 int pr = prevchr; | |
3218 int prpr = prevprevchr; | |
3219 | |
3220 skipchr(); | |
3221 at_start = as; | |
3222 prevchr = pr; | |
3223 prevprevchr = prpr; | |
3224 } | |
3225 | |
4444 | 3226 /* |
3227 * Get the next character from the pattern. We know about magic and such, so | |
3228 * therefore we need a lexical analyzer. | |
3229 */ | |
7 | 3230 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3231 getchr(void) |
7 | 3232 { |
3233 int chr = peekchr(); | |
3234 | |
3235 skipchr(); | |
3236 return chr; | |
3237 } | |
3238 | |
3239 /* | |
3240 * put character back. Works only once! | |
3241 */ | |
3242 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3243 ungetchr(void) |
7 | 3244 { |
3245 nextchr = curchr; | |
3246 curchr = prevchr; | |
3247 prevchr = prevprevchr; | |
3248 at_start = prev_at_start; | |
3249 prev_at_start = FALSE; | |
3250 | |
3251 /* Backup regparse, so that it's at the same position as before the | |
3252 * getchr(). */ | |
3253 regparse -= prevchr_len; | |
3254 } | |
3255 | |
3256 /* | |
29 | 3257 * Get and return the value of the hex string at the current position. |
3258 * Return -1 if there is no valid hex number. | |
3259 * The position is updated: | |
24 | 3260 * blahblah\%x20asdf |
856 | 3261 * before-^ ^-after |
24 | 3262 * The parameter controls the maximum number of input characters. This will be |
3263 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence. | |
3264 */ | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3265 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3266 gethexchrs(int maxinputlen) |
24 | 3267 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3268 long_u nr = 0; |
24 | 3269 int c; |
3270 int i; | |
3271 | |
3272 for (i = 0; i < maxinputlen; ++i) | |
3273 { | |
3274 c = regparse[0]; | |
3275 if (!vim_isxdigit(c)) | |
3276 break; | |
3277 nr <<= 4; | |
3278 nr |= hex2nr(c); | |
3279 ++regparse; | |
3280 } | |
3281 | |
3282 if (i == 0) | |
3283 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3284 return (long)nr; |
24 | 3285 } |
3286 | |
3287 /* | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
3288 * Get and return the value of the decimal string immediately after the |
24 | 3289 * current position. Return -1 for invalid. Consumes all digits. |
3290 */ | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3291 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3292 getdecchrs(void) |
24 | 3293 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3294 long_u nr = 0; |
24 | 3295 int c; |
3296 int i; | |
3297 | |
3298 for (i = 0; ; ++i) | |
3299 { | |
3300 c = regparse[0]; | |
3301 if (c < '0' || c > '9') | |
3302 break; | |
3303 nr *= 10; | |
3304 nr += c - '0'; | |
3305 ++regparse; | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
3306 curchr = -1; /* no longer valid */ |
24 | 3307 } |
3308 | |
3309 if (i == 0) | |
3310 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3311 return (long)nr; |
24 | 3312 } |
3313 | |
3314 /* | |
3315 * get and return the value of the octal string immediately after the current | |
3316 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle | |
3317 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't | |
3318 * treat 8 or 9 as recognised characters. Position is updated: | |
3319 * blahblah\%o210asdf | |
856 | 3320 * before-^ ^-after |
24 | 3321 */ |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3322 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3323 getoctchrs(void) |
24 | 3324 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3325 long_u nr = 0; |
24 | 3326 int c; |
3327 int i; | |
3328 | |
3329 for (i = 0; i < 3 && nr < 040; ++i) | |
3330 { | |
3331 c = regparse[0]; | |
3332 if (c < '0' || c > '7') | |
3333 break; | |
3334 nr <<= 3; | |
3335 nr |= hex2nr(c); | |
3336 ++regparse; | |
3337 } | |
3338 | |
3339 if (i == 0) | |
3340 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3341 return (long)nr; |
24 | 3342 } |
3343 | |
3344 /* | |
3345 * Get a number after a backslash that is inside []. | |
3346 * When nothing is recognized return a backslash. | |
3347 */ | |
3348 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3349 coll_get_char(void) |
24 | 3350 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3351 long nr = -1; |
24 | 3352 |
3353 switch (*regparse++) | |
3354 { | |
3355 case 'd': nr = getdecchrs(); break; | |
3356 case 'o': nr = getoctchrs(); break; | |
3357 case 'x': nr = gethexchrs(2); break; | |
3358 case 'u': nr = gethexchrs(4); break; | |
3359 case 'U': nr = gethexchrs(8); break; | |
3360 } | |
3361 if (nr < 0) | |
3362 { | |
3363 /* If getting the number fails be backwards compatible: the character | |
3364 * is a backslash. */ | |
3365 --regparse; | |
3366 nr = '\\'; | |
3367 } | |
3368 return nr; | |
3369 } | |
3370 | |
3371 /* | |
7 | 3372 * read_limits - Read two integers to be taken as a minimum and maximum. |
3373 * If the first character is '-', then the range is reversed. | |
3374 * Should end with 'end'. If minval is missing, zero is default, if maxval is | |
3375 * missing, a very big number is the default. | |
3376 */ | |
3377 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3378 read_limits(long *minval, long *maxval) |
7 | 3379 { |
3380 int reverse = FALSE; | |
3381 char_u *first_char; | |
3382 long tmp; | |
3383 | |
3384 if (*regparse == '-') | |
3385 { | |
3386 /* Starts with '-', so reverse the range later */ | |
3387 regparse++; | |
3388 reverse = TRUE; | |
3389 } | |
3390 first_char = regparse; | |
3391 *minval = getdigits(®parse); | |
3392 if (*regparse == ',') /* There is a comma */ | |
3393 { | |
3394 if (vim_isdigit(*++regparse)) | |
3395 *maxval = getdigits(®parse); | |
3396 else | |
3397 *maxval = MAX_LIMIT; | |
3398 } | |
3399 else if (VIM_ISDIGIT(*first_char)) | |
3400 *maxval = *minval; /* It was \{n} or \{-n} */ | |
3401 else | |
3402 *maxval = MAX_LIMIT; /* It was \{} or \{-} */ | |
3403 if (*regparse == '\\') | |
3404 regparse++; /* Allow either \{...} or \{...\} */ | |
167 | 3405 if (*regparse != '}') |
7 | 3406 { |
3407 sprintf((char *)IObuff, _("E554: Syntax error in %s{...}"), | |
3408 reg_magic == MAGIC_ALL ? "" : "\\"); | |
3409 EMSG_RET_FAIL(IObuff); | |
3410 } | |
3411 | |
3412 /* | |
3413 * Reverse the range if there was a '-', or make sure it is in the right | |
3414 * order otherwise. | |
3415 */ | |
3416 if ((!reverse && *minval > *maxval) || (reverse && *minval < *maxval)) | |
3417 { | |
3418 tmp = *minval; | |
3419 *minval = *maxval; | |
3420 *maxval = tmp; | |
3421 } | |
3422 skipchr(); /* let's be friends with the lexer again */ | |
3423 return OK; | |
3424 } | |
3425 | |
3426 /* | |
3427 * vim_regexec and friends | |
3428 */ | |
3429 | |
3430 /* | |
3431 * Global work variables for vim_regexec(). | |
3432 */ | |
3433 | |
3434 /* | |
3435 * Structure used to save the current input state, when it needs to be | |
3436 * restored after trying a match. Used by reg_save() and reg_restore(). | |
233 | 3437 * Also stores the length of "backpos". |
7 | 3438 */ |
3439 typedef struct | |
3440 { | |
3441 union | |
3442 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3443 char_u *ptr; /* rex.input pointer, for single-line regexp */ |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3444 lpos_T pos; /* rex.input pos, for multi-line regexp */ |
7 | 3445 } rs_u; |
233 | 3446 int rs_len; |
7 | 3447 } regsave_T; |
3448 | |
3449 /* struct to save start/end pointer/position in for \(\) */ | |
3450 typedef struct | |
3451 { | |
3452 union | |
3453 { | |
3454 char_u *ptr; | |
3455 lpos_T pos; | |
3456 } se_u; | |
3457 } save_se_T; | |
3458 | |
1579 | 3459 /* used for BEHIND and NOBEHIND matching */ |
3460 typedef struct regbehind_S | |
3461 { | |
3462 regsave_T save_after; | |
3463 regsave_T save_behind; | |
1602 | 3464 int save_need_clear_subexpr; |
1579 | 3465 save_se_T save_start[NSUBEXP]; |
3466 save_se_T save_end[NSUBEXP]; | |
3467 } regbehind_T; | |
3468 | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3469 static long bt_regexec_both(char_u *line, colnr_T col, proftime_T *tm, int *timed_out); |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3470 static long regtry(bt_regprog_T *prog, colnr_T col, proftime_T *tm, int *timed_out); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3471 static void cleanup_subexpr(void); |
7 | 3472 #ifdef FEAT_SYN_HL |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3473 static void cleanup_zsubexpr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3474 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3475 static void save_subexpr(regbehind_T *bp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3476 static void restore_subexpr(regbehind_T *bp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3477 static void reg_nextline(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3478 static void reg_save(regsave_T *save, garray_T *gap); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3479 static void reg_restore(regsave_T *save, garray_T *gap); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3480 static int reg_save_equal(regsave_T *save); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3481 static void save_se_multi(save_se_T *savep, lpos_T *posp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3482 static void save_se_one(save_se_T *savep, char_u **pp); |
7 | 3483 |
3484 /* Save the sub-expressions before attempting a match. */ | |
3485 #define save_se(savep, posp, pp) \ | |
3486 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp)) | |
3487 | |
3488 /* After a failed match restore the sub-expressions. */ | |
3489 #define restore_se(savep, posp, pp) { \ | |
3490 if (REG_MULTI) \ | |
3491 *(posp) = (savep)->se_u.pos; \ | |
3492 else \ | |
3493 *(pp) = (savep)->se_u.ptr; } | |
3494 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3495 static int re_num_cmp(long_u val, char_u *scan); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3496 static int match_with_backref(linenr_T start_lnum, colnr_T start_col, linenr_T end_lnum, colnr_T end_col, int *bytelen); |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3497 static int regmatch(char_u *prog, proftime_T *tm, int *timed_out); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3498 static int regrepeat(char_u *p, long maxcount); |
7 | 3499 |
3500 #ifdef DEBUG | |
3501 int regnarrate = 0; | |
3502 #endif | |
3503 | |
3504 /* | |
3505 * Sometimes need to save a copy of a line. Since alloc()/free() is very | |
3506 * slow, we keep one allocated piece of memory and only re-allocate it when | |
4444 | 3507 * it's too small. It's freed in bt_regexec_both() when finished. |
7 | 3508 */ |
1468 | 3509 static char_u *reg_tofree = NULL; |
7 | 3510 static unsigned reg_tofreelen; |
3511 | |
3512 /* | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3513 * Structure used to store the execution state of the regex engine. |
1209 | 3514 * Which ones are set depends on whether a single-line or multi-line match is |
7 | 3515 * done: |
3516 * single-line multi-line | |
3517 * reg_match ®match_T NULL | |
3518 * reg_mmatch NULL ®mmatch_T | |
3519 * reg_startp reg_match->startp <invalid> | |
3520 * reg_endp reg_match->endp <invalid> | |
3521 * reg_startpos <invalid> reg_mmatch->startpos | |
3522 * reg_endpos <invalid> reg_mmatch->endpos | |
3523 * reg_win NULL window in which to search | |
4061 | 3524 * reg_buf curbuf buffer in which to search |
7 | 3525 * reg_firstlnum <invalid> first line in which to search |
3526 * reg_maxline 0 last line nr | |
3527 * reg_line_lbr FALSE or TRUE FALSE | |
3528 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3529 typedef struct { |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3530 regmatch_T *reg_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3531 regmmatch_T *reg_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3532 char_u **reg_startp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3533 char_u **reg_endp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3534 lpos_T *reg_startpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3535 lpos_T *reg_endpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3536 win_T *reg_win; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3537 buf_T *reg_buf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3538 linenr_T reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3539 linenr_T reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3540 int reg_line_lbr; /* "\n" in string is line break */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3541 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3542 // The current match-position is stord in these variables: |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3543 linenr_T lnum; // line number, relative to first line |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3544 char_u *line; // start of current line |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3545 char_u *input; // current input, points into "regline" |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3546 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3547 int need_clear_subexpr; // subexpressions still need to be cleared |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3548 #ifdef FEAT_SYN_HL |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3549 int need_clear_zsubexpr; // extmatch subexpressions still need to be |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3550 // cleared |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3551 #endif |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3552 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3553 /* Internal copy of 'ignorecase'. It is set at each call to vim_regexec(). |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3554 * Normally it gets the value of "rm_ic" or "rmm_ic", but when the pattern |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3555 * contains '\c' or '\C' the value is overruled. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3556 int reg_ic; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3557 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3558 #ifdef FEAT_MBYTE |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3559 /* Similar to "reg_ic", but only for 'combining' characters. Set with \Z |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3560 * flag in the regexp. Defaults to false, always. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3561 int reg_icombine; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3562 #endif |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3563 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3564 /* Copy of "rmm_maxcol": maximum column to search for a match. Zero when |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3565 * there is no maximum. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3566 colnr_T reg_maxcol; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3567 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3568 // State for the NFA engine regexec. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3569 int nfa_has_zend; // NFA regexp \ze operator encountered. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3570 int nfa_has_backref; // NFA regexp \1 .. \9 encountered. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3571 int nfa_nsubexpr; // Number of sub expressions actually being used |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3572 // during execution. 1 if only the whole match |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3573 // (subexpr 0) is used. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3574 // listid is global, so that it increases on recursive calls to |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3575 // nfa_regmatch(), which means we don't have to clear the lastlist field of |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3576 // all the states. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3577 int nfa_listid; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3578 int nfa_alt_listid; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3579 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3580 #ifdef FEAT_SYN_HL |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3581 int nfa_has_zsubexpr; // NFA regexp has \z( ), set zsubexpr. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3582 #endif |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3583 } regexec_T; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3584 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3585 static regexec_T rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3586 static int rex_in_use = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3587 |
7 | 3588 |
270 | 3589 /* Values for rs_state in regitem_T. */ |
3590 typedef enum regstate_E | |
3591 { | |
3592 RS_NOPEN = 0 /* NOPEN and NCLOSE */ | |
3593 , RS_MOPEN /* MOPEN + [0-9] */ | |
3594 , RS_MCLOSE /* MCLOSE + [0-9] */ | |
3595 #ifdef FEAT_SYN_HL | |
3596 , RS_ZOPEN /* ZOPEN + [0-9] */ | |
3597 , RS_ZCLOSE /* ZCLOSE + [0-9] */ | |
3598 #endif | |
3599 , RS_BRANCH /* BRANCH */ | |
3600 , RS_BRCPLX_MORE /* BRACE_COMPLEX and trying one more match */ | |
3601 , RS_BRCPLX_LONG /* BRACE_COMPLEX and trying longest match */ | |
3602 , RS_BRCPLX_SHORT /* BRACE_COMPLEX and trying shortest match */ | |
3603 , RS_NOMATCH /* NOMATCH */ | |
3604 , RS_BEHIND1 /* BEHIND / NOBEHIND matching rest */ | |
3605 , RS_BEHIND2 /* BEHIND / NOBEHIND matching behind part */ | |
3606 , RS_STAR_LONG /* STAR/PLUS/BRACE_SIMPLE longest match */ | |
3607 , RS_STAR_SHORT /* STAR/PLUS/BRACE_SIMPLE shortest match */ | |
3608 } regstate_T; | |
3609 | |
3610 /* | |
3611 * When there are alternatives a regstate_T is put on the regstack to remember | |
3612 * what we are doing. | |
3613 * Before it may be another type of item, depending on rs_state, to remember | |
3614 * more things. | |
3615 */ | |
3616 typedef struct regitem_S | |
3617 { | |
3618 regstate_T rs_state; /* what we are doing, one of RS_ above */ | |
3619 char_u *rs_scan; /* current node in program */ | |
3620 union | |
3621 { | |
3622 save_se_T sesave; | |
3623 regsave_T regsave; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3624 } rs_un; /* room for saving rex.input */ |
1579 | 3625 short rs_no; /* submatch nr or BEHIND/NOBEHIND */ |
270 | 3626 } regitem_T; |
3627 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3628 static regitem_T *regstack_push(regstate_T state, char_u *scan); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3629 static void regstack_pop(char_u **scan); |
270 | 3630 |
3631 /* used for STAR, PLUS and BRACE_SIMPLE matching */ | |
3632 typedef struct regstar_S | |
3633 { | |
3634 int nextb; /* next byte */ | |
3635 int nextb_ic; /* next byte reverse case */ | |
3636 long count; | |
3637 long minval; | |
3638 long maxval; | |
3639 } regstar_T; | |
3640 | |
3641 /* used to store input position when a BACK was encountered, so that we now if | |
3642 * we made any progress since the last time. */ | |
3643 typedef struct backpos_S | |
3644 { | |
3645 char_u *bp_scan; /* "scan" where BACK was encountered */ | |
3646 regsave_T bp_pos; /* last input position */ | |
3647 } backpos_T; | |
3648 | |
3649 /* | |
1520 | 3650 * "regstack" and "backpos" are used by regmatch(). They are kept over calls |
3651 * to avoid invoking malloc() and free() often. | |
3652 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T | |
3653 * or regbehind_T. | |
3654 * "backpos_T" is a table with backpos_T for BACK | |
270 | 3655 */ |
1520 | 3656 static garray_T regstack = {0, 0, 0, 0, NULL}; |
3657 static garray_T backpos = {0, 0, 0, 0, NULL}; | |
3658 | |
3659 /* | |
3660 * Both for regstack and backpos tables we use the following strategy of | |
3661 * allocation (to reduce malloc/free calls): | |
3662 * - Initial size is fairly small. | |
3663 * - When needed, the tables are grown bigger (8 times at first, double after | |
3664 * that). | |
3665 * - After executing the match we free the memory only if the array has grown. | |
3666 * Thus the memory is kept allocated when it's at the initial size. | |
3667 * This makes it fast while not keeping a lot of memory allocated. | |
3668 * A three times speed increase was observed when using many simple patterns. | |
3669 */ | |
3670 #define REGSTACK_INITIAL 2048 | |
3671 #define BACKPOS_INITIAL 64 | |
3672 | |
3673 #if defined(EXITFREE) || defined(PROTO) | |
3674 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3675 free_regexp_stuff(void) |
1520 | 3676 { |
3677 ga_clear(®stack); | |
3678 ga_clear(&backpos); | |
3679 vim_free(reg_tofree); | |
3680 vim_free(reg_prev_sub); | |
3681 } | |
3682 #endif | |
270 | 3683 |
7 | 3684 /* |
3685 * Get pointer to the line "lnum", which is relative to "reg_firstlnum". | |
3686 */ | |
3687 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3688 reg_getline(linenr_T lnum) |
7 | 3689 { |
3690 /* when looking behind for a match/no-match lnum is negative. But we | |
3691 * can't go before line 1 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3692 if (rex.reg_firstlnum + lnum < 1) |
7 | 3693 return NULL; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3694 if (lnum > rex.reg_maxline) |
481 | 3695 /* Must have matched the "\n" in the last line. */ |
3696 return (char_u *)""; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3697 return ml_get_buf(rex.reg_buf, rex.reg_firstlnum + lnum, FALSE); |
7 | 3698 } |
3699 | |
3700 static regsave_T behind_pos; | |
3701 | |
3702 #ifdef FEAT_SYN_HL | |
3703 static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */ | |
3704 static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */ | |
3705 static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */ | |
3706 static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */ | |
3707 #endif | |
3708 | |
3709 /* TRUE if using multi-line regexp. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3710 #define REG_MULTI (rex.reg_match == NULL) |
4444 | 3711 |
7 | 3712 /* |
3713 * Match a regexp against a string. | |
3714 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3715 * Uses curbuf for line count and 'iskeyword'. | |
5838 | 3716 * if "line_lbr" is TRUE consider a "\n" in "line" to be a line break. |
7 | 3717 * |
6390 | 3718 * Returns 0 for failure, number of lines contained in the match otherwise. |
7 | 3719 */ |
4444 | 3720 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3721 bt_regexec_nl( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3722 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3723 char_u *line, /* string to match against */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3724 colnr_T col, /* column to start looking for match */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3725 int line_lbr) |
7 | 3726 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3727 rex.reg_match = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3728 rex.reg_mmatch = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3729 rex.reg_maxline = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3730 rex.reg_line_lbr = line_lbr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3731 rex.reg_buf = curbuf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3732 rex.reg_win = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3733 rex.reg_ic = rmp->rm_ic; |
7 | 3734 #ifdef FEAT_MBYTE |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3735 rex.reg_icombine = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3736 #endif |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3737 rex.reg_maxcol = 0; |
6390 | 3738 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3739 return bt_regexec_both(line, col, NULL, NULL); |
7 | 3740 } |
3741 | |
3742 /* | |
3743 * Match a regexp against multiple lines. | |
3744 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3745 * Uses curbuf for line count and 'iskeyword'. | |
3746 * | |
3747 * Return zero if there is no match. Return number of lines contained in the | |
3748 * match otherwise. | |
3749 */ | |
4444 | 3750 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3751 bt_regexec_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3752 regmmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3753 win_T *win, /* window in which to search or NULL */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3754 buf_T *buf, /* buffer in which to search */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3755 linenr_T lnum, /* nr of line to start looking for match */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3756 colnr_T col, /* column to start looking for match */ |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3757 proftime_T *tm, /* timeout limit or NULL */ |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3758 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3759 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3760 rex.reg_match = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3761 rex.reg_mmatch = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3762 rex.reg_buf = buf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3763 rex.reg_win = win; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3764 rex.reg_firstlnum = lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3765 rex.reg_maxline = rex.reg_buf->b_ml.ml_line_count - lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3766 rex.reg_line_lbr = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3767 rex.reg_ic = rmp->rmm_ic; |
7 | 3768 #ifdef FEAT_MBYTE |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3769 rex.reg_icombine = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3770 #endif |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3771 rex.reg_maxcol = rmp->rmm_maxcol; |
7 | 3772 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3773 return bt_regexec_both(NULL, col, tm, timed_out); |
7 | 3774 } |
3775 | |
3776 /* | |
3777 * Match a regexp against a string ("line" points to the string) or multiple | |
3778 * lines ("line" is NULL, use reg_getline()). | |
6390 | 3779 * Returns 0 for failure, number of lines contained in the match otherwise. |
7 | 3780 */ |
3781 static long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3782 bt_regexec_both( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3783 char_u *line, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3784 colnr_T col, /* column to start looking for match */ |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3785 proftime_T *tm, /* timeout limit or NULL */ |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3786 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3787 { |
6390 | 3788 bt_regprog_T *prog; |
3789 char_u *s; | |
3790 long retval = 0L; | |
7 | 3791 |
1520 | 3792 /* Create "regstack" and "backpos" if they are not allocated yet. |
3793 * We allocate *_INITIAL amount of bytes first and then set the grow size | |
3794 * to much bigger value to avoid many malloc calls in case of deep regular | |
3795 * expressions. */ | |
3796 if (regstack.ga_data == NULL) | |
3797 { | |
3798 /* Use an item size of 1 byte, since we push different things | |
3799 * onto the regstack. */ | |
3800 ga_init2(®stack, 1, REGSTACK_INITIAL); | |
7009 | 3801 (void)ga_grow(®stack, REGSTACK_INITIAL); |
1520 | 3802 regstack.ga_growsize = REGSTACK_INITIAL * 8; |
3803 } | |
3804 | |
3805 if (backpos.ga_data == NULL) | |
3806 { | |
3807 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL); | |
7009 | 3808 (void)ga_grow(&backpos, BACKPOS_INITIAL); |
1520 | 3809 backpos.ga_growsize = BACKPOS_INITIAL * 8; |
3810 } | |
270 | 3811 |
7 | 3812 if (REG_MULTI) |
3813 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3814 prog = (bt_regprog_T *)rex.reg_mmatch->regprog; |
7 | 3815 line = reg_getline((linenr_T)0); |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3816 rex.reg_startpos = rex.reg_mmatch->startpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3817 rex.reg_endpos = rex.reg_mmatch->endpos; |
7 | 3818 } |
3819 else | |
3820 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3821 prog = (bt_regprog_T *)rex.reg_match->regprog; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3822 rex.reg_startp = rex.reg_match->startp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3823 rex.reg_endp = rex.reg_match->endp; |
7 | 3824 } |
3825 | |
3826 /* Be paranoid... */ | |
3827 if (prog == NULL || line == NULL) | |
3828 { | |
3829 EMSG(_(e_null)); | |
3830 goto theend; | |
3831 } | |
3832 | |
3833 /* Check validity of program. */ | |
3834 if (prog_magic_wrong()) | |
3835 goto theend; | |
3836 | |
410 | 3837 /* If the start column is past the maximum column: no need to try. */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3838 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
410 | 3839 goto theend; |
3840 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3841 /* If pattern contains "\c" or "\C": overrule value of rex.reg_ic */ |
7 | 3842 if (prog->regflags & RF_ICASE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3843 rex.reg_ic = TRUE; |
7 | 3844 else if (prog->regflags & RF_NOICASE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3845 rex.reg_ic = FALSE; |
7 | 3846 |
3847 #ifdef FEAT_MBYTE | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3848 /* If pattern contains "\Z" overrule value of rex.reg_icombine */ |
7 | 3849 if (prog->regflags & RF_ICOMBINE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3850 rex.reg_icombine = TRUE; |
7 | 3851 #endif |
3852 | |
3853 /* If there is a "must appear" string, look for it. */ | |
3854 if (prog->regmust != NULL) | |
3855 { | |
3856 int c; | |
3857 | |
3858 #ifdef FEAT_MBYTE | |
3859 if (has_mbyte) | |
3860 c = (*mb_ptr2char)(prog->regmust); | |
3861 else | |
3862 #endif | |
3863 c = *prog->regmust; | |
3864 s = line + col; | |
170 | 3865 |
3866 /* | |
3867 * This is used very often, esp. for ":global". Use three versions of | |
3868 * the loop to avoid overhead of conditions. | |
3869 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3870 if (!rex.reg_ic |
170 | 3871 #ifdef FEAT_MBYTE |
3872 && !has_mbyte | |
3873 #endif | |
3874 ) | |
3875 while ((s = vim_strbyte(s, c)) != NULL) | |
3876 { | |
3877 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3878 break; /* Found it. */ | |
3879 ++s; | |
3880 } | |
3881 #ifdef FEAT_MBYTE | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3882 else if (!rex.reg_ic || (!enc_utf8 && mb_char2len(c) > 1)) |
170 | 3883 while ((s = vim_strchr(s, c)) != NULL) |
3884 { | |
3885 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3886 break; /* Found it. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3887 MB_PTR_ADV(s); |
170 | 3888 } |
3889 #endif | |
3890 else | |
3891 while ((s = cstrchr(s, c)) != NULL) | |
3892 { | |
3893 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3894 break; /* Found it. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3895 MB_PTR_ADV(s); |
170 | 3896 } |
7 | 3897 if (s == NULL) /* Not present. */ |
3898 goto theend; | |
3899 } | |
3900 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3901 rex.line = line; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3902 rex.lnum = 0; |
2578 | 3903 reg_toolong = FALSE; |
7 | 3904 |
3905 /* Simplest case: Anchored match need be tried only once. */ | |
3906 if (prog->reganch) | |
3907 { | |
3908 int c; | |
3909 | |
3910 #ifdef FEAT_MBYTE | |
3911 if (has_mbyte) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3912 c = (*mb_ptr2char)(rex.line + col); |
7 | 3913 else |
3914 #endif | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3915 c = rex.line[col]; |
7 | 3916 if (prog->regstart == NUL |
3917 || prog->regstart == c | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3918 || (rex.reg_ic && (( |
7 | 3919 #ifdef FEAT_MBYTE |
3920 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c))) | |
3921 || (c < 255 && prog->regstart < 255 && | |
3922 #endif | |
1347 | 3923 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c))))) |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3924 retval = regtry(prog, col, tm, timed_out); |
7 | 3925 else |
3926 retval = 0; | |
3927 } | |
3928 else | |
3929 { | |
1521 | 3930 #ifdef FEAT_RELTIME |
3931 int tm_count = 0; | |
3932 #endif | |
7 | 3933 /* Messy cases: unanchored match. */ |
180 | 3934 while (!got_int) |
7 | 3935 { |
3936 if (prog->regstart != NUL) | |
3937 { | |
170 | 3938 /* Skip until the char we know it must start with. |
3939 * Used often, do some work to avoid call overhead. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3940 if (!rex.reg_ic |
170 | 3941 #ifdef FEAT_MBYTE |
3942 && !has_mbyte | |
3943 #endif | |
3944 ) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3945 s = vim_strbyte(rex.line + col, prog->regstart); |
170 | 3946 else |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3947 s = cstrchr(rex.line + col, prog->regstart); |
7 | 3948 if (s == NULL) |
3949 { | |
3950 retval = 0; | |
3951 break; | |
3952 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3953 col = (int)(s - rex.line); |
7 | 3954 } |
3955 | |
410 | 3956 /* Check for maximum column to try. */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3957 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
410 | 3958 { |
3959 retval = 0; | |
3960 break; | |
3961 } | |
3962 | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3963 retval = regtry(prog, col, tm, timed_out); |
7 | 3964 if (retval > 0) |
3965 break; | |
3966 | |
3967 /* if not currently on the first line, get it again */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3968 if (rex.lnum != 0) |
7 | 3969 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3970 rex.lnum = 0; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3971 rex.line = reg_getline((linenr_T)0); |
7 | 3972 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3973 if (rex.line[col] == NUL) |
7 | 3974 break; |
3975 #ifdef FEAT_MBYTE | |
3976 if (has_mbyte) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3977 col += (*mb_ptr2len)(rex.line + col); |
7 | 3978 else |
3979 #endif | |
3980 ++col; | |
1521 | 3981 #ifdef FEAT_RELTIME |
3982 /* Check for timeout once in a twenty times to avoid overhead. */ | |
3983 if (tm != NULL && ++tm_count == 20) | |
3984 { | |
3985 tm_count = 0; | |
3986 if (profile_passed_limit(tm)) | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3987 { |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3988 if (timed_out != NULL) |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3989 *timed_out = TRUE; |
1521 | 3990 break; |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3991 } |
1521 | 3992 } |
3993 #endif | |
7 | 3994 } |
3995 } | |
3996 | |
3997 theend: | |
1520 | 3998 /* Free "reg_tofree" when it's a bit big. |
3999 * Free regstack and backpos if they are bigger than their initial size. */ | |
4000 if (reg_tofreelen > 400) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
4001 VIM_CLEAR(reg_tofree); |
1520 | 4002 if (regstack.ga_maxlen > REGSTACK_INITIAL) |
4003 ga_clear(®stack); | |
4004 if (backpos.ga_maxlen > BACKPOS_INITIAL) | |
4005 ga_clear(&backpos); | |
270 | 4006 |
7 | 4007 return retval; |
4008 } | |
4009 | |
4010 #ifdef FEAT_SYN_HL | |
4011 /* | |
4012 * Create a new extmatch and mark it as referenced once. | |
4013 */ | |
4014 static reg_extmatch_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4015 make_extmatch(void) |
7 | 4016 { |
4017 reg_extmatch_T *em; | |
4018 | |
4019 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T)); | |
4020 if (em != NULL) | |
4021 em->refcnt = 1; | |
4022 return em; | |
4023 } | |
4024 | |
4025 /* | |
4026 * Add a reference to an extmatch. | |
4027 */ | |
4028 reg_extmatch_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4029 ref_extmatch(reg_extmatch_T *em) |
7 | 4030 { |
4031 if (em != NULL) | |
4032 em->refcnt++; | |
4033 return em; | |
4034 } | |
4035 | |
4036 /* | |
4037 * Remove a reference to an extmatch. If there are no references left, free | |
4038 * the info. | |
4039 */ | |
4040 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4041 unref_extmatch(reg_extmatch_T *em) |
7 | 4042 { |
4043 int i; | |
4044 | |
4045 if (em != NULL && --em->refcnt <= 0) | |
4046 { | |
4047 for (i = 0; i < NSUBEXP; ++i) | |
4048 vim_free(em->matches[i]); | |
4049 vim_free(em); | |
4050 } | |
4051 } | |
4052 #endif | |
4053 | |
4054 /* | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4055 * regtry - try match of "prog" with at rex.line["col"]. |
7 | 4056 * Returns 0 for failure, number of lines contained in the match otherwise. |
4057 */ | |
4058 static long | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4059 regtry( |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4060 bt_regprog_T *prog, |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4061 colnr_T col, |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4062 proftime_T *tm, /* timeout limit or NULL */ |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4063 int *timed_out) /* flag set on timeout or NULL */ |
7 | 4064 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4065 rex.input = rex.line + col; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4066 rex.need_clear_subexpr = TRUE; |
7 | 4067 #ifdef FEAT_SYN_HL |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4068 // Clear the external match subpointers if necessary. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4069 rex.need_clear_zsubexpr = (prog->reghasz == REX_SET); |
7 | 4070 #endif |
4071 | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4072 if (regmatch(prog->program + 1, tm, timed_out) == 0) |
189 | 4073 return 0; |
4074 | |
4075 cleanup_subexpr(); | |
4076 if (REG_MULTI) | |
7 | 4077 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4078 if (rex.reg_startpos[0].lnum < 0) |
7 | 4079 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4080 rex.reg_startpos[0].lnum = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4081 rex.reg_startpos[0].col = col; |
189 | 4082 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4083 if (rex.reg_endpos[0].lnum < 0) |
189 | 4084 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4085 rex.reg_endpos[0].lnum = rex.lnum; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4086 rex.reg_endpos[0].col = (int)(rex.input - rex.line); |
7 | 4087 } |
4088 else | |
189 | 4089 /* Use line number of "\ze". */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4090 rex.lnum = rex.reg_endpos[0].lnum; |
189 | 4091 } |
4092 else | |
4093 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4094 if (rex.reg_startp[0] == NULL) |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4095 rex.reg_startp[0] = rex.line + col; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4096 if (rex.reg_endp[0] == NULL) |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4097 rex.reg_endp[0] = rex.input; |
189 | 4098 } |
7 | 4099 #ifdef FEAT_SYN_HL |
189 | 4100 /* Package any found \z(...\) matches for export. Default is none. */ |
4101 unref_extmatch(re_extmatch_out); | |
4102 re_extmatch_out = NULL; | |
4103 | |
4104 if (prog->reghasz == REX_SET) | |
4105 { | |
4106 int i; | |
4107 | |
4108 cleanup_zsubexpr(); | |
4109 re_extmatch_out = make_extmatch(); | |
4110 for (i = 0; i < NSUBEXP; i++) | |
7 | 4111 { |
189 | 4112 if (REG_MULTI) |
7 | 4113 { |
189 | 4114 /* Only accept single line matches. */ |
4115 if (reg_startzpos[i].lnum >= 0 | |
5820 | 4116 && reg_endzpos[i].lnum == reg_startzpos[i].lnum |
4117 && reg_endzpos[i].col >= reg_startzpos[i].col) | |
189 | 4118 re_extmatch_out->matches[i] = |
4119 vim_strnsave(reg_getline(reg_startzpos[i].lnum) | |
7 | 4120 + reg_startzpos[i].col, |
189 | 4121 reg_endzpos[i].col - reg_startzpos[i].col); |
4122 } | |
4123 else | |
4124 { | |
4125 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL) | |
4126 re_extmatch_out->matches[i] = | |
7 | 4127 vim_strnsave(reg_startzp[i], |
189 | 4128 (int)(reg_endzp[i] - reg_startzp[i])); |
7 | 4129 } |
4130 } | |
189 | 4131 } |
7 | 4132 #endif |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4133 return 1 + rex.lnum; |
7 | 4134 } |
4135 | |
4136 #ifdef FEAT_MBYTE | |
4137 /* | |
4138 * Get class of previous character. | |
4139 */ | |
4140 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4141 reg_prev_class(void) |
7 | 4142 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4143 if (rex.input > rex.line) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4144 return mb_get_class_buf(rex.input - 1 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4145 - (*mb_head_off)(rex.line, rex.input - 1), rex.reg_buf); |
7 | 4146 return -1; |
4147 } | |
5735 | 4148 #endif |
4149 | |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4150 /* |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4151 * Return TRUE if the current rex.input position matches the Visual area. |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4152 */ |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4153 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4154 reg_match_visual(void) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4155 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4156 pos_T top, bot; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4157 linenr_T lnum; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4158 colnr_T col; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4159 win_T *wp = rex.reg_win == NULL ? curwin : rex.reg_win; |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4160 int mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4161 colnr_T start, end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4162 colnr_T start2, end2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4163 colnr_T cols; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4164 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4165 /* Check if the buffer is the current buffer. */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4166 if (rex.reg_buf != curbuf || VIsual.lnum == 0) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4167 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4168 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4169 if (VIsual_active) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4170 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4171 if (LT_POS(VIsual, wp->w_cursor)) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4172 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4173 top = VIsual; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4174 bot = wp->w_cursor; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4175 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4176 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4177 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4178 top = wp->w_cursor; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4179 bot = VIsual; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4180 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4181 mode = VIsual_mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4182 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4183 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4184 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4185 if (LT_POS(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end)) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4186 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4187 top = curbuf->b_visual.vi_start; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4188 bot = curbuf->b_visual.vi_end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4189 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4190 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4191 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4192 top = curbuf->b_visual.vi_end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4193 bot = curbuf->b_visual.vi_start; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4194 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4195 mode = curbuf->b_visual.vi_mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4196 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4197 lnum = rex.lnum + rex.reg_firstlnum; |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4198 if (lnum < top.lnum || lnum > bot.lnum) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4199 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4200 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4201 if (mode == 'v') |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4202 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4203 col = (colnr_T)(rex.input - rex.line); |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4204 if ((lnum == top.lnum && col < top.col) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4205 || (lnum == bot.lnum && col >= bot.col + (*p_sel != 'e'))) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4206 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4207 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4208 else if (mode == Ctrl_V) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4209 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4210 getvvcol(wp, &top, &start, NULL, &end); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4211 getvvcol(wp, &bot, &start2, NULL, &end2); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4212 if (start2 < start) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4213 start = start2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4214 if (end2 > end) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4215 end = end2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4216 if (top.col == MAXCOL || bot.col == MAXCOL) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4217 end = MAXCOL; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4218 cols = win_linetabsize(wp, rex.line, (colnr_T)(rex.input - rex.line)); |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4219 if (cols < start || cols > end - (*p_sel == 'e')) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4220 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4221 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4222 return TRUE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4223 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4224 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4225 #define ADVANCE_REGINPUT() MB_PTR_ADV(rex.input) |
7 | 4226 |
4227 /* | |
4228 * The arguments from BRACE_LIMITS are stored here. They are actually local | |
4229 * to regmatch(), but they are here to reduce the amount of stack space used | |
4230 * (it can be called recursively many times). | |
4231 */ | |
4232 static long bl_minval; | |
4233 static long bl_maxval; | |
4234 | |
4235 /* | |
4236 * regmatch - main matching routine | |
4237 * | |
180 | 4238 * Conceptually the strategy is simple: Check to see whether the current node |
4239 * matches, push an item onto the regstack and loop to see whether the rest | |
4240 * matches, and then act accordingly. In practice we make some effort to | |
4241 * avoid using the regstack, in particular by going through "ordinary" nodes | |
4242 * (that don't need to know whether the rest of the match failed) by a nested | |
4243 * loop. | |
7 | 4244 * |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4245 * Returns TRUE when there is a match. Leaves rex.input and rex.lnum just after |
7 | 4246 * the last matched character. |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4247 * Returns FALSE when there is no match. Leaves rex.input and rex.lnum in an |
7 | 4248 * undefined state! |
4249 */ | |
4250 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4251 regmatch( |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4252 char_u *scan, /* Current node. */ |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4253 proftime_T *tm UNUSED, /* timeout limit or NULL */ |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4254 int *timed_out UNUSED) /* flag set on timeout or NULL */ |
7 | 4255 { |
180 | 4256 char_u *next; /* Next node. */ |
4257 int op; | |
4258 int c; | |
4259 regitem_T *rp; | |
4260 int no; | |
4261 int status; /* one of the RA_ values: */ | |
4262 #define RA_FAIL 1 /* something failed, abort */ | |
4263 #define RA_CONT 2 /* continue in inner loop */ | |
4264 #define RA_BREAK 3 /* break inner loop */ | |
4265 #define RA_MATCH 4 /* successful match */ | |
4266 #define RA_NOMATCH 5 /* didn't match */ | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4267 #ifdef FEAT_RELTIME |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4268 int tm_count = 0; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4269 #endif |
270 | 4270 |
1520 | 4271 /* Make "regstack" and "backpos" empty. They are allocated and freed in |
4444 | 4272 * bt_regexec_both() to reduce malloc()/free() calls. */ |
270 | 4273 regstack.ga_len = 0; |
4274 backpos.ga_len = 0; | |
233 | 4275 |
180 | 4276 /* |
233 | 4277 * Repeat until "regstack" is empty. |
180 | 4278 */ |
4279 for (;;) | |
4280 { | |
5310 | 4281 /* Some patterns may take a long time to match, e.g., "\([a-z]\+\)\+Q". |
4282 * Allow interrupting them with CTRL-C. */ | |
7 | 4283 fast_breakcheck(); |
4284 | |
4285 #ifdef DEBUG | |
4286 if (scan != NULL && regnarrate) | |
4287 { | |
4444 | 4288 mch_errmsg((char *)regprop(scan)); |
7 | 4289 mch_errmsg("(\n"); |
4290 } | |
4291 #endif | |
180 | 4292 |
4293 /* | |
233 | 4294 * Repeat for items that can be matched sequentially, without using the |
180 | 4295 * regstack. |
4296 */ | |
4297 for (;;) | |
7 | 4298 { |
180 | 4299 if (got_int || scan == NULL) |
4300 { | |
4301 status = RA_FAIL; | |
4302 break; | |
4303 } | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4304 #ifdef FEAT_RELTIME |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4305 /* Check for timeout once in a 100 times to avoid overhead. */ |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4306 if (tm != NULL && ++tm_count == 100) |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4307 { |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4308 tm_count = 0; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4309 if (profile_passed_limit(tm)) |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4310 { |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4311 if (timed_out != NULL) |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4312 *timed_out = TRUE; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4313 status = RA_FAIL; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4314 break; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4315 } |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4316 } |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4317 #endif |
180 | 4318 status = RA_CONT; |
4319 | |
7 | 4320 #ifdef DEBUG |
4321 if (regnarrate) | |
4322 { | |
4444 | 4323 mch_errmsg((char *)regprop(scan)); |
7 | 4324 mch_errmsg("...\n"); |
4325 # ifdef FEAT_SYN_HL | |
4326 if (re_extmatch_in != NULL) | |
4327 { | |
4328 int i; | |
4329 | |
4330 mch_errmsg(_("External submatches:\n")); | |
4331 for (i = 0; i < NSUBEXP; i++) | |
4332 { | |
4333 mch_errmsg(" \""); | |
4334 if (re_extmatch_in->matches[i] != NULL) | |
4444 | 4335 mch_errmsg((char *)re_extmatch_in->matches[i]); |
7 | 4336 mch_errmsg("\"\n"); |
4337 } | |
4338 } | |
4339 # endif | |
4340 } | |
4341 #endif | |
4342 next = regnext(scan); | |
4343 | |
4344 op = OP(scan); | |
4345 /* Check for character class with NL added. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4346 if (!rex.reg_line_lbr && WITH_NL(op) && REG_MULTI |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4347 && *rex.input == NUL && rex.lnum <= rex.reg_maxline) |
7 | 4348 { |
4349 reg_nextline(); | |
4350 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4351 else if (rex.reg_line_lbr && WITH_NL(op) && *rex.input == '\n') |
7 | 4352 { |
4353 ADVANCE_REGINPUT(); | |
4354 } | |
4355 else | |
4356 { | |
4357 if (WITH_NL(op)) | |
180 | 4358 op -= ADD_NL; |
7 | 4359 #ifdef FEAT_MBYTE |
4360 if (has_mbyte) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4361 c = (*mb_ptr2char)(rex.input); |
7 | 4362 else |
4363 #endif | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4364 c = *rex.input; |
7 | 4365 switch (op) |
4366 { | |
4367 case BOL: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4368 if (rex.input != rex.line) |
180 | 4369 status = RA_NOMATCH; |
7 | 4370 break; |
4371 | |
4372 case EOL: | |
4373 if (c != NUL) | |
180 | 4374 status = RA_NOMATCH; |
7 | 4375 break; |
4376 | |
4377 case RE_BOF: | |
1458 | 4378 /* We're not at the beginning of the file when below the first |
4379 * line where we started, not at the start of the line or we | |
4380 * didn't start at the first line of the buffer. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4381 if (rex.lnum != 0 || rex.input != rex.line |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4382 || (REG_MULTI && rex.reg_firstlnum > 1)) |
180 | 4383 status = RA_NOMATCH; |
7 | 4384 break; |
4385 | |
4386 case RE_EOF: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4387 if (rex.lnum != rex.reg_maxline || c != NUL) |
180 | 4388 status = RA_NOMATCH; |
7 | 4389 break; |
4390 | |
4391 case CURSOR: | |
4392 /* Check if the buffer is in a window and compare the | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4393 * rex.reg_win->w_cursor position to the match position. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4394 if (rex.reg_win == NULL |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4395 || (rex.lnum + rex.reg_firstlnum |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4396 != rex.reg_win->w_cursor.lnum) |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4397 || ((colnr_T)(rex.input - rex.line) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4398 != rex.reg_win->w_cursor.col)) |
180 | 4399 status = RA_NOMATCH; |
7 | 4400 break; |
4401 | |
639 | 4402 case RE_MARK: |
4732
0798b096bab3
updated for version 7.3.1113
Bram Moolenaar <bram@vim.org>
parents:
4730
diff
changeset
|
4403 /* Compare the mark position to the match position. */ |
639 | 4404 { |
4405 int mark = OPERAND(scan)[0]; | |
4406 int cmp = OPERAND(scan)[1]; | |
4407 pos_T *pos; | |
4408 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4409 pos = getmark_buf(rex.reg_buf, mark, FALSE); |
1148 | 4410 if (pos == NULL /* mark doesn't exist */ |
4732
0798b096bab3
updated for version 7.3.1113
Bram Moolenaar <bram@vim.org>
parents:
4730
diff
changeset
|
4411 || pos->lnum <= 0 /* mark isn't set in reg_buf */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4412 || (pos->lnum == rex.lnum + rex.reg_firstlnum |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4413 ? (pos->col == (colnr_T)(rex.input - rex.line) |
639 | 4414 ? (cmp == '<' || cmp == '>') |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4415 : (pos->col < (colnr_T)(rex.input - rex.line) |
639 | 4416 ? cmp != '>' |
4417 : cmp != '<')) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4418 : (pos->lnum < rex.lnum + rex.reg_firstlnum |
639 | 4419 ? cmp != '>' |
4420 : cmp != '<'))) | |
4421 status = RA_NOMATCH; | |
4422 } | |
4423 break; | |
4424 | |
4425 case RE_VISUAL: | |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4426 if (!reg_match_visual()) |
639 | 4427 status = RA_NOMATCH; |
4428 break; | |
4429 | |
7 | 4430 case RE_LNUM: |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4431 if (!REG_MULTI || !re_num_cmp((long_u)(rex.lnum + rex.reg_firstlnum), |
7 | 4432 scan)) |
180 | 4433 status = RA_NOMATCH; |
7 | 4434 break; |
4435 | |
4436 case RE_COL: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4437 if (!re_num_cmp((long_u)(rex.input - rex.line) + 1, scan)) |
180 | 4438 status = RA_NOMATCH; |
7 | 4439 break; |
4440 | |
4441 case RE_VCOL: | |
4442 if (!re_num_cmp((long_u)win_linetabsize( | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4443 rex.reg_win == NULL ? curwin : rex.reg_win, |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4444 rex.line, (colnr_T)(rex.input - rex.line)) + 1, scan)) |
180 | 4445 status = RA_NOMATCH; |
7 | 4446 break; |
4447 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4448 case BOW: /* \<word; rex.input points to w */ |
7 | 4449 if (c == NUL) /* Can't match at end of line */ |
180 | 4450 status = RA_NOMATCH; |
7 | 4451 #ifdef FEAT_MBYTE |
180 | 4452 else if (has_mbyte) |
7 | 4453 { |
4454 int this_class; | |
4455 | |
4456 /* Get class of current and previous char (if it exists). */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4457 this_class = mb_get_class_buf(rex.input, rex.reg_buf); |
7 | 4458 if (this_class <= 1) |
180 | 4459 status = RA_NOMATCH; /* not on a word at all */ |
4460 else if (reg_prev_class() == this_class) | |
4461 status = RA_NOMATCH; /* previous char is in same word */ | |
7 | 4462 } |
4463 #endif | |
4464 else | |
4465 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4466 if (!vim_iswordc_buf(c, rex.reg_buf) || (rex.input > rex.line |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4467 && vim_iswordc_buf(rex.input[-1], rex.reg_buf))) |
180 | 4468 status = RA_NOMATCH; |
7 | 4469 } |
4470 break; | |
4471 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4472 case EOW: /* word\>; rex.input points after d */ |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4473 if (rex.input == rex.line) /* Can't match at start of line */ |
180 | 4474 status = RA_NOMATCH; |
7 | 4475 #ifdef FEAT_MBYTE |
180 | 4476 else if (has_mbyte) |
7 | 4477 { |
4478 int this_class, prev_class; | |
4479 | |
4480 /* Get class of current and previous char (if it exists). */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4481 this_class = mb_get_class_buf(rex.input, rex.reg_buf); |
7 | 4482 prev_class = reg_prev_class(); |
180 | 4483 if (this_class == prev_class |
4484 || prev_class == 0 || prev_class == 1) | |
4485 status = RA_NOMATCH; | |
7 | 4486 } |
180 | 4487 #endif |
7 | 4488 else |
4489 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4490 if (!vim_iswordc_buf(rex.input[-1], rex.reg_buf) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4491 || (rex.input[0] != NUL |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4492 && vim_iswordc_buf(c, rex.reg_buf))) |
180 | 4493 status = RA_NOMATCH; |
7 | 4494 } |
4495 break; /* Matched with EOW */ | |
4496 | |
4497 case ANY: | |
4084 | 4498 /* ANY does not match new lines. */ |
7 | 4499 if (c == NUL) |
180 | 4500 status = RA_NOMATCH; |
4501 else | |
4502 ADVANCE_REGINPUT(); | |
7 | 4503 break; |
4504 | |
4505 case IDENT: | |
4506 if (!vim_isIDc(c)) | |
180 | 4507 status = RA_NOMATCH; |
4508 else | |
4509 ADVANCE_REGINPUT(); | |
7 | 4510 break; |
4511 | |
4512 case SIDENT: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4513 if (VIM_ISDIGIT(*rex.input) || !vim_isIDc(c)) |
180 | 4514 status = RA_NOMATCH; |
4515 else | |
4516 ADVANCE_REGINPUT(); | |
7 | 4517 break; |
4518 | |
4519 case KWORD: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4520 if (!vim_iswordp_buf(rex.input, rex.reg_buf)) |
180 | 4521 status = RA_NOMATCH; |
4522 else | |
4523 ADVANCE_REGINPUT(); | |
7 | 4524 break; |
4525 | |
4526 case SKWORD: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4527 if (VIM_ISDIGIT(*rex.input) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4528 || !vim_iswordp_buf(rex.input, rex.reg_buf)) |
180 | 4529 status = RA_NOMATCH; |
4530 else | |
4531 ADVANCE_REGINPUT(); | |
7 | 4532 break; |
4533 | |
4534 case FNAME: | |
4535 if (!vim_isfilec(c)) | |
180 | 4536 status = RA_NOMATCH; |
4537 else | |
4538 ADVANCE_REGINPUT(); | |
7 | 4539 break; |
4540 | |
4541 case SFNAME: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4542 if (VIM_ISDIGIT(*rex.input) || !vim_isfilec(c)) |
180 | 4543 status = RA_NOMATCH; |
4544 else | |
4545 ADVANCE_REGINPUT(); | |
7 | 4546 break; |
4547 | |
4548 case PRINT: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4549 if (!vim_isprintc(PTR2CHAR(rex.input))) |
180 | 4550 status = RA_NOMATCH; |
4551 else | |
4552 ADVANCE_REGINPUT(); | |
7 | 4553 break; |
4554 | |
4555 case SPRINT: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4556 if (VIM_ISDIGIT(*rex.input) || !vim_isprintc(PTR2CHAR(rex.input))) |
180 | 4557 status = RA_NOMATCH; |
4558 else | |
4559 ADVANCE_REGINPUT(); | |
7 | 4560 break; |
4561 | |
4562 case WHITE: | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4563 if (!VIM_ISWHITE(c)) |
180 | 4564 status = RA_NOMATCH; |
4565 else | |
4566 ADVANCE_REGINPUT(); | |
7 | 4567 break; |
4568 | |
4569 case NWHITE: | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4570 if (c == NUL || VIM_ISWHITE(c)) |
180 | 4571 status = RA_NOMATCH; |
4572 else | |
4573 ADVANCE_REGINPUT(); | |
7 | 4574 break; |
4575 | |
4576 case DIGIT: | |
4577 if (!ri_digit(c)) | |
180 | 4578 status = RA_NOMATCH; |
4579 else | |
4580 ADVANCE_REGINPUT(); | |
7 | 4581 break; |
4582 | |
4583 case NDIGIT: | |
4584 if (c == NUL || ri_digit(c)) | |
180 | 4585 status = RA_NOMATCH; |
4586 else | |
4587 ADVANCE_REGINPUT(); | |
7 | 4588 break; |
4589 | |
4590 case HEX: | |
4591 if (!ri_hex(c)) | |
180 | 4592 status = RA_NOMATCH; |
4593 else | |
4594 ADVANCE_REGINPUT(); | |
7 | 4595 break; |
4596 | |
4597 case NHEX: | |
4598 if (c == NUL || ri_hex(c)) | |
180 | 4599 status = RA_NOMATCH; |
4600 else | |
4601 ADVANCE_REGINPUT(); | |
7 | 4602 break; |
4603 | |
4604 case OCTAL: | |
4605 if (!ri_octal(c)) | |
180 | 4606 status = RA_NOMATCH; |
4607 else | |
4608 ADVANCE_REGINPUT(); | |
7 | 4609 break; |
4610 | |
4611 case NOCTAL: | |
4612 if (c == NUL || ri_octal(c)) | |
180 | 4613 status = RA_NOMATCH; |
4614 else | |
4615 ADVANCE_REGINPUT(); | |
7 | 4616 break; |
4617 | |
4618 case WORD: | |
4619 if (!ri_word(c)) | |
180 | 4620 status = RA_NOMATCH; |
4621 else | |
4622 ADVANCE_REGINPUT(); | |
7 | 4623 break; |
4624 | |
4625 case NWORD: | |
4626 if (c == NUL || ri_word(c)) | |
180 | 4627 status = RA_NOMATCH; |
4628 else | |
4629 ADVANCE_REGINPUT(); | |
7 | 4630 break; |
4631 | |
4632 case HEAD: | |
4633 if (!ri_head(c)) | |
180 | 4634 status = RA_NOMATCH; |
4635 else | |
4636 ADVANCE_REGINPUT(); | |
7 | 4637 break; |
4638 | |
4639 case NHEAD: | |
4640 if (c == NUL || ri_head(c)) | |
180 | 4641 status = RA_NOMATCH; |
4642 else | |
4643 ADVANCE_REGINPUT(); | |
7 | 4644 break; |
4645 | |
4646 case ALPHA: | |
4647 if (!ri_alpha(c)) | |
180 | 4648 status = RA_NOMATCH; |
4649 else | |
4650 ADVANCE_REGINPUT(); | |
7 | 4651 break; |
4652 | |
4653 case NALPHA: | |
4654 if (c == NUL || ri_alpha(c)) | |
180 | 4655 status = RA_NOMATCH; |
4656 else | |
4657 ADVANCE_REGINPUT(); | |
7 | 4658 break; |
4659 | |
4660 case LOWER: | |
4661 if (!ri_lower(c)) | |
180 | 4662 status = RA_NOMATCH; |
4663 else | |
4664 ADVANCE_REGINPUT(); | |
7 | 4665 break; |
4666 | |
4667 case NLOWER: | |
4668 if (c == NUL || ri_lower(c)) | |
180 | 4669 status = RA_NOMATCH; |
4670 else | |
4671 ADVANCE_REGINPUT(); | |
7 | 4672 break; |
4673 | |
4674 case UPPER: | |
4675 if (!ri_upper(c)) | |
180 | 4676 status = RA_NOMATCH; |
4677 else | |
4678 ADVANCE_REGINPUT(); | |
7 | 4679 break; |
4680 | |
4681 case NUPPER: | |
4682 if (c == NUL || ri_upper(c)) | |
180 | 4683 status = RA_NOMATCH; |
4684 else | |
4685 ADVANCE_REGINPUT(); | |
7 | 4686 break; |
4687 | |
4688 case EXACTLY: | |
4689 { | |
4690 int len; | |
4691 char_u *opnd; | |
4692 | |
4693 opnd = OPERAND(scan); | |
4694 /* Inline the first byte, for speed. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4695 if (*opnd != *rex.input |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4696 && (!rex.reg_ic || ( |
7 | 4697 #ifdef FEAT_MBYTE |
4698 !enc_utf8 && | |
4699 #endif | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4700 MB_TOLOWER(*opnd) != MB_TOLOWER(*rex.input)))) |
180 | 4701 status = RA_NOMATCH; |
4702 else if (*opnd == NUL) | |
7 | 4703 { |
4704 /* match empty string always works; happens when "~" is | |
4705 * empty. */ | |
4706 } | |
5899 | 4707 else |
4708 { | |
4709 if (opnd[1] == NUL | |
7 | 4710 #ifdef FEAT_MBYTE |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4711 && !(enc_utf8 && rex.reg_ic) |
7 | 4712 #endif |
4713 ) | |
5899 | 4714 { |
4715 len = 1; /* matched a single byte above */ | |
4716 } | |
4717 else | |
4718 { | |
4719 /* Need to match first byte again for multi-byte. */ | |
4720 len = (int)STRLEN(opnd); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4721 if (cstrncmp(opnd, rex.input, &len) != 0) |
5899 | 4722 status = RA_NOMATCH; |
4723 } | |
7 | 4724 #ifdef FEAT_MBYTE |
5901 | 4725 /* Check for following composing character, unless %C |
4726 * follows (skips over all composing chars). */ | |
5899 | 4727 if (status != RA_NOMATCH |
4728 && enc_utf8 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4729 && UTF_COMPOSINGLIKE(rex.input, rex.input + len) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4730 && !rex.reg_icombine |
5901 | 4731 && OP(next) != RE_COMPOSING) |
7 | 4732 { |
4733 /* raaron: This code makes a composing character get | |
4734 * ignored, which is the correct behavior (sometimes) | |
4735 * for voweled Hebrew texts. */ | |
5899 | 4736 status = RA_NOMATCH; |
7 | 4737 } |
180 | 4738 #endif |
5899 | 4739 if (status != RA_NOMATCH) |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4740 rex.input += len; |
7 | 4741 } |
4742 } | |
4743 break; | |
4744 | |
4745 case ANYOF: | |
4746 case ANYBUT: | |
4747 if (c == NUL) | |
180 | 4748 status = RA_NOMATCH; |
4749 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF)) | |
4750 status = RA_NOMATCH; | |
4751 else | |
4752 ADVANCE_REGINPUT(); | |
7 | 4753 break; |
4754 | |
4755 #ifdef FEAT_MBYTE | |
4756 case MULTIBYTECODE: | |
4757 if (has_mbyte) | |
4758 { | |
4759 int i, len; | |
4760 char_u *opnd; | |
944 | 4761 int opndc = 0, inpc; |
7 | 4762 |
4763 opnd = OPERAND(scan); | |
4764 /* Safety check (just in case 'encoding' was changed since | |
4765 * compiling the program). */ | |
474 | 4766 if ((len = (*mb_ptr2len)(opnd)) < 2) |
180 | 4767 { |
4768 status = RA_NOMATCH; | |
4769 break; | |
4770 } | |
714 | 4771 if (enc_utf8) |
11269
121d29004998
patch 8.0.0520: using a function pointer while the function is known
Christian Brabandt <cb@256bit.org>
parents:
11267
diff
changeset
|
4772 opndc = utf_ptr2char(opnd); |
714 | 4773 if (enc_utf8 && utf_iscomposing(opndc)) |
4774 { | |
4775 /* When only a composing char is given match at any | |
4776 * position where that composing char appears. */ | |
4777 status = RA_NOMATCH; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4778 for (i = 0; rex.input[i] != NUL; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4779 i += utf_ptr2len(rex.input + i)) |
180 | 4780 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4781 inpc = utf_ptr2char(rex.input + i); |
714 | 4782 if (!utf_iscomposing(inpc)) |
4783 { | |
4784 if (i > 0) | |
4785 break; | |
4786 } | |
4787 else if (opndc == inpc) | |
4788 { | |
4789 /* Include all following composing chars. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4790 len = i + utfc_ptr2len(rex.input + i); |
714 | 4791 status = RA_MATCH; |
4792 break; | |
4793 } | |
180 | 4794 } |
714 | 4795 } |
4796 else | |
4797 for (i = 0; i < len; ++i) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4798 if (opnd[i] != rex.input[i]) |
714 | 4799 { |
4800 status = RA_NOMATCH; | |
4801 break; | |
4802 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4803 rex.input += len; |
7 | 4804 } |
4805 else | |
180 | 4806 status = RA_NOMATCH; |
7 | 4807 break; |
4808 #endif | |
5901 | 4809 case RE_COMPOSING: |
4810 #ifdef FEAT_MBYTE | |
4811 if (enc_utf8) | |
4812 { | |
4813 /* Skip composing characters. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4814 while (utf_iscomposing(utf_ptr2char(rex.input))) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4815 MB_CPTR_ADV(rex.input); |
5901 | 4816 } |
4817 #endif | |
4818 break; | |
7 | 4819 |
4820 case NOTHING: | |
4821 break; | |
4822 | |
4823 case BACK: | |
233 | 4824 { |
4825 int i; | |
4826 backpos_T *bp; | |
4827 | |
4828 /* | |
4829 * When we run into BACK we need to check if we don't keep | |
4830 * looping without matching any input. The second and later | |
4831 * times a BACK is encountered it fails if the input is still | |
4832 * at the same position as the previous time. | |
4833 * The positions are stored in "backpos" and found by the | |
4834 * current value of "scan", the position in the RE program. | |
4835 */ | |
4836 bp = (backpos_T *)backpos.ga_data; | |
4837 for (i = 0; i < backpos.ga_len; ++i) | |
4838 if (bp[i].bp_scan == scan) | |
4839 break; | |
4840 if (i == backpos.ga_len) | |
4841 { | |
4842 /* First time at this BACK, make room to store the pos. */ | |
4843 if (ga_grow(&backpos, 1) == FAIL) | |
4844 status = RA_FAIL; | |
4845 else | |
4846 { | |
4847 /* get "ga_data" again, it may have changed */ | |
4848 bp = (backpos_T *)backpos.ga_data; | |
4849 bp[i].bp_scan = scan; | |
4850 ++backpos.ga_len; | |
4851 } | |
4852 } | |
4853 else if (reg_save_equal(&bp[i].bp_pos)) | |
4854 /* Still at same position as last time, fail. */ | |
4855 status = RA_NOMATCH; | |
4856 | |
4857 if (status != RA_FAIL && status != RA_NOMATCH) | |
4858 reg_save(&bp[i].bp_pos, &backpos); | |
4859 } | |
179 | 4860 break; |
4861 | |
7 | 4862 case MOPEN + 0: /* Match start: \zs */ |
4863 case MOPEN + 1: /* \( */ | |
4864 case MOPEN + 2: | |
4865 case MOPEN + 3: | |
4866 case MOPEN + 4: | |
4867 case MOPEN + 5: | |
4868 case MOPEN + 6: | |
4869 case MOPEN + 7: | |
4870 case MOPEN + 8: | |
4871 case MOPEN + 9: | |
4872 { | |
4873 no = op - MOPEN; | |
4874 cleanup_subexpr(); | |
270 | 4875 rp = regstack_push(RS_MOPEN, scan); |
180 | 4876 if (rp == NULL) |
4877 status = RA_FAIL; | |
4878 else | |
4879 { | |
4880 rp->rs_no = no; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4881 save_se(&rp->rs_un.sesave, &rex.reg_startpos[no], |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4882 &rex.reg_startp[no]); |
180 | 4883 /* We simply continue and handle the result when done. */ |
4884 } | |
7 | 4885 } |
180 | 4886 break; |
7 | 4887 |
4888 case NOPEN: /* \%( */ | |
4889 case NCLOSE: /* \) after \%( */ | |
270 | 4890 if (regstack_push(RS_NOPEN, scan) == NULL) |
180 | 4891 status = RA_FAIL; |
4892 /* We simply continue and handle the result when done. */ | |
4893 break; | |
7 | 4894 |
4895 #ifdef FEAT_SYN_HL | |
4896 case ZOPEN + 1: | |
4897 case ZOPEN + 2: | |
4898 case ZOPEN + 3: | |
4899 case ZOPEN + 4: | |
4900 case ZOPEN + 5: | |
4901 case ZOPEN + 6: | |
4902 case ZOPEN + 7: | |
4903 case ZOPEN + 8: | |
4904 case ZOPEN + 9: | |
4905 { | |
4906 no = op - ZOPEN; | |
4907 cleanup_zsubexpr(); | |
270 | 4908 rp = regstack_push(RS_ZOPEN, scan); |
180 | 4909 if (rp == NULL) |
4910 status = RA_FAIL; | |
4911 else | |
4912 { | |
4913 rp->rs_no = no; | |
4914 save_se(&rp->rs_un.sesave, ®_startzpos[no], | |
4915 ®_startzp[no]); | |
4916 /* We simply continue and handle the result when done. */ | |
4917 } | |
7 | 4918 } |
180 | 4919 break; |
7 | 4920 #endif |
4921 | |
4922 case MCLOSE + 0: /* Match end: \ze */ | |
4923 case MCLOSE + 1: /* \) */ | |
4924 case MCLOSE + 2: | |
4925 case MCLOSE + 3: | |
4926 case MCLOSE + 4: | |
4927 case MCLOSE + 5: | |
4928 case MCLOSE + 6: | |
4929 case MCLOSE + 7: | |
4930 case MCLOSE + 8: | |
4931 case MCLOSE + 9: | |
4932 { | |
4933 no = op - MCLOSE; | |
4934 cleanup_subexpr(); | |
270 | 4935 rp = regstack_push(RS_MCLOSE, scan); |
180 | 4936 if (rp == NULL) |
4937 status = RA_FAIL; | |
4938 else | |
4939 { | |
4940 rp->rs_no = no; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4941 save_se(&rp->rs_un.sesave, &rex.reg_endpos[no], |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4942 &rex.reg_endp[no]); |
180 | 4943 /* We simply continue and handle the result when done. */ |
4944 } | |
7 | 4945 } |
180 | 4946 break; |
7 | 4947 |
4948 #ifdef FEAT_SYN_HL | |
4949 case ZCLOSE + 1: /* \) after \z( */ | |
4950 case ZCLOSE + 2: | |
4951 case ZCLOSE + 3: | |
4952 case ZCLOSE + 4: | |
4953 case ZCLOSE + 5: | |
4954 case ZCLOSE + 6: | |
4955 case ZCLOSE + 7: | |
4956 case ZCLOSE + 8: | |
4957 case ZCLOSE + 9: | |
4958 { | |
4959 no = op - ZCLOSE; | |
4960 cleanup_zsubexpr(); | |
270 | 4961 rp = regstack_push(RS_ZCLOSE, scan); |
180 | 4962 if (rp == NULL) |
4963 status = RA_FAIL; | |
4964 else | |
4965 { | |
4966 rp->rs_no = no; | |
4967 save_se(&rp->rs_un.sesave, ®_endzpos[no], | |
4968 ®_endzp[no]); | |
4969 /* We simply continue and handle the result when done. */ | |
4970 } | |
7 | 4971 } |
180 | 4972 break; |
7 | 4973 #endif |
4974 | |
4975 case BACKREF + 1: | |
4976 case BACKREF + 2: | |
4977 case BACKREF + 3: | |
4978 case BACKREF + 4: | |
4979 case BACKREF + 5: | |
4980 case BACKREF + 6: | |
4981 case BACKREF + 7: | |
4982 case BACKREF + 8: | |
4983 case BACKREF + 9: | |
4984 { | |
4985 int len; | |
4986 | |
4987 no = op - BACKREF; | |
4988 cleanup_subexpr(); | |
4989 if (!REG_MULTI) /* Single-line regexp */ | |
4990 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4991 if (rex.reg_startp[no] == NULL || rex.reg_endp[no] == NULL) |
7 | 4992 { |
4993 /* Backref was not set: Match an empty string. */ | |
4994 len = 0; | |
4995 } | |
4996 else | |
4997 { | |
4998 /* Compare current input with back-ref in the same | |
4999 * line. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5000 len = (int)(rex.reg_endp[no] - rex.reg_startp[no]); |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5001 if (cstrncmp(rex.reg_startp[no], rex.input, &len) != 0) |
180 | 5002 status = RA_NOMATCH; |
7 | 5003 } |
5004 } | |
5005 else /* Multi-line regexp */ | |
5006 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5007 if (rex.reg_startpos[no].lnum < 0 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5008 || rex.reg_endpos[no].lnum < 0) |
7 | 5009 { |
5010 /* Backref was not set: Match an empty string. */ | |
5011 len = 0; | |
5012 } | |
5013 else | |
5014 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5015 if (rex.reg_startpos[no].lnum == rex.lnum |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5016 && rex.reg_endpos[no].lnum == rex.lnum) |
7 | 5017 { |
5018 /* Compare back-ref within the current line. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5019 len = rex.reg_endpos[no].col |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5020 - rex.reg_startpos[no].col; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5021 if (cstrncmp(rex.line + rex.reg_startpos[no].col, |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5022 rex.input, &len) != 0) |
180 | 5023 status = RA_NOMATCH; |
7 | 5024 } |
5025 else | |
5026 { | |
5027 /* Messy situation: Need to compare between two | |
5028 * lines. */ | |
4901
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5029 int r = match_with_backref( |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5030 rex.reg_startpos[no].lnum, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5031 rex.reg_startpos[no].col, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5032 rex.reg_endpos[no].lnum, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5033 rex.reg_endpos[no].col, |
4899
4837fd61be52
updated for version 7.3.1195
Bram Moolenaar <bram@vim.org>
parents:
4891
diff
changeset
|
5034 &len); |
4901
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5035 |
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5036 if (r != RA_MATCH) |
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5037 status = r; |
7 | 5038 } |
5039 } | |
5040 } | |
5041 | |
5042 /* Matched the backref, skip over it. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5043 rex.input += len; |
7 | 5044 } |
5045 break; | |
5046 | |
5047 #ifdef FEAT_SYN_HL | |
5048 case ZREF + 1: | |
5049 case ZREF + 2: | |
5050 case ZREF + 3: | |
5051 case ZREF + 4: | |
5052 case ZREF + 5: | |
5053 case ZREF + 6: | |
5054 case ZREF + 7: | |
5055 case ZREF + 8: | |
5056 case ZREF + 9: | |
5057 { | |
5058 int len; | |
5059 | |
5060 cleanup_zsubexpr(); | |
5061 no = op - ZREF; | |
5062 if (re_extmatch_in != NULL | |
5063 && re_extmatch_in->matches[no] != NULL) | |
5064 { | |
5065 len = (int)STRLEN(re_extmatch_in->matches[no]); | |
5066 if (cstrncmp(re_extmatch_in->matches[no], | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5067 rex.input, &len) != 0) |
180 | 5068 status = RA_NOMATCH; |
5069 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5070 rex.input += len; |
7 | 5071 } |
5072 else | |
5073 { | |
5074 /* Backref was not set: Match an empty string. */ | |
5075 } | |
5076 } | |
5077 break; | |
5078 #endif | |
5079 | |
5080 case BRANCH: | |
5081 { | |
5082 if (OP(next) != BRANCH) /* No choice. */ | |
5083 next = OPERAND(scan); /* Avoid recursion. */ | |
5084 else | |
5085 { | |
270 | 5086 rp = regstack_push(RS_BRANCH, scan); |
180 | 5087 if (rp == NULL) |
5088 status = RA_FAIL; | |
5089 else | |
5090 status = RA_BREAK; /* rest is below */ | |
7 | 5091 } |
5092 } | |
5093 break; | |
5094 | |
5095 case BRACE_LIMITS: | |
5096 { | |
5097 if (OP(next) == BRACE_SIMPLE) | |
5098 { | |
5099 bl_minval = OPERAND_MIN(scan); | |
5100 bl_maxval = OPERAND_MAX(scan); | |
5101 } | |
5102 else if (OP(next) >= BRACE_COMPLEX | |
5103 && OP(next) < BRACE_COMPLEX + 10) | |
5104 { | |
5105 no = OP(next) - BRACE_COMPLEX; | |
5106 brace_min[no] = OPERAND_MIN(scan); | |
5107 brace_max[no] = OPERAND_MAX(scan); | |
5108 brace_count[no] = 0; | |
5109 } | |
5110 else | |
5111 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
5112 internal_error("BRACE_LIMITS"); |
180 | 5113 status = RA_FAIL; |
7 | 5114 } |
5115 } | |
5116 break; | |
5117 | |
5118 case BRACE_COMPLEX + 0: | |
5119 case BRACE_COMPLEX + 1: | |
5120 case BRACE_COMPLEX + 2: | |
5121 case BRACE_COMPLEX + 3: | |
5122 case BRACE_COMPLEX + 4: | |
5123 case BRACE_COMPLEX + 5: | |
5124 case BRACE_COMPLEX + 6: | |
5125 case BRACE_COMPLEX + 7: | |
5126 case BRACE_COMPLEX + 8: | |
5127 case BRACE_COMPLEX + 9: | |
5128 { | |
5129 no = op - BRACE_COMPLEX; | |
5130 ++brace_count[no]; | |
5131 | |
5132 /* If not matched enough times yet, try one more */ | |
5133 if (brace_count[no] <= (brace_min[no] <= brace_max[no] | |
180 | 5134 ? brace_min[no] : brace_max[no])) |
7 | 5135 { |
270 | 5136 rp = regstack_push(RS_BRCPLX_MORE, scan); |
180 | 5137 if (rp == NULL) |
5138 status = RA_FAIL; | |
5139 else | |
5140 { | |
5141 rp->rs_no = no; | |
233 | 5142 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5143 next = OPERAND(scan); |
5144 /* We continue and handle the result when done. */ | |
5145 } | |
5146 break; | |
7 | 5147 } |
5148 | |
5149 /* If matched enough times, may try matching some more */ | |
5150 if (brace_min[no] <= brace_max[no]) | |
5151 { | |
5152 /* Range is the normal way around, use longest match */ | |
5153 if (brace_count[no] <= brace_max[no]) | |
5154 { | |
270 | 5155 rp = regstack_push(RS_BRCPLX_LONG, scan); |
180 | 5156 if (rp == NULL) |
5157 status = RA_FAIL; | |
5158 else | |
5159 { | |
5160 rp->rs_no = no; | |
233 | 5161 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5162 next = OPERAND(scan); |
5163 /* We continue and handle the result when done. */ | |
5164 } | |
7 | 5165 } |
5166 } | |
5167 else | |
5168 { | |
5169 /* Range is backwards, use shortest match first */ | |
5170 if (brace_count[no] <= brace_min[no]) | |
5171 { | |
270 | 5172 rp = regstack_push(RS_BRCPLX_SHORT, scan); |
180 | 5173 if (rp == NULL) |
5174 status = RA_FAIL; | |
5175 else | |
5176 { | |
233 | 5177 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5178 /* We continue and handle the result when done. */ |
5179 } | |
7 | 5180 } |
5181 } | |
5182 } | |
5183 break; | |
5184 | |
5185 case BRACE_SIMPLE: | |
5186 case STAR: | |
5187 case PLUS: | |
5188 { | |
180 | 5189 regstar_T rst; |
7 | 5190 |
5191 /* | |
5192 * Lookahead to avoid useless match attempts when we know | |
5193 * what character comes next. | |
5194 */ | |
5195 if (OP(next) == EXACTLY) | |
5196 { | |
180 | 5197 rst.nextb = *OPERAND(next); |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5198 if (rex.reg_ic) |
7 | 5199 { |
1347 | 5200 if (MB_ISUPPER(rst.nextb)) |
5201 rst.nextb_ic = MB_TOLOWER(rst.nextb); | |
7 | 5202 else |
1347 | 5203 rst.nextb_ic = MB_TOUPPER(rst.nextb); |
7 | 5204 } |
5205 else | |
180 | 5206 rst.nextb_ic = rst.nextb; |
7 | 5207 } |
5208 else | |
5209 { | |
180 | 5210 rst.nextb = NUL; |
5211 rst.nextb_ic = NUL; | |
7 | 5212 } |
5213 if (op != BRACE_SIMPLE) | |
5214 { | |
180 | 5215 rst.minval = (op == STAR) ? 0 : 1; |
5216 rst.maxval = MAX_LIMIT; | |
7 | 5217 } |
5218 else | |
5219 { | |
180 | 5220 rst.minval = bl_minval; |
5221 rst.maxval = bl_maxval; | |
7 | 5222 } |
5223 | |
5224 /* | |
5225 * When maxval > minval, try matching as much as possible, up | |
5226 * to maxval. When maxval < minval, try matching at least the | |
5227 * minimal number (since the range is backwards, that's also | |
5228 * maxval!). | |
5229 */ | |
180 | 5230 rst.count = regrepeat(OPERAND(scan), rst.maxval); |
7 | 5231 if (got_int) |
180 | 5232 { |
5233 status = RA_FAIL; | |
5234 break; | |
5235 } | |
5236 if (rst.minval <= rst.maxval | |
5237 ? rst.count >= rst.minval : rst.count >= rst.maxval) | |
7 | 5238 { |
180 | 5239 /* It could match. Prepare for trying to match what |
5240 * follows. The code is below. Parameters are stored in | |
5241 * a regstar_T on the regstack. */ | |
212 | 5242 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5243 { |
5244 EMSG(_(e_maxmempat)); | |
5245 status = RA_FAIL; | |
5246 } | |
5247 else if (ga_grow(®stack, sizeof(regstar_T)) == FAIL) | |
180 | 5248 status = RA_FAIL; |
5249 else | |
7 | 5250 { |
180 | 5251 regstack.ga_len += sizeof(regstar_T); |
270 | 5252 rp = regstack_push(rst.minval <= rst.maxval |
233 | 5253 ? RS_STAR_LONG : RS_STAR_SHORT, scan); |
180 | 5254 if (rp == NULL) |
5255 status = RA_FAIL; | |
5256 else | |
7 | 5257 { |
180 | 5258 *(((regstar_T *)rp) - 1) = rst; |
5259 status = RA_BREAK; /* skip the restore bits */ | |
7 | 5260 } |
5261 } | |
5262 } | |
5263 else | |
180 | 5264 status = RA_NOMATCH; |
5265 | |
7 | 5266 } |
180 | 5267 break; |
7 | 5268 |
5269 case NOMATCH: | |
5270 case MATCH: | |
5271 case SUBPAT: | |
270 | 5272 rp = regstack_push(RS_NOMATCH, scan); |
180 | 5273 if (rp == NULL) |
5274 status = RA_FAIL; | |
5275 else | |
7 | 5276 { |
180 | 5277 rp->rs_no = op; |
233 | 5278 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5279 next = OPERAND(scan); |
5280 /* We continue and handle the result when done. */ | |
7 | 5281 } |
5282 break; | |
5283 | |
5284 case BEHIND: | |
5285 case NOBEHIND: | |
180 | 5286 /* Need a bit of room to store extra positions. */ |
212 | 5287 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5288 { |
5289 EMSG(_(e_maxmempat)); | |
5290 status = RA_FAIL; | |
5291 } | |
5292 else if (ga_grow(®stack, sizeof(regbehind_T)) == FAIL) | |
180 | 5293 status = RA_FAIL; |
5294 else | |
7 | 5295 { |
180 | 5296 regstack.ga_len += sizeof(regbehind_T); |
270 | 5297 rp = regstack_push(RS_BEHIND1, scan); |
180 | 5298 if (rp == NULL) |
5299 status = RA_FAIL; | |
5300 else | |
7 | 5301 { |
1579 | 5302 /* Need to save the subexpr to be able to restore them |
5303 * when there is a match but we don't use it. */ | |
5304 save_subexpr(((regbehind_T *)rp) - 1); | |
5305 | |
180 | 5306 rp->rs_no = op; |
233 | 5307 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5308 /* First try if what follows matches. If it does then we |
5309 * check the behind match by looping. */ | |
7 | 5310 } |
5311 } | |
180 | 5312 break; |
7 | 5313 |
5314 case BHPOS: | |
5315 if (REG_MULTI) | |
5316 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5317 if (behind_pos.rs_u.pos.col != (colnr_T)(rex.input - rex.line) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5318 || behind_pos.rs_u.pos.lnum != rex.lnum) |
180 | 5319 status = RA_NOMATCH; |
7 | 5320 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5321 else if (behind_pos.rs_u.ptr != rex.input) |
180 | 5322 status = RA_NOMATCH; |
7 | 5323 break; |
5324 | |
5325 case NEWL: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5326 if ((c != NUL || !REG_MULTI || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5327 || rex.reg_line_lbr) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5328 && (c != '\n' || !rex.reg_line_lbr)) |
180 | 5329 status = RA_NOMATCH; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5330 else if (rex.reg_line_lbr) |
7 | 5331 ADVANCE_REGINPUT(); |
5332 else | |
5333 reg_nextline(); | |
5334 break; | |
5335 | |
5336 case END: | |
180 | 5337 status = RA_MATCH; /* Success! */ |
5338 break; | |
7 | 5339 |
5340 default: | |
5341 EMSG(_(e_re_corr)); | |
5342 #ifdef DEBUG | |
5343 printf("Illegal op code %d\n", op); | |
5344 #endif | |
180 | 5345 status = RA_FAIL; |
5346 break; | |
7 | 5347 } |
5348 } | |
5349 | |
180 | 5350 /* If we can't continue sequentially, break the inner loop. */ |
5351 if (status != RA_CONT) | |
5352 break; | |
5353 | |
5354 /* Continue in inner loop, advance to next item. */ | |
7 | 5355 scan = next; |
180 | 5356 |
5357 } /* end of inner loop */ | |
7 | 5358 |
5359 /* | |
180 | 5360 * If there is something on the regstack execute the code for the state. |
233 | 5361 * If the state is popped then loop and use the older state. |
7 | 5362 */ |
180 | 5363 while (regstack.ga_len > 0 && status != RA_FAIL) |
5364 { | |
5365 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; | |
5366 switch (rp->rs_state) | |
5367 { | |
5368 case RS_NOPEN: | |
5369 /* Result is passed on as-is, simply pop the state. */ | |
270 | 5370 regstack_pop(&scan); |
180 | 5371 break; |
5372 | |
5373 case RS_MOPEN: | |
5374 /* Pop the state. Restore pointers when there is no match. */ | |
5375 if (status == RA_NOMATCH) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5376 restore_se(&rp->rs_un.sesave, &rex.reg_startpos[rp->rs_no], |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5377 &rex.reg_startp[rp->rs_no]); |
270 | 5378 regstack_pop(&scan); |
180 | 5379 break; |
5380 | |
5381 #ifdef FEAT_SYN_HL | |
5382 case RS_ZOPEN: | |
5383 /* Pop the state. Restore pointers when there is no match. */ | |
5384 if (status == RA_NOMATCH) | |
5385 restore_se(&rp->rs_un.sesave, ®_startzpos[rp->rs_no], | |
5386 ®_startzp[rp->rs_no]); | |
270 | 5387 regstack_pop(&scan); |
180 | 5388 break; |
5389 #endif | |
5390 | |
5391 case RS_MCLOSE: | |
5392 /* Pop the state. Restore pointers when there is no match. */ | |
5393 if (status == RA_NOMATCH) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5394 restore_se(&rp->rs_un.sesave, &rex.reg_endpos[rp->rs_no], |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5395 &rex.reg_endp[rp->rs_no]); |
270 | 5396 regstack_pop(&scan); |
180 | 5397 break; |
5398 | |
5399 #ifdef FEAT_SYN_HL | |
5400 case RS_ZCLOSE: | |
5401 /* Pop the state. Restore pointers when there is no match. */ | |
5402 if (status == RA_NOMATCH) | |
5403 restore_se(&rp->rs_un.sesave, ®_endzpos[rp->rs_no], | |
5404 ®_endzp[rp->rs_no]); | |
270 | 5405 regstack_pop(&scan); |
180 | 5406 break; |
5407 #endif | |
5408 | |
5409 case RS_BRANCH: | |
5410 if (status == RA_MATCH) | |
5411 /* this branch matched, use it */ | |
270 | 5412 regstack_pop(&scan); |
180 | 5413 else |
5414 { | |
5415 if (status != RA_BREAK) | |
5416 { | |
5417 /* After a non-matching branch: try next one. */ | |
233 | 5418 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5419 scan = rp->rs_scan; |
5420 } | |
5421 if (scan == NULL || OP(scan) != BRANCH) | |
5422 { | |
5423 /* no more branches, didn't find a match */ | |
5424 status = RA_NOMATCH; | |
270 | 5425 regstack_pop(&scan); |
180 | 5426 } |
5427 else | |
5428 { | |
5429 /* Prepare to try a branch. */ | |
5430 rp->rs_scan = regnext(scan); | |
233 | 5431 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5432 scan = OPERAND(scan); |
5433 } | |
5434 } | |
5435 break; | |
5436 | |
5437 case RS_BRCPLX_MORE: | |
5438 /* Pop the state. Restore pointers when there is no match. */ | |
5439 if (status == RA_NOMATCH) | |
5440 { | |
233 | 5441 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5442 --brace_count[rp->rs_no]; /* decrement match count */ |
5443 } | |
270 | 5444 regstack_pop(&scan); |
180 | 5445 break; |
5446 | |
5447 case RS_BRCPLX_LONG: | |
5448 /* Pop the state. Restore pointers when there is no match. */ | |
5449 if (status == RA_NOMATCH) | |
5450 { | |
5451 /* There was no match, but we did find enough matches. */ | |
233 | 5452 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5453 --brace_count[rp->rs_no]; |
5454 /* continue with the items after "\{}" */ | |
5455 status = RA_CONT; | |
5456 } | |
270 | 5457 regstack_pop(&scan); |
180 | 5458 if (status == RA_CONT) |
5459 scan = regnext(scan); | |
5460 break; | |
5461 | |
5462 case RS_BRCPLX_SHORT: | |
5463 /* Pop the state. Restore pointers when there is no match. */ | |
5464 if (status == RA_NOMATCH) | |
5465 /* There was no match, try to match one more item. */ | |
233 | 5466 reg_restore(&rp->rs_un.regsave, &backpos); |
270 | 5467 regstack_pop(&scan); |
180 | 5468 if (status == RA_NOMATCH) |
5469 { | |
5470 scan = OPERAND(scan); | |
5471 status = RA_CONT; | |
5472 } | |
5473 break; | |
5474 | |
5475 case RS_NOMATCH: | |
5476 /* Pop the state. If the operand matches for NOMATCH or | |
5477 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup, | |
5478 * except for SUBPAT, and continue with the next item. */ | |
5479 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH)) | |
5480 status = RA_NOMATCH; | |
5481 else | |
5482 { | |
5483 status = RA_CONT; | |
233 | 5484 if (rp->rs_no != SUBPAT) /* zero-width */ |
5485 reg_restore(&rp->rs_un.regsave, &backpos); | |
180 | 5486 } |
270 | 5487 regstack_pop(&scan); |
180 | 5488 if (status == RA_CONT) |
5489 scan = regnext(scan); | |
5490 break; | |
5491 | |
5492 case RS_BEHIND1: | |
5493 if (status == RA_NOMATCH) | |
5494 { | |
270 | 5495 regstack_pop(&scan); |
180 | 5496 regstack.ga_len -= sizeof(regbehind_T); |
5497 } | |
5498 else | |
5499 { | |
5500 /* The stuff after BEHIND/NOBEHIND matches. Now try if | |
5501 * the behind part does (not) match before the current | |
5502 * position in the input. This must be done at every | |
5503 * position in the input and checking if the match ends at | |
5504 * the current position. */ | |
5505 | |
5506 /* save the position after the found match for next */ | |
233 | 5507 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos); |
180 | 5508 |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5509 /* Start looking for a match with operand at the current |
1209 | 5510 * position. Go back one character until we find the |
180 | 5511 * result, hitting the start of the line or the previous |
5512 * line (for multi-line matching). | |
5513 * Set behind_pos to where the match should end, BHPOS | |
5514 * will match it. Save the current value. */ | |
5515 (((regbehind_T *)rp) - 1)->save_behind = behind_pos; | |
5516 behind_pos = rp->rs_un.regsave; | |
5517 | |
5518 rp->rs_state = RS_BEHIND2; | |
5519 | |
233 | 5520 reg_restore(&rp->rs_un.regsave, &backpos); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5521 scan = OPERAND(rp->rs_scan) + 4; |
180 | 5522 } |
5523 break; | |
5524 | |
5525 case RS_BEHIND2: | |
5526 /* | |
5527 * Looping for BEHIND / NOBEHIND match. | |
5528 */ | |
5529 if (status == RA_MATCH && reg_save_equal(&behind_pos)) | |
5530 { | |
5531 /* found a match that ends where "next" started */ | |
5532 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5533 if (rp->rs_no == BEHIND) | |
233 | 5534 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5535 &backpos); | |
180 | 5536 else |
1579 | 5537 { |
5538 /* But we didn't want a match. Need to restore the | |
5539 * subexpr, because what follows matched, so they have | |
5540 * been set. */ | |
180 | 5541 status = RA_NOMATCH; |
1579 | 5542 restore_subexpr(((regbehind_T *)rp) - 1); |
5543 } | |
270 | 5544 regstack_pop(&scan); |
180 | 5545 regstack.ga_len -= sizeof(regbehind_T); |
5546 } | |
5547 else | |
5548 { | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5549 long limit; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5550 |
1579 | 5551 /* No match or a match that doesn't end where we want it: Go |
5552 * back one character. May go to previous line once. */ | |
180 | 5553 no = OK; |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5554 limit = OPERAND_MIN(rp->rs_scan); |
180 | 5555 if (REG_MULTI) |
5556 { | |
4682
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5557 if (limit > 0 |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5558 && ((rp->rs_un.regsave.rs_u.pos.lnum |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5559 < behind_pos.rs_u.pos.lnum |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5560 ? (colnr_T)STRLEN(rex.line) |
4682
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5561 : behind_pos.rs_u.pos.col) |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5562 - rp->rs_un.regsave.rs_u.pos.col >= limit)) |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5563 no = FAIL; |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5564 else if (rp->rs_un.regsave.rs_u.pos.col == 0) |
180 | 5565 { |
5566 if (rp->rs_un.regsave.rs_u.pos.lnum | |
5567 < behind_pos.rs_u.pos.lnum | |
5568 || reg_getline( | |
5569 --rp->rs_un.regsave.rs_u.pos.lnum) | |
5570 == NULL) | |
5571 no = FAIL; | |
5572 else | |
5573 { | |
233 | 5574 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5575 rp->rs_un.regsave.rs_u.pos.col = |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5576 (colnr_T)STRLEN(rex.line); |
180 | 5577 } |
5578 } | |
5579 else | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5580 { |
4176 | 5581 #ifdef FEAT_MBYTE |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5582 if (has_mbyte) |
13286
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5583 { |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5584 char_u *line = |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5585 reg_getline(behind_pos.rs_u.pos.lnum); |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5586 |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5587 rp->rs_un.regsave.rs_u.pos.col -= |
13286
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5588 (*mb_head_off)(line, line |
4176 | 5589 + rp->rs_un.regsave.rs_u.pos.col - 1) + 1; |
13286
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5590 } |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5591 else |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5592 #endif |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5593 --rp->rs_un.regsave.rs_u.pos.col; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5594 } |
180 | 5595 } |
5596 else | |
5597 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5598 if (rp->rs_un.regsave.rs_u.ptr == rex.line) |
180 | 5599 no = FAIL; |
5600 else | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5601 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5602 MB_PTR_BACK(rex.line, rp->rs_un.regsave.rs_u.ptr); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5603 if (limit > 0 && (long)(behind_pos.rs_u.ptr |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5604 - rp->rs_un.regsave.rs_u.ptr) > limit) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5605 no = FAIL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5606 } |
180 | 5607 } |
5608 if (no == OK) | |
5609 { | |
5610 /* Advanced, prepare for finding match again. */ | |
233 | 5611 reg_restore(&rp->rs_un.regsave, &backpos); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5612 scan = OPERAND(rp->rs_scan) + 4; |
1579 | 5613 if (status == RA_MATCH) |
5614 { | |
5615 /* We did match, so subexpr may have been changed, | |
5616 * need to restore them for the next try. */ | |
5617 status = RA_NOMATCH; | |
5618 restore_subexpr(((regbehind_T *)rp) - 1); | |
5619 } | |
180 | 5620 } |
5621 else | |
5622 { | |
5623 /* Can't advance. For NOBEHIND that's a match. */ | |
5624 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5625 if (rp->rs_no == NOBEHIND) | |
5626 { | |
233 | 5627 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5628 &backpos); | |
180 | 5629 status = RA_MATCH; |
5630 } | |
5631 else | |
1579 | 5632 { |
5633 /* We do want a proper match. Need to restore the | |
5634 * subexpr if we had a match, because they may have | |
5635 * been set. */ | |
5636 if (status == RA_MATCH) | |
5637 { | |
5638 status = RA_NOMATCH; | |
5639 restore_subexpr(((regbehind_T *)rp) - 1); | |
5640 } | |
5641 } | |
270 | 5642 regstack_pop(&scan); |
180 | 5643 regstack.ga_len -= sizeof(regbehind_T); |
5644 } | |
5645 } | |
5646 break; | |
5647 | |
5648 case RS_STAR_LONG: | |
5649 case RS_STAR_SHORT: | |
5650 { | |
5651 regstar_T *rst = ((regstar_T *)rp) - 1; | |
5652 | |
5653 if (status == RA_MATCH) | |
5654 { | |
270 | 5655 regstack_pop(&scan); |
180 | 5656 regstack.ga_len -= sizeof(regstar_T); |
5657 break; | |
5658 } | |
5659 | |
5660 /* Tried once already, restore input pointers. */ | |
5661 if (status != RA_BREAK) | |
233 | 5662 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5663 |
5664 /* Repeat until we found a position where it could match. */ | |
5665 for (;;) | |
5666 { | |
5667 if (status != RA_BREAK) | |
5668 { | |
5669 /* Tried first position already, advance. */ | |
5670 if (rp->rs_state == RS_STAR_LONG) | |
5671 { | |
685 | 5672 /* Trying for longest match, but couldn't or |
5673 * didn't match -- back up one char. */ | |
180 | 5674 if (--rst->count < rst->minval) |
5675 break; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5676 if (rex.input == rex.line) |
180 | 5677 { |
5678 /* backup to last char of previous line */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5679 --rex.lnum; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5680 rex.line = reg_getline(rex.lnum); |
180 | 5681 /* Just in case regrepeat() didn't count |
5682 * right. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5683 if (rex.line == NULL) |
180 | 5684 break; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5685 rex.input = rex.line + STRLEN(rex.line); |
180 | 5686 fast_breakcheck(); |
5687 } | |
5688 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5689 MB_PTR_BACK(rex.line, rex.input); |
180 | 5690 } |
5691 else | |
5692 { | |
5693 /* Range is backwards, use shortest match first. | |
5694 * Careful: maxval and minval are exchanged! | |
5695 * Couldn't or didn't match: try advancing one | |
5696 * char. */ | |
5697 if (rst->count == rst->minval | |
5698 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0) | |
5699 break; | |
5700 ++rst->count; | |
5701 } | |
5702 if (got_int) | |
5703 break; | |
5704 } | |
5705 else | |
5706 status = RA_NOMATCH; | |
5707 | |
5708 /* If it could match, try it. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5709 if (rst->nextb == NUL || *rex.input == rst->nextb |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5710 || *rex.input == rst->nextb_ic) |
180 | 5711 { |
233 | 5712 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5713 scan = regnext(rp->rs_scan); |
5714 status = RA_CONT; | |
5715 break; | |
5716 } | |
5717 } | |
5718 if (status != RA_CONT) | |
5719 { | |
5720 /* Failed. */ | |
270 | 5721 regstack_pop(&scan); |
180 | 5722 regstack.ga_len -= sizeof(regstar_T); |
5723 status = RA_NOMATCH; | |
5724 } | |
5725 } | |
5726 break; | |
5727 } | |
5728 | |
685 | 5729 /* If we want to continue the inner loop or didn't pop a state |
5730 * continue matching loop */ | |
180 | 5731 if (status == RA_CONT || rp == (regitem_T *) |
5732 ((char *)regstack.ga_data + regstack.ga_len) - 1) | |
5733 break; | |
5734 } | |
5735 | |
189 | 5736 /* May need to continue with the inner loop, starting at "scan". */ |
180 | 5737 if (status == RA_CONT) |
5738 continue; | |
5739 | |
5740 /* | |
5741 * If the regstack is empty or something failed we are done. | |
5742 */ | |
5743 if (regstack.ga_len == 0 || status == RA_FAIL) | |
5744 { | |
5745 if (scan == NULL) | |
5746 { | |
5747 /* | |
5748 * We get here only if there's trouble -- normally "case END" is | |
5749 * the terminating point. | |
5750 */ | |
5751 EMSG(_(e_re_corr)); | |
7 | 5752 #ifdef DEBUG |
180 | 5753 printf("Premature EOL\n"); |
7 | 5754 #endif |
180 | 5755 } |
5756 return (status == RA_MATCH); | |
5757 } | |
5758 | |
5759 } /* End of loop until the regstack is empty. */ | |
5760 | |
5761 /* NOTREACHED */ | |
5762 } | |
5763 | |
5764 /* | |
5765 * Push an item onto the regstack. | |
5766 * Returns pointer to new item. Returns NULL when out of memory. | |
5767 */ | |
5768 static regitem_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5769 regstack_push(regstate_T state, char_u *scan) |
180 | 5770 { |
5771 regitem_T *rp; | |
5772 | |
270 | 5773 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5774 { |
5775 EMSG(_(e_maxmempat)); | |
5776 return NULL; | |
5777 } | |
270 | 5778 if (ga_grow(®stack, sizeof(regitem_T)) == FAIL) |
180 | 5779 return NULL; |
5780 | |
270 | 5781 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len); |
180 | 5782 rp->rs_state = state; |
5783 rp->rs_scan = scan; | |
5784 | |
270 | 5785 regstack.ga_len += sizeof(regitem_T); |
180 | 5786 return rp; |
5787 } | |
5788 | |
5789 /* | |
5790 * Pop an item from the regstack. | |
5791 */ | |
5792 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5793 regstack_pop(char_u **scan) |
180 | 5794 { |
5795 regitem_T *rp; | |
5796 | |
270 | 5797 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; |
180 | 5798 *scan = rp->rs_scan; |
5799 | |
270 | 5800 regstack.ga_len -= sizeof(regitem_T); |
7 | 5801 } |
5802 | |
5803 /* | |
5804 * regrepeat - repeatedly match something simple, return how many. | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5805 * Advances rex.input (and rex.lnum) to just after the matched chars. |
7 | 5806 */ |
5807 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5808 regrepeat( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5809 char_u *p, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5810 long maxcount) /* maximum number of matches allowed */ |
7 | 5811 { |
5812 long count = 0; | |
5813 char_u *scan; | |
5814 char_u *opnd; | |
5815 int mask; | |
5816 int testval = 0; | |
5817 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5818 scan = rex.input; /* Make local copy of rex.input for speed. */ |
7 | 5819 opnd = OPERAND(p); |
5820 switch (OP(p)) | |
5821 { | |
5822 case ANY: | |
5823 case ANY + ADD_NL: | |
5824 while (count < maxcount) | |
5825 { | |
5826 /* Matching anything means we continue until end-of-line (or | |
5827 * end-of-file for ANY + ADD_NL), only limited by maxcount. */ | |
5828 while (*scan != NUL && count < maxcount) | |
5829 { | |
5830 ++count; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5831 MB_PTR_ADV(scan); |
7 | 5832 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5833 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5834 || rex.reg_line_lbr || count == maxcount) |
7 | 5835 break; |
5836 ++count; /* count the line-break */ | |
5837 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5838 scan = rex.input; |
7 | 5839 if (got_int) |
5840 break; | |
5841 } | |
5842 break; | |
5843 | |
5844 case IDENT: | |
5845 case IDENT + ADD_NL: | |
5846 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5847 /* FALLTHROUGH */ |
7 | 5848 case SIDENT: |
5849 case SIDENT + ADD_NL: | |
5850 while (count < maxcount) | |
5851 { | |
4466 | 5852 if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5853 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5854 MB_PTR_ADV(scan); |
7 | 5855 } |
5856 else if (*scan == NUL) | |
5857 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5858 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5859 || rex.reg_line_lbr) |
7 | 5860 break; |
5861 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5862 scan = rex.input; |
7 | 5863 if (got_int) |
5864 break; | |
5865 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5866 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5867 ++scan; |
5868 else | |
5869 break; | |
5870 ++count; | |
5871 } | |
5872 break; | |
5873 | |
5874 case KWORD: | |
5875 case KWORD + ADD_NL: | |
5876 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5877 /* FALLTHROUGH */ |
7 | 5878 case SKWORD: |
5879 case SKWORD + ADD_NL: | |
5880 while (count < maxcount) | |
5881 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5882 if (vim_iswordp_buf(scan, rex.reg_buf) |
4069 | 5883 && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5884 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5885 MB_PTR_ADV(scan); |
7 | 5886 } |
5887 else if (*scan == NUL) | |
5888 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5889 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5890 || rex.reg_line_lbr) |
7 | 5891 break; |
5892 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5893 scan = rex.input; |
7 | 5894 if (got_int) |
5895 break; | |
5896 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5897 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5898 ++scan; |
5899 else | |
5900 break; | |
5901 ++count; | |
5902 } | |
5903 break; | |
5904 | |
5905 case FNAME: | |
5906 case FNAME + ADD_NL: | |
5907 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5908 /* FALLTHROUGH */ |
7 | 5909 case SFNAME: |
5910 case SFNAME + ADD_NL: | |
5911 while (count < maxcount) | |
5912 { | |
4466 | 5913 if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5914 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5915 MB_PTR_ADV(scan); |
7 | 5916 } |
5917 else if (*scan == NUL) | |
5918 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5919 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5920 || rex.reg_line_lbr) |
7 | 5921 break; |
5922 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5923 scan = rex.input; |
7 | 5924 if (got_int) |
5925 break; | |
5926 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5927 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5928 ++scan; |
5929 else | |
5930 break; | |
5931 ++count; | |
5932 } | |
5933 break; | |
5934 | |
5935 case PRINT: | |
5936 case PRINT + ADD_NL: | |
5937 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5938 /* FALLTHROUGH */ |
7 | 5939 case SPRINT: |
5940 case SPRINT + ADD_NL: | |
5941 while (count < maxcount) | |
5942 { | |
5943 if (*scan == NUL) | |
5944 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5945 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5946 || rex.reg_line_lbr) |
7 | 5947 break; |
5948 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5949 scan = rex.input; |
7 | 5950 if (got_int) |
5951 break; | |
5952 } | |
5221
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
5953 else if (vim_isprintc(PTR2CHAR(scan)) == 1 |
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
5954 && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5955 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5956 MB_PTR_ADV(scan); |
7 | 5957 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5958 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5959 ++scan; |
5960 else | |
5961 break; | |
5962 ++count; | |
5963 } | |
5964 break; | |
5965 | |
5966 case WHITE: | |
5967 case WHITE + ADD_NL: | |
5968 testval = mask = RI_WHITE; | |
5969 do_class: | |
5970 while (count < maxcount) | |
5971 { | |
5972 #ifdef FEAT_MBYTE | |
5973 int l; | |
5974 #endif | |
5975 if (*scan == NUL) | |
5976 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5977 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5978 || rex.reg_line_lbr) |
7 | 5979 break; |
5980 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5981 scan = rex.input; |
7 | 5982 if (got_int) |
5983 break; | |
5984 } | |
5985 #ifdef FEAT_MBYTE | |
474 | 5986 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1) |
7 | 5987 { |
5988 if (testval != 0) | |
5989 break; | |
5990 scan += l; | |
5991 } | |
5992 #endif | |
5993 else if ((class_tab[*scan] & mask) == testval) | |
5994 ++scan; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5995 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5996 ++scan; |
5997 else | |
5998 break; | |
5999 ++count; | |
6000 } | |
6001 break; | |
6002 | |
6003 case NWHITE: | |
6004 case NWHITE + ADD_NL: | |
6005 mask = RI_WHITE; | |
6006 goto do_class; | |
6007 case DIGIT: | |
6008 case DIGIT + ADD_NL: | |
6009 testval = mask = RI_DIGIT; | |
6010 goto do_class; | |
6011 case NDIGIT: | |
6012 case NDIGIT + ADD_NL: | |
6013 mask = RI_DIGIT; | |
6014 goto do_class; | |
6015 case HEX: | |
6016 case HEX + ADD_NL: | |
6017 testval = mask = RI_HEX; | |
6018 goto do_class; | |
6019 case NHEX: | |
6020 case NHEX + ADD_NL: | |
6021 mask = RI_HEX; | |
6022 goto do_class; | |
6023 case OCTAL: | |
6024 case OCTAL + ADD_NL: | |
6025 testval = mask = RI_OCTAL; | |
6026 goto do_class; | |
6027 case NOCTAL: | |
6028 case NOCTAL + ADD_NL: | |
6029 mask = RI_OCTAL; | |
6030 goto do_class; | |
6031 case WORD: | |
6032 case WORD + ADD_NL: | |
6033 testval = mask = RI_WORD; | |
6034 goto do_class; | |
6035 case NWORD: | |
6036 case NWORD + ADD_NL: | |
6037 mask = RI_WORD; | |
6038 goto do_class; | |
6039 case HEAD: | |
6040 case HEAD + ADD_NL: | |
6041 testval = mask = RI_HEAD; | |
6042 goto do_class; | |
6043 case NHEAD: | |
6044 case NHEAD + ADD_NL: | |
6045 mask = RI_HEAD; | |
6046 goto do_class; | |
6047 case ALPHA: | |
6048 case ALPHA + ADD_NL: | |
6049 testval = mask = RI_ALPHA; | |
6050 goto do_class; | |
6051 case NALPHA: | |
6052 case NALPHA + ADD_NL: | |
6053 mask = RI_ALPHA; | |
6054 goto do_class; | |
6055 case LOWER: | |
6056 case LOWER + ADD_NL: | |
6057 testval = mask = RI_LOWER; | |
6058 goto do_class; | |
6059 case NLOWER: | |
6060 case NLOWER + ADD_NL: | |
6061 mask = RI_LOWER; | |
6062 goto do_class; | |
6063 case UPPER: | |
6064 case UPPER + ADD_NL: | |
6065 testval = mask = RI_UPPER; | |
6066 goto do_class; | |
6067 case NUPPER: | |
6068 case NUPPER + ADD_NL: | |
6069 mask = RI_UPPER; | |
6070 goto do_class; | |
6071 | |
6072 case EXACTLY: | |
6073 { | |
6074 int cu, cl; | |
6075 | |
6076 /* This doesn't do a multi-byte character, because a MULTIBYTECODE | |
1347 | 6077 * would have been used for it. It does handle single-byte |
6078 * characters, such as latin1. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6079 if (rex.reg_ic) |
7 | 6080 { |
1347 | 6081 cu = MB_TOUPPER(*opnd); |
6082 cl = MB_TOLOWER(*opnd); | |
7 | 6083 while (count < maxcount && (*scan == cu || *scan == cl)) |
6084 { | |
6085 count++; | |
6086 scan++; | |
6087 } | |
6088 } | |
6089 else | |
6090 { | |
6091 cu = *opnd; | |
6092 while (count < maxcount && *scan == cu) | |
6093 { | |
6094 count++; | |
6095 scan++; | |
6096 } | |
6097 } | |
6098 break; | |
6099 } | |
6100 | |
6101 #ifdef FEAT_MBYTE | |
6102 case MULTIBYTECODE: | |
6103 { | |
6104 int i, len, cf = 0; | |
6105 | |
6106 /* Safety check (just in case 'encoding' was changed since | |
6107 * compiling the program). */ | |
474 | 6108 if ((len = (*mb_ptr2len)(opnd)) > 1) |
7 | 6109 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6110 if (rex.reg_ic && enc_utf8) |
7 | 6111 cf = utf_fold(utf_ptr2char(opnd)); |
6785 | 6112 while (count < maxcount && (*mb_ptr2len)(scan) >= len) |
7 | 6113 { |
6114 for (i = 0; i < len; ++i) | |
6115 if (opnd[i] != scan[i]) | |
6116 break; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6117 if (i < len && (!rex.reg_ic || !enc_utf8 |
7 | 6118 || utf_fold(utf_ptr2char(scan)) != cf)) |
6119 break; | |
6120 scan += len; | |
6121 ++count; | |
6122 } | |
6123 } | |
6124 } | |
6125 break; | |
6126 #endif | |
6127 | |
6128 case ANYOF: | |
6129 case ANYOF + ADD_NL: | |
6130 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
6131 /* FALLTHROUGH */ |
7 | 6132 |
6133 case ANYBUT: | |
6134 case ANYBUT + ADD_NL: | |
6135 while (count < maxcount) | |
6136 { | |
6137 #ifdef FEAT_MBYTE | |
6138 int len; | |
6139 #endif | |
6140 if (*scan == NUL) | |
6141 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6142 if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6143 || rex.reg_line_lbr) |
7 | 6144 break; |
6145 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6146 scan = rex.input; |
7 | 6147 if (got_int) |
6148 break; | |
6149 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6150 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 6151 ++scan; |
6152 #ifdef FEAT_MBYTE | |
474 | 6153 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1) |
7 | 6154 { |
6155 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval) | |
6156 break; | |
6157 scan += len; | |
6158 } | |
6159 #endif | |
6160 else | |
6161 { | |
6162 if ((cstrchr(opnd, *scan) == NULL) == testval) | |
6163 break; | |
6164 ++scan; | |
6165 } | |
6166 ++count; | |
6167 } | |
6168 break; | |
6169 | |
6170 case NEWL: | |
6171 while (count < maxcount | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6172 && ((*scan == NUL && rex.lnum <= rex.reg_maxline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6173 && !rex.reg_line_lbr && REG_MULTI) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6174 || (*scan == '\n' && rex.reg_line_lbr))) |
7 | 6175 { |
6176 count++; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6177 if (rex.reg_line_lbr) |
7 | 6178 ADVANCE_REGINPUT(); |
6179 else | |
6180 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6181 scan = rex.input; |
7 | 6182 if (got_int) |
6183 break; | |
6184 } | |
6185 break; | |
6186 | |
6187 default: /* Oh dear. Called inappropriately. */ | |
6188 EMSG(_(e_re_corr)); | |
6189 #ifdef DEBUG | |
6190 printf("Called regrepeat with op code %d\n", OP(p)); | |
6191 #endif | |
6192 break; | |
6193 } | |
6194 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6195 rex.input = scan; |
7 | 6196 |
6197 return (int)count; | |
6198 } | |
6199 | |
6200 /* | |
6201 * regnext - dig the "next" pointer out of a node | |
2010 | 6202 * Returns NULL when calculating size, when there is no next item and when |
6203 * there is an error. | |
7 | 6204 */ |
6205 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6206 regnext(char_u *p) |
7 | 6207 { |
6208 int offset; | |
6209 | |
2010 | 6210 if (p == JUST_CALC_SIZE || reg_toolong) |
7 | 6211 return NULL; |
6212 | |
6213 offset = NEXT(p); | |
6214 if (offset == 0) | |
6215 return NULL; | |
6216 | |
233 | 6217 if (OP(p) == BACK) |
7 | 6218 return p - offset; |
6219 else | |
6220 return p + offset; | |
6221 } | |
6222 | |
6223 /* | |
6224 * Check the regexp program for its magic number. | |
6225 * Return TRUE if it's wrong. | |
6226 */ | |
6227 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6228 prog_magic_wrong(void) |
7 | 6229 { |
4444 | 6230 regprog_T *prog; |
6231 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6232 prog = REG_MULTI ? rex.reg_mmatch->regprog : rex.reg_match->regprog; |
4444 | 6233 if (prog->engine == &nfa_regengine) |
6234 /* For NFA matcher we don't check the magic */ | |
6235 return FALSE; | |
6236 | |
6237 if (UCHARAT(((bt_regprog_T *)prog)->program) != REGMAGIC) | |
7 | 6238 { |
6239 EMSG(_(e_re_corr)); | |
6240 return TRUE; | |
6241 } | |
6242 return FALSE; | |
6243 } | |
6244 | |
6245 /* | |
6246 * Cleanup the subexpressions, if this wasn't done yet. | |
6247 * This construction is used to clear the subexpressions only when they are | |
6248 * used (to increase speed). | |
6249 */ | |
6250 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6251 cleanup_subexpr(void) |
7 | 6252 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6253 if (rex.need_clear_subexpr) |
7 | 6254 { |
6255 if (REG_MULTI) | |
6256 { | |
6257 /* Use 0xff to set lnum to -1 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6258 vim_memset(rex.reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6259 vim_memset(rex.reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP); |
7 | 6260 } |
6261 else | |
6262 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6263 vim_memset(rex.reg_startp, 0, sizeof(char_u *) * NSUBEXP); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6264 vim_memset(rex.reg_endp, 0, sizeof(char_u *) * NSUBEXP); |
7 | 6265 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6266 rex.need_clear_subexpr = FALSE; |
7 | 6267 } |
6268 } | |
6269 | |
6270 #ifdef FEAT_SYN_HL | |
6271 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6272 cleanup_zsubexpr(void) |
7 | 6273 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6274 if (rex.need_clear_zsubexpr) |
7 | 6275 { |
6276 if (REG_MULTI) | |
6277 { | |
6278 /* Use 0xff to set lnum to -1 */ | |
6279 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6280 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6281 } | |
6282 else | |
6283 { | |
6284 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP); | |
6285 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP); | |
6286 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6287 rex.need_clear_zsubexpr = FALSE; |
7 | 6288 } |
6289 } | |
6290 #endif | |
6291 | |
6292 /* | |
1579 | 6293 * Save the current subexpr to "bp", so that they can be restored |
6294 * later by restore_subexpr(). | |
6295 */ | |
6296 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6297 save_subexpr(regbehind_T *bp) |
1579 | 6298 { |
6299 int i; | |
6300 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6301 /* When "rex.need_clear_subexpr" is set we don't need to save the values, only |
1602 | 6302 * remember that this flag needs to be set again when restoring. */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6303 bp->save_need_clear_subexpr = rex.need_clear_subexpr; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6304 if (!rex.need_clear_subexpr) |
1579 | 6305 { |
1602 | 6306 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6307 { |
1602 | 6308 if (REG_MULTI) |
6309 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6310 bp->save_start[i].se_u.pos = rex.reg_startpos[i]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6311 bp->save_end[i].se_u.pos = rex.reg_endpos[i]; |
1602 | 6312 } |
6313 else | |
6314 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6315 bp->save_start[i].se_u.ptr = rex.reg_startp[i]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6316 bp->save_end[i].se_u.ptr = rex.reg_endp[i]; |
1602 | 6317 } |
1579 | 6318 } |
6319 } | |
6320 } | |
6321 | |
6322 /* | |
6323 * Restore the subexpr from "bp". | |
6324 */ | |
6325 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6326 restore_subexpr(regbehind_T *bp) |
1579 | 6327 { |
6328 int i; | |
6329 | |
1602 | 6330 /* Only need to restore saved values when they are not to be cleared. */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6331 rex.need_clear_subexpr = bp->save_need_clear_subexpr; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6332 if (!rex.need_clear_subexpr) |
1579 | 6333 { |
1602 | 6334 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6335 { |
1602 | 6336 if (REG_MULTI) |
6337 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6338 rex.reg_startpos[i] = bp->save_start[i].se_u.pos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6339 rex.reg_endpos[i] = bp->save_end[i].se_u.pos; |
1602 | 6340 } |
6341 else | |
6342 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6343 rex.reg_startp[i] = bp->save_start[i].se_u.ptr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6344 rex.reg_endp[i] = bp->save_end[i].se_u.ptr; |
1602 | 6345 } |
1579 | 6346 } |
6347 } | |
6348 } | |
6349 | |
6350 /* | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6351 * Advance rex.lnum, rex.line and rex.input to the next line. |
7 | 6352 */ |
6353 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6354 reg_nextline(void) |
7 | 6355 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6356 rex.line = reg_getline(++rex.lnum); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6357 rex.input = rex.line; |
7 | 6358 fast_breakcheck(); |
6359 } | |
6360 | |
6361 /* | |
6362 * Save the input line and position in a regsave_T. | |
6363 */ | |
6364 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6365 reg_save(regsave_T *save, garray_T *gap) |
7 | 6366 { |
6367 if (REG_MULTI) | |
6368 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6369 save->rs_u.pos.col = (colnr_T)(rex.input - rex.line); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6370 save->rs_u.pos.lnum = rex.lnum; |
7 | 6371 } |
6372 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6373 save->rs_u.ptr = rex.input; |
233 | 6374 save->rs_len = gap->ga_len; |
7 | 6375 } |
6376 | |
6377 /* | |
6378 * Restore the input line and position from a regsave_T. | |
6379 */ | |
6380 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6381 reg_restore(regsave_T *save, garray_T *gap) |
7 | 6382 { |
6383 if (REG_MULTI) | |
6384 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6385 if (rex.lnum != save->rs_u.pos.lnum) |
7 | 6386 { |
6387 /* only call reg_getline() when the line number changed to save | |
6388 * a bit of time */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6389 rex.lnum = save->rs_u.pos.lnum; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6390 rex.line = reg_getline(rex.lnum); |
7 | 6391 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6392 rex.input = rex.line + save->rs_u.pos.col; |
7 | 6393 } |
6394 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6395 rex.input = save->rs_u.ptr; |
233 | 6396 gap->ga_len = save->rs_len; |
7 | 6397 } |
6398 | |
6399 /* | |
6400 * Return TRUE if current position is equal to saved position. | |
6401 */ | |
6402 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6403 reg_save_equal(regsave_T *save) |
7 | 6404 { |
6405 if (REG_MULTI) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6406 return rex.lnum == save->rs_u.pos.lnum |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6407 && rex.input == rex.line + save->rs_u.pos.col; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6408 return rex.input == save->rs_u.ptr; |
7 | 6409 } |
6410 | |
6411 /* | |
6412 * Tentatively set the sub-expression start to the current position (after | |
6413 * calling regmatch() they will have changed). Need to save the existing | |
6414 * values for when there is no match. | |
6415 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()), | |
6416 * depending on REG_MULTI. | |
6417 */ | |
6418 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6419 save_se_multi(save_se_T *savep, lpos_T *posp) |
7 | 6420 { |
6421 savep->se_u.pos = *posp; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6422 posp->lnum = rex.lnum; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6423 posp->col = (colnr_T)(rex.input - rex.line); |
7 | 6424 } |
6425 | |
6426 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6427 save_se_one(save_se_T *savep, char_u **pp) |
7 | 6428 { |
6429 savep->se_u.ptr = *pp; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6430 *pp = rex.input; |
7 | 6431 } |
6432 | |
6433 /* | |
6434 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL. | |
6435 */ | |
6436 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6437 re_num_cmp(long_u val, char_u *scan) |
7 | 6438 { |
6439 long_u n = OPERAND_MIN(scan); | |
6440 | |
6441 if (OPERAND_CMP(scan) == '>') | |
6442 return val > n; | |
6443 if (OPERAND_CMP(scan) == '<') | |
6444 return val < n; | |
6445 return val == n; | |
6446 } | |
6447 | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6448 /* |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6449 * Check whether a backreference matches. |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6450 * Returns RA_FAIL, RA_NOMATCH or RA_MATCH. |
5504 | 6451 * If "bytelen" is not NULL, it is set to the byte length of the match in the |
6452 * last line. | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6453 */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6454 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6455 match_with_backref( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6456 linenr_T start_lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6457 colnr_T start_col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6458 linenr_T end_lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6459 colnr_T end_col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6460 int *bytelen) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6461 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6462 linenr_T clnum = start_lnum; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6463 colnr_T ccol = start_col; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6464 int len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6465 char_u *p; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6466 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6467 if (bytelen != NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6468 *bytelen = 0; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6469 for (;;) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6470 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6471 /* Since getting one line may invalidate the other, need to make copy. |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6472 * Slow! */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6473 if (rex.line != reg_tofree) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6474 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6475 len = (int)STRLEN(rex.line); |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6476 if (reg_tofree == NULL || len >= (int)reg_tofreelen) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6477 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6478 len += 50; /* get some extra */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6479 vim_free(reg_tofree); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6480 reg_tofree = alloc(len); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6481 if (reg_tofree == NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6482 return RA_FAIL; /* out of memory!*/ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6483 reg_tofreelen = len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6484 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6485 STRCPY(reg_tofree, rex.line); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6486 rex.input = reg_tofree + (rex.input - rex.line); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6487 rex.line = reg_tofree; |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6488 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6489 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6490 /* Get the line to compare with. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6491 p = reg_getline(clnum); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6492 if (clnum == end_lnum) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6493 len = end_col - ccol; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6494 else |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6495 len = (int)STRLEN(p + ccol); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6496 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6497 if (cstrncmp(p + ccol, rex.input, &len) != 0) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6498 return RA_NOMATCH; /* doesn't match */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6499 if (bytelen != NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6500 *bytelen += len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6501 if (clnum == end_lnum) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6502 break; /* match and at end! */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6503 if (rex.lnum >= rex.reg_maxline) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6504 return RA_NOMATCH; /* text too short */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6505 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6506 /* Advance to next line. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6507 reg_nextline(); |
5504 | 6508 if (bytelen != NULL) |
6509 *bytelen = 0; | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6510 ++clnum; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6511 ccol = 0; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6512 if (got_int) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6513 return RA_FAIL; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6514 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6515 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6516 /* found a match! Note that rex.line may now point to a copy of the line, |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6517 * that should not matter. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6518 return RA_MATCH; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6519 } |
7 | 6520 |
4444 | 6521 #ifdef BT_REGEXP_DUMP |
7 | 6522 |
6523 /* | |
6524 * regdump - dump a regexp onto stdout in vaguely comprehensible form | |
6525 */ | |
6526 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6527 regdump(char_u *pattern, bt_regprog_T *r) |
7 | 6528 { |
6529 char_u *s; | |
6530 int op = EXACTLY; /* Arbitrary non-END op. */ | |
6531 char_u *next; | |
6532 char_u *end = NULL; | |
4444 | 6533 FILE *f; |
6534 | |
6535 #ifdef BT_REGEXP_LOG | |
6536 f = fopen("bt_regexp_log.log", "a"); | |
6537 #else | |
6538 f = stdout; | |
6539 #endif | |
6540 if (f == NULL) | |
6541 return; | |
6542 fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern); | |
7 | 6543 |
6544 s = r->program + 1; | |
6545 /* | |
6546 * Loop until we find the END that isn't before a referred next (an END | |
6547 * can also appear in a NOMATCH operand). | |
6548 */ | |
6549 while (op != END || s <= end) | |
6550 { | |
6551 op = OP(s); | |
4444 | 6552 fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */ |
7 | 6553 next = regnext(s); |
6554 if (next == NULL) /* Next ptr. */ | |
4444 | 6555 fprintf(f, "(0)"); |
7 | 6556 else |
4444 | 6557 fprintf(f, "(%d)", (int)((s - r->program) + (next - s))); |
7 | 6558 if (end < next) |
6559 end = next; | |
6560 if (op == BRACE_LIMITS) | |
6561 { | |
4746
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6562 /* Two ints */ |
4444 | 6563 fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s)); |
7 | 6564 s += 8; |
6565 } | |
4746
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6566 else if (op == BEHIND || op == NOBEHIND) |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6567 { |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6568 /* one int */ |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6569 fprintf(f, " count %ld", OPERAND_MIN(s)); |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6570 s += 4; |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6571 } |
4770
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6572 else if (op == RE_LNUM || op == RE_COL || op == RE_VCOL) |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6573 { |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6574 /* one int plus comperator */ |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6575 fprintf(f, " count %ld", OPERAND_MIN(s)); |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6576 s += 5; |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6577 } |
7 | 6578 s += 3; |
6579 if (op == ANYOF || op == ANYOF + ADD_NL | |
6580 || op == ANYBUT || op == ANYBUT + ADD_NL | |
6581 || op == EXACTLY) | |
6582 { | |
6583 /* Literal string, where present. */ | |
4444 | 6584 fprintf(f, "\nxxxxxxxxx\n"); |
7 | 6585 while (*s != NUL) |
4444 | 6586 fprintf(f, "%c", *s++); |
6587 fprintf(f, "\nxxxxxxxxx\n"); | |
7 | 6588 s++; |
6589 } | |
4444 | 6590 fprintf(f, "\r\n"); |
7 | 6591 } |
6592 | |
6593 /* Header fields of interest. */ | |
6594 if (r->regstart != NUL) | |
4444 | 6595 fprintf(f, "start `%s' 0x%x; ", r->regstart < 256 |
7 | 6596 ? (char *)transchar(r->regstart) |
6597 : "multibyte", r->regstart); | |
6598 if (r->reganch) | |
4444 | 6599 fprintf(f, "anchored; "); |
7 | 6600 if (r->regmust != NULL) |
4444 | 6601 fprintf(f, "must have \"%s\"", r->regmust); |
6602 fprintf(f, "\r\n"); | |
6603 | |
6604 #ifdef BT_REGEXP_LOG | |
6605 fclose(f); | |
6606 #endif | |
7 | 6607 } |
4444 | 6608 #endif /* BT_REGEXP_DUMP */ |
6609 | |
6610 #ifdef DEBUG | |
7 | 6611 /* |
6612 * regprop - printable representation of opcode | |
6613 */ | |
6614 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6615 regprop(char_u *op) |
7 | 6616 { |
4444 | 6617 char *p; |
6618 static char buf[50]; | |
6619 | |
6620 STRCPY(buf, ":"); | |
6621 | |
6622 switch ((int) OP(op)) | |
7 | 6623 { |
6624 case BOL: | |
6625 p = "BOL"; | |
6626 break; | |
6627 case EOL: | |
6628 p = "EOL"; | |
6629 break; | |
6630 case RE_BOF: | |
6631 p = "BOF"; | |
6632 break; | |
6633 case RE_EOF: | |
6634 p = "EOF"; | |
6635 break; | |
6636 case CURSOR: | |
6637 p = "CURSOR"; | |
6638 break; | |
639 | 6639 case RE_VISUAL: |
6640 p = "RE_VISUAL"; | |
6641 break; | |
7 | 6642 case RE_LNUM: |
6643 p = "RE_LNUM"; | |
6644 break; | |
639 | 6645 case RE_MARK: |
6646 p = "RE_MARK"; | |
6647 break; | |
7 | 6648 case RE_COL: |
6649 p = "RE_COL"; | |
6650 break; | |
6651 case RE_VCOL: | |
6652 p = "RE_VCOL"; | |
6653 break; | |
6654 case BOW: | |
6655 p = "BOW"; | |
6656 break; | |
6657 case EOW: | |
6658 p = "EOW"; | |
6659 break; | |
6660 case ANY: | |
6661 p = "ANY"; | |
6662 break; | |
6663 case ANY + ADD_NL: | |
6664 p = "ANY+NL"; | |
6665 break; | |
6666 case ANYOF: | |
6667 p = "ANYOF"; | |
6668 break; | |
6669 case ANYOF + ADD_NL: | |
6670 p = "ANYOF+NL"; | |
6671 break; | |
6672 case ANYBUT: | |
6673 p = "ANYBUT"; | |
6674 break; | |
6675 case ANYBUT + ADD_NL: | |
6676 p = "ANYBUT+NL"; | |
6677 break; | |
6678 case IDENT: | |
6679 p = "IDENT"; | |
6680 break; | |
6681 case IDENT + ADD_NL: | |
6682 p = "IDENT+NL"; | |
6683 break; | |
6684 case SIDENT: | |
6685 p = "SIDENT"; | |
6686 break; | |
6687 case SIDENT + ADD_NL: | |
6688 p = "SIDENT+NL"; | |
6689 break; | |
6690 case KWORD: | |
6691 p = "KWORD"; | |
6692 break; | |
6693 case KWORD + ADD_NL: | |
6694 p = "KWORD+NL"; | |
6695 break; | |
6696 case SKWORD: | |
6697 p = "SKWORD"; | |
6698 break; | |
6699 case SKWORD + ADD_NL: | |
6700 p = "SKWORD+NL"; | |
6701 break; | |
6702 case FNAME: | |
6703 p = "FNAME"; | |
6704 break; | |
6705 case FNAME + ADD_NL: | |
6706 p = "FNAME+NL"; | |
6707 break; | |
6708 case SFNAME: | |
6709 p = "SFNAME"; | |
6710 break; | |
6711 case SFNAME + ADD_NL: | |
6712 p = "SFNAME+NL"; | |
6713 break; | |
6714 case PRINT: | |
6715 p = "PRINT"; | |
6716 break; | |
6717 case PRINT + ADD_NL: | |
6718 p = "PRINT+NL"; | |
6719 break; | |
6720 case SPRINT: | |
6721 p = "SPRINT"; | |
6722 break; | |
6723 case SPRINT + ADD_NL: | |
6724 p = "SPRINT+NL"; | |
6725 break; | |
6726 case WHITE: | |
6727 p = "WHITE"; | |
6728 break; | |
6729 case WHITE + ADD_NL: | |
6730 p = "WHITE+NL"; | |
6731 break; | |
6732 case NWHITE: | |
6733 p = "NWHITE"; | |
6734 break; | |
6735 case NWHITE + ADD_NL: | |
6736 p = "NWHITE+NL"; | |
6737 break; | |
6738 case DIGIT: | |
6739 p = "DIGIT"; | |
6740 break; | |
6741 case DIGIT + ADD_NL: | |
6742 p = "DIGIT+NL"; | |
6743 break; | |
6744 case NDIGIT: | |
6745 p = "NDIGIT"; | |
6746 break; | |
6747 case NDIGIT + ADD_NL: | |
6748 p = "NDIGIT+NL"; | |
6749 break; | |
6750 case HEX: | |
6751 p = "HEX"; | |
6752 break; | |
6753 case HEX + ADD_NL: | |
6754 p = "HEX+NL"; | |
6755 break; | |
6756 case NHEX: | |
6757 p = "NHEX"; | |
6758 break; | |
6759 case NHEX + ADD_NL: | |
6760 p = "NHEX+NL"; | |
6761 break; | |
6762 case OCTAL: | |
6763 p = "OCTAL"; | |
6764 break; | |
6765 case OCTAL + ADD_NL: | |
6766 p = "OCTAL+NL"; | |
6767 break; | |
6768 case NOCTAL: | |
6769 p = "NOCTAL"; | |
6770 break; | |
6771 case NOCTAL + ADD_NL: | |
6772 p = "NOCTAL+NL"; | |
6773 break; | |
6774 case WORD: | |
6775 p = "WORD"; | |
6776 break; | |
6777 case WORD + ADD_NL: | |
6778 p = "WORD+NL"; | |
6779 break; | |
6780 case NWORD: | |
6781 p = "NWORD"; | |
6782 break; | |
6783 case NWORD + ADD_NL: | |
6784 p = "NWORD+NL"; | |
6785 break; | |
6786 case HEAD: | |
6787 p = "HEAD"; | |
6788 break; | |
6789 case HEAD + ADD_NL: | |
6790 p = "HEAD+NL"; | |
6791 break; | |
6792 case NHEAD: | |
6793 p = "NHEAD"; | |
6794 break; | |
6795 case NHEAD + ADD_NL: | |
6796 p = "NHEAD+NL"; | |
6797 break; | |
6798 case ALPHA: | |
6799 p = "ALPHA"; | |
6800 break; | |
6801 case ALPHA + ADD_NL: | |
6802 p = "ALPHA+NL"; | |
6803 break; | |
6804 case NALPHA: | |
6805 p = "NALPHA"; | |
6806 break; | |
6807 case NALPHA + ADD_NL: | |
6808 p = "NALPHA+NL"; | |
6809 break; | |
6810 case LOWER: | |
6811 p = "LOWER"; | |
6812 break; | |
6813 case LOWER + ADD_NL: | |
6814 p = "LOWER+NL"; | |
6815 break; | |
6816 case NLOWER: | |
6817 p = "NLOWER"; | |
6818 break; | |
6819 case NLOWER + ADD_NL: | |
6820 p = "NLOWER+NL"; | |
6821 break; | |
6822 case UPPER: | |
6823 p = "UPPER"; | |
6824 break; | |
6825 case UPPER + ADD_NL: | |
6826 p = "UPPER+NL"; | |
6827 break; | |
6828 case NUPPER: | |
6829 p = "NUPPER"; | |
6830 break; | |
6831 case NUPPER + ADD_NL: | |
6832 p = "NUPPER+NL"; | |
6833 break; | |
6834 case BRANCH: | |
6835 p = "BRANCH"; | |
6836 break; | |
6837 case EXACTLY: | |
6838 p = "EXACTLY"; | |
6839 break; | |
6840 case NOTHING: | |
6841 p = "NOTHING"; | |
6842 break; | |
6843 case BACK: | |
6844 p = "BACK"; | |
6845 break; | |
6846 case END: | |
6847 p = "END"; | |
6848 break; | |
6849 case MOPEN + 0: | |
6850 p = "MATCH START"; | |
6851 break; | |
6852 case MOPEN + 1: | |
6853 case MOPEN + 2: | |
6854 case MOPEN + 3: | |
6855 case MOPEN + 4: | |
6856 case MOPEN + 5: | |
6857 case MOPEN + 6: | |
6858 case MOPEN + 7: | |
6859 case MOPEN + 8: | |
6860 case MOPEN + 9: | |
6861 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN); | |
6862 p = NULL; | |
6863 break; | |
6864 case MCLOSE + 0: | |
6865 p = "MATCH END"; | |
6866 break; | |
6867 case MCLOSE + 1: | |
6868 case MCLOSE + 2: | |
6869 case MCLOSE + 3: | |
6870 case MCLOSE + 4: | |
6871 case MCLOSE + 5: | |
6872 case MCLOSE + 6: | |
6873 case MCLOSE + 7: | |
6874 case MCLOSE + 8: | |
6875 case MCLOSE + 9: | |
6876 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE); | |
6877 p = NULL; | |
6878 break; | |
6879 case BACKREF + 1: | |
6880 case BACKREF + 2: | |
6881 case BACKREF + 3: | |
6882 case BACKREF + 4: | |
6883 case BACKREF + 5: | |
6884 case BACKREF + 6: | |
6885 case BACKREF + 7: | |
6886 case BACKREF + 8: | |
6887 case BACKREF + 9: | |
6888 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF); | |
6889 p = NULL; | |
6890 break; | |
6891 case NOPEN: | |
6892 p = "NOPEN"; | |
6893 break; | |
6894 case NCLOSE: | |
6895 p = "NCLOSE"; | |
6896 break; | |
6897 #ifdef FEAT_SYN_HL | |
6898 case ZOPEN + 1: | |
6899 case ZOPEN + 2: | |
6900 case ZOPEN + 3: | |
6901 case ZOPEN + 4: | |
6902 case ZOPEN + 5: | |
6903 case ZOPEN + 6: | |
6904 case ZOPEN + 7: | |
6905 case ZOPEN + 8: | |
6906 case ZOPEN + 9: | |
6907 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN); | |
6908 p = NULL; | |
6909 break; | |
6910 case ZCLOSE + 1: | |
6911 case ZCLOSE + 2: | |
6912 case ZCLOSE + 3: | |
6913 case ZCLOSE + 4: | |
6914 case ZCLOSE + 5: | |
6915 case ZCLOSE + 6: | |
6916 case ZCLOSE + 7: | |
6917 case ZCLOSE + 8: | |
6918 case ZCLOSE + 9: | |
6919 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE); | |
6920 p = NULL; | |
6921 break; | |
6922 case ZREF + 1: | |
6923 case ZREF + 2: | |
6924 case ZREF + 3: | |
6925 case ZREF + 4: | |
6926 case ZREF + 5: | |
6927 case ZREF + 6: | |
6928 case ZREF + 7: | |
6929 case ZREF + 8: | |
6930 case ZREF + 9: | |
6931 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF); | |
6932 p = NULL; | |
6933 break; | |
6934 #endif | |
6935 case STAR: | |
6936 p = "STAR"; | |
6937 break; | |
6938 case PLUS: | |
6939 p = "PLUS"; | |
6940 break; | |
6941 case NOMATCH: | |
6942 p = "NOMATCH"; | |
6943 break; | |
6944 case MATCH: | |
6945 p = "MATCH"; | |
6946 break; | |
6947 case BEHIND: | |
6948 p = "BEHIND"; | |
6949 break; | |
6950 case NOBEHIND: | |
6951 p = "NOBEHIND"; | |
6952 break; | |
6953 case SUBPAT: | |
6954 p = "SUBPAT"; | |
6955 break; | |
6956 case BRACE_LIMITS: | |
6957 p = "BRACE_LIMITS"; | |
6958 break; | |
6959 case BRACE_SIMPLE: | |
6960 p = "BRACE_SIMPLE"; | |
6961 break; | |
6962 case BRACE_COMPLEX + 0: | |
6963 case BRACE_COMPLEX + 1: | |
6964 case BRACE_COMPLEX + 2: | |
6965 case BRACE_COMPLEX + 3: | |
6966 case BRACE_COMPLEX + 4: | |
6967 case BRACE_COMPLEX + 5: | |
6968 case BRACE_COMPLEX + 6: | |
6969 case BRACE_COMPLEX + 7: | |
6970 case BRACE_COMPLEX + 8: | |
6971 case BRACE_COMPLEX + 9: | |
6972 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX); | |
6973 p = NULL; | |
6974 break; | |
6975 #ifdef FEAT_MBYTE | |
6976 case MULTIBYTECODE: | |
6977 p = "MULTIBYTECODE"; | |
6978 break; | |
6979 #endif | |
6980 case NEWL: | |
6981 p = "NEWL"; | |
6982 break; | |
6983 default: | |
6984 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op)); | |
6985 p = NULL; | |
6986 break; | |
6987 } | |
6988 if (p != NULL) | |
4444 | 6989 STRCAT(buf, p); |
6990 return (char_u *)buf; | |
7 | 6991 } |
4444 | 6992 #endif /* DEBUG */ |
7 | 6993 |
6203 | 6994 /* |
6995 * Used in a place where no * or \+ can follow. | |
6996 */ | |
6997 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6998 re_mult_next(char *what) |
6203 | 6999 { |
7000 if (re_multi_type(peekchr()) == MULTI_MULT) | |
7001 EMSG2_RET_FAIL(_("E888: (NFA regexp) cannot repeat %s"), what); | |
7002 return OK; | |
7003 } | |
7004 | |
7 | 7005 #ifdef FEAT_MBYTE |
7006 typedef struct | |
7007 { | |
7008 int a, b, c; | |
7009 } decomp_T; | |
7010 | |
7011 | |
7012 /* 0xfb20 - 0xfb4f */ | |
297 | 7013 static decomp_T decomp_table[0xfb4f-0xfb20+1] = |
7 | 7014 { |
7015 {0x5e2,0,0}, /* 0xfb20 alt ayin */ | |
7016 {0x5d0,0,0}, /* 0xfb21 alt alef */ | |
7017 {0x5d3,0,0}, /* 0xfb22 alt dalet */ | |
7018 {0x5d4,0,0}, /* 0xfb23 alt he */ | |
7019 {0x5db,0,0}, /* 0xfb24 alt kaf */ | |
7020 {0x5dc,0,0}, /* 0xfb25 alt lamed */ | |
7021 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */ | |
7022 {0x5e8,0,0}, /* 0xfb27 alt resh */ | |
7023 {0x5ea,0,0}, /* 0xfb28 alt tav */ | |
7024 {'+', 0, 0}, /* 0xfb29 alt plus */ | |
7025 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */ | |
7026 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */ | |
7027 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */ | |
7028 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */ | |
7029 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */ | |
7030 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */ | |
7031 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */ | |
7032 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */ | |
7033 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */ | |
7034 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */ | |
7035 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */ | |
7036 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */ | |
7037 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */ | |
7038 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */ | |
7039 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */ | |
7040 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */ | |
7041 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */ | |
7042 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */ | |
7043 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */ | |
7044 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */ | |
7045 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */ | |
7046 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */ | |
7047 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */ | |
7048 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */ | |
7049 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */ | |
7050 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */ | |
7051 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */ | |
7052 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */ | |
7053 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */ | |
7054 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */ | |
7055 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */ | |
7056 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */ | |
7057 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */ | |
7058 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */ | |
7059 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */ | |
7060 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */ | |
7061 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */ | |
7062 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */ | |
7063 }; | |
7064 | |
7065 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7066 mb_decompose(int c, int *c1, int *c2, int *c3) |
7 | 7067 { |
7068 decomp_T d; | |
7069 | |
4505
d037b9cbdaaa
updated for version 7.3.1000
Bram Moolenaar <bram@vim.org>
parents:
4466
diff
changeset
|
7070 if (c >= 0xfb20 && c <= 0xfb4f) |
7 | 7071 { |
7072 d = decomp_table[c - 0xfb20]; | |
7073 *c1 = d.a; | |
7074 *c2 = d.b; | |
7075 *c3 = d.c; | |
7076 } | |
7077 else | |
7078 { | |
7079 *c1 = c; | |
7080 *c2 = *c3 = 0; | |
7081 } | |
7082 } | |
7083 #endif | |
7084 | |
7085 /* | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7086 * Compare two strings, ignore case if rex.reg_ic set. |
7 | 7087 * Return 0 if strings match, non-zero otherwise. |
7088 * Correct the length "*n" when composing characters are ignored. | |
7089 */ | |
7090 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7091 cstrncmp(char_u *s1, char_u *s2, int *n) |
7 | 7092 { |
7093 int result; | |
7094 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7095 if (!rex.reg_ic) |
7 | 7096 result = STRNCMP(s1, s2, *n); |
7097 else | |
7098 result = MB_STRNICMP(s1, s2, *n); | |
7099 | |
7100 #ifdef FEAT_MBYTE | |
7101 /* if it failed and it's utf8 and we want to combineignore: */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7102 if (result != 0 && enc_utf8 && rex.reg_icombine) |
7 | 7103 { |
7104 char_u *str1, *str2; | |
7105 int c1, c2, c11, c12; | |
7106 int junk; | |
7107 | |
7108 /* we have to handle the strcmp ourselves, since it is necessary to | |
7109 * deal with the composing characters by ignoring them: */ | |
7110 str1 = s1; | |
7111 str2 = s2; | |
7112 c1 = c2 = 0; | |
507 | 7113 while ((int)(str1 - s1) < *n) |
7 | 7114 { |
7115 c1 = mb_ptr2char_adv(&str1); | |
7116 c2 = mb_ptr2char_adv(&str2); | |
7117 | |
7118 /* decompose the character if necessary, into 'base' characters | |
7119 * because I don't care about Arabic, I will hard-code the Hebrew | |
7120 * which I *do* care about! So sue me... */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7121 if (c1 != c2 && (!rex.reg_ic || utf_fold(c1) != utf_fold(c2))) |
7 | 7122 { |
7123 /* decomposition necessary? */ | |
7124 mb_decompose(c1, &c11, &junk, &junk); | |
7125 mb_decompose(c2, &c12, &junk, &junk); | |
7126 c1 = c11; | |
7127 c2 = c12; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7128 if (c11 != c12 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7129 && (!rex.reg_ic || utf_fold(c11) != utf_fold(c12))) |
7 | 7130 break; |
7131 } | |
7132 } | |
7133 result = c2 - c1; | |
7134 if (result == 0) | |
7135 *n = (int)(str2 - s2); | |
7136 } | |
7137 #endif | |
7138 | |
7139 return result; | |
7140 } | |
7141 | |
7142 /* | |
7143 * cstrchr: This function is used a lot for simple searches, keep it fast! | |
7144 */ | |
7145 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7146 cstrchr(char_u *s, int c) |
7 | 7147 { |
7148 char_u *p; | |
7149 int cc; | |
7150 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7151 if (!rex.reg_ic |
7 | 7152 #ifdef FEAT_MBYTE |
7153 || (!enc_utf8 && mb_char2len(c) > 1) | |
7154 #endif | |
7155 ) | |
7156 return vim_strchr(s, c); | |
7157 | |
7158 /* tolower() and toupper() can be slow, comparing twice should be a lot | |
7159 * faster (esp. when using MS Visual C++!). | |
7160 * For UTF-8 need to use folded case. */ | |
7161 #ifdef FEAT_MBYTE | |
7162 if (enc_utf8 && c > 0x80) | |
7163 cc = utf_fold(c); | |
7164 else | |
7165 #endif | |
1347 | 7166 if (MB_ISUPPER(c)) |
7167 cc = MB_TOLOWER(c); | |
7168 else if (MB_ISLOWER(c)) | |
7169 cc = MB_TOUPPER(c); | |
7 | 7170 else |
7171 return vim_strchr(s, c); | |
7172 | |
7173 #ifdef FEAT_MBYTE | |
7174 if (has_mbyte) | |
7175 { | |
474 | 7176 for (p = s; *p != NUL; p += (*mb_ptr2len)(p)) |
7 | 7177 { |
7178 if (enc_utf8 && c > 0x80) | |
7179 { | |
7180 if (utf_fold(utf_ptr2char(p)) == cc) | |
7181 return p; | |
7182 } | |
7183 else if (*p == c || *p == cc) | |
7184 return p; | |
7185 } | |
7186 } | |
7187 else | |
7188 #endif | |
7189 /* Faster version for when there are no multi-byte characters. */ | |
7190 for (p = s; *p != NUL; ++p) | |
7191 if (*p == c || *p == cc) | |
7192 return p; | |
7193 | |
7194 return NULL; | |
7195 } | |
7196 | |
7197 /*************************************************************** | |
7198 * regsub stuff * | |
7199 ***************************************************************/ | |
7200 | |
7201 /* | |
7202 * We should define ftpr as a pointer to a function returning a pointer to | |
7203 * a function returning a pointer to a function ... | |
7204 * This is impossible, so we declare a pointer to a function returning a | |
7205 * pointer to a function returning void. This should work for all compilers. | |
7206 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7207 typedef void (*(*fptr_T)(int *, int))(); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7208 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7209 static int vim_regsub_both(char_u *source, typval_T *expr, char_u *dest, int copy, int magic, int backslash); |
7 | 7210 |
772 | 7211 static fptr_T |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7212 do_upper(int *d, int c) |
7 | 7213 { |
772 | 7214 *d = MB_TOUPPER(c); |
7215 | |
7216 return (fptr_T)NULL; | |
7 | 7217 } |
7218 | |
772 | 7219 static fptr_T |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7220 do_Upper(int *d, int c) |
7 | 7221 { |
772 | 7222 *d = MB_TOUPPER(c); |
7223 | |
7224 return (fptr_T)do_Upper; | |
7225 } | |
7226 | |
7227 static fptr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7228 do_lower(int *d, int c) |
772 | 7229 { |
7230 *d = MB_TOLOWER(c); | |
7231 | |
7232 return (fptr_T)NULL; | |
7233 } | |
7234 | |
7235 static fptr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7236 do_Lower(int *d, int c) |
772 | 7237 { |
7238 *d = MB_TOLOWER(c); | |
7239 | |
7240 return (fptr_T)do_Lower; | |
7 | 7241 } |
7242 | |
7243 /* | |
7244 * regtilde(): Replace tildes in the pattern by the old pattern. | |
7245 * | |
7246 * Short explanation of the tilde: It stands for the previous replacement | |
7247 * pattern. If that previous pattern also contains a ~ we should go back a | |
7248 * step further... But we insert the previous pattern into the current one | |
7249 * and remember that. | |
772 | 7250 * This still does not handle the case where "magic" changes. So require the |
7251 * user to keep his hands off of "magic". | |
7 | 7252 * |
7253 * The tildes are parsed once before the first call to vim_regsub(). | |
7254 */ | |
7255 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7256 regtilde(char_u *source, int magic) |
7 | 7257 { |
7258 char_u *newsub = source; | |
7259 char_u *tmpsub; | |
7260 char_u *p; | |
7261 int len; | |
7262 int prevlen; | |
7263 | |
7264 for (p = newsub; *p; ++p) | |
7265 { | |
7266 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic)) | |
7267 { | |
7268 if (reg_prev_sub != NULL) | |
7269 { | |
7270 /* length = len(newsub) - 1 + len(prev_sub) + 1 */ | |
7271 prevlen = (int)STRLEN(reg_prev_sub); | |
7272 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen)); | |
7273 if (tmpsub != NULL) | |
7274 { | |
7275 /* copy prefix */ | |
7276 len = (int)(p - newsub); /* not including ~ */ | |
7277 mch_memmove(tmpsub, newsub, (size_t)len); | |
1209 | 7278 /* interpret tilde */ |
7 | 7279 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen); |
7280 /* copy postfix */ | |
7281 if (!magic) | |
7282 ++p; /* back off \ */ | |
7283 STRCPY(tmpsub + len + prevlen, p + 1); | |
7284 | |
7285 if (newsub != source) /* already allocated newsub */ | |
7286 vim_free(newsub); | |
7287 newsub = tmpsub; | |
7288 p = newsub + len + prevlen; | |
7289 } | |
7290 } | |
7291 else if (magic) | |
1621 | 7292 STRMOVE(p, p + 1); /* remove '~' */ |
7 | 7293 else |
1621 | 7294 STRMOVE(p, p + 2); /* remove '\~' */ |
7 | 7295 --p; |
7296 } | |
7297 else | |
7298 { | |
7299 if (*p == '\\' && p[1]) /* skip escaped characters */ | |
7300 ++p; | |
7301 #ifdef FEAT_MBYTE | |
7302 if (has_mbyte) | |
474 | 7303 p += (*mb_ptr2len)(p) - 1; |
7 | 7304 #endif |
7305 } | |
7306 } | |
7307 | |
7308 vim_free(reg_prev_sub); | |
7309 if (newsub != source) /* newsub was allocated, just keep it */ | |
7310 reg_prev_sub = newsub; | |
7311 else /* no ~ found, need to save newsub */ | |
7312 reg_prev_sub = vim_strsave(newsub); | |
7313 return newsub; | |
7314 } | |
7315 | |
7316 #ifdef FEAT_EVAL | |
7317 static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */ | |
7318 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7319 /* These pointers are used for reg_submatch(). Needed for when the |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7320 * substitution string is an expression that contains a call to substitute() |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7321 * and submatch(). */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7322 typedef struct { |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7323 regmatch_T *sm_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7324 regmmatch_T *sm_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7325 linenr_T sm_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7326 linenr_T sm_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7327 int sm_line_lbr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7328 } regsubmatch_T; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7329 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7330 static regsubmatch_T rsm; /* can only be used when can_f_submatch is TRUE */ |
7 | 7331 #endif |
7332 | |
7333 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO) | |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7334 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7335 /* |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7336 * Put the submatches in "argv[0]" which is a list passed into call_func() by |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7337 * vim_regsub_both(). |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7338 */ |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7339 static int |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7340 fill_submatch_list(int argc UNUSED, typval_T *argv, int argcount) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7341 { |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7342 listitem_T *li; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7343 int i; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7344 char_u *s; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7345 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7346 if (argcount == 0) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7347 /* called function doesn't take an argument */ |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7348 return 0; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7349 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7350 /* Relies on sl_list to be the first item in staticList10_T. */ |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7351 init_static_list((staticList10_T *)(argv->vval.v_list)); |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7352 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7353 /* There are always 10 list items in staticList10_T. */ |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7354 li = argv->vval.v_list->lv_first; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7355 for (i = 0; i < 10; ++i) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7356 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7357 s = rsm.sm_match->startp[i]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7358 if (s == NULL || rsm.sm_match->endp[i] == NULL) |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7359 s = NULL; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7360 else |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7361 s = vim_strnsave(s, (int)(rsm.sm_match->endp[i] - s)); |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7362 li->li_tv.v_type = VAR_STRING; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7363 li->li_tv.vval.v_string = s; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7364 li = li->li_next; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7365 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7366 return 1; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7367 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7368 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7369 static void |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7370 clear_submatch_list(staticList10_T *sl) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7371 { |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7372 int i; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7373 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7374 for (i = 0; i < 10; ++i) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7375 vim_free(sl->sl_items[i].li_tv.vval.v_string); |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7376 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7377 |
7 | 7378 /* |
7379 * vim_regsub() - perform substitutions after a vim_regexec() or | |
7380 * vim_regexec_multi() match. | |
7381 * | |
7382 * If "copy" is TRUE really copy into "dest". | |
7383 * If "copy" is FALSE nothing is copied, this is just to find out the length | |
7384 * of the result. | |
7385 * | |
7386 * If "backslash" is TRUE, a backslash will be removed later, need to double | |
7387 * them to keep them, and insert a backslash before a CR to avoid it being | |
7388 * replaced with a line break later. | |
7389 * | |
7390 * Note: The matched text must not change between the call of | |
7391 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back | |
7392 * references invalid! | |
7393 * | |
7394 * Returns the size of the replacement, including terminating NUL. | |
7395 */ | |
7396 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7397 vim_regsub( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7398 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7399 char_u *source, |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7400 typval_T *expr, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7401 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7402 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7403 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7404 int backslash) |
7 | 7405 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7406 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7407 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7408 int rex_in_use_save = rex_in_use; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7409 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7410 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7411 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7412 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7413 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7414 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7415 rex.reg_match = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7416 rex.reg_mmatch = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7417 rex.reg_maxline = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7418 rex.reg_buf = curbuf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7419 rex.reg_line_lbr = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7420 result = vim_regsub_both(source, expr, dest, copy, magic, backslash); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7421 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7422 rex_in_use = rex_in_use_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7423 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7424 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7425 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7426 return result; |
7 | 7427 } |
7428 #endif | |
7429 | |
7430 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7431 vim_regsub_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7432 regmmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7433 linenr_T lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7434 char_u *source, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7435 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7436 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7437 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7438 int backslash) |
7 | 7439 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7440 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7441 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7442 int rex_in_use_save = rex_in_use; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7443 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7444 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7445 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7446 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7447 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7448 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7449 rex.reg_match = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7450 rex.reg_mmatch = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7451 rex.reg_buf = curbuf; /* always works on the current buffer! */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7452 rex.reg_firstlnum = lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7453 rex.reg_maxline = curbuf->b_ml.ml_line_count - lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7454 rex.reg_line_lbr = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7455 result = vim_regsub_both(source, NULL, dest, copy, magic, backslash); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7456 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7457 rex_in_use = rex_in_use_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7458 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7459 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7460 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7461 return result; |
7 | 7462 } |
7463 | |
7464 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7465 vim_regsub_both( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7466 char_u *source, |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7467 typval_T *expr, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7468 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7469 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7470 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7471 int backslash) |
7 | 7472 { |
7473 char_u *src; | |
7474 char_u *dst; | |
7475 char_u *s; | |
7476 int c; | |
772 | 7477 int cc; |
7 | 7478 int no = -1; |
4244 | 7479 fptr_T func_all = (fptr_T)NULL; |
7480 fptr_T func_one = (fptr_T)NULL; | |
7 | 7481 linenr_T clnum = 0; /* init for GCC */ |
7482 int len = 0; /* init for GCC */ | |
7483 #ifdef FEAT_EVAL | |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7484 static char_u *eval_result = NULL; |
7 | 7485 #endif |
7486 | |
7487 /* Be paranoid... */ | |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7488 if ((source == NULL && expr == NULL) || dest == NULL) |
7 | 7489 { |
7490 EMSG(_(e_null)); | |
7491 return 0; | |
7492 } | |
7493 if (prog_magic_wrong()) | |
7494 return 0; | |
7495 src = source; | |
7496 dst = dest; | |
7497 | |
7498 /* | |
7499 * When the substitute part starts with "\=" evaluate it as an expression. | |
7500 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7501 if (expr != NULL || (source[0] == '\\' && source[1] == '=')) |
7 | 7502 { |
7503 #ifdef FEAT_EVAL | |
7504 /* To make sure that the length doesn't change between checking the | |
7505 * length and copying the string, and to speed up things, the | |
7506 * resulting string is saved from the call with "copy" == FALSE to the | |
7507 * call with "copy" == TRUE. */ | |
7508 if (copy) | |
7509 { | |
7510 if (eval_result != NULL) | |
7511 { | |
7512 STRCPY(dest, eval_result); | |
7513 dst += STRLEN(eval_result); | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
7514 VIM_CLEAR(eval_result); |
7 | 7515 } |
7516 } | |
7517 else | |
7518 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7519 int prev_can_f_submatch = can_f_submatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7520 regsubmatch_T rsm_save; |
7 | 7521 |
7522 vim_free(eval_result); | |
7523 | |
7524 /* The expression may contain substitute(), which calls us | |
7525 * recursively. Make sure submatch() gets the text from the first | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7526 * level. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7527 if (can_f_submatch) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7528 rsm_save = rsm; |
7 | 7529 can_f_submatch = TRUE; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7530 rsm.sm_match = rex.reg_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7531 rsm.sm_mmatch = rex.reg_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7532 rsm.sm_firstlnum = rex.reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7533 rsm.sm_maxline = rex.reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7534 rsm.sm_line_lbr = rex.reg_line_lbr; |
7 | 7535 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7536 if (expr != NULL) |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7537 { |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7538 typval_T argv[2]; |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7539 int dummy; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7540 char_u buf[NUMBUFLEN]; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7541 typval_T rettv; |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7542 staticList10_T matchList; |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7543 |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7544 rettv.v_type = VAR_STRING; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7545 rettv.vval.v_string = NULL; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7546 argv[0].v_type = VAR_LIST; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7547 argv[0].vval.v_list = &matchList.sl_list; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7548 matchList.sl_list.lv_len = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7549 if (expr->v_type == VAR_FUNC) |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7550 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7551 s = expr->vval.v_string; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7552 call_func(s, (int)STRLEN(s), &rettv, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7553 1, argv, fill_submatch_list, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7554 0L, 0L, &dummy, TRUE, NULL, NULL); |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7555 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7556 else if (expr->v_type == VAR_PARTIAL) |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7557 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7558 partial_T *partial = expr->vval.v_partial; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7559 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7560 s = partial_name(partial); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7561 call_func(s, (int)STRLEN(s), &rettv, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7562 1, argv, fill_submatch_list, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7563 0L, 0L, &dummy, TRUE, partial, NULL); |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7564 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7565 if (matchList.sl_list.lv_len > 0) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7566 /* fill_submatch_list() was called */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7567 clear_submatch_list(&matchList); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7568 |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
7569 eval_result = tv_get_string_buf_chk(&rettv, buf); |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7570 if (eval_result != NULL) |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7571 eval_result = vim_strsave(eval_result); |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7572 clear_tv(&rettv); |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7573 } |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7574 else |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7575 eval_result = eval_to_string(source + 2, NULL, TRUE); |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7576 |
7 | 7577 if (eval_result != NULL) |
7578 { | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7579 int had_backslash = FALSE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7580 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
7581 for (s = eval_result; *s != NUL; MB_PTR_ADV(s)) |
7 | 7582 { |
2904 | 7583 /* Change NL to CR, so that it becomes a line break, |
7584 * unless called from vim_regexec_nl(). | |
7 | 7585 * Skip over a backslashed character. */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7586 if (*s == NL && !rsm.sm_line_lbr) |
7 | 7587 *s = CAR; |
7588 else if (*s == '\\' && s[1] != NUL) | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7589 { |
7 | 7590 ++s; |
2173 | 7591 /* Change NL to CR here too, so that this works: |
7592 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text: | |
7593 * abc\ | |
7594 * def | |
2904 | 7595 * Not when called from vim_regexec_nl(). |
2173 | 7596 */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7597 if (*s == NL && !rsm.sm_line_lbr) |
2173 | 7598 *s = CAR; |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7599 had_backslash = TRUE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7600 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7601 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7602 if (had_backslash && backslash) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7603 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7604 /* Backslashes will be consumed, need to double them. */ |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7605 s = vim_strsave_escaped(eval_result, (char_u *)"\\"); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7606 if (s != NULL) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7607 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7608 vim_free(eval_result); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7609 eval_result = s; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7610 } |
7 | 7611 } |
7612 | |
7613 dst += STRLEN(eval_result); | |
7614 } | |
7615 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7616 can_f_submatch = prev_can_f_submatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7617 if (can_f_submatch) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7618 rsm = rsm_save; |
7 | 7619 } |
7620 #endif | |
7621 } | |
7622 else | |
7623 while ((c = *src++) != NUL) | |
7624 { | |
7625 if (c == '&' && magic) | |
7626 no = 0; | |
7627 else if (c == '\\' && *src != NUL) | |
7628 { | |
7629 if (*src == '&' && !magic) | |
7630 { | |
7631 ++src; | |
7632 no = 0; | |
7633 } | |
7634 else if ('0' <= *src && *src <= '9') | |
7635 { | |
7636 no = *src++ - '0'; | |
7637 } | |
7638 else if (vim_strchr((char_u *)"uUlLeE", *src)) | |
7639 { | |
7640 switch (*src++) | |
7641 { | |
4244 | 7642 case 'u': func_one = (fptr_T)do_upper; |
7 | 7643 continue; |
4244 | 7644 case 'U': func_all = (fptr_T)do_Upper; |
7 | 7645 continue; |
4244 | 7646 case 'l': func_one = (fptr_T)do_lower; |
7 | 7647 continue; |
4244 | 7648 case 'L': func_all = (fptr_T)do_Lower; |
7 | 7649 continue; |
7650 case 'e': | |
4244 | 7651 case 'E': func_one = func_all = (fptr_T)NULL; |
7 | 7652 continue; |
7653 } | |
7654 } | |
7655 } | |
7656 if (no < 0) /* Ordinary character. */ | |
7657 { | |
798 | 7658 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL) |
7659 { | |
1209 | 7660 /* Copy a special key as-is. */ |
798 | 7661 if (copy) |
7662 { | |
7663 *dst++ = c; | |
7664 *dst++ = *src++; | |
7665 *dst++ = *src++; | |
7666 } | |
7667 else | |
7668 { | |
7669 dst += 3; | |
7670 src += 2; | |
7671 } | |
7672 continue; | |
7673 } | |
7674 | |
7 | 7675 if (c == '\\' && *src != NUL) |
7676 { | |
7677 /* Check for abbreviations -- webb */ | |
7678 switch (*src) | |
7679 { | |
7680 case 'r': c = CAR; ++src; break; | |
7681 case 'n': c = NL; ++src; break; | |
7682 case 't': c = TAB; ++src; break; | |
7683 /* Oh no! \e already has meaning in subst pat :-( */ | |
7684 /* case 'e': c = ESC; ++src; break; */ | |
7685 case 'b': c = Ctrl_H; ++src; break; | |
7686 | |
7687 /* If "backslash" is TRUE the backslash will be removed | |
7688 * later. Used to insert a literal CR. */ | |
7689 default: if (backslash) | |
7690 { | |
7691 if (copy) | |
7692 *dst = '\\'; | |
7693 ++dst; | |
7694 } | |
7695 c = *src++; | |
7696 } | |
7697 } | |
798 | 7698 #ifdef FEAT_MBYTE |
7699 else if (has_mbyte) | |
7700 c = mb_ptr2char(src - 1); | |
7701 #endif | |
7 | 7702 |
7703 /* Write to buffer, if copy is set. */ | |
4244 | 7704 if (func_one != (fptr_T)NULL) |
7705 /* Turbo C complains without the typecast */ | |
7706 func_one = (fptr_T)(func_one(&cc, c)); | |
7707 else if (func_all != (fptr_T)NULL) | |
7708 /* Turbo C complains without the typecast */ | |
7709 func_all = (fptr_T)(func_all(&cc, c)); | |
7710 else /* just copy */ | |
772 | 7711 cc = c; |
7712 | |
7713 #ifdef FEAT_MBYTE | |
7714 if (has_mbyte) | |
7 | 7715 { |
2307
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7716 int totlen = mb_ptr2len(src - 1); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7717 |
7 | 7718 if (copy) |
772 | 7719 mb_char2bytes(cc, dst); |
7720 dst += mb_char2len(cc) - 1; | |
2307
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7721 if (enc_utf8) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7722 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7723 int clen = utf_ptr2len(src - 1); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7724 |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7725 /* If the character length is shorter than "totlen", there |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7726 * are composing characters; copy them as-is. */ |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7727 if (clen < totlen) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7728 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7729 if (copy) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7730 mch_memmove(dst + 1, src - 1 + clen, |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7731 (size_t)(totlen - clen)); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7732 dst += totlen - clen; |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7733 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7734 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7735 src += totlen - 1; |
7 | 7736 } |
7737 else | |
7738 #endif | |
7739 if (copy) | |
772 | 7740 *dst = cc; |
7 | 7741 dst++; |
7742 } | |
7743 else | |
7744 { | |
7745 if (REG_MULTI) | |
7746 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7747 clnum = rex.reg_mmatch->startpos[no].lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7748 if (clnum < 0 || rex.reg_mmatch->endpos[no].lnum < 0) |
7 | 7749 s = NULL; |
7750 else | |
7751 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7752 s = reg_getline(clnum) + rex.reg_mmatch->startpos[no].col; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7753 if (rex.reg_mmatch->endpos[no].lnum == clnum) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7754 len = rex.reg_mmatch->endpos[no].col |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7755 - rex.reg_mmatch->startpos[no].col; |
7 | 7756 else |
7757 len = (int)STRLEN(s); | |
7758 } | |
7759 } | |
7760 else | |
7761 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7762 s = rex.reg_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7763 if (rex.reg_match->endp[no] == NULL) |
7 | 7764 s = NULL; |
7765 else | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7766 len = (int)(rex.reg_match->endp[no] - s); |
7 | 7767 } |
7768 if (s != NULL) | |
7769 { | |
7770 for (;;) | |
7771 { | |
7772 if (len == 0) | |
7773 { | |
7774 if (REG_MULTI) | |
7775 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7776 if (rex.reg_mmatch->endpos[no].lnum == clnum) |
7 | 7777 break; |
7778 if (copy) | |
7779 *dst = CAR; | |
7780 ++dst; | |
7781 s = reg_getline(++clnum); | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7782 if (rex.reg_mmatch->endpos[no].lnum == clnum) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7783 len = rex.reg_mmatch->endpos[no].col; |
7 | 7784 else |
7785 len = (int)STRLEN(s); | |
7786 } | |
7787 else | |
7788 break; | |
7789 } | |
7790 else if (*s == NUL) /* we hit NUL. */ | |
7791 { | |
7792 if (copy) | |
7793 EMSG(_(e_re_damg)); | |
7794 goto exit; | |
7795 } | |
7796 else | |
7797 { | |
7798 if (backslash && (*s == CAR || *s == '\\')) | |
7799 { | |
7800 /* | |
7801 * Insert a backslash in front of a CR, otherwise | |
7802 * it will be replaced by a line break. | |
7803 * Number of backslashes will be halved later, | |
7804 * double them here. | |
7805 */ | |
7806 if (copy) | |
7807 { | |
7808 dst[0] = '\\'; | |
7809 dst[1] = *s; | |
7810 } | |
7811 dst += 2; | |
7812 } | |
7813 else | |
7814 { | |
772 | 7815 #ifdef FEAT_MBYTE |
7816 if (has_mbyte) | |
7817 c = mb_ptr2char(s); | |
7818 else | |
7819 #endif | |
7820 c = *s; | |
7821 | |
4244 | 7822 if (func_one != (fptr_T)NULL) |
7823 /* Turbo C complains without the typecast */ | |
7824 func_one = (fptr_T)(func_one(&cc, c)); | |
7825 else if (func_all != (fptr_T)NULL) | |
7826 /* Turbo C complains without the typecast */ | |
7827 func_all = (fptr_T)(func_all(&cc, c)); | |
7828 else /* just copy */ | |
772 | 7829 cc = c; |
7830 | |
7831 #ifdef FEAT_MBYTE | |
7832 if (has_mbyte) | |
7 | 7833 { |
1332 | 7834 int l; |
7835 | |
7836 /* Copy composing characters separately, one | |
7837 * at a time. */ | |
7838 if (enc_utf8) | |
7839 l = utf_ptr2len(s) - 1; | |
7840 else | |
7841 l = mb_ptr2len(s) - 1; | |
772 | 7842 |
7843 s += l; | |
7844 len -= l; | |
7845 if (copy) | |
7846 mb_char2bytes(cc, dst); | |
7847 dst += mb_char2len(cc) - 1; | |
7 | 7848 } |
772 | 7849 else |
7850 #endif | |
7851 if (copy) | |
7852 *dst = cc; | |
7853 dst++; | |
7 | 7854 } |
772 | 7855 |
7 | 7856 ++s; |
7857 --len; | |
7858 } | |
7859 } | |
7860 } | |
7861 no = -1; | |
7862 } | |
7863 } | |
7864 if (copy) | |
7865 *dst = NUL; | |
7866 | |
7867 exit: | |
7868 return (int)((dst - dest) + 1); | |
7869 } | |
7870 | |
7871 #ifdef FEAT_EVAL | |
7872 /* | |
2011 | 7873 * Call reg_getline() with the line numbers from the submatch. If a |
7874 * substitute() was used the reg_maxline and other values have been | |
7875 * overwritten. | |
7876 */ | |
7877 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7878 reg_getline_submatch(linenr_T lnum) |
2011 | 7879 { |
7880 char_u *s; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7881 linenr_T save_first = rex.reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7882 linenr_T save_max = rex.reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7883 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7884 rex.reg_firstlnum = rsm.sm_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7885 rex.reg_maxline = rsm.sm_maxline; |
2011 | 7886 |
7887 s = reg_getline(lnum); | |
7888 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7889 rex.reg_firstlnum = save_first; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7890 rex.reg_maxline = save_max; |
2011 | 7891 return s; |
7892 } | |
7893 | |
7894 /* | |
1209 | 7895 * Used for the submatch() function: get the string from the n'th submatch in |
7 | 7896 * allocated memory. |
7897 * Returns NULL when not in a ":s" command and for a non-existing submatch. | |
7898 */ | |
7899 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7900 reg_submatch(int no) |
7 | 7901 { |
7902 char_u *retval = NULL; | |
7903 char_u *s; | |
7904 int len; | |
7905 int round; | |
7906 linenr_T lnum; | |
7907 | |
840 | 7908 if (!can_f_submatch || no < 0) |
7 | 7909 return NULL; |
7910 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7911 if (rsm.sm_match == NULL) |
7 | 7912 { |
7913 /* | |
7914 * First round: compute the length and allocate memory. | |
7915 * Second round: copy the text. | |
7916 */ | |
7917 for (round = 1; round <= 2; ++round) | |
7918 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7919 lnum = rsm.sm_mmatch->startpos[no].lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7920 if (lnum < 0 || rsm.sm_mmatch->endpos[no].lnum < 0) |
7 | 7921 return NULL; |
7922 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7923 s = reg_getline_submatch(lnum) + rsm.sm_mmatch->startpos[no].col; |
7 | 7924 if (s == NULL) /* anti-crash check, cannot happen? */ |
7925 break; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7926 if (rsm.sm_mmatch->endpos[no].lnum == lnum) |
7 | 7927 { |
7928 /* Within one line: take form start to end col. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7929 len = rsm.sm_mmatch->endpos[no].col |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7930 - rsm.sm_mmatch->startpos[no].col; |
7 | 7931 if (round == 2) |
418 | 7932 vim_strncpy(retval, s, len); |
7 | 7933 ++len; |
7934 } | |
7935 else | |
7936 { | |
7937 /* Multiple lines: take start line from start col, middle | |
7938 * lines completely and end line up to end col. */ | |
7939 len = (int)STRLEN(s); | |
7940 if (round == 2) | |
7941 { | |
7942 STRCPY(retval, s); | |
7943 retval[len] = '\n'; | |
7944 } | |
7945 ++len; | |
7946 ++lnum; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7947 while (lnum < rsm.sm_mmatch->endpos[no].lnum) |
7 | 7948 { |
2011 | 7949 s = reg_getline_submatch(lnum++); |
7 | 7950 if (round == 2) |
7951 STRCPY(retval + len, s); | |
7952 len += (int)STRLEN(s); | |
7953 if (round == 2) | |
7954 retval[len] = '\n'; | |
7955 ++len; | |
7956 } | |
7957 if (round == 2) | |
2011 | 7958 STRNCPY(retval + len, reg_getline_submatch(lnum), |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7959 rsm.sm_mmatch->endpos[no].col); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7960 len += rsm.sm_mmatch->endpos[no].col; |
7 | 7961 if (round == 2) |
7962 retval[len] = NUL; | |
7963 ++len; | |
7964 } | |
7965 | |
840 | 7966 if (retval == NULL) |
7 | 7967 { |
7968 retval = lalloc((long_u)len, TRUE); | |
840 | 7969 if (retval == NULL) |
7 | 7970 return NULL; |
7971 } | |
7972 } | |
7973 } | |
7974 else | |
7975 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7976 s = rsm.sm_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7977 if (s == NULL || rsm.sm_match->endp[no] == NULL) |
7 | 7978 retval = NULL; |
7979 else | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7980 retval = vim_strnsave(s, (int)(rsm.sm_match->endp[no] - s)); |
7 | 7981 } |
7982 | |
7983 return retval; | |
7984 } | |
5794 | 7985 |
7986 /* | |
7987 * Used for the submatch() function with the optional non-zero argument: get | |
7988 * the list of strings from the n'th submatch in allocated memory with NULs | |
7989 * represented in NLs. | |
7990 * Returns a list of allocated strings. Returns NULL when not in a ":s" | |
7991 * command, for a non-existing submatch and for any error. | |
7992 */ | |
7993 list_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7994 reg_submatch_list(int no) |
5794 | 7995 { |
7996 char_u *s; | |
7997 linenr_T slnum; | |
7998 linenr_T elnum; | |
7999 colnr_T scol; | |
8000 colnr_T ecol; | |
8001 int i; | |
8002 list_T *list; | |
8003 int error = FALSE; | |
8004 | |
8005 if (!can_f_submatch || no < 0) | |
8006 return NULL; | |
8007 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8008 if (rsm.sm_match == NULL) |
5794 | 8009 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8010 slnum = rsm.sm_mmatch->startpos[no].lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8011 elnum = rsm.sm_mmatch->endpos[no].lnum; |
5794 | 8012 if (slnum < 0 || elnum < 0) |
8013 return NULL; | |
8014 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8015 scol = rsm.sm_mmatch->startpos[no].col; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8016 ecol = rsm.sm_mmatch->endpos[no].col; |
5794 | 8017 |
8018 list = list_alloc(); | |
8019 if (list == NULL) | |
8020 return NULL; | |
8021 | |
8022 s = reg_getline_submatch(slnum) + scol; | |
8023 if (slnum == elnum) | |
8024 { | |
8025 if (list_append_string(list, s, ecol - scol) == FAIL) | |
8026 error = TRUE; | |
8027 } | |
8028 else | |
8029 { | |
8030 if (list_append_string(list, s, -1) == FAIL) | |
8031 error = TRUE; | |
8032 for (i = 1; i < elnum - slnum; i++) | |
8033 { | |
8034 s = reg_getline_submatch(slnum + i); | |
8035 if (list_append_string(list, s, -1) == FAIL) | |
8036 error = TRUE; | |
8037 } | |
8038 s = reg_getline_submatch(elnum); | |
8039 if (list_append_string(list, s, ecol) == FAIL) | |
8040 error = TRUE; | |
8041 } | |
8042 } | |
8043 else | |
8044 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8045 s = rsm.sm_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8046 if (s == NULL || rsm.sm_match->endp[no] == NULL) |
5794 | 8047 return NULL; |
8048 list = list_alloc(); | |
8049 if (list == NULL) | |
8050 return NULL; | |
8051 if (list_append_string(list, s, | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8052 (int)(rsm.sm_match->endp[no] - s)) == FAIL) |
5794 | 8053 error = TRUE; |
8054 } | |
8055 | |
8056 if (error) | |
8057 { | |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
8058 list_free(list); |
5794 | 8059 return NULL; |
8060 } | |
8061 return list; | |
8062 } | |
7 | 8063 #endif |
4444 | 8064 |
8065 static regengine_T bt_regengine = | |
8066 { | |
8067 bt_regcomp, | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8068 bt_regfree, |
4444 | 8069 bt_regexec_nl, |
6328 | 8070 bt_regexec_multi, |
8071 (char_u *)"" | |
4444 | 8072 }; |
8073 | |
8074 #include "regexp_nfa.c" | |
8075 | |
8076 static regengine_T nfa_regengine = | |
8077 { | |
8078 nfa_regcomp, | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8079 nfa_regfree, |
4444 | 8080 nfa_regexec_nl, |
6328 | 8081 nfa_regexec_multi, |
8082 (char_u *)"" | |
4444 | 8083 }; |
8084 | |
8085 /* Which regexp engine to use? Needed for vim_regcomp(). | |
8086 * Must match with 'regexpengine'. */ | |
8087 static int regexp_engine = 0; | |
6328 | 8088 |
4444 | 8089 #ifdef DEBUG |
8090 static char_u regname[][30] = { | |
8091 "AUTOMATIC Regexp Engine", | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
8092 "BACKTRACKING Regexp Engine", |
4444 | 8093 "NFA Regexp Engine" |
8094 }; | |
8095 #endif | |
8096 | |
8097 /* | |
8098 * Compile a regular expression into internal code. | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8099 * Returns the program in allocated memory. |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8100 * Use vim_regfree() to free the memory. |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8101 * Returns NULL for an error. |
4444 | 8102 */ |
8103 regprog_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8104 vim_regcomp(char_u *expr_arg, int re_flags) |
4444 | 8105 { |
8106 regprog_T *prog = NULL; | |
8107 char_u *expr = expr_arg; | |
8108 | |
8109 regexp_engine = p_re; | |
8110 | |
8111 /* Check for prefix "\%#=", that sets the regexp engine */ | |
8112 if (STRNCMP(expr, "\\%#=", 4) == 0) | |
8113 { | |
8114 int newengine = expr[4] - '0'; | |
8115 | |
8116 if (newengine == AUTOMATIC_ENGINE | |
8117 || newengine == BACKTRACKING_ENGINE | |
8118 || newengine == NFA_ENGINE) | |
8119 { | |
8120 regexp_engine = expr[4] - '0'; | |
8121 expr += 5; | |
8122 #ifdef DEBUG | |
5897 | 8123 smsg((char_u *)"New regexp mode selected (%d): %s", |
8124 regexp_engine, regname[newengine]); | |
4444 | 8125 #endif |
8126 } | |
8127 else | |
8128 { | |
8129 EMSG(_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used ")); | |
8130 regexp_engine = AUTOMATIC_ENGINE; | |
8131 } | |
8132 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8133 #ifdef DEBUG |
4444 | 8134 bt_regengine.expr = expr; |
8135 nfa_regengine.expr = expr; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8136 #endif |
4444 | 8137 |
8138 /* | |
8139 * First try the NFA engine, unless backtracking was requested. | |
8140 */ | |
8141 if (regexp_engine != BACKTRACKING_ENGINE) | |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8142 prog = nfa_regengine.regcomp(expr, |
6533 | 8143 re_flags + (regexp_engine == AUTOMATIC_ENGINE ? RE_AUTO : 0)); |
4444 | 8144 else |
8145 prog = bt_regengine.regcomp(expr, re_flags); | |
8146 | |
6328 | 8147 /* Check for error compiling regexp with initial engine. */ |
8148 if (prog == NULL) | |
4444 | 8149 { |
4460 | 8150 #ifdef BT_REGEXP_DEBUG_LOG |
4444 | 8151 if (regexp_engine != BACKTRACKING_ENGINE) /* debugging log for NFA */ |
8152 { | |
8153 FILE *f; | |
4460 | 8154 f = fopen(BT_REGEXP_DEBUG_LOG_NAME, "a"); |
4444 | 8155 if (f) |
8156 { | |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8157 fprintf(f, "Syntax error in \"%s\"\n", expr); |
4444 | 8158 fclose(f); |
8159 } | |
8160 else | |
4460 | 8161 EMSG2("(NFA) Could not open \"%s\" to write !!!", |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8162 BT_REGEXP_DEBUG_LOG_NAME); |
4444 | 8163 } |
8164 #endif | |
8165 /* | |
6328 | 8166 * If the NFA engine failed, try the backtracking engine. |
6533 | 8167 * The NFA engine also fails for patterns that it can't handle well |
8168 * but are still valid patterns, thus a retry should work. | |
8169 */ | |
4444 | 8170 if (regexp_engine == AUTOMATIC_ENGINE) |
6328 | 8171 { |
6533 | 8172 regexp_engine = BACKTRACKING_ENGINE; |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8173 prog = bt_regengine.regcomp(expr, re_flags); |
6328 | 8174 } |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8175 } |
4444 | 8176 |
6328 | 8177 if (prog != NULL) |
8178 { | |
8179 /* Store the info needed to call regcomp() again when the engine turns | |
8180 * out to be very slow when executing it. */ | |
8181 prog->re_engine = regexp_engine; | |
8182 prog->re_flags = re_flags; | |
8183 } | |
8184 | |
4444 | 8185 return prog; |
8186 } | |
8187 | |
8188 /* | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8189 * Free a compiled regexp program, returned by vim_regcomp(). |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8190 */ |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8191 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8192 vim_regfree(regprog_T *prog) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8193 { |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8194 if (prog != NULL) |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8195 prog->engine->regfree(prog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8196 } |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8197 |
6328 | 8198 #ifdef FEAT_EVAL |
8199 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8200 report_re_switch(char_u *pat) |
6328 | 8201 { |
8202 if (p_verbose > 0) | |
8203 { | |
8204 verbose_enter(); | |
8205 MSG_PUTS(_("Switching to backtracking RE engine for pattern: ")); | |
8206 MSG_PUTS(pat); | |
8207 verbose_leave(); | |
8208 } | |
8209 } | |
8210 #endif | |
8211 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8212 /* |
4444 | 8213 * Match a regexp against a string. |
8214 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
6375 | 8215 * Note: "rmp->regprog" may be freed and changed. |
4444 | 8216 * Uses curbuf for line count and 'iskeyword'. |
6328 | 8217 * When "nl" is TRUE consider a "\n" in "line" to be a line break. |
4444 | 8218 * |
8219 * Return TRUE if there is a match, FALSE if not. | |
8220 */ | |
6328 | 8221 static int |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8222 vim_regexec_string( |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8223 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8224 char_u *line, /* string to match against */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8225 colnr_T col, /* column to start looking for match */ |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8226 int nl) |
6328 | 8227 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8228 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8229 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8230 int rex_in_use_save = rex_in_use; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8231 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8232 // Cannot use the same prog recursively, it contains state. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8233 if (rmp->regprog->re_in_use) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8234 { |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8235 EMSG(_(e_recursive)); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8236 return FALSE; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8237 } |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8238 rmp->regprog->re_in_use = TRUE; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8239 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8240 if (rex_in_use) |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8241 // Being called recursively, save the state. |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8242 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8243 rex_in_use = TRUE; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8244 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8245 rex.reg_startp = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8246 rex.reg_endp = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8247 rex.reg_startpos = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8248 rex.reg_endpos = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8249 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8250 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl); |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8251 rmp->regprog->re_in_use = FALSE; |
6328 | 8252 |
8253 /* NFA engine aborted because it's very slow. */ | |
8254 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE | |
8255 && result == NFA_TOO_EXPENSIVE) | |
8256 { | |
8257 int save_p_re = p_re; | |
8258 int re_flags = rmp->regprog->re_flags; | |
8259 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern); | |
8260 | |
8261 p_re = BACKTRACKING_ENGINE; | |
8262 vim_regfree(rmp->regprog); | |
8263 if (pat != NULL) | |
8264 { | |
8265 #ifdef FEAT_EVAL | |
8266 report_re_switch(pat); | |
8267 #endif | |
8268 rmp->regprog = vim_regcomp(pat, re_flags); | |
8269 if (rmp->regprog != NULL) | |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8270 { |
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8271 rmp->regprog->re_in_use = TRUE; |
6328 | 8272 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl); |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8273 rmp->regprog->re_in_use = FALSE; |
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8274 } |
6328 | 8275 vim_free(pat); |
8276 } | |
8277 | |
8278 p_re = save_p_re; | |
8279 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8280 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8281 rex_in_use = rex_in_use_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8282 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8283 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8284 |
6390 | 8285 return result > 0; |
6328 | 8286 } |
8287 | |
6375 | 8288 /* |
8289 * Note: "*prog" may be freed and changed. | |
6390 | 8290 * Return TRUE if there is a match, FALSE if not. |
6375 | 8291 */ |
8292 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8293 vim_regexec_prog( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8294 regprog_T **prog, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8295 int ignore_case, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8296 char_u *line, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8297 colnr_T col) |
6375 | 8298 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8299 int r; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8300 regmatch_T regmatch; |
6375 | 8301 |
8302 regmatch.regprog = *prog; | |
8303 regmatch.rm_ic = ignore_case; | |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8304 r = vim_regexec_string(®match, line, col, FALSE); |
6375 | 8305 *prog = regmatch.regprog; |
8306 return r; | |
8307 } | |
8308 | |
8309 /* | |
8310 * Note: "rmp->regprog" may be freed and changed. | |
6390 | 8311 * Return TRUE if there is a match, FALSE if not. |
6375 | 8312 */ |
4444 | 8313 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8314 vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col) |
4444 | 8315 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8316 return vim_regexec_string(rmp, line, col, FALSE); |
4444 | 8317 } |
8318 | |
8319 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \ | |
8320 || defined(FIND_REPLACE_DIALOG) || defined(PROTO) | |
8321 /* | |
8322 * Like vim_regexec(), but consider a "\n" in "line" to be a line break. | |
6375 | 8323 * Note: "rmp->regprog" may be freed and changed. |
6390 | 8324 * Return TRUE if there is a match, FALSE if not. |
4444 | 8325 */ |
8326 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8327 vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col) |
4444 | 8328 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8329 return vim_regexec_string(rmp, line, col, TRUE); |
4444 | 8330 } |
8331 #endif | |
8332 | |
8333 /* | |
8334 * Match a regexp against multiple lines. | |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8335 * "rmp->regprog" must be a compiled regexp as returned by vim_regcomp(). |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8336 * Note: "rmp->regprog" may be freed and changed, even set to NULL. |
4444 | 8337 * Uses curbuf for line count and 'iskeyword'. |
8338 * | |
8339 * Return zero if there is no match. Return number of lines contained in the | |
8340 * match otherwise. | |
8341 */ | |
8342 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8343 vim_regexec_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8344 regmmatch_T *rmp, |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8345 win_T *win, /* window in which to search or NULL */ |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8346 buf_T *buf, /* buffer in which to search */ |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8347 linenr_T lnum, /* nr of line to start looking for match */ |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8348 colnr_T col, /* column to start looking for match */ |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8349 proftime_T *tm, /* timeout limit or NULL */ |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8350 int *timed_out) /* flag is set when timeout limit reached */ |
4444 | 8351 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8352 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8353 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8354 int rex_in_use_save = rex_in_use; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8355 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8356 // Cannot use the same prog recursively, it contains state. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8357 if (rmp->regprog->re_in_use) |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8358 { |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8359 EMSG(_(e_recursive)); |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8360 return FALSE; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8361 } |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8362 rmp->regprog->re_in_use = TRUE; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8363 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8364 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8365 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8366 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8367 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8368 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8369 result = rmp->regprog->engine->regexec_multi( |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8370 rmp, win, buf, lnum, col, tm, timed_out); |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8371 rmp->regprog->re_in_use = FALSE; |
6328 | 8372 |
8373 /* NFA engine aborted because it's very slow. */ | |
8374 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE | |
8375 && result == NFA_TOO_EXPENSIVE) | |
8376 { | |
8377 int save_p_re = p_re; | |
8378 int re_flags = rmp->regprog->re_flags; | |
8379 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern); | |
8380 | |
8381 p_re = BACKTRACKING_ENGINE; | |
8382 vim_regfree(rmp->regprog); | |
8383 if (pat != NULL) | |
8384 { | |
8385 #ifdef FEAT_EVAL | |
8386 report_re_switch(pat); | |
8387 #endif | |
14169
42a9178374d1
patch 8.1.0102: cannot build without syntax highlighting
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
8388 #ifdef FEAT_SYN_HL |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8389 // checking for \z misuse was already done when compiling for NFA, |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8390 // allow all here |
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8391 reg_do_extmatch = REX_ALL; |
14169
42a9178374d1
patch 8.1.0102: cannot build without syntax highlighting
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
8392 #endif |
6328 | 8393 rmp->regprog = vim_regcomp(pat, re_flags); |
14169
42a9178374d1
patch 8.1.0102: cannot build without syntax highlighting
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
8394 #ifdef FEAT_SYN_HL |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8395 reg_do_extmatch = 0; |
14169
42a9178374d1
patch 8.1.0102: cannot build without syntax highlighting
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
8396 #endif |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8397 |
6328 | 8398 if (rmp->regprog != NULL) |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8399 { |
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8400 rmp->regprog->re_in_use = TRUE; |
6328 | 8401 result = rmp->regprog->engine->regexec_multi( |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8402 rmp, win, buf, lnum, col, tm, timed_out); |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8403 rmp->regprog->re_in_use = FALSE; |
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8404 } |
6328 | 8405 vim_free(pat); |
8406 } | |
8407 p_re = save_p_re; | |
8408 } | |
8409 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8410 rex_in_use = rex_in_use_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8411 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8412 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8413 |
6390 | 8414 return result <= 0 ? 0 : result; |
4444 | 8415 } |