Mercurial > vim
annotate src/regexp.c @ 17480:91cac682b09a v8.1.1738
patch 8.1.1738: testing lambda with timer is slow
commit https://github.com/vim/vim/commit/9bc4dde45d45df732953491d0f2c3fd3b10a627e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jul 24 13:08:29 2019 +0200
patch 8.1.1738: testing lambda with timer is slow
Problem: Testing lambda with timer is slow.
Solution: Do not test timer accuracy, only that it works. (Daniel Hahler,
closes #4723)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 24 Jul 2019 13:15:06 +0200 |
parents | f4ce361bb1e5 |
children | ff097edaae89 |
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 | |
16395
a849fe2a4b21
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
41 // By default: do not create debugging logs or files related to regular |
a849fe2a4b21
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
42 // expressions, even when compiling with -DDEBUG. |
a849fe2a4b21
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
43 // Uncomment the second line to get the regexp debugging. |
a849fe2a4b21
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
44 #undef DEBUG |
a849fe2a4b21
patch 8.1.1202: always get regexp debugging logs when building with -DDEBUG
Bram Moolenaar <Bram@vim.org>
parents:
16054
diff
changeset
|
45 // #define DEBUG |
4444 | 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 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
337 #define EMSG_RET_NULL(m) return (emsg((m)), rc_did_emsg = TRUE, (void *)NULL) |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
338 #define IEMSG_RET_NULL(m) return (iemsg((m)), rc_did_emsg = TRUE, (void *)NULL) |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
339 #define EMSG_RET_FAIL(m) return (emsg((m)), rc_did_emsg = TRUE, FAIL) |
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
340 #define EMSG2_RET_NULL(m, c) return (semsg((const char *)(m), (c) ? "" : "\\"), rc_did_emsg = TRUE, (void *)NULL) |
15480
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
341 #define EMSG3_RET_NULL(m, c, a) return (semsg((const char *)(m), (c) ? "" : "\\", (a)), rc_did_emsg = TRUE, (void *)NULL) |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
342 #define EMSG2_RET_FAIL(m, c) return (semsg((const char *)(m), (c) ? "" : "\\"), rc_did_emsg = TRUE, FAIL) |
4444 | 343 #define EMSG_ONE_RET_NULL EMSG2_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL) |
7 | 344 |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
345 |
7 | 346 #define MAX_LIMIT (32767L << 16L) |
347 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
348 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
|
349 static char_u *cstrchr(char_u *, int); |
7 | 350 |
4444 | 351 #ifdef BT_REGEXP_DUMP |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
352 static void regdump(char_u *, bt_regprog_T *); |
4444 | 353 #endif |
7 | 354 #ifdef DEBUG |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
355 static char_u *regprop(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
356 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
357 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
358 static int re_mult_next(char *what); |
6203 | 359 |
4444 | 360 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
|
361 static char_u e_reverse_range[] = N_("E944: Reverse range in character class"); |
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"); |
4444 | 363 static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%("); |
364 static char_u e_unmatchedp[] = N_("E54: Unmatched %s("); | |
365 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
|
366 #ifdef FEAT_SYN_HL |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
367 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
|
368 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
|
369 #endif |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
370 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
|
371 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
|
372 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
|
373 |
7 | 374 #define NOT_MULTI 0 |
375 #define MULTI_ONE 1 | |
376 #define MULTI_MULT 2 | |
377 /* | |
378 * Return NOT_MULTI if c is not a "multi" operator. | |
379 * Return MULTI_ONE if c is a single "multi" operator. | |
380 * Return MULTI_MULT if c is a multi "multi" operator. | |
381 */ | |
382 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
383 re_multi_type(int c) |
7 | 384 { |
385 if (c == Magic('@') || c == Magic('=') || c == Magic('?')) | |
386 return MULTI_ONE; | |
387 if (c == Magic('*') || c == Magic('+') || c == Magic('{')) | |
388 return MULTI_MULT; | |
389 return NOT_MULTI; | |
390 } | |
391 | |
392 /* | |
393 * Flags to be passed up and down. | |
394 */ | |
395 #define HASWIDTH 0x1 /* Known never to match null string. */ | |
396 #define SIMPLE 0x2 /* Simple enough to be STAR/PLUS operand. */ | |
397 #define SPSTART 0x4 /* Starts with * or +. */ | |
398 #define HASNL 0x8 /* Contains some \n. */ | |
399 #define HASLOOKBH 0x10 /* Contains "\@<=" or "\@<!". */ | |
400 #define WORST 0 /* Worst case. */ | |
401 | |
402 /* | |
403 * When regcode is set to this value, code is not emitted and size is computed | |
404 * instead. | |
405 */ | |
406 #define JUST_CALC_SIZE ((char_u *) -1) | |
407 | |
359 | 408 static char_u *reg_prev_sub = NULL; |
409 | |
7 | 410 /* |
411 * REGEXP_INRANGE contains all characters which are always special in a [] | |
412 * range after '\'. | |
413 * REGEXP_ABBR contains all characters which act as abbreviations after '\'. | |
414 * These are: | |
415 * \n - New line (NL). | |
416 * \r - Carriage Return (CR). | |
417 * \t - Tab (TAB). | |
418 * \e - Escape (ESC). | |
419 * \b - Backspace (Ctrl_H). | |
24 | 420 * \d - Character code in decimal, eg \d123 |
421 * \o - Character code in octal, eg \o80 | |
422 * \x - Character code in hex, eg \x4a | |
423 * \u - Multibyte character code, eg \u20ac | |
424 * \U - Long multibyte character code, eg \U12345678 | |
7 | 425 */ |
426 static char_u REGEXP_INRANGE[] = "]^-n\\"; | |
24 | 427 static char_u REGEXP_ABBR[] = "nrtebdoxuU"; |
7 | 428 |
429 /* | |
430 * Translate '\x' to its control character, except "\n", which is Magic. | |
431 */ | |
432 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
433 backslash_trans(int c) |
7 | 434 { |
435 switch (c) | |
436 { | |
437 case 'r': return CAR; | |
438 case 't': return TAB; | |
439 case 'e': return ESC; | |
440 case 'b': return BS; | |
441 } | |
442 return c; | |
443 } | |
444 | |
445 /* | |
167 | 446 * Check for a character class name "[:name:]". "pp" points to the '['. |
7 | 447 * Returns one of the CLASS_ items. CLASS_NONE means that no item was |
448 * recognized. Otherwise "pp" is advanced to after the item. | |
449 */ | |
450 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
451 get_char_class(char_u **pp) |
7 | 452 { |
453 static const char *(class_names[]) = | |
454 { | |
455 "alnum:]", | |
456 #define CLASS_ALNUM 0 | |
457 "alpha:]", | |
458 #define CLASS_ALPHA 1 | |
459 "blank:]", | |
460 #define CLASS_BLANK 2 | |
461 "cntrl:]", | |
462 #define CLASS_CNTRL 3 | |
463 "digit:]", | |
464 #define CLASS_DIGIT 4 | |
465 "graph:]", | |
466 #define CLASS_GRAPH 5 | |
467 "lower:]", | |
468 #define CLASS_LOWER 6 | |
469 "print:]", | |
470 #define CLASS_PRINT 7 | |
471 "punct:]", | |
472 #define CLASS_PUNCT 8 | |
473 "space:]", | |
474 #define CLASS_SPACE 9 | |
475 "upper:]", | |
476 #define CLASS_UPPER 10 | |
477 "xdigit:]", | |
478 #define CLASS_XDIGIT 11 | |
479 "tab:]", | |
480 #define CLASS_TAB 12 | |
481 "return:]", | |
482 #define CLASS_RETURN 13 | |
483 "backspace:]", | |
484 #define CLASS_BACKSPACE 14 | |
485 "escape:]", | |
486 #define CLASS_ESCAPE 15 | |
15709
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
487 "ident:]", |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
488 #define CLASS_IDENT 16 |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
489 "keyword:]", |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
490 #define CLASS_KEYWORD 17 |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
491 "fname:]", |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
492 #define CLASS_FNAME 18 |
7 | 493 }; |
494 #define CLASS_NONE 99 | |
495 int i; | |
496 | |
497 if ((*pp)[1] == ':') | |
498 { | |
1877 | 499 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i) |
7 | 500 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) |
501 { | |
502 *pp += STRLEN(class_names[i]) + 2; | |
503 return i; | |
504 } | |
505 } | |
506 return CLASS_NONE; | |
507 } | |
508 | |
509 /* | |
510 * Specific version of character class functions. | |
511 * Using a table to keep this fast. | |
512 */ | |
513 static short class_tab[256]; | |
514 | |
515 #define RI_DIGIT 0x01 | |
516 #define RI_HEX 0x02 | |
517 #define RI_OCTAL 0x04 | |
518 #define RI_WORD 0x08 | |
519 #define RI_HEAD 0x10 | |
520 #define RI_ALPHA 0x20 | |
521 #define RI_LOWER 0x40 | |
522 #define RI_UPPER 0x80 | |
523 #define RI_WHITE 0x100 | |
524 | |
525 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
526 init_class_tab(void) |
7 | 527 { |
528 int i; | |
529 static int done = FALSE; | |
530 | |
531 if (done) | |
532 return; | |
533 | |
534 for (i = 0; i < 256; ++i) | |
535 { | |
536 if (i >= '0' && i <= '7') | |
537 class_tab[i] = RI_DIGIT + RI_HEX + RI_OCTAL + RI_WORD; | |
538 else if (i >= '8' && i <= '9') | |
539 class_tab[i] = RI_DIGIT + RI_HEX + RI_WORD; | |
540 else if (i >= 'a' && i <= 'f') | |
541 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
542 #ifdef EBCDIC | |
543 else if ((i >= 'g' && i <= 'i') || (i >= 'j' && i <= 'r') | |
544 || (i >= 's' && i <= 'z')) | |
545 #else | |
546 else if (i >= 'g' && i <= 'z') | |
547 #endif | |
548 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
549 else if (i >= 'A' && i <= 'F') | |
550 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
551 #ifdef EBCDIC | |
552 else if ((i >= 'G' && i <= 'I') || ( i >= 'J' && i <= 'R') | |
553 || (i >= 'S' && i <= 'Z')) | |
554 #else | |
555 else if (i >= 'G' && i <= 'Z') | |
556 #endif | |
557 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
558 else if (i == '_') | |
559 class_tab[i] = RI_WORD + RI_HEAD; | |
560 else | |
561 class_tab[i] = 0; | |
562 } | |
563 class_tab[' '] |= RI_WHITE; | |
564 class_tab['\t'] |= RI_WHITE; | |
565 done = TRUE; | |
566 } | |
567 | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
568 #define ri_digit(c) (c < 0x100 && (class_tab[c] & RI_DIGIT)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
569 #define ri_hex(c) (c < 0x100 && (class_tab[c] & RI_HEX)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
570 #define ri_octal(c) (c < 0x100 && (class_tab[c] & RI_OCTAL)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
571 #define ri_word(c) (c < 0x100 && (class_tab[c] & RI_WORD)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
572 #define ri_head(c) (c < 0x100 && (class_tab[c] & RI_HEAD)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
573 #define ri_alpha(c) (c < 0x100 && (class_tab[c] & RI_ALPHA)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
574 #define ri_lower(c) (c < 0x100 && (class_tab[c] & RI_LOWER)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
575 #define ri_upper(c) (c < 0x100 && (class_tab[c] & RI_UPPER)) |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
576 #define ri_white(c) (c < 0x100 && (class_tab[c] & RI_WHITE)) |
7 | 577 |
578 /* flags for regflags */ | |
579 #define RF_ICASE 1 /* ignore case */ | |
580 #define RF_NOICASE 2 /* don't ignore case */ | |
581 #define RF_HASNL 4 /* can match a NL */ | |
582 #define RF_ICOMBINE 8 /* ignore combining characters */ | |
583 #define RF_LOOKBH 16 /* uses "\@<=" or "\@<!" */ | |
584 | |
585 /* | |
586 * Global work variables for vim_regcomp(). | |
587 */ | |
588 | |
589 static char_u *regparse; /* Input-scan pointer. */ | |
590 static int prevchr_len; /* byte length of previous char */ | |
591 static int num_complex_braces; /* Complex \{...} count */ | |
592 static int regnpar; /* () count. */ | |
593 #ifdef FEAT_SYN_HL | |
594 static int regnzpar; /* \z() count. */ | |
595 static int re_has_z; /* \z item detected */ | |
596 #endif | |
597 static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */ | |
598 static long regsize; /* Code size. */ | |
2010 | 599 static int reg_toolong; /* TRUE when offset out of range */ |
7 | 600 static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */ |
601 static unsigned regflags; /* RF_ flags for prog */ | |
602 static long brace_min[10]; /* Minimums for complex brace repeats */ | |
603 static long brace_max[10]; /* Maximums for complex brace repeats */ | |
604 static int brace_count[10]; /* Current counts for complex brace repeats */ | |
605 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
606 static int had_eol; /* TRUE when EOL found by vim_regcomp() */ | |
607 #endif | |
608 static int one_exactly = FALSE; /* only do one char for EXACTLY */ | |
609 | |
610 static int reg_magic; /* magicness of the pattern: */ | |
611 #define MAGIC_NONE 1 /* "\V" very unmagic */ | |
612 #define MAGIC_OFF 2 /* "\M" or 'magic' off */ | |
613 #define MAGIC_ON 3 /* "\m" or 'magic' */ | |
614 #define MAGIC_ALL 4 /* "\v" very magic */ | |
615 | |
616 static int reg_string; /* matching with a string instead of a buffer | |
617 line */ | |
481 | 618 static int reg_strict; /* "[abc" is illegal */ |
7 | 619 |
620 /* | |
621 * META contains all characters that may be magic, except '^' and '$'. | |
622 */ | |
623 | |
624 #ifdef EBCDIC | |
625 static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~"; | |
626 #else | |
627 /* META[] is used often enough to justify turning it into a table. */ | |
628 static char_u META_flags[] = { | |
629 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
630 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
631 /* % & ( ) * + . */ | |
632 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, | |
633 /* 1 2 3 4 5 6 7 8 9 < = > ? */ | |
634 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, | |
635 /* @ A C D F H I K L M O */ | |
636 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, | |
637 /* P S U V W X Z [ _ */ | |
638 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, | |
639 /* a c d f h i k l m n o */ | |
640 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, | |
641 /* p s u v w x z { | ~ */ | |
642 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1 | |
643 }; | |
644 #endif | |
645 | |
4444 | 646 static int curchr; /* currently parsed character */ |
647 /* Previous character. Note: prevchr is sometimes -1 when we are not at the | |
648 * start, eg in /[ ^I]^ the pattern was never found even if it existed, | |
649 * because ^ was taken to be magic -- webb */ | |
650 static int prevchr; | |
651 static int prevprevchr; /* previous-previous character */ | |
652 static int nextchr; /* used for ungetchr() */ | |
7 | 653 |
654 /* arguments for reg() */ | |
655 #define REG_NOPAREN 0 /* toplevel reg() */ | |
656 #define REG_PAREN 1 /* \(\) */ | |
657 #define REG_ZPAREN 2 /* \z(\) */ | |
658 #define REG_NPAREN 3 /* \%(\) */ | |
659 | |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
660 typedef struct |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
661 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
662 char_u *regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
663 int prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
664 int curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
665 int prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
666 int prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
667 int nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
668 int at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
669 int prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
670 int regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
671 } parse_state_T; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
672 |
7 | 673 /* |
674 * Forward declarations for vim_regcomp()'s friends. | |
675 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
676 static void initchr(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
677 static int getchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
678 static void skipchr_keepstart(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
679 static int peekchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
680 static void skipchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
681 static void ungetchr(void); |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
682 static long gethexchrs(int maxinputlen); |
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
683 static long getoctchrs(void); |
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
684 static long getdecchrs(void); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
685 static int coll_get_char(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
686 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
|
687 static char_u *reg(int, int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
688 static char_u *regbranch(int *flagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
689 static char_u *regconcat(int *flagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
690 static char_u *regpiece(int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
691 static char_u *regatom(int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
692 static char_u *regnode(int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
693 static int use_multibytecode(int c); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
694 static int prog_magic_wrong(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
695 static char_u *regnext(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
696 static void regc(int b); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
697 static void regmbc(int c); |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
698 #define REGMBC(x) regmbc(x); |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
699 #define CASEMBC(x) case x: |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
700 static void reginsert(int, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
701 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
|
702 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
|
703 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
|
704 static int read_limits(long *, long *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
705 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
|
706 static void regoptail(char_u *, char_u *); |
15709
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
707 static int reg_iswordc(int); |
7 | 708 |
4444 | 709 static regengine_T bt_regengine; |
710 static regengine_T nfa_regengine; | |
711 | |
7 | 712 /* |
713 * Return TRUE if compiled regular expression "prog" can match a line break. | |
714 */ | |
715 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
716 re_multiline(regprog_T *prog) |
7 | 717 { |
718 return (prog->regflags & RF_HASNL); | |
719 } | |
720 | |
721 /* | |
167 | 722 * Check for an equivalence class name "[=a=]". "pp" points to the '['. |
723 * Returns a character representing the class. Zero means that no item was | |
724 * recognized. Otherwise "pp" is advanced to after the item. | |
725 */ | |
726 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
727 get_equi_class(char_u **pp) |
167 | 728 { |
729 int c; | |
730 int l = 1; | |
731 char_u *p = *pp; | |
732 | |
15854
4ac1c185b0b8
patch 8.1.0934: invalid memory access in search pattern
Bram Moolenaar <Bram@vim.org>
parents:
15792
diff
changeset
|
733 if (p[1] == '=' && p[2] != NUL) |
167 | 734 { |
735 if (has_mbyte) | |
474 | 736 l = (*mb_ptr2len)(p + 2); |
167 | 737 if (p[l + 2] == '=' && p[l + 3] == ']') |
738 { | |
739 if (has_mbyte) | |
740 c = mb_ptr2char(p + 2); | |
741 else | |
742 c = p[2]; | |
743 *pp += l + 4; | |
744 return c; | |
745 } | |
746 } | |
747 return 0; | |
748 } | |
749 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
750 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
751 /* |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
752 * 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
|
753 */ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
754 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
|
755 "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
|
756 "C\x68", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
757 "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
|
758 "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
|
759 "N\x69", |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
760 "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
|
761 "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
|
762 "Y\xBA", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
763 "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
|
764 "c\x48", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
765 "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
|
766 "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
|
767 "n\x49", |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
768 "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
|
769 "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
|
770 "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
|
771 }; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
772 #endif |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
773 |
167 | 774 /* |
775 * Produce the bytes for equivalence class "c". | |
776 * Currently only handles latin1, latin9 and utf-8. | |
4444 | 777 * NOTE: When changing this function, also change nfa_emit_equi_class() |
167 | 778 */ |
779 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
780 reg_equi_class(int c) |
167 | 781 { |
782 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0 | |
492 | 783 || STRCMP(p_enc, "iso-8859-15") == 0) |
167 | 784 { |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
785 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
786 int i; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
787 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
788 /* 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
|
789 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
|
790 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
791 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
|
792 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
793 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
|
794 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
795 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
|
796 regmbc(*p++); |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
797 return; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
798 } |
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 #else |
167 | 801 switch (c) |
802 { | |
6765 | 803 /* Do not use '\300' style, it results in a negative number. */ |
804 case 'A': case 0xc0: case 0xc1: case 0xc2: | |
805 case 0xc3: case 0xc4: case 0xc5: | |
2974 | 806 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd) |
807 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2) | |
6765 | 808 regmbc('A'); regmbc(0xc0); regmbc(0xc1); |
809 regmbc(0xc2); regmbc(0xc3); regmbc(0xc4); | |
810 regmbc(0xc5); | |
2974 | 811 REGMBC(0x100) REGMBC(0x102) REGMBC(0x104) |
812 REGMBC(0x1cd) REGMBC(0x1de) REGMBC(0x1e0) | |
813 REGMBC(0x1ea2) | |
814 return; | |
815 case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06) | |
816 regmbc('B'); REGMBC(0x1e02) REGMBC(0x1e06) | |
167 | 817 return; |
6765 | 818 case 'C': case 0xc7: |
2974 | 819 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c) |
6765 | 820 regmbc('C'); regmbc(0xc7); |
2974 | 821 REGMBC(0x106) REGMBC(0x108) REGMBC(0x10a) |
822 REGMBC(0x10c) | |
823 return; | |
824 case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a) | |
825 CASEMBC(0x1e0e) CASEMBC(0x1e10) | |
826 regmbc('D'); REGMBC(0x10e) REGMBC(0x110) | |
827 REGMBC(0x1e0a) REGMBC(0x1e0e) REGMBC(0x1e10) | |
167 | 828 return; |
6765 | 829 case 'E': case 0xc8: case 0xc9: case 0xca: case 0xcb: |
2974 | 830 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118) |
831 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc) | |
6765 | 832 regmbc('E'); regmbc(0xc8); regmbc(0xc9); |
833 regmbc(0xca); regmbc(0xcb); | |
2974 | 834 REGMBC(0x112) REGMBC(0x114) REGMBC(0x116) |
835 REGMBC(0x118) REGMBC(0x11a) REGMBC(0x1eba) | |
836 REGMBC(0x1ebc) | |
837 return; | |
838 case 'F': CASEMBC(0x1e1e) | |
839 regmbc('F'); REGMBC(0x1e1e) | |
840 return; | |
841 case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120) | |
842 CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4) | |
843 CASEMBC(0x1e20) | |
844 regmbc('G'); REGMBC(0x11c) REGMBC(0x11e) | |
845 REGMBC(0x120) REGMBC(0x122) REGMBC(0x1e4) | |
846 REGMBC(0x1e6) REGMBC(0x1f4) REGMBC(0x1e20) | |
847 return; | |
848 case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22) | |
849 CASEMBC(0x1e26) CASEMBC(0x1e28) | |
850 regmbc('H'); REGMBC(0x124) REGMBC(0x126) | |
851 REGMBC(0x1e22) REGMBC(0x1e26) REGMBC(0x1e28) | |
167 | 852 return; |
6765 | 853 case 'I': case 0xcc: case 0xcd: case 0xce: case 0xcf: |
2974 | 854 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e) |
855 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8) | |
6765 | 856 regmbc('I'); regmbc(0xcc); regmbc(0xcd); |
857 regmbc(0xce); regmbc(0xcf); | |
2974 | 858 REGMBC(0x128) REGMBC(0x12a) REGMBC(0x12c) |
859 REGMBC(0x12e) REGMBC(0x130) REGMBC(0x1cf) | |
860 REGMBC(0x1ec8) | |
861 return; | |
862 case 'J': CASEMBC(0x134) | |
863 regmbc('J'); REGMBC(0x134) | |
864 return; | |
865 case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30) | |
866 CASEMBC(0x1e34) | |
867 regmbc('K'); REGMBC(0x136) REGMBC(0x1e8) | |
868 REGMBC(0x1e30) REGMBC(0x1e34) | |
869 return; | |
870 case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d) | |
871 CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a) | |
872 regmbc('L'); REGMBC(0x139) REGMBC(0x13b) | |
873 REGMBC(0x13d) REGMBC(0x13f) REGMBC(0x141) | |
874 REGMBC(0x1e3a) | |
875 return; | |
876 case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40) | |
877 regmbc('M'); REGMBC(0x1e3e) REGMBC(0x1e40) | |
167 | 878 return; |
6765 | 879 case 'N': case 0xd1: |
2974 | 880 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44) |
881 CASEMBC(0x1e48) | |
6765 | 882 regmbc('N'); regmbc(0xd1); |
2974 | 883 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147) |
884 REGMBC(0x1e44) REGMBC(0x1e48) | |
167 | 885 return; |
6765 | 886 case 'O': case 0xd2: case 0xd3: case 0xd4: case 0xd5: |
887 case 0xd6: case 0xd8: | |
2974 | 888 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0) |
889 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece) | |
6765 | 890 regmbc('O'); regmbc(0xd2); regmbc(0xd3); |
891 regmbc(0xd4); regmbc(0xd5); regmbc(0xd6); | |
892 regmbc(0xd8); | |
2974 | 893 REGMBC(0x14c) REGMBC(0x14e) REGMBC(0x150) |
894 REGMBC(0x1a0) REGMBC(0x1d1) REGMBC(0x1ea) | |
895 REGMBC(0x1ec) REGMBC(0x1ece) | |
896 return; | |
897 case 'P': case 0x1e54: case 0x1e56: | |
898 regmbc('P'); REGMBC(0x1e54) REGMBC(0x1e56) | |
899 return; | |
900 case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158) | |
901 CASEMBC(0x1e58) CASEMBC(0x1e5e) | |
902 regmbc('R'); REGMBC(0x154) REGMBC(0x156) REGMBC(0x158) | |
903 REGMBC(0x1e58) REGMBC(0x1e5e) | |
904 return; | |
905 case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e) | |
906 CASEMBC(0x160) CASEMBC(0x1e60) | |
907 regmbc('S'); REGMBC(0x15a) REGMBC(0x15c) | |
908 REGMBC(0x15e) REGMBC(0x160) REGMBC(0x1e60) | |
909 return; | |
910 case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166) | |
911 CASEMBC(0x1e6a) CASEMBC(0x1e6e) | |
912 regmbc('T'); REGMBC(0x162) REGMBC(0x164) | |
913 REGMBC(0x166) REGMBC(0x1e6a) REGMBC(0x1e6e) | |
167 | 914 return; |
6765 | 915 case 'U': case 0xd9: case 0xda: case 0xdb: case 0xdc: |
2974 | 916 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e) |
917 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3) | |
918 CASEMBC(0x1ee6) | |
6765 | 919 regmbc('U'); regmbc(0xd9); regmbc(0xda); |
920 regmbc(0xdb); regmbc(0xdc); | |
2974 | 921 REGMBC(0x168) REGMBC(0x16a) REGMBC(0x16c) |
922 REGMBC(0x16e) REGMBC(0x170) REGMBC(0x172) | |
923 REGMBC(0x1af) REGMBC(0x1d3) REGMBC(0x1ee6) | |
924 return; | |
925 case 'V': CASEMBC(0x1e7c) | |
926 regmbc('V'); REGMBC(0x1e7c) | |
927 return; | |
928 case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82) | |
929 CASEMBC(0x1e84) CASEMBC(0x1e86) | |
930 regmbc('W'); REGMBC(0x174) REGMBC(0x1e80) | |
931 REGMBC(0x1e82) REGMBC(0x1e84) REGMBC(0x1e86) | |
932 return; | |
933 case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c) | |
934 regmbc('X'); REGMBC(0x1e8a) REGMBC(0x1e8c) | |
167 | 935 return; |
6765 | 936 case 'Y': case 0xdd: |
2974 | 937 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2) |
938 CASEMBC(0x1ef6) CASEMBC(0x1ef8) | |
6765 | 939 regmbc('Y'); regmbc(0xdd); |
2974 | 940 REGMBC(0x176) REGMBC(0x178) REGMBC(0x1e8e) |
941 REGMBC(0x1ef2) REGMBC(0x1ef6) REGMBC(0x1ef8) | |
942 return; | |
943 case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d) | |
944 CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94) | |
945 regmbc('Z'); REGMBC(0x179) REGMBC(0x17b) | |
946 REGMBC(0x17d) REGMBC(0x1b5) REGMBC(0x1e90) | |
947 REGMBC(0x1e94) | |
167 | 948 return; |
6765 | 949 case 'a': case 0xe0: case 0xe1: case 0xe2: |
950 case 0xe3: case 0xe4: case 0xe5: | |
2974 | 951 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce) |
952 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3) | |
6765 | 953 regmbc('a'); regmbc(0xe0); regmbc(0xe1); |
954 regmbc(0xe2); regmbc(0xe3); regmbc(0xe4); | |
955 regmbc(0xe5); | |
2974 | 956 REGMBC(0x101) REGMBC(0x103) REGMBC(0x105) |
957 REGMBC(0x1ce) REGMBC(0x1df) REGMBC(0x1e1) | |
958 REGMBC(0x1ea3) | |
959 return; | |
960 case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07) | |
961 regmbc('b'); REGMBC(0x1e03) REGMBC(0x1e07) | |
167 | 962 return; |
6765 | 963 case 'c': case 0xe7: |
2974 | 964 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d) |
6765 | 965 regmbc('c'); regmbc(0xe7); |
2974 | 966 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b) |
967 REGMBC(0x10d) | |
968 return; | |
6914 | 969 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1e0b) |
970 CASEMBC(0x1e0f) CASEMBC(0x1e11) | |
2974 | 971 regmbc('d'); REGMBC(0x10f) REGMBC(0x111) |
6914 | 972 REGMBC(0x1e0b) REGMBC(0x1e0f) REGMBC(0x1e11) |
167 | 973 return; |
6765 | 974 case 'e': case 0xe8: case 0xe9: case 0xea: case 0xeb: |
2974 | 975 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119) |
976 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd) | |
6765 | 977 regmbc('e'); regmbc(0xe8); regmbc(0xe9); |
978 regmbc(0xea); regmbc(0xeb); | |
2974 | 979 REGMBC(0x113) REGMBC(0x115) REGMBC(0x117) |
980 REGMBC(0x119) REGMBC(0x11b) REGMBC(0x1ebb) | |
981 REGMBC(0x1ebd) | |
982 return; | |
983 case 'f': CASEMBC(0x1e1f) | |
984 regmbc('f'); REGMBC(0x1e1f) | |
985 return; | |
986 case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121) | |
987 CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5) | |
988 CASEMBC(0x1e21) | |
989 regmbc('g'); REGMBC(0x11d) REGMBC(0x11f) | |
990 REGMBC(0x121) REGMBC(0x123) REGMBC(0x1e5) | |
991 REGMBC(0x1e7) REGMBC(0x1f5) REGMBC(0x1e21) | |
992 return; | |
993 case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23) | |
994 CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96) | |
995 regmbc('h'); REGMBC(0x125) REGMBC(0x127) | |
996 REGMBC(0x1e23) REGMBC(0x1e27) REGMBC(0x1e29) | |
997 REGMBC(0x1e96) | |
167 | 998 return; |
6765 | 999 case 'i': case 0xec: case 0xed: case 0xee: case 0xef: |
2974 | 1000 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f) |
1001 CASEMBC(0x1d0) CASEMBC(0x1ec9) | |
6765 | 1002 regmbc('i'); regmbc(0xec); regmbc(0xed); |
1003 regmbc(0xee); regmbc(0xef); | |
2974 | 1004 REGMBC(0x129) REGMBC(0x12b) REGMBC(0x12d) |
1005 REGMBC(0x12f) REGMBC(0x1d0) REGMBC(0x1ec9) | |
1006 return; | |
1007 case 'j': CASEMBC(0x135) CASEMBC(0x1f0) | |
1008 regmbc('j'); REGMBC(0x135) REGMBC(0x1f0) | |
1009 return; | |
1010 case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31) | |
1011 CASEMBC(0x1e35) | |
1012 regmbc('k'); REGMBC(0x137) REGMBC(0x1e9) | |
1013 REGMBC(0x1e31) REGMBC(0x1e35) | |
1014 return; | |
1015 case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e) | |
1016 CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b) | |
1017 regmbc('l'); REGMBC(0x13a) REGMBC(0x13c) | |
1018 REGMBC(0x13e) REGMBC(0x140) REGMBC(0x142) | |
1019 REGMBC(0x1e3b) | |
1020 return; | |
1021 case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41) | |
1022 regmbc('m'); REGMBC(0x1e3f) REGMBC(0x1e41) | |
167 | 1023 return; |
6765 | 1024 case 'n': case 0xf1: |
2974 | 1025 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149) |
1026 CASEMBC(0x1e45) CASEMBC(0x1e49) | |
6765 | 1027 regmbc('n'); regmbc(0xf1); |
2974 | 1028 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148) |
1029 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49) | |
167 | 1030 return; |
6765 | 1031 case 'o': case 0xf2: case 0xf3: case 0xf4: case 0xf5: |
1032 case 0xf6: case 0xf8: | |
2974 | 1033 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1) |
1034 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf) | |
6765 | 1035 regmbc('o'); regmbc(0xf2); regmbc(0xf3); |
1036 regmbc(0xf4); regmbc(0xf5); regmbc(0xf6); | |
1037 regmbc(0xf8); | |
2974 | 1038 REGMBC(0x14d) REGMBC(0x14f) REGMBC(0x151) |
1039 REGMBC(0x1a1) REGMBC(0x1d2) REGMBC(0x1eb) | |
1040 REGMBC(0x1ed) REGMBC(0x1ecf) | |
1041 return; | |
1042 case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57) | |
1043 regmbc('p'); REGMBC(0x1e55) REGMBC(0x1e57) | |
1044 return; | |
1045 case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159) | |
1046 CASEMBC(0x1e59) CASEMBC(0x1e5f) | |
1047 regmbc('r'); REGMBC(0x155) REGMBC(0x157) REGMBC(0x159) | |
1048 REGMBC(0x1e59) REGMBC(0x1e5f) | |
1049 return; | |
1050 case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f) | |
1051 CASEMBC(0x161) CASEMBC(0x1e61) | |
1052 regmbc('s'); REGMBC(0x15b) REGMBC(0x15d) | |
1053 REGMBC(0x15f) REGMBC(0x161) REGMBC(0x1e61) | |
1054 return; | |
1055 case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167) | |
1056 CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97) | |
1057 regmbc('t'); REGMBC(0x163) REGMBC(0x165) REGMBC(0x167) | |
1058 REGMBC(0x1e6b) REGMBC(0x1e6f) REGMBC(0x1e97) | |
167 | 1059 return; |
6765 | 1060 case 'u': case 0xf9: case 0xfa: case 0xfb: case 0xfc: |
2974 | 1061 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f) |
1062 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4) | |
1063 CASEMBC(0x1ee7) | |
6765 | 1064 regmbc('u'); regmbc(0xf9); regmbc(0xfa); |
1065 regmbc(0xfb); regmbc(0xfc); | |
2974 | 1066 REGMBC(0x169) REGMBC(0x16b) REGMBC(0x16d) |
1067 REGMBC(0x16f) REGMBC(0x171) REGMBC(0x173) | |
1068 REGMBC(0x1b0) REGMBC(0x1d4) REGMBC(0x1ee7) | |
1069 return; | |
1070 case 'v': CASEMBC(0x1e7d) | |
1071 regmbc('v'); REGMBC(0x1e7d) | |
1072 return; | |
1073 case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83) | |
1074 CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98) | |
1075 regmbc('w'); REGMBC(0x175) REGMBC(0x1e81) | |
1076 REGMBC(0x1e83) REGMBC(0x1e85) REGMBC(0x1e87) | |
1077 REGMBC(0x1e98) | |
1078 return; | |
1079 case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d) | |
1080 regmbc('x'); REGMBC(0x1e8b) REGMBC(0x1e8d) | |
167 | 1081 return; |
6765 | 1082 case 'y': case 0xfd: case 0xff: |
2974 | 1083 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99) |
1084 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9) | |
6765 | 1085 regmbc('y'); regmbc(0xfd); regmbc(0xff); |
2974 | 1086 REGMBC(0x177) REGMBC(0x1e8f) REGMBC(0x1e99) |
1087 REGMBC(0x1ef3) REGMBC(0x1ef7) REGMBC(0x1ef9) | |
1088 return; | |
1089 case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e) | |
1090 CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95) | |
1091 regmbc('z'); REGMBC(0x17a) REGMBC(0x17c) | |
1092 REGMBC(0x17e) REGMBC(0x1b6) REGMBC(0x1e91) | |
1093 REGMBC(0x1e95) | |
167 | 1094 return; |
1095 } | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
1096 #endif |
167 | 1097 } |
1098 regmbc(c); | |
1099 } | |
1100 | |
1101 /* | |
1102 * Check for a collating element "[.a.]". "pp" points to the '['. | |
1103 * Returns a character. Zero means that no item was recognized. Otherwise | |
1104 * "pp" is advanced to after the item. | |
1105 * Currently only single characters are recognized! | |
1106 */ | |
1107 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1108 get_coll_element(char_u **pp) |
167 | 1109 { |
1110 int c; | |
1111 int l = 1; | |
1112 char_u *p = *pp; | |
1113 | |
15860
9cd9bf2897de
patch 8.1.0937: invalid memory access in search pattern
Bram Moolenaar <Bram@vim.org>
parents:
15856
diff
changeset
|
1114 if (p[0] != NUL && p[1] == '.' && p[2] != NUL) |
167 | 1115 { |
1116 if (has_mbyte) | |
474 | 1117 l = (*mb_ptr2len)(p + 2); |
167 | 1118 if (p[l + 2] == '.' && p[l + 3] == ']') |
1119 { | |
1120 if (has_mbyte) | |
1121 c = mb_ptr2char(p + 2); | |
1122 else | |
1123 c = p[2]; | |
1124 *pp += l + 4; | |
1125 return c; | |
1126 } | |
1127 } | |
1128 return 0; | |
1129 } | |
1130 | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1131 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
|
1132 static int reg_cpo_bsl; /* 'cpoptions' contains '\' flag */ |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1133 |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1134 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1135 get_cpo_flags(void) |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1136 { |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1137 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
|
1138 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
|
1139 } |
167 | 1140 |
1141 /* | |
1142 * Skip over a "[]" range. | |
1143 * "p" must point to the character after the '['. | |
1144 * The returned pointer is on the matching ']', or the terminating NUL. | |
1145 */ | |
1146 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1147 skip_anyof(char_u *p) |
167 | 1148 { |
1149 int l; | |
1150 | |
1151 if (*p == '^') /* Complement of range. */ | |
1152 ++p; | |
1153 if (*p == ']' || *p == '-') | |
1154 ++p; | |
1155 while (*p != NUL && *p != ']') | |
1156 { | |
474 | 1157 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
167 | 1158 p += l; |
1159 else | |
1160 if (*p == '-') | |
1161 { | |
1162 ++p; | |
1163 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
|
1164 MB_PTR_ADV(p); |
167 | 1165 } |
1166 else if (*p == '\\' | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1167 && !reg_cpo_bsl |
167 | 1168 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1169 || (!reg_cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL))) |
167 | 1170 p += 2; |
1171 else if (*p == '[') | |
1172 { | |
1173 if (get_char_class(&p) == CLASS_NONE | |
1174 && get_equi_class(&p) == 0 | |
6830 | 1175 && get_coll_element(&p) == 0 |
1176 && *p != NUL) | |
1177 ++p; /* it is not a class name and not NUL */ | |
167 | 1178 } |
1179 else | |
1180 ++p; | |
1181 } | |
1182 | |
1183 return p; | |
1184 } | |
1185 | |
1186 /* | |
7 | 1187 * Skip past regular expression. |
153 | 1188 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc). |
7 | 1189 * Take care of characters with a backslash in front of it. |
1190 * Skip strings inside [ and ]. | |
1191 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the | |
1192 * expression and change "\?" to "?". If "*newp" is not NULL the expression | |
1193 * is changed in-place. | |
1194 */ | |
1195 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1196 skip_regexp( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1197 char_u *startp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1198 int dirc, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1199 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1200 char_u **newp) |
7 | 1201 { |
1202 int mymagic; | |
1203 char_u *p = startp; | |
1204 | |
1205 if (magic) | |
1206 mymagic = MAGIC_ON; | |
1207 else | |
1208 mymagic = MAGIC_OFF; | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1209 get_cpo_flags(); |
7 | 1210 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1211 for (; p[0] != NUL; MB_PTR_ADV(p)) |
7 | 1212 { |
1213 if (p[0] == dirc) /* found end of regexp */ | |
1214 break; | |
1215 if ((p[0] == '[' && mymagic >= MAGIC_ON) | |
1216 || (p[0] == '\\' && p[1] == '[' && mymagic <= MAGIC_OFF)) | |
1217 { | |
1218 p = skip_anyof(p + 1); | |
1219 if (p[0] == NUL) | |
1220 break; | |
1221 } | |
1222 else if (p[0] == '\\' && p[1] != NUL) | |
1223 { | |
1224 if (dirc == '?' && newp != NULL && p[1] == '?') | |
1225 { | |
1226 /* change "\?" to "?", make a copy first. */ | |
1227 if (*newp == NULL) | |
1228 { | |
1229 *newp = vim_strsave(startp); | |
1230 if (*newp != NULL) | |
1231 p = *newp + (p - startp); | |
1232 } | |
1233 if (*newp != NULL) | |
1621 | 1234 STRMOVE(p, p + 1); |
7 | 1235 else |
1236 ++p; | |
1237 } | |
1238 else | |
1239 ++p; /* skip next character */ | |
1240 if (*p == 'v') | |
1241 mymagic = MAGIC_ALL; | |
1242 else if (*p == 'V') | |
1243 mymagic = MAGIC_NONE; | |
1244 } | |
1245 } | |
1246 return p; | |
1247 } | |
1248 | |
11525
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1249 /* |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1250 * 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
|
1251 * brace. |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1252 * 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
|
1253 * (+*=): 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
|
1254 */ |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1255 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
|
1256 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
|
1257 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1258 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
|
1259 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1260 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
|
1261 |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1262 /* 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
|
1263 * 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
|
1264 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
|
1265 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
|
1266 break; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1267 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
|
1268 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
1269 emsg(_("E65: Illegal back reference")); |
11525
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1270 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
|
1271 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
|
1272 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1273 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1274 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
|
1275 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1276 |
7 | 1277 /* |
4444 | 1278 * bt_regcomp() - compile a regular expression into internal code for the |
1279 * traditional back track matcher. | |
41 | 1280 * Returns the program in allocated space. Returns NULL for an error. |
7 | 1281 * |
1282 * We can't allocate space until we know how big the compiled form will be, | |
1283 * but we can't compile it (and thus know how big it is) until we've got a | |
1284 * place to put the code. So we cheat: we compile it twice, once with code | |
1285 * generation turned off and size counting turned on, and once "for real". | |
1286 * This also means that we don't allocate space until we are sure that the | |
1287 * thing really will compile successfully, and we never have to move the | |
1288 * code and thus invalidate pointers into it. (Note that it has to be in | |
1289 * one piece because vim_free() must be able to free it all.) | |
1290 * | |
1291 * Whether upper/lower case is to be ignored is decided when executing the | |
1292 * program, it does not matter here. | |
1293 * | |
1294 * Beware that the optimization-preparation code in here knows about some | |
1295 * of the structure of the compiled regexp. | |
1296 * "re_flags": RE_MAGIC and/or RE_STRING. | |
1297 */ | |
4444 | 1298 static regprog_T * |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1299 bt_regcomp(char_u *expr, int re_flags) |
7 | 1300 { |
4444 | 1301 bt_regprog_T *r; |
7 | 1302 char_u *scan; |
1303 char_u *longest; | |
1304 int len; | |
1305 int flags; | |
1306 | |
1307 if (expr == NULL) | |
1308 EMSG_RET_NULL(_(e_null)); | |
1309 | |
1310 init_class_tab(); | |
1311 | |
1312 /* | |
1313 * First pass: determine size, legality. | |
1314 */ | |
1315 regcomp_start(expr, re_flags); | |
1316 regcode = JUST_CALC_SIZE; | |
1317 regc(REGMAGIC); | |
1318 if (reg(REG_NOPAREN, &flags) == NULL) | |
1319 return NULL; | |
1320 | |
1321 /* Allocate space. */ | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
1322 r = alloc(sizeof(bt_regprog_T) + regsize); |
7 | 1323 if (r == NULL) |
1324 return NULL; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
1325 r->re_in_use = FALSE; |
7 | 1326 |
1327 /* | |
1328 * Second pass: emit code. | |
1329 */ | |
1330 regcomp_start(expr, re_flags); | |
1331 regcode = r->program; | |
1332 regc(REGMAGIC); | |
2010 | 1333 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong) |
7 | 1334 { |
1335 vim_free(r); | |
2010 | 1336 if (reg_toolong) |
1337 EMSG_RET_NULL(_("E339: Pattern too long")); | |
7 | 1338 return NULL; |
1339 } | |
1340 | |
1341 /* Dig out information for optimizations. */ | |
1342 r->regstart = NUL; /* Worst-case defaults. */ | |
1343 r->reganch = 0; | |
1344 r->regmust = NULL; | |
1345 r->regmlen = 0; | |
1346 r->regflags = regflags; | |
1347 if (flags & HASNL) | |
1348 r->regflags |= RF_HASNL; | |
1349 if (flags & HASLOOKBH) | |
1350 r->regflags |= RF_LOOKBH; | |
1351 #ifdef FEAT_SYN_HL | |
1352 /* Remember whether this pattern has any \z specials in it. */ | |
1353 r->reghasz = re_has_z; | |
1354 #endif | |
1355 scan = r->program + 1; /* First BRANCH. */ | |
1356 if (OP(regnext(scan)) == END) /* Only one top-level choice. */ | |
1357 { | |
1358 scan = OPERAND(scan); | |
1359 | |
1360 /* Starting-point info. */ | |
1361 if (OP(scan) == BOL || OP(scan) == RE_BOF) | |
1362 { | |
1363 r->reganch++; | |
1364 scan = regnext(scan); | |
1365 } | |
1366 | |
1367 if (OP(scan) == EXACTLY) | |
1368 { | |
1369 if (has_mbyte) | |
1370 r->regstart = (*mb_ptr2char)(OPERAND(scan)); | |
1371 else | |
1372 r->regstart = *OPERAND(scan); | |
1373 } | |
1374 else if ((OP(scan) == BOW | |
1375 || OP(scan) == EOW | |
1376 || OP(scan) == NOTHING | |
1377 || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN | |
1378 || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE) | |
1379 && OP(regnext(scan)) == EXACTLY) | |
1380 { | |
1381 if (has_mbyte) | |
1382 r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan))); | |
1383 else | |
1384 r->regstart = *OPERAND(regnext(scan)); | |
1385 } | |
1386 | |
1387 /* | |
1388 * If there's something expensive in the r.e., find the longest | |
1389 * literal string that must appear and make it the regmust. Resolve | |
1390 * ties in favor of later strings, since the regstart check works | |
1391 * with the beginning of the r.e. and avoiding duplication | |
1392 * strengthens checking. Not a strong reason, but sufficient in the | |
1393 * absence of others. | |
1394 */ | |
1395 /* | |
1396 * When the r.e. starts with BOW, it is faster to look for a regmust | |
1397 * first. Used a lot for "#" and "*" commands. (Added by mool). | |
1398 */ | |
1399 if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW) | |
1400 && !(flags & HASNL)) | |
1401 { | |
1402 longest = NULL; | |
1403 len = 0; | |
1404 for (; scan != NULL; scan = regnext(scan)) | |
1405 if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len) | |
1406 { | |
1407 longest = OPERAND(scan); | |
1408 len = (int)STRLEN(OPERAND(scan)); | |
1409 } | |
1410 r->regmust = longest; | |
1411 r->regmlen = len; | |
1412 } | |
1413 } | |
4444 | 1414 #ifdef BT_REGEXP_DUMP |
7 | 1415 regdump(expr, r); |
1416 #endif | |
4444 | 1417 r->engine = &bt_regengine; |
1418 return (regprog_T *)r; | |
7 | 1419 } |
1420 | |
1421 /* | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1422 * 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
|
1423 */ |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1424 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1425 bt_regfree(regprog_T *prog) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1426 { |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1427 vim_free(prog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1428 } |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1429 |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1430 /* |
7 | 1431 * Setup to parse the regexp. Used once to get the length and once to do it. |
1432 */ | |
1433 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1434 regcomp_start( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1435 char_u *expr, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1436 int re_flags) /* see vim_regcomp() */ |
7 | 1437 { |
1438 initchr(expr); | |
1439 if (re_flags & RE_MAGIC) | |
1440 reg_magic = MAGIC_ON; | |
1441 else | |
1442 reg_magic = MAGIC_OFF; | |
1443 reg_string = (re_flags & RE_STRING); | |
481 | 1444 reg_strict = (re_flags & RE_STRICT); |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1445 get_cpo_flags(); |
7 | 1446 |
1447 num_complex_braces = 0; | |
1448 regnpar = 1; | |
1449 vim_memset(had_endbrace, 0, sizeof(had_endbrace)); | |
1450 #ifdef FEAT_SYN_HL | |
1451 regnzpar = 1; | |
1452 re_has_z = 0; | |
1453 #endif | |
1454 regsize = 0L; | |
2010 | 1455 reg_toolong = FALSE; |
7 | 1456 regflags = 0; |
1457 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1458 had_eol = FALSE; | |
1459 #endif | |
1460 } | |
1461 | |
1462 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1463 /* | |
1464 * Check if during the previous call to vim_regcomp the EOL item "$" has been | |
1465 * found. This is messy, but it works fine. | |
1466 */ | |
1467 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1468 vim_regcomp_had_eol(void) |
7 | 1469 { |
1470 return had_eol; | |
1471 } | |
1472 #endif | |
1473 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
1474 // 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
|
1475 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
|
1476 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
|
1477 |
7 | 1478 /* |
4444 | 1479 * Parse regular expression, i.e. main body or parenthesized thing. |
7 | 1480 * |
1481 * Caller must absorb opening parenthesis. | |
1482 * | |
1483 * Combining parenthesis handling with the base level of regular expression | |
1484 * is a trifle forced, but the need to tie the tails of the branches to what | |
1485 * follows makes it hard to avoid. | |
1486 */ | |
1487 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1488 reg( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1489 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
|
1490 int *flagp) |
7 | 1491 { |
1492 char_u *ret; | |
1493 char_u *br; | |
1494 char_u *ender; | |
1495 int parno = 0; | |
1496 int flags; | |
1497 | |
1498 *flagp = HASWIDTH; /* Tentatively. */ | |
1499 | |
1500 #ifdef FEAT_SYN_HL | |
1501 if (paren == REG_ZPAREN) | |
1502 { | |
1503 /* Make a ZOPEN node. */ | |
1504 if (regnzpar >= NSUBEXP) | |
1505 EMSG_RET_NULL(_("E50: Too many \\z(")); | |
1506 parno = regnzpar; | |
1507 regnzpar++; | |
1508 ret = regnode(ZOPEN + parno); | |
1509 } | |
1510 else | |
1511 #endif | |
1512 if (paren == REG_PAREN) | |
1513 { | |
1514 /* Make a MOPEN node. */ | |
1515 if (regnpar >= NSUBEXP) | |
4444 | 1516 EMSG2_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL); |
7 | 1517 parno = regnpar; |
1518 ++regnpar; | |
1519 ret = regnode(MOPEN + parno); | |
1520 } | |
1521 else if (paren == REG_NPAREN) | |
1522 { | |
1523 /* Make a NOPEN node. */ | |
1524 ret = regnode(NOPEN); | |
1525 } | |
1526 else | |
1527 ret = NULL; | |
1528 | |
1529 /* Pick up the branches, linking them together. */ | |
1530 br = regbranch(&flags); | |
1531 if (br == NULL) | |
1532 return NULL; | |
1533 if (ret != NULL) | |
1534 regtail(ret, br); /* [MZ]OPEN -> first. */ | |
1535 else | |
1536 ret = br; | |
1537 /* If one of the branches can be zero-width, the whole thing can. | |
1538 * If one of the branches has * at start or matches a line-break, the | |
1539 * whole thing can. */ | |
1540 if (!(flags & HASWIDTH)) | |
1541 *flagp &= ~HASWIDTH; | |
1542 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1543 while (peekchr() == Magic('|')) | |
1544 { | |
1545 skipchr(); | |
1546 br = regbranch(&flags); | |
2010 | 1547 if (br == NULL || reg_toolong) |
7 | 1548 return NULL; |
1549 regtail(ret, br); /* BRANCH -> BRANCH. */ | |
1550 if (!(flags & HASWIDTH)) | |
1551 *flagp &= ~HASWIDTH; | |
1552 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1553 } | |
1554 | |
1555 /* Make a closing node, and hook it on the end. */ | |
1556 ender = regnode( | |
1557 #ifdef FEAT_SYN_HL | |
1558 paren == REG_ZPAREN ? ZCLOSE + parno : | |
1559 #endif | |
1560 paren == REG_PAREN ? MCLOSE + parno : | |
1561 paren == REG_NPAREN ? NCLOSE : END); | |
1562 regtail(ret, ender); | |
1563 | |
1564 /* Hook the tails of the branches to the closing node. */ | |
1565 for (br = ret; br != NULL; br = regnext(br)) | |
1566 regoptail(br, ender); | |
1567 | |
1568 /* Check for proper termination. */ | |
1569 if (paren != REG_NOPAREN && getchr() != Magic(')')) | |
1570 { | |
1571 #ifdef FEAT_SYN_HL | |
1572 if (paren == REG_ZPAREN) | |
308 | 1573 EMSG_RET_NULL(_("E52: Unmatched \\z(")); |
7 | 1574 else |
1575 #endif | |
1576 if (paren == REG_NPAREN) | |
4444 | 1577 EMSG2_RET_NULL(_(e_unmatchedpp), reg_magic == MAGIC_ALL); |
7 | 1578 else |
4444 | 1579 EMSG2_RET_NULL(_(e_unmatchedp), reg_magic == MAGIC_ALL); |
7 | 1580 } |
1581 else if (paren == REG_NOPAREN && peekchr() != NUL) | |
1582 { | |
1583 if (curchr == Magic(')')) | |
4444 | 1584 EMSG2_RET_NULL(_(e_unmatchedpar), reg_magic == MAGIC_ALL); |
7 | 1585 else |
308 | 1586 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */ |
7 | 1587 /* NOTREACHED */ |
1588 } | |
1589 /* | |
1590 * Here we set the flag allowing back references to this set of | |
1591 * parentheses. | |
1592 */ | |
1593 if (paren == REG_PAREN) | |
1594 had_endbrace[parno] = TRUE; /* have seen the close paren */ | |
1595 return ret; | |
1596 } | |
1597 | |
1598 /* | |
4444 | 1599 * Parse one alternative of an | operator. |
7 | 1600 * Implements the & operator. |
1601 */ | |
1602 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1603 regbranch(int *flagp) |
7 | 1604 { |
1605 char_u *ret; | |
1606 char_u *chain = NULL; | |
1607 char_u *latest; | |
1608 int flags; | |
1609 | |
1610 *flagp = WORST | HASNL; /* Tentatively. */ | |
1611 | |
1612 ret = regnode(BRANCH); | |
1613 for (;;) | |
1614 { | |
1615 latest = regconcat(&flags); | |
1616 if (latest == NULL) | |
1617 return NULL; | |
1618 /* If one of the branches has width, the whole thing has. If one of | |
1619 * the branches anchors at start-of-line, the whole thing does. | |
1620 * If one of the branches uses look-behind, the whole thing does. */ | |
1621 *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH); | |
1622 /* If one of the branches doesn't match a line-break, the whole thing | |
1623 * doesn't. */ | |
1624 *flagp &= ~HASNL | (flags & HASNL); | |
1625 if (chain != NULL) | |
1626 regtail(chain, latest); | |
1627 if (peekchr() != Magic('&')) | |
1628 break; | |
1629 skipchr(); | |
1630 regtail(latest, regnode(END)); /* operand ends */ | |
2010 | 1631 if (reg_toolong) |
1632 break; | |
7 | 1633 reginsert(MATCH, latest); |
1634 chain = latest; | |
1635 } | |
1636 | |
1637 return ret; | |
1638 } | |
1639 | |
1640 /* | |
4444 | 1641 * Parse one alternative of an | or & operator. |
7 | 1642 * Implements the concatenation 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 regconcat(int *flagp) |
7 | 1646 { |
1647 char_u *first = NULL; | |
1648 char_u *chain = NULL; | |
1649 char_u *latest; | |
1650 int flags; | |
1651 int cont = TRUE; | |
1652 | |
1653 *flagp = WORST; /* Tentatively. */ | |
1654 | |
1655 while (cont) | |
1656 { | |
1657 switch (peekchr()) | |
1658 { | |
1659 case NUL: | |
1660 case Magic('|'): | |
1661 case Magic('&'): | |
1662 case Magic(')'): | |
1663 cont = FALSE; | |
1664 break; | |
1665 case Magic('Z'): | |
1666 regflags |= RF_ICOMBINE; | |
1667 skipchr_keepstart(); | |
1668 break; | |
1669 case Magic('c'): | |
1670 regflags |= RF_ICASE; | |
1671 skipchr_keepstart(); | |
1672 break; | |
1673 case Magic('C'): | |
1674 regflags |= RF_NOICASE; | |
1675 skipchr_keepstart(); | |
1676 break; | |
1677 case Magic('v'): | |
1678 reg_magic = MAGIC_ALL; | |
1679 skipchr_keepstart(); | |
1680 curchr = -1; | |
1681 break; | |
1682 case Magic('m'): | |
1683 reg_magic = MAGIC_ON; | |
1684 skipchr_keepstart(); | |
1685 curchr = -1; | |
1686 break; | |
1687 case Magic('M'): | |
1688 reg_magic = MAGIC_OFF; | |
1689 skipchr_keepstart(); | |
1690 curchr = -1; | |
1691 break; | |
1692 case Magic('V'): | |
1693 reg_magic = MAGIC_NONE; | |
1694 skipchr_keepstart(); | |
1695 curchr = -1; | |
1696 break; | |
1697 default: | |
1698 latest = regpiece(&flags); | |
2010 | 1699 if (latest == NULL || reg_toolong) |
7 | 1700 return NULL; |
1701 *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH); | |
1702 if (chain == NULL) /* First piece. */ | |
1703 *flagp |= flags & SPSTART; | |
1704 else | |
1705 regtail(chain, latest); | |
1706 chain = latest; | |
1707 if (first == NULL) | |
1708 first = latest; | |
1709 break; | |
1710 } | |
1711 } | |
1712 if (first == NULL) /* Loop ran zero times. */ | |
1713 first = regnode(NOTHING); | |
1714 return first; | |
1715 } | |
1716 | |
1717 /* | |
4444 | 1718 * Parse something followed by possible [*+=]. |
7 | 1719 * |
1720 * Note that the branching code sequences used for = and the general cases | |
1721 * of * and + are somewhat optimized: they use the same NOTHING node as | |
1722 * both the endmarker for their branch list and the body of the last branch. | |
1723 * It might seem that this node could be dispensed with entirely, but the | |
1724 * endmarker role is not redundant. | |
1725 */ | |
1726 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1727 regpiece(int *flagp) |
7 | 1728 { |
1729 char_u *ret; | |
1730 int op; | |
1731 char_u *next; | |
1732 int flags; | |
1733 long minval; | |
1734 long maxval; | |
1735 | |
1736 ret = regatom(&flags); | |
1737 if (ret == NULL) | |
1738 return NULL; | |
1739 | |
1740 op = peekchr(); | |
1741 if (re_multi_type(op) == NOT_MULTI) | |
1742 { | |
1743 *flagp = flags; | |
1744 return ret; | |
1745 } | |
1746 /* default flags */ | |
1747 *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH))); | |
1748 | |
1749 skipchr(); | |
1750 switch (op) | |
1751 { | |
1752 case Magic('*'): | |
1753 if (flags & SIMPLE) | |
1754 reginsert(STAR, ret); | |
1755 else | |
1756 { | |
1757 /* Emit x* as (x&|), where & means "self". */ | |
1758 reginsert(BRANCH, ret); /* Either x */ | |
1759 regoptail(ret, regnode(BACK)); /* and loop */ | |
1760 regoptail(ret, ret); /* back */ | |
1761 regtail(ret, regnode(BRANCH)); /* or */ | |
1762 regtail(ret, regnode(NOTHING)); /* null. */ | |
1763 } | |
1764 break; | |
1765 | |
1766 case Magic('+'): | |
1767 if (flags & SIMPLE) | |
1768 reginsert(PLUS, ret); | |
1769 else | |
1770 { | |
1771 /* Emit x+ as x(&|), where & means "self". */ | |
1772 next = regnode(BRANCH); /* Either */ | |
1773 regtail(ret, next); | |
233 | 1774 regtail(regnode(BACK), ret); /* loop back */ |
7 | 1775 regtail(next, regnode(BRANCH)); /* or */ |
1776 regtail(ret, regnode(NOTHING)); /* null. */ | |
1777 } | |
1778 *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1779 break; | |
1780 | |
1781 case Magic('@'): | |
1782 { | |
1783 int lop = END; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1784 long nr; |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1785 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1786 nr = getdecchrs(); |
7 | 1787 switch (no_Magic(getchr())) |
1788 { | |
1789 case '=': lop = MATCH; break; /* \@= */ | |
1790 case '!': lop = NOMATCH; break; /* \@! */ | |
1791 case '>': lop = SUBPAT; break; /* \@> */ | |
1792 case '<': switch (no_Magic(getchr())) | |
1793 { | |
1794 case '=': lop = BEHIND; break; /* \@<= */ | |
1795 case '!': lop = NOBEHIND; break; /* \@<! */ | |
1796 } | |
1797 } | |
1798 if (lop == END) | |
4444 | 1799 EMSG2_RET_NULL(_("E59: invalid character after %s@"), |
7 | 1800 reg_magic == MAGIC_ALL); |
1801 /* Look behind must match with behind_pos. */ | |
1802 if (lop == BEHIND || lop == NOBEHIND) | |
1803 { | |
1804 regtail(ret, regnode(BHPOS)); | |
1805 *flagp |= HASLOOKBH; | |
1806 } | |
1807 regtail(ret, regnode(END)); /* operand ends */ | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1808 if (lop == BEHIND || lop == NOBEHIND) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1809 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1810 if (nr < 0) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1811 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
|
1812 reginsert_nr(lop, nr, ret); |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1813 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1814 else |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1815 reginsert(lop, ret); |
7 | 1816 break; |
1817 } | |
1818 | |
1819 case Magic('?'): | |
1820 case Magic('='): | |
1821 /* Emit x= as (x|) */ | |
1822 reginsert(BRANCH, ret); /* Either x */ | |
1823 regtail(ret, regnode(BRANCH)); /* or */ | |
1824 next = regnode(NOTHING); /* null. */ | |
1825 regtail(ret, next); | |
1826 regoptail(ret, next); | |
1827 break; | |
1828 | |
1829 case Magic('{'): | |
1830 if (!read_limits(&minval, &maxval)) | |
1831 return NULL; | |
1832 if (flags & SIMPLE) | |
1833 { | |
1834 reginsert(BRACE_SIMPLE, ret); | |
1835 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1836 } | |
1837 else | |
1838 { | |
1839 if (num_complex_braces >= 10) | |
4444 | 1840 EMSG2_RET_NULL(_("E60: Too many complex %s{...}s"), |
7 | 1841 reg_magic == MAGIC_ALL); |
1842 reginsert(BRACE_COMPLEX + num_complex_braces, ret); | |
1843 regoptail(ret, regnode(BACK)); | |
1844 regoptail(ret, ret); | |
1845 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1846 ++num_complex_braces; | |
1847 } | |
1848 if (minval > 0 && maxval > 0) | |
1849 *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1850 break; | |
1851 } | |
1852 if (re_multi_type(peekchr()) != NOT_MULTI) | |
1853 { | |
15480
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1854 // Can't have a multi follow a multi. |
7 | 1855 if (peekchr() == Magic('*')) |
15480
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1856 EMSG2_RET_NULL(_("E61: Nested %s*"), reg_magic >= MAGIC_ON); |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1857 EMSG3_RET_NULL(_("E62: Nested %s%c"), reg_magic == MAGIC_ALL, |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
1858 no_Magic(peekchr())); |
7 | 1859 } |
1860 | |
1861 return ret; | |
1862 } | |
1863 | |
4444 | 1864 /* When making changes to classchars also change nfa_classcodes. */ |
1865 static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU"; | |
1866 static int classcodes[] = { | |
1867 ANY, IDENT, SIDENT, KWORD, SKWORD, | |
1868 FNAME, SFNAME, PRINT, SPRINT, | |
1869 WHITE, NWHITE, DIGIT, NDIGIT, | |
1870 HEX, NHEX, OCTAL, NOCTAL, | |
1871 WORD, NWORD, HEAD, NHEAD, | |
1872 ALPHA, NALPHA, LOWER, NLOWER, | |
1873 UPPER, NUPPER | |
1874 }; | |
1875 | |
7 | 1876 /* |
4444 | 1877 * Parse the lowest level. |
7 | 1878 * |
1879 * Optimization: gobbles an entire sequence of ordinary characters so that | |
1880 * it can turn them into a single node, which is smaller to store and | |
1881 * faster to run. Don't do this when one_exactly is set. | |
1882 */ | |
1883 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1884 regatom(int *flagp) |
7 | 1885 { |
1886 char_u *ret; | |
1887 int flags; | |
1888 int c; | |
1889 char_u *p; | |
1890 int extra = 0; | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1891 int save_prev_at_start = prev_at_start; |
7 | 1892 |
1893 *flagp = WORST; /* Tentatively. */ | |
1894 | |
1895 c = getchr(); | |
1896 switch (c) | |
1897 { | |
1898 case Magic('^'): | |
1899 ret = regnode(BOL); | |
1900 break; | |
1901 | |
1902 case Magic('$'): | |
1903 ret = regnode(EOL); | |
1904 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1905 had_eol = TRUE; | |
1906 #endif | |
1907 break; | |
1908 | |
1909 case Magic('<'): | |
1910 ret = regnode(BOW); | |
1911 break; | |
1912 | |
1913 case Magic('>'): | |
1914 ret = regnode(EOW); | |
1915 break; | |
1916 | |
1917 case Magic('_'): | |
1918 c = no_Magic(getchr()); | |
1919 if (c == '^') /* "\_^" is start-of-line */ | |
1920 { | |
1921 ret = regnode(BOL); | |
1922 break; | |
1923 } | |
1924 if (c == '$') /* "\_$" is end-of-line */ | |
1925 { | |
1926 ret = regnode(EOL); | |
1927 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1928 had_eol = TRUE; | |
1929 #endif | |
1930 break; | |
1931 } | |
1932 | |
1933 extra = ADD_NL; | |
1934 *flagp |= HASNL; | |
1935 | |
1936 /* "\_[" is character range plus newline */ | |
1937 if (c == '[') | |
1938 goto collection; | |
1939 | |
1940 /* "\_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
|
1941 /* FALLTHROUGH */ |
7 | 1942 |
1943 /* | |
1944 * Character classes. | |
1945 */ | |
1946 case Magic('.'): | |
1947 case Magic('i'): | |
1948 case Magic('I'): | |
1949 case Magic('k'): | |
1950 case Magic('K'): | |
1951 case Magic('f'): | |
1952 case Magic('F'): | |
1953 case Magic('p'): | |
1954 case Magic('P'): | |
1955 case Magic('s'): | |
1956 case Magic('S'): | |
1957 case Magic('d'): | |
1958 case Magic('D'): | |
1959 case Magic('x'): | |
1960 case Magic('X'): | |
1961 case Magic('o'): | |
1962 case Magic('O'): | |
1963 case Magic('w'): | |
1964 case Magic('W'): | |
1965 case Magic('h'): | |
1966 case Magic('H'): | |
1967 case Magic('a'): | |
1968 case Magic('A'): | |
1969 case Magic('l'): | |
1970 case Magic('L'): | |
1971 case Magic('u'): | |
1972 case Magic('U'): | |
1973 p = vim_strchr(classchars, no_Magic(c)); | |
1974 if (p == NULL) | |
1975 EMSG_RET_NULL(_("E63: invalid use of \\_")); | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
1976 |
714 | 1977 /* When '.' is followed by a composing char ignore the dot, so that |
1978 * the composing char is matched here. */ | |
1979 if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr())) | |
1980 { | |
1981 c = getchr(); | |
1982 goto do_multibyte; | |
1983 } | |
7 | 1984 ret = regnode(classcodes[p - classchars] + extra); |
1985 *flagp |= HASWIDTH | SIMPLE; | |
1986 break; | |
1987 | |
1988 case Magic('n'): | |
1989 if (reg_string) | |
1990 { | |
1991 /* In a string "\n" matches a newline character. */ | |
1992 ret = regnode(EXACTLY); | |
1993 regc(NL); | |
1994 regc(NUL); | |
1995 *flagp |= HASWIDTH | SIMPLE; | |
1996 } | |
1997 else | |
1998 { | |
1999 /* In buffer text "\n" matches the end of a line. */ | |
2000 ret = regnode(NEWL); | |
2001 *flagp |= HASWIDTH | HASNL; | |
2002 } | |
2003 break; | |
2004 | |
2005 case Magic('('): | |
2006 if (one_exactly) | |
2007 EMSG_ONE_RET_NULL; | |
2008 ret = reg(REG_PAREN, &flags); | |
2009 if (ret == NULL) | |
2010 return NULL; | |
2011 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2012 break; | |
2013 | |
2014 case NUL: | |
2015 case Magic('|'): | |
2016 case Magic('&'): | |
2017 case Magic(')'): | |
1468 | 2018 if (one_exactly) |
2019 EMSG_ONE_RET_NULL; | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
2020 IEMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */ |
7 | 2021 /* NOTREACHED */ |
2022 | |
2023 case Magic('='): | |
2024 case Magic('?'): | |
2025 case Magic('+'): | |
2026 case Magic('@'): | |
2027 case Magic('{'): | |
2028 case Magic('*'): | |
2029 c = no_Magic(c); | |
15480
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2030 EMSG3_RET_NULL(_("E64: %s%c follows nothing"), |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
2031 (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL), c); |
7 | 2032 /* NOTREACHED */ |
2033 | |
2034 case Magic('~'): /* previous substitute pattern */ | |
359 | 2035 if (reg_prev_sub != NULL) |
7 | 2036 { |
2037 char_u *lp; | |
2038 | |
2039 ret = regnode(EXACTLY); | |
2040 lp = reg_prev_sub; | |
2041 while (*lp != NUL) | |
2042 regc(*lp++); | |
2043 regc(NUL); | |
2044 if (*reg_prev_sub != NUL) | |
2045 { | |
2046 *flagp |= HASWIDTH; | |
2047 if ((lp - reg_prev_sub) == 1) | |
2048 *flagp |= SIMPLE; | |
2049 } | |
2050 } | |
2051 else | |
2052 EMSG_RET_NULL(_(e_nopresub)); | |
2053 break; | |
2054 | |
2055 case Magic('1'): | |
2056 case Magic('2'): | |
2057 case Magic('3'): | |
2058 case Magic('4'): | |
2059 case Magic('5'): | |
2060 case Magic('6'): | |
2061 case Magic('7'): | |
2062 case Magic('8'): | |
2063 case Magic('9'): | |
2064 { | |
2065 int refnum; | |
2066 | |
2067 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
|
2068 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
|
2069 return NULL; |
7 | 2070 ret = regnode(BACKREF + refnum); |
2071 } | |
2072 break; | |
2073 | |
2074 case Magic('z'): | |
2075 { | |
2076 c = no_Magic(getchr()); | |
2077 switch (c) | |
2078 { | |
741 | 2079 #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
|
2080 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
|
2081 EMSG_RET_NULL(_(e_z_not_allowed)); |
7 | 2082 if (one_exactly) |
2083 EMSG_ONE_RET_NULL; | |
2084 ret = reg(REG_ZPAREN, &flags); | |
2085 if (ret == NULL) | |
2086 return NULL; | |
2087 *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH); | |
2088 re_has_z = REX_SET; | |
2089 break; | |
2090 | |
2091 case '1': | |
2092 case '2': | |
2093 case '3': | |
2094 case '4': | |
2095 case '5': | |
2096 case '6': | |
2097 case '7': | |
2098 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
|
2099 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
|
2100 EMSG_RET_NULL(_(e_z1_not_allowed)); |
7 | 2101 ret = regnode(ZREF + c - '0'); |
2102 re_has_z = REX_USE; | |
2103 break; | |
741 | 2104 #endif |
7 | 2105 |
2106 case 's': ret = regnode(MOPEN + 0); | |
6203 | 2107 if (re_mult_next("\\zs") == FAIL) |
2108 return NULL; | |
7 | 2109 break; |
2110 | |
2111 case 'e': ret = regnode(MCLOSE + 0); | |
6203 | 2112 if (re_mult_next("\\ze") == FAIL) |
2113 return NULL; | |
7 | 2114 break; |
2115 | |
2116 default: EMSG_RET_NULL(_("E68: Invalid character after \\z")); | |
2117 } | |
2118 } | |
2119 break; | |
2120 | |
2121 case Magic('%'): | |
2122 { | |
2123 c = no_Magic(getchr()); | |
2124 switch (c) | |
2125 { | |
2126 /* () without a back reference */ | |
2127 case '(': | |
2128 if (one_exactly) | |
2129 EMSG_ONE_RET_NULL; | |
2130 ret = reg(REG_NPAREN, &flags); | |
2131 if (ret == NULL) | |
2132 return NULL; | |
2133 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2134 break; | |
2135 | |
2136 /* Catch \%^ and \%$ regardless of where they appear in the | |
2137 * pattern -- regardless of whether or not it makes sense. */ | |
2138 case '^': | |
2139 ret = regnode(RE_BOF); | |
2140 break; | |
2141 | |
2142 case '$': | |
2143 ret = regnode(RE_EOF); | |
2144 break; | |
2145 | |
2146 case '#': | |
2147 ret = regnode(CURSOR); | |
2148 break; | |
2149 | |
639 | 2150 case 'V': |
2151 ret = regnode(RE_VISUAL); | |
2152 break; | |
2153 | |
5901 | 2154 case 'C': |
2155 ret = regnode(RE_COMPOSING); | |
2156 break; | |
2157 | |
7 | 2158 /* \%[abc]: Emit as a list of branches, all ending at the last |
2159 * branch which matches nothing. */ | |
2160 case '[': | |
2161 if (one_exactly) /* doesn't nest */ | |
2162 EMSG_ONE_RET_NULL; | |
2163 { | |
2164 char_u *lastbranch; | |
2165 char_u *lastnode = NULL; | |
2166 char_u *br; | |
2167 | |
2168 ret = NULL; | |
2169 while ((c = getchr()) != ']') | |
2170 { | |
2171 if (c == NUL) | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2172 EMSG2_RET_NULL(_(e_missing_sb), |
7 | 2173 reg_magic == MAGIC_ALL); |
2174 br = regnode(BRANCH); | |
2175 if (ret == NULL) | |
2176 ret = br; | |
2177 else | |
17444
f4ce361bb1e5
patch 8.1.1720: crash with very long %[] pattern
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2178 { |
7 | 2179 regtail(lastnode, br); |
17444
f4ce361bb1e5
patch 8.1.1720: crash with very long %[] pattern
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2180 if (reg_toolong) |
f4ce361bb1e5
patch 8.1.1720: crash with very long %[] pattern
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2181 return NULL; |
f4ce361bb1e5
patch 8.1.1720: crash with very long %[] pattern
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2182 } |
7 | 2183 |
2184 ungetchr(); | |
2185 one_exactly = TRUE; | |
2186 lastnode = regatom(flagp); | |
2187 one_exactly = FALSE; | |
2188 if (lastnode == NULL) | |
2189 return NULL; | |
2190 } | |
2191 if (ret == NULL) | |
4760
532a9855bd30
updated for version 7.3.1127
Bram Moolenaar <bram@vim.org>
parents:
4746
diff
changeset
|
2192 EMSG2_RET_NULL(_(e_empty_sb), |
7 | 2193 reg_magic == MAGIC_ALL); |
2194 lastbranch = regnode(BRANCH); | |
2195 br = regnode(NOTHING); | |
2196 if (ret != JUST_CALC_SIZE) | |
2197 { | |
2198 regtail(lastnode, br); | |
2199 regtail(lastbranch, br); | |
2200 /* connect all branches to the NOTHING | |
2201 * branch at the end */ | |
2202 for (br = ret; br != lastnode; ) | |
2203 { | |
2204 if (OP(br) == BRANCH) | |
2205 { | |
2206 regtail(br, lastbranch); | |
17444
f4ce361bb1e5
patch 8.1.1720: crash with very long %[] pattern
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2207 if (reg_toolong) |
f4ce361bb1e5
patch 8.1.1720: crash with very long %[] pattern
Bram Moolenaar <Bram@vim.org>
parents:
16825
diff
changeset
|
2208 return NULL; |
7 | 2209 br = OPERAND(br); |
2210 } | |
2211 else | |
2212 br = regnext(br); | |
2213 } | |
2214 } | |
1701 | 2215 *flagp &= ~(HASWIDTH | SIMPLE); |
7 | 2216 break; |
2217 } | |
2218 | |
24 | 2219 case 'd': /* %d123 decimal */ |
2220 case 'o': /* %o123 octal */ | |
2221 case 'x': /* %xab hex 2 */ | |
2222 case 'u': /* %uabcd hex 4 */ | |
2223 case 'U': /* %U1234abcd hex 8 */ | |
2224 { | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2225 long i; |
24 | 2226 |
2227 switch (c) | |
2228 { | |
2229 case 'd': i = getdecchrs(); break; | |
2230 case 'o': i = getoctchrs(); break; | |
2231 case 'x': i = gethexchrs(2); break; | |
2232 case 'u': i = gethexchrs(4); break; | |
2233 case 'U': i = gethexchrs(8); break; | |
2234 default: i = -1; break; | |
2235 } | |
2236 | |
15959
4feaa025491b
patch 8.1.0985: crash with large number in regexp
Bram Moolenaar <Bram@vim.org>
parents:
15935
diff
changeset
|
2237 if (i < 0 || i > INT_MAX) |
4444 | 2238 EMSG2_RET_NULL( |
24 | 2239 _("E678: Invalid character after %s%%[dxouU]"), |
2240 reg_magic == MAGIC_ALL); | |
714 | 2241 if (use_multibytecode(i)) |
2242 ret = regnode(MULTIBYTECODE); | |
2243 else | |
2244 ret = regnode(EXACTLY); | |
24 | 2245 if (i == 0) |
2246 regc(0x0a); | |
2247 else | |
2248 regmbc(i); | |
2249 regc(NUL); | |
2250 *flagp |= HASWIDTH; | |
2251 break; | |
2252 } | |
2253 | |
7 | 2254 default: |
639 | 2255 if (VIM_ISDIGIT(c) || c == '<' || c == '>' |
2256 || c == '\'') | |
7 | 2257 { |
2258 long_u n = 0; | |
2259 int cmp; | |
2260 | |
2261 cmp = c; | |
2262 if (cmp == '<' || cmp == '>') | |
2263 c = getchr(); | |
2264 while (VIM_ISDIGIT(c)) | |
2265 { | |
2266 n = n * 10 + (c - '0'); | |
2267 c = getchr(); | |
2268 } | |
639 | 2269 if (c == '\'' && n == 0) |
2270 { | |
2271 /* "\%'m", "\%<'m" and "\%>'m": Mark */ | |
2272 c = getchr(); | |
2273 ret = regnode(RE_MARK); | |
2274 if (ret == JUST_CALC_SIZE) | |
2275 regsize += 2; | |
2276 else | |
2277 { | |
2278 *regcode++ = c; | |
2279 *regcode++ = cmp; | |
2280 } | |
2281 break; | |
2282 } | |
2283 else if (c == 'l' || c == 'c' || c == 'v') | |
7 | 2284 { |
2285 if (c == 'l') | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2286 { |
7 | 2287 ret = regnode(RE_LNUM); |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2288 if (save_prev_at_start) |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2289 at_start = TRUE; |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2290 } |
7 | 2291 else if (c == 'c') |
2292 ret = regnode(RE_COL); | |
2293 else | |
2294 ret = regnode(RE_VCOL); | |
2295 if (ret == JUST_CALC_SIZE) | |
2296 regsize += 5; | |
2297 else | |
2298 { | |
2299 /* put the number and the optional | |
2300 * comparator after the opcode */ | |
2301 regcode = re_put_long(regcode, n); | |
2302 *regcode++ = cmp; | |
2303 } | |
2304 break; | |
2305 } | |
2306 } | |
2307 | |
4444 | 2308 EMSG2_RET_NULL(_("E71: Invalid character after %s%%"), |
7 | 2309 reg_magic == MAGIC_ALL); |
2310 } | |
2311 } | |
2312 break; | |
2313 | |
2314 case Magic('['): | |
2315 collection: | |
2316 { | |
2317 char_u *lp; | |
2318 | |
2319 /* | |
2320 * If there is no matching ']', we assume the '[' is a normal | |
2321 * character. This makes 'incsearch' and ":help [" work. | |
2322 */ | |
2323 lp = skip_anyof(regparse); | |
2324 if (*lp == ']') /* there is a matching ']' */ | |
2325 { | |
2326 int startc = -1; /* > 0 when next '-' is a range */ | |
2327 int endc; | |
2328 | |
2329 /* | |
2330 * In a character class, different parsing rules apply. | |
2331 * Not even \ is special anymore, nothing is. | |
2332 */ | |
2333 if (*regparse == '^') /* Complement of range. */ | |
2334 { | |
2335 ret = regnode(ANYBUT + extra); | |
2336 regparse++; | |
2337 } | |
2338 else | |
2339 ret = regnode(ANYOF + extra); | |
2340 | |
2341 /* At the start ']' and '-' mean the literal character. */ | |
2342 if (*regparse == ']' || *regparse == '-') | |
167 | 2343 { |
2344 startc = *regparse; | |
7 | 2345 regc(*regparse++); |
167 | 2346 } |
7 | 2347 |
2348 while (*regparse != NUL && *regparse != ']') | |
2349 { | |
2350 if (*regparse == '-') | |
2351 { | |
2352 ++regparse; | |
2353 /* The '-' is not used for a range at the end and | |
2354 * after or before a '\n'. */ | |
2355 if (*regparse == ']' || *regparse == NUL | |
2356 || startc == -1 | |
2357 || (regparse[0] == '\\' && regparse[1] == 'n')) | |
2358 { | |
2359 regc('-'); | |
2360 startc = '-'; /* [--x] is a range */ | |
2361 } | |
2362 else | |
2363 { | |
167 | 2364 /* Also accept "a-[.z.]" */ |
2365 endc = 0; | |
2366 if (*regparse == '[') | |
2367 endc = get_coll_element(®parse); | |
2368 if (endc == 0) | |
2369 { | |
2370 if (has_mbyte) | |
2371 endc = mb_ptr2char_adv(®parse); | |
2372 else | |
2373 endc = *regparse++; | |
2374 } | |
24 | 2375 |
2376 /* Handle \o40, \x20 and \u20AC style sequences */ | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2377 if (endc == '\\' && !reg_cpo_lit && !reg_cpo_bsl) |
24 | 2378 endc = coll_get_char(); |
2379 | |
7 | 2380 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
|
2381 EMSG_RET_NULL(_(e_reverse_range)); |
7 | 2382 if (has_mbyte && ((*mb_char2len)(startc) > 1 |
2383 || (*mb_char2len)(endc) > 1)) | |
2384 { | |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
2385 /* Limit to a range of 256 chars. */ |
7 | 2386 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
|
2387 EMSG_RET_NULL(_(e_large_class)); |
7 | 2388 while (++startc <= endc) |
2389 regmbc(startc); | |
2390 } | |
2391 else | |
2392 { | |
2393 #ifdef EBCDIC | |
2394 int alpha_only = FALSE; | |
2395 | |
2396 /* for alphabetical range skip the gaps | |
2397 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */ | |
2398 if (isalpha(startc) && isalpha(endc)) | |
2399 alpha_only = TRUE; | |
2400 #endif | |
2401 while (++startc <= endc) | |
2402 #ifdef EBCDIC | |
2403 if (!alpha_only || isalpha(startc)) | |
2404 #endif | |
2405 regc(startc); | |
2406 } | |
2407 startc = -1; | |
2408 } | |
2409 } | |
2410 /* | |
2411 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim | |
2412 * accepts "\t", "\e", etc., but only when the 'l' flag in | |
2413 * 'cpoptions' is not included. | |
167 | 2414 * Posix doesn't recognize backslash at all. |
7 | 2415 */ |
2416 else if (*regparse == '\\' | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2417 && !reg_cpo_bsl |
7 | 2418 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2419 || (!reg_cpo_lit |
7 | 2420 && vim_strchr(REGEXP_ABBR, |
2421 regparse[1]) != NULL))) | |
2422 { | |
2423 regparse++; | |
2424 if (*regparse == 'n') | |
2425 { | |
2426 /* '\n' in range: also match NL */ | |
2427 if (ret != JUST_CALC_SIZE) | |
2428 { | |
4084 | 2429 /* Using \n inside [^] does not change what |
2430 * matches. "[^\n]" is the same as ".". */ | |
2431 if (*ret == ANYOF) | |
2432 { | |
7 | 2433 *ret = ANYOF + ADD_NL; |
4084 | 2434 *flagp |= HASNL; |
2435 } | |
7 | 2436 /* else: must have had a \n already */ |
2437 } | |
2438 regparse++; | |
2439 startc = -1; | |
2440 } | |
24 | 2441 else if (*regparse == 'd' |
2442 || *regparse == 'o' | |
2443 || *regparse == 'x' | |
2444 || *regparse == 'u' | |
2445 || *regparse == 'U') | |
2446 { | |
2447 startc = coll_get_char(); | |
2448 if (startc == 0) | |
2449 regc(0x0a); | |
2450 else | |
2451 regmbc(startc); | |
2452 } | |
7 | 2453 else |
2454 { | |
2455 startc = backslash_trans(*regparse++); | |
2456 regc(startc); | |
2457 } | |
2458 } | |
2459 else if (*regparse == '[') | |
2460 { | |
2461 int c_class; | |
2462 int cu; | |
2463 | |
167 | 2464 c_class = get_char_class(®parse); |
7 | 2465 startc = -1; |
2466 /* Characters assumed to be 8 bits! */ | |
2467 switch (c_class) | |
2468 { | |
2469 case CLASS_NONE: | |
167 | 2470 c_class = get_equi_class(®parse); |
2471 if (c_class != 0) | |
2472 { | |
2473 /* produce equivalence class */ | |
2474 reg_equi_class(c_class); | |
2475 } | |
2476 else if ((c_class = | |
2477 get_coll_element(®parse)) != 0) | |
2478 { | |
2479 /* produce a collating element */ | |
2480 regmbc(c_class); | |
2481 } | |
2482 else | |
2483 { | |
2484 /* literal '[', allow [[-x] as a range */ | |
2485 startc = *regparse++; | |
2486 regc(startc); | |
2487 } | |
7 | 2488 break; |
2489 case CLASS_ALNUM: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2490 for (cu = 1; cu < 128; cu++) |
7 | 2491 if (isalnum(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2492 regmbc(cu); |
7 | 2493 break; |
2494 case CLASS_ALPHA: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2495 for (cu = 1; cu < 128; cu++) |
7 | 2496 if (isalpha(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2497 regmbc(cu); |
7 | 2498 break; |
2499 case CLASS_BLANK: | |
2500 regc(' '); | |
2501 regc('\t'); | |
2502 break; | |
2503 case CLASS_CNTRL: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2504 for (cu = 1; cu <= 127; cu++) |
7 | 2505 if (iscntrl(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2506 regmbc(cu); |
7 | 2507 break; |
2508 case CLASS_DIGIT: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2509 for (cu = 1; cu <= 127; cu++) |
7 | 2510 if (VIM_ISDIGIT(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2511 regmbc(cu); |
7 | 2512 break; |
2513 case CLASS_GRAPH: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2514 for (cu = 1; cu <= 127; cu++) |
7 | 2515 if (isgraph(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2516 regmbc(cu); |
7 | 2517 break; |
2518 case CLASS_LOWER: | |
2519 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
|
2520 if (MB_ISLOWER(cu) && cu != 170 |
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2521 && cu != 186) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2522 regmbc(cu); |
7 | 2523 break; |
2524 case CLASS_PRINT: | |
2525 for (cu = 1; cu <= 255; cu++) | |
2526 if (vim_isprintc(cu)) | |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2527 regmbc(cu); |
7 | 2528 break; |
2529 case CLASS_PUNCT: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2530 for (cu = 1; cu < 128; cu++) |
7 | 2531 if (ispunct(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2532 regmbc(cu); |
7 | 2533 break; |
2534 case CLASS_SPACE: | |
2535 for (cu = 9; cu <= 13; cu++) | |
2536 regc(cu); | |
2537 regc(' '); | |
2538 break; | |
2539 case CLASS_UPPER: | |
2540 for (cu = 1; cu <= 255; cu++) | |
1347 | 2541 if (MB_ISUPPER(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2542 regmbc(cu); |
7 | 2543 break; |
2544 case CLASS_XDIGIT: | |
2545 for (cu = 1; cu <= 255; cu++) | |
2546 if (vim_isxdigit(cu)) | |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2547 regmbc(cu); |
7 | 2548 break; |
2549 case CLASS_TAB: | |
2550 regc('\t'); | |
2551 break; | |
2552 case CLASS_RETURN: | |
2553 regc('\r'); | |
2554 break; | |
2555 case CLASS_BACKSPACE: | |
2556 regc('\b'); | |
2557 break; | |
2558 case CLASS_ESCAPE: | |
2559 regc('\033'); | |
2560 break; | |
15709
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2561 case CLASS_IDENT: |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2562 for (cu = 1; cu <= 255; cu++) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2563 if (vim_isIDc(cu)) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2564 regmbc(cu); |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2565 break; |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2566 case CLASS_KEYWORD: |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2567 for (cu = 1; cu <= 255; cu++) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2568 if (reg_iswordc(cu)) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2569 regmbc(cu); |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2570 break; |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2571 case CLASS_FNAME: |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2572 for (cu = 1; cu <= 255; cu++) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2573 if (vim_isfilec(cu)) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2574 regmbc(cu); |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
2575 break; |
7 | 2576 } |
2577 } | |
2578 else | |
2579 { | |
2580 if (has_mbyte) | |
2581 { | |
2582 int len; | |
2583 | |
2584 /* produce a multibyte character, including any | |
2585 * following composing characters */ | |
2586 startc = mb_ptr2char(regparse); | |
474 | 2587 len = (*mb_ptr2len)(regparse); |
7 | 2588 if (enc_utf8 && utf_char2len(startc) != len) |
2589 startc = -1; /* composing chars */ | |
2590 while (--len >= 0) | |
2591 regc(*regparse++); | |
2592 } | |
2593 else | |
2594 { | |
2595 startc = *regparse++; | |
2596 regc(startc); | |
2597 } | |
2598 } | |
2599 } | |
2600 regc(NUL); | |
2601 prevchr_len = 1; /* last char was the ']' */ | |
2602 if (*regparse != ']') | |
2603 EMSG_RET_NULL(_(e_toomsbra)); /* Cannot happen? */ | |
2604 skipchr(); /* let's be friends with the lexer again */ | |
2605 *flagp |= HASWIDTH | SIMPLE; | |
2606 break; | |
2607 } | |
481 | 2608 else if (reg_strict) |
4444 | 2609 EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF); |
7 | 2610 } |
2611 /* FALLTHROUGH */ | |
2612 | |
2613 default: | |
2614 { | |
2615 int len; | |
2616 | |
2617 /* A multi-byte character is handled as a separate atom if it's | |
714 | 2618 * before a multi and when it's a composing char. */ |
2619 if (use_multibytecode(c)) | |
7 | 2620 { |
714 | 2621 do_multibyte: |
7 | 2622 ret = regnode(MULTIBYTECODE); |
2623 regmbc(c); | |
2624 *flagp |= HASWIDTH | SIMPLE; | |
2625 break; | |
2626 } | |
2627 | |
2628 ret = regnode(EXACTLY); | |
2629 | |
2630 /* | |
2631 * Append characters as long as: | |
2632 * - there is no following multi, we then need the character in | |
2633 * front of it as a single character operand | |
2634 * - not running into a Magic character | |
2635 * - "one_exactly" is not set | |
2636 * But always emit at least one character. Might be a Multi, | |
2637 * e.g., a "[" without matching "]". | |
2638 */ | |
2639 for (len = 0; c != NUL && (len == 0 | |
2640 || (re_multi_type(peekchr()) == NOT_MULTI | |
2641 && !one_exactly | |
2642 && !is_Magic(c))); ++len) | |
2643 { | |
2644 c = no_Magic(c); | |
2645 if (has_mbyte) | |
2646 { | |
2647 regmbc(c); | |
2648 if (enc_utf8) | |
2649 { | |
2650 int l; | |
2651 | |
714 | 2652 /* Need to get composing character too. */ |
7 | 2653 for (;;) |
2654 { | |
714 | 2655 l = utf_ptr2len(regparse); |
2656 if (!UTF_COMPOSINGLIKE(regparse, regparse + l)) | |
7 | 2657 break; |
714 | 2658 regmbc(utf_ptr2char(regparse)); |
2659 skipchr(); | |
7 | 2660 } |
2661 } | |
2662 } | |
2663 else | |
2664 regc(c); | |
2665 c = getchr(); | |
2666 } | |
2667 ungetchr(); | |
2668 | |
2669 regc(NUL); | |
2670 *flagp |= HASWIDTH; | |
2671 if (len == 1) | |
2672 *flagp |= SIMPLE; | |
2673 } | |
2674 break; | |
2675 } | |
2676 | |
2677 return ret; | |
2678 } | |
2679 | |
714 | 2680 /* |
2681 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for | |
2682 * character "c". | |
2683 */ | |
2684 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2685 use_multibytecode(int c) |
714 | 2686 { |
2687 return has_mbyte && (*mb_char2len)(c) > 1 | |
2688 && (re_multi_type(peekchr()) != NOT_MULTI | |
2689 || (enc_utf8 && utf_iscomposing(c))); | |
2690 } | |
2691 | |
7 | 2692 /* |
4444 | 2693 * Emit a node. |
7 | 2694 * Return pointer to generated code. |
2695 */ | |
2696 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2697 regnode(int op) |
7 | 2698 { |
2699 char_u *ret; | |
2700 | |
2701 ret = regcode; | |
2702 if (ret == JUST_CALC_SIZE) | |
2703 regsize += 3; | |
2704 else | |
2705 { | |
2706 *regcode++ = op; | |
2707 *regcode++ = NUL; /* Null "next" pointer. */ | |
2708 *regcode++ = NUL; | |
2709 } | |
2710 return ret; | |
2711 } | |
2712 | |
2713 /* | |
2714 * Emit (if appropriate) a byte of code | |
2715 */ | |
2716 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2717 regc(int b) |
7 | 2718 { |
2719 if (regcode == JUST_CALC_SIZE) | |
2720 regsize++; | |
2721 else | |
2722 *regcode++ = b; | |
2723 } | |
2724 | |
2725 /* | |
2726 * Emit (if appropriate) a multi-byte character of code | |
2727 */ | |
2728 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2729 regmbc(int c) |
7 | 2730 { |
2974 | 2731 if (!has_mbyte && c > 0xff) |
2732 return; | |
7 | 2733 if (regcode == JUST_CALC_SIZE) |
2734 regsize += (*mb_char2len)(c); | |
2735 else | |
2736 regcode += (*mb_char2bytes)(c, regcode); | |
2737 } | |
2738 | |
2739 /* | |
4444 | 2740 * Insert an operator in front of already-emitted operand |
7 | 2741 * |
2742 * Means relocating the operand. | |
2743 */ | |
2744 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2745 reginsert(int op, char_u *opnd) |
7 | 2746 { |
2747 char_u *src; | |
2748 char_u *dst; | |
2749 char_u *place; | |
2750 | |
2751 if (regcode == JUST_CALC_SIZE) | |
2752 { | |
2753 regsize += 3; | |
2754 return; | |
2755 } | |
2756 src = regcode; | |
2757 regcode += 3; | |
2758 dst = regcode; | |
2759 while (src > opnd) | |
2760 *--dst = *--src; | |
2761 | |
2762 place = opnd; /* Op node, where operand used to be. */ | |
2763 *place++ = op; | |
2764 *place++ = NUL; | |
2765 *place = NUL; | |
2766 } | |
2767 | |
2768 /* | |
4444 | 2769 * 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
|
2770 * Add a number to the operator. |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2771 */ |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2772 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2773 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
|
2774 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2775 char_u *src; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2776 char_u *dst; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2777 char_u *place; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2778 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2779 if (regcode == JUST_CALC_SIZE) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2780 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2781 regsize += 7; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2782 return; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2783 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2784 src = regcode; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2785 regcode += 7; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2786 dst = regcode; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2787 while (src > opnd) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2788 *--dst = *--src; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2789 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2790 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
|
2791 *place++ = op; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2792 *place++ = NUL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2793 *place++ = NUL; |
16054
78faa25f9698
patch 8.1.1032: warnings from clang static analyzer
Bram Moolenaar <Bram@vim.org>
parents:
16040
diff
changeset
|
2794 re_put_long(place, (long_u)val); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2795 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2796 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2797 /* |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2798 * Insert an operator in front of already-emitted operand. |
7 | 2799 * The operator has the given limit values as operands. Also set next pointer. |
2800 * | |
2801 * Means relocating the operand. | |
2802 */ | |
2803 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2804 reginsert_limits( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2805 int op, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2806 long minval, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2807 long maxval, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2808 char_u *opnd) |
7 | 2809 { |
2810 char_u *src; | |
2811 char_u *dst; | |
2812 char_u *place; | |
2813 | |
2814 if (regcode == JUST_CALC_SIZE) | |
2815 { | |
2816 regsize += 11; | |
2817 return; | |
2818 } | |
2819 src = regcode; | |
2820 regcode += 11; | |
2821 dst = regcode; | |
2822 while (src > opnd) | |
2823 *--dst = *--src; | |
2824 | |
2825 place = opnd; /* Op node, where operand used to be. */ | |
2826 *place++ = op; | |
2827 *place++ = NUL; | |
2828 *place++ = NUL; | |
2829 place = re_put_long(place, (long_u)minval); | |
2830 place = re_put_long(place, (long_u)maxval); | |
2831 regtail(opnd, place); | |
2832 } | |
2833 | |
2834 /* | |
2835 * Write a long as four bytes at "p" and return pointer to the next char. | |
2836 */ | |
2837 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2838 re_put_long(char_u *p, long_u val) |
7 | 2839 { |
2840 *p++ = (char_u) ((val >> 24) & 0377); | |
2841 *p++ = (char_u) ((val >> 16) & 0377); | |
2842 *p++ = (char_u) ((val >> 8) & 0377); | |
2843 *p++ = (char_u) (val & 0377); | |
2844 return p; | |
2845 } | |
2846 | |
2847 /* | |
4444 | 2848 * Set the next-pointer at the end of a node chain. |
7 | 2849 */ |
2850 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2851 regtail(char_u *p, char_u *val) |
7 | 2852 { |
2853 char_u *scan; | |
2854 char_u *temp; | |
2855 int offset; | |
2856 | |
2857 if (p == JUST_CALC_SIZE) | |
2858 return; | |
2859 | |
2860 /* Find last node. */ | |
2861 scan = p; | |
2862 for (;;) | |
2863 { | |
2864 temp = regnext(scan); | |
2865 if (temp == NULL) | |
2866 break; | |
2867 scan = temp; | |
2868 } | |
2869 | |
233 | 2870 if (OP(scan) == BACK) |
7 | 2871 offset = (int)(scan - val); |
2872 else | |
2873 offset = (int)(val - scan); | |
2010 | 2874 /* When the offset uses more than 16 bits it can no longer fit in the two |
2974 | 2875 * bytes available. Use a global flag to avoid having to check return |
2010 | 2876 * values in too many places. */ |
2877 if (offset > 0xffff) | |
2878 reg_toolong = TRUE; | |
2879 else | |
2880 { | |
2881 *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377); | |
2882 *(scan + 2) = (char_u) (offset & 0377); | |
2883 } | |
7 | 2884 } |
2885 | |
2886 /* | |
4444 | 2887 * Like regtail, on item after a BRANCH; nop if none. |
7 | 2888 */ |
2889 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2890 regoptail(char_u *p, char_u *val) |
7 | 2891 { |
2892 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */ | |
2893 if (p == NULL || p == JUST_CALC_SIZE | |
2894 || (OP(p) != BRANCH | |
2895 && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9))) | |
2896 return; | |
2897 regtail(OPERAND(p), val); | |
2898 } | |
2899 | |
2900 /* | |
4444 | 2901 * Functions for getting characters from the regexp input. |
7 | 2902 */ |
4444 | 2903 /* |
2904 * Start parsing at "str". | |
2905 */ | |
7 | 2906 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2907 initchr(char_u *str) |
7 | 2908 { |
2909 regparse = str; | |
2910 prevchr_len = 0; | |
2911 curchr = prevprevchr = prevchr = nextchr = -1; | |
2912 at_start = TRUE; | |
2913 prev_at_start = FALSE; | |
2914 } | |
2915 | |
4444 | 2916 /* |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2917 * 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
|
2918 * starts in the same state again. |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2919 */ |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2920 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2921 save_parse_state(parse_state_T *ps) |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2922 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2923 ps->regparse = regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2924 ps->prevchr_len = prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2925 ps->curchr = curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2926 ps->prevchr = prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2927 ps->prevprevchr = prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2928 ps->nextchr = nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2929 ps->at_start = at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2930 ps->prev_at_start = prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2931 ps->regnpar = regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2932 } |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2933 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2934 /* |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2935 * Restore a previously saved parse state. |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2936 */ |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2937 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2938 restore_parse_state(parse_state_T *ps) |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2939 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2940 regparse = ps->regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2941 prevchr_len = ps->prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2942 curchr = ps->curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2943 prevchr = ps->prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2944 prevprevchr = ps->prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2945 nextchr = ps->nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2946 at_start = ps->at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2947 prev_at_start = ps->prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2948 regnpar = ps->regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2949 } |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2950 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2951 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2952 /* |
4444 | 2953 * Get the next character without advancing. |
2954 */ | |
7 | 2955 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2956 peekchr(void) |
7 | 2957 { |
167 | 2958 static int after_slash = FALSE; |
2959 | |
7 | 2960 if (curchr == -1) |
2961 { | |
2962 switch (curchr = regparse[0]) | |
2963 { | |
2964 case '.': | |
2965 case '[': | |
2966 case '~': | |
2967 /* magic when 'magic' is on */ | |
2968 if (reg_magic >= MAGIC_ON) | |
2969 curchr = Magic(curchr); | |
2970 break; | |
2971 case '(': | |
2972 case ')': | |
2973 case '{': | |
2974 case '%': | |
2975 case '+': | |
2976 case '=': | |
2977 case '?': | |
2978 case '@': | |
2979 case '!': | |
2980 case '&': | |
2981 case '|': | |
2982 case '<': | |
2983 case '>': | |
2984 case '#': /* future ext. */ | |
2985 case '"': /* future ext. */ | |
2986 case '\'': /* future ext. */ | |
2987 case ',': /* future ext. */ | |
2988 case '-': /* future ext. */ | |
2989 case ':': /* future ext. */ | |
2990 case ';': /* future ext. */ | |
2991 case '`': /* future ext. */ | |
2992 case '/': /* Can't be used in / command */ | |
2993 /* magic only after "\v" */ | |
2994 if (reg_magic == MAGIC_ALL) | |
2995 curchr = Magic(curchr); | |
2996 break; | |
2997 case '*': | |
167 | 2998 /* * is not magic as the very first character, eg "?*ptr", when |
2999 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But | |
3000 * "\(\*" is not magic, thus must be magic if "after_slash" */ | |
3001 if (reg_magic >= MAGIC_ON | |
3002 && !at_start | |
3003 && !(prev_at_start && prevchr == Magic('^')) | |
3004 && (after_slash | |
3005 || (prevchr != Magic('(') | |
3006 && prevchr != Magic('&') | |
3007 && prevchr != Magic('|')))) | |
7 | 3008 curchr = Magic('*'); |
3009 break; | |
3010 case '^': | |
3011 /* '^' is only magic as the very first character and if it's after | |
3012 * "\(", "\|", "\&' or "\n" */ | |
3013 if (reg_magic >= MAGIC_OFF | |
3014 && (at_start | |
3015 || reg_magic == MAGIC_ALL | |
3016 || prevchr == Magic('(') | |
3017 || prevchr == Magic('|') | |
3018 || prevchr == Magic('&') | |
3019 || prevchr == Magic('n') | |
3020 || (no_Magic(prevchr) == '(' | |
3021 && prevprevchr == Magic('%')))) | |
3022 { | |
3023 curchr = Magic('^'); | |
3024 at_start = TRUE; | |
3025 prev_at_start = FALSE; | |
3026 } | |
3027 break; | |
3028 case '$': | |
3029 /* '$' is only magic as the very last char and if it's in front of | |
3030 * either "\|", "\)", "\&", or "\n" */ | |
3031 if (reg_magic >= MAGIC_OFF) | |
3032 { | |
3033 char_u *p = regparse + 1; | |
6041 | 3034 int is_magic_all = (reg_magic == MAGIC_ALL); |
3035 | |
3036 /* ignore \c \C \m \M \v \V and \Z after '$' */ | |
7 | 3037 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C' |
6041 | 3038 || p[1] == 'm' || p[1] == 'M' |
3039 || p[1] == 'v' || p[1] == 'V' || p[1] == 'Z')) | |
3040 { | |
3041 if (p[1] == 'v') | |
3042 is_magic_all = TRUE; | |
3043 else if (p[1] == 'm' || p[1] == 'M' || p[1] == 'V') | |
3044 is_magic_all = FALSE; | |
7 | 3045 p += 2; |
6041 | 3046 } |
7 | 3047 if (p[0] == NUL |
3048 || (p[0] == '\\' | |
3049 && (p[1] == '|' || p[1] == '&' || p[1] == ')' | |
3050 || p[1] == 'n')) | |
6041 | 3051 || (is_magic_all |
3052 && (p[0] == '|' || p[0] == '&' || p[0] == ')')) | |
7 | 3053 || reg_magic == MAGIC_ALL) |
3054 curchr = Magic('$'); | |
3055 } | |
3056 break; | |
3057 case '\\': | |
3058 { | |
3059 int c = regparse[1]; | |
3060 | |
3061 if (c == NUL) | |
3062 curchr = '\\'; /* trailing '\' */ | |
3063 else if ( | |
3064 #ifdef EBCDIC | |
3065 vim_strchr(META, c) | |
3066 #else | |
3067 c <= '~' && META_flags[c] | |
3068 #endif | |
3069 ) | |
3070 { | |
3071 /* | |
3072 * META contains everything that may be magic sometimes, | |
3073 * except ^ and $ ("\^" and "\$" are only magic after | |
6830 | 3074 * "\V"). We now fetch the next character and toggle its |
7 | 3075 * magicness. Therefore, \ is so meta-magic that it is |
3076 * not in META. | |
3077 */ | |
3078 curchr = -1; | |
3079 prev_at_start = at_start; | |
3080 at_start = FALSE; /* be able to say "/\*ptr" */ | |
3081 ++regparse; | |
167 | 3082 ++after_slash; |
7 | 3083 peekchr(); |
3084 --regparse; | |
167 | 3085 --after_slash; |
7 | 3086 curchr = toggle_Magic(curchr); |
3087 } | |
3088 else if (vim_strchr(REGEXP_ABBR, c)) | |
3089 { | |
3090 /* | |
3091 * Handle abbreviations, like "\t" for TAB -- webb | |
3092 */ | |
3093 curchr = backslash_trans(c); | |
3094 } | |
3095 else if (reg_magic == MAGIC_NONE && (c == '$' || c == '^')) | |
3096 curchr = toggle_Magic(c); | |
3097 else | |
3098 { | |
3099 /* | |
3100 * Next character can never be (made) magic? | |
3101 * Then backslashing it won't do anything. | |
3102 */ | |
3103 if (has_mbyte) | |
3104 curchr = (*mb_ptr2char)(regparse + 1); | |
3105 else | |
3106 curchr = c; | |
3107 } | |
3108 break; | |
3109 } | |
3110 | |
3111 default: | |
3112 if (has_mbyte) | |
3113 curchr = (*mb_ptr2char)(regparse); | |
3114 } | |
3115 } | |
3116 | |
3117 return curchr; | |
3118 } | |
3119 | |
3120 /* | |
3121 * Eat one lexed character. Do this in a way that we can undo it. | |
3122 */ | |
3123 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3124 skipchr(void) |
7 | 3125 { |
3126 /* peekchr() eats a backslash, do the same here */ | |
3127 if (*regparse == '\\') | |
3128 prevchr_len = 1; | |
3129 else | |
3130 prevchr_len = 0; | |
3131 if (regparse[prevchr_len] != NUL) | |
3132 { | |
714 | 3133 if (enc_utf8) |
1449 | 3134 /* exclude composing chars that mb_ptr2len does include */ |
3135 prevchr_len += utf_ptr2len(regparse + prevchr_len); | |
714 | 3136 else if (has_mbyte) |
474 | 3137 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len); |
7 | 3138 else |
3139 ++prevchr_len; | |
3140 } | |
3141 regparse += prevchr_len; | |
3142 prev_at_start = at_start; | |
3143 at_start = FALSE; | |
3144 prevprevchr = prevchr; | |
3145 prevchr = curchr; | |
3146 curchr = nextchr; /* use previously unget char, or -1 */ | |
3147 nextchr = -1; | |
3148 } | |
3149 | |
3150 /* | |
3151 * Skip a character while keeping the value of prev_at_start for at_start. | |
3152 * prevchr and prevprevchr are also kept. | |
3153 */ | |
3154 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3155 skipchr_keepstart(void) |
7 | 3156 { |
3157 int as = prev_at_start; | |
3158 int pr = prevchr; | |
3159 int prpr = prevprevchr; | |
3160 | |
3161 skipchr(); | |
3162 at_start = as; | |
3163 prevchr = pr; | |
3164 prevprevchr = prpr; | |
3165 } | |
3166 | |
4444 | 3167 /* |
3168 * Get the next character from the pattern. We know about magic and such, so | |
3169 * therefore we need a lexical analyzer. | |
3170 */ | |
7 | 3171 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3172 getchr(void) |
7 | 3173 { |
3174 int chr = peekchr(); | |
3175 | |
3176 skipchr(); | |
3177 return chr; | |
3178 } | |
3179 | |
3180 /* | |
3181 * put character back. Works only once! | |
3182 */ | |
3183 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3184 ungetchr(void) |
7 | 3185 { |
3186 nextchr = curchr; | |
3187 curchr = prevchr; | |
3188 prevchr = prevprevchr; | |
3189 at_start = prev_at_start; | |
3190 prev_at_start = FALSE; | |
3191 | |
3192 /* Backup regparse, so that it's at the same position as before the | |
3193 * getchr(). */ | |
3194 regparse -= prevchr_len; | |
3195 } | |
3196 | |
3197 /* | |
29 | 3198 * Get and return the value of the hex string at the current position. |
3199 * Return -1 if there is no valid hex number. | |
3200 * The position is updated: | |
24 | 3201 * blahblah\%x20asdf |
856 | 3202 * before-^ ^-after |
24 | 3203 * The parameter controls the maximum number of input characters. This will be |
3204 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence. | |
3205 */ | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3206 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3207 gethexchrs(int maxinputlen) |
24 | 3208 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3209 long_u nr = 0; |
24 | 3210 int c; |
3211 int i; | |
3212 | |
3213 for (i = 0; i < maxinputlen; ++i) | |
3214 { | |
3215 c = regparse[0]; | |
3216 if (!vim_isxdigit(c)) | |
3217 break; | |
3218 nr <<= 4; | |
3219 nr |= hex2nr(c); | |
3220 ++regparse; | |
3221 } | |
3222 | |
3223 if (i == 0) | |
3224 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3225 return (long)nr; |
24 | 3226 } |
3227 | |
3228 /* | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
3229 * Get and return the value of the decimal string immediately after the |
24 | 3230 * current position. Return -1 for invalid. Consumes all digits. |
3231 */ | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3232 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3233 getdecchrs(void) |
24 | 3234 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3235 long_u nr = 0; |
24 | 3236 int c; |
3237 int i; | |
3238 | |
3239 for (i = 0; ; ++i) | |
3240 { | |
3241 c = regparse[0]; | |
3242 if (c < '0' || c > '9') | |
3243 break; | |
3244 nr *= 10; | |
3245 nr += c - '0'; | |
3246 ++regparse; | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
3247 curchr = -1; /* no longer valid */ |
24 | 3248 } |
3249 | |
3250 if (i == 0) | |
3251 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3252 return (long)nr; |
24 | 3253 } |
3254 | |
3255 /* | |
3256 * get and return the value of the octal string immediately after the current | |
3257 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle | |
3258 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't | |
3259 * treat 8 or 9 as recognised characters. Position is updated: | |
3260 * blahblah\%o210asdf | |
856 | 3261 * before-^ ^-after |
24 | 3262 */ |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3263 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3264 getoctchrs(void) |
24 | 3265 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3266 long_u nr = 0; |
24 | 3267 int c; |
3268 int i; | |
3269 | |
3270 for (i = 0; i < 3 && nr < 040; ++i) | |
3271 { | |
3272 c = regparse[0]; | |
3273 if (c < '0' || c > '7') | |
3274 break; | |
3275 nr <<= 3; | |
3276 nr |= hex2nr(c); | |
3277 ++regparse; | |
3278 } | |
3279 | |
3280 if (i == 0) | |
3281 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3282 return (long)nr; |
24 | 3283 } |
3284 | |
3285 /* | |
3286 * Get a number after a backslash that is inside []. | |
3287 * When nothing is recognized return a backslash. | |
3288 */ | |
3289 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3290 coll_get_char(void) |
24 | 3291 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3292 long nr = -1; |
24 | 3293 |
3294 switch (*regparse++) | |
3295 { | |
3296 case 'd': nr = getdecchrs(); break; | |
3297 case 'o': nr = getoctchrs(); break; | |
3298 case 'x': nr = gethexchrs(2); break; | |
3299 case 'u': nr = gethexchrs(4); break; | |
3300 case 'U': nr = gethexchrs(8); break; | |
3301 } | |
15959
4feaa025491b
patch 8.1.0985: crash with large number in regexp
Bram Moolenaar <Bram@vim.org>
parents:
15935
diff
changeset
|
3302 if (nr < 0 || nr > INT_MAX) |
24 | 3303 { |
3304 /* If getting the number fails be backwards compatible: the character | |
3305 * is a backslash. */ | |
3306 --regparse; | |
3307 nr = '\\'; | |
3308 } | |
3309 return nr; | |
3310 } | |
3311 | |
3312 /* | |
7 | 3313 * read_limits - Read two integers to be taken as a minimum and maximum. |
3314 * If the first character is '-', then the range is reversed. | |
3315 * Should end with 'end'. If minval is missing, zero is default, if maxval is | |
3316 * missing, a very big number is the default. | |
3317 */ | |
3318 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3319 read_limits(long *minval, long *maxval) |
7 | 3320 { |
3321 int reverse = FALSE; | |
3322 char_u *first_char; | |
3323 long tmp; | |
3324 | |
3325 if (*regparse == '-') | |
3326 { | |
3327 /* Starts with '-', so reverse the range later */ | |
3328 regparse++; | |
3329 reverse = TRUE; | |
3330 } | |
3331 first_char = regparse; | |
3332 *minval = getdigits(®parse); | |
3333 if (*regparse == ',') /* There is a comma */ | |
3334 { | |
3335 if (vim_isdigit(*++regparse)) | |
3336 *maxval = getdigits(®parse); | |
3337 else | |
3338 *maxval = MAX_LIMIT; | |
3339 } | |
3340 else if (VIM_ISDIGIT(*first_char)) | |
3341 *maxval = *minval; /* It was \{n} or \{-n} */ | |
3342 else | |
3343 *maxval = MAX_LIMIT; /* It was \{} or \{-} */ | |
3344 if (*regparse == '\\') | |
3345 regparse++; /* Allow either \{...} or \{...\} */ | |
167 | 3346 if (*regparse != '}') |
15480
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3347 EMSG2_RET_FAIL(_("E554: Syntax error in %s{...}"), |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
3348 reg_magic == MAGIC_ALL); |
7 | 3349 |
3350 /* | |
3351 * Reverse the range if there was a '-', or make sure it is in the right | |
3352 * order otherwise. | |
3353 */ | |
3354 if ((!reverse && *minval > *maxval) || (reverse && *minval < *maxval)) | |
3355 { | |
3356 tmp = *minval; | |
3357 *minval = *maxval; | |
3358 *maxval = tmp; | |
3359 } | |
3360 skipchr(); /* let's be friends with the lexer again */ | |
3361 return OK; | |
3362 } | |
3363 | |
3364 /* | |
3365 * vim_regexec and friends | |
3366 */ | |
3367 | |
3368 /* | |
3369 * Global work variables for vim_regexec(). | |
3370 */ | |
3371 | |
3372 /* | |
3373 * Structure used to save the current input state, when it needs to be | |
3374 * restored after trying a match. Used by reg_save() and reg_restore(). | |
233 | 3375 * Also stores the length of "backpos". |
7 | 3376 */ |
3377 typedef struct | |
3378 { | |
3379 union | |
3380 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3381 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
|
3382 lpos_T pos; /* rex.input pos, for multi-line regexp */ |
7 | 3383 } rs_u; |
233 | 3384 int rs_len; |
7 | 3385 } regsave_T; |
3386 | |
3387 /* struct to save start/end pointer/position in for \(\) */ | |
3388 typedef struct | |
3389 { | |
3390 union | |
3391 { | |
3392 char_u *ptr; | |
3393 lpos_T pos; | |
3394 } se_u; | |
3395 } save_se_T; | |
3396 | |
1579 | 3397 /* used for BEHIND and NOBEHIND matching */ |
3398 typedef struct regbehind_S | |
3399 { | |
3400 regsave_T save_after; | |
3401 regsave_T save_behind; | |
1602 | 3402 int save_need_clear_subexpr; |
1579 | 3403 save_se_T save_start[NSUBEXP]; |
3404 save_se_T save_end[NSUBEXP]; | |
3405 } regbehind_T; | |
3406 | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3407 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
|
3408 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
|
3409 static void cleanup_subexpr(void); |
7 | 3410 #ifdef FEAT_SYN_HL |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3411 static void cleanup_zsubexpr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3412 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3413 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
|
3414 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
|
3415 static void reg_nextline(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3416 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
|
3417 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
|
3418 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
|
3419 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
|
3420 static void save_se_one(save_se_T *savep, char_u **pp); |
7 | 3421 |
3422 /* Save the sub-expressions before attempting a match. */ | |
3423 #define save_se(savep, posp, pp) \ | |
3424 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp)) | |
3425 | |
3426 /* After a failed match restore the sub-expressions. */ | |
3427 #define restore_se(savep, posp, pp) { \ | |
3428 if (REG_MULTI) \ | |
3429 *(posp) = (savep)->se_u.pos; \ | |
3430 else \ | |
3431 *(pp) = (savep)->se_u.ptr; } | |
3432 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3433 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
|
3434 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
|
3435 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
|
3436 static int regrepeat(char_u *p, long maxcount); |
7 | 3437 |
3438 #ifdef DEBUG | |
3439 int regnarrate = 0; | |
3440 #endif | |
3441 | |
3442 /* | |
3443 * Sometimes need to save a copy of a line. Since alloc()/free() is very | |
3444 * slow, we keep one allocated piece of memory and only re-allocate it when | |
4444 | 3445 * it's too small. It's freed in bt_regexec_both() when finished. |
7 | 3446 */ |
1468 | 3447 static char_u *reg_tofree = NULL; |
7 | 3448 static unsigned reg_tofreelen; |
3449 | |
3450 /* | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3451 * Structure used to store the execution state of the regex engine. |
1209 | 3452 * Which ones are set depends on whether a single-line or multi-line match is |
7 | 3453 * done: |
3454 * single-line multi-line | |
3455 * reg_match ®match_T NULL | |
3456 * reg_mmatch NULL ®mmatch_T | |
3457 * reg_startp reg_match->startp <invalid> | |
3458 * reg_endp reg_match->endp <invalid> | |
3459 * reg_startpos <invalid> reg_mmatch->startpos | |
3460 * reg_endpos <invalid> reg_mmatch->endpos | |
3461 * reg_win NULL window in which to search | |
4061 | 3462 * reg_buf curbuf buffer in which to search |
7 | 3463 * reg_firstlnum <invalid> first line in which to search |
3464 * reg_maxline 0 last line nr | |
3465 * reg_line_lbr FALSE or TRUE FALSE | |
3466 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3467 typedef struct { |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3468 regmatch_T *reg_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3469 regmmatch_T *reg_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3470 char_u **reg_startp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3471 char_u **reg_endp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3472 lpos_T *reg_startpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3473 lpos_T *reg_endpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3474 win_T *reg_win; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3475 buf_T *reg_buf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3476 linenr_T reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3477 linenr_T reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3478 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
|
3479 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3480 // 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
|
3481 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
|
3482 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
|
3483 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
|
3484 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3485 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
|
3486 #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
|
3487 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
|
3488 // cleared |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3489 #endif |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3490 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3491 /* 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
|
3492 * 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
|
3493 * 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
|
3494 int reg_ic; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3495 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3496 /* 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
|
3497 * 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
|
3498 int reg_icombine; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3499 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3500 /* 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
|
3501 * there is no maximum. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3502 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
|
3503 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3504 // 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
|
3505 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
|
3506 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
|
3507 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
|
3508 // 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
|
3509 // (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
|
3510 // 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
|
3511 // 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
|
3512 // all the states. |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3513 int nfa_listid; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3514 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
|
3515 |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3516 #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
|
3517 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
|
3518 #endif |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3519 } regexec_T; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3520 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3521 static regexec_T rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3522 static int rex_in_use = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3523 |
7 | 3524 |
270 | 3525 /* Values for rs_state in regitem_T. */ |
3526 typedef enum regstate_E | |
3527 { | |
3528 RS_NOPEN = 0 /* NOPEN and NCLOSE */ | |
3529 , RS_MOPEN /* MOPEN + [0-9] */ | |
3530 , RS_MCLOSE /* MCLOSE + [0-9] */ | |
3531 #ifdef FEAT_SYN_HL | |
3532 , RS_ZOPEN /* ZOPEN + [0-9] */ | |
3533 , RS_ZCLOSE /* ZCLOSE + [0-9] */ | |
3534 #endif | |
3535 , RS_BRANCH /* BRANCH */ | |
3536 , RS_BRCPLX_MORE /* BRACE_COMPLEX and trying one more match */ | |
3537 , RS_BRCPLX_LONG /* BRACE_COMPLEX and trying longest match */ | |
3538 , RS_BRCPLX_SHORT /* BRACE_COMPLEX and trying shortest match */ | |
3539 , RS_NOMATCH /* NOMATCH */ | |
3540 , RS_BEHIND1 /* BEHIND / NOBEHIND matching rest */ | |
3541 , RS_BEHIND2 /* BEHIND / NOBEHIND matching behind part */ | |
3542 , RS_STAR_LONG /* STAR/PLUS/BRACE_SIMPLE longest match */ | |
3543 , RS_STAR_SHORT /* STAR/PLUS/BRACE_SIMPLE shortest match */ | |
3544 } regstate_T; | |
3545 | |
3546 /* | |
3547 * When there are alternatives a regstate_T is put on the regstack to remember | |
3548 * what we are doing. | |
3549 * Before it may be another type of item, depending on rs_state, to remember | |
3550 * more things. | |
3551 */ | |
3552 typedef struct regitem_S | |
3553 { | |
15792
920c1e26c8aa
patch 8.1.0903: struct uses more bytes than needed
Bram Moolenaar <Bram@vim.org>
parents:
15709
diff
changeset
|
3554 regstate_T rs_state; // what we are doing, one of RS_ above |
920c1e26c8aa
patch 8.1.0903: struct uses more bytes than needed
Bram Moolenaar <Bram@vim.org>
parents:
15709
diff
changeset
|
3555 short rs_no; // submatch nr or BEHIND/NOBEHIND |
920c1e26c8aa
patch 8.1.0903: struct uses more bytes than needed
Bram Moolenaar <Bram@vim.org>
parents:
15709
diff
changeset
|
3556 char_u *rs_scan; // current node in program |
270 | 3557 union |
3558 { | |
3559 save_se_T sesave; | |
3560 regsave_T regsave; | |
15792
920c1e26c8aa
patch 8.1.0903: struct uses more bytes than needed
Bram Moolenaar <Bram@vim.org>
parents:
15709
diff
changeset
|
3561 } rs_un; // room for saving rex.input |
270 | 3562 } regitem_T; |
3563 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3564 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
|
3565 static void regstack_pop(char_u **scan); |
270 | 3566 |
3567 /* used for STAR, PLUS and BRACE_SIMPLE matching */ | |
3568 typedef struct regstar_S | |
3569 { | |
3570 int nextb; /* next byte */ | |
3571 int nextb_ic; /* next byte reverse case */ | |
3572 long count; | |
3573 long minval; | |
3574 long maxval; | |
3575 } regstar_T; | |
3576 | |
3577 /* used to store input position when a BACK was encountered, so that we now if | |
3578 * we made any progress since the last time. */ | |
3579 typedef struct backpos_S | |
3580 { | |
3581 char_u *bp_scan; /* "scan" where BACK was encountered */ | |
3582 regsave_T bp_pos; /* last input position */ | |
3583 } backpos_T; | |
3584 | |
3585 /* | |
1520 | 3586 * "regstack" and "backpos" are used by regmatch(). They are kept over calls |
3587 * to avoid invoking malloc() and free() often. | |
3588 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T | |
3589 * or regbehind_T. | |
3590 * "backpos_T" is a table with backpos_T for BACK | |
270 | 3591 */ |
1520 | 3592 static garray_T regstack = {0, 0, 0, 0, NULL}; |
3593 static garray_T backpos = {0, 0, 0, 0, NULL}; | |
3594 | |
3595 /* | |
3596 * Both for regstack and backpos tables we use the following strategy of | |
3597 * allocation (to reduce malloc/free calls): | |
3598 * - Initial size is fairly small. | |
3599 * - When needed, the tables are grown bigger (8 times at first, double after | |
3600 * that). | |
3601 * - After executing the match we free the memory only if the array has grown. | |
3602 * Thus the memory is kept allocated when it's at the initial size. | |
3603 * This makes it fast while not keeping a lot of memory allocated. | |
3604 * A three times speed increase was observed when using many simple patterns. | |
3605 */ | |
3606 #define REGSTACK_INITIAL 2048 | |
3607 #define BACKPOS_INITIAL 64 | |
3608 | |
3609 #if defined(EXITFREE) || defined(PROTO) | |
3610 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3611 free_regexp_stuff(void) |
1520 | 3612 { |
3613 ga_clear(®stack); | |
3614 ga_clear(&backpos); | |
3615 vim_free(reg_tofree); | |
3616 vim_free(reg_prev_sub); | |
3617 } | |
3618 #endif | |
270 | 3619 |
7 | 3620 /* |
15709
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3621 * Return TRUE if character 'c' is included in 'iskeyword' option for |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3622 * "reg_buf" buffer. |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3623 */ |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3624 static int |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3625 reg_iswordc(int c) |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3626 { |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3627 return vim_iswordc_buf(c, rex.reg_buf); |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3628 } |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3629 |
2e2f07561f4b
patch 8.1.0862: no verbose version of character classes
Bram Moolenaar <Bram@vim.org>
parents:
15603
diff
changeset
|
3630 /* |
7 | 3631 * Get pointer to the line "lnum", which is relative to "reg_firstlnum". |
3632 */ | |
3633 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3634 reg_getline(linenr_T lnum) |
7 | 3635 { |
3636 /* when looking behind for a match/no-match lnum is negative. But we | |
3637 * 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
|
3638 if (rex.reg_firstlnum + lnum < 1) |
7 | 3639 return NULL; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3640 if (lnum > rex.reg_maxline) |
481 | 3641 /* Must have matched the "\n" in the last line. */ |
3642 return (char_u *)""; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3643 return ml_get_buf(rex.reg_buf, rex.reg_firstlnum + lnum, FALSE); |
7 | 3644 } |
3645 | |
3646 static regsave_T behind_pos; | |
3647 | |
3648 #ifdef FEAT_SYN_HL | |
3649 static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */ | |
3650 static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */ | |
3651 static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */ | |
3652 static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */ | |
3653 #endif | |
3654 | |
3655 /* 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
|
3656 #define REG_MULTI (rex.reg_match == NULL) |
4444 | 3657 |
7 | 3658 /* |
3659 * Match a regexp against a string. | |
3660 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3661 * Uses curbuf for line count and 'iskeyword'. | |
5838 | 3662 * if "line_lbr" is TRUE consider a "\n" in "line" to be a line break. |
7 | 3663 * |
6390 | 3664 * Returns 0 for failure, number of lines contained in the match otherwise. |
7 | 3665 */ |
4444 | 3666 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3667 bt_regexec_nl( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3668 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3669 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
|
3670 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
|
3671 int line_lbr) |
7 | 3672 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3673 rex.reg_match = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3674 rex.reg_mmatch = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3675 rex.reg_maxline = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3676 rex.reg_line_lbr = line_lbr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3677 rex.reg_buf = curbuf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3678 rex.reg_win = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3679 rex.reg_ic = rmp->rm_ic; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3680 rex.reg_icombine = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3681 rex.reg_maxcol = 0; |
6390 | 3682 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3683 return bt_regexec_both(line, col, NULL, NULL); |
7 | 3684 } |
3685 | |
3686 /* | |
3687 * Match a regexp against multiple lines. | |
3688 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3689 * Uses curbuf for line count and 'iskeyword'. | |
3690 * | |
3691 * Return zero if there is no match. Return number of lines contained in the | |
3692 * match otherwise. | |
3693 */ | |
4444 | 3694 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3695 bt_regexec_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3696 regmmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3697 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
|
3698 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
|
3699 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
|
3700 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
|
3701 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
|
3702 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3703 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3704 rex.reg_match = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3705 rex.reg_mmatch = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3706 rex.reg_buf = buf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3707 rex.reg_win = win; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3708 rex.reg_firstlnum = lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3709 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
|
3710 rex.reg_line_lbr = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3711 rex.reg_ic = rmp->rmm_ic; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3712 rex.reg_icombine = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3713 rex.reg_maxcol = rmp->rmm_maxcol; |
7 | 3714 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3715 return bt_regexec_both(NULL, col, tm, timed_out); |
7 | 3716 } |
3717 | |
3718 /* | |
3719 * Match a regexp against a string ("line" points to the string) or multiple | |
3720 * lines ("line" is NULL, use reg_getline()). | |
6390 | 3721 * Returns 0 for failure, number of lines contained in the match otherwise. |
7 | 3722 */ |
3723 static long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3724 bt_regexec_both( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3725 char_u *line, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3726 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
|
3727 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
|
3728 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3729 { |
6390 | 3730 bt_regprog_T *prog; |
3731 char_u *s; | |
3732 long retval = 0L; | |
7 | 3733 |
1520 | 3734 /* Create "regstack" and "backpos" if they are not allocated yet. |
3735 * We allocate *_INITIAL amount of bytes first and then set the grow size | |
3736 * to much bigger value to avoid many malloc calls in case of deep regular | |
3737 * expressions. */ | |
3738 if (regstack.ga_data == NULL) | |
3739 { | |
3740 /* Use an item size of 1 byte, since we push different things | |
3741 * onto the regstack. */ | |
3742 ga_init2(®stack, 1, REGSTACK_INITIAL); | |
7009 | 3743 (void)ga_grow(®stack, REGSTACK_INITIAL); |
1520 | 3744 regstack.ga_growsize = REGSTACK_INITIAL * 8; |
3745 } | |
3746 | |
3747 if (backpos.ga_data == NULL) | |
3748 { | |
3749 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL); | |
7009 | 3750 (void)ga_grow(&backpos, BACKPOS_INITIAL); |
1520 | 3751 backpos.ga_growsize = BACKPOS_INITIAL * 8; |
3752 } | |
270 | 3753 |
7 | 3754 if (REG_MULTI) |
3755 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3756 prog = (bt_regprog_T *)rex.reg_mmatch->regprog; |
7 | 3757 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
|
3758 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
|
3759 rex.reg_endpos = rex.reg_mmatch->endpos; |
7 | 3760 } |
3761 else | |
3762 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3763 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
|
3764 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
|
3765 rex.reg_endp = rex.reg_match->endp; |
7 | 3766 } |
3767 | |
3768 /* Be paranoid... */ | |
3769 if (prog == NULL || line == NULL) | |
3770 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
3771 emsg(_(e_null)); |
7 | 3772 goto theend; |
3773 } | |
3774 | |
3775 /* Check validity of program. */ | |
3776 if (prog_magic_wrong()) | |
3777 goto theend; | |
3778 | |
410 | 3779 /* 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
|
3780 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
410 | 3781 goto theend; |
3782 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3783 /* If pattern contains "\c" or "\C": overrule value of rex.reg_ic */ |
7 | 3784 if (prog->regflags & RF_ICASE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3785 rex.reg_ic = TRUE; |
7 | 3786 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
|
3787 rex.reg_ic = FALSE; |
7 | 3788 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3789 /* If pattern contains "\Z" overrule value of rex.reg_icombine */ |
7 | 3790 if (prog->regflags & RF_ICOMBINE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3791 rex.reg_icombine = TRUE; |
7 | 3792 |
3793 /* If there is a "must appear" string, look for it. */ | |
3794 if (prog->regmust != NULL) | |
3795 { | |
3796 int c; | |
3797 | |
3798 if (has_mbyte) | |
3799 c = (*mb_ptr2char)(prog->regmust); | |
3800 else | |
3801 c = *prog->regmust; | |
3802 s = line + col; | |
170 | 3803 |
3804 /* | |
3805 * This is used very often, esp. for ":global". Use three versions of | |
3806 * the loop to avoid overhead of conditions. | |
3807 */ | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3808 if (!rex.reg_ic && !has_mbyte) |
170 | 3809 while ((s = vim_strbyte(s, c)) != NULL) |
3810 { | |
3811 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3812 break; /* Found it. */ | |
3813 ++s; | |
3814 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3815 else if (!rex.reg_ic || (!enc_utf8 && mb_char2len(c) > 1)) |
170 | 3816 while ((s = vim_strchr(s, c)) != NULL) |
3817 { | |
3818 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3819 break; /* Found it. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3820 MB_PTR_ADV(s); |
170 | 3821 } |
3822 else | |
3823 while ((s = cstrchr(s, c)) != NULL) | |
3824 { | |
3825 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3826 break; /* Found it. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3827 MB_PTR_ADV(s); |
170 | 3828 } |
7 | 3829 if (s == NULL) /* Not present. */ |
3830 goto theend; | |
3831 } | |
3832 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3833 rex.line = line; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3834 rex.lnum = 0; |
2578 | 3835 reg_toolong = FALSE; |
7 | 3836 |
3837 /* Simplest case: Anchored match need be tried only once. */ | |
3838 if (prog->reganch) | |
3839 { | |
3840 int c; | |
3841 | |
3842 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
|
3843 c = (*mb_ptr2char)(rex.line + col); |
7 | 3844 else |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3845 c = rex.line[col]; |
7 | 3846 if (prog->regstart == NUL |
3847 || prog->regstart == c | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3848 || (rex.reg_ic |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3849 && (((enc_utf8 && utf_fold(prog->regstart) == utf_fold(c))) |
7 | 3850 || (c < 255 && prog->regstart < 255 && |
1347 | 3851 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
|
3852 retval = regtry(prog, col, tm, timed_out); |
7 | 3853 else |
3854 retval = 0; | |
3855 } | |
3856 else | |
3857 { | |
1521 | 3858 #ifdef FEAT_RELTIME |
3859 int tm_count = 0; | |
3860 #endif | |
7 | 3861 /* Messy cases: unanchored match. */ |
180 | 3862 while (!got_int) |
7 | 3863 { |
3864 if (prog->regstart != NUL) | |
3865 { | |
170 | 3866 /* Skip until the char we know it must start with. |
3867 * Used often, do some work to avoid call overhead. */ | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
3868 if (!rex.reg_ic && !has_mbyte) |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3869 s = vim_strbyte(rex.line + col, prog->regstart); |
170 | 3870 else |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3871 s = cstrchr(rex.line + col, prog->regstart); |
7 | 3872 if (s == NULL) |
3873 { | |
3874 retval = 0; | |
3875 break; | |
3876 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3877 col = (int)(s - rex.line); |
7 | 3878 } |
3879 | |
410 | 3880 /* 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
|
3881 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
410 | 3882 { |
3883 retval = 0; | |
3884 break; | |
3885 } | |
3886 | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3887 retval = regtry(prog, col, tm, timed_out); |
7 | 3888 if (retval > 0) |
3889 break; | |
3890 | |
3891 /* 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
|
3892 if (rex.lnum != 0) |
7 | 3893 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3894 rex.lnum = 0; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3895 rex.line = reg_getline((linenr_T)0); |
7 | 3896 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3897 if (rex.line[col] == NUL) |
7 | 3898 break; |
3899 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
|
3900 col += (*mb_ptr2len)(rex.line + col); |
7 | 3901 else |
3902 ++col; | |
1521 | 3903 #ifdef FEAT_RELTIME |
3904 /* Check for timeout once in a twenty times to avoid overhead. */ | |
3905 if (tm != NULL && ++tm_count == 20) | |
3906 { | |
3907 tm_count = 0; | |
3908 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
|
3909 { |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3910 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
|
3911 *timed_out = TRUE; |
1521 | 3912 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
|
3913 } |
1521 | 3914 } |
3915 #endif | |
7 | 3916 } |
3917 } | |
3918 | |
3919 theend: | |
1520 | 3920 /* Free "reg_tofree" when it's a bit big. |
3921 * Free regstack and backpos if they are bigger than their initial size. */ | |
3922 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
|
3923 VIM_CLEAR(reg_tofree); |
1520 | 3924 if (regstack.ga_maxlen > REGSTACK_INITIAL) |
3925 ga_clear(®stack); | |
3926 if (backpos.ga_maxlen > BACKPOS_INITIAL) | |
3927 ga_clear(&backpos); | |
270 | 3928 |
7 | 3929 return retval; |
3930 } | |
3931 | |
3932 #ifdef FEAT_SYN_HL | |
3933 /* | |
3934 * Create a new extmatch and mark it as referenced once. | |
3935 */ | |
3936 static reg_extmatch_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3937 make_extmatch(void) |
7 | 3938 { |
3939 reg_extmatch_T *em; | |
3940 | |
16825
ce04ebdf26b8
patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents:
16768
diff
changeset
|
3941 em = ALLOC_CLEAR_ONE(reg_extmatch_T); |
7 | 3942 if (em != NULL) |
3943 em->refcnt = 1; | |
3944 return em; | |
3945 } | |
3946 | |
3947 /* | |
3948 * Add a reference to an extmatch. | |
3949 */ | |
3950 reg_extmatch_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3951 ref_extmatch(reg_extmatch_T *em) |
7 | 3952 { |
3953 if (em != NULL) | |
3954 em->refcnt++; | |
3955 return em; | |
3956 } | |
3957 | |
3958 /* | |
3959 * Remove a reference to an extmatch. If there are no references left, free | |
3960 * the info. | |
3961 */ | |
3962 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3963 unref_extmatch(reg_extmatch_T *em) |
7 | 3964 { |
3965 int i; | |
3966 | |
3967 if (em != NULL && --em->refcnt <= 0) | |
3968 { | |
3969 for (i = 0; i < NSUBEXP; ++i) | |
3970 vim_free(em->matches[i]); | |
3971 vim_free(em); | |
3972 } | |
3973 } | |
3974 #endif | |
3975 | |
3976 /* | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3977 * regtry - try match of "prog" with at rex.line["col"]. |
7 | 3978 * Returns 0 for failure, number of lines contained in the match otherwise. |
3979 */ | |
3980 static long | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3981 regtry( |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3982 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
|
3983 colnr_T col, |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3984 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
|
3985 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3986 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
3987 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
|
3988 rex.need_clear_subexpr = TRUE; |
7 | 3989 #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
|
3990 // 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
|
3991 rex.need_clear_zsubexpr = (prog->reghasz == REX_SET); |
7 | 3992 #endif |
3993 | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3994 if (regmatch(prog->program + 1, tm, timed_out) == 0) |
189 | 3995 return 0; |
3996 | |
3997 cleanup_subexpr(); | |
3998 if (REG_MULTI) | |
7 | 3999 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4000 if (rex.reg_startpos[0].lnum < 0) |
7 | 4001 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4002 rex.reg_startpos[0].lnum = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4003 rex.reg_startpos[0].col = col; |
189 | 4004 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4005 if (rex.reg_endpos[0].lnum < 0) |
189 | 4006 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4007 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
|
4008 rex.reg_endpos[0].col = (int)(rex.input - rex.line); |
7 | 4009 } |
4010 else | |
189 | 4011 /* 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
|
4012 rex.lnum = rex.reg_endpos[0].lnum; |
189 | 4013 } |
4014 else | |
4015 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4016 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
|
4017 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
|
4018 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
|
4019 rex.reg_endp[0] = rex.input; |
189 | 4020 } |
7 | 4021 #ifdef FEAT_SYN_HL |
189 | 4022 /* Package any found \z(...\) matches for export. Default is none. */ |
4023 unref_extmatch(re_extmatch_out); | |
4024 re_extmatch_out = NULL; | |
4025 | |
4026 if (prog->reghasz == REX_SET) | |
4027 { | |
4028 int i; | |
4029 | |
4030 cleanup_zsubexpr(); | |
4031 re_extmatch_out = make_extmatch(); | |
4032 for (i = 0; i < NSUBEXP; i++) | |
7 | 4033 { |
189 | 4034 if (REG_MULTI) |
7 | 4035 { |
189 | 4036 /* Only accept single line matches. */ |
4037 if (reg_startzpos[i].lnum >= 0 | |
5820 | 4038 && reg_endzpos[i].lnum == reg_startzpos[i].lnum |
4039 && reg_endzpos[i].col >= reg_startzpos[i].col) | |
189 | 4040 re_extmatch_out->matches[i] = |
4041 vim_strnsave(reg_getline(reg_startzpos[i].lnum) | |
7 | 4042 + reg_startzpos[i].col, |
189 | 4043 reg_endzpos[i].col - reg_startzpos[i].col); |
4044 } | |
4045 else | |
4046 { | |
4047 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL) | |
4048 re_extmatch_out->matches[i] = | |
7 | 4049 vim_strnsave(reg_startzp[i], |
189 | 4050 (int)(reg_endzp[i] - reg_startzp[i])); |
7 | 4051 } |
4052 } | |
189 | 4053 } |
7 | 4054 #endif |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4055 return 1 + rex.lnum; |
7 | 4056 } |
4057 | |
4058 /* | |
4059 * Get class of previous character. | |
4060 */ | |
4061 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4062 reg_prev_class(void) |
7 | 4063 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4064 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
|
4065 return mb_get_class_buf(rex.input - 1 |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4066 - (*mb_head_off)(rex.line, rex.input - 1), rex.reg_buf); |
7 | 4067 return -1; |
4068 } | |
5735 | 4069 |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4070 /* |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4071 * 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
|
4072 */ |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4073 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4074 reg_match_visual(void) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4075 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4076 pos_T top, bot; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4077 linenr_T lnum; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4078 colnr_T col; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4079 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
|
4080 int mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4081 colnr_T start, end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4082 colnr_T start2, end2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4083 colnr_T cols; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4084 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4085 /* 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
|
4086 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
|
4087 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4088 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4089 if (VIsual_active) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4090 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4091 if (LT_POS(VIsual, wp->w_cursor)) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4092 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4093 top = VIsual; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4094 bot = wp->w_cursor; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4095 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4096 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4097 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4098 top = wp->w_cursor; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4099 bot = VIsual; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4100 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4101 mode = VIsual_mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4102 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4103 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4104 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4105 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
|
4106 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4107 top = curbuf->b_visual.vi_start; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4108 bot = curbuf->b_visual.vi_end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4109 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4110 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4111 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4112 top = curbuf->b_visual.vi_end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4113 bot = curbuf->b_visual.vi_start; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4114 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4115 mode = curbuf->b_visual.vi_mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4116 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4117 lnum = rex.lnum + rex.reg_firstlnum; |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4118 if (lnum < top.lnum || lnum > bot.lnum) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4119 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4120 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4121 if (mode == 'v') |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4122 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4123 col = (colnr_T)(rex.input - rex.line); |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4124 if ((lnum == top.lnum && col < top.col) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4125 || (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
|
4126 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4127 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4128 else if (mode == Ctrl_V) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4129 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4130 getvvcol(wp, &top, &start, NULL, &end); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4131 getvvcol(wp, &bot, &start2, NULL, &end2); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4132 if (start2 < start) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4133 start = start2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4134 if (end2 > end) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4135 end = end2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4136 if (top.col == MAXCOL || bot.col == MAXCOL) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4137 end = MAXCOL; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4138 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
|
4139 if (cols < start || cols > end - (*p_sel == 'e')) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4140 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4141 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4142 return TRUE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4143 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4144 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4145 #define ADVANCE_REGINPUT() MB_PTR_ADV(rex.input) |
7 | 4146 |
4147 /* | |
4148 * The arguments from BRACE_LIMITS are stored here. They are actually local | |
4149 * to regmatch(), but they are here to reduce the amount of stack space used | |
4150 * (it can be called recursively many times). | |
4151 */ | |
4152 static long bl_minval; | |
4153 static long bl_maxval; | |
4154 | |
4155 /* | |
4156 * regmatch - main matching routine | |
4157 * | |
180 | 4158 * Conceptually the strategy is simple: Check to see whether the current node |
4159 * matches, push an item onto the regstack and loop to see whether the rest | |
4160 * matches, and then act accordingly. In practice we make some effort to | |
4161 * avoid using the regstack, in particular by going through "ordinary" nodes | |
4162 * (that don't need to know whether the rest of the match failed) by a nested | |
4163 * loop. | |
7 | 4164 * |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4165 * Returns TRUE when there is a match. Leaves rex.input and rex.lnum just after |
7 | 4166 * 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
|
4167 * Returns FALSE when there is no match. Leaves rex.input and rex.lnum in an |
7 | 4168 * undefined state! |
4169 */ | |
4170 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4171 regmatch( |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4172 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
|
4173 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
|
4174 int *timed_out UNUSED) /* flag set on timeout or NULL */ |
7 | 4175 { |
180 | 4176 char_u *next; /* Next node. */ |
4177 int op; | |
4178 int c; | |
4179 regitem_T *rp; | |
4180 int no; | |
4181 int status; /* one of the RA_ values: */ | |
4182 #define RA_FAIL 1 /* something failed, abort */ | |
4183 #define RA_CONT 2 /* continue in inner loop */ | |
4184 #define RA_BREAK 3 /* break inner loop */ | |
4185 #define RA_MATCH 4 /* successful match */ | |
4186 #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
|
4187 #ifdef FEAT_RELTIME |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4188 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
|
4189 #endif |
270 | 4190 |
1520 | 4191 /* Make "regstack" and "backpos" empty. They are allocated and freed in |
4444 | 4192 * bt_regexec_both() to reduce malloc()/free() calls. */ |
270 | 4193 regstack.ga_len = 0; |
4194 backpos.ga_len = 0; | |
233 | 4195 |
180 | 4196 /* |
233 | 4197 * Repeat until "regstack" is empty. |
180 | 4198 */ |
4199 for (;;) | |
4200 { | |
5310 | 4201 /* Some patterns may take a long time to match, e.g., "\([a-z]\+\)\+Q". |
4202 * Allow interrupting them with CTRL-C. */ | |
7 | 4203 fast_breakcheck(); |
4204 | |
4205 #ifdef DEBUG | |
4206 if (scan != NULL && regnarrate) | |
4207 { | |
4444 | 4208 mch_errmsg((char *)regprop(scan)); |
7 | 4209 mch_errmsg("(\n"); |
4210 } | |
4211 #endif | |
180 | 4212 |
4213 /* | |
233 | 4214 * Repeat for items that can be matched sequentially, without using the |
180 | 4215 * regstack. |
4216 */ | |
4217 for (;;) | |
7 | 4218 { |
180 | 4219 if (got_int || scan == NULL) |
4220 { | |
4221 status = RA_FAIL; | |
4222 break; | |
4223 } | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4224 #ifdef FEAT_RELTIME |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4225 /* 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
|
4226 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
|
4227 { |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4228 tm_count = 0; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4229 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
|
4230 { |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4231 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
|
4232 *timed_out = TRUE; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4233 status = RA_FAIL; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4234 break; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4235 } |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4236 } |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4237 #endif |
180 | 4238 status = RA_CONT; |
4239 | |
7 | 4240 #ifdef DEBUG |
4241 if (regnarrate) | |
4242 { | |
4444 | 4243 mch_errmsg((char *)regprop(scan)); |
7 | 4244 mch_errmsg("...\n"); |
4245 # ifdef FEAT_SYN_HL | |
4246 if (re_extmatch_in != NULL) | |
4247 { | |
4248 int i; | |
4249 | |
4250 mch_errmsg(_("External submatches:\n")); | |
4251 for (i = 0; i < NSUBEXP; i++) | |
4252 { | |
4253 mch_errmsg(" \""); | |
4254 if (re_extmatch_in->matches[i] != NULL) | |
4444 | 4255 mch_errmsg((char *)re_extmatch_in->matches[i]); |
7 | 4256 mch_errmsg("\"\n"); |
4257 } | |
4258 } | |
4259 # endif | |
4260 } | |
4261 #endif | |
4262 next = regnext(scan); | |
4263 | |
4264 op = OP(scan); | |
4265 /* 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
|
4266 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
|
4267 && *rex.input == NUL && rex.lnum <= rex.reg_maxline) |
7 | 4268 { |
4269 reg_nextline(); | |
4270 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4271 else if (rex.reg_line_lbr && WITH_NL(op) && *rex.input == '\n') |
7 | 4272 { |
4273 ADVANCE_REGINPUT(); | |
4274 } | |
4275 else | |
4276 { | |
4277 if (WITH_NL(op)) | |
180 | 4278 op -= ADD_NL; |
7 | 4279 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
|
4280 c = (*mb_ptr2char)(rex.input); |
7 | 4281 else |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4282 c = *rex.input; |
7 | 4283 switch (op) |
4284 { | |
4285 case BOL: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4286 if (rex.input != rex.line) |
180 | 4287 status = RA_NOMATCH; |
7 | 4288 break; |
4289 | |
4290 case EOL: | |
4291 if (c != NUL) | |
180 | 4292 status = RA_NOMATCH; |
7 | 4293 break; |
4294 | |
4295 case RE_BOF: | |
1458 | 4296 /* We're not at the beginning of the file when below the first |
4297 * line where we started, not at the start of the line or we | |
4298 * 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
|
4299 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
|
4300 || (REG_MULTI && rex.reg_firstlnum > 1)) |
180 | 4301 status = RA_NOMATCH; |
7 | 4302 break; |
4303 | |
4304 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
|
4305 if (rex.lnum != rex.reg_maxline || c != NUL) |
180 | 4306 status = RA_NOMATCH; |
7 | 4307 break; |
4308 | |
4309 case CURSOR: | |
4310 /* 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
|
4311 * 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
|
4312 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
|
4313 || (rex.lnum + rex.reg_firstlnum |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4314 != 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
|
4315 || ((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
|
4316 != rex.reg_win->w_cursor.col)) |
180 | 4317 status = RA_NOMATCH; |
7 | 4318 break; |
4319 | |
639 | 4320 case RE_MARK: |
4732
0798b096bab3
updated for version 7.3.1113
Bram Moolenaar <bram@vim.org>
parents:
4730
diff
changeset
|
4321 /* Compare the mark position to the match position. */ |
639 | 4322 { |
4323 int mark = OPERAND(scan)[0]; | |
4324 int cmp = OPERAND(scan)[1]; | |
4325 pos_T *pos; | |
4326 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4327 pos = getmark_buf(rex.reg_buf, mark, FALSE); |
1148 | 4328 if (pos == NULL /* mark doesn't exist */ |
4732
0798b096bab3
updated for version 7.3.1113
Bram Moolenaar <bram@vim.org>
parents:
4730
diff
changeset
|
4329 || 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
|
4330 || (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
|
4331 ? (pos->col == (colnr_T)(rex.input - rex.line) |
639 | 4332 ? (cmp == '<' || cmp == '>') |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4333 : (pos->col < (colnr_T)(rex.input - rex.line) |
639 | 4334 ? cmp != '>' |
4335 : cmp != '<')) | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4336 : (pos->lnum < rex.lnum + rex.reg_firstlnum |
639 | 4337 ? cmp != '>' |
4338 : cmp != '<'))) | |
4339 status = RA_NOMATCH; | |
4340 } | |
4341 break; | |
4342 | |
4343 case RE_VISUAL: | |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4344 if (!reg_match_visual()) |
639 | 4345 status = RA_NOMATCH; |
4346 break; | |
4347 | |
7 | 4348 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
|
4349 if (!REG_MULTI || !re_num_cmp((long_u)(rex.lnum + rex.reg_firstlnum), |
7 | 4350 scan)) |
180 | 4351 status = RA_NOMATCH; |
7 | 4352 break; |
4353 | |
4354 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
|
4355 if (!re_num_cmp((long_u)(rex.input - rex.line) + 1, scan)) |
180 | 4356 status = RA_NOMATCH; |
7 | 4357 break; |
4358 | |
4359 case RE_VCOL: | |
4360 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
|
4361 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
|
4362 rex.line, (colnr_T)(rex.input - rex.line)) + 1, scan)) |
180 | 4363 status = RA_NOMATCH; |
7 | 4364 break; |
4365 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4366 case BOW: /* \<word; rex.input points to w */ |
7 | 4367 if (c == NUL) /* Can't match at end of line */ |
180 | 4368 status = RA_NOMATCH; |
4369 else if (has_mbyte) | |
7 | 4370 { |
4371 int this_class; | |
4372 | |
4373 /* 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
|
4374 this_class = mb_get_class_buf(rex.input, rex.reg_buf); |
7 | 4375 if (this_class <= 1) |
180 | 4376 status = RA_NOMATCH; /* not on a word at all */ |
4377 else if (reg_prev_class() == this_class) | |
4378 status = RA_NOMATCH; /* previous char is in same word */ | |
7 | 4379 } |
4380 else | |
4381 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4382 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
|
4383 && vim_iswordc_buf(rex.input[-1], rex.reg_buf))) |
180 | 4384 status = RA_NOMATCH; |
7 | 4385 } |
4386 break; | |
4387 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4388 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
|
4389 if (rex.input == rex.line) /* Can't match at start of line */ |
180 | 4390 status = RA_NOMATCH; |
4391 else if (has_mbyte) | |
7 | 4392 { |
4393 int this_class, prev_class; | |
4394 | |
4395 /* 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
|
4396 this_class = mb_get_class_buf(rex.input, rex.reg_buf); |
7 | 4397 prev_class = reg_prev_class(); |
180 | 4398 if (this_class == prev_class |
4399 || prev_class == 0 || prev_class == 1) | |
4400 status = RA_NOMATCH; | |
7 | 4401 } |
4402 else | |
4403 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4404 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
|
4405 || (rex.input[0] != NUL |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4406 && vim_iswordc_buf(c, rex.reg_buf))) |
180 | 4407 status = RA_NOMATCH; |
7 | 4408 } |
4409 break; /* Matched with EOW */ | |
4410 | |
4411 case ANY: | |
4084 | 4412 /* ANY does not match new lines. */ |
7 | 4413 if (c == NUL) |
180 | 4414 status = RA_NOMATCH; |
4415 else | |
4416 ADVANCE_REGINPUT(); | |
7 | 4417 break; |
4418 | |
4419 case IDENT: | |
4420 if (!vim_isIDc(c)) | |
180 | 4421 status = RA_NOMATCH; |
4422 else | |
4423 ADVANCE_REGINPUT(); | |
7 | 4424 break; |
4425 | |
4426 case SIDENT: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4427 if (VIM_ISDIGIT(*rex.input) || !vim_isIDc(c)) |
180 | 4428 status = RA_NOMATCH; |
4429 else | |
4430 ADVANCE_REGINPUT(); | |
7 | 4431 break; |
4432 | |
4433 case KWORD: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4434 if (!vim_iswordp_buf(rex.input, rex.reg_buf)) |
180 | 4435 status = RA_NOMATCH; |
4436 else | |
4437 ADVANCE_REGINPUT(); | |
7 | 4438 break; |
4439 | |
4440 case SKWORD: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4441 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
|
4442 || !vim_iswordp_buf(rex.input, rex.reg_buf)) |
180 | 4443 status = RA_NOMATCH; |
4444 else | |
4445 ADVANCE_REGINPUT(); | |
7 | 4446 break; |
4447 | |
4448 case FNAME: | |
4449 if (!vim_isfilec(c)) | |
180 | 4450 status = RA_NOMATCH; |
4451 else | |
4452 ADVANCE_REGINPUT(); | |
7 | 4453 break; |
4454 | |
4455 case SFNAME: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4456 if (VIM_ISDIGIT(*rex.input) || !vim_isfilec(c)) |
180 | 4457 status = RA_NOMATCH; |
4458 else | |
4459 ADVANCE_REGINPUT(); | |
7 | 4460 break; |
4461 | |
4462 case PRINT: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4463 if (!vim_isprintc(PTR2CHAR(rex.input))) |
180 | 4464 status = RA_NOMATCH; |
4465 else | |
4466 ADVANCE_REGINPUT(); | |
7 | 4467 break; |
4468 | |
4469 case SPRINT: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4470 if (VIM_ISDIGIT(*rex.input) || !vim_isprintc(PTR2CHAR(rex.input))) |
180 | 4471 status = RA_NOMATCH; |
4472 else | |
4473 ADVANCE_REGINPUT(); | |
7 | 4474 break; |
4475 | |
4476 case WHITE: | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4477 if (!VIM_ISWHITE(c)) |
180 | 4478 status = RA_NOMATCH; |
4479 else | |
4480 ADVANCE_REGINPUT(); | |
7 | 4481 break; |
4482 | |
4483 case NWHITE: | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4484 if (c == NUL || VIM_ISWHITE(c)) |
180 | 4485 status = RA_NOMATCH; |
4486 else | |
4487 ADVANCE_REGINPUT(); | |
7 | 4488 break; |
4489 | |
4490 case DIGIT: | |
4491 if (!ri_digit(c)) | |
180 | 4492 status = RA_NOMATCH; |
4493 else | |
4494 ADVANCE_REGINPUT(); | |
7 | 4495 break; |
4496 | |
4497 case NDIGIT: | |
4498 if (c == NUL || ri_digit(c)) | |
180 | 4499 status = RA_NOMATCH; |
4500 else | |
4501 ADVANCE_REGINPUT(); | |
7 | 4502 break; |
4503 | |
4504 case HEX: | |
4505 if (!ri_hex(c)) | |
180 | 4506 status = RA_NOMATCH; |
4507 else | |
4508 ADVANCE_REGINPUT(); | |
7 | 4509 break; |
4510 | |
4511 case NHEX: | |
4512 if (c == NUL || ri_hex(c)) | |
180 | 4513 status = RA_NOMATCH; |
4514 else | |
4515 ADVANCE_REGINPUT(); | |
7 | 4516 break; |
4517 | |
4518 case OCTAL: | |
4519 if (!ri_octal(c)) | |
180 | 4520 status = RA_NOMATCH; |
4521 else | |
4522 ADVANCE_REGINPUT(); | |
7 | 4523 break; |
4524 | |
4525 case NOCTAL: | |
4526 if (c == NUL || ri_octal(c)) | |
180 | 4527 status = RA_NOMATCH; |
4528 else | |
4529 ADVANCE_REGINPUT(); | |
7 | 4530 break; |
4531 | |
4532 case WORD: | |
4533 if (!ri_word(c)) | |
180 | 4534 status = RA_NOMATCH; |
4535 else | |
4536 ADVANCE_REGINPUT(); | |
7 | 4537 break; |
4538 | |
4539 case NWORD: | |
4540 if (c == NUL || ri_word(c)) | |
180 | 4541 status = RA_NOMATCH; |
4542 else | |
4543 ADVANCE_REGINPUT(); | |
7 | 4544 break; |
4545 | |
4546 case HEAD: | |
4547 if (!ri_head(c)) | |
180 | 4548 status = RA_NOMATCH; |
4549 else | |
4550 ADVANCE_REGINPUT(); | |
7 | 4551 break; |
4552 | |
4553 case NHEAD: | |
4554 if (c == NUL || ri_head(c)) | |
180 | 4555 status = RA_NOMATCH; |
4556 else | |
4557 ADVANCE_REGINPUT(); | |
7 | 4558 break; |
4559 | |
4560 case ALPHA: | |
4561 if (!ri_alpha(c)) | |
180 | 4562 status = RA_NOMATCH; |
4563 else | |
4564 ADVANCE_REGINPUT(); | |
7 | 4565 break; |
4566 | |
4567 case NALPHA: | |
4568 if (c == NUL || ri_alpha(c)) | |
180 | 4569 status = RA_NOMATCH; |
4570 else | |
4571 ADVANCE_REGINPUT(); | |
7 | 4572 break; |
4573 | |
4574 case LOWER: | |
4575 if (!ri_lower(c)) | |
180 | 4576 status = RA_NOMATCH; |
4577 else | |
4578 ADVANCE_REGINPUT(); | |
7 | 4579 break; |
4580 | |
4581 case NLOWER: | |
4582 if (c == NUL || ri_lower(c)) | |
180 | 4583 status = RA_NOMATCH; |
4584 else | |
4585 ADVANCE_REGINPUT(); | |
7 | 4586 break; |
4587 | |
4588 case UPPER: | |
4589 if (!ri_upper(c)) | |
180 | 4590 status = RA_NOMATCH; |
4591 else | |
4592 ADVANCE_REGINPUT(); | |
7 | 4593 break; |
4594 | |
4595 case NUPPER: | |
4596 if (c == NUL || ri_upper(c)) | |
180 | 4597 status = RA_NOMATCH; |
4598 else | |
4599 ADVANCE_REGINPUT(); | |
7 | 4600 break; |
4601 | |
4602 case EXACTLY: | |
4603 { | |
4604 int len; | |
4605 char_u *opnd; | |
4606 | |
4607 opnd = OPERAND(scan); | |
4608 /* 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
|
4609 if (*opnd != *rex.input |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4610 && (!rex.reg_ic |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4611 || (!enc_utf8 |
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4612 && MB_TOLOWER(*opnd) != MB_TOLOWER(*rex.input)))) |
180 | 4613 status = RA_NOMATCH; |
4614 else if (*opnd == NUL) | |
7 | 4615 { |
4616 /* match empty string always works; happens when "~" is | |
4617 * empty. */ | |
4618 } | |
5899 | 4619 else |
4620 { | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
4621 if (opnd[1] == NUL && !(enc_utf8 && rex.reg_ic)) |
5899 | 4622 { |
4623 len = 1; /* matched a single byte above */ | |
4624 } | |
4625 else | |
4626 { | |
4627 /* Need to match first byte again for multi-byte. */ | |
4628 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
|
4629 if (cstrncmp(opnd, rex.input, &len) != 0) |
5899 | 4630 status = RA_NOMATCH; |
4631 } | |
5901 | 4632 /* Check for following composing character, unless %C |
4633 * follows (skips over all composing chars). */ | |
5899 | 4634 if (status != RA_NOMATCH |
4635 && enc_utf8 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4636 && 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
|
4637 && !rex.reg_icombine |
5901 | 4638 && OP(next) != RE_COMPOSING) |
7 | 4639 { |
4640 /* raaron: This code makes a composing character get | |
4641 * ignored, which is the correct behavior (sometimes) | |
4642 * for voweled Hebrew texts. */ | |
5899 | 4643 status = RA_NOMATCH; |
7 | 4644 } |
5899 | 4645 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
|
4646 rex.input += len; |
7 | 4647 } |
4648 } | |
4649 break; | |
4650 | |
4651 case ANYOF: | |
4652 case ANYBUT: | |
4653 if (c == NUL) | |
180 | 4654 status = RA_NOMATCH; |
4655 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF)) | |
4656 status = RA_NOMATCH; | |
4657 else | |
4658 ADVANCE_REGINPUT(); | |
7 | 4659 break; |
4660 | |
4661 case MULTIBYTECODE: | |
4662 if (has_mbyte) | |
4663 { | |
4664 int i, len; | |
4665 char_u *opnd; | |
944 | 4666 int opndc = 0, inpc; |
7 | 4667 |
4668 opnd = OPERAND(scan); | |
4669 /* Safety check (just in case 'encoding' was changed since | |
4670 * compiling the program). */ | |
474 | 4671 if ((len = (*mb_ptr2len)(opnd)) < 2) |
180 | 4672 { |
4673 status = RA_NOMATCH; | |
4674 break; | |
4675 } | |
714 | 4676 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
|
4677 opndc = utf_ptr2char(opnd); |
714 | 4678 if (enc_utf8 && utf_iscomposing(opndc)) |
4679 { | |
4680 /* When only a composing char is given match at any | |
4681 * position where that composing char appears. */ | |
4682 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
|
4683 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
|
4684 i += utf_ptr2len(rex.input + i)) |
180 | 4685 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4686 inpc = utf_ptr2char(rex.input + i); |
714 | 4687 if (!utf_iscomposing(inpc)) |
4688 { | |
4689 if (i > 0) | |
4690 break; | |
4691 } | |
4692 else if (opndc == inpc) | |
4693 { | |
4694 /* 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
|
4695 len = i + utfc_ptr2len(rex.input + i); |
714 | 4696 status = RA_MATCH; |
4697 break; | |
4698 } | |
180 | 4699 } |
714 | 4700 } |
4701 else | |
4702 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
|
4703 if (opnd[i] != rex.input[i]) |
714 | 4704 { |
4705 status = RA_NOMATCH; | |
4706 break; | |
4707 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4708 rex.input += len; |
7 | 4709 } |
4710 else | |
180 | 4711 status = RA_NOMATCH; |
7 | 4712 break; |
5901 | 4713 case RE_COMPOSING: |
4714 if (enc_utf8) | |
4715 { | |
4716 /* 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
|
4717 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
|
4718 MB_CPTR_ADV(rex.input); |
5901 | 4719 } |
4720 break; | |
7 | 4721 |
4722 case NOTHING: | |
4723 break; | |
4724 | |
4725 case BACK: | |
233 | 4726 { |
4727 int i; | |
4728 backpos_T *bp; | |
4729 | |
4730 /* | |
4731 * When we run into BACK we need to check if we don't keep | |
4732 * looping without matching any input. The second and later | |
4733 * times a BACK is encountered it fails if the input is still | |
4734 * at the same position as the previous time. | |
4735 * The positions are stored in "backpos" and found by the | |
4736 * current value of "scan", the position in the RE program. | |
4737 */ | |
4738 bp = (backpos_T *)backpos.ga_data; | |
4739 for (i = 0; i < backpos.ga_len; ++i) | |
4740 if (bp[i].bp_scan == scan) | |
4741 break; | |
4742 if (i == backpos.ga_len) | |
4743 { | |
4744 /* First time at this BACK, make room to store the pos. */ | |
4745 if (ga_grow(&backpos, 1) == FAIL) | |
4746 status = RA_FAIL; | |
4747 else | |
4748 { | |
4749 /* get "ga_data" again, it may have changed */ | |
4750 bp = (backpos_T *)backpos.ga_data; | |
4751 bp[i].bp_scan = scan; | |
4752 ++backpos.ga_len; | |
4753 } | |
4754 } | |
4755 else if (reg_save_equal(&bp[i].bp_pos)) | |
4756 /* Still at same position as last time, fail. */ | |
4757 status = RA_NOMATCH; | |
4758 | |
4759 if (status != RA_FAIL && status != RA_NOMATCH) | |
4760 reg_save(&bp[i].bp_pos, &backpos); | |
4761 } | |
179 | 4762 break; |
4763 | |
7 | 4764 case MOPEN + 0: /* Match start: \zs */ |
4765 case MOPEN + 1: /* \( */ | |
4766 case MOPEN + 2: | |
4767 case MOPEN + 3: | |
4768 case MOPEN + 4: | |
4769 case MOPEN + 5: | |
4770 case MOPEN + 6: | |
4771 case MOPEN + 7: | |
4772 case MOPEN + 8: | |
4773 case MOPEN + 9: | |
4774 { | |
4775 no = op - MOPEN; | |
4776 cleanup_subexpr(); | |
270 | 4777 rp = regstack_push(RS_MOPEN, scan); |
180 | 4778 if (rp == NULL) |
4779 status = RA_FAIL; | |
4780 else | |
4781 { | |
4782 rp->rs_no = no; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4783 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
|
4784 &rex.reg_startp[no]); |
180 | 4785 /* We simply continue and handle the result when done. */ |
4786 } | |
7 | 4787 } |
180 | 4788 break; |
7 | 4789 |
4790 case NOPEN: /* \%( */ | |
4791 case NCLOSE: /* \) after \%( */ | |
270 | 4792 if (regstack_push(RS_NOPEN, scan) == NULL) |
180 | 4793 status = RA_FAIL; |
4794 /* We simply continue and handle the result when done. */ | |
4795 break; | |
7 | 4796 |
4797 #ifdef FEAT_SYN_HL | |
4798 case ZOPEN + 1: | |
4799 case ZOPEN + 2: | |
4800 case ZOPEN + 3: | |
4801 case ZOPEN + 4: | |
4802 case ZOPEN + 5: | |
4803 case ZOPEN + 6: | |
4804 case ZOPEN + 7: | |
4805 case ZOPEN + 8: | |
4806 case ZOPEN + 9: | |
4807 { | |
4808 no = op - ZOPEN; | |
4809 cleanup_zsubexpr(); | |
270 | 4810 rp = regstack_push(RS_ZOPEN, scan); |
180 | 4811 if (rp == NULL) |
4812 status = RA_FAIL; | |
4813 else | |
4814 { | |
4815 rp->rs_no = no; | |
4816 save_se(&rp->rs_un.sesave, ®_startzpos[no], | |
4817 ®_startzp[no]); | |
4818 /* We simply continue and handle the result when done. */ | |
4819 } | |
7 | 4820 } |
180 | 4821 break; |
7 | 4822 #endif |
4823 | |
4824 case MCLOSE + 0: /* Match end: \ze */ | |
4825 case MCLOSE + 1: /* \) */ | |
4826 case MCLOSE + 2: | |
4827 case MCLOSE + 3: | |
4828 case MCLOSE + 4: | |
4829 case MCLOSE + 5: | |
4830 case MCLOSE + 6: | |
4831 case MCLOSE + 7: | |
4832 case MCLOSE + 8: | |
4833 case MCLOSE + 9: | |
4834 { | |
4835 no = op - MCLOSE; | |
4836 cleanup_subexpr(); | |
270 | 4837 rp = regstack_push(RS_MCLOSE, scan); |
180 | 4838 if (rp == NULL) |
4839 status = RA_FAIL; | |
4840 else | |
4841 { | |
4842 rp->rs_no = no; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4843 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
|
4844 &rex.reg_endp[no]); |
180 | 4845 /* We simply continue and handle the result when done. */ |
4846 } | |
7 | 4847 } |
180 | 4848 break; |
7 | 4849 |
4850 #ifdef FEAT_SYN_HL | |
4851 case ZCLOSE + 1: /* \) after \z( */ | |
4852 case ZCLOSE + 2: | |
4853 case ZCLOSE + 3: | |
4854 case ZCLOSE + 4: | |
4855 case ZCLOSE + 5: | |
4856 case ZCLOSE + 6: | |
4857 case ZCLOSE + 7: | |
4858 case ZCLOSE + 8: | |
4859 case ZCLOSE + 9: | |
4860 { | |
4861 no = op - ZCLOSE; | |
4862 cleanup_zsubexpr(); | |
270 | 4863 rp = regstack_push(RS_ZCLOSE, scan); |
180 | 4864 if (rp == NULL) |
4865 status = RA_FAIL; | |
4866 else | |
4867 { | |
4868 rp->rs_no = no; | |
4869 save_se(&rp->rs_un.sesave, ®_endzpos[no], | |
4870 ®_endzp[no]); | |
4871 /* We simply continue and handle the result when done. */ | |
4872 } | |
7 | 4873 } |
180 | 4874 break; |
7 | 4875 #endif |
4876 | |
4877 case BACKREF + 1: | |
4878 case BACKREF + 2: | |
4879 case BACKREF + 3: | |
4880 case BACKREF + 4: | |
4881 case BACKREF + 5: | |
4882 case BACKREF + 6: | |
4883 case BACKREF + 7: | |
4884 case BACKREF + 8: | |
4885 case BACKREF + 9: | |
4886 { | |
4887 int len; | |
4888 | |
4889 no = op - BACKREF; | |
4890 cleanup_subexpr(); | |
4891 if (!REG_MULTI) /* Single-line regexp */ | |
4892 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4893 if (rex.reg_startp[no] == NULL || rex.reg_endp[no] == NULL) |
7 | 4894 { |
4895 /* Backref was not set: Match an empty string. */ | |
4896 len = 0; | |
4897 } | |
4898 else | |
4899 { | |
4900 /* Compare current input with back-ref in the same | |
4901 * line. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4902 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
|
4903 if (cstrncmp(rex.reg_startp[no], rex.input, &len) != 0) |
180 | 4904 status = RA_NOMATCH; |
7 | 4905 } |
4906 } | |
4907 else /* Multi-line regexp */ | |
4908 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4909 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
|
4910 || rex.reg_endpos[no].lnum < 0) |
7 | 4911 { |
4912 /* Backref was not set: Match an empty string. */ | |
4913 len = 0; | |
4914 } | |
4915 else | |
4916 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4917 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
|
4918 && rex.reg_endpos[no].lnum == rex.lnum) |
7 | 4919 { |
4920 /* 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
|
4921 len = rex.reg_endpos[no].col |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4922 - 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
|
4923 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
|
4924 rex.input, &len) != 0) |
180 | 4925 status = RA_NOMATCH; |
7 | 4926 } |
4927 else | |
4928 { | |
4929 /* Messy situation: Need to compare between two | |
4930 * lines. */ | |
4901
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
4931 int r = match_with_backref( |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4932 rex.reg_startpos[no].lnum, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4933 rex.reg_startpos[no].col, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4934 rex.reg_endpos[no].lnum, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4935 rex.reg_endpos[no].col, |
4899
4837fd61be52
updated for version 7.3.1195
Bram Moolenaar <bram@vim.org>
parents:
4891
diff
changeset
|
4936 &len); |
4901
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
4937 |
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
4938 if (r != RA_MATCH) |
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
4939 status = r; |
7 | 4940 } |
4941 } | |
4942 } | |
4943 | |
4944 /* 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
|
4945 rex.input += len; |
7 | 4946 } |
4947 break; | |
4948 | |
4949 #ifdef FEAT_SYN_HL | |
4950 case ZREF + 1: | |
4951 case ZREF + 2: | |
4952 case ZREF + 3: | |
4953 case ZREF + 4: | |
4954 case ZREF + 5: | |
4955 case ZREF + 6: | |
4956 case ZREF + 7: | |
4957 case ZREF + 8: | |
4958 case ZREF + 9: | |
4959 { | |
4960 int len; | |
4961 | |
4962 cleanup_zsubexpr(); | |
4963 no = op - ZREF; | |
4964 if (re_extmatch_in != NULL | |
4965 && re_extmatch_in->matches[no] != NULL) | |
4966 { | |
4967 len = (int)STRLEN(re_extmatch_in->matches[no]); | |
4968 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
|
4969 rex.input, &len) != 0) |
180 | 4970 status = RA_NOMATCH; |
4971 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
4972 rex.input += len; |
7 | 4973 } |
4974 else | |
4975 { | |
4976 /* Backref was not set: Match an empty string. */ | |
4977 } | |
4978 } | |
4979 break; | |
4980 #endif | |
4981 | |
4982 case BRANCH: | |
4983 { | |
4984 if (OP(next) != BRANCH) /* No choice. */ | |
4985 next = OPERAND(scan); /* Avoid recursion. */ | |
4986 else | |
4987 { | |
270 | 4988 rp = regstack_push(RS_BRANCH, scan); |
180 | 4989 if (rp == NULL) |
4990 status = RA_FAIL; | |
4991 else | |
4992 status = RA_BREAK; /* rest is below */ | |
7 | 4993 } |
4994 } | |
4995 break; | |
4996 | |
4997 case BRACE_LIMITS: | |
4998 { | |
4999 if (OP(next) == BRACE_SIMPLE) | |
5000 { | |
5001 bl_minval = OPERAND_MIN(scan); | |
5002 bl_maxval = OPERAND_MAX(scan); | |
5003 } | |
5004 else if (OP(next) >= BRACE_COMPLEX | |
5005 && OP(next) < BRACE_COMPLEX + 10) | |
5006 { | |
5007 no = OP(next) - BRACE_COMPLEX; | |
5008 brace_min[no] = OPERAND_MIN(scan); | |
5009 brace_max[no] = OPERAND_MAX(scan); | |
5010 brace_count[no] = 0; | |
5011 } | |
5012 else | |
5013 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
5014 internal_error("BRACE_LIMITS"); |
180 | 5015 status = RA_FAIL; |
7 | 5016 } |
5017 } | |
5018 break; | |
5019 | |
5020 case BRACE_COMPLEX + 0: | |
5021 case BRACE_COMPLEX + 1: | |
5022 case BRACE_COMPLEX + 2: | |
5023 case BRACE_COMPLEX + 3: | |
5024 case BRACE_COMPLEX + 4: | |
5025 case BRACE_COMPLEX + 5: | |
5026 case BRACE_COMPLEX + 6: | |
5027 case BRACE_COMPLEX + 7: | |
5028 case BRACE_COMPLEX + 8: | |
5029 case BRACE_COMPLEX + 9: | |
5030 { | |
5031 no = op - BRACE_COMPLEX; | |
5032 ++brace_count[no]; | |
5033 | |
5034 /* If not matched enough times yet, try one more */ | |
5035 if (brace_count[no] <= (brace_min[no] <= brace_max[no] | |
180 | 5036 ? brace_min[no] : brace_max[no])) |
7 | 5037 { |
270 | 5038 rp = regstack_push(RS_BRCPLX_MORE, scan); |
180 | 5039 if (rp == NULL) |
5040 status = RA_FAIL; | |
5041 else | |
5042 { | |
5043 rp->rs_no = no; | |
233 | 5044 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5045 next = OPERAND(scan); |
5046 /* We continue and handle the result when done. */ | |
5047 } | |
5048 break; | |
7 | 5049 } |
5050 | |
5051 /* If matched enough times, may try matching some more */ | |
5052 if (brace_min[no] <= brace_max[no]) | |
5053 { | |
5054 /* Range is the normal way around, use longest match */ | |
5055 if (brace_count[no] <= brace_max[no]) | |
5056 { | |
270 | 5057 rp = regstack_push(RS_BRCPLX_LONG, scan); |
180 | 5058 if (rp == NULL) |
5059 status = RA_FAIL; | |
5060 else | |
5061 { | |
5062 rp->rs_no = no; | |
233 | 5063 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5064 next = OPERAND(scan); |
5065 /* We continue and handle the result when done. */ | |
5066 } | |
7 | 5067 } |
5068 } | |
5069 else | |
5070 { | |
5071 /* Range is backwards, use shortest match first */ | |
5072 if (brace_count[no] <= brace_min[no]) | |
5073 { | |
270 | 5074 rp = regstack_push(RS_BRCPLX_SHORT, scan); |
180 | 5075 if (rp == NULL) |
5076 status = RA_FAIL; | |
5077 else | |
5078 { | |
233 | 5079 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5080 /* We continue and handle the result when done. */ |
5081 } | |
7 | 5082 } |
5083 } | |
5084 } | |
5085 break; | |
5086 | |
5087 case BRACE_SIMPLE: | |
5088 case STAR: | |
5089 case PLUS: | |
5090 { | |
180 | 5091 regstar_T rst; |
7 | 5092 |
5093 /* | |
5094 * Lookahead to avoid useless match attempts when we know | |
5095 * what character comes next. | |
5096 */ | |
5097 if (OP(next) == EXACTLY) | |
5098 { | |
180 | 5099 rst.nextb = *OPERAND(next); |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5100 if (rex.reg_ic) |
7 | 5101 { |
1347 | 5102 if (MB_ISUPPER(rst.nextb)) |
5103 rst.nextb_ic = MB_TOLOWER(rst.nextb); | |
7 | 5104 else |
1347 | 5105 rst.nextb_ic = MB_TOUPPER(rst.nextb); |
7 | 5106 } |
5107 else | |
180 | 5108 rst.nextb_ic = rst.nextb; |
7 | 5109 } |
5110 else | |
5111 { | |
180 | 5112 rst.nextb = NUL; |
5113 rst.nextb_ic = NUL; | |
7 | 5114 } |
5115 if (op != BRACE_SIMPLE) | |
5116 { | |
180 | 5117 rst.minval = (op == STAR) ? 0 : 1; |
5118 rst.maxval = MAX_LIMIT; | |
7 | 5119 } |
5120 else | |
5121 { | |
180 | 5122 rst.minval = bl_minval; |
5123 rst.maxval = bl_maxval; | |
7 | 5124 } |
5125 | |
5126 /* | |
5127 * When maxval > minval, try matching as much as possible, up | |
5128 * to maxval. When maxval < minval, try matching at least the | |
5129 * minimal number (since the range is backwards, that's also | |
5130 * maxval!). | |
5131 */ | |
180 | 5132 rst.count = regrepeat(OPERAND(scan), rst.maxval); |
7 | 5133 if (got_int) |
180 | 5134 { |
5135 status = RA_FAIL; | |
5136 break; | |
5137 } | |
5138 if (rst.minval <= rst.maxval | |
5139 ? rst.count >= rst.minval : rst.count >= rst.maxval) | |
7 | 5140 { |
180 | 5141 /* It could match. Prepare for trying to match what |
5142 * follows. The code is below. Parameters are stored in | |
5143 * a regstar_T on the regstack. */ | |
212 | 5144 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5145 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
5146 emsg(_(e_maxmempat)); |
189 | 5147 status = RA_FAIL; |
5148 } | |
5149 else if (ga_grow(®stack, sizeof(regstar_T)) == FAIL) | |
180 | 5150 status = RA_FAIL; |
5151 else | |
7 | 5152 { |
180 | 5153 regstack.ga_len += sizeof(regstar_T); |
270 | 5154 rp = regstack_push(rst.minval <= rst.maxval |
233 | 5155 ? RS_STAR_LONG : RS_STAR_SHORT, scan); |
180 | 5156 if (rp == NULL) |
5157 status = RA_FAIL; | |
5158 else | |
7 | 5159 { |
180 | 5160 *(((regstar_T *)rp) - 1) = rst; |
5161 status = RA_BREAK; /* skip the restore bits */ | |
7 | 5162 } |
5163 } | |
5164 } | |
5165 else | |
180 | 5166 status = RA_NOMATCH; |
5167 | |
7 | 5168 } |
180 | 5169 break; |
7 | 5170 |
5171 case NOMATCH: | |
5172 case MATCH: | |
5173 case SUBPAT: | |
270 | 5174 rp = regstack_push(RS_NOMATCH, scan); |
180 | 5175 if (rp == NULL) |
5176 status = RA_FAIL; | |
5177 else | |
7 | 5178 { |
180 | 5179 rp->rs_no = op; |
233 | 5180 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5181 next = OPERAND(scan); |
5182 /* We continue and handle the result when done. */ | |
7 | 5183 } |
5184 break; | |
5185 | |
5186 case BEHIND: | |
5187 case NOBEHIND: | |
180 | 5188 /* Need a bit of room to store extra positions. */ |
212 | 5189 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5190 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
5191 emsg(_(e_maxmempat)); |
189 | 5192 status = RA_FAIL; |
5193 } | |
5194 else if (ga_grow(®stack, sizeof(regbehind_T)) == FAIL) | |
180 | 5195 status = RA_FAIL; |
5196 else | |
7 | 5197 { |
180 | 5198 regstack.ga_len += sizeof(regbehind_T); |
270 | 5199 rp = regstack_push(RS_BEHIND1, scan); |
180 | 5200 if (rp == NULL) |
5201 status = RA_FAIL; | |
5202 else | |
7 | 5203 { |
1579 | 5204 /* Need to save the subexpr to be able to restore them |
5205 * when there is a match but we don't use it. */ | |
5206 save_subexpr(((regbehind_T *)rp) - 1); | |
5207 | |
180 | 5208 rp->rs_no = op; |
233 | 5209 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5210 /* First try if what follows matches. If it does then we |
5211 * check the behind match by looping. */ | |
7 | 5212 } |
5213 } | |
180 | 5214 break; |
7 | 5215 |
5216 case BHPOS: | |
5217 if (REG_MULTI) | |
5218 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5219 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
|
5220 || behind_pos.rs_u.pos.lnum != rex.lnum) |
180 | 5221 status = RA_NOMATCH; |
7 | 5222 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5223 else if (behind_pos.rs_u.ptr != rex.input) |
180 | 5224 status = RA_NOMATCH; |
7 | 5225 break; |
5226 | |
5227 case NEWL: | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5228 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
|
5229 || rex.reg_line_lbr) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5230 && (c != '\n' || !rex.reg_line_lbr)) |
180 | 5231 status = RA_NOMATCH; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5232 else if (rex.reg_line_lbr) |
7 | 5233 ADVANCE_REGINPUT(); |
5234 else | |
5235 reg_nextline(); | |
5236 break; | |
5237 | |
5238 case END: | |
180 | 5239 status = RA_MATCH; /* Success! */ |
5240 break; | |
7 | 5241 |
5242 default: | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
5243 emsg(_(e_re_corr)); |
7 | 5244 #ifdef DEBUG |
5245 printf("Illegal op code %d\n", op); | |
5246 #endif | |
180 | 5247 status = RA_FAIL; |
5248 break; | |
7 | 5249 } |
5250 } | |
5251 | |
180 | 5252 /* If we can't continue sequentially, break the inner loop. */ |
5253 if (status != RA_CONT) | |
5254 break; | |
5255 | |
5256 /* Continue in inner loop, advance to next item. */ | |
7 | 5257 scan = next; |
180 | 5258 |
5259 } /* end of inner loop */ | |
7 | 5260 |
5261 /* | |
180 | 5262 * If there is something on the regstack execute the code for the state. |
233 | 5263 * If the state is popped then loop and use the older state. |
7 | 5264 */ |
180 | 5265 while (regstack.ga_len > 0 && status != RA_FAIL) |
5266 { | |
5267 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; | |
5268 switch (rp->rs_state) | |
5269 { | |
5270 case RS_NOPEN: | |
5271 /* Result is passed on as-is, simply pop the state. */ | |
270 | 5272 regstack_pop(&scan); |
180 | 5273 break; |
5274 | |
5275 case RS_MOPEN: | |
5276 /* Pop the state. Restore pointers when there is no match. */ | |
5277 if (status == RA_NOMATCH) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5278 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
|
5279 &rex.reg_startp[rp->rs_no]); |
270 | 5280 regstack_pop(&scan); |
180 | 5281 break; |
5282 | |
5283 #ifdef FEAT_SYN_HL | |
5284 case RS_ZOPEN: | |
5285 /* Pop the state. Restore pointers when there is no match. */ | |
5286 if (status == RA_NOMATCH) | |
5287 restore_se(&rp->rs_un.sesave, ®_startzpos[rp->rs_no], | |
5288 ®_startzp[rp->rs_no]); | |
270 | 5289 regstack_pop(&scan); |
180 | 5290 break; |
5291 #endif | |
5292 | |
5293 case RS_MCLOSE: | |
5294 /* Pop the state. Restore pointers when there is no match. */ | |
5295 if (status == RA_NOMATCH) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5296 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
|
5297 &rex.reg_endp[rp->rs_no]); |
270 | 5298 regstack_pop(&scan); |
180 | 5299 break; |
5300 | |
5301 #ifdef FEAT_SYN_HL | |
5302 case RS_ZCLOSE: | |
5303 /* Pop the state. Restore pointers when there is no match. */ | |
5304 if (status == RA_NOMATCH) | |
5305 restore_se(&rp->rs_un.sesave, ®_endzpos[rp->rs_no], | |
5306 ®_endzp[rp->rs_no]); | |
270 | 5307 regstack_pop(&scan); |
180 | 5308 break; |
5309 #endif | |
5310 | |
5311 case RS_BRANCH: | |
5312 if (status == RA_MATCH) | |
5313 /* this branch matched, use it */ | |
270 | 5314 regstack_pop(&scan); |
180 | 5315 else |
5316 { | |
5317 if (status != RA_BREAK) | |
5318 { | |
5319 /* After a non-matching branch: try next one. */ | |
233 | 5320 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5321 scan = rp->rs_scan; |
5322 } | |
5323 if (scan == NULL || OP(scan) != BRANCH) | |
5324 { | |
5325 /* no more branches, didn't find a match */ | |
5326 status = RA_NOMATCH; | |
270 | 5327 regstack_pop(&scan); |
180 | 5328 } |
5329 else | |
5330 { | |
5331 /* Prepare to try a branch. */ | |
5332 rp->rs_scan = regnext(scan); | |
233 | 5333 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5334 scan = OPERAND(scan); |
5335 } | |
5336 } | |
5337 break; | |
5338 | |
5339 case RS_BRCPLX_MORE: | |
5340 /* Pop the state. Restore pointers when there is no match. */ | |
5341 if (status == RA_NOMATCH) | |
5342 { | |
233 | 5343 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5344 --brace_count[rp->rs_no]; /* decrement match count */ |
5345 } | |
270 | 5346 regstack_pop(&scan); |
180 | 5347 break; |
5348 | |
5349 case RS_BRCPLX_LONG: | |
5350 /* Pop the state. Restore pointers when there is no match. */ | |
5351 if (status == RA_NOMATCH) | |
5352 { | |
5353 /* There was no match, but we did find enough matches. */ | |
233 | 5354 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5355 --brace_count[rp->rs_no]; |
5356 /* continue with the items after "\{}" */ | |
5357 status = RA_CONT; | |
5358 } | |
270 | 5359 regstack_pop(&scan); |
180 | 5360 if (status == RA_CONT) |
5361 scan = regnext(scan); | |
5362 break; | |
5363 | |
5364 case RS_BRCPLX_SHORT: | |
5365 /* Pop the state. Restore pointers when there is no match. */ | |
5366 if (status == RA_NOMATCH) | |
5367 /* There was no match, try to match one more item. */ | |
233 | 5368 reg_restore(&rp->rs_un.regsave, &backpos); |
270 | 5369 regstack_pop(&scan); |
180 | 5370 if (status == RA_NOMATCH) |
5371 { | |
5372 scan = OPERAND(scan); | |
5373 status = RA_CONT; | |
5374 } | |
5375 break; | |
5376 | |
5377 case RS_NOMATCH: | |
5378 /* Pop the state. If the operand matches for NOMATCH or | |
5379 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup, | |
5380 * except for SUBPAT, and continue with the next item. */ | |
5381 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH)) | |
5382 status = RA_NOMATCH; | |
5383 else | |
5384 { | |
5385 status = RA_CONT; | |
233 | 5386 if (rp->rs_no != SUBPAT) /* zero-width */ |
5387 reg_restore(&rp->rs_un.regsave, &backpos); | |
180 | 5388 } |
270 | 5389 regstack_pop(&scan); |
180 | 5390 if (status == RA_CONT) |
5391 scan = regnext(scan); | |
5392 break; | |
5393 | |
5394 case RS_BEHIND1: | |
5395 if (status == RA_NOMATCH) | |
5396 { | |
270 | 5397 regstack_pop(&scan); |
180 | 5398 regstack.ga_len -= sizeof(regbehind_T); |
5399 } | |
5400 else | |
5401 { | |
5402 /* The stuff after BEHIND/NOBEHIND matches. Now try if | |
5403 * the behind part does (not) match before the current | |
5404 * position in the input. This must be done at every | |
5405 * position in the input and checking if the match ends at | |
5406 * the current position. */ | |
5407 | |
5408 /* save the position after the found match for next */ | |
233 | 5409 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos); |
180 | 5410 |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5411 /* Start looking for a match with operand at the current |
1209 | 5412 * position. Go back one character until we find the |
180 | 5413 * result, hitting the start of the line or the previous |
5414 * line (for multi-line matching). | |
5415 * Set behind_pos to where the match should end, BHPOS | |
5416 * will match it. Save the current value. */ | |
5417 (((regbehind_T *)rp) - 1)->save_behind = behind_pos; | |
5418 behind_pos = rp->rs_un.regsave; | |
5419 | |
5420 rp->rs_state = RS_BEHIND2; | |
5421 | |
233 | 5422 reg_restore(&rp->rs_un.regsave, &backpos); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5423 scan = OPERAND(rp->rs_scan) + 4; |
180 | 5424 } |
5425 break; | |
5426 | |
5427 case RS_BEHIND2: | |
5428 /* | |
5429 * Looping for BEHIND / NOBEHIND match. | |
5430 */ | |
5431 if (status == RA_MATCH && reg_save_equal(&behind_pos)) | |
5432 { | |
5433 /* found a match that ends where "next" started */ | |
5434 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5435 if (rp->rs_no == BEHIND) | |
233 | 5436 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5437 &backpos); | |
180 | 5438 else |
1579 | 5439 { |
5440 /* But we didn't want a match. Need to restore the | |
5441 * subexpr, because what follows matched, so they have | |
5442 * been set. */ | |
180 | 5443 status = RA_NOMATCH; |
1579 | 5444 restore_subexpr(((regbehind_T *)rp) - 1); |
5445 } | |
270 | 5446 regstack_pop(&scan); |
180 | 5447 regstack.ga_len -= sizeof(regbehind_T); |
5448 } | |
5449 else | |
5450 { | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5451 long limit; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5452 |
1579 | 5453 /* No match or a match that doesn't end where we want it: Go |
5454 * back one character. May go to previous line once. */ | |
180 | 5455 no = OK; |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5456 limit = OPERAND_MIN(rp->rs_scan); |
180 | 5457 if (REG_MULTI) |
5458 { | |
4682
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5459 if (limit > 0 |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5460 && ((rp->rs_un.regsave.rs_u.pos.lnum |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5461 < 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
|
5462 ? (colnr_T)STRLEN(rex.line) |
4682
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5463 : behind_pos.rs_u.pos.col) |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5464 - 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
|
5465 no = FAIL; |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5466 else if (rp->rs_un.regsave.rs_u.pos.col == 0) |
180 | 5467 { |
5468 if (rp->rs_un.regsave.rs_u.pos.lnum | |
5469 < behind_pos.rs_u.pos.lnum | |
5470 || reg_getline( | |
5471 --rp->rs_un.regsave.rs_u.pos.lnum) | |
5472 == NULL) | |
5473 no = FAIL; | |
5474 else | |
5475 { | |
233 | 5476 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5477 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
|
5478 (colnr_T)STRLEN(rex.line); |
180 | 5479 } |
5480 } | |
5481 else | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5482 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5483 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
|
5484 { |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5485 char_u *line = |
15339
417bf10a756d
patch 8.1.0677: look-behind match may use the wrong line number
Bram Moolenaar <Bram@vim.org>
parents:
15306
diff
changeset
|
5486 reg_getline(rp->rs_un.regsave.rs_u.pos.lnum); |
13286
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5487 |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5488 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
|
5489 (*mb_head_off)(line, line |
4176 | 5490 + 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
|
5491 } |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5492 else |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5493 --rp->rs_un.regsave.rs_u.pos.col; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5494 } |
180 | 5495 } |
5496 else | |
5497 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5498 if (rp->rs_un.regsave.rs_u.ptr == rex.line) |
180 | 5499 no = FAIL; |
5500 else | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5501 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5502 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
|
5503 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
|
5504 - rp->rs_un.regsave.rs_u.ptr) > limit) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5505 no = FAIL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5506 } |
180 | 5507 } |
5508 if (no == OK) | |
5509 { | |
5510 /* Advanced, prepare for finding match again. */ | |
233 | 5511 reg_restore(&rp->rs_un.regsave, &backpos); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5512 scan = OPERAND(rp->rs_scan) + 4; |
1579 | 5513 if (status == RA_MATCH) |
5514 { | |
5515 /* We did match, so subexpr may have been changed, | |
5516 * need to restore them for the next try. */ | |
5517 status = RA_NOMATCH; | |
5518 restore_subexpr(((regbehind_T *)rp) - 1); | |
5519 } | |
180 | 5520 } |
5521 else | |
5522 { | |
5523 /* Can't advance. For NOBEHIND that's a match. */ | |
5524 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5525 if (rp->rs_no == NOBEHIND) | |
5526 { | |
233 | 5527 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5528 &backpos); | |
180 | 5529 status = RA_MATCH; |
5530 } | |
5531 else | |
1579 | 5532 { |
5533 /* We do want a proper match. Need to restore the | |
5534 * subexpr if we had a match, because they may have | |
5535 * been set. */ | |
5536 if (status == RA_MATCH) | |
5537 { | |
5538 status = RA_NOMATCH; | |
5539 restore_subexpr(((regbehind_T *)rp) - 1); | |
5540 } | |
5541 } | |
270 | 5542 regstack_pop(&scan); |
180 | 5543 regstack.ga_len -= sizeof(regbehind_T); |
5544 } | |
5545 } | |
5546 break; | |
5547 | |
5548 case RS_STAR_LONG: | |
5549 case RS_STAR_SHORT: | |
5550 { | |
5551 regstar_T *rst = ((regstar_T *)rp) - 1; | |
5552 | |
5553 if (status == RA_MATCH) | |
5554 { | |
270 | 5555 regstack_pop(&scan); |
180 | 5556 regstack.ga_len -= sizeof(regstar_T); |
5557 break; | |
5558 } | |
5559 | |
5560 /* Tried once already, restore input pointers. */ | |
5561 if (status != RA_BREAK) | |
233 | 5562 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5563 |
5564 /* Repeat until we found a position where it could match. */ | |
5565 for (;;) | |
5566 { | |
5567 if (status != RA_BREAK) | |
5568 { | |
5569 /* Tried first position already, advance. */ | |
5570 if (rp->rs_state == RS_STAR_LONG) | |
5571 { | |
685 | 5572 /* Trying for longest match, but couldn't or |
5573 * didn't match -- back up one char. */ | |
180 | 5574 if (--rst->count < rst->minval) |
5575 break; | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5576 if (rex.input == rex.line) |
180 | 5577 { |
5578 /* 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
|
5579 --rex.lnum; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5580 rex.line = reg_getline(rex.lnum); |
180 | 5581 /* Just in case regrepeat() didn't count |
5582 * right. */ | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5583 if (rex.line == NULL) |
180 | 5584 break; |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5585 rex.input = rex.line + STRLEN(rex.line); |
180 | 5586 fast_breakcheck(); |
5587 } | |
5588 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5589 MB_PTR_BACK(rex.line, rex.input); |
180 | 5590 } |
5591 else | |
5592 { | |
5593 /* Range is backwards, use shortest match first. | |
5594 * Careful: maxval and minval are exchanged! | |
5595 * Couldn't or didn't match: try advancing one | |
5596 * char. */ | |
5597 if (rst->count == rst->minval | |
5598 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0) | |
5599 break; | |
5600 ++rst->count; | |
5601 } | |
5602 if (got_int) | |
5603 break; | |
5604 } | |
5605 else | |
5606 status = RA_NOMATCH; | |
5607 | |
5608 /* 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
|
5609 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
|
5610 || *rex.input == rst->nextb_ic) |
180 | 5611 { |
233 | 5612 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5613 scan = regnext(rp->rs_scan); |
5614 status = RA_CONT; | |
5615 break; | |
5616 } | |
5617 } | |
5618 if (status != RA_CONT) | |
5619 { | |
5620 /* Failed. */ | |
270 | 5621 regstack_pop(&scan); |
180 | 5622 regstack.ga_len -= sizeof(regstar_T); |
5623 status = RA_NOMATCH; | |
5624 } | |
5625 } | |
5626 break; | |
5627 } | |
5628 | |
685 | 5629 /* If we want to continue the inner loop or didn't pop a state |
5630 * continue matching loop */ | |
180 | 5631 if (status == RA_CONT || rp == (regitem_T *) |
5632 ((char *)regstack.ga_data + regstack.ga_len) - 1) | |
5633 break; | |
5634 } | |
5635 | |
189 | 5636 /* May need to continue with the inner loop, starting at "scan". */ |
180 | 5637 if (status == RA_CONT) |
5638 continue; | |
5639 | |
5640 /* | |
5641 * If the regstack is empty or something failed we are done. | |
5642 */ | |
5643 if (regstack.ga_len == 0 || status == RA_FAIL) | |
5644 { | |
5645 if (scan == NULL) | |
5646 { | |
5647 /* | |
5648 * We get here only if there's trouble -- normally "case END" is | |
5649 * the terminating point. | |
5650 */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
5651 emsg(_(e_re_corr)); |
7 | 5652 #ifdef DEBUG |
180 | 5653 printf("Premature EOL\n"); |
7 | 5654 #endif |
180 | 5655 } |
5656 return (status == RA_MATCH); | |
5657 } | |
5658 | |
5659 } /* End of loop until the regstack is empty. */ | |
5660 | |
5661 /* NOTREACHED */ | |
5662 } | |
5663 | |
5664 /* | |
5665 * Push an item onto the regstack. | |
5666 * Returns pointer to new item. Returns NULL when out of memory. | |
5667 */ | |
5668 static regitem_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5669 regstack_push(regstate_T state, char_u *scan) |
180 | 5670 { |
5671 regitem_T *rp; | |
5672 | |
270 | 5673 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5674 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
5675 emsg(_(e_maxmempat)); |
189 | 5676 return NULL; |
5677 } | |
270 | 5678 if (ga_grow(®stack, sizeof(regitem_T)) == FAIL) |
180 | 5679 return NULL; |
5680 | |
270 | 5681 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len); |
180 | 5682 rp->rs_state = state; |
5683 rp->rs_scan = scan; | |
5684 | |
270 | 5685 regstack.ga_len += sizeof(regitem_T); |
180 | 5686 return rp; |
5687 } | |
5688 | |
5689 /* | |
5690 * Pop an item from the regstack. | |
5691 */ | |
5692 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5693 regstack_pop(char_u **scan) |
180 | 5694 { |
5695 regitem_T *rp; | |
5696 | |
270 | 5697 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; |
180 | 5698 *scan = rp->rs_scan; |
5699 | |
270 | 5700 regstack.ga_len -= sizeof(regitem_T); |
7 | 5701 } |
5702 | |
5703 /* | |
5704 * 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
|
5705 * Advances rex.input (and rex.lnum) to just after the matched chars. |
7 | 5706 */ |
5707 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5708 regrepeat( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5709 char_u *p, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5710 long maxcount) /* maximum number of matches allowed */ |
7 | 5711 { |
5712 long count = 0; | |
5713 char_u *scan; | |
5714 char_u *opnd; | |
5715 int mask; | |
5716 int testval = 0; | |
5717 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5718 scan = rex.input; /* Make local copy of rex.input for speed. */ |
7 | 5719 opnd = OPERAND(p); |
5720 switch (OP(p)) | |
5721 { | |
5722 case ANY: | |
5723 case ANY + ADD_NL: | |
5724 while (count < maxcount) | |
5725 { | |
5726 /* Matching anything means we continue until end-of-line (or | |
5727 * end-of-file for ANY + ADD_NL), only limited by maxcount. */ | |
5728 while (*scan != NUL && count < maxcount) | |
5729 { | |
5730 ++count; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5731 MB_PTR_ADV(scan); |
7 | 5732 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5733 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
|
5734 || rex.reg_line_lbr || count == maxcount) |
7 | 5735 break; |
5736 ++count; /* count the line-break */ | |
5737 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5738 scan = rex.input; |
7 | 5739 if (got_int) |
5740 break; | |
5741 } | |
5742 break; | |
5743 | |
5744 case IDENT: | |
5745 case IDENT + ADD_NL: | |
5746 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5747 /* FALLTHROUGH */ |
7 | 5748 case SIDENT: |
5749 case SIDENT + ADD_NL: | |
5750 while (count < maxcount) | |
5751 { | |
4466 | 5752 if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5753 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5754 MB_PTR_ADV(scan); |
7 | 5755 } |
5756 else if (*scan == NUL) | |
5757 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5758 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
|
5759 || rex.reg_line_lbr) |
7 | 5760 break; |
5761 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5762 scan = rex.input; |
7 | 5763 if (got_int) |
5764 break; | |
5765 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5766 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5767 ++scan; |
5768 else | |
5769 break; | |
5770 ++count; | |
5771 } | |
5772 break; | |
5773 | |
5774 case KWORD: | |
5775 case KWORD + ADD_NL: | |
5776 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5777 /* FALLTHROUGH */ |
7 | 5778 case SKWORD: |
5779 case SKWORD + ADD_NL: | |
5780 while (count < maxcount) | |
5781 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5782 if (vim_iswordp_buf(scan, rex.reg_buf) |
4069 | 5783 && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5784 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5785 MB_PTR_ADV(scan); |
7 | 5786 } |
5787 else if (*scan == NUL) | |
5788 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5789 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
|
5790 || rex.reg_line_lbr) |
7 | 5791 break; |
5792 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5793 scan = rex.input; |
7 | 5794 if (got_int) |
5795 break; | |
5796 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5797 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5798 ++scan; |
5799 else | |
5800 break; | |
5801 ++count; | |
5802 } | |
5803 break; | |
5804 | |
5805 case FNAME: | |
5806 case FNAME + ADD_NL: | |
5807 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5808 /* FALLTHROUGH */ |
7 | 5809 case SFNAME: |
5810 case SFNAME + ADD_NL: | |
5811 while (count < maxcount) | |
5812 { | |
4466 | 5813 if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5814 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5815 MB_PTR_ADV(scan); |
7 | 5816 } |
5817 else if (*scan == NUL) | |
5818 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5819 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
|
5820 || rex.reg_line_lbr) |
7 | 5821 break; |
5822 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5823 scan = rex.input; |
7 | 5824 if (got_int) |
5825 break; | |
5826 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5827 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5828 ++scan; |
5829 else | |
5830 break; | |
5831 ++count; | |
5832 } | |
5833 break; | |
5834 | |
5835 case PRINT: | |
5836 case PRINT + ADD_NL: | |
5837 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5838 /* FALLTHROUGH */ |
7 | 5839 case SPRINT: |
5840 case SPRINT + ADD_NL: | |
5841 while (count < maxcount) | |
5842 { | |
5843 if (*scan == NUL) | |
5844 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5845 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
|
5846 || rex.reg_line_lbr) |
7 | 5847 break; |
5848 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5849 scan = rex.input; |
7 | 5850 if (got_int) |
5851 break; | |
5852 } | |
5221
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
5853 else if (vim_isprintc(PTR2CHAR(scan)) == 1 |
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
5854 && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5855 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5856 MB_PTR_ADV(scan); |
7 | 5857 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5858 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5859 ++scan; |
5860 else | |
5861 break; | |
5862 ++count; | |
5863 } | |
5864 break; | |
5865 | |
5866 case WHITE: | |
5867 case WHITE + ADD_NL: | |
5868 testval = mask = RI_WHITE; | |
5869 do_class: | |
5870 while (count < maxcount) | |
5871 { | |
5872 int l; | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
5873 |
7 | 5874 if (*scan == NUL) |
5875 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5876 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
|
5877 || rex.reg_line_lbr) |
7 | 5878 break; |
5879 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
5880 scan = rex.input; |
7 | 5881 if (got_int) |
5882 break; | |
5883 } | |
474 | 5884 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1) |
7 | 5885 { |
5886 if (testval != 0) | |
5887 break; | |
5888 scan += l; | |
5889 } | |
5890 else if ((class_tab[*scan] & mask) == testval) | |
5891 ++scan; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5892 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5893 ++scan; |
5894 else | |
5895 break; | |
5896 ++count; | |
5897 } | |
5898 break; | |
5899 | |
5900 case NWHITE: | |
5901 case NWHITE + ADD_NL: | |
5902 mask = RI_WHITE; | |
5903 goto do_class; | |
5904 case DIGIT: | |
5905 case DIGIT + ADD_NL: | |
5906 testval = mask = RI_DIGIT; | |
5907 goto do_class; | |
5908 case NDIGIT: | |
5909 case NDIGIT + ADD_NL: | |
5910 mask = RI_DIGIT; | |
5911 goto do_class; | |
5912 case HEX: | |
5913 case HEX + ADD_NL: | |
5914 testval = mask = RI_HEX; | |
5915 goto do_class; | |
5916 case NHEX: | |
5917 case NHEX + ADD_NL: | |
5918 mask = RI_HEX; | |
5919 goto do_class; | |
5920 case OCTAL: | |
5921 case OCTAL + ADD_NL: | |
5922 testval = mask = RI_OCTAL; | |
5923 goto do_class; | |
5924 case NOCTAL: | |
5925 case NOCTAL + ADD_NL: | |
5926 mask = RI_OCTAL; | |
5927 goto do_class; | |
5928 case WORD: | |
5929 case WORD + ADD_NL: | |
5930 testval = mask = RI_WORD; | |
5931 goto do_class; | |
5932 case NWORD: | |
5933 case NWORD + ADD_NL: | |
5934 mask = RI_WORD; | |
5935 goto do_class; | |
5936 case HEAD: | |
5937 case HEAD + ADD_NL: | |
5938 testval = mask = RI_HEAD; | |
5939 goto do_class; | |
5940 case NHEAD: | |
5941 case NHEAD + ADD_NL: | |
5942 mask = RI_HEAD; | |
5943 goto do_class; | |
5944 case ALPHA: | |
5945 case ALPHA + ADD_NL: | |
5946 testval = mask = RI_ALPHA; | |
5947 goto do_class; | |
5948 case NALPHA: | |
5949 case NALPHA + ADD_NL: | |
5950 mask = RI_ALPHA; | |
5951 goto do_class; | |
5952 case LOWER: | |
5953 case LOWER + ADD_NL: | |
5954 testval = mask = RI_LOWER; | |
5955 goto do_class; | |
5956 case NLOWER: | |
5957 case NLOWER + ADD_NL: | |
5958 mask = RI_LOWER; | |
5959 goto do_class; | |
5960 case UPPER: | |
5961 case UPPER + ADD_NL: | |
5962 testval = mask = RI_UPPER; | |
5963 goto do_class; | |
5964 case NUPPER: | |
5965 case NUPPER + ADD_NL: | |
5966 mask = RI_UPPER; | |
5967 goto do_class; | |
5968 | |
5969 case EXACTLY: | |
5970 { | |
5971 int cu, cl; | |
5972 | |
5973 /* This doesn't do a multi-byte character, because a MULTIBYTECODE | |
1347 | 5974 * would have been used for it. It does handle single-byte |
5975 * characters, such as latin1. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5976 if (rex.reg_ic) |
7 | 5977 { |
1347 | 5978 cu = MB_TOUPPER(*opnd); |
5979 cl = MB_TOLOWER(*opnd); | |
7 | 5980 while (count < maxcount && (*scan == cu || *scan == cl)) |
5981 { | |
5982 count++; | |
5983 scan++; | |
5984 } | |
5985 } | |
5986 else | |
5987 { | |
5988 cu = *opnd; | |
5989 while (count < maxcount && *scan == cu) | |
5990 { | |
5991 count++; | |
5992 scan++; | |
5993 } | |
5994 } | |
5995 break; | |
5996 } | |
5997 | |
5998 case MULTIBYTECODE: | |
5999 { | |
6000 int i, len, cf = 0; | |
6001 | |
6002 /* Safety check (just in case 'encoding' was changed since | |
6003 * compiling the program). */ | |
474 | 6004 if ((len = (*mb_ptr2len)(opnd)) > 1) |
7 | 6005 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6006 if (rex.reg_ic && enc_utf8) |
7 | 6007 cf = utf_fold(utf_ptr2char(opnd)); |
6785 | 6008 while (count < maxcount && (*mb_ptr2len)(scan) >= len) |
7 | 6009 { |
6010 for (i = 0; i < len; ++i) | |
6011 if (opnd[i] != scan[i]) | |
6012 break; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6013 if (i < len && (!rex.reg_ic || !enc_utf8 |
7 | 6014 || utf_fold(utf_ptr2char(scan)) != cf)) |
6015 break; | |
6016 scan += len; | |
6017 ++count; | |
6018 } | |
6019 } | |
6020 } | |
6021 break; | |
6022 | |
6023 case ANYOF: | |
6024 case ANYOF + ADD_NL: | |
6025 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
6026 /* FALLTHROUGH */ |
7 | 6027 |
6028 case ANYBUT: | |
6029 case ANYBUT + ADD_NL: | |
6030 while (count < maxcount) | |
6031 { | |
6032 int len; | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
6033 |
7 | 6034 if (*scan == NUL) |
6035 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6036 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
|
6037 || rex.reg_line_lbr) |
7 | 6038 break; |
6039 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6040 scan = rex.input; |
7 | 6041 if (got_int) |
6042 break; | |
6043 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6044 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 6045 ++scan; |
474 | 6046 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1) |
7 | 6047 { |
6048 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval) | |
6049 break; | |
6050 scan += len; | |
6051 } | |
6052 else | |
6053 { | |
6054 if ((cstrchr(opnd, *scan) == NULL) == testval) | |
6055 break; | |
6056 ++scan; | |
6057 } | |
6058 ++count; | |
6059 } | |
6060 break; | |
6061 | |
6062 case NEWL: | |
6063 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
|
6064 && ((*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
|
6065 && !rex.reg_line_lbr && REG_MULTI) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6066 || (*scan == '\n' && rex.reg_line_lbr))) |
7 | 6067 { |
6068 count++; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6069 if (rex.reg_line_lbr) |
7 | 6070 ADVANCE_REGINPUT(); |
6071 else | |
6072 reg_nextline(); | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6073 scan = rex.input; |
7 | 6074 if (got_int) |
6075 break; | |
6076 } | |
6077 break; | |
6078 | |
6079 default: /* Oh dear. Called inappropriately. */ | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
6080 emsg(_(e_re_corr)); |
7 | 6081 #ifdef DEBUG |
6082 printf("Called regrepeat with op code %d\n", OP(p)); | |
6083 #endif | |
6084 break; | |
6085 } | |
6086 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6087 rex.input = scan; |
7 | 6088 |
6089 return (int)count; | |
6090 } | |
6091 | |
6092 /* | |
6093 * regnext - dig the "next" pointer out of a node | |
2010 | 6094 * Returns NULL when calculating size, when there is no next item and when |
6095 * there is an error. | |
7 | 6096 */ |
6097 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6098 regnext(char_u *p) |
7 | 6099 { |
6100 int offset; | |
6101 | |
2010 | 6102 if (p == JUST_CALC_SIZE || reg_toolong) |
7 | 6103 return NULL; |
6104 | |
6105 offset = NEXT(p); | |
6106 if (offset == 0) | |
6107 return NULL; | |
6108 | |
233 | 6109 if (OP(p) == BACK) |
7 | 6110 return p - offset; |
6111 else | |
6112 return p + offset; | |
6113 } | |
6114 | |
6115 /* | |
6116 * Check the regexp program for its magic number. | |
6117 * Return TRUE if it's wrong. | |
6118 */ | |
6119 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6120 prog_magic_wrong(void) |
7 | 6121 { |
4444 | 6122 regprog_T *prog; |
6123 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6124 prog = REG_MULTI ? rex.reg_mmatch->regprog : rex.reg_match->regprog; |
4444 | 6125 if (prog->engine == &nfa_regengine) |
6126 /* For NFA matcher we don't check the magic */ | |
6127 return FALSE; | |
6128 | |
6129 if (UCHARAT(((bt_regprog_T *)prog)->program) != REGMAGIC) | |
7 | 6130 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
6131 emsg(_(e_re_corr)); |
7 | 6132 return TRUE; |
6133 } | |
6134 return FALSE; | |
6135 } | |
6136 | |
6137 /* | |
6138 * Cleanup the subexpressions, if this wasn't done yet. | |
6139 * This construction is used to clear the subexpressions only when they are | |
6140 * used (to increase speed). | |
6141 */ | |
6142 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6143 cleanup_subexpr(void) |
7 | 6144 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6145 if (rex.need_clear_subexpr) |
7 | 6146 { |
6147 if (REG_MULTI) | |
6148 { | |
6149 /* 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
|
6150 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
|
6151 vim_memset(rex.reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP); |
7 | 6152 } |
6153 else | |
6154 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6155 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
|
6156 vim_memset(rex.reg_endp, 0, sizeof(char_u *) * NSUBEXP); |
7 | 6157 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6158 rex.need_clear_subexpr = FALSE; |
7 | 6159 } |
6160 } | |
6161 | |
6162 #ifdef FEAT_SYN_HL | |
6163 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6164 cleanup_zsubexpr(void) |
7 | 6165 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6166 if (rex.need_clear_zsubexpr) |
7 | 6167 { |
6168 if (REG_MULTI) | |
6169 { | |
6170 /* Use 0xff to set lnum to -1 */ | |
6171 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6172 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6173 } | |
6174 else | |
6175 { | |
6176 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP); | |
6177 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP); | |
6178 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6179 rex.need_clear_zsubexpr = FALSE; |
7 | 6180 } |
6181 } | |
6182 #endif | |
6183 | |
6184 /* | |
1579 | 6185 * Save the current subexpr to "bp", so that they can be restored |
6186 * later by restore_subexpr(). | |
6187 */ | |
6188 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6189 save_subexpr(regbehind_T *bp) |
1579 | 6190 { |
6191 int i; | |
6192 | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6193 /* When "rex.need_clear_subexpr" is set we don't need to save the values, only |
1602 | 6194 * 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
|
6195 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
|
6196 if (!rex.need_clear_subexpr) |
1579 | 6197 { |
1602 | 6198 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6199 { |
1602 | 6200 if (REG_MULTI) |
6201 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6202 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
|
6203 bp->save_end[i].se_u.pos = rex.reg_endpos[i]; |
1602 | 6204 } |
6205 else | |
6206 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6207 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
|
6208 bp->save_end[i].se_u.ptr = rex.reg_endp[i]; |
1602 | 6209 } |
1579 | 6210 } |
6211 } | |
6212 } | |
6213 | |
6214 /* | |
6215 * Restore the subexpr from "bp". | |
6216 */ | |
6217 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6218 restore_subexpr(regbehind_T *bp) |
1579 | 6219 { |
6220 int i; | |
6221 | |
1602 | 6222 /* 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
|
6223 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
|
6224 if (!rex.need_clear_subexpr) |
1579 | 6225 { |
1602 | 6226 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6227 { |
1602 | 6228 if (REG_MULTI) |
6229 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6230 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
|
6231 rex.reg_endpos[i] = bp->save_end[i].se_u.pos; |
1602 | 6232 } |
6233 else | |
6234 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6235 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
|
6236 rex.reg_endp[i] = bp->save_end[i].se_u.ptr; |
1602 | 6237 } |
1579 | 6238 } |
6239 } | |
6240 } | |
6241 | |
6242 /* | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6243 * Advance rex.lnum, rex.line and rex.input to the next line. |
7 | 6244 */ |
6245 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6246 reg_nextline(void) |
7 | 6247 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6248 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
|
6249 rex.input = rex.line; |
7 | 6250 fast_breakcheck(); |
6251 } | |
6252 | |
6253 /* | |
6254 * Save the input line and position in a regsave_T. | |
6255 */ | |
6256 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6257 reg_save(regsave_T *save, garray_T *gap) |
7 | 6258 { |
6259 if (REG_MULTI) | |
6260 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6261 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
|
6262 save->rs_u.pos.lnum = rex.lnum; |
7 | 6263 } |
6264 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6265 save->rs_u.ptr = rex.input; |
233 | 6266 save->rs_len = gap->ga_len; |
7 | 6267 } |
6268 | |
6269 /* | |
6270 * Restore the input line and position from a regsave_T. | |
6271 */ | |
6272 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6273 reg_restore(regsave_T *save, garray_T *gap) |
7 | 6274 { |
6275 if (REG_MULTI) | |
6276 { | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6277 if (rex.lnum != save->rs_u.pos.lnum) |
7 | 6278 { |
6279 /* only call reg_getline() when the line number changed to save | |
6280 * 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
|
6281 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
|
6282 rex.line = reg_getline(rex.lnum); |
7 | 6283 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6284 rex.input = rex.line + save->rs_u.pos.col; |
7 | 6285 } |
6286 else | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6287 rex.input = save->rs_u.ptr; |
233 | 6288 gap->ga_len = save->rs_len; |
7 | 6289 } |
6290 | |
6291 /* | |
6292 * Return TRUE if current position is equal to saved position. | |
6293 */ | |
6294 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6295 reg_save_equal(regsave_T *save) |
7 | 6296 { |
6297 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
|
6298 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
|
6299 && 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
|
6300 return rex.input == save->rs_u.ptr; |
7 | 6301 } |
6302 | |
6303 /* | |
6304 * Tentatively set the sub-expression start to the current position (after | |
6305 * calling regmatch() they will have changed). Need to save the existing | |
6306 * values for when there is no match. | |
6307 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()), | |
6308 * depending on REG_MULTI. | |
6309 */ | |
6310 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6311 save_se_multi(save_se_T *savep, lpos_T *posp) |
7 | 6312 { |
6313 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
|
6314 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
|
6315 posp->col = (colnr_T)(rex.input - rex.line); |
7 | 6316 } |
6317 | |
6318 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6319 save_se_one(save_se_T *savep, char_u **pp) |
7 | 6320 { |
6321 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
|
6322 *pp = rex.input; |
7 | 6323 } |
6324 | |
6325 /* | |
6326 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL. | |
6327 */ | |
6328 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6329 re_num_cmp(long_u val, char_u *scan) |
7 | 6330 { |
6331 long_u n = OPERAND_MIN(scan); | |
6332 | |
6333 if (OPERAND_CMP(scan) == '>') | |
6334 return val > n; | |
6335 if (OPERAND_CMP(scan) == '<') | |
6336 return val < n; | |
6337 return val == n; | |
6338 } | |
6339 | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6340 /* |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6341 * Check whether a backreference matches. |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6342 * Returns RA_FAIL, RA_NOMATCH or RA_MATCH. |
5504 | 6343 * If "bytelen" is not NULL, it is set to the byte length of the match in the |
6344 * last line. | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6345 */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6346 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6347 match_with_backref( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6348 linenr_T start_lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6349 colnr_T start_col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6350 linenr_T end_lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6351 colnr_T end_col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6352 int *bytelen) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6353 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6354 linenr_T clnum = start_lnum; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6355 colnr_T ccol = start_col; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6356 int len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6357 char_u *p; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6358 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6359 if (bytelen != NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6360 *bytelen = 0; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6361 for (;;) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6362 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6363 /* 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
|
6364 * Slow! */ |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6365 if (rex.line != reg_tofree) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6366 { |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6367 len = (int)STRLEN(rex.line); |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6368 if (reg_tofree == NULL || len >= (int)reg_tofreelen) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6369 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6370 len += 50; /* get some extra */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6371 vim_free(reg_tofree); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6372 reg_tofree = alloc(len); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6373 if (reg_tofree == NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6374 return RA_FAIL; /* out of memory!*/ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6375 reg_tofreelen = len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6376 } |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6377 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
|
6378 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
|
6379 rex.line = reg_tofree; |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6380 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6381 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6382 /* Get the line to compare with. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6383 p = reg_getline(clnum); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6384 if (clnum == end_lnum) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6385 len = end_col - ccol; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6386 else |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6387 len = (int)STRLEN(p + ccol); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6388 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6389 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
|
6390 return RA_NOMATCH; /* doesn't match */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6391 if (bytelen != NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6392 *bytelen += len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6393 if (clnum == end_lnum) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6394 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
|
6395 if (rex.lnum >= rex.reg_maxline) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6396 return RA_NOMATCH; /* text too short */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6397 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6398 /* Advance to next line. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6399 reg_nextline(); |
5504 | 6400 if (bytelen != NULL) |
6401 *bytelen = 0; | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6402 ++clnum; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6403 ccol = 0; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6404 if (got_int) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6405 return RA_FAIL; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6406 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6407 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
6408 /* 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
|
6409 * that should not matter. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6410 return RA_MATCH; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6411 } |
7 | 6412 |
4444 | 6413 #ifdef BT_REGEXP_DUMP |
7 | 6414 |
6415 /* | |
6416 * regdump - dump a regexp onto stdout in vaguely comprehensible form | |
6417 */ | |
6418 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6419 regdump(char_u *pattern, bt_regprog_T *r) |
7 | 6420 { |
6421 char_u *s; | |
6422 int op = EXACTLY; /* Arbitrary non-END op. */ | |
6423 char_u *next; | |
6424 char_u *end = NULL; | |
4444 | 6425 FILE *f; |
6426 | |
6427 #ifdef BT_REGEXP_LOG | |
6428 f = fopen("bt_regexp_log.log", "a"); | |
6429 #else | |
6430 f = stdout; | |
6431 #endif | |
6432 if (f == NULL) | |
6433 return; | |
6434 fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern); | |
7 | 6435 |
6436 s = r->program + 1; | |
6437 /* | |
6438 * Loop until we find the END that isn't before a referred next (an END | |
6439 * can also appear in a NOMATCH operand). | |
6440 */ | |
6441 while (op != END || s <= end) | |
6442 { | |
6443 op = OP(s); | |
4444 | 6444 fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */ |
7 | 6445 next = regnext(s); |
6446 if (next == NULL) /* Next ptr. */ | |
4444 | 6447 fprintf(f, "(0)"); |
7 | 6448 else |
4444 | 6449 fprintf(f, "(%d)", (int)((s - r->program) + (next - s))); |
7 | 6450 if (end < next) |
6451 end = next; | |
6452 if (op == BRACE_LIMITS) | |
6453 { | |
4746
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6454 /* Two ints */ |
4444 | 6455 fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s)); |
7 | 6456 s += 8; |
6457 } | |
4746
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6458 else if (op == BEHIND || op == NOBEHIND) |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6459 { |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6460 /* one int */ |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6461 fprintf(f, " count %ld", OPERAND_MIN(s)); |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6462 s += 4; |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6463 } |
4770
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6464 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
|
6465 { |
15967
ddd82b1c9e9d
patch 8.1.0989: various small code ugliness
Bram Moolenaar <Bram@vim.org>
parents:
15959
diff
changeset
|
6466 /* one int plus comparator */ |
4770
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6467 fprintf(f, " count %ld", OPERAND_MIN(s)); |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6468 s += 5; |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6469 } |
7 | 6470 s += 3; |
6471 if (op == ANYOF || op == ANYOF + ADD_NL | |
6472 || op == ANYBUT || op == ANYBUT + ADD_NL | |
6473 || op == EXACTLY) | |
6474 { | |
6475 /* Literal string, where present. */ | |
4444 | 6476 fprintf(f, "\nxxxxxxxxx\n"); |
7 | 6477 while (*s != NUL) |
4444 | 6478 fprintf(f, "%c", *s++); |
6479 fprintf(f, "\nxxxxxxxxx\n"); | |
7 | 6480 s++; |
6481 } | |
4444 | 6482 fprintf(f, "\r\n"); |
7 | 6483 } |
6484 | |
6485 /* Header fields of interest. */ | |
6486 if (r->regstart != NUL) | |
4444 | 6487 fprintf(f, "start `%s' 0x%x; ", r->regstart < 256 |
7 | 6488 ? (char *)transchar(r->regstart) |
6489 : "multibyte", r->regstart); | |
6490 if (r->reganch) | |
4444 | 6491 fprintf(f, "anchored; "); |
7 | 6492 if (r->regmust != NULL) |
4444 | 6493 fprintf(f, "must have \"%s\"", r->regmust); |
6494 fprintf(f, "\r\n"); | |
6495 | |
6496 #ifdef BT_REGEXP_LOG | |
6497 fclose(f); | |
6498 #endif | |
7 | 6499 } |
4444 | 6500 #endif /* BT_REGEXP_DUMP */ |
6501 | |
6502 #ifdef DEBUG | |
7 | 6503 /* |
6504 * regprop - printable representation of opcode | |
6505 */ | |
6506 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6507 regprop(char_u *op) |
7 | 6508 { |
4444 | 6509 char *p; |
6510 static char buf[50]; | |
6511 | |
6512 STRCPY(buf, ":"); | |
6513 | |
6514 switch ((int) OP(op)) | |
7 | 6515 { |
6516 case BOL: | |
6517 p = "BOL"; | |
6518 break; | |
6519 case EOL: | |
6520 p = "EOL"; | |
6521 break; | |
6522 case RE_BOF: | |
6523 p = "BOF"; | |
6524 break; | |
6525 case RE_EOF: | |
6526 p = "EOF"; | |
6527 break; | |
6528 case CURSOR: | |
6529 p = "CURSOR"; | |
6530 break; | |
639 | 6531 case RE_VISUAL: |
6532 p = "RE_VISUAL"; | |
6533 break; | |
7 | 6534 case RE_LNUM: |
6535 p = "RE_LNUM"; | |
6536 break; | |
639 | 6537 case RE_MARK: |
6538 p = "RE_MARK"; | |
6539 break; | |
7 | 6540 case RE_COL: |
6541 p = "RE_COL"; | |
6542 break; | |
6543 case RE_VCOL: | |
6544 p = "RE_VCOL"; | |
6545 break; | |
6546 case BOW: | |
6547 p = "BOW"; | |
6548 break; | |
6549 case EOW: | |
6550 p = "EOW"; | |
6551 break; | |
6552 case ANY: | |
6553 p = "ANY"; | |
6554 break; | |
6555 case ANY + ADD_NL: | |
6556 p = "ANY+NL"; | |
6557 break; | |
6558 case ANYOF: | |
6559 p = "ANYOF"; | |
6560 break; | |
6561 case ANYOF + ADD_NL: | |
6562 p = "ANYOF+NL"; | |
6563 break; | |
6564 case ANYBUT: | |
6565 p = "ANYBUT"; | |
6566 break; | |
6567 case ANYBUT + ADD_NL: | |
6568 p = "ANYBUT+NL"; | |
6569 break; | |
6570 case IDENT: | |
6571 p = "IDENT"; | |
6572 break; | |
6573 case IDENT + ADD_NL: | |
6574 p = "IDENT+NL"; | |
6575 break; | |
6576 case SIDENT: | |
6577 p = "SIDENT"; | |
6578 break; | |
6579 case SIDENT + ADD_NL: | |
6580 p = "SIDENT+NL"; | |
6581 break; | |
6582 case KWORD: | |
6583 p = "KWORD"; | |
6584 break; | |
6585 case KWORD + ADD_NL: | |
6586 p = "KWORD+NL"; | |
6587 break; | |
6588 case SKWORD: | |
6589 p = "SKWORD"; | |
6590 break; | |
6591 case SKWORD + ADD_NL: | |
6592 p = "SKWORD+NL"; | |
6593 break; | |
6594 case FNAME: | |
6595 p = "FNAME"; | |
6596 break; | |
6597 case FNAME + ADD_NL: | |
6598 p = "FNAME+NL"; | |
6599 break; | |
6600 case SFNAME: | |
6601 p = "SFNAME"; | |
6602 break; | |
6603 case SFNAME + ADD_NL: | |
6604 p = "SFNAME+NL"; | |
6605 break; | |
6606 case PRINT: | |
6607 p = "PRINT"; | |
6608 break; | |
6609 case PRINT + ADD_NL: | |
6610 p = "PRINT+NL"; | |
6611 break; | |
6612 case SPRINT: | |
6613 p = "SPRINT"; | |
6614 break; | |
6615 case SPRINT + ADD_NL: | |
6616 p = "SPRINT+NL"; | |
6617 break; | |
6618 case WHITE: | |
6619 p = "WHITE"; | |
6620 break; | |
6621 case WHITE + ADD_NL: | |
6622 p = "WHITE+NL"; | |
6623 break; | |
6624 case NWHITE: | |
6625 p = "NWHITE"; | |
6626 break; | |
6627 case NWHITE + ADD_NL: | |
6628 p = "NWHITE+NL"; | |
6629 break; | |
6630 case DIGIT: | |
6631 p = "DIGIT"; | |
6632 break; | |
6633 case DIGIT + ADD_NL: | |
6634 p = "DIGIT+NL"; | |
6635 break; | |
6636 case NDIGIT: | |
6637 p = "NDIGIT"; | |
6638 break; | |
6639 case NDIGIT + ADD_NL: | |
6640 p = "NDIGIT+NL"; | |
6641 break; | |
6642 case HEX: | |
6643 p = "HEX"; | |
6644 break; | |
6645 case HEX + ADD_NL: | |
6646 p = "HEX+NL"; | |
6647 break; | |
6648 case NHEX: | |
6649 p = "NHEX"; | |
6650 break; | |
6651 case NHEX + ADD_NL: | |
6652 p = "NHEX+NL"; | |
6653 break; | |
6654 case OCTAL: | |
6655 p = "OCTAL"; | |
6656 break; | |
6657 case OCTAL + ADD_NL: | |
6658 p = "OCTAL+NL"; | |
6659 break; | |
6660 case NOCTAL: | |
6661 p = "NOCTAL"; | |
6662 break; | |
6663 case NOCTAL + ADD_NL: | |
6664 p = "NOCTAL+NL"; | |
6665 break; | |
6666 case WORD: | |
6667 p = "WORD"; | |
6668 break; | |
6669 case WORD + ADD_NL: | |
6670 p = "WORD+NL"; | |
6671 break; | |
6672 case NWORD: | |
6673 p = "NWORD"; | |
6674 break; | |
6675 case NWORD + ADD_NL: | |
6676 p = "NWORD+NL"; | |
6677 break; | |
6678 case HEAD: | |
6679 p = "HEAD"; | |
6680 break; | |
6681 case HEAD + ADD_NL: | |
6682 p = "HEAD+NL"; | |
6683 break; | |
6684 case NHEAD: | |
6685 p = "NHEAD"; | |
6686 break; | |
6687 case NHEAD + ADD_NL: | |
6688 p = "NHEAD+NL"; | |
6689 break; | |
6690 case ALPHA: | |
6691 p = "ALPHA"; | |
6692 break; | |
6693 case ALPHA + ADD_NL: | |
6694 p = "ALPHA+NL"; | |
6695 break; | |
6696 case NALPHA: | |
6697 p = "NALPHA"; | |
6698 break; | |
6699 case NALPHA + ADD_NL: | |
6700 p = "NALPHA+NL"; | |
6701 break; | |
6702 case LOWER: | |
6703 p = "LOWER"; | |
6704 break; | |
6705 case LOWER + ADD_NL: | |
6706 p = "LOWER+NL"; | |
6707 break; | |
6708 case NLOWER: | |
6709 p = "NLOWER"; | |
6710 break; | |
6711 case NLOWER + ADD_NL: | |
6712 p = "NLOWER+NL"; | |
6713 break; | |
6714 case UPPER: | |
6715 p = "UPPER"; | |
6716 break; | |
6717 case UPPER + ADD_NL: | |
6718 p = "UPPER+NL"; | |
6719 break; | |
6720 case NUPPER: | |
6721 p = "NUPPER"; | |
6722 break; | |
6723 case NUPPER + ADD_NL: | |
6724 p = "NUPPER+NL"; | |
6725 break; | |
6726 case BRANCH: | |
6727 p = "BRANCH"; | |
6728 break; | |
6729 case EXACTLY: | |
6730 p = "EXACTLY"; | |
6731 break; | |
6732 case NOTHING: | |
6733 p = "NOTHING"; | |
6734 break; | |
6735 case BACK: | |
6736 p = "BACK"; | |
6737 break; | |
6738 case END: | |
6739 p = "END"; | |
6740 break; | |
6741 case MOPEN + 0: | |
6742 p = "MATCH START"; | |
6743 break; | |
6744 case MOPEN + 1: | |
6745 case MOPEN + 2: | |
6746 case MOPEN + 3: | |
6747 case MOPEN + 4: | |
6748 case MOPEN + 5: | |
6749 case MOPEN + 6: | |
6750 case MOPEN + 7: | |
6751 case MOPEN + 8: | |
6752 case MOPEN + 9: | |
6753 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN); | |
6754 p = NULL; | |
6755 break; | |
6756 case MCLOSE + 0: | |
6757 p = "MATCH END"; | |
6758 break; | |
6759 case MCLOSE + 1: | |
6760 case MCLOSE + 2: | |
6761 case MCLOSE + 3: | |
6762 case MCLOSE + 4: | |
6763 case MCLOSE + 5: | |
6764 case MCLOSE + 6: | |
6765 case MCLOSE + 7: | |
6766 case MCLOSE + 8: | |
6767 case MCLOSE + 9: | |
6768 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE); | |
6769 p = NULL; | |
6770 break; | |
6771 case BACKREF + 1: | |
6772 case BACKREF + 2: | |
6773 case BACKREF + 3: | |
6774 case BACKREF + 4: | |
6775 case BACKREF + 5: | |
6776 case BACKREF + 6: | |
6777 case BACKREF + 7: | |
6778 case BACKREF + 8: | |
6779 case BACKREF + 9: | |
6780 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF); | |
6781 p = NULL; | |
6782 break; | |
6783 case NOPEN: | |
6784 p = "NOPEN"; | |
6785 break; | |
6786 case NCLOSE: | |
6787 p = "NCLOSE"; | |
6788 break; | |
6789 #ifdef FEAT_SYN_HL | |
6790 case ZOPEN + 1: | |
6791 case ZOPEN + 2: | |
6792 case ZOPEN + 3: | |
6793 case ZOPEN + 4: | |
6794 case ZOPEN + 5: | |
6795 case ZOPEN + 6: | |
6796 case ZOPEN + 7: | |
6797 case ZOPEN + 8: | |
6798 case ZOPEN + 9: | |
6799 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN); | |
6800 p = NULL; | |
6801 break; | |
6802 case ZCLOSE + 1: | |
6803 case ZCLOSE + 2: | |
6804 case ZCLOSE + 3: | |
6805 case ZCLOSE + 4: | |
6806 case ZCLOSE + 5: | |
6807 case ZCLOSE + 6: | |
6808 case ZCLOSE + 7: | |
6809 case ZCLOSE + 8: | |
6810 case ZCLOSE + 9: | |
6811 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE); | |
6812 p = NULL; | |
6813 break; | |
6814 case ZREF + 1: | |
6815 case ZREF + 2: | |
6816 case ZREF + 3: | |
6817 case ZREF + 4: | |
6818 case ZREF + 5: | |
6819 case ZREF + 6: | |
6820 case ZREF + 7: | |
6821 case ZREF + 8: | |
6822 case ZREF + 9: | |
6823 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF); | |
6824 p = NULL; | |
6825 break; | |
6826 #endif | |
6827 case STAR: | |
6828 p = "STAR"; | |
6829 break; | |
6830 case PLUS: | |
6831 p = "PLUS"; | |
6832 break; | |
6833 case NOMATCH: | |
6834 p = "NOMATCH"; | |
6835 break; | |
6836 case MATCH: | |
6837 p = "MATCH"; | |
6838 break; | |
6839 case BEHIND: | |
6840 p = "BEHIND"; | |
6841 break; | |
6842 case NOBEHIND: | |
6843 p = "NOBEHIND"; | |
6844 break; | |
6845 case SUBPAT: | |
6846 p = "SUBPAT"; | |
6847 break; | |
6848 case BRACE_LIMITS: | |
6849 p = "BRACE_LIMITS"; | |
6850 break; | |
6851 case BRACE_SIMPLE: | |
6852 p = "BRACE_SIMPLE"; | |
6853 break; | |
6854 case BRACE_COMPLEX + 0: | |
6855 case BRACE_COMPLEX + 1: | |
6856 case BRACE_COMPLEX + 2: | |
6857 case BRACE_COMPLEX + 3: | |
6858 case BRACE_COMPLEX + 4: | |
6859 case BRACE_COMPLEX + 5: | |
6860 case BRACE_COMPLEX + 6: | |
6861 case BRACE_COMPLEX + 7: | |
6862 case BRACE_COMPLEX + 8: | |
6863 case BRACE_COMPLEX + 9: | |
6864 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX); | |
6865 p = NULL; | |
6866 break; | |
6867 case MULTIBYTECODE: | |
6868 p = "MULTIBYTECODE"; | |
6869 break; | |
6870 case NEWL: | |
6871 p = "NEWL"; | |
6872 break; | |
6873 default: | |
6874 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op)); | |
6875 p = NULL; | |
6876 break; | |
6877 } | |
6878 if (p != NULL) | |
4444 | 6879 STRCAT(buf, p); |
6880 return (char_u *)buf; | |
7 | 6881 } |
4444 | 6882 #endif /* DEBUG */ |
7 | 6883 |
6203 | 6884 /* |
6885 * Used in a place where no * or \+ can follow. | |
6886 */ | |
6887 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6888 re_mult_next(char *what) |
6203 | 6889 { |
6890 if (re_multi_type(peekchr()) == MULTI_MULT) | |
15480
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6891 { |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6892 semsg(_("E888: (NFA regexp) cannot repeat %s"), what); |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6893 rc_did_emsg = TRUE; |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6894 return FAIL; |
bd12ace1bab2
patch 8.1.0748: using sprintf() instead of semsg()
Bram Moolenaar <Bram@vim.org>
parents:
15470
diff
changeset
|
6895 } |
6203 | 6896 return OK; |
6897 } | |
6898 | |
7 | 6899 typedef struct |
6900 { | |
6901 int a, b, c; | |
6902 } decomp_T; | |
6903 | |
6904 | |
6905 /* 0xfb20 - 0xfb4f */ | |
297 | 6906 static decomp_T decomp_table[0xfb4f-0xfb20+1] = |
7 | 6907 { |
6908 {0x5e2,0,0}, /* 0xfb20 alt ayin */ | |
6909 {0x5d0,0,0}, /* 0xfb21 alt alef */ | |
6910 {0x5d3,0,0}, /* 0xfb22 alt dalet */ | |
6911 {0x5d4,0,0}, /* 0xfb23 alt he */ | |
6912 {0x5db,0,0}, /* 0xfb24 alt kaf */ | |
6913 {0x5dc,0,0}, /* 0xfb25 alt lamed */ | |
6914 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */ | |
6915 {0x5e8,0,0}, /* 0xfb27 alt resh */ | |
6916 {0x5ea,0,0}, /* 0xfb28 alt tav */ | |
6917 {'+', 0, 0}, /* 0xfb29 alt plus */ | |
6918 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */ | |
6919 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */ | |
6920 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */ | |
6921 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */ | |
6922 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */ | |
6923 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */ | |
6924 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */ | |
6925 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */ | |
6926 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */ | |
6927 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */ | |
6928 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */ | |
6929 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */ | |
6930 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */ | |
6931 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */ | |
6932 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */ | |
6933 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */ | |
6934 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */ | |
6935 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */ | |
6936 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */ | |
6937 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */ | |
6938 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */ | |
6939 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */ | |
6940 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */ | |
6941 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */ | |
6942 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */ | |
6943 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */ | |
6944 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */ | |
6945 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */ | |
6946 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */ | |
6947 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */ | |
6948 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */ | |
6949 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */ | |
6950 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */ | |
6951 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */ | |
6952 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */ | |
6953 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */ | |
6954 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */ | |
6955 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */ | |
6956 }; | |
6957 | |
6958 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6959 mb_decompose(int c, int *c1, int *c2, int *c3) |
7 | 6960 { |
6961 decomp_T d; | |
6962 | |
4505
d037b9cbdaaa
updated for version 7.3.1000
Bram Moolenaar <bram@vim.org>
parents:
4466
diff
changeset
|
6963 if (c >= 0xfb20 && c <= 0xfb4f) |
7 | 6964 { |
6965 d = decomp_table[c - 0xfb20]; | |
6966 *c1 = d.a; | |
6967 *c2 = d.b; | |
6968 *c3 = d.c; | |
6969 } | |
6970 else | |
6971 { | |
6972 *c1 = c; | |
6973 *c2 = *c3 = 0; | |
6974 } | |
6975 } | |
6976 | |
6977 /* | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6978 * Compare two strings, ignore case if rex.reg_ic set. |
7 | 6979 * Return 0 if strings match, non-zero otherwise. |
6980 * Correct the length "*n" when composing characters are ignored. | |
6981 */ | |
6982 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6983 cstrncmp(char_u *s1, char_u *s2, int *n) |
7 | 6984 { |
6985 int result; | |
6986 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6987 if (!rex.reg_ic) |
7 | 6988 result = STRNCMP(s1, s2, *n); |
6989 else | |
6990 result = MB_STRNICMP(s1, s2, *n); | |
6991 | |
6992 /* 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
|
6993 if (result != 0 && enc_utf8 && rex.reg_icombine) |
7 | 6994 { |
6995 char_u *str1, *str2; | |
6996 int c1, c2, c11, c12; | |
6997 int junk; | |
6998 | |
6999 /* we have to handle the strcmp ourselves, since it is necessary to | |
7000 * deal with the composing characters by ignoring them: */ | |
7001 str1 = s1; | |
7002 str2 = s2; | |
7003 c1 = c2 = 0; | |
507 | 7004 while ((int)(str1 - s1) < *n) |
7 | 7005 { |
7006 c1 = mb_ptr2char_adv(&str1); | |
7007 c2 = mb_ptr2char_adv(&str2); | |
7008 | |
7009 /* decompose the character if necessary, into 'base' characters | |
7010 * because I don't care about Arabic, I will hard-code the Hebrew | |
7011 * 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
|
7012 if (c1 != c2 && (!rex.reg_ic || utf_fold(c1) != utf_fold(c2))) |
7 | 7013 { |
7014 /* decomposition necessary? */ | |
7015 mb_decompose(c1, &c11, &junk, &junk); | |
7016 mb_decompose(c2, &c12, &junk, &junk); | |
7017 c1 = c11; | |
7018 c2 = c12; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7019 if (c11 != c12 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7020 && (!rex.reg_ic || utf_fold(c11) != utf_fold(c12))) |
7 | 7021 break; |
7022 } | |
7023 } | |
7024 result = c2 - c1; | |
7025 if (result == 0) | |
7026 *n = (int)(str2 - s2); | |
7027 } | |
7028 | |
7029 return result; | |
7030 } | |
7031 | |
7032 /* | |
7033 * cstrchr: This function is used a lot for simple searches, keep it fast! | |
7034 */ | |
7035 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7036 cstrchr(char_u *s, int c) |
7 | 7037 { |
7038 char_u *p; | |
7039 int cc; | |
7040 | |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7041 if (!rex.reg_ic || (!enc_utf8 && mb_char2len(c) > 1)) |
7 | 7042 return vim_strchr(s, c); |
7043 | |
7044 /* tolower() and toupper() can be slow, comparing twice should be a lot | |
7045 * faster (esp. when using MS Visual C++!). | |
7046 * For UTF-8 need to use folded case. */ | |
7047 if (enc_utf8 && c > 0x80) | |
7048 cc = utf_fold(c); | |
7049 else | |
1347 | 7050 if (MB_ISUPPER(c)) |
7051 cc = MB_TOLOWER(c); | |
7052 else if (MB_ISLOWER(c)) | |
7053 cc = MB_TOUPPER(c); | |
7 | 7054 else |
7055 return vim_strchr(s, c); | |
7056 | |
7057 if (has_mbyte) | |
7058 { | |
474 | 7059 for (p = s; *p != NUL; p += (*mb_ptr2len)(p)) |
7 | 7060 { |
7061 if (enc_utf8 && c > 0x80) | |
7062 { | |
7063 if (utf_fold(utf_ptr2char(p)) == cc) | |
7064 return p; | |
7065 } | |
7066 else if (*p == c || *p == cc) | |
7067 return p; | |
7068 } | |
7069 } | |
7070 else | |
7071 /* Faster version for when there are no multi-byte characters. */ | |
7072 for (p = s; *p != NUL; ++p) | |
7073 if (*p == c || *p == cc) | |
7074 return p; | |
7075 | |
7076 return NULL; | |
7077 } | |
7078 | |
7079 /*************************************************************** | |
7080 * regsub stuff * | |
7081 ***************************************************************/ | |
7082 | |
7083 /* | |
7084 * We should define ftpr as a pointer to a function returning a pointer to | |
7085 * a function returning a pointer to a function ... | |
7086 * This is impossible, so we declare a pointer to a function returning a | |
7087 * pointer to a function returning void. This should work for all compilers. | |
7088 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7089 typedef void (*(*fptr_T)(int *, int))(); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7090 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7091 static int vim_regsub_both(char_u *source, typval_T *expr, char_u *dest, int copy, int magic, int backslash); |
7 | 7092 |
772 | 7093 static fptr_T |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7094 do_upper(int *d, int c) |
7 | 7095 { |
772 | 7096 *d = MB_TOUPPER(c); |
7097 | |
7098 return (fptr_T)NULL; | |
7 | 7099 } |
7100 | |
772 | 7101 static fptr_T |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7102 do_Upper(int *d, int c) |
7 | 7103 { |
772 | 7104 *d = MB_TOUPPER(c); |
7105 | |
7106 return (fptr_T)do_Upper; | |
7107 } | |
7108 | |
7109 static fptr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7110 do_lower(int *d, int c) |
772 | 7111 { |
7112 *d = MB_TOLOWER(c); | |
7113 | |
7114 return (fptr_T)NULL; | |
7115 } | |
7116 | |
7117 static fptr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7118 do_Lower(int *d, int c) |
772 | 7119 { |
7120 *d = MB_TOLOWER(c); | |
7121 | |
7122 return (fptr_T)do_Lower; | |
7 | 7123 } |
7124 | |
7125 /* | |
7126 * regtilde(): Replace tildes in the pattern by the old pattern. | |
7127 * | |
7128 * Short explanation of the tilde: It stands for the previous replacement | |
7129 * pattern. If that previous pattern also contains a ~ we should go back a | |
7130 * step further... But we insert the previous pattern into the current one | |
7131 * and remember that. | |
772 | 7132 * This still does not handle the case where "magic" changes. So require the |
7133 * user to keep his hands off of "magic". | |
7 | 7134 * |
7135 * The tildes are parsed once before the first call to vim_regsub(). | |
7136 */ | |
7137 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7138 regtilde(char_u *source, int magic) |
7 | 7139 { |
7140 char_u *newsub = source; | |
7141 char_u *tmpsub; | |
7142 char_u *p; | |
7143 int len; | |
7144 int prevlen; | |
7145 | |
7146 for (p = newsub; *p; ++p) | |
7147 { | |
7148 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic)) | |
7149 { | |
7150 if (reg_prev_sub != NULL) | |
7151 { | |
7152 /* length = len(newsub) - 1 + len(prev_sub) + 1 */ | |
7153 prevlen = (int)STRLEN(reg_prev_sub); | |
16764
ef00b6bc186b
patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents:
16634
diff
changeset
|
7154 tmpsub = alloc(STRLEN(newsub) + prevlen); |
7 | 7155 if (tmpsub != NULL) |
7156 { | |
7157 /* copy prefix */ | |
7158 len = (int)(p - newsub); /* not including ~ */ | |
7159 mch_memmove(tmpsub, newsub, (size_t)len); | |
1209 | 7160 /* interpret tilde */ |
7 | 7161 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen); |
7162 /* copy postfix */ | |
7163 if (!magic) | |
7164 ++p; /* back off \ */ | |
7165 STRCPY(tmpsub + len + prevlen, p + 1); | |
7166 | |
7167 if (newsub != source) /* already allocated newsub */ | |
7168 vim_free(newsub); | |
7169 newsub = tmpsub; | |
7170 p = newsub + len + prevlen; | |
7171 } | |
7172 } | |
7173 else if (magic) | |
1621 | 7174 STRMOVE(p, p + 1); /* remove '~' */ |
7 | 7175 else |
1621 | 7176 STRMOVE(p, p + 2); /* remove '\~' */ |
7 | 7177 --p; |
7178 } | |
7179 else | |
7180 { | |
7181 if (*p == '\\' && p[1]) /* skip escaped characters */ | |
7182 ++p; | |
7183 if (has_mbyte) | |
474 | 7184 p += (*mb_ptr2len)(p) - 1; |
7 | 7185 } |
7186 } | |
7187 | |
7188 vim_free(reg_prev_sub); | |
7189 if (newsub != source) /* newsub was allocated, just keep it */ | |
7190 reg_prev_sub = newsub; | |
7191 else /* no ~ found, need to save newsub */ | |
7192 reg_prev_sub = vim_strsave(newsub); | |
7193 return newsub; | |
7194 } | |
7195 | |
7196 #ifdef FEAT_EVAL | |
7197 static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */ | |
7198 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7199 /* 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
|
7200 * 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
|
7201 * and submatch(). */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7202 typedef struct { |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7203 regmatch_T *sm_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7204 regmmatch_T *sm_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7205 linenr_T sm_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7206 linenr_T sm_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7207 int sm_line_lbr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7208 } regsubmatch_T; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7209 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7210 static regsubmatch_T rsm; /* can only be used when can_f_submatch is TRUE */ |
7 | 7211 #endif |
7212 | |
7213 #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
|
7214 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7215 /* |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7216 * 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
|
7217 * vim_regsub_both(). |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7218 */ |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7219 static int |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7220 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
|
7221 { |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7222 listitem_T *li; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7223 int i; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7224 char_u *s; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7225 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7226 if (argcount == 0) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7227 /* 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
|
7228 return 0; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7229 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7230 /* 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
|
7231 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
|
7232 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7233 /* 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
|
7234 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
|
7235 for (i = 0; i < 10; ++i) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7236 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7237 s = rsm.sm_match->startp[i]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7238 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
|
7239 s = NULL; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7240 else |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7241 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
|
7242 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
|
7243 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
|
7244 li = li->li_next; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7245 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7246 return 1; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7247 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7248 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7249 static void |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7250 clear_submatch_list(staticList10_T *sl) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7251 { |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7252 int i; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7253 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7254 for (i = 0; i < 10; ++i) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7255 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
|
7256 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7257 |
7 | 7258 /* |
7259 * vim_regsub() - perform substitutions after a vim_regexec() or | |
7260 * vim_regexec_multi() match. | |
7261 * | |
7262 * If "copy" is TRUE really copy into "dest". | |
7263 * If "copy" is FALSE nothing is copied, this is just to find out the length | |
7264 * of the result. | |
7265 * | |
7266 * If "backslash" is TRUE, a backslash will be removed later, need to double | |
7267 * them to keep them, and insert a backslash before a CR to avoid it being | |
7268 * replaced with a line break later. | |
7269 * | |
7270 * Note: The matched text must not change between the call of | |
7271 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back | |
7272 * references invalid! | |
7273 * | |
7274 * Returns the size of the replacement, including terminating NUL. | |
7275 */ | |
7276 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7277 vim_regsub( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7278 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7279 char_u *source, |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7280 typval_T *expr, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7281 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7282 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7283 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7284 int backslash) |
7 | 7285 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7286 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7287 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7288 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
|
7289 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7290 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7291 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7292 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7293 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7294 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7295 rex.reg_match = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7296 rex.reg_mmatch = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7297 rex.reg_maxline = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7298 rex.reg_buf = curbuf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7299 rex.reg_line_lbr = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7300 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
|
7301 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7302 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
|
7303 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7304 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7305 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7306 return result; |
7 | 7307 } |
7308 #endif | |
7309 | |
7310 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7311 vim_regsub_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7312 regmmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7313 linenr_T lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7314 char_u *source, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7315 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7316 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7317 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7318 int backslash) |
7 | 7319 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7320 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7321 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7322 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
|
7323 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7324 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7325 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7326 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7327 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7328 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7329 rex.reg_match = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7330 rex.reg_mmatch = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7331 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
|
7332 rex.reg_firstlnum = lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7333 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
|
7334 rex.reg_line_lbr = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7335 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
|
7336 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7337 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
|
7338 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7339 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7340 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7341 return result; |
7 | 7342 } |
7343 | |
7344 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7345 vim_regsub_both( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7346 char_u *source, |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7347 typval_T *expr, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7348 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7349 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7350 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7351 int backslash) |
7 | 7352 { |
7353 char_u *src; | |
7354 char_u *dst; | |
7355 char_u *s; | |
7356 int c; | |
772 | 7357 int cc; |
7 | 7358 int no = -1; |
4244 | 7359 fptr_T func_all = (fptr_T)NULL; |
7360 fptr_T func_one = (fptr_T)NULL; | |
7 | 7361 linenr_T clnum = 0; /* init for GCC */ |
7362 int len = 0; /* init for GCC */ | |
7363 #ifdef FEAT_EVAL | |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7364 static char_u *eval_result = NULL; |
7 | 7365 #endif |
7366 | |
7367 /* Be paranoid... */ | |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7368 if ((source == NULL && expr == NULL) || dest == NULL) |
7 | 7369 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
7370 emsg(_(e_null)); |
7 | 7371 return 0; |
7372 } | |
7373 if (prog_magic_wrong()) | |
7374 return 0; | |
7375 src = source; | |
7376 dst = dest; | |
7377 | |
7378 /* | |
7379 * When the substitute part starts with "\=" evaluate it as an expression. | |
7380 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7381 if (expr != NULL || (source[0] == '\\' && source[1] == '=')) |
7 | 7382 { |
7383 #ifdef FEAT_EVAL | |
7384 /* To make sure that the length doesn't change between checking the | |
7385 * length and copying the string, and to speed up things, the | |
7386 * resulting string is saved from the call with "copy" == FALSE to the | |
7387 * call with "copy" == TRUE. */ | |
7388 if (copy) | |
7389 { | |
7390 if (eval_result != NULL) | |
7391 { | |
7392 STRCPY(dest, eval_result); | |
7393 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
|
7394 VIM_CLEAR(eval_result); |
7 | 7395 } |
7396 } | |
7397 else | |
7398 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7399 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
|
7400 regsubmatch_T rsm_save; |
7 | 7401 |
7402 vim_free(eval_result); | |
7403 | |
7404 /* The expression may contain substitute(), which calls us | |
7405 * 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
|
7406 * level. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7407 if (can_f_submatch) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7408 rsm_save = rsm; |
7 | 7409 can_f_submatch = TRUE; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7410 rsm.sm_match = rex.reg_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7411 rsm.sm_mmatch = rex.reg_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7412 rsm.sm_firstlnum = rex.reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7413 rsm.sm_maxline = rex.reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7414 rsm.sm_line_lbr = rex.reg_line_lbr; |
7 | 7415 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7416 if (expr != NULL) |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7417 { |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7418 typval_T argv[2]; |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7419 int dummy; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7420 char_u buf[NUMBUFLEN]; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7421 typval_T rettv; |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7422 staticList10_T matchList; |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7423 |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7424 rettv.v_type = VAR_STRING; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7425 rettv.vval.v_string = NULL; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7426 argv[0].v_type = VAR_LIST; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7427 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
|
7428 matchList.sl_list.lv_len = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7429 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
|
7430 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7431 s = expr->vval.v_string; |
16634
a1ba0bd74e7d
patch 8.1.1319: computing function length name in many places
Bram Moolenaar <Bram@vim.org>
parents:
16395
diff
changeset
|
7432 call_func(s, -1, &rettv, |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7433 1, argv, fill_submatch_list, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7434 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
|
7435 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7436 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
|
7437 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7438 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
|
7439 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7440 s = partial_name(partial); |
16634
a1ba0bd74e7d
patch 8.1.1319: computing function length name in many places
Bram Moolenaar <Bram@vim.org>
parents:
16395
diff
changeset
|
7441 call_func(s, -1, &rettv, |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7442 1, argv, fill_submatch_list, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7443 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
|
7444 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7445 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
|
7446 /* fill_submatch_list() was called */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7447 clear_submatch_list(&matchList); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7448 |
15211
de63593896b3
patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents:
14862
diff
changeset
|
7449 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
|
7450 if (eval_result != NULL) |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7451 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
|
7452 clear_tv(&rettv); |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7453 } |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7454 else |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7455 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
|
7456 |
7 | 7457 if (eval_result != NULL) |
7458 { | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7459 int had_backslash = FALSE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7460 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
7461 for (s = eval_result; *s != NUL; MB_PTR_ADV(s)) |
7 | 7462 { |
2904 | 7463 /* Change NL to CR, so that it becomes a line break, |
7464 * unless called from vim_regexec_nl(). | |
7 | 7465 * Skip over a backslashed character. */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7466 if (*s == NL && !rsm.sm_line_lbr) |
7 | 7467 *s = CAR; |
7468 else if (*s == '\\' && s[1] != NUL) | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7469 { |
7 | 7470 ++s; |
2173 | 7471 /* Change NL to CR here too, so that this works: |
7472 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text: | |
7473 * abc\ | |
7474 * def | |
2904 | 7475 * Not when called from vim_regexec_nl(). |
2173 | 7476 */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7477 if (*s == NL && !rsm.sm_line_lbr) |
2173 | 7478 *s = CAR; |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7479 had_backslash = TRUE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7480 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7481 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7482 if (had_backslash && backslash) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7483 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7484 /* Backslashes will be consumed, need to double them. */ |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7485 s = vim_strsave_escaped(eval_result, (char_u *)"\\"); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7486 if (s != NULL) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7487 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7488 vim_free(eval_result); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7489 eval_result = s; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7490 } |
7 | 7491 } |
7492 | |
7493 dst += STRLEN(eval_result); | |
7494 } | |
7495 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7496 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
|
7497 if (can_f_submatch) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7498 rsm = rsm_save; |
7 | 7499 } |
7500 #endif | |
7501 } | |
7502 else | |
7503 while ((c = *src++) != NUL) | |
7504 { | |
7505 if (c == '&' && magic) | |
7506 no = 0; | |
7507 else if (c == '\\' && *src != NUL) | |
7508 { | |
7509 if (*src == '&' && !magic) | |
7510 { | |
7511 ++src; | |
7512 no = 0; | |
7513 } | |
7514 else if ('0' <= *src && *src <= '9') | |
7515 { | |
7516 no = *src++ - '0'; | |
7517 } | |
7518 else if (vim_strchr((char_u *)"uUlLeE", *src)) | |
7519 { | |
7520 switch (*src++) | |
7521 { | |
4244 | 7522 case 'u': func_one = (fptr_T)do_upper; |
7 | 7523 continue; |
4244 | 7524 case 'U': func_all = (fptr_T)do_Upper; |
7 | 7525 continue; |
4244 | 7526 case 'l': func_one = (fptr_T)do_lower; |
7 | 7527 continue; |
4244 | 7528 case 'L': func_all = (fptr_T)do_Lower; |
7 | 7529 continue; |
7530 case 'e': | |
4244 | 7531 case 'E': func_one = func_all = (fptr_T)NULL; |
7 | 7532 continue; |
7533 } | |
7534 } | |
7535 } | |
7536 if (no < 0) /* Ordinary character. */ | |
7537 { | |
798 | 7538 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL) |
7539 { | |
1209 | 7540 /* Copy a special key as-is. */ |
798 | 7541 if (copy) |
7542 { | |
7543 *dst++ = c; | |
7544 *dst++ = *src++; | |
7545 *dst++ = *src++; | |
7546 } | |
7547 else | |
7548 { | |
7549 dst += 3; | |
7550 src += 2; | |
7551 } | |
7552 continue; | |
7553 } | |
7554 | |
7 | 7555 if (c == '\\' && *src != NUL) |
7556 { | |
7557 /* Check for abbreviations -- webb */ | |
7558 switch (*src) | |
7559 { | |
7560 case 'r': c = CAR; ++src; break; | |
7561 case 'n': c = NL; ++src; break; | |
7562 case 't': c = TAB; ++src; break; | |
7563 /* Oh no! \e already has meaning in subst pat :-( */ | |
7564 /* case 'e': c = ESC; ++src; break; */ | |
7565 case 'b': c = Ctrl_H; ++src; break; | |
7566 | |
7567 /* If "backslash" is TRUE the backslash will be removed | |
7568 * later. Used to insert a literal CR. */ | |
7569 default: if (backslash) | |
7570 { | |
7571 if (copy) | |
7572 *dst = '\\'; | |
7573 ++dst; | |
7574 } | |
7575 c = *src++; | |
7576 } | |
7577 } | |
798 | 7578 else if (has_mbyte) |
7579 c = mb_ptr2char(src - 1); | |
7 | 7580 |
7581 /* Write to buffer, if copy is set. */ | |
4244 | 7582 if (func_one != (fptr_T)NULL) |
7583 /* Turbo C complains without the typecast */ | |
7584 func_one = (fptr_T)(func_one(&cc, c)); | |
7585 else if (func_all != (fptr_T)NULL) | |
7586 /* Turbo C complains without the typecast */ | |
7587 func_all = (fptr_T)(func_all(&cc, c)); | |
7588 else /* just copy */ | |
772 | 7589 cc = c; |
7590 | |
7591 if (has_mbyte) | |
7 | 7592 { |
2307
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7593 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
|
7594 |
7 | 7595 if (copy) |
772 | 7596 mb_char2bytes(cc, dst); |
7597 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
|
7598 if (enc_utf8) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7599 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7600 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
|
7601 |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7602 /* 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
|
7603 * 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
|
7604 if (clen < totlen) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7605 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7606 if (copy) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7607 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
|
7608 (size_t)(totlen - clen)); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7609 dst += totlen - clen; |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7610 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7611 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7612 src += totlen - 1; |
7 | 7613 } |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7614 else if (copy) |
772 | 7615 *dst = cc; |
7 | 7616 dst++; |
7617 } | |
7618 else | |
7619 { | |
7620 if (REG_MULTI) | |
7621 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7622 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
|
7623 if (clnum < 0 || rex.reg_mmatch->endpos[no].lnum < 0) |
7 | 7624 s = NULL; |
7625 else | |
7626 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7627 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
|
7628 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
|
7629 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
|
7630 - rex.reg_mmatch->startpos[no].col; |
7 | 7631 else |
7632 len = (int)STRLEN(s); | |
7633 } | |
7634 } | |
7635 else | |
7636 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7637 s = rex.reg_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7638 if (rex.reg_match->endp[no] == NULL) |
7 | 7639 s = NULL; |
7640 else | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7641 len = (int)(rex.reg_match->endp[no] - s); |
7 | 7642 } |
7643 if (s != NULL) | |
7644 { | |
7645 for (;;) | |
7646 { | |
7647 if (len == 0) | |
7648 { | |
7649 if (REG_MULTI) | |
7650 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7651 if (rex.reg_mmatch->endpos[no].lnum == clnum) |
7 | 7652 break; |
7653 if (copy) | |
7654 *dst = CAR; | |
7655 ++dst; | |
7656 s = reg_getline(++clnum); | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7657 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
|
7658 len = rex.reg_mmatch->endpos[no].col; |
7 | 7659 else |
7660 len = (int)STRLEN(s); | |
7661 } | |
7662 else | |
7663 break; | |
7664 } | |
7665 else if (*s == NUL) /* we hit NUL. */ | |
7666 { | |
7667 if (copy) | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
7668 emsg(_(e_re_damg)); |
7 | 7669 goto exit; |
7670 } | |
7671 else | |
7672 { | |
7673 if (backslash && (*s == CAR || *s == '\\')) | |
7674 { | |
7675 /* | |
7676 * Insert a backslash in front of a CR, otherwise | |
7677 * it will be replaced by a line break. | |
7678 * Number of backslashes will be halved later, | |
7679 * double them here. | |
7680 */ | |
7681 if (copy) | |
7682 { | |
7683 dst[0] = '\\'; | |
7684 dst[1] = *s; | |
7685 } | |
7686 dst += 2; | |
7687 } | |
7688 else | |
7689 { | |
772 | 7690 if (has_mbyte) |
7691 c = mb_ptr2char(s); | |
7692 else | |
7693 c = *s; | |
7694 | |
4244 | 7695 if (func_one != (fptr_T)NULL) |
7696 /* Turbo C complains without the typecast */ | |
7697 func_one = (fptr_T)(func_one(&cc, c)); | |
7698 else if (func_all != (fptr_T)NULL) | |
7699 /* Turbo C complains without the typecast */ | |
7700 func_all = (fptr_T)(func_all(&cc, c)); | |
7701 else /* just copy */ | |
772 | 7702 cc = c; |
7703 | |
7704 if (has_mbyte) | |
7 | 7705 { |
1332 | 7706 int l; |
7707 | |
7708 /* Copy composing characters separately, one | |
7709 * at a time. */ | |
7710 if (enc_utf8) | |
7711 l = utf_ptr2len(s) - 1; | |
7712 else | |
7713 l = mb_ptr2len(s) - 1; | |
772 | 7714 |
7715 s += l; | |
7716 len -= l; | |
7717 if (copy) | |
7718 mb_char2bytes(cc, dst); | |
7719 dst += mb_char2len(cc) - 1; | |
7 | 7720 } |
15603
639b8318472c
patch 8.1.0809: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents:
15555
diff
changeset
|
7721 else if (copy) |
772 | 7722 *dst = cc; |
7723 dst++; | |
7 | 7724 } |
772 | 7725 |
7 | 7726 ++s; |
7727 --len; | |
7728 } | |
7729 } | |
7730 } | |
7731 no = -1; | |
7732 } | |
7733 } | |
7734 if (copy) | |
7735 *dst = NUL; | |
7736 | |
7737 exit: | |
7738 return (int)((dst - dest) + 1); | |
7739 } | |
7740 | |
7741 #ifdef FEAT_EVAL | |
7742 /* | |
2011 | 7743 * Call reg_getline() with the line numbers from the submatch. If a |
7744 * substitute() was used the reg_maxline and other values have been | |
7745 * overwritten. | |
7746 */ | |
7747 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7748 reg_getline_submatch(linenr_T lnum) |
2011 | 7749 { |
7750 char_u *s; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7751 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
|
7752 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
|
7753 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7754 rex.reg_firstlnum = rsm.sm_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7755 rex.reg_maxline = rsm.sm_maxline; |
2011 | 7756 |
7757 s = reg_getline(lnum); | |
7758 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7759 rex.reg_firstlnum = save_first; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7760 rex.reg_maxline = save_max; |
2011 | 7761 return s; |
7762 } | |
7763 | |
7764 /* | |
1209 | 7765 * Used for the submatch() function: get the string from the n'th submatch in |
7 | 7766 * allocated memory. |
7767 * Returns NULL when not in a ":s" command and for a non-existing submatch. | |
7768 */ | |
7769 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7770 reg_submatch(int no) |
7 | 7771 { |
7772 char_u *retval = NULL; | |
7773 char_u *s; | |
7774 int len; | |
7775 int round; | |
7776 linenr_T lnum; | |
7777 | |
840 | 7778 if (!can_f_submatch || no < 0) |
7 | 7779 return NULL; |
7780 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7781 if (rsm.sm_match == NULL) |
7 | 7782 { |
7783 /* | |
7784 * First round: compute the length and allocate memory. | |
7785 * Second round: copy the text. | |
7786 */ | |
7787 for (round = 1; round <= 2; ++round) | |
7788 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7789 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
|
7790 if (lnum < 0 || rsm.sm_mmatch->endpos[no].lnum < 0) |
7 | 7791 return NULL; |
7792 | |
16040
13ab270dd68d
patch 8.1.1025: checking NULL pointer after addition
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
7793 s = reg_getline_submatch(lnum); |
13ab270dd68d
patch 8.1.1025: checking NULL pointer after addition
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
7794 if (s == NULL) // anti-crash check, cannot happen? |
7 | 7795 break; |
16040
13ab270dd68d
patch 8.1.1025: checking NULL pointer after addition
Bram Moolenaar <Bram@vim.org>
parents:
15967
diff
changeset
|
7796 s += rsm.sm_mmatch->startpos[no].col; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7797 if (rsm.sm_mmatch->endpos[no].lnum == lnum) |
7 | 7798 { |
7799 /* 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
|
7800 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
|
7801 - rsm.sm_mmatch->startpos[no].col; |
7 | 7802 if (round == 2) |
418 | 7803 vim_strncpy(retval, s, len); |
7 | 7804 ++len; |
7805 } | |
7806 else | |
7807 { | |
7808 /* Multiple lines: take start line from start col, middle | |
7809 * lines completely and end line up to end col. */ | |
7810 len = (int)STRLEN(s); | |
7811 if (round == 2) | |
7812 { | |
7813 STRCPY(retval, s); | |
7814 retval[len] = '\n'; | |
7815 } | |
7816 ++len; | |
7817 ++lnum; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7818 while (lnum < rsm.sm_mmatch->endpos[no].lnum) |
7 | 7819 { |
2011 | 7820 s = reg_getline_submatch(lnum++); |
7 | 7821 if (round == 2) |
7822 STRCPY(retval + len, s); | |
7823 len += (int)STRLEN(s); | |
7824 if (round == 2) | |
7825 retval[len] = '\n'; | |
7826 ++len; | |
7827 } | |
7828 if (round == 2) | |
2011 | 7829 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
|
7830 rsm.sm_mmatch->endpos[no].col); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7831 len += rsm.sm_mmatch->endpos[no].col; |
7 | 7832 if (round == 2) |
7833 retval[len] = NUL; | |
7834 ++len; | |
7835 } | |
7836 | |
840 | 7837 if (retval == NULL) |
7 | 7838 { |
16768
695d9ef00b03
patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents:
16764
diff
changeset
|
7839 retval = alloc(len); |
840 | 7840 if (retval == NULL) |
7 | 7841 return NULL; |
7842 } | |
7843 } | |
7844 } | |
7845 else | |
7846 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7847 s = rsm.sm_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7848 if (s == NULL || rsm.sm_match->endp[no] == NULL) |
7 | 7849 retval = NULL; |
7850 else | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7851 retval = vim_strnsave(s, (int)(rsm.sm_match->endp[no] - s)); |
7 | 7852 } |
7853 | |
7854 return retval; | |
7855 } | |
5794 | 7856 |
7857 /* | |
7858 * Used for the submatch() function with the optional non-zero argument: get | |
7859 * the list of strings from the n'th submatch in allocated memory with NULs | |
7860 * represented in NLs. | |
7861 * Returns a list of allocated strings. Returns NULL when not in a ":s" | |
7862 * command, for a non-existing submatch and for any error. | |
7863 */ | |
7864 list_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7865 reg_submatch_list(int no) |
5794 | 7866 { |
7867 char_u *s; | |
7868 linenr_T slnum; | |
7869 linenr_T elnum; | |
7870 colnr_T scol; | |
7871 colnr_T ecol; | |
7872 int i; | |
7873 list_T *list; | |
7874 int error = FALSE; | |
7875 | |
7876 if (!can_f_submatch || no < 0) | |
7877 return NULL; | |
7878 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7879 if (rsm.sm_match == NULL) |
5794 | 7880 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7881 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
|
7882 elnum = rsm.sm_mmatch->endpos[no].lnum; |
5794 | 7883 if (slnum < 0 || elnum < 0) |
7884 return NULL; | |
7885 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7886 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
|
7887 ecol = rsm.sm_mmatch->endpos[no].col; |
5794 | 7888 |
7889 list = list_alloc(); | |
7890 if (list == NULL) | |
7891 return NULL; | |
7892 | |
7893 s = reg_getline_submatch(slnum) + scol; | |
7894 if (slnum == elnum) | |
7895 { | |
7896 if (list_append_string(list, s, ecol - scol) == FAIL) | |
7897 error = TRUE; | |
7898 } | |
7899 else | |
7900 { | |
7901 if (list_append_string(list, s, -1) == FAIL) | |
7902 error = TRUE; | |
7903 for (i = 1; i < elnum - slnum; i++) | |
7904 { | |
7905 s = reg_getline_submatch(slnum + i); | |
7906 if (list_append_string(list, s, -1) == FAIL) | |
7907 error = TRUE; | |
7908 } | |
7909 s = reg_getline_submatch(elnum); | |
7910 if (list_append_string(list, s, ecol) == FAIL) | |
7911 error = TRUE; | |
7912 } | |
7913 } | |
7914 else | |
7915 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7916 s = rsm.sm_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7917 if (s == NULL || rsm.sm_match->endp[no] == NULL) |
5794 | 7918 return NULL; |
7919 list = list_alloc(); | |
7920 if (list == NULL) | |
7921 return NULL; | |
7922 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
|
7923 (int)(rsm.sm_match->endp[no] - s)) == FAIL) |
5794 | 7924 error = TRUE; |
7925 } | |
7926 | |
7927 if (error) | |
7928 { | |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
7929 list_free(list); |
5794 | 7930 return NULL; |
7931 } | |
7932 return list; | |
7933 } | |
7 | 7934 #endif |
4444 | 7935 |
7936 static regengine_T bt_regengine = | |
7937 { | |
7938 bt_regcomp, | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
7939 bt_regfree, |
4444 | 7940 bt_regexec_nl, |
6328 | 7941 bt_regexec_multi, |
7942 (char_u *)"" | |
4444 | 7943 }; |
7944 | |
7945 #include "regexp_nfa.c" | |
7946 | |
7947 static regengine_T nfa_regengine = | |
7948 { | |
7949 nfa_regcomp, | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
7950 nfa_regfree, |
4444 | 7951 nfa_regexec_nl, |
6328 | 7952 nfa_regexec_multi, |
7953 (char_u *)"" | |
4444 | 7954 }; |
7955 | |
7956 /* Which regexp engine to use? Needed for vim_regcomp(). | |
7957 * Must match with 'regexpengine'. */ | |
7958 static int regexp_engine = 0; | |
6328 | 7959 |
4444 | 7960 #ifdef DEBUG |
7961 static char_u regname[][30] = { | |
7962 "AUTOMATIC Regexp Engine", | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
7963 "BACKTRACKING Regexp Engine", |
4444 | 7964 "NFA Regexp Engine" |
7965 }; | |
7966 #endif | |
7967 | |
7968 /* | |
7969 * Compile a regular expression into internal code. | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
7970 * Returns the program in allocated memory. |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
7971 * Use vim_regfree() to free the memory. |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
7972 * Returns NULL for an error. |
4444 | 7973 */ |
7974 regprog_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7975 vim_regcomp(char_u *expr_arg, int re_flags) |
4444 | 7976 { |
7977 regprog_T *prog = NULL; | |
7978 char_u *expr = expr_arg; | |
15935
ff00d207cc5e
patch 8.1.0973: pattern with syntax error gives threee error messages
Bram Moolenaar <Bram@vim.org>
parents:
15860
diff
changeset
|
7979 int save_called_emsg; |
4444 | 7980 |
7981 regexp_engine = p_re; | |
7982 | |
7983 /* Check for prefix "\%#=", that sets the regexp engine */ | |
7984 if (STRNCMP(expr, "\\%#=", 4) == 0) | |
7985 { | |
7986 int newengine = expr[4] - '0'; | |
7987 | |
7988 if (newengine == AUTOMATIC_ENGINE | |
7989 || newengine == BACKTRACKING_ENGINE | |
7990 || newengine == NFA_ENGINE) | |
7991 { | |
7992 regexp_engine = expr[4] - '0'; | |
7993 expr += 5; | |
7994 #ifdef DEBUG | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
7995 smsg("New regexp mode selected (%d): %s", |
5897 | 7996 regexp_engine, regname[newengine]); |
4444 | 7997 #endif |
7998 } | |
7999 else | |
8000 { | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
8001 emsg(_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used ")); |
4444 | 8002 regexp_engine = AUTOMATIC_ENGINE; |
8003 } | |
8004 } | |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8005 #ifdef DEBUG |
4444 | 8006 bt_regengine.expr = expr; |
8007 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
|
8008 #endif |
15856
e44b7caaf373
patch 8.1.0935: old regexp engine may use invalid buffer
Bram Moolenaar <Bram@vim.org>
parents:
15854
diff
changeset
|
8009 // reg_iswordc() uses rex.reg_buf |
e44b7caaf373
patch 8.1.0935: old regexp engine may use invalid buffer
Bram Moolenaar <Bram@vim.org>
parents:
15854
diff
changeset
|
8010 rex.reg_buf = curbuf; |
4444 | 8011 |
8012 /* | |
8013 * First try the NFA engine, unless backtracking was requested. | |
8014 */ | |
15935
ff00d207cc5e
patch 8.1.0973: pattern with syntax error gives threee error messages
Bram Moolenaar <Bram@vim.org>
parents:
15860
diff
changeset
|
8015 save_called_emsg = called_emsg; |
ff00d207cc5e
patch 8.1.0973: pattern with syntax error gives threee error messages
Bram Moolenaar <Bram@vim.org>
parents:
15860
diff
changeset
|
8016 called_emsg = FALSE; |
4444 | 8017 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
|
8018 prog = nfa_regengine.regcomp(expr, |
6533 | 8019 re_flags + (regexp_engine == AUTOMATIC_ENGINE ? RE_AUTO : 0)); |
4444 | 8020 else |
8021 prog = bt_regengine.regcomp(expr, re_flags); | |
8022 | |
6328 | 8023 /* Check for error compiling regexp with initial engine. */ |
8024 if (prog == NULL) | |
4444 | 8025 { |
4460 | 8026 #ifdef BT_REGEXP_DEBUG_LOG |
4444 | 8027 if (regexp_engine != BACKTRACKING_ENGINE) /* debugging log for NFA */ |
8028 { | |
8029 FILE *f; | |
4460 | 8030 f = fopen(BT_REGEXP_DEBUG_LOG_NAME, "a"); |
4444 | 8031 if (f) |
8032 { | |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8033 fprintf(f, "Syntax error in \"%s\"\n", expr); |
4444 | 8034 fclose(f); |
8035 } | |
8036 else | |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
8037 semsg("(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
|
8038 BT_REGEXP_DEBUG_LOG_NAME); |
4444 | 8039 } |
8040 #endif | |
8041 /* | |
6328 | 8042 * If the NFA engine failed, try the backtracking engine. |
6533 | 8043 * The NFA engine also fails for patterns that it can't handle well |
8044 * but are still valid patterns, thus a retry should work. | |
15935
ff00d207cc5e
patch 8.1.0973: pattern with syntax error gives threee error messages
Bram Moolenaar <Bram@vim.org>
parents:
15860
diff
changeset
|
8045 * But don't try if an error message was given. |
6533 | 8046 */ |
15935
ff00d207cc5e
patch 8.1.0973: pattern with syntax error gives threee error messages
Bram Moolenaar <Bram@vim.org>
parents:
15860
diff
changeset
|
8047 if (regexp_engine == AUTOMATIC_ENGINE && !called_emsg) |
6328 | 8048 { |
6533 | 8049 regexp_engine = BACKTRACKING_ENGINE; |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8050 prog = bt_regengine.regcomp(expr, re_flags); |
6328 | 8051 } |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8052 } |
15935
ff00d207cc5e
patch 8.1.0973: pattern with syntax error gives threee error messages
Bram Moolenaar <Bram@vim.org>
parents:
15860
diff
changeset
|
8053 called_emsg |= save_called_emsg; |
4444 | 8054 |
6328 | 8055 if (prog != NULL) |
8056 { | |
8057 /* Store the info needed to call regcomp() again when the engine turns | |
8058 * out to be very slow when executing it. */ | |
8059 prog->re_engine = regexp_engine; | |
8060 prog->re_flags = re_flags; | |
8061 } | |
8062 | |
4444 | 8063 return prog; |
8064 } | |
8065 | |
8066 /* | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8067 * 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
|
8068 */ |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8069 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8070 vim_regfree(regprog_T *prog) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8071 { |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8072 if (prog != NULL) |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8073 prog->engine->regfree(prog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8074 } |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8075 |
6328 | 8076 #ifdef FEAT_EVAL |
8077 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8078 report_re_switch(char_u *pat) |
6328 | 8079 { |
8080 if (p_verbose > 0) | |
8081 { | |
8082 verbose_enter(); | |
15543
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15480
diff
changeset
|
8083 msg_puts(_("Switching to backtracking RE engine for pattern: ")); |
dd725a8ab112
patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents:
15480
diff
changeset
|
8084 msg_puts((char *)pat); |
6328 | 8085 verbose_leave(); |
8086 } | |
8087 } | |
8088 #endif | |
8089 | |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
8090 #if (defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))) \ |
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
8091 || defined(PROTO) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8092 /* |
15306
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8093 * Return whether "prog" is currently being executed. |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8094 */ |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8095 int |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8096 regprog_in_use(regprog_T *prog) |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8097 { |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8098 return prog->re_in_use; |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8099 } |
15555
d89c5b339c2a
patch 8.1.0785: depending on the configuration some functions are unused
Bram Moolenaar <Bram@vim.org>
parents:
15543
diff
changeset
|
8100 #endif |
15306
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8101 |
7fff2d18e191
patch 8.1.0661: clipboard regexp might be used recursively
Bram Moolenaar <Bram@vim.org>
parents:
15211
diff
changeset
|
8102 /* |
4444 | 8103 * Match a regexp against a string. |
8104 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
6375 | 8105 * Note: "rmp->regprog" may be freed and changed. |
4444 | 8106 * Uses curbuf for line count and 'iskeyword'. |
6328 | 8107 * When "nl" is TRUE consider a "\n" in "line" to be a line break. |
4444 | 8108 * |
8109 * Return TRUE if there is a match, FALSE if not. | |
8110 */ | |
6328 | 8111 static int |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8112 vim_regexec_string( |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8113 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8114 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
|
8115 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
|
8116 int nl) |
6328 | 8117 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8118 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8119 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8120 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
|
8121 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8122 // 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
|
8123 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
|
8124 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
8125 emsg(_(e_recursive)); |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8126 return FALSE; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8127 } |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8128 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
|
8129 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8130 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
|
8131 // 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
|
8132 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8133 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
|
8134 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8135 rex.reg_startp = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8136 rex.reg_endp = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8137 rex.reg_startpos = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8138 rex.reg_endpos = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8139 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8140 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
|
8141 rmp->regprog->re_in_use = FALSE; |
6328 | 8142 |
8143 /* NFA engine aborted because it's very slow. */ | |
8144 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE | |
8145 && result == NFA_TOO_EXPENSIVE) | |
8146 { | |
8147 int save_p_re = p_re; | |
8148 int re_flags = rmp->regprog->re_flags; | |
8149 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern); | |
8150 | |
8151 p_re = BACKTRACKING_ENGINE; | |
8152 vim_regfree(rmp->regprog); | |
8153 if (pat != NULL) | |
8154 { | |
8155 #ifdef FEAT_EVAL | |
8156 report_re_switch(pat); | |
8157 #endif | |
8158 rmp->regprog = vim_regcomp(pat, re_flags); | |
8159 if (rmp->regprog != NULL) | |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8160 { |
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8161 rmp->regprog->re_in_use = TRUE; |
6328 | 8162 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
|
8163 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
|
8164 } |
6328 | 8165 vim_free(pat); |
8166 } | |
8167 | |
8168 p_re = save_p_re; | |
8169 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8170 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8171 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
|
8172 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8173 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8174 |
6390 | 8175 return result > 0; |
6328 | 8176 } |
8177 | |
6375 | 8178 /* |
8179 * Note: "*prog" may be freed and changed. | |
6390 | 8180 * Return TRUE if there is a match, FALSE if not. |
6375 | 8181 */ |
8182 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8183 vim_regexec_prog( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8184 regprog_T **prog, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8185 int ignore_case, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8186 char_u *line, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8187 colnr_T col) |
6375 | 8188 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8189 int r; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8190 regmatch_T regmatch; |
6375 | 8191 |
8192 regmatch.regprog = *prog; | |
8193 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
|
8194 r = vim_regexec_string(®match, line, col, FALSE); |
6375 | 8195 *prog = regmatch.regprog; |
8196 return r; | |
8197 } | |
8198 | |
8199 /* | |
8200 * Note: "rmp->regprog" may be freed and changed. | |
6390 | 8201 * Return TRUE if there is a match, FALSE if not. |
6375 | 8202 */ |
4444 | 8203 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8204 vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col) |
4444 | 8205 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8206 return vim_regexec_string(rmp, line, col, FALSE); |
4444 | 8207 } |
8208 | |
8209 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \ | |
8210 || defined(FIND_REPLACE_DIALOG) || defined(PROTO) | |
8211 /* | |
8212 * Like vim_regexec(), but consider a "\n" in "line" to be a line break. | |
6375 | 8213 * Note: "rmp->regprog" may be freed and changed. |
6390 | 8214 * Return TRUE if there is a match, FALSE if not. |
4444 | 8215 */ |
8216 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8217 vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col) |
4444 | 8218 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8219 return vim_regexec_string(rmp, line, col, TRUE); |
4444 | 8220 } |
8221 #endif | |
8222 | |
8223 /* | |
8224 * 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
|
8225 * "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
|
8226 * Note: "rmp->regprog" may be freed and changed, even set to NULL. |
4444 | 8227 * Uses curbuf for line count and 'iskeyword'. |
8228 * | |
8229 * Return zero if there is no match. Return number of lines contained in the | |
8230 * match otherwise. | |
8231 */ | |
8232 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8233 vim_regexec_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8234 regmmatch_T *rmp, |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8235 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
|
8236 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
|
8237 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
|
8238 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
|
8239 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
|
8240 int *timed_out) /* flag is set when timeout limit reached */ |
4444 | 8241 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8242 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8243 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8244 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
|
8245 |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8246 // 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
|
8247 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
|
8248 { |
15470
55ccc2d353bd
patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents:
15339
diff
changeset
|
8249 emsg(_(e_recursive)); |
14354
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8250 return FALSE; |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8251 } |
ffd834f893aa
patch 8.1.0192: executing regexp recursively fails with a crash
Christian Brabandt <cb@256bit.org>
parents:
14169
diff
changeset
|
8252 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
|
8253 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8254 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8255 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8256 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8257 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8258 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8259 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
|
8260 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
|
8261 rmp->regprog->re_in_use = FALSE; |
6328 | 8262 |
8263 /* NFA engine aborted because it's very slow. */ | |
8264 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE | |
8265 && result == NFA_TOO_EXPENSIVE) | |
8266 { | |
8267 int save_p_re = p_re; | |
8268 int re_flags = rmp->regprog->re_flags; | |
8269 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern); | |
8270 | |
8271 p_re = BACKTRACKING_ENGINE; | |
8272 vim_regfree(rmp->regprog); | |
8273 if (pat != NULL) | |
8274 { | |
8275 #ifdef FEAT_EVAL | |
8276 report_re_switch(pat); | |
8277 #endif | |
14169
42a9178374d1
patch 8.1.0102: cannot build without syntax highlighting
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
8278 #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
|
8279 // 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
|
8280 // 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
|
8281 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
|
8282 #endif |
6328 | 8283 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
|
8284 #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
|
8285 reg_do_extmatch = 0; |
14169
42a9178374d1
patch 8.1.0102: cannot build without syntax highlighting
Christian Brabandt <cb@256bit.org>
parents:
14161
diff
changeset
|
8286 #endif |
14161
7cac4646c552
patch 8.1.0098: segfault when pattern with z() is very slow
Christian Brabandt <cb@256bit.org>
parents:
13286
diff
changeset
|
8287 |
6328 | 8288 if (rmp->regprog != NULL) |
14358
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8289 { |
72d506d94f3f
patch 8.1.0194: possibly use of NULL pointer
Christian Brabandt <cb@256bit.org>
parents:
14354
diff
changeset
|
8290 rmp->regprog->re_in_use = TRUE; |
6328 | 8291 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
|
8292 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
|
8293 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
|
8294 } |
6328 | 8295 vim_free(pat); |
8296 } | |
8297 p_re = save_p_re; | |
8298 } | |
8299 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8300 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
|
8301 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8302 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8303 |
6390 | 8304 return result <= 0 ? 0 : result; |
4444 | 8305 } |