Mercurial > vim
annotate src/regexp.c @ 13983:edbc72b9de83
Added tag v8.1.0009 for changeset 29bad8212db38d203da4b3ae04d8fc3060b6c9cc
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 20 May 2018 15:00:07 +0200 |
parents | a90bc1e28cbb |
children | 7cac4646c552 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9723
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * Handling of regular expressions: vim_regcomp(), vim_regexec(), vim_regsub() | |
4 * | |
5 * NOTICE: | |
6 * | |
7 * This is NOT the original regular expression code as written by Henry | |
8 * Spencer. This code has been modified specifically for use with the VIM | |
9 * editor, and should not be used separately from Vim. If you want a good | |
10 * regular expression library, get the original code. The copyright notice | |
11 * that follows is from the original. | |
12 * | |
13 * END NOTICE | |
14 * | |
15 * Copyright (c) 1986 by University of Toronto. | |
16 * Written by Henry Spencer. Not derived from licensed software. | |
17 * | |
18 * Permission is granted to anyone to use this software for any | |
19 * purpose on any computer system, and to redistribute it freely, | |
20 * subject to the following restrictions: | |
21 * | |
22 * 1. The author is not responsible for the consequences of use of | |
23 * this software, no matter how awful, even if they arise | |
24 * from defects in it. | |
25 * | |
26 * 2. The origin of this software must not be misrepresented, either | |
27 * by explicit claim or by omission. | |
28 * | |
29 * 3. Altered versions must be plainly marked as such, and must not | |
30 * be misrepresented as being the original software. | |
31 * | |
32 * Beware that some of this code is subtly aware of the way operator | |
33 * precedence is structured in regular expressions. Serious changes in | |
34 * regular-expression syntax might require a total rethink. | |
35 * | |
24 | 36 * Changes have been made by Tony Andrews, Olaf 'Rhialto' Seibert, Robert |
37 * Webb, Ciaran McCreesh and Bram Moolenaar. | |
7 | 38 * Named character class support added by Walter Briscoe (1998 Jul 01) |
39 */ | |
40 | |
4444 | 41 /* Uncomment the first if you do not want to see debugging logs or files |
42 * related to regular expressions, even when compiling with -DDEBUG. | |
43 * Uncomment the second to get the regexp debugging. */ | |
44 /* #undef DEBUG */ | |
45 /* #define DEBUG */ | |
46 | |
7 | 47 #include "vim.h" |
48 | |
4444 | 49 #ifdef DEBUG |
50 /* show/save debugging data when BT engine is used */ | |
51 # define BT_REGEXP_DUMP | |
52 /* save the debugging data to a file instead of displaying it */ | |
53 # define BT_REGEXP_LOG | |
4460 | 54 # define BT_REGEXP_DEBUG_LOG |
55 # define BT_REGEXP_DEBUG_LOG_NAME "bt_regexp_debug.log" | |
4444 | 56 #endif |
7 | 57 |
58 /* | |
59 * The "internal use only" fields in regexp.h are present to pass info from | |
60 * compile to execute that permits the execute phase to run lots faster on | |
61 * simple cases. They are: | |
62 * | |
63 * regstart char that must begin a match; NUL if none obvious; Can be a | |
64 * multi-byte character. | |
65 * reganch is the match anchored (at beginning-of-line only)? | |
66 * regmust string (pointer into program) that match must include, or NULL | |
67 * regmlen length of regmust string | |
68 * regflags RF_ values or'ed together | |
69 * | |
70 * Regstart and reganch permit very fast decisions on suitable starting points | |
71 * for a match, cutting down the work a lot. Regmust permits fast rejection | |
72 * of lines that cannot possibly match. The regmust tests are costly enough | |
73 * that vim_regcomp() supplies a regmust only if the r.e. contains something | |
74 * potentially expensive (at present, the only such thing detected is * or + | |
75 * at the start of the r.e., which can involve a lot of backup). Regmlen is | |
76 * supplied because the test in vim_regexec() needs it and vim_regcomp() is | |
77 * computing it anyway. | |
78 */ | |
79 | |
80 /* | |
81 * Structure for regexp "program". This is essentially a linear encoding | |
82 * of a nondeterministic finite-state machine (aka syntax charts or | |
83 * "railroad normal form" in parsing technology). Each node is an opcode | |
84 * plus a "next" pointer, possibly plus an operand. "Next" pointers of | |
85 * all nodes except BRANCH and BRACES_COMPLEX implement concatenation; a "next" | |
86 * pointer with a BRANCH on both ends of it is connecting two alternatives. | |
87 * (Here we have one of the subtle syntax dependencies: an individual BRANCH | |
88 * (as opposed to a collection of them) is never concatenated with anything | |
89 * because of operator precedence). The "next" pointer of a BRACES_COMPLEX | |
167 | 90 * node points to the node after the stuff to be repeated. |
91 * The operand of some types of node is a literal string; for others, it is a | |
92 * node leading into a sub-FSM. In particular, the operand of a BRANCH node | |
93 * is the first node of the branch. | |
94 * (NB this is *not* a tree structure: the tail of the branch connects to the | |
95 * thing following the set of BRANCHes.) | |
7 | 96 * |
97 * pattern is coded like: | |
98 * | |
99 * +-----------------+ | |
100 * | V | |
101 * <aa>\|<bb> BRANCH <aa> BRANCH <bb> --> END | |
102 * | ^ | ^ | |
103 * +------+ +----------+ | |
104 * | |
105 * | |
106 * +------------------+ | |
107 * V | | |
108 * <aa>* BRANCH BRANCH <aa> --> BACK BRANCH --> NOTHING --> END | |
109 * | | ^ ^ | |
110 * | +---------------+ | | |
111 * +---------------------------------------------+ | |
112 * | |
113 * | |
167 | 114 * +----------------------+ |
115 * V | | |
233 | 116 * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END |
856 | 117 * | | ^ ^ |
118 * | +-----------+ | | |
179 | 119 * +--------------------------------------------------+ |
167 | 120 * |
121 * | |
7 | 122 * +-------------------------+ |
123 * V | | |
124 * <aa>\{} BRANCH BRACE_LIMITS --> BRACE_COMPLEX <aa> --> BACK END | |
125 * | | ^ | |
126 * | +----------------+ | |
127 * +-----------------------------------------------+ | |
128 * | |
129 * | |
130 * <aa>\@!<bb> BRANCH NOMATCH <aa> --> END <bb> --> END | |
131 * | | ^ ^ | |
132 * | +----------------+ | | |
133 * +--------------------------------+ | |
134 * | |
135 * +---------+ | |
136 * | V | |
137 * \z[abc] BRANCH BRANCH a BRANCH b BRANCH c BRANCH NOTHING --> END | |
138 * | | | | ^ ^ | |
139 * | | | +-----+ | | |
140 * | | +----------------+ | | |
141 * | +---------------------------+ | | |
142 * +------------------------------------------------------+ | |
143 * | |
1209 | 144 * They all start with a BRANCH for "\|" alternatives, even when there is only |
7 | 145 * one alternative. |
146 */ | |
147 | |
148 /* | |
149 * The opcodes are: | |
150 */ | |
151 | |
152 /* definition number opnd? meaning */ | |
153 #define END 0 /* End of program or NOMATCH operand. */ | |
154 #define BOL 1 /* Match "" at beginning of line. */ | |
155 #define EOL 2 /* Match "" at end of line. */ | |
156 #define BRANCH 3 /* node Match this alternative, or the | |
157 * next... */ | |
158 #define BACK 4 /* Match "", "next" ptr points backward. */ | |
159 #define EXACTLY 5 /* str Match this string. */ | |
160 #define NOTHING 6 /* Match empty string. */ | |
161 #define STAR 7 /* node Match this (simple) thing 0 or more | |
162 * times. */ | |
163 #define PLUS 8 /* node Match this (simple) thing 1 or more | |
164 * times. */ | |
165 #define MATCH 9 /* node match the operand zero-width */ | |
166 #define NOMATCH 10 /* node check for no match with operand */ | |
167 #define BEHIND 11 /* node look behind for a match with operand */ | |
168 #define NOBEHIND 12 /* node look behind for no match with operand */ | |
169 #define SUBPAT 13 /* node match the operand here */ | |
170 #define BRACE_SIMPLE 14 /* node Match this (simple) thing between m and | |
171 * n times (\{m,n\}). */ | |
172 #define BOW 15 /* Match "" after [^a-zA-Z0-9_] */ | |
173 #define EOW 16 /* Match "" at [^a-zA-Z0-9_] */ | |
174 #define BRACE_LIMITS 17 /* nr nr define the min & max for BRACE_SIMPLE | |
175 * and BRACE_COMPLEX. */ | |
176 #define NEWL 18 /* Match line-break */ | |
177 #define BHPOS 19 /* End position for BEHIND or NOBEHIND */ | |
178 | |
179 | |
180 /* character classes: 20-48 normal, 50-78 include a line-break */ | |
181 #define ADD_NL 30 | |
182 #define FIRST_NL ANY + ADD_NL | |
183 #define ANY 20 /* Match any one character. */ | |
184 #define ANYOF 21 /* str Match any character in this string. */ | |
185 #define ANYBUT 22 /* str Match any character not in this | |
186 * string. */ | |
187 #define IDENT 23 /* Match identifier char */ | |
188 #define SIDENT 24 /* Match identifier char but no digit */ | |
189 #define KWORD 25 /* Match keyword char */ | |
190 #define SKWORD 26 /* Match word char but no digit */ | |
191 #define FNAME 27 /* Match file name char */ | |
192 #define SFNAME 28 /* Match file name char but no digit */ | |
193 #define PRINT 29 /* Match printable char */ | |
194 #define SPRINT 30 /* Match printable char but no digit */ | |
195 #define WHITE 31 /* Match whitespace char */ | |
196 #define NWHITE 32 /* Match non-whitespace char */ | |
197 #define DIGIT 33 /* Match digit char */ | |
198 #define NDIGIT 34 /* Match non-digit char */ | |
199 #define HEX 35 /* Match hex char */ | |
200 #define NHEX 36 /* Match non-hex char */ | |
201 #define OCTAL 37 /* Match octal char */ | |
202 #define NOCTAL 38 /* Match non-octal char */ | |
203 #define WORD 39 /* Match word char */ | |
204 #define NWORD 40 /* Match non-word char */ | |
205 #define HEAD 41 /* Match head char */ | |
206 #define NHEAD 42 /* Match non-head char */ | |
207 #define ALPHA 43 /* Match alpha char */ | |
208 #define NALPHA 44 /* Match non-alpha char */ | |
209 #define LOWER 45 /* Match lowercase char */ | |
210 #define NLOWER 46 /* Match non-lowercase char */ | |
211 #define UPPER 47 /* Match uppercase char */ | |
212 #define NUPPER 48 /* Match non-uppercase char */ | |
213 #define LAST_NL NUPPER + ADD_NL | |
214 #define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL) | |
215 | |
216 #define MOPEN 80 /* -89 Mark this point in input as start of | |
217 * \( subexpr. MOPEN + 0 marks start of | |
218 * match. */ | |
219 #define MCLOSE 90 /* -99 Analogous to MOPEN. MCLOSE + 0 marks | |
220 * end of match. */ | |
221 #define BACKREF 100 /* -109 node Match same string again \1-\9 */ | |
222 | |
223 #ifdef FEAT_SYN_HL | |
224 # define ZOPEN 110 /* -119 Mark this point in input as start of | |
225 * \z( subexpr. */ | |
226 # define ZCLOSE 120 /* -129 Analogous to ZOPEN. */ | |
227 # define ZREF 130 /* -139 node Match external submatch \z1-\z9 */ | |
228 #endif | |
229 | |
230 #define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */ | |
231 | |
232 #define NOPEN 150 /* Mark this point in input as start of | |
233 \%( subexpr. */ | |
234 #define NCLOSE 151 /* Analogous to NOPEN. */ | |
235 | |
236 #define MULTIBYTECODE 200 /* mbc Match one multi-byte character */ | |
237 #define RE_BOF 201 /* Match "" at beginning of file. */ | |
238 #define RE_EOF 202 /* Match "" at end of file. */ | |
239 #define CURSOR 203 /* Match location of cursor. */ | |
240 | |
241 #define RE_LNUM 204 /* nr cmp Match line number */ | |
242 #define RE_COL 205 /* nr cmp Match column number */ | |
243 #define RE_VCOL 206 /* nr cmp Match virtual column number */ | |
244 | |
639 | 245 #define RE_MARK 207 /* mark cmp Match mark position */ |
246 #define RE_VISUAL 208 /* Match Visual area */ | |
5901 | 247 #define RE_COMPOSING 209 /* any composing characters */ |
639 | 248 |
7 | 249 /* |
250 * Magic characters have a special meaning, they don't match literally. | |
251 * Magic characters are negative. This separates them from literal characters | |
252 * (possibly multi-byte). Only ASCII characters can be Magic. | |
253 */ | |
254 #define Magic(x) ((int)(x) - 256) | |
255 #define un_Magic(x) ((x) + 256) | |
256 #define is_Magic(x) ((x) < 0) | |
257 | |
258 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
259 no_Magic(int x) |
7 | 260 { |
261 if (is_Magic(x)) | |
262 return un_Magic(x); | |
263 return x; | |
264 } | |
265 | |
266 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
267 toggle_Magic(int x) |
7 | 268 { |
269 if (is_Magic(x)) | |
270 return un_Magic(x); | |
271 return Magic(x); | |
272 } | |
273 | |
274 /* | |
275 * The first byte of the regexp internal "program" is actually this magic | |
276 * number; the start node begins in the second byte. It's used to catch the | |
277 * most severe mutilation of the program by the caller. | |
278 */ | |
279 | |
280 #define REGMAGIC 0234 | |
281 | |
282 /* | |
283 * Opcode notes: | |
284 * | |
285 * BRANCH The set of branches constituting a single choice are hooked | |
286 * together with their "next" pointers, since precedence prevents | |
287 * anything being concatenated to any individual branch. The | |
288 * "next" pointer of the last BRANCH in a choice points to the | |
289 * thing following the whole choice. This is also where the | |
290 * final "next" pointer of each individual branch points; each | |
291 * branch starts with the operand node of a BRANCH node. | |
292 * | |
293 * BACK Normal "next" pointers all implicitly point forward; BACK | |
294 * exists to make loop structures possible. | |
295 * | |
296 * STAR,PLUS '=', and complex '*' and '+', are implemented as circular | |
297 * BRANCH structures using BACK. Simple cases (one character | |
298 * per match) are implemented with STAR and PLUS for speed | |
299 * and to minimize recursive plunges. | |
300 * | |
301 * BRACE_LIMITS This is always followed by a BRACE_SIMPLE or BRACE_COMPLEX | |
302 * node, and defines the min and max limits to be used for that | |
303 * node. | |
304 * | |
305 * MOPEN,MCLOSE ...are numbered at compile time. | |
306 * ZOPEN,ZCLOSE ...ditto | |
307 */ | |
308 | |
309 /* | |
310 * A node is one char of opcode followed by two chars of "next" pointer. | |
311 * "Next" pointers are stored as two 8-bit bytes, high order first. The | |
312 * value is a positive offset from the opcode of the node containing it. | |
313 * An operand, if any, simply follows the node. (Note that much of the | |
314 * code generation knows about this implicit relationship.) | |
315 * | |
316 * Using two bytes for the "next" pointer is vast overkill for most things, | |
317 * but allows patterns to get big without disasters. | |
318 */ | |
319 #define OP(p) ((int)*(p)) | |
320 #define NEXT(p) (((*((p) + 1) & 0377) << 8) + (*((p) + 2) & 0377)) | |
321 #define OPERAND(p) ((p) + 3) | |
322 /* Obtain an operand that was stored as four bytes, MSB first. */ | |
323 #define OPERAND_MIN(p) (((long)(p)[3] << 24) + ((long)(p)[4] << 16) \ | |
324 + ((long)(p)[5] << 8) + (long)(p)[6]) | |
325 /* Obtain a second operand stored as four bytes. */ | |
326 #define OPERAND_MAX(p) OPERAND_MIN((p) + 4) | |
327 /* Obtain a second single-byte operand stored after a four bytes operand. */ | |
328 #define OPERAND_CMP(p) (p)[7] | |
329 | |
330 /* | |
331 * Utility definitions. | |
332 */ | |
333 #define UCHARAT(p) ((int)*(char_u *)(p)) | |
334 | |
335 /* Used for an error (down from) vim_regcomp(): give the error message, set | |
336 * rc_did_emsg and return NULL */ | |
653 | 337 #define EMSG_RET_NULL(m) return (EMSG(m), rc_did_emsg = TRUE, (void *)NULL) |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
338 #define IEMSG_RET_NULL(m) return (IEMSG(m), rc_did_emsg = TRUE, (void *)NULL) |
308 | 339 #define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL) |
4444 | 340 #define EMSG2_RET_NULL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, (void *)NULL) |
341 #define EMSG2_RET_FAIL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, FAIL) | |
342 #define EMSG_ONE_RET_NULL EMSG2_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL) | |
7 | 343 |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
344 |
7 | 345 #define MAX_LIMIT (32767L << 16L) |
346 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
347 static int re_multi_type(int); |
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"); |
11482
e691ebe6558e
patch 8.0.0624: warning for unused variable in tiny build
Christian Brabandt <cb@256bit.org>
parents:
11480
diff
changeset
|
362 #ifdef FEAT_MBYTE |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
363 static char_u e_large_class[] = N_("E945: Range too large in character class"); |
11482
e691ebe6558e
patch 8.0.0624: warning for unused variable in tiny build
Christian Brabandt <cb@256bit.org>
parents:
11480
diff
changeset
|
364 #endif |
4444 | 365 static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%("); |
366 static char_u e_unmatchedp[] = N_("E54: Unmatched %s("); | |
367 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
|
368 #ifdef FEAT_SYN_HL |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
369 static char_u e_z_not_allowed[] = N_("E66: \\z( not allowed here"); |
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
370 static char_u e_z1_not_allowed[] = N_("E67: \\z1 et al. not allowed here"); |
4720
bd6bef0bd0fb
updated for version 7.3.1107
Bram Moolenaar <bram@vim.org>
parents:
4688
diff
changeset
|
371 #endif |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
372 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
|
373 static char_u e_empty_sb[] = N_("E70: Empty %s%%[]"); |
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 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
429 static int backslash_trans(int c); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
430 static int get_char_class(char_u **pp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
431 static int get_equi_class(char_u **pp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
432 static void reg_equi_class(int c); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
433 static int get_coll_element(char_u **pp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
434 static char_u *skip_anyof(char_u *p); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
435 static void init_class_tab(void); |
7 | 436 |
437 /* | |
438 * Translate '\x' to its control character, except "\n", which is Magic. | |
439 */ | |
440 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
441 backslash_trans(int c) |
7 | 442 { |
443 switch (c) | |
444 { | |
445 case 'r': return CAR; | |
446 case 't': return TAB; | |
447 case 'e': return ESC; | |
448 case 'b': return BS; | |
449 } | |
450 return c; | |
451 } | |
452 | |
453 /* | |
167 | 454 * Check for a character class name "[:name:]". "pp" points to the '['. |
7 | 455 * Returns one of the CLASS_ items. CLASS_NONE means that no item was |
456 * recognized. Otherwise "pp" is advanced to after the item. | |
457 */ | |
458 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
459 get_char_class(char_u **pp) |
7 | 460 { |
461 static const char *(class_names[]) = | |
462 { | |
463 "alnum:]", | |
464 #define CLASS_ALNUM 0 | |
465 "alpha:]", | |
466 #define CLASS_ALPHA 1 | |
467 "blank:]", | |
468 #define CLASS_BLANK 2 | |
469 "cntrl:]", | |
470 #define CLASS_CNTRL 3 | |
471 "digit:]", | |
472 #define CLASS_DIGIT 4 | |
473 "graph:]", | |
474 #define CLASS_GRAPH 5 | |
475 "lower:]", | |
476 #define CLASS_LOWER 6 | |
477 "print:]", | |
478 #define CLASS_PRINT 7 | |
479 "punct:]", | |
480 #define CLASS_PUNCT 8 | |
481 "space:]", | |
482 #define CLASS_SPACE 9 | |
483 "upper:]", | |
484 #define CLASS_UPPER 10 | |
485 "xdigit:]", | |
486 #define CLASS_XDIGIT 11 | |
487 "tab:]", | |
488 #define CLASS_TAB 12 | |
489 "return:]", | |
490 #define CLASS_RETURN 13 | |
491 "backspace:]", | |
492 #define CLASS_BACKSPACE 14 | |
493 "escape:]", | |
494 #define CLASS_ESCAPE 15 | |
495 }; | |
496 #define CLASS_NONE 99 | |
497 int i; | |
498 | |
499 if ((*pp)[1] == ':') | |
500 { | |
1877 | 501 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i) |
7 | 502 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0) |
503 { | |
504 *pp += STRLEN(class_names[i]) + 2; | |
505 return i; | |
506 } | |
507 } | |
508 return CLASS_NONE; | |
509 } | |
510 | |
511 /* | |
512 * Specific version of character class functions. | |
513 * Using a table to keep this fast. | |
514 */ | |
515 static short class_tab[256]; | |
516 | |
517 #define RI_DIGIT 0x01 | |
518 #define RI_HEX 0x02 | |
519 #define RI_OCTAL 0x04 | |
520 #define RI_WORD 0x08 | |
521 #define RI_HEAD 0x10 | |
522 #define RI_ALPHA 0x20 | |
523 #define RI_LOWER 0x40 | |
524 #define RI_UPPER 0x80 | |
525 #define RI_WHITE 0x100 | |
526 | |
527 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
528 init_class_tab(void) |
7 | 529 { |
530 int i; | |
531 static int done = FALSE; | |
532 | |
533 if (done) | |
534 return; | |
535 | |
536 for (i = 0; i < 256; ++i) | |
537 { | |
538 if (i >= '0' && i <= '7') | |
539 class_tab[i] = RI_DIGIT + RI_HEX + RI_OCTAL + RI_WORD; | |
540 else if (i >= '8' && i <= '9') | |
541 class_tab[i] = RI_DIGIT + RI_HEX + RI_WORD; | |
542 else if (i >= 'a' && i <= 'f') | |
543 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
544 #ifdef EBCDIC | |
545 else if ((i >= 'g' && i <= 'i') || (i >= 'j' && i <= 'r') | |
546 || (i >= 's' && i <= 'z')) | |
547 #else | |
548 else if (i >= 'g' && i <= 'z') | |
549 #endif | |
550 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER; | |
551 else if (i >= 'A' && i <= 'F') | |
552 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
553 #ifdef EBCDIC | |
554 else if ((i >= 'G' && i <= 'I') || ( i >= 'J' && i <= 'R') | |
555 || (i >= 'S' && i <= 'Z')) | |
556 #else | |
557 else if (i >= 'G' && i <= 'Z') | |
558 #endif | |
559 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER; | |
560 else if (i == '_') | |
561 class_tab[i] = RI_WORD + RI_HEAD; | |
562 else | |
563 class_tab[i] = 0; | |
564 } | |
565 class_tab[' '] |= RI_WHITE; | |
566 class_tab['\t'] |= RI_WHITE; | |
567 done = TRUE; | |
568 } | |
569 | |
570 #ifdef FEAT_MBYTE | |
571 # define ri_digit(c) (c < 0x100 && (class_tab[c] & RI_DIGIT)) | |
572 # define ri_hex(c) (c < 0x100 && (class_tab[c] & RI_HEX)) | |
573 # define ri_octal(c) (c < 0x100 && (class_tab[c] & RI_OCTAL)) | |
574 # define ri_word(c) (c < 0x100 && (class_tab[c] & RI_WORD)) | |
575 # define ri_head(c) (c < 0x100 && (class_tab[c] & RI_HEAD)) | |
576 # define ri_alpha(c) (c < 0x100 && (class_tab[c] & RI_ALPHA)) | |
577 # define ri_lower(c) (c < 0x100 && (class_tab[c] & RI_LOWER)) | |
578 # define ri_upper(c) (c < 0x100 && (class_tab[c] & RI_UPPER)) | |
579 # define ri_white(c) (c < 0x100 && (class_tab[c] & RI_WHITE)) | |
580 #else | |
581 # define ri_digit(c) (class_tab[c] & RI_DIGIT) | |
582 # define ri_hex(c) (class_tab[c] & RI_HEX) | |
583 # define ri_octal(c) (class_tab[c] & RI_OCTAL) | |
584 # define ri_word(c) (class_tab[c] & RI_WORD) | |
585 # define ri_head(c) (class_tab[c] & RI_HEAD) | |
586 # define ri_alpha(c) (class_tab[c] & RI_ALPHA) | |
587 # define ri_lower(c) (class_tab[c] & RI_LOWER) | |
588 # define ri_upper(c) (class_tab[c] & RI_UPPER) | |
589 # define ri_white(c) (class_tab[c] & RI_WHITE) | |
590 #endif | |
591 | |
592 /* flags for regflags */ | |
593 #define RF_ICASE 1 /* ignore case */ | |
594 #define RF_NOICASE 2 /* don't ignore case */ | |
595 #define RF_HASNL 4 /* can match a NL */ | |
596 #define RF_ICOMBINE 8 /* ignore combining characters */ | |
597 #define RF_LOOKBH 16 /* uses "\@<=" or "\@<!" */ | |
598 | |
599 /* | |
600 * Global work variables for vim_regcomp(). | |
601 */ | |
602 | |
603 static char_u *regparse; /* Input-scan pointer. */ | |
604 static int prevchr_len; /* byte length of previous char */ | |
605 static int num_complex_braces; /* Complex \{...} count */ | |
606 static int regnpar; /* () count. */ | |
607 #ifdef FEAT_SYN_HL | |
608 static int regnzpar; /* \z() count. */ | |
609 static int re_has_z; /* \z item detected */ | |
610 #endif | |
611 static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */ | |
612 static long regsize; /* Code size. */ | |
2010 | 613 static int reg_toolong; /* TRUE when offset out of range */ |
7 | 614 static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */ |
615 static unsigned regflags; /* RF_ flags for prog */ | |
616 static long brace_min[10]; /* Minimums for complex brace repeats */ | |
617 static long brace_max[10]; /* Maximums for complex brace repeats */ | |
618 static int brace_count[10]; /* Current counts for complex brace repeats */ | |
619 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
620 static int had_eol; /* TRUE when EOL found by vim_regcomp() */ | |
621 #endif | |
622 static int one_exactly = FALSE; /* only do one char for EXACTLY */ | |
623 | |
624 static int reg_magic; /* magicness of the pattern: */ | |
625 #define MAGIC_NONE 1 /* "\V" very unmagic */ | |
626 #define MAGIC_OFF 2 /* "\M" or 'magic' off */ | |
627 #define MAGIC_ON 3 /* "\m" or 'magic' */ | |
628 #define MAGIC_ALL 4 /* "\v" very magic */ | |
629 | |
630 static int reg_string; /* matching with a string instead of a buffer | |
631 line */ | |
481 | 632 static int reg_strict; /* "[abc" is illegal */ |
7 | 633 |
634 /* | |
635 * META contains all characters that may be magic, except '^' and '$'. | |
636 */ | |
637 | |
638 #ifdef EBCDIC | |
639 static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~"; | |
640 #else | |
641 /* META[] is used often enough to justify turning it into a table. */ | |
642 static char_u META_flags[] = { | |
643 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
644 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
645 /* % & ( ) * + . */ | |
646 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, | |
647 /* 1 2 3 4 5 6 7 8 9 < = > ? */ | |
648 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, | |
649 /* @ A C D F H I K L M O */ | |
650 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, | |
651 /* P S U V W X Z [ _ */ | |
652 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, | |
653 /* a c d f h i k l m n o */ | |
654 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, | |
655 /* p s u v w x z { | ~ */ | |
656 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1 | |
657 }; | |
658 #endif | |
659 | |
4444 | 660 static int curchr; /* currently parsed character */ |
661 /* Previous character. Note: prevchr is sometimes -1 when we are not at the | |
662 * start, eg in /[ ^I]^ the pattern was never found even if it existed, | |
663 * because ^ was taken to be magic -- webb */ | |
664 static int prevchr; | |
665 static int prevprevchr; /* previous-previous character */ | |
666 static int nextchr; /* used for ungetchr() */ | |
7 | 667 |
668 /* arguments for reg() */ | |
669 #define REG_NOPAREN 0 /* toplevel reg() */ | |
670 #define REG_PAREN 1 /* \(\) */ | |
671 #define REG_ZPAREN 2 /* \z(\) */ | |
672 #define REG_NPAREN 3 /* \%(\) */ | |
673 | |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
674 typedef struct |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
675 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
676 char_u *regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
677 int prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
678 int curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
679 int prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
680 int prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
681 int nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
682 int at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
683 int prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
684 int regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
685 } parse_state_T; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
686 |
7 | 687 /* |
688 * Forward declarations for vim_regcomp()'s friends. | |
689 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
690 static void initchr(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
691 static void save_parse_state(parse_state_T *ps); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
692 static void restore_parse_state(parse_state_T *ps); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
693 static int getchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
694 static void skipchr_keepstart(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
695 static int peekchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
696 static void skipchr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
697 static void ungetchr(void); |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
698 static long gethexchrs(int maxinputlen); |
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
699 static long getoctchrs(void); |
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
700 static long getdecchrs(void); |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
701 static int coll_get_char(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
702 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
|
703 static char_u *reg(int, int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
704 static char_u *regbranch(int *flagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
705 static char_u *regconcat(int *flagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
706 static char_u *regpiece(int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
707 static char_u *regatom(int *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
708 static char_u *regnode(int); |
714 | 709 #ifdef FEAT_MBYTE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
710 static int use_multibytecode(int c); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
711 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
712 static int prog_magic_wrong(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
713 static char_u *regnext(char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
714 static void regc(int b); |
7 | 715 #ifdef FEAT_MBYTE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
716 static void regmbc(int c); |
2974 | 717 # define REGMBC(x) regmbc(x); |
718 # define CASEMBC(x) case x: | |
167 | 719 #else |
720 # define regmbc(c) regc(c) | |
2974 | 721 # define REGMBC(x) |
722 # define CASEMBC(x) | |
7 | 723 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
724 static void reginsert(int, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
725 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
|
726 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
|
727 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
|
728 static int read_limits(long *, long *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
729 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
|
730 static void regoptail(char_u *, char_u *); |
7 | 731 |
4444 | 732 static regengine_T bt_regengine; |
733 static regengine_T nfa_regengine; | |
734 | |
7 | 735 /* |
736 * Return TRUE if compiled regular expression "prog" can match a line break. | |
737 */ | |
738 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
739 re_multiline(regprog_T *prog) |
7 | 740 { |
741 return (prog->regflags & RF_HASNL); | |
742 } | |
743 | |
744 /* | |
745 * Return TRUE if compiled regular expression "prog" looks before the start | |
746 * position (pattern contains "\@<=" or "\@<!"). | |
747 */ | |
748 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
749 re_lookbehind(regprog_T *prog) |
7 | 750 { |
751 return (prog->regflags & RF_LOOKBH); | |
752 } | |
753 | |
754 /* | |
167 | 755 * Check for an equivalence class name "[=a=]". "pp" points to the '['. |
756 * Returns a character representing the class. Zero means that no item was | |
757 * recognized. Otherwise "pp" is advanced to after the item. | |
758 */ | |
759 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
760 get_equi_class(char_u **pp) |
167 | 761 { |
762 int c; | |
763 int l = 1; | |
764 char_u *p = *pp; | |
765 | |
766 if (p[1] == '=') | |
767 { | |
768 #ifdef FEAT_MBYTE | |
769 if (has_mbyte) | |
474 | 770 l = (*mb_ptr2len)(p + 2); |
167 | 771 #endif |
772 if (p[l + 2] == '=' && p[l + 3] == ']') | |
773 { | |
774 #ifdef FEAT_MBYTE | |
775 if (has_mbyte) | |
776 c = mb_ptr2char(p + 2); | |
777 else | |
778 #endif | |
779 c = p[2]; | |
780 *pp += l + 4; | |
781 return c; | |
782 } | |
783 } | |
784 return 0; | |
785 } | |
786 | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
787 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
788 /* |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
789 * 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
|
790 */ |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
791 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
|
792 "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
|
793 "C\x68", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
794 "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
|
795 "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
|
796 "N\x69", |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
797 "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
|
798 "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
|
799 "Y\xBA", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
800 "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
|
801 "c\x48", |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
802 "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
|
803 "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
|
804 "n\x49", |
8825
318eaa6fa973
commit https://github.com/vim/vim/commit/22e421549d54147d003f6444de007cb1d73f1d27
Christian Brabandt <cb@256bit.org>
parents:
8212
diff
changeset
|
805 "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
|
806 "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
|
807 "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
|
808 }; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
809 #endif |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
810 |
167 | 811 /* |
812 * Produce the bytes for equivalence class "c". | |
813 * Currently only handles latin1, latin9 and utf-8. | |
4444 | 814 * NOTE: When changing this function, also change nfa_emit_equi_class() |
167 | 815 */ |
816 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
817 reg_equi_class(int c) |
167 | 818 { |
819 #ifdef FEAT_MBYTE | |
820 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0 | |
492 | 821 || STRCMP(p_enc, "iso-8859-15") == 0) |
167 | 822 #endif |
823 { | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
824 #ifdef EBCDIC |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
825 int i; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
826 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
827 /* 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
|
828 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
|
829 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
830 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
|
831 { |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
832 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
|
833 |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
834 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
|
835 regmbc(*p++); |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
836 return; |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
837 } |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
838 } |
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
839 #else |
167 | 840 switch (c) |
841 { | |
6765 | 842 /* Do not use '\300' style, it results in a negative number. */ |
843 case 'A': case 0xc0: case 0xc1: case 0xc2: | |
844 case 0xc3: case 0xc4: case 0xc5: | |
2974 | 845 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd) |
846 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2) | |
6765 | 847 regmbc('A'); regmbc(0xc0); regmbc(0xc1); |
848 regmbc(0xc2); regmbc(0xc3); regmbc(0xc4); | |
849 regmbc(0xc5); | |
2974 | 850 REGMBC(0x100) REGMBC(0x102) REGMBC(0x104) |
851 REGMBC(0x1cd) REGMBC(0x1de) REGMBC(0x1e0) | |
852 REGMBC(0x1ea2) | |
853 return; | |
854 case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06) | |
855 regmbc('B'); REGMBC(0x1e02) REGMBC(0x1e06) | |
167 | 856 return; |
6765 | 857 case 'C': case 0xc7: |
2974 | 858 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c) |
6765 | 859 regmbc('C'); regmbc(0xc7); |
2974 | 860 REGMBC(0x106) REGMBC(0x108) REGMBC(0x10a) |
861 REGMBC(0x10c) | |
862 return; | |
863 case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a) | |
864 CASEMBC(0x1e0e) CASEMBC(0x1e10) | |
865 regmbc('D'); REGMBC(0x10e) REGMBC(0x110) | |
866 REGMBC(0x1e0a) REGMBC(0x1e0e) REGMBC(0x1e10) | |
167 | 867 return; |
6765 | 868 case 'E': case 0xc8: case 0xc9: case 0xca: case 0xcb: |
2974 | 869 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118) |
870 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc) | |
6765 | 871 regmbc('E'); regmbc(0xc8); regmbc(0xc9); |
872 regmbc(0xca); regmbc(0xcb); | |
2974 | 873 REGMBC(0x112) REGMBC(0x114) REGMBC(0x116) |
874 REGMBC(0x118) REGMBC(0x11a) REGMBC(0x1eba) | |
875 REGMBC(0x1ebc) | |
876 return; | |
877 case 'F': CASEMBC(0x1e1e) | |
878 regmbc('F'); REGMBC(0x1e1e) | |
879 return; | |
880 case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120) | |
881 CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4) | |
882 CASEMBC(0x1e20) | |
883 regmbc('G'); REGMBC(0x11c) REGMBC(0x11e) | |
884 REGMBC(0x120) REGMBC(0x122) REGMBC(0x1e4) | |
885 REGMBC(0x1e6) REGMBC(0x1f4) REGMBC(0x1e20) | |
886 return; | |
887 case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22) | |
888 CASEMBC(0x1e26) CASEMBC(0x1e28) | |
889 regmbc('H'); REGMBC(0x124) REGMBC(0x126) | |
890 REGMBC(0x1e22) REGMBC(0x1e26) REGMBC(0x1e28) | |
167 | 891 return; |
6765 | 892 case 'I': case 0xcc: case 0xcd: case 0xce: case 0xcf: |
2974 | 893 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e) |
894 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8) | |
6765 | 895 regmbc('I'); regmbc(0xcc); regmbc(0xcd); |
896 regmbc(0xce); regmbc(0xcf); | |
2974 | 897 REGMBC(0x128) REGMBC(0x12a) REGMBC(0x12c) |
898 REGMBC(0x12e) REGMBC(0x130) REGMBC(0x1cf) | |
899 REGMBC(0x1ec8) | |
900 return; | |
901 case 'J': CASEMBC(0x134) | |
902 regmbc('J'); REGMBC(0x134) | |
903 return; | |
904 case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30) | |
905 CASEMBC(0x1e34) | |
906 regmbc('K'); REGMBC(0x136) REGMBC(0x1e8) | |
907 REGMBC(0x1e30) REGMBC(0x1e34) | |
908 return; | |
909 case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d) | |
910 CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a) | |
911 regmbc('L'); REGMBC(0x139) REGMBC(0x13b) | |
912 REGMBC(0x13d) REGMBC(0x13f) REGMBC(0x141) | |
913 REGMBC(0x1e3a) | |
914 return; | |
915 case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40) | |
916 regmbc('M'); REGMBC(0x1e3e) REGMBC(0x1e40) | |
167 | 917 return; |
6765 | 918 case 'N': case 0xd1: |
2974 | 919 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44) |
920 CASEMBC(0x1e48) | |
6765 | 921 regmbc('N'); regmbc(0xd1); |
2974 | 922 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147) |
923 REGMBC(0x1e44) REGMBC(0x1e48) | |
167 | 924 return; |
6765 | 925 case 'O': case 0xd2: case 0xd3: case 0xd4: case 0xd5: |
926 case 0xd6: case 0xd8: | |
2974 | 927 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0) |
928 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece) | |
6765 | 929 regmbc('O'); regmbc(0xd2); regmbc(0xd3); |
930 regmbc(0xd4); regmbc(0xd5); regmbc(0xd6); | |
931 regmbc(0xd8); | |
2974 | 932 REGMBC(0x14c) REGMBC(0x14e) REGMBC(0x150) |
933 REGMBC(0x1a0) REGMBC(0x1d1) REGMBC(0x1ea) | |
934 REGMBC(0x1ec) REGMBC(0x1ece) | |
935 return; | |
936 case 'P': case 0x1e54: case 0x1e56: | |
937 regmbc('P'); REGMBC(0x1e54) REGMBC(0x1e56) | |
938 return; | |
939 case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158) | |
940 CASEMBC(0x1e58) CASEMBC(0x1e5e) | |
941 regmbc('R'); REGMBC(0x154) REGMBC(0x156) REGMBC(0x158) | |
942 REGMBC(0x1e58) REGMBC(0x1e5e) | |
943 return; | |
944 case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e) | |
945 CASEMBC(0x160) CASEMBC(0x1e60) | |
946 regmbc('S'); REGMBC(0x15a) REGMBC(0x15c) | |
947 REGMBC(0x15e) REGMBC(0x160) REGMBC(0x1e60) | |
948 return; | |
949 case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166) | |
950 CASEMBC(0x1e6a) CASEMBC(0x1e6e) | |
951 regmbc('T'); REGMBC(0x162) REGMBC(0x164) | |
952 REGMBC(0x166) REGMBC(0x1e6a) REGMBC(0x1e6e) | |
167 | 953 return; |
6765 | 954 case 'U': case 0xd9: case 0xda: case 0xdb: case 0xdc: |
2974 | 955 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e) |
956 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3) | |
957 CASEMBC(0x1ee6) | |
6765 | 958 regmbc('U'); regmbc(0xd9); regmbc(0xda); |
959 regmbc(0xdb); regmbc(0xdc); | |
2974 | 960 REGMBC(0x168) REGMBC(0x16a) REGMBC(0x16c) |
961 REGMBC(0x16e) REGMBC(0x170) REGMBC(0x172) | |
962 REGMBC(0x1af) REGMBC(0x1d3) REGMBC(0x1ee6) | |
963 return; | |
964 case 'V': CASEMBC(0x1e7c) | |
965 regmbc('V'); REGMBC(0x1e7c) | |
966 return; | |
967 case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82) | |
968 CASEMBC(0x1e84) CASEMBC(0x1e86) | |
969 regmbc('W'); REGMBC(0x174) REGMBC(0x1e80) | |
970 REGMBC(0x1e82) REGMBC(0x1e84) REGMBC(0x1e86) | |
971 return; | |
972 case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c) | |
973 regmbc('X'); REGMBC(0x1e8a) REGMBC(0x1e8c) | |
167 | 974 return; |
6765 | 975 case 'Y': case 0xdd: |
2974 | 976 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2) |
977 CASEMBC(0x1ef6) CASEMBC(0x1ef8) | |
6765 | 978 regmbc('Y'); regmbc(0xdd); |
2974 | 979 REGMBC(0x176) REGMBC(0x178) REGMBC(0x1e8e) |
980 REGMBC(0x1ef2) REGMBC(0x1ef6) REGMBC(0x1ef8) | |
981 return; | |
982 case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d) | |
983 CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94) | |
984 regmbc('Z'); REGMBC(0x179) REGMBC(0x17b) | |
985 REGMBC(0x17d) REGMBC(0x1b5) REGMBC(0x1e90) | |
986 REGMBC(0x1e94) | |
167 | 987 return; |
6765 | 988 case 'a': case 0xe0: case 0xe1: case 0xe2: |
989 case 0xe3: case 0xe4: case 0xe5: | |
2974 | 990 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce) |
991 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3) | |
6765 | 992 regmbc('a'); regmbc(0xe0); regmbc(0xe1); |
993 regmbc(0xe2); regmbc(0xe3); regmbc(0xe4); | |
994 regmbc(0xe5); | |
2974 | 995 REGMBC(0x101) REGMBC(0x103) REGMBC(0x105) |
996 REGMBC(0x1ce) REGMBC(0x1df) REGMBC(0x1e1) | |
997 REGMBC(0x1ea3) | |
998 return; | |
999 case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07) | |
1000 regmbc('b'); REGMBC(0x1e03) REGMBC(0x1e07) | |
167 | 1001 return; |
6765 | 1002 case 'c': case 0xe7: |
2974 | 1003 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d) |
6765 | 1004 regmbc('c'); regmbc(0xe7); |
2974 | 1005 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b) |
1006 REGMBC(0x10d) | |
1007 return; | |
6914 | 1008 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1e0b) |
1009 CASEMBC(0x1e0f) CASEMBC(0x1e11) | |
2974 | 1010 regmbc('d'); REGMBC(0x10f) REGMBC(0x111) |
6914 | 1011 REGMBC(0x1e0b) REGMBC(0x1e0f) REGMBC(0x1e11) |
167 | 1012 return; |
6765 | 1013 case 'e': case 0xe8: case 0xe9: case 0xea: case 0xeb: |
2974 | 1014 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119) |
1015 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd) | |
6765 | 1016 regmbc('e'); regmbc(0xe8); regmbc(0xe9); |
1017 regmbc(0xea); regmbc(0xeb); | |
2974 | 1018 REGMBC(0x113) REGMBC(0x115) REGMBC(0x117) |
1019 REGMBC(0x119) REGMBC(0x11b) REGMBC(0x1ebb) | |
1020 REGMBC(0x1ebd) | |
1021 return; | |
1022 case 'f': CASEMBC(0x1e1f) | |
1023 regmbc('f'); REGMBC(0x1e1f) | |
1024 return; | |
1025 case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121) | |
1026 CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5) | |
1027 CASEMBC(0x1e21) | |
1028 regmbc('g'); REGMBC(0x11d) REGMBC(0x11f) | |
1029 REGMBC(0x121) REGMBC(0x123) REGMBC(0x1e5) | |
1030 REGMBC(0x1e7) REGMBC(0x1f5) REGMBC(0x1e21) | |
1031 return; | |
1032 case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23) | |
1033 CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96) | |
1034 regmbc('h'); REGMBC(0x125) REGMBC(0x127) | |
1035 REGMBC(0x1e23) REGMBC(0x1e27) REGMBC(0x1e29) | |
1036 REGMBC(0x1e96) | |
167 | 1037 return; |
6765 | 1038 case 'i': case 0xec: case 0xed: case 0xee: case 0xef: |
2974 | 1039 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f) |
1040 CASEMBC(0x1d0) CASEMBC(0x1ec9) | |
6765 | 1041 regmbc('i'); regmbc(0xec); regmbc(0xed); |
1042 regmbc(0xee); regmbc(0xef); | |
2974 | 1043 REGMBC(0x129) REGMBC(0x12b) REGMBC(0x12d) |
1044 REGMBC(0x12f) REGMBC(0x1d0) REGMBC(0x1ec9) | |
1045 return; | |
1046 case 'j': CASEMBC(0x135) CASEMBC(0x1f0) | |
1047 regmbc('j'); REGMBC(0x135) REGMBC(0x1f0) | |
1048 return; | |
1049 case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31) | |
1050 CASEMBC(0x1e35) | |
1051 regmbc('k'); REGMBC(0x137) REGMBC(0x1e9) | |
1052 REGMBC(0x1e31) REGMBC(0x1e35) | |
1053 return; | |
1054 case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e) | |
1055 CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b) | |
1056 regmbc('l'); REGMBC(0x13a) REGMBC(0x13c) | |
1057 REGMBC(0x13e) REGMBC(0x140) REGMBC(0x142) | |
1058 REGMBC(0x1e3b) | |
1059 return; | |
1060 case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41) | |
1061 regmbc('m'); REGMBC(0x1e3f) REGMBC(0x1e41) | |
167 | 1062 return; |
6765 | 1063 case 'n': case 0xf1: |
2974 | 1064 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149) |
1065 CASEMBC(0x1e45) CASEMBC(0x1e49) | |
6765 | 1066 regmbc('n'); regmbc(0xf1); |
2974 | 1067 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148) |
1068 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49) | |
167 | 1069 return; |
6765 | 1070 case 'o': case 0xf2: case 0xf3: case 0xf4: case 0xf5: |
1071 case 0xf6: case 0xf8: | |
2974 | 1072 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1) |
1073 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf) | |
6765 | 1074 regmbc('o'); regmbc(0xf2); regmbc(0xf3); |
1075 regmbc(0xf4); regmbc(0xf5); regmbc(0xf6); | |
1076 regmbc(0xf8); | |
2974 | 1077 REGMBC(0x14d) REGMBC(0x14f) REGMBC(0x151) |
1078 REGMBC(0x1a1) REGMBC(0x1d2) REGMBC(0x1eb) | |
1079 REGMBC(0x1ed) REGMBC(0x1ecf) | |
1080 return; | |
1081 case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57) | |
1082 regmbc('p'); REGMBC(0x1e55) REGMBC(0x1e57) | |
1083 return; | |
1084 case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159) | |
1085 CASEMBC(0x1e59) CASEMBC(0x1e5f) | |
1086 regmbc('r'); REGMBC(0x155) REGMBC(0x157) REGMBC(0x159) | |
1087 REGMBC(0x1e59) REGMBC(0x1e5f) | |
1088 return; | |
1089 case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f) | |
1090 CASEMBC(0x161) CASEMBC(0x1e61) | |
1091 regmbc('s'); REGMBC(0x15b) REGMBC(0x15d) | |
1092 REGMBC(0x15f) REGMBC(0x161) REGMBC(0x1e61) | |
1093 return; | |
1094 case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167) | |
1095 CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97) | |
1096 regmbc('t'); REGMBC(0x163) REGMBC(0x165) REGMBC(0x167) | |
1097 REGMBC(0x1e6b) REGMBC(0x1e6f) REGMBC(0x1e97) | |
167 | 1098 return; |
6765 | 1099 case 'u': case 0xf9: case 0xfa: case 0xfb: case 0xfc: |
2974 | 1100 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f) |
1101 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4) | |
1102 CASEMBC(0x1ee7) | |
6765 | 1103 regmbc('u'); regmbc(0xf9); regmbc(0xfa); |
1104 regmbc(0xfb); regmbc(0xfc); | |
2974 | 1105 REGMBC(0x169) REGMBC(0x16b) REGMBC(0x16d) |
1106 REGMBC(0x16f) REGMBC(0x171) REGMBC(0x173) | |
1107 REGMBC(0x1b0) REGMBC(0x1d4) REGMBC(0x1ee7) | |
1108 return; | |
1109 case 'v': CASEMBC(0x1e7d) | |
1110 regmbc('v'); REGMBC(0x1e7d) | |
1111 return; | |
1112 case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83) | |
1113 CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98) | |
1114 regmbc('w'); REGMBC(0x175) REGMBC(0x1e81) | |
1115 REGMBC(0x1e83) REGMBC(0x1e85) REGMBC(0x1e87) | |
1116 REGMBC(0x1e98) | |
1117 return; | |
1118 case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d) | |
1119 regmbc('x'); REGMBC(0x1e8b) REGMBC(0x1e8d) | |
167 | 1120 return; |
6765 | 1121 case 'y': case 0xfd: case 0xff: |
2974 | 1122 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99) |
1123 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9) | |
6765 | 1124 regmbc('y'); regmbc(0xfd); regmbc(0xff); |
2974 | 1125 REGMBC(0x177) REGMBC(0x1e8f) REGMBC(0x1e99) |
1126 REGMBC(0x1ef3) REGMBC(0x1ef7) REGMBC(0x1ef9) | |
1127 return; | |
1128 case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e) | |
1129 CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95) | |
1130 regmbc('z'); REGMBC(0x17a) REGMBC(0x17c) | |
1131 REGMBC(0x17e) REGMBC(0x1b6) REGMBC(0x1e91) | |
1132 REGMBC(0x1e95) | |
167 | 1133 return; |
1134 } | |
2247
c40cd9aad546
Add patch to improve support of z/OS (OS/390). (Ralf Schandl)
Bram Moolenaar <bram@vim.org>
parents:
2173
diff
changeset
|
1135 #endif |
167 | 1136 } |
1137 regmbc(c); | |
1138 } | |
1139 | |
1140 /* | |
1141 * Check for a collating element "[.a.]". "pp" points to the '['. | |
1142 * Returns a character. Zero means that no item was recognized. Otherwise | |
1143 * "pp" is advanced to after the item. | |
1144 * Currently only single characters are recognized! | |
1145 */ | |
1146 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1147 get_coll_element(char_u **pp) |
167 | 1148 { |
1149 int c; | |
1150 int l = 1; | |
1151 char_u *p = *pp; | |
1152 | |
6830 | 1153 if (p[0] != NUL && p[1] == '.') |
167 | 1154 { |
1155 #ifdef FEAT_MBYTE | |
1156 if (has_mbyte) | |
474 | 1157 l = (*mb_ptr2len)(p + 2); |
167 | 1158 #endif |
1159 if (p[l + 2] == '.' && p[l + 3] == ']') | |
1160 { | |
1161 #ifdef FEAT_MBYTE | |
1162 if (has_mbyte) | |
1163 c = mb_ptr2char(p + 2); | |
1164 else | |
1165 #endif | |
1166 c = p[2]; | |
1167 *pp += l + 4; | |
1168 return c; | |
1169 } | |
1170 } | |
1171 return 0; | |
1172 } | |
1173 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1174 static void get_cpo_flags(void); |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1175 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
|
1176 static int reg_cpo_bsl; /* 'cpoptions' contains '\' flag */ |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1177 |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1178 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1179 get_cpo_flags(void) |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1180 { |
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1181 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
|
1182 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
|
1183 } |
167 | 1184 |
1185 /* | |
1186 * Skip over a "[]" range. | |
1187 * "p" must point to the character after the '['. | |
1188 * The returned pointer is on the matching ']', or the terminating NUL. | |
1189 */ | |
1190 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1191 skip_anyof(char_u *p) |
167 | 1192 { |
1193 #ifdef FEAT_MBYTE | |
1194 int l; | |
1195 #endif | |
1196 | |
1197 if (*p == '^') /* Complement of range. */ | |
1198 ++p; | |
1199 if (*p == ']' || *p == '-') | |
1200 ++p; | |
1201 while (*p != NUL && *p != ']') | |
1202 { | |
1203 #ifdef FEAT_MBYTE | |
474 | 1204 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
167 | 1205 p += l; |
1206 else | |
1207 #endif | |
1208 if (*p == '-') | |
1209 { | |
1210 ++p; | |
1211 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
|
1212 MB_PTR_ADV(p); |
167 | 1213 } |
1214 else if (*p == '\\' | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1215 && !reg_cpo_bsl |
167 | 1216 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1217 || (!reg_cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL))) |
167 | 1218 p += 2; |
1219 else if (*p == '[') | |
1220 { | |
1221 if (get_char_class(&p) == CLASS_NONE | |
1222 && get_equi_class(&p) == 0 | |
6830 | 1223 && get_coll_element(&p) == 0 |
1224 && *p != NUL) | |
1225 ++p; /* it is not a class name and not NUL */ | |
167 | 1226 } |
1227 else | |
1228 ++p; | |
1229 } | |
1230 | |
1231 return p; | |
1232 } | |
1233 | |
1234 /* | |
7 | 1235 * Skip past regular expression. |
153 | 1236 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc). |
7 | 1237 * Take care of characters with a backslash in front of it. |
1238 * Skip strings inside [ and ]. | |
1239 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the | |
1240 * expression and change "\?" to "?". If "*newp" is not NULL the expression | |
1241 * is changed in-place. | |
1242 */ | |
1243 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1244 skip_regexp( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1245 char_u *startp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1246 int dirc, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1247 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1248 char_u **newp) |
7 | 1249 { |
1250 int mymagic; | |
1251 char_u *p = startp; | |
1252 | |
1253 if (magic) | |
1254 mymagic = MAGIC_ON; | |
1255 else | |
1256 mymagic = MAGIC_OFF; | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1257 get_cpo_flags(); |
7 | 1258 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
1259 for (; p[0] != NUL; MB_PTR_ADV(p)) |
7 | 1260 { |
1261 if (p[0] == dirc) /* found end of regexp */ | |
1262 break; | |
1263 if ((p[0] == '[' && mymagic >= MAGIC_ON) | |
1264 || (p[0] == '\\' && p[1] == '[' && mymagic <= MAGIC_OFF)) | |
1265 { | |
1266 p = skip_anyof(p + 1); | |
1267 if (p[0] == NUL) | |
1268 break; | |
1269 } | |
1270 else if (p[0] == '\\' && p[1] != NUL) | |
1271 { | |
1272 if (dirc == '?' && newp != NULL && p[1] == '?') | |
1273 { | |
1274 /* change "\?" to "?", make a copy first. */ | |
1275 if (*newp == NULL) | |
1276 { | |
1277 *newp = vim_strsave(startp); | |
1278 if (*newp != NULL) | |
1279 p = *newp + (p - startp); | |
1280 } | |
1281 if (*newp != NULL) | |
1621 | 1282 STRMOVE(p, p + 1); |
7 | 1283 else |
1284 ++p; | |
1285 } | |
1286 else | |
1287 ++p; /* skip next character */ | |
1288 if (*p == 'v') | |
1289 mymagic = MAGIC_ALL; | |
1290 else if (*p == 'V') | |
1291 mymagic = MAGIC_NONE; | |
1292 } | |
1293 } | |
1294 return p; | |
1295 } | |
1296 | |
11525
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1297 /* |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1298 * 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
|
1299 * brace. |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1300 * 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
|
1301 * (+*=): 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
|
1302 */ |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1303 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
|
1304 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
|
1305 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1306 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
|
1307 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1308 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
|
1309 |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1310 /* 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
|
1311 * 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
|
1312 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
|
1313 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
|
1314 break; |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1315 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
|
1316 { |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1317 EMSG(_("E65: Illegal back reference")); |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1318 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
|
1319 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
|
1320 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1321 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1322 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
|
1323 } |
14b6b79d685b
patch 8.0.0645: no error for illegal back reference in NFA engine
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1324 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1325 static regprog_T *bt_regcomp(char_u *expr, int re_flags); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1326 static void bt_regfree(regprog_T *prog); |
4444 | 1327 |
7 | 1328 /* |
4444 | 1329 * bt_regcomp() - compile a regular expression into internal code for the |
1330 * traditional back track matcher. | |
41 | 1331 * Returns the program in allocated space. Returns NULL for an error. |
7 | 1332 * |
1333 * We can't allocate space until we know how big the compiled form will be, | |
1334 * but we can't compile it (and thus know how big it is) until we've got a | |
1335 * place to put the code. So we cheat: we compile it twice, once with code | |
1336 * generation turned off and size counting turned on, and once "for real". | |
1337 * This also means that we don't allocate space until we are sure that the | |
1338 * thing really will compile successfully, and we never have to move the | |
1339 * code and thus invalidate pointers into it. (Note that it has to be in | |
1340 * one piece because vim_free() must be able to free it all.) | |
1341 * | |
1342 * Whether upper/lower case is to be ignored is decided when executing the | |
1343 * program, it does not matter here. | |
1344 * | |
1345 * Beware that the optimization-preparation code in here knows about some | |
1346 * of the structure of the compiled regexp. | |
1347 * "re_flags": RE_MAGIC and/or RE_STRING. | |
1348 */ | |
4444 | 1349 static regprog_T * |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1350 bt_regcomp(char_u *expr, int re_flags) |
7 | 1351 { |
4444 | 1352 bt_regprog_T *r; |
7 | 1353 char_u *scan; |
1354 char_u *longest; | |
1355 int len; | |
1356 int flags; | |
1357 | |
1358 if (expr == NULL) | |
1359 EMSG_RET_NULL(_(e_null)); | |
1360 | |
1361 init_class_tab(); | |
1362 | |
1363 /* | |
1364 * First pass: determine size, legality. | |
1365 */ | |
1366 regcomp_start(expr, re_flags); | |
1367 regcode = JUST_CALC_SIZE; | |
1368 regc(REGMAGIC); | |
1369 if (reg(REG_NOPAREN, &flags) == NULL) | |
1370 return NULL; | |
1371 | |
1372 /* Allocate space. */ | |
4444 | 1373 r = (bt_regprog_T *)lalloc(sizeof(bt_regprog_T) + regsize, TRUE); |
7 | 1374 if (r == NULL) |
1375 return NULL; | |
1376 | |
1377 /* | |
1378 * Second pass: emit code. | |
1379 */ | |
1380 regcomp_start(expr, re_flags); | |
1381 regcode = r->program; | |
1382 regc(REGMAGIC); | |
2010 | 1383 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong) |
7 | 1384 { |
1385 vim_free(r); | |
2010 | 1386 if (reg_toolong) |
1387 EMSG_RET_NULL(_("E339: Pattern too long")); | |
7 | 1388 return NULL; |
1389 } | |
1390 | |
1391 /* Dig out information for optimizations. */ | |
1392 r->regstart = NUL; /* Worst-case defaults. */ | |
1393 r->reganch = 0; | |
1394 r->regmust = NULL; | |
1395 r->regmlen = 0; | |
1396 r->regflags = regflags; | |
1397 if (flags & HASNL) | |
1398 r->regflags |= RF_HASNL; | |
1399 if (flags & HASLOOKBH) | |
1400 r->regflags |= RF_LOOKBH; | |
1401 #ifdef FEAT_SYN_HL | |
1402 /* Remember whether this pattern has any \z specials in it. */ | |
1403 r->reghasz = re_has_z; | |
1404 #endif | |
1405 scan = r->program + 1; /* First BRANCH. */ | |
1406 if (OP(regnext(scan)) == END) /* Only one top-level choice. */ | |
1407 { | |
1408 scan = OPERAND(scan); | |
1409 | |
1410 /* Starting-point info. */ | |
1411 if (OP(scan) == BOL || OP(scan) == RE_BOF) | |
1412 { | |
1413 r->reganch++; | |
1414 scan = regnext(scan); | |
1415 } | |
1416 | |
1417 if (OP(scan) == EXACTLY) | |
1418 { | |
1419 #ifdef FEAT_MBYTE | |
1420 if (has_mbyte) | |
1421 r->regstart = (*mb_ptr2char)(OPERAND(scan)); | |
1422 else | |
1423 #endif | |
1424 r->regstart = *OPERAND(scan); | |
1425 } | |
1426 else if ((OP(scan) == BOW | |
1427 || OP(scan) == EOW | |
1428 || OP(scan) == NOTHING | |
1429 || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN | |
1430 || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE) | |
1431 && OP(regnext(scan)) == EXACTLY) | |
1432 { | |
1433 #ifdef FEAT_MBYTE | |
1434 if (has_mbyte) | |
1435 r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan))); | |
1436 else | |
1437 #endif | |
1438 r->regstart = *OPERAND(regnext(scan)); | |
1439 } | |
1440 | |
1441 /* | |
1442 * If there's something expensive in the r.e., find the longest | |
1443 * literal string that must appear and make it the regmust. Resolve | |
1444 * ties in favor of later strings, since the regstart check works | |
1445 * with the beginning of the r.e. and avoiding duplication | |
1446 * strengthens checking. Not a strong reason, but sufficient in the | |
1447 * absence of others. | |
1448 */ | |
1449 /* | |
1450 * When the r.e. starts with BOW, it is faster to look for a regmust | |
1451 * first. Used a lot for "#" and "*" commands. (Added by mool). | |
1452 */ | |
1453 if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW) | |
1454 && !(flags & HASNL)) | |
1455 { | |
1456 longest = NULL; | |
1457 len = 0; | |
1458 for (; scan != NULL; scan = regnext(scan)) | |
1459 if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len) | |
1460 { | |
1461 longest = OPERAND(scan); | |
1462 len = (int)STRLEN(OPERAND(scan)); | |
1463 } | |
1464 r->regmust = longest; | |
1465 r->regmlen = len; | |
1466 } | |
1467 } | |
4444 | 1468 #ifdef BT_REGEXP_DUMP |
7 | 1469 regdump(expr, r); |
1470 #endif | |
4444 | 1471 r->engine = &bt_regengine; |
1472 return (regprog_T *)r; | |
7 | 1473 } |
1474 | |
1475 /* | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1476 * 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
|
1477 */ |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1478 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1479 bt_regfree(regprog_T *prog) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1480 { |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1481 vim_free(prog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1482 } |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1483 |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
1484 /* |
7 | 1485 * Setup to parse the regexp. Used once to get the length and once to do it. |
1486 */ | |
1487 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1488 regcomp_start( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1489 char_u *expr, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1490 int re_flags) /* see vim_regcomp() */ |
7 | 1491 { |
1492 initchr(expr); | |
1493 if (re_flags & RE_MAGIC) | |
1494 reg_magic = MAGIC_ON; | |
1495 else | |
1496 reg_magic = MAGIC_OFF; | |
1497 reg_string = (re_flags & RE_STRING); | |
481 | 1498 reg_strict = (re_flags & RE_STRICT); |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
1499 get_cpo_flags(); |
7 | 1500 |
1501 num_complex_braces = 0; | |
1502 regnpar = 1; | |
1503 vim_memset(had_endbrace, 0, sizeof(had_endbrace)); | |
1504 #ifdef FEAT_SYN_HL | |
1505 regnzpar = 1; | |
1506 re_has_z = 0; | |
1507 #endif | |
1508 regsize = 0L; | |
2010 | 1509 reg_toolong = FALSE; |
7 | 1510 regflags = 0; |
1511 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1512 had_eol = FALSE; | |
1513 #endif | |
1514 } | |
1515 | |
1516 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1517 /* | |
1518 * Check if during the previous call to vim_regcomp the EOL item "$" has been | |
1519 * found. This is messy, but it works fine. | |
1520 */ | |
1521 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1522 vim_regcomp_had_eol(void) |
7 | 1523 { |
1524 return had_eol; | |
1525 } | |
1526 #endif | |
1527 | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1528 /* variables for parsing reginput */ |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1529 static int at_start; /* True when on the first character */ |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1530 static int prev_at_start; /* True when on the second character */ |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1531 |
7 | 1532 /* |
4444 | 1533 * Parse regular expression, i.e. main body or parenthesized thing. |
7 | 1534 * |
1535 * Caller must absorb opening parenthesis. | |
1536 * | |
1537 * Combining parenthesis handling with the base level of regular expression | |
1538 * is a trifle forced, but the need to tie the tails of the branches to what | |
1539 * follows makes it hard to avoid. | |
1540 */ | |
1541 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1542 reg( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1543 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
|
1544 int *flagp) |
7 | 1545 { |
1546 char_u *ret; | |
1547 char_u *br; | |
1548 char_u *ender; | |
1549 int parno = 0; | |
1550 int flags; | |
1551 | |
1552 *flagp = HASWIDTH; /* Tentatively. */ | |
1553 | |
1554 #ifdef FEAT_SYN_HL | |
1555 if (paren == REG_ZPAREN) | |
1556 { | |
1557 /* Make a ZOPEN node. */ | |
1558 if (regnzpar >= NSUBEXP) | |
1559 EMSG_RET_NULL(_("E50: Too many \\z(")); | |
1560 parno = regnzpar; | |
1561 regnzpar++; | |
1562 ret = regnode(ZOPEN + parno); | |
1563 } | |
1564 else | |
1565 #endif | |
1566 if (paren == REG_PAREN) | |
1567 { | |
1568 /* Make a MOPEN node. */ | |
1569 if (regnpar >= NSUBEXP) | |
4444 | 1570 EMSG2_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL); |
7 | 1571 parno = regnpar; |
1572 ++regnpar; | |
1573 ret = regnode(MOPEN + parno); | |
1574 } | |
1575 else if (paren == REG_NPAREN) | |
1576 { | |
1577 /* Make a NOPEN node. */ | |
1578 ret = regnode(NOPEN); | |
1579 } | |
1580 else | |
1581 ret = NULL; | |
1582 | |
1583 /* Pick up the branches, linking them together. */ | |
1584 br = regbranch(&flags); | |
1585 if (br == NULL) | |
1586 return NULL; | |
1587 if (ret != NULL) | |
1588 regtail(ret, br); /* [MZ]OPEN -> first. */ | |
1589 else | |
1590 ret = br; | |
1591 /* If one of the branches can be zero-width, the whole thing can. | |
1592 * If one of the branches has * at start or matches a line-break, the | |
1593 * whole thing can. */ | |
1594 if (!(flags & HASWIDTH)) | |
1595 *flagp &= ~HASWIDTH; | |
1596 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1597 while (peekchr() == Magic('|')) | |
1598 { | |
1599 skipchr(); | |
1600 br = regbranch(&flags); | |
2010 | 1601 if (br == NULL || reg_toolong) |
7 | 1602 return NULL; |
1603 regtail(ret, br); /* BRANCH -> BRANCH. */ | |
1604 if (!(flags & HASWIDTH)) | |
1605 *flagp &= ~HASWIDTH; | |
1606 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); | |
1607 } | |
1608 | |
1609 /* Make a closing node, and hook it on the end. */ | |
1610 ender = regnode( | |
1611 #ifdef FEAT_SYN_HL | |
1612 paren == REG_ZPAREN ? ZCLOSE + parno : | |
1613 #endif | |
1614 paren == REG_PAREN ? MCLOSE + parno : | |
1615 paren == REG_NPAREN ? NCLOSE : END); | |
1616 regtail(ret, ender); | |
1617 | |
1618 /* Hook the tails of the branches to the closing node. */ | |
1619 for (br = ret; br != NULL; br = regnext(br)) | |
1620 regoptail(br, ender); | |
1621 | |
1622 /* Check for proper termination. */ | |
1623 if (paren != REG_NOPAREN && getchr() != Magic(')')) | |
1624 { | |
1625 #ifdef FEAT_SYN_HL | |
1626 if (paren == REG_ZPAREN) | |
308 | 1627 EMSG_RET_NULL(_("E52: Unmatched \\z(")); |
7 | 1628 else |
1629 #endif | |
1630 if (paren == REG_NPAREN) | |
4444 | 1631 EMSG2_RET_NULL(_(e_unmatchedpp), reg_magic == MAGIC_ALL); |
7 | 1632 else |
4444 | 1633 EMSG2_RET_NULL(_(e_unmatchedp), reg_magic == MAGIC_ALL); |
7 | 1634 } |
1635 else if (paren == REG_NOPAREN && peekchr() != NUL) | |
1636 { | |
1637 if (curchr == Magic(')')) | |
4444 | 1638 EMSG2_RET_NULL(_(e_unmatchedpar), reg_magic == MAGIC_ALL); |
7 | 1639 else |
308 | 1640 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */ |
7 | 1641 /* NOTREACHED */ |
1642 } | |
1643 /* | |
1644 * Here we set the flag allowing back references to this set of | |
1645 * parentheses. | |
1646 */ | |
1647 if (paren == REG_PAREN) | |
1648 had_endbrace[parno] = TRUE; /* have seen the close paren */ | |
1649 return ret; | |
1650 } | |
1651 | |
1652 /* | |
4444 | 1653 * Parse one alternative of an | operator. |
7 | 1654 * Implements the & operator. |
1655 */ | |
1656 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1657 regbranch(int *flagp) |
7 | 1658 { |
1659 char_u *ret; | |
1660 char_u *chain = NULL; | |
1661 char_u *latest; | |
1662 int flags; | |
1663 | |
1664 *flagp = WORST | HASNL; /* Tentatively. */ | |
1665 | |
1666 ret = regnode(BRANCH); | |
1667 for (;;) | |
1668 { | |
1669 latest = regconcat(&flags); | |
1670 if (latest == NULL) | |
1671 return NULL; | |
1672 /* If one of the branches has width, the whole thing has. If one of | |
1673 * the branches anchors at start-of-line, the whole thing does. | |
1674 * If one of the branches uses look-behind, the whole thing does. */ | |
1675 *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH); | |
1676 /* If one of the branches doesn't match a line-break, the whole thing | |
1677 * doesn't. */ | |
1678 *flagp &= ~HASNL | (flags & HASNL); | |
1679 if (chain != NULL) | |
1680 regtail(chain, latest); | |
1681 if (peekchr() != Magic('&')) | |
1682 break; | |
1683 skipchr(); | |
1684 regtail(latest, regnode(END)); /* operand ends */ | |
2010 | 1685 if (reg_toolong) |
1686 break; | |
7 | 1687 reginsert(MATCH, latest); |
1688 chain = latest; | |
1689 } | |
1690 | |
1691 return ret; | |
1692 } | |
1693 | |
1694 /* | |
4444 | 1695 * Parse one alternative of an | or & operator. |
7 | 1696 * Implements the concatenation operator. |
1697 */ | |
1698 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1699 regconcat(int *flagp) |
7 | 1700 { |
1701 char_u *first = NULL; | |
1702 char_u *chain = NULL; | |
1703 char_u *latest; | |
1704 int flags; | |
1705 int cont = TRUE; | |
1706 | |
1707 *flagp = WORST; /* Tentatively. */ | |
1708 | |
1709 while (cont) | |
1710 { | |
1711 switch (peekchr()) | |
1712 { | |
1713 case NUL: | |
1714 case Magic('|'): | |
1715 case Magic('&'): | |
1716 case Magic(')'): | |
1717 cont = FALSE; | |
1718 break; | |
1719 case Magic('Z'): | |
1720 #ifdef FEAT_MBYTE | |
1721 regflags |= RF_ICOMBINE; | |
1722 #endif | |
1723 skipchr_keepstart(); | |
1724 break; | |
1725 case Magic('c'): | |
1726 regflags |= RF_ICASE; | |
1727 skipchr_keepstart(); | |
1728 break; | |
1729 case Magic('C'): | |
1730 regflags |= RF_NOICASE; | |
1731 skipchr_keepstart(); | |
1732 break; | |
1733 case Magic('v'): | |
1734 reg_magic = MAGIC_ALL; | |
1735 skipchr_keepstart(); | |
1736 curchr = -1; | |
1737 break; | |
1738 case Magic('m'): | |
1739 reg_magic = MAGIC_ON; | |
1740 skipchr_keepstart(); | |
1741 curchr = -1; | |
1742 break; | |
1743 case Magic('M'): | |
1744 reg_magic = MAGIC_OFF; | |
1745 skipchr_keepstart(); | |
1746 curchr = -1; | |
1747 break; | |
1748 case Magic('V'): | |
1749 reg_magic = MAGIC_NONE; | |
1750 skipchr_keepstart(); | |
1751 curchr = -1; | |
1752 break; | |
1753 default: | |
1754 latest = regpiece(&flags); | |
2010 | 1755 if (latest == NULL || reg_toolong) |
7 | 1756 return NULL; |
1757 *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH); | |
1758 if (chain == NULL) /* First piece. */ | |
1759 *flagp |= flags & SPSTART; | |
1760 else | |
1761 regtail(chain, latest); | |
1762 chain = latest; | |
1763 if (first == NULL) | |
1764 first = latest; | |
1765 break; | |
1766 } | |
1767 } | |
1768 if (first == NULL) /* Loop ran zero times. */ | |
1769 first = regnode(NOTHING); | |
1770 return first; | |
1771 } | |
1772 | |
1773 /* | |
4444 | 1774 * Parse something followed by possible [*+=]. |
7 | 1775 * |
1776 * Note that the branching code sequences used for = and the general cases | |
1777 * of * and + are somewhat optimized: they use the same NOTHING node as | |
1778 * both the endmarker for their branch list and the body of the last branch. | |
1779 * It might seem that this node could be dispensed with entirely, but the | |
1780 * endmarker role is not redundant. | |
1781 */ | |
1782 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1783 regpiece(int *flagp) |
7 | 1784 { |
1785 char_u *ret; | |
1786 int op; | |
1787 char_u *next; | |
1788 int flags; | |
1789 long minval; | |
1790 long maxval; | |
1791 | |
1792 ret = regatom(&flags); | |
1793 if (ret == NULL) | |
1794 return NULL; | |
1795 | |
1796 op = peekchr(); | |
1797 if (re_multi_type(op) == NOT_MULTI) | |
1798 { | |
1799 *flagp = flags; | |
1800 return ret; | |
1801 } | |
1802 /* default flags */ | |
1803 *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH))); | |
1804 | |
1805 skipchr(); | |
1806 switch (op) | |
1807 { | |
1808 case Magic('*'): | |
1809 if (flags & SIMPLE) | |
1810 reginsert(STAR, ret); | |
1811 else | |
1812 { | |
1813 /* Emit x* as (x&|), where & means "self". */ | |
1814 reginsert(BRANCH, ret); /* Either x */ | |
1815 regoptail(ret, regnode(BACK)); /* and loop */ | |
1816 regoptail(ret, ret); /* back */ | |
1817 regtail(ret, regnode(BRANCH)); /* or */ | |
1818 regtail(ret, regnode(NOTHING)); /* null. */ | |
1819 } | |
1820 break; | |
1821 | |
1822 case Magic('+'): | |
1823 if (flags & SIMPLE) | |
1824 reginsert(PLUS, ret); | |
1825 else | |
1826 { | |
1827 /* Emit x+ as x(&|), where & means "self". */ | |
1828 next = regnode(BRANCH); /* Either */ | |
1829 regtail(ret, next); | |
233 | 1830 regtail(regnode(BACK), ret); /* loop back */ |
7 | 1831 regtail(next, regnode(BRANCH)); /* or */ |
1832 regtail(ret, regnode(NOTHING)); /* null. */ | |
1833 } | |
1834 *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1835 break; | |
1836 | |
1837 case Magic('@'): | |
1838 { | |
1839 int lop = END; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
1840 long nr; |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1841 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1842 nr = getdecchrs(); |
7 | 1843 switch (no_Magic(getchr())) |
1844 { | |
1845 case '=': lop = MATCH; break; /* \@= */ | |
1846 case '!': lop = NOMATCH; break; /* \@! */ | |
1847 case '>': lop = SUBPAT; break; /* \@> */ | |
1848 case '<': switch (no_Magic(getchr())) | |
1849 { | |
1850 case '=': lop = BEHIND; break; /* \@<= */ | |
1851 case '!': lop = NOBEHIND; break; /* \@<! */ | |
1852 } | |
1853 } | |
1854 if (lop == END) | |
4444 | 1855 EMSG2_RET_NULL(_("E59: invalid character after %s@"), |
7 | 1856 reg_magic == MAGIC_ALL); |
1857 /* Look behind must match with behind_pos. */ | |
1858 if (lop == BEHIND || lop == NOBEHIND) | |
1859 { | |
1860 regtail(ret, regnode(BHPOS)); | |
1861 *flagp |= HASLOOKBH; | |
1862 } | |
1863 regtail(ret, regnode(END)); /* operand ends */ | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1864 if (lop == BEHIND || lop == NOBEHIND) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1865 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1866 if (nr < 0) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1867 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
|
1868 reginsert_nr(lop, nr, ret); |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1869 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1870 else |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
1871 reginsert(lop, ret); |
7 | 1872 break; |
1873 } | |
1874 | |
1875 case Magic('?'): | |
1876 case Magic('='): | |
1877 /* Emit x= as (x|) */ | |
1878 reginsert(BRANCH, ret); /* Either x */ | |
1879 regtail(ret, regnode(BRANCH)); /* or */ | |
1880 next = regnode(NOTHING); /* null. */ | |
1881 regtail(ret, next); | |
1882 regoptail(ret, next); | |
1883 break; | |
1884 | |
1885 case Magic('{'): | |
1886 if (!read_limits(&minval, &maxval)) | |
1887 return NULL; | |
1888 if (flags & SIMPLE) | |
1889 { | |
1890 reginsert(BRACE_SIMPLE, ret); | |
1891 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1892 } | |
1893 else | |
1894 { | |
1895 if (num_complex_braces >= 10) | |
4444 | 1896 EMSG2_RET_NULL(_("E60: Too many complex %s{...}s"), |
7 | 1897 reg_magic == MAGIC_ALL); |
1898 reginsert(BRACE_COMPLEX + num_complex_braces, ret); | |
1899 regoptail(ret, regnode(BACK)); | |
1900 regoptail(ret, ret); | |
1901 reginsert_limits(BRACE_LIMITS, minval, maxval, ret); | |
1902 ++num_complex_braces; | |
1903 } | |
1904 if (minval > 0 && maxval > 0) | |
1905 *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH))); | |
1906 break; | |
1907 } | |
1908 if (re_multi_type(peekchr()) != NOT_MULTI) | |
1909 { | |
1910 /* Can't have a multi follow a multi. */ | |
1911 if (peekchr() == Magic('*')) | |
1912 sprintf((char *)IObuff, _("E61: Nested %s*"), | |
1913 reg_magic >= MAGIC_ON ? "" : "\\"); | |
1914 else | |
1915 sprintf((char *)IObuff, _("E62: Nested %s%c"), | |
1916 reg_magic == MAGIC_ALL ? "" : "\\", no_Magic(peekchr())); | |
1917 EMSG_RET_NULL(IObuff); | |
1918 } | |
1919 | |
1920 return ret; | |
1921 } | |
1922 | |
4444 | 1923 /* When making changes to classchars also change nfa_classcodes. */ |
1924 static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU"; | |
1925 static int classcodes[] = { | |
1926 ANY, IDENT, SIDENT, KWORD, SKWORD, | |
1927 FNAME, SFNAME, PRINT, SPRINT, | |
1928 WHITE, NWHITE, DIGIT, NDIGIT, | |
1929 HEX, NHEX, OCTAL, NOCTAL, | |
1930 WORD, NWORD, HEAD, NHEAD, | |
1931 ALPHA, NALPHA, LOWER, NLOWER, | |
1932 UPPER, NUPPER | |
1933 }; | |
1934 | |
7 | 1935 /* |
4444 | 1936 * Parse the lowest level. |
7 | 1937 * |
1938 * Optimization: gobbles an entire sequence of ordinary characters so that | |
1939 * it can turn them into a single node, which is smaller to store and | |
1940 * faster to run. Don't do this when one_exactly is set. | |
1941 */ | |
1942 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
1943 regatom(int *flagp) |
7 | 1944 { |
1945 char_u *ret; | |
1946 int flags; | |
1947 int c; | |
1948 char_u *p; | |
1949 int extra = 0; | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
1950 int save_prev_at_start = prev_at_start; |
7 | 1951 |
1952 *flagp = WORST; /* Tentatively. */ | |
1953 | |
1954 c = getchr(); | |
1955 switch (c) | |
1956 { | |
1957 case Magic('^'): | |
1958 ret = regnode(BOL); | |
1959 break; | |
1960 | |
1961 case Magic('$'): | |
1962 ret = regnode(EOL); | |
1963 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1964 had_eol = TRUE; | |
1965 #endif | |
1966 break; | |
1967 | |
1968 case Magic('<'): | |
1969 ret = regnode(BOW); | |
1970 break; | |
1971 | |
1972 case Magic('>'): | |
1973 ret = regnode(EOW); | |
1974 break; | |
1975 | |
1976 case Magic('_'): | |
1977 c = no_Magic(getchr()); | |
1978 if (c == '^') /* "\_^" is start-of-line */ | |
1979 { | |
1980 ret = regnode(BOL); | |
1981 break; | |
1982 } | |
1983 if (c == '$') /* "\_$" is end-of-line */ | |
1984 { | |
1985 ret = regnode(EOL); | |
1986 #if defined(FEAT_SYN_HL) || defined(PROTO) | |
1987 had_eol = TRUE; | |
1988 #endif | |
1989 break; | |
1990 } | |
1991 | |
1992 extra = ADD_NL; | |
1993 *flagp |= HASNL; | |
1994 | |
1995 /* "\_[" is character range plus newline */ | |
1996 if (c == '[') | |
1997 goto collection; | |
1998 | |
1999 /* "\_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
|
2000 /* FALLTHROUGH */ |
7 | 2001 |
2002 /* | |
2003 * Character classes. | |
2004 */ | |
2005 case Magic('.'): | |
2006 case Magic('i'): | |
2007 case Magic('I'): | |
2008 case Magic('k'): | |
2009 case Magic('K'): | |
2010 case Magic('f'): | |
2011 case Magic('F'): | |
2012 case Magic('p'): | |
2013 case Magic('P'): | |
2014 case Magic('s'): | |
2015 case Magic('S'): | |
2016 case Magic('d'): | |
2017 case Magic('D'): | |
2018 case Magic('x'): | |
2019 case Magic('X'): | |
2020 case Magic('o'): | |
2021 case Magic('O'): | |
2022 case Magic('w'): | |
2023 case Magic('W'): | |
2024 case Magic('h'): | |
2025 case Magic('H'): | |
2026 case Magic('a'): | |
2027 case Magic('A'): | |
2028 case Magic('l'): | |
2029 case Magic('L'): | |
2030 case Magic('u'): | |
2031 case Magic('U'): | |
2032 p = vim_strchr(classchars, no_Magic(c)); | |
2033 if (p == NULL) | |
2034 EMSG_RET_NULL(_("E63: invalid use of \\_")); | |
714 | 2035 #ifdef FEAT_MBYTE |
2036 /* When '.' is followed by a composing char ignore the dot, so that | |
2037 * the composing char is matched here. */ | |
2038 if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr())) | |
2039 { | |
2040 c = getchr(); | |
2041 goto do_multibyte; | |
2042 } | |
2043 #endif | |
7 | 2044 ret = regnode(classcodes[p - classchars] + extra); |
2045 *flagp |= HASWIDTH | SIMPLE; | |
2046 break; | |
2047 | |
2048 case Magic('n'): | |
2049 if (reg_string) | |
2050 { | |
2051 /* In a string "\n" matches a newline character. */ | |
2052 ret = regnode(EXACTLY); | |
2053 regc(NL); | |
2054 regc(NUL); | |
2055 *flagp |= HASWIDTH | SIMPLE; | |
2056 } | |
2057 else | |
2058 { | |
2059 /* In buffer text "\n" matches the end of a line. */ | |
2060 ret = regnode(NEWL); | |
2061 *flagp |= HASWIDTH | HASNL; | |
2062 } | |
2063 break; | |
2064 | |
2065 case Magic('('): | |
2066 if (one_exactly) | |
2067 EMSG_ONE_RET_NULL; | |
2068 ret = reg(REG_PAREN, &flags); | |
2069 if (ret == NULL) | |
2070 return NULL; | |
2071 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2072 break; | |
2073 | |
2074 case NUL: | |
2075 case Magic('|'): | |
2076 case Magic('&'): | |
2077 case Magic(')'): | |
1468 | 2078 if (one_exactly) |
2079 EMSG_ONE_RET_NULL; | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
2080 IEMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */ |
7 | 2081 /* NOTREACHED */ |
2082 | |
2083 case Magic('='): | |
2084 case Magic('?'): | |
2085 case Magic('+'): | |
2086 case Magic('@'): | |
2087 case Magic('{'): | |
2088 case Magic('*'): | |
2089 c = no_Magic(c); | |
2090 sprintf((char *)IObuff, _("E64: %s%c follows nothing"), | |
2091 (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL) | |
2092 ? "" : "\\", c); | |
2093 EMSG_RET_NULL(IObuff); | |
2094 /* NOTREACHED */ | |
2095 | |
2096 case Magic('~'): /* previous substitute pattern */ | |
359 | 2097 if (reg_prev_sub != NULL) |
7 | 2098 { |
2099 char_u *lp; | |
2100 | |
2101 ret = regnode(EXACTLY); | |
2102 lp = reg_prev_sub; | |
2103 while (*lp != NUL) | |
2104 regc(*lp++); | |
2105 regc(NUL); | |
2106 if (*reg_prev_sub != NUL) | |
2107 { | |
2108 *flagp |= HASWIDTH; | |
2109 if ((lp - reg_prev_sub) == 1) | |
2110 *flagp |= SIMPLE; | |
2111 } | |
2112 } | |
2113 else | |
2114 EMSG_RET_NULL(_(e_nopresub)); | |
2115 break; | |
2116 | |
2117 case Magic('1'): | |
2118 case Magic('2'): | |
2119 case Magic('3'): | |
2120 case Magic('4'): | |
2121 case Magic('5'): | |
2122 case Magic('6'): | |
2123 case Magic('7'): | |
2124 case Magic('8'): | |
2125 case Magic('9'): | |
2126 { | |
2127 int refnum; | |
2128 | |
2129 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
|
2130 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
|
2131 return NULL; |
7 | 2132 ret = regnode(BACKREF + refnum); |
2133 } | |
2134 break; | |
2135 | |
2136 case Magic('z'): | |
2137 { | |
2138 c = no_Magic(getchr()); | |
2139 switch (c) | |
2140 { | |
741 | 2141 #ifdef FEAT_SYN_HL |
7 | 2142 case '(': if (reg_do_extmatch != REX_SET) |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
2143 EMSG_RET_NULL(_(e_z_not_allowed)); |
7 | 2144 if (one_exactly) |
2145 EMSG_ONE_RET_NULL; | |
2146 ret = reg(REG_ZPAREN, &flags); | |
2147 if (ret == NULL) | |
2148 return NULL; | |
2149 *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH); | |
2150 re_has_z = REX_SET; | |
2151 break; | |
2152 | |
2153 case '1': | |
2154 case '2': | |
2155 case '3': | |
2156 case '4': | |
2157 case '5': | |
2158 case '6': | |
2159 case '7': | |
2160 case '8': | |
2161 case '9': if (reg_do_extmatch != REX_USE) | |
4688
371cc0c44097
updated for version 7.3.1091
Bram Moolenaar <bram@vim.org>
parents:
4682
diff
changeset
|
2162 EMSG_RET_NULL(_(e_z1_not_allowed)); |
7 | 2163 ret = regnode(ZREF + c - '0'); |
2164 re_has_z = REX_USE; | |
2165 break; | |
741 | 2166 #endif |
7 | 2167 |
2168 case 's': ret = regnode(MOPEN + 0); | |
6203 | 2169 if (re_mult_next("\\zs") == FAIL) |
2170 return NULL; | |
7 | 2171 break; |
2172 | |
2173 case 'e': ret = regnode(MCLOSE + 0); | |
6203 | 2174 if (re_mult_next("\\ze") == FAIL) |
2175 return NULL; | |
7 | 2176 break; |
2177 | |
2178 default: EMSG_RET_NULL(_("E68: Invalid character after \\z")); | |
2179 } | |
2180 } | |
2181 break; | |
2182 | |
2183 case Magic('%'): | |
2184 { | |
2185 c = no_Magic(getchr()); | |
2186 switch (c) | |
2187 { | |
2188 /* () without a back reference */ | |
2189 case '(': | |
2190 if (one_exactly) | |
2191 EMSG_ONE_RET_NULL; | |
2192 ret = reg(REG_NPAREN, &flags); | |
2193 if (ret == NULL) | |
2194 return NULL; | |
2195 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); | |
2196 break; | |
2197 | |
2198 /* Catch \%^ and \%$ regardless of where they appear in the | |
2199 * pattern -- regardless of whether or not it makes sense. */ | |
2200 case '^': | |
2201 ret = regnode(RE_BOF); | |
2202 break; | |
2203 | |
2204 case '$': | |
2205 ret = regnode(RE_EOF); | |
2206 break; | |
2207 | |
2208 case '#': | |
2209 ret = regnode(CURSOR); | |
2210 break; | |
2211 | |
639 | 2212 case 'V': |
2213 ret = regnode(RE_VISUAL); | |
2214 break; | |
2215 | |
5901 | 2216 case 'C': |
2217 ret = regnode(RE_COMPOSING); | |
2218 break; | |
2219 | |
7 | 2220 /* \%[abc]: Emit as a list of branches, all ending at the last |
2221 * branch which matches nothing. */ | |
2222 case '[': | |
2223 if (one_exactly) /* doesn't nest */ | |
2224 EMSG_ONE_RET_NULL; | |
2225 { | |
2226 char_u *lastbranch; | |
2227 char_u *lastnode = NULL; | |
2228 char_u *br; | |
2229 | |
2230 ret = NULL; | |
2231 while ((c = getchr()) != ']') | |
2232 { | |
2233 if (c == NUL) | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2234 EMSG2_RET_NULL(_(e_missing_sb), |
7 | 2235 reg_magic == MAGIC_ALL); |
2236 br = regnode(BRANCH); | |
2237 if (ret == NULL) | |
2238 ret = br; | |
2239 else | |
2240 regtail(lastnode, br); | |
2241 | |
2242 ungetchr(); | |
2243 one_exactly = TRUE; | |
2244 lastnode = regatom(flagp); | |
2245 one_exactly = FALSE; | |
2246 if (lastnode == NULL) | |
2247 return NULL; | |
2248 } | |
2249 if (ret == NULL) | |
4760
532a9855bd30
updated for version 7.3.1127
Bram Moolenaar <bram@vim.org>
parents:
4746
diff
changeset
|
2250 EMSG2_RET_NULL(_(e_empty_sb), |
7 | 2251 reg_magic == MAGIC_ALL); |
2252 lastbranch = regnode(BRANCH); | |
2253 br = regnode(NOTHING); | |
2254 if (ret != JUST_CALC_SIZE) | |
2255 { | |
2256 regtail(lastnode, br); | |
2257 regtail(lastbranch, br); | |
2258 /* connect all branches to the NOTHING | |
2259 * branch at the end */ | |
2260 for (br = ret; br != lastnode; ) | |
2261 { | |
2262 if (OP(br) == BRANCH) | |
2263 { | |
2264 regtail(br, lastbranch); | |
2265 br = OPERAND(br); | |
2266 } | |
2267 else | |
2268 br = regnext(br); | |
2269 } | |
2270 } | |
1701 | 2271 *flagp &= ~(HASWIDTH | SIMPLE); |
7 | 2272 break; |
2273 } | |
2274 | |
24 | 2275 case 'd': /* %d123 decimal */ |
2276 case 'o': /* %o123 octal */ | |
2277 case 'x': /* %xab hex 2 */ | |
2278 case 'u': /* %uabcd hex 4 */ | |
2279 case 'U': /* %U1234abcd hex 8 */ | |
2280 { | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
2281 long i; |
24 | 2282 |
2283 switch (c) | |
2284 { | |
2285 case 'd': i = getdecchrs(); break; | |
2286 case 'o': i = getoctchrs(); break; | |
2287 case 'x': i = gethexchrs(2); break; | |
2288 case 'u': i = gethexchrs(4); break; | |
2289 case 'U': i = gethexchrs(8); break; | |
2290 default: i = -1; break; | |
2291 } | |
2292 | |
2293 if (i < 0) | |
4444 | 2294 EMSG2_RET_NULL( |
24 | 2295 _("E678: Invalid character after %s%%[dxouU]"), |
2296 reg_magic == MAGIC_ALL); | |
714 | 2297 #ifdef FEAT_MBYTE |
2298 if (use_multibytecode(i)) | |
2299 ret = regnode(MULTIBYTECODE); | |
2300 else | |
2301 #endif | |
2302 ret = regnode(EXACTLY); | |
24 | 2303 if (i == 0) |
2304 regc(0x0a); | |
2305 else | |
2306 #ifdef FEAT_MBYTE | |
2307 regmbc(i); | |
2308 #else | |
2309 regc(i); | |
2310 #endif | |
2311 regc(NUL); | |
2312 *flagp |= HASWIDTH; | |
2313 break; | |
2314 } | |
2315 | |
7 | 2316 default: |
639 | 2317 if (VIM_ISDIGIT(c) || c == '<' || c == '>' |
2318 || c == '\'') | |
7 | 2319 { |
2320 long_u n = 0; | |
2321 int cmp; | |
2322 | |
2323 cmp = c; | |
2324 if (cmp == '<' || cmp == '>') | |
2325 c = getchr(); | |
2326 while (VIM_ISDIGIT(c)) | |
2327 { | |
2328 n = n * 10 + (c - '0'); | |
2329 c = getchr(); | |
2330 } | |
639 | 2331 if (c == '\'' && n == 0) |
2332 { | |
2333 /* "\%'m", "\%<'m" and "\%>'m": Mark */ | |
2334 c = getchr(); | |
2335 ret = regnode(RE_MARK); | |
2336 if (ret == JUST_CALC_SIZE) | |
2337 regsize += 2; | |
2338 else | |
2339 { | |
2340 *regcode++ = c; | |
2341 *regcode++ = cmp; | |
2342 } | |
2343 break; | |
2344 } | |
2345 else if (c == 'l' || c == 'c' || c == 'v') | |
7 | 2346 { |
2347 if (c == 'l') | |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2348 { |
7 | 2349 ret = regnode(RE_LNUM); |
8021
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2350 if (save_prev_at_start) |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2351 at_start = TRUE; |
b6b4f354df23
commit https://github.com/vim/vim/commit/7c29f387819b5817b003d2ba73e2b5cf3cb3d0dd
Christian Brabandt <cb@256bit.org>
parents:
7833
diff
changeset
|
2352 } |
7 | 2353 else if (c == 'c') |
2354 ret = regnode(RE_COL); | |
2355 else | |
2356 ret = regnode(RE_VCOL); | |
2357 if (ret == JUST_CALC_SIZE) | |
2358 regsize += 5; | |
2359 else | |
2360 { | |
2361 /* put the number and the optional | |
2362 * comparator after the opcode */ | |
2363 regcode = re_put_long(regcode, n); | |
2364 *regcode++ = cmp; | |
2365 } | |
2366 break; | |
2367 } | |
2368 } | |
2369 | |
4444 | 2370 EMSG2_RET_NULL(_("E71: Invalid character after %s%%"), |
7 | 2371 reg_magic == MAGIC_ALL); |
2372 } | |
2373 } | |
2374 break; | |
2375 | |
2376 case Magic('['): | |
2377 collection: | |
2378 { | |
2379 char_u *lp; | |
2380 | |
2381 /* | |
2382 * If there is no matching ']', we assume the '[' is a normal | |
2383 * character. This makes 'incsearch' and ":help [" work. | |
2384 */ | |
2385 lp = skip_anyof(regparse); | |
2386 if (*lp == ']') /* there is a matching ']' */ | |
2387 { | |
2388 int startc = -1; /* > 0 when next '-' is a range */ | |
2389 int endc; | |
2390 | |
2391 /* | |
2392 * In a character class, different parsing rules apply. | |
2393 * Not even \ is special anymore, nothing is. | |
2394 */ | |
2395 if (*regparse == '^') /* Complement of range. */ | |
2396 { | |
2397 ret = regnode(ANYBUT + extra); | |
2398 regparse++; | |
2399 } | |
2400 else | |
2401 ret = regnode(ANYOF + extra); | |
2402 | |
2403 /* At the start ']' and '-' mean the literal character. */ | |
2404 if (*regparse == ']' || *regparse == '-') | |
167 | 2405 { |
2406 startc = *regparse; | |
7 | 2407 regc(*regparse++); |
167 | 2408 } |
7 | 2409 |
2410 while (*regparse != NUL && *regparse != ']') | |
2411 { | |
2412 if (*regparse == '-') | |
2413 { | |
2414 ++regparse; | |
2415 /* The '-' is not used for a range at the end and | |
2416 * after or before a '\n'. */ | |
2417 if (*regparse == ']' || *regparse == NUL | |
2418 || startc == -1 | |
2419 || (regparse[0] == '\\' && regparse[1] == 'n')) | |
2420 { | |
2421 regc('-'); | |
2422 startc = '-'; /* [--x] is a range */ | |
2423 } | |
2424 else | |
2425 { | |
167 | 2426 /* Also accept "a-[.z.]" */ |
2427 endc = 0; | |
2428 if (*regparse == '[') | |
2429 endc = get_coll_element(®parse); | |
2430 if (endc == 0) | |
2431 { | |
7 | 2432 #ifdef FEAT_MBYTE |
167 | 2433 if (has_mbyte) |
2434 endc = mb_ptr2char_adv(®parse); | |
2435 else | |
7 | 2436 #endif |
167 | 2437 endc = *regparse++; |
2438 } | |
24 | 2439 |
2440 /* Handle \o40, \x20 and \u20AC style sequences */ | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2441 if (endc == '\\' && !reg_cpo_lit && !reg_cpo_bsl) |
24 | 2442 endc = coll_get_char(); |
2443 | |
7 | 2444 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
|
2445 EMSG_RET_NULL(_(e_reverse_range)); |
7 | 2446 #ifdef FEAT_MBYTE |
2447 if (has_mbyte && ((*mb_char2len)(startc) > 1 | |
2448 || (*mb_char2len)(endc) > 1)) | |
2449 { | |
11480
99ce30ac4226
patch 8.0.0623: error for invalid regexp is not very informative
Christian Brabandt <cb@256bit.org>
parents:
11269
diff
changeset
|
2450 /* Limit to a range of 256 chars. */ |
7 | 2451 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
|
2452 EMSG_RET_NULL(_(e_large_class)); |
7 | 2453 while (++startc <= endc) |
2454 regmbc(startc); | |
2455 } | |
2456 else | |
2457 #endif | |
2458 { | |
2459 #ifdef EBCDIC | |
2460 int alpha_only = FALSE; | |
2461 | |
2462 /* for alphabetical range skip the gaps | |
2463 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */ | |
2464 if (isalpha(startc) && isalpha(endc)) | |
2465 alpha_only = TRUE; | |
2466 #endif | |
2467 while (++startc <= endc) | |
2468 #ifdef EBCDIC | |
2469 if (!alpha_only || isalpha(startc)) | |
2470 #endif | |
2471 regc(startc); | |
2472 } | |
2473 startc = -1; | |
2474 } | |
2475 } | |
2476 /* | |
2477 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim | |
2478 * accepts "\t", "\e", etc., but only when the 'l' flag in | |
2479 * 'cpoptions' is not included. | |
167 | 2480 * Posix doesn't recognize backslash at all. |
7 | 2481 */ |
2482 else if (*regparse == '\\' | |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2483 && !reg_cpo_bsl |
7 | 2484 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL |
4744
a62695305e03
updated for version 7.3.1119
Bram Moolenaar <bram@vim.org>
parents:
4732
diff
changeset
|
2485 || (!reg_cpo_lit |
7 | 2486 && vim_strchr(REGEXP_ABBR, |
2487 regparse[1]) != NULL))) | |
2488 { | |
2489 regparse++; | |
2490 if (*regparse == 'n') | |
2491 { | |
2492 /* '\n' in range: also match NL */ | |
2493 if (ret != JUST_CALC_SIZE) | |
2494 { | |
4084 | 2495 /* Using \n inside [^] does not change what |
2496 * matches. "[^\n]" is the same as ".". */ | |
2497 if (*ret == ANYOF) | |
2498 { | |
7 | 2499 *ret = ANYOF + ADD_NL; |
4084 | 2500 *flagp |= HASNL; |
2501 } | |
7 | 2502 /* else: must have had a \n already */ |
2503 } | |
2504 regparse++; | |
2505 startc = -1; | |
2506 } | |
24 | 2507 else if (*regparse == 'd' |
2508 || *regparse == 'o' | |
2509 || *regparse == 'x' | |
2510 || *regparse == 'u' | |
2511 || *regparse == 'U') | |
2512 { | |
2513 startc = coll_get_char(); | |
2514 if (startc == 0) | |
2515 regc(0x0a); | |
2516 else | |
2517 #ifdef FEAT_MBYTE | |
2518 regmbc(startc); | |
2519 #else | |
2520 regc(startc); | |
2521 #endif | |
2522 } | |
7 | 2523 else |
2524 { | |
2525 startc = backslash_trans(*regparse++); | |
2526 regc(startc); | |
2527 } | |
2528 } | |
2529 else if (*regparse == '[') | |
2530 { | |
2531 int c_class; | |
2532 int cu; | |
2533 | |
167 | 2534 c_class = get_char_class(®parse); |
7 | 2535 startc = -1; |
2536 /* Characters assumed to be 8 bits! */ | |
2537 switch (c_class) | |
2538 { | |
2539 case CLASS_NONE: | |
167 | 2540 c_class = get_equi_class(®parse); |
2541 if (c_class != 0) | |
2542 { | |
2543 /* produce equivalence class */ | |
2544 reg_equi_class(c_class); | |
2545 } | |
2546 else if ((c_class = | |
2547 get_coll_element(®parse)) != 0) | |
2548 { | |
2549 /* produce a collating element */ | |
2550 regmbc(c_class); | |
2551 } | |
2552 else | |
2553 { | |
2554 /* literal '[', allow [[-x] as a range */ | |
2555 startc = *regparse++; | |
2556 regc(startc); | |
2557 } | |
7 | 2558 break; |
2559 case CLASS_ALNUM: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2560 for (cu = 1; cu < 128; cu++) |
7 | 2561 if (isalnum(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2562 regmbc(cu); |
7 | 2563 break; |
2564 case CLASS_ALPHA: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2565 for (cu = 1; cu < 128; cu++) |
7 | 2566 if (isalpha(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2567 regmbc(cu); |
7 | 2568 break; |
2569 case CLASS_BLANK: | |
2570 regc(' '); | |
2571 regc('\t'); | |
2572 break; | |
2573 case CLASS_CNTRL: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2574 for (cu = 1; cu <= 127; cu++) |
7 | 2575 if (iscntrl(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2576 regmbc(cu); |
7 | 2577 break; |
2578 case CLASS_DIGIT: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2579 for (cu = 1; cu <= 127; cu++) |
7 | 2580 if (VIM_ISDIGIT(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2581 regmbc(cu); |
7 | 2582 break; |
2583 case CLASS_GRAPH: | |
11267
588de97b40e7
patch 8.0.0519: character classes are not well tested
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
2584 for (cu = 1; cu <= 127; cu++) |
7 | 2585 if (isgraph(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2586 regmbc(cu); |
7 | 2587 break; |
2588 case CLASS_LOWER: | |
2589 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
|
2590 if (MB_ISLOWER(cu) && cu != 170 |
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2591 && cu != 186) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2592 regmbc(cu); |
7 | 2593 break; |
2594 case CLASS_PRINT: | |
2595 for (cu = 1; cu <= 255; cu++) | |
2596 if (vim_isprintc(cu)) | |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2597 regmbc(cu); |
7 | 2598 break; |
2599 case CLASS_PUNCT: | |
9015
42b228c8701b
commit https://github.com/vim/vim/commit/e8aee7dcf9b12becff86e8ce1783a86801c5f9f6
Christian Brabandt <cb@256bit.org>
parents:
8995
diff
changeset
|
2600 for (cu = 1; cu < 128; cu++) |
7 | 2601 if (ispunct(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2602 regmbc(cu); |
7 | 2603 break; |
2604 case CLASS_SPACE: | |
2605 for (cu = 9; cu <= 13; cu++) | |
2606 regc(cu); | |
2607 regc(' '); | |
2608 break; | |
2609 case CLASS_UPPER: | |
2610 for (cu = 1; cu <= 255; cu++) | |
1347 | 2611 if (MB_ISUPPER(cu)) |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2612 regmbc(cu); |
7 | 2613 break; |
2614 case CLASS_XDIGIT: | |
2615 for (cu = 1; cu <= 255; cu++) | |
2616 if (vim_isxdigit(cu)) | |
8995
3cf6704d6efc
commit https://github.com/vim/vim/commit/af98a49dd0ef1661b4998f118151fddbf6e4df75
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
2617 regmbc(cu); |
7 | 2618 break; |
2619 case CLASS_TAB: | |
2620 regc('\t'); | |
2621 break; | |
2622 case CLASS_RETURN: | |
2623 regc('\r'); | |
2624 break; | |
2625 case CLASS_BACKSPACE: | |
2626 regc('\b'); | |
2627 break; | |
2628 case CLASS_ESCAPE: | |
2629 regc('\033'); | |
2630 break; | |
2631 } | |
2632 } | |
2633 else | |
2634 { | |
2635 #ifdef FEAT_MBYTE | |
2636 if (has_mbyte) | |
2637 { | |
2638 int len; | |
2639 | |
2640 /* produce a multibyte character, including any | |
2641 * following composing characters */ | |
2642 startc = mb_ptr2char(regparse); | |
474 | 2643 len = (*mb_ptr2len)(regparse); |
7 | 2644 if (enc_utf8 && utf_char2len(startc) != len) |
2645 startc = -1; /* composing chars */ | |
2646 while (--len >= 0) | |
2647 regc(*regparse++); | |
2648 } | |
2649 else | |
2650 #endif | |
2651 { | |
2652 startc = *regparse++; | |
2653 regc(startc); | |
2654 } | |
2655 } | |
2656 } | |
2657 regc(NUL); | |
2658 prevchr_len = 1; /* last char was the ']' */ | |
2659 if (*regparse != ']') | |
2660 EMSG_RET_NULL(_(e_toomsbra)); /* Cannot happen? */ | |
2661 skipchr(); /* let's be friends with the lexer again */ | |
2662 *flagp |= HASWIDTH | SIMPLE; | |
2663 break; | |
2664 } | |
481 | 2665 else if (reg_strict) |
4444 | 2666 EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF); |
7 | 2667 } |
2668 /* FALLTHROUGH */ | |
2669 | |
2670 default: | |
2671 { | |
2672 int len; | |
2673 | |
2674 #ifdef FEAT_MBYTE | |
2675 /* A multi-byte character is handled as a separate atom if it's | |
714 | 2676 * before a multi and when it's a composing char. */ |
2677 if (use_multibytecode(c)) | |
7 | 2678 { |
714 | 2679 do_multibyte: |
7 | 2680 ret = regnode(MULTIBYTECODE); |
2681 regmbc(c); | |
2682 *flagp |= HASWIDTH | SIMPLE; | |
2683 break; | |
2684 } | |
2685 #endif | |
2686 | |
2687 ret = regnode(EXACTLY); | |
2688 | |
2689 /* | |
2690 * Append characters as long as: | |
2691 * - there is no following multi, we then need the character in | |
2692 * front of it as a single character operand | |
2693 * - not running into a Magic character | |
2694 * - "one_exactly" is not set | |
2695 * But always emit at least one character. Might be a Multi, | |
2696 * e.g., a "[" without matching "]". | |
2697 */ | |
2698 for (len = 0; c != NUL && (len == 0 | |
2699 || (re_multi_type(peekchr()) == NOT_MULTI | |
2700 && !one_exactly | |
2701 && !is_Magic(c))); ++len) | |
2702 { | |
2703 c = no_Magic(c); | |
2704 #ifdef FEAT_MBYTE | |
2705 if (has_mbyte) | |
2706 { | |
2707 regmbc(c); | |
2708 if (enc_utf8) | |
2709 { | |
2710 int l; | |
2711 | |
714 | 2712 /* Need to get composing character too. */ |
7 | 2713 for (;;) |
2714 { | |
714 | 2715 l = utf_ptr2len(regparse); |
2716 if (!UTF_COMPOSINGLIKE(regparse, regparse + l)) | |
7 | 2717 break; |
714 | 2718 regmbc(utf_ptr2char(regparse)); |
2719 skipchr(); | |
7 | 2720 } |
2721 } | |
2722 } | |
2723 else | |
2724 #endif | |
2725 regc(c); | |
2726 c = getchr(); | |
2727 } | |
2728 ungetchr(); | |
2729 | |
2730 regc(NUL); | |
2731 *flagp |= HASWIDTH; | |
2732 if (len == 1) | |
2733 *flagp |= SIMPLE; | |
2734 } | |
2735 break; | |
2736 } | |
2737 | |
2738 return ret; | |
2739 } | |
2740 | |
714 | 2741 #ifdef FEAT_MBYTE |
2742 /* | |
2743 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for | |
2744 * character "c". | |
2745 */ | |
2746 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2747 use_multibytecode(int c) |
714 | 2748 { |
2749 return has_mbyte && (*mb_char2len)(c) > 1 | |
2750 && (re_multi_type(peekchr()) != NOT_MULTI | |
2751 || (enc_utf8 && utf_iscomposing(c))); | |
2752 } | |
2753 #endif | |
2754 | |
7 | 2755 /* |
4444 | 2756 * Emit a node. |
7 | 2757 * Return pointer to generated code. |
2758 */ | |
2759 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2760 regnode(int op) |
7 | 2761 { |
2762 char_u *ret; | |
2763 | |
2764 ret = regcode; | |
2765 if (ret == JUST_CALC_SIZE) | |
2766 regsize += 3; | |
2767 else | |
2768 { | |
2769 *regcode++ = op; | |
2770 *regcode++ = NUL; /* Null "next" pointer. */ | |
2771 *regcode++ = NUL; | |
2772 } | |
2773 return ret; | |
2774 } | |
2775 | |
2776 /* | |
2777 * Emit (if appropriate) a byte of code | |
2778 */ | |
2779 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2780 regc(int b) |
7 | 2781 { |
2782 if (regcode == JUST_CALC_SIZE) | |
2783 regsize++; | |
2784 else | |
2785 *regcode++ = b; | |
2786 } | |
2787 | |
2788 #ifdef FEAT_MBYTE | |
2789 /* | |
2790 * Emit (if appropriate) a multi-byte character of code | |
2791 */ | |
2792 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2793 regmbc(int c) |
7 | 2794 { |
2974 | 2795 if (!has_mbyte && c > 0xff) |
2796 return; | |
7 | 2797 if (regcode == JUST_CALC_SIZE) |
2798 regsize += (*mb_char2len)(c); | |
2799 else | |
2800 regcode += (*mb_char2bytes)(c, regcode); | |
2801 } | |
2802 #endif | |
2803 | |
2804 /* | |
4444 | 2805 * Insert an operator in front of already-emitted operand |
7 | 2806 * |
2807 * Means relocating the operand. | |
2808 */ | |
2809 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2810 reginsert(int op, char_u *opnd) |
7 | 2811 { |
2812 char_u *src; | |
2813 char_u *dst; | |
2814 char_u *place; | |
2815 | |
2816 if (regcode == JUST_CALC_SIZE) | |
2817 { | |
2818 regsize += 3; | |
2819 return; | |
2820 } | |
2821 src = regcode; | |
2822 regcode += 3; | |
2823 dst = regcode; | |
2824 while (src > opnd) | |
2825 *--dst = *--src; | |
2826 | |
2827 place = opnd; /* Op node, where operand used to be. */ | |
2828 *place++ = op; | |
2829 *place++ = NUL; | |
2830 *place = NUL; | |
2831 } | |
2832 | |
2833 /* | |
4444 | 2834 * 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
|
2835 * Add a number to the operator. |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2836 */ |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2837 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2838 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
|
2839 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2840 char_u *src; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2841 char_u *dst; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2842 char_u *place; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2843 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2844 if (regcode == JUST_CALC_SIZE) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2845 { |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2846 regsize += 7; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2847 return; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2848 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2849 src = regcode; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2850 regcode += 7; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2851 dst = regcode; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2852 while (src > opnd) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2853 *--dst = *--src; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2854 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2855 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
|
2856 *place++ = op; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2857 *place++ = NUL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2858 *place++ = NUL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2859 place = re_put_long(place, (long_u)val); |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2860 } |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2861 |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2862 /* |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
2863 * Insert an operator in front of already-emitted operand. |
7 | 2864 * The operator has the given limit values as operands. Also set next pointer. |
2865 * | |
2866 * Means relocating the operand. | |
2867 */ | |
2868 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2869 reginsert_limits( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2870 int op, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2871 long minval, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2872 long maxval, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2873 char_u *opnd) |
7 | 2874 { |
2875 char_u *src; | |
2876 char_u *dst; | |
2877 char_u *place; | |
2878 | |
2879 if (regcode == JUST_CALC_SIZE) | |
2880 { | |
2881 regsize += 11; | |
2882 return; | |
2883 } | |
2884 src = regcode; | |
2885 regcode += 11; | |
2886 dst = regcode; | |
2887 while (src > opnd) | |
2888 *--dst = *--src; | |
2889 | |
2890 place = opnd; /* Op node, where operand used to be. */ | |
2891 *place++ = op; | |
2892 *place++ = NUL; | |
2893 *place++ = NUL; | |
2894 place = re_put_long(place, (long_u)minval); | |
2895 place = re_put_long(place, (long_u)maxval); | |
2896 regtail(opnd, place); | |
2897 } | |
2898 | |
2899 /* | |
2900 * Write a long as four bytes at "p" and return pointer to the next char. | |
2901 */ | |
2902 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2903 re_put_long(char_u *p, long_u val) |
7 | 2904 { |
2905 *p++ = (char_u) ((val >> 24) & 0377); | |
2906 *p++ = (char_u) ((val >> 16) & 0377); | |
2907 *p++ = (char_u) ((val >> 8) & 0377); | |
2908 *p++ = (char_u) (val & 0377); | |
2909 return p; | |
2910 } | |
2911 | |
2912 /* | |
4444 | 2913 * Set the next-pointer at the end of a node chain. |
7 | 2914 */ |
2915 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2916 regtail(char_u *p, char_u *val) |
7 | 2917 { |
2918 char_u *scan; | |
2919 char_u *temp; | |
2920 int offset; | |
2921 | |
2922 if (p == JUST_CALC_SIZE) | |
2923 return; | |
2924 | |
2925 /* Find last node. */ | |
2926 scan = p; | |
2927 for (;;) | |
2928 { | |
2929 temp = regnext(scan); | |
2930 if (temp == NULL) | |
2931 break; | |
2932 scan = temp; | |
2933 } | |
2934 | |
233 | 2935 if (OP(scan) == BACK) |
7 | 2936 offset = (int)(scan - val); |
2937 else | |
2938 offset = (int)(val - scan); | |
2010 | 2939 /* When the offset uses more than 16 bits it can no longer fit in the two |
2974 | 2940 * bytes available. Use a global flag to avoid having to check return |
2010 | 2941 * values in too many places. */ |
2942 if (offset > 0xffff) | |
2943 reg_toolong = TRUE; | |
2944 else | |
2945 { | |
2946 *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377); | |
2947 *(scan + 2) = (char_u) (offset & 0377); | |
2948 } | |
7 | 2949 } |
2950 | |
2951 /* | |
4444 | 2952 * Like regtail, on item after a BRANCH; nop if none. |
7 | 2953 */ |
2954 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2955 regoptail(char_u *p, char_u *val) |
7 | 2956 { |
2957 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */ | |
2958 if (p == NULL || p == JUST_CALC_SIZE | |
2959 || (OP(p) != BRANCH | |
2960 && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9))) | |
2961 return; | |
2962 regtail(OPERAND(p), val); | |
2963 } | |
2964 | |
2965 /* | |
4444 | 2966 * Functions for getting characters from the regexp input. |
7 | 2967 */ |
4444 | 2968 /* |
2969 * Start parsing at "str". | |
2970 */ | |
7 | 2971 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2972 initchr(char_u *str) |
7 | 2973 { |
2974 regparse = str; | |
2975 prevchr_len = 0; | |
2976 curchr = prevprevchr = prevchr = nextchr = -1; | |
2977 at_start = TRUE; | |
2978 prev_at_start = FALSE; | |
2979 } | |
2980 | |
4444 | 2981 /* |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2982 * 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
|
2983 * starts in the same state again. |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2984 */ |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2985 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
2986 save_parse_state(parse_state_T *ps) |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2987 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2988 ps->regparse = regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2989 ps->prevchr_len = prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2990 ps->curchr = curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2991 ps->prevchr = prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2992 ps->prevprevchr = prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2993 ps->nextchr = nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2994 ps->at_start = at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2995 ps->prev_at_start = prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2996 ps->regnpar = regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2997 } |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2998 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
2999 /* |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3000 * Restore a previously saved parse state. |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3001 */ |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3002 static void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3003 restore_parse_state(parse_state_T *ps) |
4679
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3004 { |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3005 regparse = ps->regparse; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3006 prevchr_len = ps->prevchr_len; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3007 curchr = ps->curchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3008 prevchr = ps->prevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3009 prevprevchr = ps->prevprevchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3010 nextchr = ps->nextchr; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3011 at_start = ps->at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3012 prev_at_start = ps->prev_at_start; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3013 regnpar = ps->regnpar; |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3014 } |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3015 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3016 |
4d92b873acef
updated for version 7.3.1087
Bram Moolenaar <bram@vim.org>
parents:
4579
diff
changeset
|
3017 /* |
4444 | 3018 * Get the next character without advancing. |
3019 */ | |
7 | 3020 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3021 peekchr(void) |
7 | 3022 { |
167 | 3023 static int after_slash = FALSE; |
3024 | |
7 | 3025 if (curchr == -1) |
3026 { | |
3027 switch (curchr = regparse[0]) | |
3028 { | |
3029 case '.': | |
3030 case '[': | |
3031 case '~': | |
3032 /* magic when 'magic' is on */ | |
3033 if (reg_magic >= MAGIC_ON) | |
3034 curchr = Magic(curchr); | |
3035 break; | |
3036 case '(': | |
3037 case ')': | |
3038 case '{': | |
3039 case '%': | |
3040 case '+': | |
3041 case '=': | |
3042 case '?': | |
3043 case '@': | |
3044 case '!': | |
3045 case '&': | |
3046 case '|': | |
3047 case '<': | |
3048 case '>': | |
3049 case '#': /* future ext. */ | |
3050 case '"': /* future ext. */ | |
3051 case '\'': /* future ext. */ | |
3052 case ',': /* future ext. */ | |
3053 case '-': /* future ext. */ | |
3054 case ':': /* future ext. */ | |
3055 case ';': /* future ext. */ | |
3056 case '`': /* future ext. */ | |
3057 case '/': /* Can't be used in / command */ | |
3058 /* magic only after "\v" */ | |
3059 if (reg_magic == MAGIC_ALL) | |
3060 curchr = Magic(curchr); | |
3061 break; | |
3062 case '*': | |
167 | 3063 /* * is not magic as the very first character, eg "?*ptr", when |
3064 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But | |
3065 * "\(\*" is not magic, thus must be magic if "after_slash" */ | |
3066 if (reg_magic >= MAGIC_ON | |
3067 && !at_start | |
3068 && !(prev_at_start && prevchr == Magic('^')) | |
3069 && (after_slash | |
3070 || (prevchr != Magic('(') | |
3071 && prevchr != Magic('&') | |
3072 && prevchr != Magic('|')))) | |
7 | 3073 curchr = Magic('*'); |
3074 break; | |
3075 case '^': | |
3076 /* '^' is only magic as the very first character and if it's after | |
3077 * "\(", "\|", "\&' or "\n" */ | |
3078 if (reg_magic >= MAGIC_OFF | |
3079 && (at_start | |
3080 || reg_magic == MAGIC_ALL | |
3081 || prevchr == Magic('(') | |
3082 || prevchr == Magic('|') | |
3083 || prevchr == Magic('&') | |
3084 || prevchr == Magic('n') | |
3085 || (no_Magic(prevchr) == '(' | |
3086 && prevprevchr == Magic('%')))) | |
3087 { | |
3088 curchr = Magic('^'); | |
3089 at_start = TRUE; | |
3090 prev_at_start = FALSE; | |
3091 } | |
3092 break; | |
3093 case '$': | |
3094 /* '$' is only magic as the very last char and if it's in front of | |
3095 * either "\|", "\)", "\&", or "\n" */ | |
3096 if (reg_magic >= MAGIC_OFF) | |
3097 { | |
3098 char_u *p = regparse + 1; | |
6041 | 3099 int is_magic_all = (reg_magic == MAGIC_ALL); |
3100 | |
3101 /* ignore \c \C \m \M \v \V and \Z after '$' */ | |
7 | 3102 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C' |
6041 | 3103 || p[1] == 'm' || p[1] == 'M' |
3104 || p[1] == 'v' || p[1] == 'V' || p[1] == 'Z')) | |
3105 { | |
3106 if (p[1] == 'v') | |
3107 is_magic_all = TRUE; | |
3108 else if (p[1] == 'm' || p[1] == 'M' || p[1] == 'V') | |
3109 is_magic_all = FALSE; | |
7 | 3110 p += 2; |
6041 | 3111 } |
7 | 3112 if (p[0] == NUL |
3113 || (p[0] == '\\' | |
3114 && (p[1] == '|' || p[1] == '&' || p[1] == ')' | |
3115 || p[1] == 'n')) | |
6041 | 3116 || (is_magic_all |
3117 && (p[0] == '|' || p[0] == '&' || p[0] == ')')) | |
7 | 3118 || reg_magic == MAGIC_ALL) |
3119 curchr = Magic('$'); | |
3120 } | |
3121 break; | |
3122 case '\\': | |
3123 { | |
3124 int c = regparse[1]; | |
3125 | |
3126 if (c == NUL) | |
3127 curchr = '\\'; /* trailing '\' */ | |
3128 else if ( | |
3129 #ifdef EBCDIC | |
3130 vim_strchr(META, c) | |
3131 #else | |
3132 c <= '~' && META_flags[c] | |
3133 #endif | |
3134 ) | |
3135 { | |
3136 /* | |
3137 * META contains everything that may be magic sometimes, | |
3138 * except ^ and $ ("\^" and "\$" are only magic after | |
6830 | 3139 * "\V"). We now fetch the next character and toggle its |
7 | 3140 * magicness. Therefore, \ is so meta-magic that it is |
3141 * not in META. | |
3142 */ | |
3143 curchr = -1; | |
3144 prev_at_start = at_start; | |
3145 at_start = FALSE; /* be able to say "/\*ptr" */ | |
3146 ++regparse; | |
167 | 3147 ++after_slash; |
7 | 3148 peekchr(); |
3149 --regparse; | |
167 | 3150 --after_slash; |
7 | 3151 curchr = toggle_Magic(curchr); |
3152 } | |
3153 else if (vim_strchr(REGEXP_ABBR, c)) | |
3154 { | |
3155 /* | |
3156 * Handle abbreviations, like "\t" for TAB -- webb | |
3157 */ | |
3158 curchr = backslash_trans(c); | |
3159 } | |
3160 else if (reg_magic == MAGIC_NONE && (c == '$' || c == '^')) | |
3161 curchr = toggle_Magic(c); | |
3162 else | |
3163 { | |
3164 /* | |
3165 * Next character can never be (made) magic? | |
3166 * Then backslashing it won't do anything. | |
3167 */ | |
3168 #ifdef FEAT_MBYTE | |
3169 if (has_mbyte) | |
3170 curchr = (*mb_ptr2char)(regparse + 1); | |
3171 else | |
3172 #endif | |
3173 curchr = c; | |
3174 } | |
3175 break; | |
3176 } | |
3177 | |
3178 #ifdef FEAT_MBYTE | |
3179 default: | |
3180 if (has_mbyte) | |
3181 curchr = (*mb_ptr2char)(regparse); | |
3182 #endif | |
3183 } | |
3184 } | |
3185 | |
3186 return curchr; | |
3187 } | |
3188 | |
3189 /* | |
3190 * Eat one lexed character. Do this in a way that we can undo it. | |
3191 */ | |
3192 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3193 skipchr(void) |
7 | 3194 { |
3195 /* peekchr() eats a backslash, do the same here */ | |
3196 if (*regparse == '\\') | |
3197 prevchr_len = 1; | |
3198 else | |
3199 prevchr_len = 0; | |
3200 if (regparse[prevchr_len] != NUL) | |
3201 { | |
3202 #ifdef FEAT_MBYTE | |
714 | 3203 if (enc_utf8) |
1449 | 3204 /* exclude composing chars that mb_ptr2len does include */ |
3205 prevchr_len += utf_ptr2len(regparse + prevchr_len); | |
714 | 3206 else if (has_mbyte) |
474 | 3207 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len); |
7 | 3208 else |
3209 #endif | |
3210 ++prevchr_len; | |
3211 } | |
3212 regparse += prevchr_len; | |
3213 prev_at_start = at_start; | |
3214 at_start = FALSE; | |
3215 prevprevchr = prevchr; | |
3216 prevchr = curchr; | |
3217 curchr = nextchr; /* use previously unget char, or -1 */ | |
3218 nextchr = -1; | |
3219 } | |
3220 | |
3221 /* | |
3222 * Skip a character while keeping the value of prev_at_start for at_start. | |
3223 * prevchr and prevprevchr are also kept. | |
3224 */ | |
3225 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3226 skipchr_keepstart(void) |
7 | 3227 { |
3228 int as = prev_at_start; | |
3229 int pr = prevchr; | |
3230 int prpr = prevprevchr; | |
3231 | |
3232 skipchr(); | |
3233 at_start = as; | |
3234 prevchr = pr; | |
3235 prevprevchr = prpr; | |
3236 } | |
3237 | |
4444 | 3238 /* |
3239 * Get the next character from the pattern. We know about magic and such, so | |
3240 * therefore we need a lexical analyzer. | |
3241 */ | |
7 | 3242 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3243 getchr(void) |
7 | 3244 { |
3245 int chr = peekchr(); | |
3246 | |
3247 skipchr(); | |
3248 return chr; | |
3249 } | |
3250 | |
3251 /* | |
3252 * put character back. Works only once! | |
3253 */ | |
3254 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3255 ungetchr(void) |
7 | 3256 { |
3257 nextchr = curchr; | |
3258 curchr = prevchr; | |
3259 prevchr = prevprevchr; | |
3260 at_start = prev_at_start; | |
3261 prev_at_start = FALSE; | |
3262 | |
3263 /* Backup regparse, so that it's at the same position as before the | |
3264 * getchr(). */ | |
3265 regparse -= prevchr_len; | |
3266 } | |
3267 | |
3268 /* | |
29 | 3269 * Get and return the value of the hex string at the current position. |
3270 * Return -1 if there is no valid hex number. | |
3271 * The position is updated: | |
24 | 3272 * blahblah\%x20asdf |
856 | 3273 * before-^ ^-after |
24 | 3274 * The parameter controls the maximum number of input characters. This will be |
3275 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence. | |
3276 */ | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3277 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3278 gethexchrs(int maxinputlen) |
24 | 3279 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3280 long_u nr = 0; |
24 | 3281 int c; |
3282 int i; | |
3283 | |
3284 for (i = 0; i < maxinputlen; ++i) | |
3285 { | |
3286 c = regparse[0]; | |
3287 if (!vim_isxdigit(c)) | |
3288 break; | |
3289 nr <<= 4; | |
3290 nr |= hex2nr(c); | |
3291 ++regparse; | |
3292 } | |
3293 | |
3294 if (i == 0) | |
3295 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3296 return (long)nr; |
24 | 3297 } |
3298 | |
3299 /* | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
3300 * Get and return the value of the decimal string immediately after the |
24 | 3301 * current position. Return -1 for invalid. Consumes all digits. |
3302 */ | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3303 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3304 getdecchrs(void) |
24 | 3305 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3306 long_u nr = 0; |
24 | 3307 int c; |
3308 int i; | |
3309 | |
3310 for (i = 0; ; ++i) | |
3311 { | |
3312 c = regparse[0]; | |
3313 if (c < '0' || c > '9') | |
3314 break; | |
3315 nr *= 10; | |
3316 nr += c - '0'; | |
3317 ++regparse; | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
3318 curchr = -1; /* no longer valid */ |
24 | 3319 } |
3320 | |
3321 if (i == 0) | |
3322 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3323 return (long)nr; |
24 | 3324 } |
3325 | |
3326 /* | |
3327 * get and return the value of the octal string immediately after the current | |
3328 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle | |
3329 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't | |
3330 * treat 8 or 9 as recognised characters. Position is updated: | |
3331 * blahblah\%o210asdf | |
856 | 3332 * before-^ ^-after |
24 | 3333 */ |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3334 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3335 getoctchrs(void) |
24 | 3336 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3337 long_u nr = 0; |
24 | 3338 int c; |
3339 int i; | |
3340 | |
3341 for (i = 0; i < 3 && nr < 040; ++i) | |
3342 { | |
3343 c = regparse[0]; | |
3344 if (c < '0' || c > '7') | |
3345 break; | |
3346 nr <<= 3; | |
3347 nr |= hex2nr(c); | |
3348 ++regparse; | |
3349 } | |
3350 | |
3351 if (i == 0) | |
3352 return -1; | |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3353 return (long)nr; |
24 | 3354 } |
3355 | |
3356 /* | |
3357 * Get a number after a backslash that is inside []. | |
3358 * When nothing is recognized return a backslash. | |
3359 */ | |
3360 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3361 coll_get_char(void) |
24 | 3362 { |
12752
09c856605191
patch 8.0.1254: undefined left shift in gethexchrs()
Christian Brabandt <cb@256bit.org>
parents:
12674
diff
changeset
|
3363 long nr = -1; |
24 | 3364 |
3365 switch (*regparse++) | |
3366 { | |
3367 case 'd': nr = getdecchrs(); break; | |
3368 case 'o': nr = getoctchrs(); break; | |
3369 case 'x': nr = gethexchrs(2); break; | |
3370 case 'u': nr = gethexchrs(4); break; | |
3371 case 'U': nr = gethexchrs(8); break; | |
3372 } | |
3373 if (nr < 0) | |
3374 { | |
3375 /* If getting the number fails be backwards compatible: the character | |
3376 * is a backslash. */ | |
3377 --regparse; | |
3378 nr = '\\'; | |
3379 } | |
3380 return nr; | |
3381 } | |
3382 | |
3383 /* | |
7 | 3384 * read_limits - Read two integers to be taken as a minimum and maximum. |
3385 * If the first character is '-', then the range is reversed. | |
3386 * Should end with 'end'. If minval is missing, zero is default, if maxval is | |
3387 * missing, a very big number is the default. | |
3388 */ | |
3389 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3390 read_limits(long *minval, long *maxval) |
7 | 3391 { |
3392 int reverse = FALSE; | |
3393 char_u *first_char; | |
3394 long tmp; | |
3395 | |
3396 if (*regparse == '-') | |
3397 { | |
3398 /* Starts with '-', so reverse the range later */ | |
3399 regparse++; | |
3400 reverse = TRUE; | |
3401 } | |
3402 first_char = regparse; | |
3403 *minval = getdigits(®parse); | |
3404 if (*regparse == ',') /* There is a comma */ | |
3405 { | |
3406 if (vim_isdigit(*++regparse)) | |
3407 *maxval = getdigits(®parse); | |
3408 else | |
3409 *maxval = MAX_LIMIT; | |
3410 } | |
3411 else if (VIM_ISDIGIT(*first_char)) | |
3412 *maxval = *minval; /* It was \{n} or \{-n} */ | |
3413 else | |
3414 *maxval = MAX_LIMIT; /* It was \{} or \{-} */ | |
3415 if (*regparse == '\\') | |
3416 regparse++; /* Allow either \{...} or \{...\} */ | |
167 | 3417 if (*regparse != '}') |
7 | 3418 { |
3419 sprintf((char *)IObuff, _("E554: Syntax error in %s{...}"), | |
3420 reg_magic == MAGIC_ALL ? "" : "\\"); | |
3421 EMSG_RET_FAIL(IObuff); | |
3422 } | |
3423 | |
3424 /* | |
3425 * Reverse the range if there was a '-', or make sure it is in the right | |
3426 * order otherwise. | |
3427 */ | |
3428 if ((!reverse && *minval > *maxval) || (reverse && *minval < *maxval)) | |
3429 { | |
3430 tmp = *minval; | |
3431 *minval = *maxval; | |
3432 *maxval = tmp; | |
3433 } | |
3434 skipchr(); /* let's be friends with the lexer again */ | |
3435 return OK; | |
3436 } | |
3437 | |
3438 /* | |
3439 * vim_regexec and friends | |
3440 */ | |
3441 | |
3442 /* | |
3443 * Global work variables for vim_regexec(). | |
3444 */ | |
3445 | |
3446 /* The current match-position is remembered with these variables: */ | |
3447 static linenr_T reglnum; /* line number, relative to first line */ | |
3448 static char_u *regline; /* start of current line */ | |
3449 static char_u *reginput; /* current input, points into "regline" */ | |
3450 | |
3451 static int need_clear_subexpr; /* subexpressions still need to be | |
3452 * cleared */ | |
3453 #ifdef FEAT_SYN_HL | |
3454 static int need_clear_zsubexpr = FALSE; /* extmatch subexpressions | |
3455 * still need to be cleared */ | |
3456 #endif | |
3457 | |
3458 /* | |
3459 * Structure used to save the current input state, when it needs to be | |
3460 * restored after trying a match. Used by reg_save() and reg_restore(). | |
233 | 3461 * Also stores the length of "backpos". |
7 | 3462 */ |
3463 typedef struct | |
3464 { | |
3465 union | |
3466 { | |
3467 char_u *ptr; /* reginput pointer, for single-line regexp */ | |
3468 lpos_T pos; /* reginput pos, for multi-line regexp */ | |
3469 } rs_u; | |
233 | 3470 int rs_len; |
7 | 3471 } regsave_T; |
3472 | |
3473 /* struct to save start/end pointer/position in for \(\) */ | |
3474 typedef struct | |
3475 { | |
3476 union | |
3477 { | |
3478 char_u *ptr; | |
3479 lpos_T pos; | |
3480 } se_u; | |
3481 } save_se_T; | |
3482 | |
1579 | 3483 /* used for BEHIND and NOBEHIND matching */ |
3484 typedef struct regbehind_S | |
3485 { | |
3486 regsave_T save_after; | |
3487 regsave_T save_behind; | |
1602 | 3488 int save_need_clear_subexpr; |
1579 | 3489 save_se_T save_start[NSUBEXP]; |
3490 save_se_T save_end[NSUBEXP]; | |
3491 } regbehind_T; | |
3492 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3493 static char_u *reg_getline(linenr_T lnum); |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3494 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
|
3495 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
|
3496 static void cleanup_subexpr(void); |
7 | 3497 #ifdef FEAT_SYN_HL |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3498 static void cleanup_zsubexpr(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3499 #endif |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3500 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
|
3501 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
|
3502 static void reg_nextline(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3503 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
|
3504 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
|
3505 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
|
3506 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
|
3507 static void save_se_one(save_se_T *savep, char_u **pp); |
7 | 3508 |
3509 /* Save the sub-expressions before attempting a match. */ | |
3510 #define save_se(savep, posp, pp) \ | |
3511 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp)) | |
3512 | |
3513 /* After a failed match restore the sub-expressions. */ | |
3514 #define restore_se(savep, posp, pp) { \ | |
3515 if (REG_MULTI) \ | |
3516 *(posp) = (savep)->se_u.pos; \ | |
3517 else \ | |
3518 *(pp) = (savep)->se_u.ptr; } | |
3519 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3520 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
|
3521 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
|
3522 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
|
3523 static int regrepeat(char_u *p, long maxcount); |
7 | 3524 |
3525 #ifdef DEBUG | |
3526 int regnarrate = 0; | |
3527 #endif | |
3528 | |
3529 /* | |
3530 * Sometimes need to save a copy of a line. Since alloc()/free() is very | |
3531 * slow, we keep one allocated piece of memory and only re-allocate it when | |
4444 | 3532 * it's too small. It's freed in bt_regexec_both() when finished. |
7 | 3533 */ |
1468 | 3534 static char_u *reg_tofree = NULL; |
7 | 3535 static unsigned reg_tofreelen; |
3536 | |
3537 /* | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3538 * Structure used to store the execution state of the regex engine. |
1209 | 3539 * Which ones are set depends on whether a single-line or multi-line match is |
7 | 3540 * done: |
3541 * single-line multi-line | |
3542 * reg_match ®match_T NULL | |
3543 * reg_mmatch NULL ®mmatch_T | |
3544 * reg_startp reg_match->startp <invalid> | |
3545 * reg_endp reg_match->endp <invalid> | |
3546 * reg_startpos <invalid> reg_mmatch->startpos | |
3547 * reg_endpos <invalid> reg_mmatch->endpos | |
3548 * reg_win NULL window in which to search | |
4061 | 3549 * reg_buf curbuf buffer in which to search |
7 | 3550 * reg_firstlnum <invalid> first line in which to search |
3551 * reg_maxline 0 last line nr | |
3552 * reg_line_lbr FALSE or TRUE FALSE | |
3553 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3554 typedef struct { |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3555 regmatch_T *reg_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3556 regmmatch_T *reg_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3557 char_u **reg_startp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3558 char_u **reg_endp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3559 lpos_T *reg_startpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3560 lpos_T *reg_endpos; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3561 win_T *reg_win; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3562 buf_T *reg_buf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3563 linenr_T reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3564 linenr_T reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3565 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
|
3566 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3567 /* 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
|
3568 * 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
|
3569 * 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
|
3570 int reg_ic; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3571 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3572 #ifdef FEAT_MBYTE |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3573 /* Similar to rex.reg_ic, but only for 'combining' characters. Set with \Z |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3574 * 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
|
3575 int reg_icombine; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3576 #endif |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3577 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3578 /* 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
|
3579 * there is no maximum. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3580 colnr_T reg_maxcol; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3581 } regexec_T; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3582 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3583 static regexec_T rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3584 static int rex_in_use = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3585 |
7 | 3586 |
270 | 3587 /* Values for rs_state in regitem_T. */ |
3588 typedef enum regstate_E | |
3589 { | |
3590 RS_NOPEN = 0 /* NOPEN and NCLOSE */ | |
3591 , RS_MOPEN /* MOPEN + [0-9] */ | |
3592 , RS_MCLOSE /* MCLOSE + [0-9] */ | |
3593 #ifdef FEAT_SYN_HL | |
3594 , RS_ZOPEN /* ZOPEN + [0-9] */ | |
3595 , RS_ZCLOSE /* ZCLOSE + [0-9] */ | |
3596 #endif | |
3597 , RS_BRANCH /* BRANCH */ | |
3598 , RS_BRCPLX_MORE /* BRACE_COMPLEX and trying one more match */ | |
3599 , RS_BRCPLX_LONG /* BRACE_COMPLEX and trying longest match */ | |
3600 , RS_BRCPLX_SHORT /* BRACE_COMPLEX and trying shortest match */ | |
3601 , RS_NOMATCH /* NOMATCH */ | |
3602 , RS_BEHIND1 /* BEHIND / NOBEHIND matching rest */ | |
3603 , RS_BEHIND2 /* BEHIND / NOBEHIND matching behind part */ | |
3604 , RS_STAR_LONG /* STAR/PLUS/BRACE_SIMPLE longest match */ | |
3605 , RS_STAR_SHORT /* STAR/PLUS/BRACE_SIMPLE shortest match */ | |
3606 } regstate_T; | |
3607 | |
3608 /* | |
3609 * When there are alternatives a regstate_T is put on the regstack to remember | |
3610 * what we are doing. | |
3611 * Before it may be another type of item, depending on rs_state, to remember | |
3612 * more things. | |
3613 */ | |
3614 typedef struct regitem_S | |
3615 { | |
3616 regstate_T rs_state; /* what we are doing, one of RS_ above */ | |
3617 char_u *rs_scan; /* current node in program */ | |
3618 union | |
3619 { | |
3620 save_se_T sesave; | |
3621 regsave_T regsave; | |
3622 } rs_un; /* room for saving reginput */ | |
1579 | 3623 short rs_no; /* submatch nr or BEHIND/NOBEHIND */ |
270 | 3624 } regitem_T; |
3625 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
3626 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
|
3627 static void regstack_pop(char_u **scan); |
270 | 3628 |
3629 /* used for STAR, PLUS and BRACE_SIMPLE matching */ | |
3630 typedef struct regstar_S | |
3631 { | |
3632 int nextb; /* next byte */ | |
3633 int nextb_ic; /* next byte reverse case */ | |
3634 long count; | |
3635 long minval; | |
3636 long maxval; | |
3637 } regstar_T; | |
3638 | |
3639 /* used to store input position when a BACK was encountered, so that we now if | |
3640 * we made any progress since the last time. */ | |
3641 typedef struct backpos_S | |
3642 { | |
3643 char_u *bp_scan; /* "scan" where BACK was encountered */ | |
3644 regsave_T bp_pos; /* last input position */ | |
3645 } backpos_T; | |
3646 | |
3647 /* | |
1520 | 3648 * "regstack" and "backpos" are used by regmatch(). They are kept over calls |
3649 * to avoid invoking malloc() and free() often. | |
3650 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T | |
3651 * or regbehind_T. | |
3652 * "backpos_T" is a table with backpos_T for BACK | |
270 | 3653 */ |
1520 | 3654 static garray_T regstack = {0, 0, 0, 0, NULL}; |
3655 static garray_T backpos = {0, 0, 0, 0, NULL}; | |
3656 | |
3657 /* | |
3658 * Both for regstack and backpos tables we use the following strategy of | |
3659 * allocation (to reduce malloc/free calls): | |
3660 * - Initial size is fairly small. | |
3661 * - When needed, the tables are grown bigger (8 times at first, double after | |
3662 * that). | |
3663 * - After executing the match we free the memory only if the array has grown. | |
3664 * Thus the memory is kept allocated when it's at the initial size. | |
3665 * This makes it fast while not keeping a lot of memory allocated. | |
3666 * A three times speed increase was observed when using many simple patterns. | |
3667 */ | |
3668 #define REGSTACK_INITIAL 2048 | |
3669 #define BACKPOS_INITIAL 64 | |
3670 | |
3671 #if defined(EXITFREE) || defined(PROTO) | |
3672 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3673 free_regexp_stuff(void) |
1520 | 3674 { |
3675 ga_clear(®stack); | |
3676 ga_clear(&backpos); | |
3677 vim_free(reg_tofree); | |
3678 vim_free(reg_prev_sub); | |
3679 } | |
3680 #endif | |
270 | 3681 |
7 | 3682 /* |
3683 * Get pointer to the line "lnum", which is relative to "reg_firstlnum". | |
3684 */ | |
3685 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3686 reg_getline(linenr_T lnum) |
7 | 3687 { |
3688 /* when looking behind for a match/no-match lnum is negative. But we | |
3689 * 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
|
3690 if (rex.reg_firstlnum + lnum < 1) |
7 | 3691 return NULL; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3692 if (lnum > rex.reg_maxline) |
481 | 3693 /* Must have matched the "\n" in the last line. */ |
3694 return (char_u *)""; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3695 return ml_get_buf(rex.reg_buf, rex.reg_firstlnum + lnum, FALSE); |
7 | 3696 } |
3697 | |
3698 static regsave_T behind_pos; | |
3699 | |
3700 #ifdef FEAT_SYN_HL | |
3701 static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */ | |
3702 static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */ | |
3703 static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */ | |
3704 static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */ | |
3705 #endif | |
3706 | |
3707 /* 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
|
3708 #define REG_MULTI (rex.reg_match == NULL) |
4444 | 3709 |
7 | 3710 /* |
3711 * Match a regexp against a string. | |
3712 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3713 * Uses curbuf for line count and 'iskeyword'. | |
5838 | 3714 * if "line_lbr" is TRUE consider a "\n" in "line" to be a line break. |
7 | 3715 * |
6390 | 3716 * Returns 0 for failure, number of lines contained in the match otherwise. |
7 | 3717 */ |
4444 | 3718 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3719 bt_regexec_nl( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3720 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3721 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
|
3722 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
|
3723 int line_lbr) |
7 | 3724 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3725 rex.reg_match = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3726 rex.reg_mmatch = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3727 rex.reg_maxline = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3728 rex.reg_line_lbr = line_lbr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3729 rex.reg_buf = curbuf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3730 rex.reg_win = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3731 rex.reg_ic = rmp->rm_ic; |
7 | 3732 #ifdef FEAT_MBYTE |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3733 rex.reg_icombine = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3734 #endif |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3735 rex.reg_maxcol = 0; |
6390 | 3736 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3737 return bt_regexec_both(line, col, NULL, NULL); |
7 | 3738 } |
3739 | |
3740 /* | |
3741 * Match a regexp against multiple lines. | |
3742 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
3743 * Uses curbuf for line count and 'iskeyword'. | |
3744 * | |
3745 * Return zero if there is no match. Return number of lines contained in the | |
3746 * match otherwise. | |
3747 */ | |
4444 | 3748 static long |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3749 bt_regexec_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3750 regmmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3751 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
|
3752 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
|
3753 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
|
3754 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
|
3755 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
|
3756 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3757 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3758 rex.reg_match = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3759 rex.reg_mmatch = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3760 rex.reg_buf = buf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3761 rex.reg_win = win; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3762 rex.reg_firstlnum = lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3763 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
|
3764 rex.reg_line_lbr = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3765 rex.reg_ic = rmp->rmm_ic; |
7 | 3766 #ifdef FEAT_MBYTE |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3767 rex.reg_icombine = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3768 #endif |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3769 rex.reg_maxcol = rmp->rmm_maxcol; |
7 | 3770 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3771 return bt_regexec_both(NULL, col, tm, timed_out); |
7 | 3772 } |
3773 | |
3774 /* | |
3775 * Match a regexp against a string ("line" points to the string) or multiple | |
3776 * lines ("line" is NULL, use reg_getline()). | |
6390 | 3777 * Returns 0 for failure, number of lines contained in the match otherwise. |
7 | 3778 */ |
3779 static long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3780 bt_regexec_both( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3781 char_u *line, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
3782 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
|
3783 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
|
3784 int *timed_out) /* flag set on timeout or NULL */ |
7 | 3785 { |
6390 | 3786 bt_regprog_T *prog; |
3787 char_u *s; | |
3788 long retval = 0L; | |
7 | 3789 |
1520 | 3790 /* Create "regstack" and "backpos" if they are not allocated yet. |
3791 * We allocate *_INITIAL amount of bytes first and then set the grow size | |
3792 * to much bigger value to avoid many malloc calls in case of deep regular | |
3793 * expressions. */ | |
3794 if (regstack.ga_data == NULL) | |
3795 { | |
3796 /* Use an item size of 1 byte, since we push different things | |
3797 * onto the regstack. */ | |
3798 ga_init2(®stack, 1, REGSTACK_INITIAL); | |
7009 | 3799 (void)ga_grow(®stack, REGSTACK_INITIAL); |
1520 | 3800 regstack.ga_growsize = REGSTACK_INITIAL * 8; |
3801 } | |
3802 | |
3803 if (backpos.ga_data == NULL) | |
3804 { | |
3805 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL); | |
7009 | 3806 (void)ga_grow(&backpos, BACKPOS_INITIAL); |
1520 | 3807 backpos.ga_growsize = BACKPOS_INITIAL * 8; |
3808 } | |
270 | 3809 |
7 | 3810 if (REG_MULTI) |
3811 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3812 prog = (bt_regprog_T *)rex.reg_mmatch->regprog; |
7 | 3813 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
|
3814 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
|
3815 rex.reg_endpos = rex.reg_mmatch->endpos; |
7 | 3816 } |
3817 else | |
3818 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3819 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
|
3820 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
|
3821 rex.reg_endp = rex.reg_match->endp; |
7 | 3822 } |
3823 | |
3824 /* Be paranoid... */ | |
3825 if (prog == NULL || line == NULL) | |
3826 { | |
3827 EMSG(_(e_null)); | |
3828 goto theend; | |
3829 } | |
3830 | |
3831 /* Check validity of program. */ | |
3832 if (prog_magic_wrong()) | |
3833 goto theend; | |
3834 | |
410 | 3835 /* 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
|
3836 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
410 | 3837 goto theend; |
3838 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3839 /* If pattern contains "\c" or "\C": overrule value of rex.reg_ic */ |
7 | 3840 if (prog->regflags & RF_ICASE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3841 rex.reg_ic = TRUE; |
7 | 3842 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
|
3843 rex.reg_ic = FALSE; |
7 | 3844 |
3845 #ifdef FEAT_MBYTE | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3846 /* If pattern contains "\Z" overrule value of rex.reg_icombine */ |
7 | 3847 if (prog->regflags & RF_ICOMBINE) |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3848 rex.reg_icombine = TRUE; |
7 | 3849 #endif |
3850 | |
3851 /* If there is a "must appear" string, look for it. */ | |
3852 if (prog->regmust != NULL) | |
3853 { | |
3854 int c; | |
3855 | |
3856 #ifdef FEAT_MBYTE | |
3857 if (has_mbyte) | |
3858 c = (*mb_ptr2char)(prog->regmust); | |
3859 else | |
3860 #endif | |
3861 c = *prog->regmust; | |
3862 s = line + col; | |
170 | 3863 |
3864 /* | |
3865 * This is used very often, esp. for ":global". Use three versions of | |
3866 * the loop to avoid overhead of conditions. | |
3867 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3868 if (!rex.reg_ic |
170 | 3869 #ifdef FEAT_MBYTE |
3870 && !has_mbyte | |
3871 #endif | |
3872 ) | |
3873 while ((s = vim_strbyte(s, c)) != NULL) | |
3874 { | |
3875 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3876 break; /* Found it. */ | |
3877 ++s; | |
3878 } | |
3879 #ifdef FEAT_MBYTE | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3880 else if (!rex.reg_ic || (!enc_utf8 && mb_char2len(c) > 1)) |
170 | 3881 while ((s = vim_strchr(s, c)) != NULL) |
3882 { | |
3883 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3884 break; /* Found it. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3885 MB_PTR_ADV(s); |
170 | 3886 } |
3887 #endif | |
3888 else | |
3889 while ((s = cstrchr(s, c)) != NULL) | |
3890 { | |
3891 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) | |
3892 break; /* Found it. */ | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3893 MB_PTR_ADV(s); |
170 | 3894 } |
7 | 3895 if (s == NULL) /* Not present. */ |
3896 goto theend; | |
3897 } | |
3898 | |
3899 regline = line; | |
3900 reglnum = 0; | |
2578 | 3901 reg_toolong = FALSE; |
7 | 3902 |
3903 /* Simplest case: Anchored match need be tried only once. */ | |
3904 if (prog->reganch) | |
3905 { | |
3906 int c; | |
3907 | |
3908 #ifdef FEAT_MBYTE | |
3909 if (has_mbyte) | |
3910 c = (*mb_ptr2char)(regline + col); | |
3911 else | |
3912 #endif | |
3913 c = regline[col]; | |
3914 if (prog->regstart == NUL | |
3915 || prog->regstart == c | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3916 || (rex.reg_ic && (( |
7 | 3917 #ifdef FEAT_MBYTE |
3918 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c))) | |
3919 || (c < 255 && prog->regstart < 255 && | |
3920 #endif | |
1347 | 3921 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
|
3922 retval = regtry(prog, col, tm, timed_out); |
7 | 3923 else |
3924 retval = 0; | |
3925 } | |
3926 else | |
3927 { | |
1521 | 3928 #ifdef FEAT_RELTIME |
3929 int tm_count = 0; | |
3930 #endif | |
7 | 3931 /* Messy cases: unanchored match. */ |
180 | 3932 while (!got_int) |
7 | 3933 { |
3934 if (prog->regstart != NUL) | |
3935 { | |
170 | 3936 /* Skip until the char we know it must start with. |
3937 * Used often, do some work to avoid call overhead. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
3938 if (!rex.reg_ic |
170 | 3939 #ifdef FEAT_MBYTE |
3940 && !has_mbyte | |
3941 #endif | |
3942 ) | |
3943 s = vim_strbyte(regline + col, prog->regstart); | |
3944 else | |
3945 s = cstrchr(regline + col, prog->regstart); | |
7 | 3946 if (s == NULL) |
3947 { | |
3948 retval = 0; | |
3949 break; | |
3950 } | |
3951 col = (int)(s - regline); | |
3952 } | |
3953 | |
410 | 3954 /* 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
|
3955 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
410 | 3956 { |
3957 retval = 0; | |
3958 break; | |
3959 } | |
3960 | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
3961 retval = regtry(prog, col, tm, timed_out); |
7 | 3962 if (retval > 0) |
3963 break; | |
3964 | |
3965 /* if not currently on the first line, get it again */ | |
3966 if (reglnum != 0) | |
3967 { | |
481 | 3968 reglnum = 0; |
7 | 3969 regline = reg_getline((linenr_T)0); |
3970 } | |
3971 if (regline[col] == NUL) | |
3972 break; | |
3973 #ifdef FEAT_MBYTE | |
3974 if (has_mbyte) | |
474 | 3975 col += (*mb_ptr2len)(regline + col); |
7 | 3976 else |
3977 #endif | |
3978 ++col; | |
1521 | 3979 #ifdef FEAT_RELTIME |
3980 /* Check for timeout once in a twenty times to avoid overhead. */ | |
3981 if (tm != NULL && ++tm_count == 20) | |
3982 { | |
3983 tm_count = 0; | |
3984 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
|
3985 { |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
3986 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
|
3987 *timed_out = TRUE; |
1521 | 3988 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
|
3989 } |
1521 | 3990 } |
3991 #endif | |
7 | 3992 } |
3993 } | |
3994 | |
3995 theend: | |
1520 | 3996 /* Free "reg_tofree" when it's a bit big. |
3997 * Free regstack and backpos if they are bigger than their initial size. */ | |
3998 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
|
3999 VIM_CLEAR(reg_tofree); |
1520 | 4000 if (regstack.ga_maxlen > REGSTACK_INITIAL) |
4001 ga_clear(®stack); | |
4002 if (backpos.ga_maxlen > BACKPOS_INITIAL) | |
4003 ga_clear(&backpos); | |
270 | 4004 |
7 | 4005 return retval; |
4006 } | |
4007 | |
4008 #ifdef FEAT_SYN_HL | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4009 static reg_extmatch_T *make_extmatch(void); |
7 | 4010 |
4011 /* | |
4012 * Create a new extmatch and mark it as referenced once. | |
4013 */ | |
4014 static reg_extmatch_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4015 make_extmatch(void) |
7 | 4016 { |
4017 reg_extmatch_T *em; | |
4018 | |
4019 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T)); | |
4020 if (em != NULL) | |
4021 em->refcnt = 1; | |
4022 return em; | |
4023 } | |
4024 | |
4025 /* | |
4026 * Add a reference to an extmatch. | |
4027 */ | |
4028 reg_extmatch_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4029 ref_extmatch(reg_extmatch_T *em) |
7 | 4030 { |
4031 if (em != NULL) | |
4032 em->refcnt++; | |
4033 return em; | |
4034 } | |
4035 | |
4036 /* | |
4037 * Remove a reference to an extmatch. If there are no references left, free | |
4038 * the info. | |
4039 */ | |
4040 void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4041 unref_extmatch(reg_extmatch_T *em) |
7 | 4042 { |
4043 int i; | |
4044 | |
4045 if (em != NULL && --em->refcnt <= 0) | |
4046 { | |
4047 for (i = 0; i < NSUBEXP; ++i) | |
4048 vim_free(em->matches[i]); | |
4049 vim_free(em); | |
4050 } | |
4051 } | |
4052 #endif | |
4053 | |
4054 /* | |
4055 * regtry - try match of "prog" with at regline["col"]. | |
4056 * Returns 0 for failure, number of lines contained in the match otherwise. | |
4057 */ | |
4058 static long | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4059 regtry( |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4060 bt_regprog_T *prog, |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4061 colnr_T col, |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4062 proftime_T *tm, /* timeout limit or NULL */ |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4063 int *timed_out) /* flag set on timeout or NULL */ |
7 | 4064 { |
4065 reginput = regline + col; | |
4066 need_clear_subexpr = TRUE; | |
4067 #ifdef FEAT_SYN_HL | |
4068 /* Clear the external match subpointers if necessary. */ | |
4069 if (prog->reghasz == REX_SET) | |
4070 need_clear_zsubexpr = TRUE; | |
4071 #endif | |
4072 | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4073 if (regmatch(prog->program + 1, tm, timed_out) == 0) |
189 | 4074 return 0; |
4075 | |
4076 cleanup_subexpr(); | |
4077 if (REG_MULTI) | |
7 | 4078 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4079 if (rex.reg_startpos[0].lnum < 0) |
7 | 4080 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4081 rex.reg_startpos[0].lnum = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4082 rex.reg_startpos[0].col = col; |
189 | 4083 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4084 if (rex.reg_endpos[0].lnum < 0) |
189 | 4085 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4086 rex.reg_endpos[0].lnum = reglnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4087 rex.reg_endpos[0].col = (int)(reginput - regline); |
7 | 4088 } |
4089 else | |
189 | 4090 /* Use line number of "\ze". */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4091 reglnum = rex.reg_endpos[0].lnum; |
189 | 4092 } |
4093 else | |
4094 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4095 if (rex.reg_startp[0] == NULL) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4096 rex.reg_startp[0] = regline + col; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4097 if (rex.reg_endp[0] == NULL) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4098 rex.reg_endp[0] = reginput; |
189 | 4099 } |
7 | 4100 #ifdef FEAT_SYN_HL |
189 | 4101 /* Package any found \z(...\) matches for export. Default is none. */ |
4102 unref_extmatch(re_extmatch_out); | |
4103 re_extmatch_out = NULL; | |
4104 | |
4105 if (prog->reghasz == REX_SET) | |
4106 { | |
4107 int i; | |
4108 | |
4109 cleanup_zsubexpr(); | |
4110 re_extmatch_out = make_extmatch(); | |
4111 for (i = 0; i < NSUBEXP; i++) | |
7 | 4112 { |
189 | 4113 if (REG_MULTI) |
7 | 4114 { |
189 | 4115 /* Only accept single line matches. */ |
4116 if (reg_startzpos[i].lnum >= 0 | |
5820 | 4117 && reg_endzpos[i].lnum == reg_startzpos[i].lnum |
4118 && reg_endzpos[i].col >= reg_startzpos[i].col) | |
189 | 4119 re_extmatch_out->matches[i] = |
4120 vim_strnsave(reg_getline(reg_startzpos[i].lnum) | |
7 | 4121 + reg_startzpos[i].col, |
189 | 4122 reg_endzpos[i].col - reg_startzpos[i].col); |
4123 } | |
4124 else | |
4125 { | |
4126 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL) | |
4127 re_extmatch_out->matches[i] = | |
7 | 4128 vim_strnsave(reg_startzp[i], |
189 | 4129 (int)(reg_endzp[i] - reg_startzp[i])); |
7 | 4130 } |
4131 } | |
189 | 4132 } |
7 | 4133 #endif |
189 | 4134 return 1 + reglnum; |
7 | 4135 } |
4136 | |
4137 #ifdef FEAT_MBYTE | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4138 static int reg_prev_class(void); |
7 | 4139 |
4140 /* | |
4141 * Get class of previous character. | |
4142 */ | |
4143 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4144 reg_prev_class(void) |
7 | 4145 { |
4146 if (reginput > regline) | |
4069 | 4147 return mb_get_class_buf(reginput - 1 |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4148 - (*mb_head_off)(regline, reginput - 1), rex.reg_buf); |
7 | 4149 return -1; |
4150 } | |
5735 | 4151 #endif |
4152 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
4153 static int reg_match_visual(void); |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4154 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4155 /* |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4156 * Return TRUE if the current reginput position matches the Visual area. |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4157 */ |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4158 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4159 reg_match_visual(void) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4160 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4161 pos_T top, bot; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4162 linenr_T lnum; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4163 colnr_T col; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4164 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
|
4165 int mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4166 colnr_T start, end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4167 colnr_T start2, end2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4168 colnr_T cols; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4169 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4170 /* 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
|
4171 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
|
4172 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4173 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4174 if (VIsual_active) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4175 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4176 if (LT_POS(VIsual, wp->w_cursor)) |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4177 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4178 top = VIsual; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4179 bot = wp->w_cursor; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4180 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4181 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4182 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4183 top = wp->w_cursor; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4184 bot = VIsual; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4185 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4186 mode = VIsual_mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4187 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4188 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4189 { |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
10359
diff
changeset
|
4190 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
|
4191 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4192 top = curbuf->b_visual.vi_start; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4193 bot = curbuf->b_visual.vi_end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4194 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4195 else |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4196 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4197 top = curbuf->b_visual.vi_end; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4198 bot = curbuf->b_visual.vi_start; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4199 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4200 mode = curbuf->b_visual.vi_mode; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4201 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4202 lnum = reglnum + rex.reg_firstlnum; |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4203 if (lnum < top.lnum || lnum > bot.lnum) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4204 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4205 |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4206 if (mode == 'v') |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4207 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4208 col = (colnr_T)(reginput - regline); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4209 if ((lnum == top.lnum && col < top.col) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4210 || (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
|
4211 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4212 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4213 else if (mode == Ctrl_V) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4214 { |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4215 getvvcol(wp, &top, &start, NULL, &end); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4216 getvvcol(wp, &bot, &start2, NULL, &end2); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4217 if (start2 < start) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4218 start = start2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4219 if (end2 > end) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4220 end = end2; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4221 if (top.col == MAXCOL || bot.col == MAXCOL) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4222 end = MAXCOL; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4223 cols = win_linetabsize(wp, regline, (colnr_T)(reginput - regline)); |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4224 if (cols < start || cols > end - (*p_sel == 'e')) |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4225 return FALSE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4226 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4227 return TRUE; |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4228 } |
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4229 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4230 #define ADVANCE_REGINPUT() MB_PTR_ADV(reginput) |
7 | 4231 |
4232 /* | |
4233 * The arguments from BRACE_LIMITS are stored here. They are actually local | |
4234 * to regmatch(), but they are here to reduce the amount of stack space used | |
4235 * (it can be called recursively many times). | |
4236 */ | |
4237 static long bl_minval; | |
4238 static long bl_maxval; | |
4239 | |
4240 /* | |
4241 * regmatch - main matching routine | |
4242 * | |
180 | 4243 * Conceptually the strategy is simple: Check to see whether the current node |
4244 * matches, push an item onto the regstack and loop to see whether the rest | |
4245 * matches, and then act accordingly. In practice we make some effort to | |
4246 * avoid using the regstack, in particular by going through "ordinary" nodes | |
4247 * (that don't need to know whether the rest of the match failed) by a nested | |
4248 * loop. | |
7 | 4249 * |
4250 * Returns TRUE when there is a match. Leaves reginput and reglnum just after | |
4251 * the last matched character. | |
4252 * Returns FALSE when there is no match. Leaves reginput and reglnum in an | |
4253 * undefined state! | |
4254 */ | |
4255 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
4256 regmatch( |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4257 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
|
4258 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
|
4259 int *timed_out UNUSED) /* flag set on timeout or NULL */ |
7 | 4260 { |
180 | 4261 char_u *next; /* Next node. */ |
4262 int op; | |
4263 int c; | |
4264 regitem_T *rp; | |
4265 int no; | |
4266 int status; /* one of the RA_ values: */ | |
4267 #define RA_FAIL 1 /* something failed, abort */ | |
4268 #define RA_CONT 2 /* continue in inner loop */ | |
4269 #define RA_BREAK 3 /* break inner loop */ | |
4270 #define RA_MATCH 4 /* successful match */ | |
4271 #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
|
4272 #ifdef FEAT_RELTIME |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4273 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
|
4274 #endif |
270 | 4275 |
1520 | 4276 /* Make "regstack" and "backpos" empty. They are allocated and freed in |
4444 | 4277 * bt_regexec_both() to reduce malloc()/free() calls. */ |
270 | 4278 regstack.ga_len = 0; |
4279 backpos.ga_len = 0; | |
233 | 4280 |
180 | 4281 /* |
233 | 4282 * Repeat until "regstack" is empty. |
180 | 4283 */ |
4284 for (;;) | |
4285 { | |
5310 | 4286 /* Some patterns may take a long time to match, e.g., "\([a-z]\+\)\+Q". |
4287 * Allow interrupting them with CTRL-C. */ | |
7 | 4288 fast_breakcheck(); |
4289 | |
4290 #ifdef DEBUG | |
4291 if (scan != NULL && regnarrate) | |
4292 { | |
4444 | 4293 mch_errmsg((char *)regprop(scan)); |
7 | 4294 mch_errmsg("(\n"); |
4295 } | |
4296 #endif | |
180 | 4297 |
4298 /* | |
233 | 4299 * Repeat for items that can be matched sequentially, without using the |
180 | 4300 * regstack. |
4301 */ | |
4302 for (;;) | |
7 | 4303 { |
180 | 4304 if (got_int || scan == NULL) |
4305 { | |
4306 status = RA_FAIL; | |
4307 break; | |
4308 } | |
11527
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4309 #ifdef FEAT_RELTIME |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4310 /* 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
|
4311 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
|
4312 { |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4313 tm_count = 0; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4314 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
|
4315 { |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4316 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
|
4317 *timed_out = TRUE; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4318 status = RA_FAIL; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4319 break; |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4320 } |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4321 } |
ac20f71e8aa4
patch 8.0.0646: the hlsearch test fails on fast systems
Christian Brabandt <cb@256bit.org>
parents:
11525
diff
changeset
|
4322 #endif |
180 | 4323 status = RA_CONT; |
4324 | |
7 | 4325 #ifdef DEBUG |
4326 if (regnarrate) | |
4327 { | |
4444 | 4328 mch_errmsg((char *)regprop(scan)); |
7 | 4329 mch_errmsg("...\n"); |
4330 # ifdef FEAT_SYN_HL | |
4331 if (re_extmatch_in != NULL) | |
4332 { | |
4333 int i; | |
4334 | |
4335 mch_errmsg(_("External submatches:\n")); | |
4336 for (i = 0; i < NSUBEXP; i++) | |
4337 { | |
4338 mch_errmsg(" \""); | |
4339 if (re_extmatch_in->matches[i] != NULL) | |
4444 | 4340 mch_errmsg((char *)re_extmatch_in->matches[i]); |
7 | 4341 mch_errmsg("\"\n"); |
4342 } | |
4343 } | |
4344 # endif | |
4345 } | |
4346 #endif | |
4347 next = regnext(scan); | |
4348 | |
4349 op = OP(scan); | |
4350 /* 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
|
4351 if (!rex.reg_line_lbr && WITH_NL(op) && REG_MULTI |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4352 && *reginput == NUL && reglnum <= rex.reg_maxline) |
7 | 4353 { |
4354 reg_nextline(); | |
4355 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4356 else if (rex.reg_line_lbr && WITH_NL(op) && *reginput == '\n') |
7 | 4357 { |
4358 ADVANCE_REGINPUT(); | |
4359 } | |
4360 else | |
4361 { | |
4362 if (WITH_NL(op)) | |
180 | 4363 op -= ADD_NL; |
7 | 4364 #ifdef FEAT_MBYTE |
4365 if (has_mbyte) | |
4366 c = (*mb_ptr2char)(reginput); | |
4367 else | |
4368 #endif | |
4369 c = *reginput; | |
4370 switch (op) | |
4371 { | |
4372 case BOL: | |
4373 if (reginput != regline) | |
180 | 4374 status = RA_NOMATCH; |
7 | 4375 break; |
4376 | |
4377 case EOL: | |
4378 if (c != NUL) | |
180 | 4379 status = RA_NOMATCH; |
7 | 4380 break; |
4381 | |
4382 case RE_BOF: | |
1458 | 4383 /* We're not at the beginning of the file when below the first |
4384 * line where we started, not at the start of the line or we | |
4385 * didn't start at the first line of the buffer. */ | |
7 | 4386 if (reglnum != 0 || reginput != regline |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4387 || (REG_MULTI && rex.reg_firstlnum > 1)) |
180 | 4388 status = RA_NOMATCH; |
7 | 4389 break; |
4390 | |
4391 case RE_EOF: | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4392 if (reglnum != rex.reg_maxline || c != NUL) |
180 | 4393 status = RA_NOMATCH; |
7 | 4394 break; |
4395 | |
4396 case CURSOR: | |
4397 /* 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
|
4398 * 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
|
4399 if (rex.reg_win == NULL |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4400 || (reglnum + rex.reg_firstlnum |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4401 != rex.reg_win->w_cursor.lnum) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4402 || ((colnr_T)(reginput - regline) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4403 != rex.reg_win->w_cursor.col)) |
180 | 4404 status = RA_NOMATCH; |
7 | 4405 break; |
4406 | |
639 | 4407 case RE_MARK: |
4732
0798b096bab3
updated for version 7.3.1113
Bram Moolenaar <bram@vim.org>
parents:
4730
diff
changeset
|
4408 /* Compare the mark position to the match position. */ |
639 | 4409 { |
4410 int mark = OPERAND(scan)[0]; | |
4411 int cmp = OPERAND(scan)[1]; | |
4412 pos_T *pos; | |
4413 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4414 pos = getmark_buf(rex.reg_buf, mark, FALSE); |
1148 | 4415 if (pos == NULL /* mark doesn't exist */ |
4732
0798b096bab3
updated for version 7.3.1113
Bram Moolenaar <bram@vim.org>
parents:
4730
diff
changeset
|
4416 || pos->lnum <= 0 /* mark isn't set in reg_buf */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4417 || (pos->lnum == reglnum + rex.reg_firstlnum |
639 | 4418 ? (pos->col == (colnr_T)(reginput - regline) |
4419 ? (cmp == '<' || cmp == '>') | |
4420 : (pos->col < (colnr_T)(reginput - regline) | |
4421 ? cmp != '>' | |
4422 : cmp != '<')) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4423 : (pos->lnum < reglnum + rex.reg_firstlnum |
639 | 4424 ? cmp != '>' |
4425 : cmp != '<'))) | |
4426 status = RA_NOMATCH; | |
4427 } | |
4428 break; | |
4429 | |
4430 case RE_VISUAL: | |
4730
749e2b2755d5
updated for version 7.3.1112
Bram Moolenaar <bram@vim.org>
parents:
4720
diff
changeset
|
4431 if (!reg_match_visual()) |
639 | 4432 status = RA_NOMATCH; |
4433 break; | |
4434 | |
7 | 4435 case RE_LNUM: |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4436 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + rex.reg_firstlnum), |
7 | 4437 scan)) |
180 | 4438 status = RA_NOMATCH; |
7 | 4439 break; |
4440 | |
4441 case RE_COL: | |
4442 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan)) | |
180 | 4443 status = RA_NOMATCH; |
7 | 4444 break; |
4445 | |
4446 case RE_VCOL: | |
4447 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
|
4448 rex.reg_win == NULL ? curwin : rex.reg_win, |
7 | 4449 regline, (colnr_T)(reginput - regline)) + 1, scan)) |
180 | 4450 status = RA_NOMATCH; |
7 | 4451 break; |
4452 | |
4453 case BOW: /* \<word; reginput points to w */ | |
4454 if (c == NUL) /* Can't match at end of line */ | |
180 | 4455 status = RA_NOMATCH; |
7 | 4456 #ifdef FEAT_MBYTE |
180 | 4457 else if (has_mbyte) |
7 | 4458 { |
4459 int this_class; | |
4460 | |
4461 /* Get class of current and previous char (if it exists). */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4462 this_class = mb_get_class_buf(reginput, rex.reg_buf); |
7 | 4463 if (this_class <= 1) |
180 | 4464 status = RA_NOMATCH; /* not on a word at all */ |
4465 else if (reg_prev_class() == this_class) | |
4466 status = RA_NOMATCH; /* previous char is in same word */ | |
7 | 4467 } |
4468 #endif | |
4469 else | |
4470 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4471 if (!vim_iswordc_buf(c, rex.reg_buf) || (reginput > regline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4472 && vim_iswordc_buf(reginput[-1], rex.reg_buf))) |
180 | 4473 status = RA_NOMATCH; |
7 | 4474 } |
4475 break; | |
4476 | |
4477 case EOW: /* word\>; reginput points after d */ | |
4478 if (reginput == regline) /* Can't match at start of line */ | |
180 | 4479 status = RA_NOMATCH; |
7 | 4480 #ifdef FEAT_MBYTE |
180 | 4481 else if (has_mbyte) |
7 | 4482 { |
4483 int this_class, prev_class; | |
4484 | |
4485 /* Get class of current and previous char (if it exists). */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4486 this_class = mb_get_class_buf(reginput, rex.reg_buf); |
7 | 4487 prev_class = reg_prev_class(); |
180 | 4488 if (this_class == prev_class |
4489 || prev_class == 0 || prev_class == 1) | |
4490 status = RA_NOMATCH; | |
7 | 4491 } |
180 | 4492 #endif |
7 | 4493 else |
4494 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4495 if (!vim_iswordc_buf(reginput[-1], rex.reg_buf) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4496 || (reginput[0] != NUL |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4497 && vim_iswordc_buf(c, rex.reg_buf))) |
180 | 4498 status = RA_NOMATCH; |
7 | 4499 } |
4500 break; /* Matched with EOW */ | |
4501 | |
4502 case ANY: | |
4084 | 4503 /* ANY does not match new lines. */ |
7 | 4504 if (c == NUL) |
180 | 4505 status = RA_NOMATCH; |
4506 else | |
4507 ADVANCE_REGINPUT(); | |
7 | 4508 break; |
4509 | |
4510 case IDENT: | |
4511 if (!vim_isIDc(c)) | |
180 | 4512 status = RA_NOMATCH; |
4513 else | |
4514 ADVANCE_REGINPUT(); | |
7 | 4515 break; |
4516 | |
4517 case SIDENT: | |
4518 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c)) | |
180 | 4519 status = RA_NOMATCH; |
4520 else | |
4521 ADVANCE_REGINPUT(); | |
7 | 4522 break; |
4523 | |
4524 case KWORD: | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4525 if (!vim_iswordp_buf(reginput, rex.reg_buf)) |
180 | 4526 status = RA_NOMATCH; |
4527 else | |
4528 ADVANCE_REGINPUT(); | |
7 | 4529 break; |
4530 | |
4531 case SKWORD: | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4532 if (VIM_ISDIGIT(*reginput) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4533 || !vim_iswordp_buf(reginput, rex.reg_buf)) |
180 | 4534 status = RA_NOMATCH; |
4535 else | |
4536 ADVANCE_REGINPUT(); | |
7 | 4537 break; |
4538 | |
4539 case FNAME: | |
4540 if (!vim_isfilec(c)) | |
180 | 4541 status = RA_NOMATCH; |
4542 else | |
4543 ADVANCE_REGINPUT(); | |
7 | 4544 break; |
4545 | |
4546 case SFNAME: | |
4547 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c)) | |
180 | 4548 status = RA_NOMATCH; |
4549 else | |
4550 ADVANCE_REGINPUT(); | |
7 | 4551 break; |
4552 | |
4553 case PRINT: | |
5221
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
4554 if (!vim_isprintc(PTR2CHAR(reginput))) |
180 | 4555 status = RA_NOMATCH; |
4556 else | |
4557 ADVANCE_REGINPUT(); | |
7 | 4558 break; |
4559 | |
4560 case SPRINT: | |
5221
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
4561 if (VIM_ISDIGIT(*reginput) || !vim_isprintc(PTR2CHAR(reginput))) |
180 | 4562 status = RA_NOMATCH; |
4563 else | |
4564 ADVANCE_REGINPUT(); | |
7 | 4565 break; |
4566 | |
4567 case WHITE: | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4568 if (!VIM_ISWHITE(c)) |
180 | 4569 status = RA_NOMATCH; |
4570 else | |
4571 ADVANCE_REGINPUT(); | |
7 | 4572 break; |
4573 | |
4574 case NWHITE: | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
4575 if (c == NUL || VIM_ISWHITE(c)) |
180 | 4576 status = RA_NOMATCH; |
4577 else | |
4578 ADVANCE_REGINPUT(); | |
7 | 4579 break; |
4580 | |
4581 case DIGIT: | |
4582 if (!ri_digit(c)) | |
180 | 4583 status = RA_NOMATCH; |
4584 else | |
4585 ADVANCE_REGINPUT(); | |
7 | 4586 break; |
4587 | |
4588 case NDIGIT: | |
4589 if (c == NUL || ri_digit(c)) | |
180 | 4590 status = RA_NOMATCH; |
4591 else | |
4592 ADVANCE_REGINPUT(); | |
7 | 4593 break; |
4594 | |
4595 case HEX: | |
4596 if (!ri_hex(c)) | |
180 | 4597 status = RA_NOMATCH; |
4598 else | |
4599 ADVANCE_REGINPUT(); | |
7 | 4600 break; |
4601 | |
4602 case NHEX: | |
4603 if (c == NUL || ri_hex(c)) | |
180 | 4604 status = RA_NOMATCH; |
4605 else | |
4606 ADVANCE_REGINPUT(); | |
7 | 4607 break; |
4608 | |
4609 case OCTAL: | |
4610 if (!ri_octal(c)) | |
180 | 4611 status = RA_NOMATCH; |
4612 else | |
4613 ADVANCE_REGINPUT(); | |
7 | 4614 break; |
4615 | |
4616 case NOCTAL: | |
4617 if (c == NUL || ri_octal(c)) | |
180 | 4618 status = RA_NOMATCH; |
4619 else | |
4620 ADVANCE_REGINPUT(); | |
7 | 4621 break; |
4622 | |
4623 case WORD: | |
4624 if (!ri_word(c)) | |
180 | 4625 status = RA_NOMATCH; |
4626 else | |
4627 ADVANCE_REGINPUT(); | |
7 | 4628 break; |
4629 | |
4630 case NWORD: | |
4631 if (c == NUL || ri_word(c)) | |
180 | 4632 status = RA_NOMATCH; |
4633 else | |
4634 ADVANCE_REGINPUT(); | |
7 | 4635 break; |
4636 | |
4637 case HEAD: | |
4638 if (!ri_head(c)) | |
180 | 4639 status = RA_NOMATCH; |
4640 else | |
4641 ADVANCE_REGINPUT(); | |
7 | 4642 break; |
4643 | |
4644 case NHEAD: | |
4645 if (c == NUL || ri_head(c)) | |
180 | 4646 status = RA_NOMATCH; |
4647 else | |
4648 ADVANCE_REGINPUT(); | |
7 | 4649 break; |
4650 | |
4651 case ALPHA: | |
4652 if (!ri_alpha(c)) | |
180 | 4653 status = RA_NOMATCH; |
4654 else | |
4655 ADVANCE_REGINPUT(); | |
7 | 4656 break; |
4657 | |
4658 case NALPHA: | |
4659 if (c == NUL || ri_alpha(c)) | |
180 | 4660 status = RA_NOMATCH; |
4661 else | |
4662 ADVANCE_REGINPUT(); | |
7 | 4663 break; |
4664 | |
4665 case LOWER: | |
4666 if (!ri_lower(c)) | |
180 | 4667 status = RA_NOMATCH; |
4668 else | |
4669 ADVANCE_REGINPUT(); | |
7 | 4670 break; |
4671 | |
4672 case NLOWER: | |
4673 if (c == NUL || ri_lower(c)) | |
180 | 4674 status = RA_NOMATCH; |
4675 else | |
4676 ADVANCE_REGINPUT(); | |
7 | 4677 break; |
4678 | |
4679 case UPPER: | |
4680 if (!ri_upper(c)) | |
180 | 4681 status = RA_NOMATCH; |
4682 else | |
4683 ADVANCE_REGINPUT(); | |
7 | 4684 break; |
4685 | |
4686 case NUPPER: | |
4687 if (c == NUL || ri_upper(c)) | |
180 | 4688 status = RA_NOMATCH; |
4689 else | |
4690 ADVANCE_REGINPUT(); | |
7 | 4691 break; |
4692 | |
4693 case EXACTLY: | |
4694 { | |
4695 int len; | |
4696 char_u *opnd; | |
4697 | |
4698 opnd = OPERAND(scan); | |
4699 /* Inline the first byte, for speed. */ | |
4700 if (*opnd != *reginput | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4701 && (!rex.reg_ic || ( |
7 | 4702 #ifdef FEAT_MBYTE |
4703 !enc_utf8 && | |
4704 #endif | |
1347 | 4705 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput)))) |
180 | 4706 status = RA_NOMATCH; |
4707 else if (*opnd == NUL) | |
7 | 4708 { |
4709 /* match empty string always works; happens when "~" is | |
4710 * empty. */ | |
4711 } | |
5899 | 4712 else |
4713 { | |
4714 if (opnd[1] == NUL | |
7 | 4715 #ifdef FEAT_MBYTE |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4716 && !(enc_utf8 && rex.reg_ic) |
7 | 4717 #endif |
4718 ) | |
5899 | 4719 { |
4720 len = 1; /* matched a single byte above */ | |
4721 } | |
4722 else | |
4723 { | |
4724 /* Need to match first byte again for multi-byte. */ | |
4725 len = (int)STRLEN(opnd); | |
4726 if (cstrncmp(opnd, reginput, &len) != 0) | |
4727 status = RA_NOMATCH; | |
4728 } | |
7 | 4729 #ifdef FEAT_MBYTE |
5901 | 4730 /* Check for following composing character, unless %C |
4731 * follows (skips over all composing chars). */ | |
5899 | 4732 if (status != RA_NOMATCH |
4733 && enc_utf8 | |
4734 && UTF_COMPOSINGLIKE(reginput, reginput + len) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4735 && !rex.reg_icombine |
5901 | 4736 && OP(next) != RE_COMPOSING) |
7 | 4737 { |
4738 /* raaron: This code makes a composing character get | |
4739 * ignored, which is the correct behavior (sometimes) | |
4740 * for voweled Hebrew texts. */ | |
5899 | 4741 status = RA_NOMATCH; |
7 | 4742 } |
180 | 4743 #endif |
5899 | 4744 if (status != RA_NOMATCH) |
180 | 4745 reginput += len; |
7 | 4746 } |
4747 } | |
4748 break; | |
4749 | |
4750 case ANYOF: | |
4751 case ANYBUT: | |
4752 if (c == NUL) | |
180 | 4753 status = RA_NOMATCH; |
4754 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF)) | |
4755 status = RA_NOMATCH; | |
4756 else | |
4757 ADVANCE_REGINPUT(); | |
7 | 4758 break; |
4759 | |
4760 #ifdef FEAT_MBYTE | |
4761 case MULTIBYTECODE: | |
4762 if (has_mbyte) | |
4763 { | |
4764 int i, len; | |
4765 char_u *opnd; | |
944 | 4766 int opndc = 0, inpc; |
7 | 4767 |
4768 opnd = OPERAND(scan); | |
4769 /* Safety check (just in case 'encoding' was changed since | |
4770 * compiling the program). */ | |
474 | 4771 if ((len = (*mb_ptr2len)(opnd)) < 2) |
180 | 4772 { |
4773 status = RA_NOMATCH; | |
4774 break; | |
4775 } | |
714 | 4776 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
|
4777 opndc = utf_ptr2char(opnd); |
714 | 4778 if (enc_utf8 && utf_iscomposing(opndc)) |
4779 { | |
4780 /* When only a composing char is given match at any | |
4781 * position where that composing char appears. */ | |
4782 status = RA_NOMATCH; | |
6723 | 4783 for (i = 0; reginput[i] != NUL; |
4784 i += utf_ptr2len(reginput + i)) | |
180 | 4785 { |
11269
121d29004998
patch 8.0.0520: using a function pointer while the function is known
Christian Brabandt <cb@256bit.org>
parents:
11267
diff
changeset
|
4786 inpc = utf_ptr2char(reginput + i); |
714 | 4787 if (!utf_iscomposing(inpc)) |
4788 { | |
4789 if (i > 0) | |
4790 break; | |
4791 } | |
4792 else if (opndc == inpc) | |
4793 { | |
4794 /* Include all following composing chars. */ | |
11269
121d29004998
patch 8.0.0520: using a function pointer while the function is known
Christian Brabandt <cb@256bit.org>
parents:
11267
diff
changeset
|
4795 len = i + utfc_ptr2len(reginput + i); |
714 | 4796 status = RA_MATCH; |
4797 break; | |
4798 } | |
180 | 4799 } |
714 | 4800 } |
4801 else | |
4802 for (i = 0; i < len; ++i) | |
4803 if (opnd[i] != reginput[i]) | |
4804 { | |
4805 status = RA_NOMATCH; | |
4806 break; | |
4807 } | |
7 | 4808 reginput += len; |
4809 } | |
4810 else | |
180 | 4811 status = RA_NOMATCH; |
7 | 4812 break; |
4813 #endif | |
5901 | 4814 case RE_COMPOSING: |
4815 #ifdef FEAT_MBYTE | |
4816 if (enc_utf8) | |
4817 { | |
4818 /* Skip composing characters. */ | |
4819 while (utf_iscomposing(utf_ptr2char(reginput))) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
4820 MB_CPTR_ADV(reginput); |
5901 | 4821 } |
4822 #endif | |
4823 break; | |
7 | 4824 |
4825 case NOTHING: | |
4826 break; | |
4827 | |
4828 case BACK: | |
233 | 4829 { |
4830 int i; | |
4831 backpos_T *bp; | |
4832 | |
4833 /* | |
4834 * When we run into BACK we need to check if we don't keep | |
4835 * looping without matching any input. The second and later | |
4836 * times a BACK is encountered it fails if the input is still | |
4837 * at the same position as the previous time. | |
4838 * The positions are stored in "backpos" and found by the | |
4839 * current value of "scan", the position in the RE program. | |
4840 */ | |
4841 bp = (backpos_T *)backpos.ga_data; | |
4842 for (i = 0; i < backpos.ga_len; ++i) | |
4843 if (bp[i].bp_scan == scan) | |
4844 break; | |
4845 if (i == backpos.ga_len) | |
4846 { | |
4847 /* First time at this BACK, make room to store the pos. */ | |
4848 if (ga_grow(&backpos, 1) == FAIL) | |
4849 status = RA_FAIL; | |
4850 else | |
4851 { | |
4852 /* get "ga_data" again, it may have changed */ | |
4853 bp = (backpos_T *)backpos.ga_data; | |
4854 bp[i].bp_scan = scan; | |
4855 ++backpos.ga_len; | |
4856 } | |
4857 } | |
4858 else if (reg_save_equal(&bp[i].bp_pos)) | |
4859 /* Still at same position as last time, fail. */ | |
4860 status = RA_NOMATCH; | |
4861 | |
4862 if (status != RA_FAIL && status != RA_NOMATCH) | |
4863 reg_save(&bp[i].bp_pos, &backpos); | |
4864 } | |
179 | 4865 break; |
4866 | |
7 | 4867 case MOPEN + 0: /* Match start: \zs */ |
4868 case MOPEN + 1: /* \( */ | |
4869 case MOPEN + 2: | |
4870 case MOPEN + 3: | |
4871 case MOPEN + 4: | |
4872 case MOPEN + 5: | |
4873 case MOPEN + 6: | |
4874 case MOPEN + 7: | |
4875 case MOPEN + 8: | |
4876 case MOPEN + 9: | |
4877 { | |
4878 no = op - MOPEN; | |
4879 cleanup_subexpr(); | |
270 | 4880 rp = regstack_push(RS_MOPEN, scan); |
180 | 4881 if (rp == NULL) |
4882 status = RA_FAIL; | |
4883 else | |
4884 { | |
4885 rp->rs_no = no; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4886 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
|
4887 &rex.reg_startp[no]); |
180 | 4888 /* We simply continue and handle the result when done. */ |
4889 } | |
7 | 4890 } |
180 | 4891 break; |
7 | 4892 |
4893 case NOPEN: /* \%( */ | |
4894 case NCLOSE: /* \) after \%( */ | |
270 | 4895 if (regstack_push(RS_NOPEN, scan) == NULL) |
180 | 4896 status = RA_FAIL; |
4897 /* We simply continue and handle the result when done. */ | |
4898 break; | |
7 | 4899 |
4900 #ifdef FEAT_SYN_HL | |
4901 case ZOPEN + 1: | |
4902 case ZOPEN + 2: | |
4903 case ZOPEN + 3: | |
4904 case ZOPEN + 4: | |
4905 case ZOPEN + 5: | |
4906 case ZOPEN + 6: | |
4907 case ZOPEN + 7: | |
4908 case ZOPEN + 8: | |
4909 case ZOPEN + 9: | |
4910 { | |
4911 no = op - ZOPEN; | |
4912 cleanup_zsubexpr(); | |
270 | 4913 rp = regstack_push(RS_ZOPEN, scan); |
180 | 4914 if (rp == NULL) |
4915 status = RA_FAIL; | |
4916 else | |
4917 { | |
4918 rp->rs_no = no; | |
4919 save_se(&rp->rs_un.sesave, ®_startzpos[no], | |
4920 ®_startzp[no]); | |
4921 /* We simply continue and handle the result when done. */ | |
4922 } | |
7 | 4923 } |
180 | 4924 break; |
7 | 4925 #endif |
4926 | |
4927 case MCLOSE + 0: /* Match end: \ze */ | |
4928 case MCLOSE + 1: /* \) */ | |
4929 case MCLOSE + 2: | |
4930 case MCLOSE + 3: | |
4931 case MCLOSE + 4: | |
4932 case MCLOSE + 5: | |
4933 case MCLOSE + 6: | |
4934 case MCLOSE + 7: | |
4935 case MCLOSE + 8: | |
4936 case MCLOSE + 9: | |
4937 { | |
4938 no = op - MCLOSE; | |
4939 cleanup_subexpr(); | |
270 | 4940 rp = regstack_push(RS_MCLOSE, scan); |
180 | 4941 if (rp == NULL) |
4942 status = RA_FAIL; | |
4943 else | |
4944 { | |
4945 rp->rs_no = no; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4946 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
|
4947 &rex.reg_endp[no]); |
180 | 4948 /* We simply continue and handle the result when done. */ |
4949 } | |
7 | 4950 } |
180 | 4951 break; |
7 | 4952 |
4953 #ifdef FEAT_SYN_HL | |
4954 case ZCLOSE + 1: /* \) after \z( */ | |
4955 case ZCLOSE + 2: | |
4956 case ZCLOSE + 3: | |
4957 case ZCLOSE + 4: | |
4958 case ZCLOSE + 5: | |
4959 case ZCLOSE + 6: | |
4960 case ZCLOSE + 7: | |
4961 case ZCLOSE + 8: | |
4962 case ZCLOSE + 9: | |
4963 { | |
4964 no = op - ZCLOSE; | |
4965 cleanup_zsubexpr(); | |
270 | 4966 rp = regstack_push(RS_ZCLOSE, scan); |
180 | 4967 if (rp == NULL) |
4968 status = RA_FAIL; | |
4969 else | |
4970 { | |
4971 rp->rs_no = no; | |
4972 save_se(&rp->rs_un.sesave, ®_endzpos[no], | |
4973 ®_endzp[no]); | |
4974 /* We simply continue and handle the result when done. */ | |
4975 } | |
7 | 4976 } |
180 | 4977 break; |
7 | 4978 #endif |
4979 | |
4980 case BACKREF + 1: | |
4981 case BACKREF + 2: | |
4982 case BACKREF + 3: | |
4983 case BACKREF + 4: | |
4984 case BACKREF + 5: | |
4985 case BACKREF + 6: | |
4986 case BACKREF + 7: | |
4987 case BACKREF + 8: | |
4988 case BACKREF + 9: | |
4989 { | |
4990 int len; | |
4991 | |
4992 no = op - BACKREF; | |
4993 cleanup_subexpr(); | |
4994 if (!REG_MULTI) /* Single-line regexp */ | |
4995 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
4996 if (rex.reg_startp[no] == NULL || rex.reg_endp[no] == NULL) |
7 | 4997 { |
4998 /* Backref was not set: Match an empty string. */ | |
4999 len = 0; | |
5000 } | |
5001 else | |
5002 { | |
5003 /* Compare current input with back-ref in the same | |
5004 * line. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5005 len = (int)(rex.reg_endp[no] - rex.reg_startp[no]); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5006 if (cstrncmp(rex.reg_startp[no], reginput, &len) != 0) |
180 | 5007 status = RA_NOMATCH; |
7 | 5008 } |
5009 } | |
5010 else /* Multi-line regexp */ | |
5011 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5012 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
|
5013 || rex.reg_endpos[no].lnum < 0) |
7 | 5014 { |
5015 /* Backref was not set: Match an empty string. */ | |
5016 len = 0; | |
5017 } | |
5018 else | |
5019 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5020 if (rex.reg_startpos[no].lnum == reglnum |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5021 && rex.reg_endpos[no].lnum == reglnum) |
7 | 5022 { |
5023 /* 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
|
5024 len = rex.reg_endpos[no].col |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5025 - rex.reg_startpos[no].col; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5026 if (cstrncmp(regline + rex.reg_startpos[no].col, |
7 | 5027 reginput, &len) != 0) |
180 | 5028 status = RA_NOMATCH; |
7 | 5029 } |
5030 else | |
5031 { | |
5032 /* Messy situation: Need to compare between two | |
5033 * lines. */ | |
4901
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5034 int r = match_with_backref( |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5035 rex.reg_startpos[no].lnum, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5036 rex.reg_startpos[no].col, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5037 rex.reg_endpos[no].lnum, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5038 rex.reg_endpos[no].col, |
4899
4837fd61be52
updated for version 7.3.1195
Bram Moolenaar <bram@vim.org>
parents:
4891
diff
changeset
|
5039 &len); |
4901
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5040 |
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5041 if (r != RA_MATCH) |
56fbf60e9476
updated for version 7.3.1196
Bram Moolenaar <bram@vim.org>
parents:
4899
diff
changeset
|
5042 status = r; |
7 | 5043 } |
5044 } | |
5045 } | |
5046 | |
5047 /* Matched the backref, skip over it. */ | |
5048 reginput += len; | |
5049 } | |
5050 break; | |
5051 | |
5052 #ifdef FEAT_SYN_HL | |
5053 case ZREF + 1: | |
5054 case ZREF + 2: | |
5055 case ZREF + 3: | |
5056 case ZREF + 4: | |
5057 case ZREF + 5: | |
5058 case ZREF + 6: | |
5059 case ZREF + 7: | |
5060 case ZREF + 8: | |
5061 case ZREF + 9: | |
5062 { | |
5063 int len; | |
5064 | |
5065 cleanup_zsubexpr(); | |
5066 no = op - ZREF; | |
5067 if (re_extmatch_in != NULL | |
5068 && re_extmatch_in->matches[no] != NULL) | |
5069 { | |
5070 len = (int)STRLEN(re_extmatch_in->matches[no]); | |
5071 if (cstrncmp(re_extmatch_in->matches[no], | |
5072 reginput, &len) != 0) | |
180 | 5073 status = RA_NOMATCH; |
5074 else | |
5075 reginput += len; | |
7 | 5076 } |
5077 else | |
5078 { | |
5079 /* Backref was not set: Match an empty string. */ | |
5080 } | |
5081 } | |
5082 break; | |
5083 #endif | |
5084 | |
5085 case BRANCH: | |
5086 { | |
5087 if (OP(next) != BRANCH) /* No choice. */ | |
5088 next = OPERAND(scan); /* Avoid recursion. */ | |
5089 else | |
5090 { | |
270 | 5091 rp = regstack_push(RS_BRANCH, scan); |
180 | 5092 if (rp == NULL) |
5093 status = RA_FAIL; | |
5094 else | |
5095 status = RA_BREAK; /* rest is below */ | |
7 | 5096 } |
5097 } | |
5098 break; | |
5099 | |
5100 case BRACE_LIMITS: | |
5101 { | |
5102 if (OP(next) == BRACE_SIMPLE) | |
5103 { | |
5104 bl_minval = OPERAND_MIN(scan); | |
5105 bl_maxval = OPERAND_MAX(scan); | |
5106 } | |
5107 else if (OP(next) >= BRACE_COMPLEX | |
5108 && OP(next) < BRACE_COMPLEX + 10) | |
5109 { | |
5110 no = OP(next) - BRACE_COMPLEX; | |
5111 brace_min[no] = OPERAND_MIN(scan); | |
5112 brace_max[no] = OPERAND_MAX(scan); | |
5113 brace_count[no] = 0; | |
5114 } | |
5115 else | |
5116 { | |
10359
66f1b5bf3fa6
commit https://github.com/vim/vim/commit/95f096030ed1a8afea028f2ea295d6f6a70f466f
Christian Brabandt <cb@256bit.org>
parents:
10245
diff
changeset
|
5117 internal_error("BRACE_LIMITS"); |
180 | 5118 status = RA_FAIL; |
7 | 5119 } |
5120 } | |
5121 break; | |
5122 | |
5123 case BRACE_COMPLEX + 0: | |
5124 case BRACE_COMPLEX + 1: | |
5125 case BRACE_COMPLEX + 2: | |
5126 case BRACE_COMPLEX + 3: | |
5127 case BRACE_COMPLEX + 4: | |
5128 case BRACE_COMPLEX + 5: | |
5129 case BRACE_COMPLEX + 6: | |
5130 case BRACE_COMPLEX + 7: | |
5131 case BRACE_COMPLEX + 8: | |
5132 case BRACE_COMPLEX + 9: | |
5133 { | |
5134 no = op - BRACE_COMPLEX; | |
5135 ++brace_count[no]; | |
5136 | |
5137 /* If not matched enough times yet, try one more */ | |
5138 if (brace_count[no] <= (brace_min[no] <= brace_max[no] | |
180 | 5139 ? brace_min[no] : brace_max[no])) |
7 | 5140 { |
270 | 5141 rp = regstack_push(RS_BRCPLX_MORE, scan); |
180 | 5142 if (rp == NULL) |
5143 status = RA_FAIL; | |
5144 else | |
5145 { | |
5146 rp->rs_no = no; | |
233 | 5147 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5148 next = OPERAND(scan); |
5149 /* We continue and handle the result when done. */ | |
5150 } | |
5151 break; | |
7 | 5152 } |
5153 | |
5154 /* If matched enough times, may try matching some more */ | |
5155 if (brace_min[no] <= brace_max[no]) | |
5156 { | |
5157 /* Range is the normal way around, use longest match */ | |
5158 if (brace_count[no] <= brace_max[no]) | |
5159 { | |
270 | 5160 rp = regstack_push(RS_BRCPLX_LONG, scan); |
180 | 5161 if (rp == NULL) |
5162 status = RA_FAIL; | |
5163 else | |
5164 { | |
5165 rp->rs_no = no; | |
233 | 5166 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5167 next = OPERAND(scan); |
5168 /* We continue and handle the result when done. */ | |
5169 } | |
7 | 5170 } |
5171 } | |
5172 else | |
5173 { | |
5174 /* Range is backwards, use shortest match first */ | |
5175 if (brace_count[no] <= brace_min[no]) | |
5176 { | |
270 | 5177 rp = regstack_push(RS_BRCPLX_SHORT, scan); |
180 | 5178 if (rp == NULL) |
5179 status = RA_FAIL; | |
5180 else | |
5181 { | |
233 | 5182 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5183 /* We continue and handle the result when done. */ |
5184 } | |
7 | 5185 } |
5186 } | |
5187 } | |
5188 break; | |
5189 | |
5190 case BRACE_SIMPLE: | |
5191 case STAR: | |
5192 case PLUS: | |
5193 { | |
180 | 5194 regstar_T rst; |
7 | 5195 |
5196 /* | |
5197 * Lookahead to avoid useless match attempts when we know | |
5198 * what character comes next. | |
5199 */ | |
5200 if (OP(next) == EXACTLY) | |
5201 { | |
180 | 5202 rst.nextb = *OPERAND(next); |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5203 if (rex.reg_ic) |
7 | 5204 { |
1347 | 5205 if (MB_ISUPPER(rst.nextb)) |
5206 rst.nextb_ic = MB_TOLOWER(rst.nextb); | |
7 | 5207 else |
1347 | 5208 rst.nextb_ic = MB_TOUPPER(rst.nextb); |
7 | 5209 } |
5210 else | |
180 | 5211 rst.nextb_ic = rst.nextb; |
7 | 5212 } |
5213 else | |
5214 { | |
180 | 5215 rst.nextb = NUL; |
5216 rst.nextb_ic = NUL; | |
7 | 5217 } |
5218 if (op != BRACE_SIMPLE) | |
5219 { | |
180 | 5220 rst.minval = (op == STAR) ? 0 : 1; |
5221 rst.maxval = MAX_LIMIT; | |
7 | 5222 } |
5223 else | |
5224 { | |
180 | 5225 rst.minval = bl_minval; |
5226 rst.maxval = bl_maxval; | |
7 | 5227 } |
5228 | |
5229 /* | |
5230 * When maxval > minval, try matching as much as possible, up | |
5231 * to maxval. When maxval < minval, try matching at least the | |
5232 * minimal number (since the range is backwards, that's also | |
5233 * maxval!). | |
5234 */ | |
180 | 5235 rst.count = regrepeat(OPERAND(scan), rst.maxval); |
7 | 5236 if (got_int) |
180 | 5237 { |
5238 status = RA_FAIL; | |
5239 break; | |
5240 } | |
5241 if (rst.minval <= rst.maxval | |
5242 ? rst.count >= rst.minval : rst.count >= rst.maxval) | |
7 | 5243 { |
180 | 5244 /* It could match. Prepare for trying to match what |
5245 * follows. The code is below. Parameters are stored in | |
5246 * a regstar_T on the regstack. */ | |
212 | 5247 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5248 { |
5249 EMSG(_(e_maxmempat)); | |
5250 status = RA_FAIL; | |
5251 } | |
5252 else if (ga_grow(®stack, sizeof(regstar_T)) == FAIL) | |
180 | 5253 status = RA_FAIL; |
5254 else | |
7 | 5255 { |
180 | 5256 regstack.ga_len += sizeof(regstar_T); |
270 | 5257 rp = regstack_push(rst.minval <= rst.maxval |
233 | 5258 ? RS_STAR_LONG : RS_STAR_SHORT, scan); |
180 | 5259 if (rp == NULL) |
5260 status = RA_FAIL; | |
5261 else | |
7 | 5262 { |
180 | 5263 *(((regstar_T *)rp) - 1) = rst; |
5264 status = RA_BREAK; /* skip the restore bits */ | |
7 | 5265 } |
5266 } | |
5267 } | |
5268 else | |
180 | 5269 status = RA_NOMATCH; |
5270 | |
7 | 5271 } |
180 | 5272 break; |
7 | 5273 |
5274 case NOMATCH: | |
5275 case MATCH: | |
5276 case SUBPAT: | |
270 | 5277 rp = regstack_push(RS_NOMATCH, scan); |
180 | 5278 if (rp == NULL) |
5279 status = RA_FAIL; | |
5280 else | |
7 | 5281 { |
180 | 5282 rp->rs_no = op; |
233 | 5283 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5284 next = OPERAND(scan); |
5285 /* We continue and handle the result when done. */ | |
7 | 5286 } |
5287 break; | |
5288 | |
5289 case BEHIND: | |
5290 case NOBEHIND: | |
180 | 5291 /* Need a bit of room to store extra positions. */ |
212 | 5292 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5293 { |
5294 EMSG(_(e_maxmempat)); | |
5295 status = RA_FAIL; | |
5296 } | |
5297 else if (ga_grow(®stack, sizeof(regbehind_T)) == FAIL) | |
180 | 5298 status = RA_FAIL; |
5299 else | |
7 | 5300 { |
180 | 5301 regstack.ga_len += sizeof(regbehind_T); |
270 | 5302 rp = regstack_push(RS_BEHIND1, scan); |
180 | 5303 if (rp == NULL) |
5304 status = RA_FAIL; | |
5305 else | |
7 | 5306 { |
1579 | 5307 /* Need to save the subexpr to be able to restore them |
5308 * when there is a match but we don't use it. */ | |
5309 save_subexpr(((regbehind_T *)rp) - 1); | |
5310 | |
180 | 5311 rp->rs_no = op; |
233 | 5312 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5313 /* First try if what follows matches. If it does then we |
5314 * check the behind match by looping. */ | |
7 | 5315 } |
5316 } | |
180 | 5317 break; |
7 | 5318 |
5319 case BHPOS: | |
5320 if (REG_MULTI) | |
5321 { | |
5322 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline) | |
5323 || behind_pos.rs_u.pos.lnum != reglnum) | |
180 | 5324 status = RA_NOMATCH; |
7 | 5325 } |
5326 else if (behind_pos.rs_u.ptr != reginput) | |
180 | 5327 status = RA_NOMATCH; |
7 | 5328 break; |
5329 | |
5330 case NEWL: | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5331 if ((c != NUL || !REG_MULTI || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5332 || rex.reg_line_lbr) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5333 && (c != '\n' || !rex.reg_line_lbr)) |
180 | 5334 status = RA_NOMATCH; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5335 else if (rex.reg_line_lbr) |
7 | 5336 ADVANCE_REGINPUT(); |
5337 else | |
5338 reg_nextline(); | |
5339 break; | |
5340 | |
5341 case END: | |
180 | 5342 status = RA_MATCH; /* Success! */ |
5343 break; | |
7 | 5344 |
5345 default: | |
5346 EMSG(_(e_re_corr)); | |
5347 #ifdef DEBUG | |
5348 printf("Illegal op code %d\n", op); | |
5349 #endif | |
180 | 5350 status = RA_FAIL; |
5351 break; | |
7 | 5352 } |
5353 } | |
5354 | |
180 | 5355 /* If we can't continue sequentially, break the inner loop. */ |
5356 if (status != RA_CONT) | |
5357 break; | |
5358 | |
5359 /* Continue in inner loop, advance to next item. */ | |
7 | 5360 scan = next; |
180 | 5361 |
5362 } /* end of inner loop */ | |
7 | 5363 |
5364 /* | |
180 | 5365 * If there is something on the regstack execute the code for the state. |
233 | 5366 * If the state is popped then loop and use the older state. |
7 | 5367 */ |
180 | 5368 while (regstack.ga_len > 0 && status != RA_FAIL) |
5369 { | |
5370 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; | |
5371 switch (rp->rs_state) | |
5372 { | |
5373 case RS_NOPEN: | |
5374 /* Result is passed on as-is, simply pop the state. */ | |
270 | 5375 regstack_pop(&scan); |
180 | 5376 break; |
5377 | |
5378 case RS_MOPEN: | |
5379 /* Pop the state. Restore pointers when there is no match. */ | |
5380 if (status == RA_NOMATCH) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5381 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
|
5382 &rex.reg_startp[rp->rs_no]); |
270 | 5383 regstack_pop(&scan); |
180 | 5384 break; |
5385 | |
5386 #ifdef FEAT_SYN_HL | |
5387 case RS_ZOPEN: | |
5388 /* Pop the state. Restore pointers when there is no match. */ | |
5389 if (status == RA_NOMATCH) | |
5390 restore_se(&rp->rs_un.sesave, ®_startzpos[rp->rs_no], | |
5391 ®_startzp[rp->rs_no]); | |
270 | 5392 regstack_pop(&scan); |
180 | 5393 break; |
5394 #endif | |
5395 | |
5396 case RS_MCLOSE: | |
5397 /* Pop the state. Restore pointers when there is no match. */ | |
5398 if (status == RA_NOMATCH) | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5399 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
|
5400 &rex.reg_endp[rp->rs_no]); |
270 | 5401 regstack_pop(&scan); |
180 | 5402 break; |
5403 | |
5404 #ifdef FEAT_SYN_HL | |
5405 case RS_ZCLOSE: | |
5406 /* Pop the state. Restore pointers when there is no match. */ | |
5407 if (status == RA_NOMATCH) | |
5408 restore_se(&rp->rs_un.sesave, ®_endzpos[rp->rs_no], | |
5409 ®_endzp[rp->rs_no]); | |
270 | 5410 regstack_pop(&scan); |
180 | 5411 break; |
5412 #endif | |
5413 | |
5414 case RS_BRANCH: | |
5415 if (status == RA_MATCH) | |
5416 /* this branch matched, use it */ | |
270 | 5417 regstack_pop(&scan); |
180 | 5418 else |
5419 { | |
5420 if (status != RA_BREAK) | |
5421 { | |
5422 /* After a non-matching branch: try next one. */ | |
233 | 5423 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5424 scan = rp->rs_scan; |
5425 } | |
5426 if (scan == NULL || OP(scan) != BRANCH) | |
5427 { | |
5428 /* no more branches, didn't find a match */ | |
5429 status = RA_NOMATCH; | |
270 | 5430 regstack_pop(&scan); |
180 | 5431 } |
5432 else | |
5433 { | |
5434 /* Prepare to try a branch. */ | |
5435 rp->rs_scan = regnext(scan); | |
233 | 5436 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5437 scan = OPERAND(scan); |
5438 } | |
5439 } | |
5440 break; | |
5441 | |
5442 case RS_BRCPLX_MORE: | |
5443 /* Pop the state. Restore pointers when there is no match. */ | |
5444 if (status == RA_NOMATCH) | |
5445 { | |
233 | 5446 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5447 --brace_count[rp->rs_no]; /* decrement match count */ |
5448 } | |
270 | 5449 regstack_pop(&scan); |
180 | 5450 break; |
5451 | |
5452 case RS_BRCPLX_LONG: | |
5453 /* Pop the state. Restore pointers when there is no match. */ | |
5454 if (status == RA_NOMATCH) | |
5455 { | |
5456 /* There was no match, but we did find enough matches. */ | |
233 | 5457 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5458 --brace_count[rp->rs_no]; |
5459 /* continue with the items after "\{}" */ | |
5460 status = RA_CONT; | |
5461 } | |
270 | 5462 regstack_pop(&scan); |
180 | 5463 if (status == RA_CONT) |
5464 scan = regnext(scan); | |
5465 break; | |
5466 | |
5467 case RS_BRCPLX_SHORT: | |
5468 /* Pop the state. Restore pointers when there is no match. */ | |
5469 if (status == RA_NOMATCH) | |
5470 /* There was no match, try to match one more item. */ | |
233 | 5471 reg_restore(&rp->rs_un.regsave, &backpos); |
270 | 5472 regstack_pop(&scan); |
180 | 5473 if (status == RA_NOMATCH) |
5474 { | |
5475 scan = OPERAND(scan); | |
5476 status = RA_CONT; | |
5477 } | |
5478 break; | |
5479 | |
5480 case RS_NOMATCH: | |
5481 /* Pop the state. If the operand matches for NOMATCH or | |
5482 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup, | |
5483 * except for SUBPAT, and continue with the next item. */ | |
5484 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH)) | |
5485 status = RA_NOMATCH; | |
5486 else | |
5487 { | |
5488 status = RA_CONT; | |
233 | 5489 if (rp->rs_no != SUBPAT) /* zero-width */ |
5490 reg_restore(&rp->rs_un.regsave, &backpos); | |
180 | 5491 } |
270 | 5492 regstack_pop(&scan); |
180 | 5493 if (status == RA_CONT) |
5494 scan = regnext(scan); | |
5495 break; | |
5496 | |
5497 case RS_BEHIND1: | |
5498 if (status == RA_NOMATCH) | |
5499 { | |
270 | 5500 regstack_pop(&scan); |
180 | 5501 regstack.ga_len -= sizeof(regbehind_T); |
5502 } | |
5503 else | |
5504 { | |
5505 /* The stuff after BEHIND/NOBEHIND matches. Now try if | |
5506 * the behind part does (not) match before the current | |
5507 * position in the input. This must be done at every | |
5508 * position in the input and checking if the match ends at | |
5509 * the current position. */ | |
5510 | |
5511 /* save the position after the found match for next */ | |
233 | 5512 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos); |
180 | 5513 |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5514 /* Start looking for a match with operand at the current |
1209 | 5515 * position. Go back one character until we find the |
180 | 5516 * result, hitting the start of the line or the previous |
5517 * line (for multi-line matching). | |
5518 * Set behind_pos to where the match should end, BHPOS | |
5519 * will match it. Save the current value. */ | |
5520 (((regbehind_T *)rp) - 1)->save_behind = behind_pos; | |
5521 behind_pos = rp->rs_un.regsave; | |
5522 | |
5523 rp->rs_state = RS_BEHIND2; | |
5524 | |
233 | 5525 reg_restore(&rp->rs_un.regsave, &backpos); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5526 scan = OPERAND(rp->rs_scan) + 4; |
180 | 5527 } |
5528 break; | |
5529 | |
5530 case RS_BEHIND2: | |
5531 /* | |
5532 * Looping for BEHIND / NOBEHIND match. | |
5533 */ | |
5534 if (status == RA_MATCH && reg_save_equal(&behind_pos)) | |
5535 { | |
5536 /* found a match that ends where "next" started */ | |
5537 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5538 if (rp->rs_no == BEHIND) | |
233 | 5539 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5540 &backpos); | |
180 | 5541 else |
1579 | 5542 { |
5543 /* But we didn't want a match. Need to restore the | |
5544 * subexpr, because what follows matched, so they have | |
5545 * been set. */ | |
180 | 5546 status = RA_NOMATCH; |
1579 | 5547 restore_subexpr(((regbehind_T *)rp) - 1); |
5548 } | |
270 | 5549 regstack_pop(&scan); |
180 | 5550 regstack.ga_len -= sizeof(regbehind_T); |
5551 } | |
5552 else | |
5553 { | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5554 long limit; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5555 |
1579 | 5556 /* No match or a match that doesn't end where we want it: Go |
5557 * back one character. May go to previous line once. */ | |
180 | 5558 no = OK; |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5559 limit = OPERAND_MIN(rp->rs_scan); |
180 | 5560 if (REG_MULTI) |
5561 { | |
4682
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5562 if (limit > 0 |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5563 && ((rp->rs_un.regsave.rs_u.pos.lnum |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5564 < behind_pos.rs_u.pos.lnum |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5565 ? (colnr_T)STRLEN(regline) |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5566 : behind_pos.rs_u.pos.col) |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5567 - 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
|
5568 no = FAIL; |
2f51ee8825db
updated for version 7.3.1088
Bram Moolenaar <bram@vim.org>
parents:
4679
diff
changeset
|
5569 else if (rp->rs_un.regsave.rs_u.pos.col == 0) |
180 | 5570 { |
5571 if (rp->rs_un.regsave.rs_u.pos.lnum | |
5572 < behind_pos.rs_u.pos.lnum | |
5573 || reg_getline( | |
5574 --rp->rs_un.regsave.rs_u.pos.lnum) | |
5575 == NULL) | |
5576 no = FAIL; | |
5577 else | |
5578 { | |
233 | 5579 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5580 rp->rs_un.regsave.rs_u.pos.col = |
5581 (colnr_T)STRLEN(regline); | |
5582 } | |
5583 } | |
5584 else | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5585 { |
4176 | 5586 #ifdef FEAT_MBYTE |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5587 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
|
5588 { |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5589 char_u *line = |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5590 reg_getline(behind_pos.rs_u.pos.lnum); |
a90bc1e28cbb
patch 8.0.1517: invalid memory acces with pattern using look-behind match
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
5591 |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5592 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
|
5593 (*mb_head_off)(line, line |
4176 | 5594 + 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
|
5595 } |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5596 else |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5597 #endif |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5598 --rp->rs_un.regsave.rs_u.pos.col; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5599 } |
180 | 5600 } |
5601 else | |
5602 { | |
5603 if (rp->rs_un.regsave.rs_u.ptr == regline) | |
5604 no = FAIL; | |
5605 else | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5606 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5607 MB_PTR_BACK(regline, rp->rs_un.regsave.rs_u.ptr); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5608 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
|
5609 - rp->rs_un.regsave.rs_u.ptr) > limit) |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5610 no = FAIL; |
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5611 } |
180 | 5612 } |
5613 if (no == OK) | |
5614 { | |
5615 /* Advanced, prepare for finding match again. */ | |
233 | 5616 reg_restore(&rp->rs_un.regsave, &backpos); |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
5617 scan = OPERAND(rp->rs_scan) + 4; |
1579 | 5618 if (status == RA_MATCH) |
5619 { | |
5620 /* We did match, so subexpr may have been changed, | |
5621 * need to restore them for the next try. */ | |
5622 status = RA_NOMATCH; | |
5623 restore_subexpr(((regbehind_T *)rp) - 1); | |
5624 } | |
180 | 5625 } |
5626 else | |
5627 { | |
5628 /* Can't advance. For NOBEHIND that's a match. */ | |
5629 behind_pos = (((regbehind_T *)rp) - 1)->save_behind; | |
5630 if (rp->rs_no == NOBEHIND) | |
5631 { | |
233 | 5632 reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
5633 &backpos); | |
180 | 5634 status = RA_MATCH; |
5635 } | |
5636 else | |
1579 | 5637 { |
5638 /* We do want a proper match. Need to restore the | |
5639 * subexpr if we had a match, because they may have | |
5640 * been set. */ | |
5641 if (status == RA_MATCH) | |
5642 { | |
5643 status = RA_NOMATCH; | |
5644 restore_subexpr(((regbehind_T *)rp) - 1); | |
5645 } | |
5646 } | |
270 | 5647 regstack_pop(&scan); |
180 | 5648 regstack.ga_len -= sizeof(regbehind_T); |
5649 } | |
5650 } | |
5651 break; | |
5652 | |
5653 case RS_STAR_LONG: | |
5654 case RS_STAR_SHORT: | |
5655 { | |
5656 regstar_T *rst = ((regstar_T *)rp) - 1; | |
5657 | |
5658 if (status == RA_MATCH) | |
5659 { | |
270 | 5660 regstack_pop(&scan); |
180 | 5661 regstack.ga_len -= sizeof(regstar_T); |
5662 break; | |
5663 } | |
5664 | |
5665 /* Tried once already, restore input pointers. */ | |
5666 if (status != RA_BREAK) | |
233 | 5667 reg_restore(&rp->rs_un.regsave, &backpos); |
180 | 5668 |
5669 /* Repeat until we found a position where it could match. */ | |
5670 for (;;) | |
5671 { | |
5672 if (status != RA_BREAK) | |
5673 { | |
5674 /* Tried first position already, advance. */ | |
5675 if (rp->rs_state == RS_STAR_LONG) | |
5676 { | |
685 | 5677 /* Trying for longest match, but couldn't or |
5678 * didn't match -- back up one char. */ | |
180 | 5679 if (--rst->count < rst->minval) |
5680 break; | |
5681 if (reginput == regline) | |
5682 { | |
5683 /* backup to last char of previous line */ | |
5684 --reglnum; | |
5685 regline = reg_getline(reglnum); | |
5686 /* Just in case regrepeat() didn't count | |
5687 * right. */ | |
5688 if (regline == NULL) | |
5689 break; | |
5690 reginput = regline + STRLEN(regline); | |
5691 fast_breakcheck(); | |
5692 } | |
5693 else | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5694 MB_PTR_BACK(regline, reginput); |
180 | 5695 } |
5696 else | |
5697 { | |
5698 /* Range is backwards, use shortest match first. | |
5699 * Careful: maxval and minval are exchanged! | |
5700 * Couldn't or didn't match: try advancing one | |
5701 * char. */ | |
5702 if (rst->count == rst->minval | |
5703 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0) | |
5704 break; | |
5705 ++rst->count; | |
5706 } | |
5707 if (got_int) | |
5708 break; | |
5709 } | |
5710 else | |
5711 status = RA_NOMATCH; | |
5712 | |
5713 /* If it could match, try it. */ | |
5714 if (rst->nextb == NUL || *reginput == rst->nextb | |
5715 || *reginput == rst->nextb_ic) | |
5716 { | |
233 | 5717 reg_save(&rp->rs_un.regsave, &backpos); |
180 | 5718 scan = regnext(rp->rs_scan); |
5719 status = RA_CONT; | |
5720 break; | |
5721 } | |
5722 } | |
5723 if (status != RA_CONT) | |
5724 { | |
5725 /* Failed. */ | |
270 | 5726 regstack_pop(&scan); |
180 | 5727 regstack.ga_len -= sizeof(regstar_T); |
5728 status = RA_NOMATCH; | |
5729 } | |
5730 } | |
5731 break; | |
5732 } | |
5733 | |
685 | 5734 /* If we want to continue the inner loop or didn't pop a state |
5735 * continue matching loop */ | |
180 | 5736 if (status == RA_CONT || rp == (regitem_T *) |
5737 ((char *)regstack.ga_data + regstack.ga_len) - 1) | |
5738 break; | |
5739 } | |
5740 | |
189 | 5741 /* May need to continue with the inner loop, starting at "scan". */ |
180 | 5742 if (status == RA_CONT) |
5743 continue; | |
5744 | |
5745 /* | |
5746 * If the regstack is empty or something failed we are done. | |
5747 */ | |
5748 if (regstack.ga_len == 0 || status == RA_FAIL) | |
5749 { | |
5750 if (scan == NULL) | |
5751 { | |
5752 /* | |
5753 * We get here only if there's trouble -- normally "case END" is | |
5754 * the terminating point. | |
5755 */ | |
5756 EMSG(_(e_re_corr)); | |
7 | 5757 #ifdef DEBUG |
180 | 5758 printf("Premature EOL\n"); |
7 | 5759 #endif |
180 | 5760 } |
5761 return (status == RA_MATCH); | |
5762 } | |
5763 | |
5764 } /* End of loop until the regstack is empty. */ | |
5765 | |
5766 /* NOTREACHED */ | |
5767 } | |
5768 | |
5769 /* | |
5770 * Push an item onto the regstack. | |
5771 * Returns pointer to new item. Returns NULL when out of memory. | |
5772 */ | |
5773 static regitem_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5774 regstack_push(regstate_T state, char_u *scan) |
180 | 5775 { |
5776 regitem_T *rp; | |
5777 | |
270 | 5778 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
189 | 5779 { |
5780 EMSG(_(e_maxmempat)); | |
5781 return NULL; | |
5782 } | |
270 | 5783 if (ga_grow(®stack, sizeof(regitem_T)) == FAIL) |
180 | 5784 return NULL; |
5785 | |
270 | 5786 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len); |
180 | 5787 rp->rs_state = state; |
5788 rp->rs_scan = scan; | |
5789 | |
270 | 5790 regstack.ga_len += sizeof(regitem_T); |
180 | 5791 return rp; |
5792 } | |
5793 | |
5794 /* | |
5795 * Pop an item from the regstack. | |
5796 */ | |
5797 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5798 regstack_pop(char_u **scan) |
180 | 5799 { |
5800 regitem_T *rp; | |
5801 | |
270 | 5802 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; |
180 | 5803 *scan = rp->rs_scan; |
5804 | |
270 | 5805 regstack.ga_len -= sizeof(regitem_T); |
7 | 5806 } |
5807 | |
5808 /* | |
5809 * regrepeat - repeatedly match something simple, return how many. | |
5810 * Advances reginput (and reglnum) to just after the matched chars. | |
5811 */ | |
5812 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5813 regrepeat( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5814 char_u *p, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
5815 long maxcount) /* maximum number of matches allowed */ |
7 | 5816 { |
5817 long count = 0; | |
5818 char_u *scan; | |
5819 char_u *opnd; | |
5820 int mask; | |
5821 int testval = 0; | |
5822 | |
5823 scan = reginput; /* Make local copy of reginput for speed. */ | |
5824 opnd = OPERAND(p); | |
5825 switch (OP(p)) | |
5826 { | |
5827 case ANY: | |
5828 case ANY + ADD_NL: | |
5829 while (count < maxcount) | |
5830 { | |
5831 /* Matching anything means we continue until end-of-line (or | |
5832 * end-of-file for ANY + ADD_NL), only limited by maxcount. */ | |
5833 while (*scan != NUL && count < maxcount) | |
5834 { | |
5835 ++count; | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5836 MB_PTR_ADV(scan); |
7 | 5837 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5838 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5839 || rex.reg_line_lbr || count == maxcount) |
7 | 5840 break; |
5841 ++count; /* count the line-break */ | |
5842 reg_nextline(); | |
5843 scan = reginput; | |
5844 if (got_int) | |
5845 break; | |
5846 } | |
5847 break; | |
5848 | |
5849 case IDENT: | |
5850 case IDENT + ADD_NL: | |
5851 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5852 /* FALLTHROUGH */ |
7 | 5853 case SIDENT: |
5854 case SIDENT + ADD_NL: | |
5855 while (count < maxcount) | |
5856 { | |
4466 | 5857 if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5858 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5859 MB_PTR_ADV(scan); |
7 | 5860 } |
5861 else if (*scan == NUL) | |
5862 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5863 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5864 || rex.reg_line_lbr) |
7 | 5865 break; |
5866 reg_nextline(); | |
5867 scan = reginput; | |
5868 if (got_int) | |
5869 break; | |
5870 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5871 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5872 ++scan; |
5873 else | |
5874 break; | |
5875 ++count; | |
5876 } | |
5877 break; | |
5878 | |
5879 case KWORD: | |
5880 case KWORD + ADD_NL: | |
5881 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5882 /* FALLTHROUGH */ |
7 | 5883 case SKWORD: |
5884 case SKWORD + ADD_NL: | |
5885 while (count < maxcount) | |
5886 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5887 if (vim_iswordp_buf(scan, rex.reg_buf) |
4069 | 5888 && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5889 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5890 MB_PTR_ADV(scan); |
7 | 5891 } |
5892 else if (*scan == NUL) | |
5893 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5894 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5895 || rex.reg_line_lbr) |
7 | 5896 break; |
5897 reg_nextline(); | |
5898 scan = reginput; | |
5899 if (got_int) | |
5900 break; | |
5901 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5902 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5903 ++scan; |
5904 else | |
5905 break; | |
5906 ++count; | |
5907 } | |
5908 break; | |
5909 | |
5910 case FNAME: | |
5911 case FNAME + ADD_NL: | |
5912 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5913 /* FALLTHROUGH */ |
7 | 5914 case SFNAME: |
5915 case SFNAME + ADD_NL: | |
5916 while (count < maxcount) | |
5917 { | |
4466 | 5918 if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5919 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5920 MB_PTR_ADV(scan); |
7 | 5921 } |
5922 else if (*scan == NUL) | |
5923 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5924 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5925 || rex.reg_line_lbr) |
7 | 5926 break; |
5927 reg_nextline(); | |
5928 scan = reginput; | |
5929 if (got_int) | |
5930 break; | |
5931 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5932 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5933 ++scan; |
5934 else | |
5935 break; | |
5936 ++count; | |
5937 } | |
5938 break; | |
5939 | |
5940 case PRINT: | |
5941 case PRINT + ADD_NL: | |
5942 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
5943 /* FALLTHROUGH */ |
7 | 5944 case SPRINT: |
5945 case SPRINT + ADD_NL: | |
5946 while (count < maxcount) | |
5947 { | |
5948 if (*scan == NUL) | |
5949 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5950 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5951 || rex.reg_line_lbr) |
7 | 5952 break; |
5953 reg_nextline(); | |
5954 scan = reginput; | |
5955 if (got_int) | |
5956 break; | |
5957 } | |
5221
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
5958 else if (vim_isprintc(PTR2CHAR(scan)) == 1 |
9982ec574beb
updated for version 7.4a.036
Bram Moolenaar <bram@vim.org>
parents:
4901
diff
changeset
|
5959 && (testval || !VIM_ISDIGIT(*scan))) |
7 | 5960 { |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
5961 MB_PTR_ADV(scan); |
7 | 5962 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5963 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 5964 ++scan; |
5965 else | |
5966 break; | |
5967 ++count; | |
5968 } | |
5969 break; | |
5970 | |
5971 case WHITE: | |
5972 case WHITE + ADD_NL: | |
5973 testval = mask = RI_WHITE; | |
5974 do_class: | |
5975 while (count < maxcount) | |
5976 { | |
5977 #ifdef FEAT_MBYTE | |
5978 int l; | |
5979 #endif | |
5980 if (*scan == NUL) | |
5981 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5982 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
5983 || rex.reg_line_lbr) |
7 | 5984 break; |
5985 reg_nextline(); | |
5986 scan = reginput; | |
5987 if (got_int) | |
5988 break; | |
5989 } | |
5990 #ifdef FEAT_MBYTE | |
474 | 5991 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1) |
7 | 5992 { |
5993 if (testval != 0) | |
5994 break; | |
5995 scan += l; | |
5996 } | |
5997 #endif | |
5998 else if ((class_tab[*scan] & mask) == testval) | |
5999 ++scan; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6000 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 6001 ++scan; |
6002 else | |
6003 break; | |
6004 ++count; | |
6005 } | |
6006 break; | |
6007 | |
6008 case NWHITE: | |
6009 case NWHITE + ADD_NL: | |
6010 mask = RI_WHITE; | |
6011 goto do_class; | |
6012 case DIGIT: | |
6013 case DIGIT + ADD_NL: | |
6014 testval = mask = RI_DIGIT; | |
6015 goto do_class; | |
6016 case NDIGIT: | |
6017 case NDIGIT + ADD_NL: | |
6018 mask = RI_DIGIT; | |
6019 goto do_class; | |
6020 case HEX: | |
6021 case HEX + ADD_NL: | |
6022 testval = mask = RI_HEX; | |
6023 goto do_class; | |
6024 case NHEX: | |
6025 case NHEX + ADD_NL: | |
6026 mask = RI_HEX; | |
6027 goto do_class; | |
6028 case OCTAL: | |
6029 case OCTAL + ADD_NL: | |
6030 testval = mask = RI_OCTAL; | |
6031 goto do_class; | |
6032 case NOCTAL: | |
6033 case NOCTAL + ADD_NL: | |
6034 mask = RI_OCTAL; | |
6035 goto do_class; | |
6036 case WORD: | |
6037 case WORD + ADD_NL: | |
6038 testval = mask = RI_WORD; | |
6039 goto do_class; | |
6040 case NWORD: | |
6041 case NWORD + ADD_NL: | |
6042 mask = RI_WORD; | |
6043 goto do_class; | |
6044 case HEAD: | |
6045 case HEAD + ADD_NL: | |
6046 testval = mask = RI_HEAD; | |
6047 goto do_class; | |
6048 case NHEAD: | |
6049 case NHEAD + ADD_NL: | |
6050 mask = RI_HEAD; | |
6051 goto do_class; | |
6052 case ALPHA: | |
6053 case ALPHA + ADD_NL: | |
6054 testval = mask = RI_ALPHA; | |
6055 goto do_class; | |
6056 case NALPHA: | |
6057 case NALPHA + ADD_NL: | |
6058 mask = RI_ALPHA; | |
6059 goto do_class; | |
6060 case LOWER: | |
6061 case LOWER + ADD_NL: | |
6062 testval = mask = RI_LOWER; | |
6063 goto do_class; | |
6064 case NLOWER: | |
6065 case NLOWER + ADD_NL: | |
6066 mask = RI_LOWER; | |
6067 goto do_class; | |
6068 case UPPER: | |
6069 case UPPER + ADD_NL: | |
6070 testval = mask = RI_UPPER; | |
6071 goto do_class; | |
6072 case NUPPER: | |
6073 case NUPPER + ADD_NL: | |
6074 mask = RI_UPPER; | |
6075 goto do_class; | |
6076 | |
6077 case EXACTLY: | |
6078 { | |
6079 int cu, cl; | |
6080 | |
6081 /* This doesn't do a multi-byte character, because a MULTIBYTECODE | |
1347 | 6082 * would have been used for it. It does handle single-byte |
6083 * characters, such as latin1. */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6084 if (rex.reg_ic) |
7 | 6085 { |
1347 | 6086 cu = MB_TOUPPER(*opnd); |
6087 cl = MB_TOLOWER(*opnd); | |
7 | 6088 while (count < maxcount && (*scan == cu || *scan == cl)) |
6089 { | |
6090 count++; | |
6091 scan++; | |
6092 } | |
6093 } | |
6094 else | |
6095 { | |
6096 cu = *opnd; | |
6097 while (count < maxcount && *scan == cu) | |
6098 { | |
6099 count++; | |
6100 scan++; | |
6101 } | |
6102 } | |
6103 break; | |
6104 } | |
6105 | |
6106 #ifdef FEAT_MBYTE | |
6107 case MULTIBYTECODE: | |
6108 { | |
6109 int i, len, cf = 0; | |
6110 | |
6111 /* Safety check (just in case 'encoding' was changed since | |
6112 * compiling the program). */ | |
474 | 6113 if ((len = (*mb_ptr2len)(opnd)) > 1) |
7 | 6114 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6115 if (rex.reg_ic && enc_utf8) |
7 | 6116 cf = utf_fold(utf_ptr2char(opnd)); |
6785 | 6117 while (count < maxcount && (*mb_ptr2len)(scan) >= len) |
7 | 6118 { |
6119 for (i = 0; i < len; ++i) | |
6120 if (opnd[i] != scan[i]) | |
6121 break; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6122 if (i < len && (!rex.reg_ic || !enc_utf8 |
7 | 6123 || utf_fold(utf_ptr2char(scan)) != cf)) |
6124 break; | |
6125 scan += len; | |
6126 ++count; | |
6127 } | |
6128 } | |
6129 } | |
6130 break; | |
6131 #endif | |
6132 | |
6133 case ANYOF: | |
6134 case ANYOF + ADD_NL: | |
6135 testval = TRUE; | |
12674
e769c912fcd9
patch 8.0.1215: newer gcc warns for implicit fallthrough
Christian Brabandt <cb@256bit.org>
parents:
11529
diff
changeset
|
6136 /* FALLTHROUGH */ |
7 | 6137 |
6138 case ANYBUT: | |
6139 case ANYBUT + ADD_NL: | |
6140 while (count < maxcount) | |
6141 { | |
6142 #ifdef FEAT_MBYTE | |
6143 int len; | |
6144 #endif | |
6145 if (*scan == NUL) | |
6146 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6147 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6148 || rex.reg_line_lbr) |
7 | 6149 break; |
6150 reg_nextline(); | |
6151 scan = reginput; | |
6152 if (got_int) | |
6153 break; | |
6154 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6155 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
7 | 6156 ++scan; |
6157 #ifdef FEAT_MBYTE | |
474 | 6158 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1) |
7 | 6159 { |
6160 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval) | |
6161 break; | |
6162 scan += len; | |
6163 } | |
6164 #endif | |
6165 else | |
6166 { | |
6167 if ((cstrchr(opnd, *scan) == NULL) == testval) | |
6168 break; | |
6169 ++scan; | |
6170 } | |
6171 ++count; | |
6172 } | |
6173 break; | |
6174 | |
6175 case NEWL: | |
6176 while (count < maxcount | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6177 && ((*scan == NUL && reglnum <= rex.reg_maxline |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6178 && !rex.reg_line_lbr && REG_MULTI) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6179 || (*scan == '\n' && rex.reg_line_lbr))) |
7 | 6180 { |
6181 count++; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6182 if (rex.reg_line_lbr) |
7 | 6183 ADVANCE_REGINPUT(); |
6184 else | |
6185 reg_nextline(); | |
6186 scan = reginput; | |
6187 if (got_int) | |
6188 break; | |
6189 } | |
6190 break; | |
6191 | |
6192 default: /* Oh dear. Called inappropriately. */ | |
6193 EMSG(_(e_re_corr)); | |
6194 #ifdef DEBUG | |
6195 printf("Called regrepeat with op code %d\n", OP(p)); | |
6196 #endif | |
6197 break; | |
6198 } | |
6199 | |
6200 reginput = scan; | |
6201 | |
6202 return (int)count; | |
6203 } | |
6204 | |
6205 /* | |
6206 * regnext - dig the "next" pointer out of a node | |
2010 | 6207 * Returns NULL when calculating size, when there is no next item and when |
6208 * there is an error. | |
7 | 6209 */ |
6210 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6211 regnext(char_u *p) |
7 | 6212 { |
6213 int offset; | |
6214 | |
2010 | 6215 if (p == JUST_CALC_SIZE || reg_toolong) |
7 | 6216 return NULL; |
6217 | |
6218 offset = NEXT(p); | |
6219 if (offset == 0) | |
6220 return NULL; | |
6221 | |
233 | 6222 if (OP(p) == BACK) |
7 | 6223 return p - offset; |
6224 else | |
6225 return p + offset; | |
6226 } | |
6227 | |
6228 /* | |
6229 * Check the regexp program for its magic number. | |
6230 * Return TRUE if it's wrong. | |
6231 */ | |
6232 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6233 prog_magic_wrong(void) |
7 | 6234 { |
4444 | 6235 regprog_T *prog; |
6236 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6237 prog = REG_MULTI ? rex.reg_mmatch->regprog : rex.reg_match->regprog; |
4444 | 6238 if (prog->engine == &nfa_regengine) |
6239 /* For NFA matcher we don't check the magic */ | |
6240 return FALSE; | |
6241 | |
6242 if (UCHARAT(((bt_regprog_T *)prog)->program) != REGMAGIC) | |
7 | 6243 { |
6244 EMSG(_(e_re_corr)); | |
6245 return TRUE; | |
6246 } | |
6247 return FALSE; | |
6248 } | |
6249 | |
6250 /* | |
6251 * Cleanup the subexpressions, if this wasn't done yet. | |
6252 * This construction is used to clear the subexpressions only when they are | |
6253 * used (to increase speed). | |
6254 */ | |
6255 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6256 cleanup_subexpr(void) |
7 | 6257 { |
6258 if (need_clear_subexpr) | |
6259 { | |
6260 if (REG_MULTI) | |
6261 { | |
6262 /* 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
|
6263 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
|
6264 vim_memset(rex.reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP); |
7 | 6265 } |
6266 else | |
6267 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6268 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
|
6269 vim_memset(rex.reg_endp, 0, sizeof(char_u *) * NSUBEXP); |
7 | 6270 } |
6271 need_clear_subexpr = FALSE; | |
6272 } | |
6273 } | |
6274 | |
6275 #ifdef FEAT_SYN_HL | |
6276 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6277 cleanup_zsubexpr(void) |
7 | 6278 { |
6279 if (need_clear_zsubexpr) | |
6280 { | |
6281 if (REG_MULTI) | |
6282 { | |
6283 /* Use 0xff to set lnum to -1 */ | |
6284 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6285 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP); | |
6286 } | |
6287 else | |
6288 { | |
6289 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP); | |
6290 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP); | |
6291 } | |
6292 need_clear_zsubexpr = FALSE; | |
6293 } | |
6294 } | |
6295 #endif | |
6296 | |
6297 /* | |
1579 | 6298 * Save the current subexpr to "bp", so that they can be restored |
6299 * later by restore_subexpr(). | |
6300 */ | |
6301 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6302 save_subexpr(regbehind_T *bp) |
1579 | 6303 { |
6304 int i; | |
6305 | |
1602 | 6306 /* When "need_clear_subexpr" is set we don't need to save the values, only |
6307 * remember that this flag needs to be set again when restoring. */ | |
6308 bp->save_need_clear_subexpr = need_clear_subexpr; | |
6309 if (!need_clear_subexpr) | |
1579 | 6310 { |
1602 | 6311 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6312 { |
1602 | 6313 if (REG_MULTI) |
6314 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6315 bp->save_start[i].se_u.pos = rex.reg_startpos[i]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6316 bp->save_end[i].se_u.pos = rex.reg_endpos[i]; |
1602 | 6317 } |
6318 else | |
6319 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6320 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
|
6321 bp->save_end[i].se_u.ptr = rex.reg_endp[i]; |
1602 | 6322 } |
1579 | 6323 } |
6324 } | |
6325 } | |
6326 | |
6327 /* | |
6328 * Restore the subexpr from "bp". | |
6329 */ | |
6330 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6331 restore_subexpr(regbehind_T *bp) |
1579 | 6332 { |
6333 int i; | |
6334 | |
1602 | 6335 /* Only need to restore saved values when they are not to be cleared. */ |
6336 need_clear_subexpr = bp->save_need_clear_subexpr; | |
6337 if (!need_clear_subexpr) | |
1579 | 6338 { |
1602 | 6339 for (i = 0; i < NSUBEXP; ++i) |
1579 | 6340 { |
1602 | 6341 if (REG_MULTI) |
6342 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6343 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
|
6344 rex.reg_endpos[i] = bp->save_end[i].se_u.pos; |
1602 | 6345 } |
6346 else | |
6347 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6348 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
|
6349 rex.reg_endp[i] = bp->save_end[i].se_u.ptr; |
1602 | 6350 } |
1579 | 6351 } |
6352 } | |
6353 } | |
6354 | |
6355 /* | |
7 | 6356 * Advance reglnum, regline and reginput to the next line. |
6357 */ | |
6358 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6359 reg_nextline(void) |
7 | 6360 { |
6361 regline = reg_getline(++reglnum); | |
6362 reginput = regline; | |
6363 fast_breakcheck(); | |
6364 } | |
6365 | |
6366 /* | |
6367 * Save the input line and position in a regsave_T. | |
6368 */ | |
6369 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6370 reg_save(regsave_T *save, garray_T *gap) |
7 | 6371 { |
6372 if (REG_MULTI) | |
6373 { | |
6374 save->rs_u.pos.col = (colnr_T)(reginput - regline); | |
6375 save->rs_u.pos.lnum = reglnum; | |
6376 } | |
6377 else | |
6378 save->rs_u.ptr = reginput; | |
233 | 6379 save->rs_len = gap->ga_len; |
7 | 6380 } |
6381 | |
6382 /* | |
6383 * Restore the input line and position from a regsave_T. | |
6384 */ | |
6385 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6386 reg_restore(regsave_T *save, garray_T *gap) |
7 | 6387 { |
6388 if (REG_MULTI) | |
6389 { | |
6390 if (reglnum != save->rs_u.pos.lnum) | |
6391 { | |
6392 /* only call reg_getline() when the line number changed to save | |
6393 * a bit of time */ | |
6394 reglnum = save->rs_u.pos.lnum; | |
6395 regline = reg_getline(reglnum); | |
6396 } | |
6397 reginput = regline + save->rs_u.pos.col; | |
6398 } | |
6399 else | |
6400 reginput = save->rs_u.ptr; | |
233 | 6401 gap->ga_len = save->rs_len; |
7 | 6402 } |
6403 | |
6404 /* | |
6405 * Return TRUE if current position is equal to saved position. | |
6406 */ | |
6407 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6408 reg_save_equal(regsave_T *save) |
7 | 6409 { |
6410 if (REG_MULTI) | |
6411 return reglnum == save->rs_u.pos.lnum | |
6412 && reginput == regline + save->rs_u.pos.col; | |
6413 return reginput == save->rs_u.ptr; | |
6414 } | |
6415 | |
6416 /* | |
6417 * Tentatively set the sub-expression start to the current position (after | |
6418 * calling regmatch() they will have changed). Need to save the existing | |
6419 * values for when there is no match. | |
6420 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()), | |
6421 * depending on REG_MULTI. | |
6422 */ | |
6423 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6424 save_se_multi(save_se_T *savep, lpos_T *posp) |
7 | 6425 { |
6426 savep->se_u.pos = *posp; | |
6427 posp->lnum = reglnum; | |
6428 posp->col = (colnr_T)(reginput - regline); | |
6429 } | |
6430 | |
6431 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6432 save_se_one(save_se_T *savep, char_u **pp) |
7 | 6433 { |
6434 savep->se_u.ptr = *pp; | |
6435 *pp = reginput; | |
6436 } | |
6437 | |
6438 /* | |
6439 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL. | |
6440 */ | |
6441 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6442 re_num_cmp(long_u val, char_u *scan) |
7 | 6443 { |
6444 long_u n = OPERAND_MIN(scan); | |
6445 | |
6446 if (OPERAND_CMP(scan) == '>') | |
6447 return val > n; | |
6448 if (OPERAND_CMP(scan) == '<') | |
6449 return val < n; | |
6450 return val == n; | |
6451 } | |
6452 | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6453 /* |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6454 * Check whether a backreference matches. |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6455 * Returns RA_FAIL, RA_NOMATCH or RA_MATCH. |
5504 | 6456 * If "bytelen" is not NULL, it is set to the byte length of the match in the |
6457 * last line. | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6458 */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6459 static int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6460 match_with_backref( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6461 linenr_T start_lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6462 colnr_T start_col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6463 linenr_T end_lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6464 colnr_T end_col, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6465 int *bytelen) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6466 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6467 linenr_T clnum = start_lnum; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6468 colnr_T ccol = start_col; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6469 int len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6470 char_u *p; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6471 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6472 if (bytelen != NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6473 *bytelen = 0; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6474 for (;;) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6475 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6476 /* 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
|
6477 * Slow! */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6478 if (regline != reg_tofree) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6479 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6480 len = (int)STRLEN(regline); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6481 if (reg_tofree == NULL || len >= (int)reg_tofreelen) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6482 { |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6483 len += 50; /* get some extra */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6484 vim_free(reg_tofree); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6485 reg_tofree = alloc(len); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6486 if (reg_tofree == NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6487 return RA_FAIL; /* out of memory!*/ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6488 reg_tofreelen = len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6489 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6490 STRCPY(reg_tofree, regline); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6491 reginput = reg_tofree + (reginput - regline); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6492 regline = reg_tofree; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6493 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6494 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6495 /* Get the line to compare with. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6496 p = reg_getline(clnum); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6497 if (clnum == end_lnum) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6498 len = end_col - ccol; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6499 else |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6500 len = (int)STRLEN(p + ccol); |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6501 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6502 if (cstrncmp(p + ccol, reginput, &len) != 0) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6503 return RA_NOMATCH; /* doesn't match */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6504 if (bytelen != NULL) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6505 *bytelen += len; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6506 if (clnum == end_lnum) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6507 break; /* match and at end! */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
6508 if (reglnum >= rex.reg_maxline) |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6509 return RA_NOMATCH; /* text too short */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6510 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6511 /* Advance to next line. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6512 reg_nextline(); |
5504 | 6513 if (bytelen != NULL) |
6514 *bytelen = 0; | |
4891
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6515 ++clnum; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6516 ccol = 0; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6517 if (got_int) |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6518 return RA_FAIL; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6519 } |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6520 |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6521 /* found a match! Note that regline may now point to a copy of the line, |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6522 * that should not matter. */ |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6523 return RA_MATCH; |
4c42efb4c098
updated for version 7.3.1191
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
6524 } |
7 | 6525 |
4444 | 6526 #ifdef BT_REGEXP_DUMP |
7 | 6527 |
6528 /* | |
6529 * regdump - dump a regexp onto stdout in vaguely comprehensible form | |
6530 */ | |
6531 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6532 regdump(char_u *pattern, bt_regprog_T *r) |
7 | 6533 { |
6534 char_u *s; | |
6535 int op = EXACTLY; /* Arbitrary non-END op. */ | |
6536 char_u *next; | |
6537 char_u *end = NULL; | |
4444 | 6538 FILE *f; |
6539 | |
6540 #ifdef BT_REGEXP_LOG | |
6541 f = fopen("bt_regexp_log.log", "a"); | |
6542 #else | |
6543 f = stdout; | |
6544 #endif | |
6545 if (f == NULL) | |
6546 return; | |
6547 fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern); | |
7 | 6548 |
6549 s = r->program + 1; | |
6550 /* | |
6551 * Loop until we find the END that isn't before a referred next (an END | |
6552 * can also appear in a NOMATCH operand). | |
6553 */ | |
6554 while (op != END || s <= end) | |
6555 { | |
6556 op = OP(s); | |
4444 | 6557 fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */ |
7 | 6558 next = regnext(s); |
6559 if (next == NULL) /* Next ptr. */ | |
4444 | 6560 fprintf(f, "(0)"); |
7 | 6561 else |
4444 | 6562 fprintf(f, "(%d)", (int)((s - r->program) + (next - s))); |
7 | 6563 if (end < next) |
6564 end = next; | |
6565 if (op == BRACE_LIMITS) | |
6566 { | |
4746
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6567 /* Two ints */ |
4444 | 6568 fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s)); |
7 | 6569 s += 8; |
6570 } | |
4746
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6571 else if (op == BEHIND || op == NOBEHIND) |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6572 { |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6573 /* one int */ |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6574 fprintf(f, " count %ld", OPERAND_MIN(s)); |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6575 s += 4; |
d1376091d18b
updated for version 7.3.1120
Bram Moolenaar <bram@vim.org>
parents:
4744
diff
changeset
|
6576 } |
4770
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6577 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
|
6578 { |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6579 /* one int plus comperator */ |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6580 fprintf(f, " count %ld", OPERAND_MIN(s)); |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6581 s += 5; |
b20dbf3a5370
updated for version 7.3.1132
Bram Moolenaar <bram@vim.org>
parents:
4762
diff
changeset
|
6582 } |
7 | 6583 s += 3; |
6584 if (op == ANYOF || op == ANYOF + ADD_NL | |
6585 || op == ANYBUT || op == ANYBUT + ADD_NL | |
6586 || op == EXACTLY) | |
6587 { | |
6588 /* Literal string, where present. */ | |
4444 | 6589 fprintf(f, "\nxxxxxxxxx\n"); |
7 | 6590 while (*s != NUL) |
4444 | 6591 fprintf(f, "%c", *s++); |
6592 fprintf(f, "\nxxxxxxxxx\n"); | |
7 | 6593 s++; |
6594 } | |
4444 | 6595 fprintf(f, "\r\n"); |
7 | 6596 } |
6597 | |
6598 /* Header fields of interest. */ | |
6599 if (r->regstart != NUL) | |
4444 | 6600 fprintf(f, "start `%s' 0x%x; ", r->regstart < 256 |
7 | 6601 ? (char *)transchar(r->regstart) |
6602 : "multibyte", r->regstart); | |
6603 if (r->reganch) | |
4444 | 6604 fprintf(f, "anchored; "); |
7 | 6605 if (r->regmust != NULL) |
4444 | 6606 fprintf(f, "must have \"%s\"", r->regmust); |
6607 fprintf(f, "\r\n"); | |
6608 | |
6609 #ifdef BT_REGEXP_LOG | |
6610 fclose(f); | |
6611 #endif | |
7 | 6612 } |
4444 | 6613 #endif /* BT_REGEXP_DUMP */ |
6614 | |
6615 #ifdef DEBUG | |
7 | 6616 /* |
6617 * regprop - printable representation of opcode | |
6618 */ | |
6619 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
6620 regprop(char_u *op) |
7 | 6621 { |
4444 | 6622 char *p; |
6623 static char buf[50]; | |
6624 | |
6625 STRCPY(buf, ":"); | |
6626 | |
6627 switch ((int) OP(op)) | |
7 | 6628 { |
6629 case BOL: | |
6630 p = "BOL"; | |
6631 break; | |
6632 case EOL: | |
6633 p = "EOL"; | |
6634 break; | |
6635 case RE_BOF: | |
6636 p = "BOF"; | |
6637 break; | |
6638 case RE_EOF: | |
6639 p = "EOF"; | |
6640 break; | |
6641 case CURSOR: | |
6642 p = "CURSOR"; | |
6643 break; | |
639 | 6644 case RE_VISUAL: |
6645 p = "RE_VISUAL"; | |
6646 break; | |
7 | 6647 case RE_LNUM: |
6648 p = "RE_LNUM"; | |
6649 break; | |
639 | 6650 case RE_MARK: |
6651 p = "RE_MARK"; | |
6652 break; | |
7 | 6653 case RE_COL: |
6654 p = "RE_COL"; | |
6655 break; | |
6656 case RE_VCOL: | |
6657 p = "RE_VCOL"; | |
6658 break; | |
6659 case BOW: | |
6660 p = "BOW"; | |
6661 break; | |
6662 case EOW: | |
6663 p = "EOW"; | |
6664 break; | |
6665 case ANY: | |
6666 p = "ANY"; | |
6667 break; | |
6668 case ANY + ADD_NL: | |
6669 p = "ANY+NL"; | |
6670 break; | |
6671 case ANYOF: | |
6672 p = "ANYOF"; | |
6673 break; | |
6674 case ANYOF + ADD_NL: | |
6675 p = "ANYOF+NL"; | |
6676 break; | |
6677 case ANYBUT: | |
6678 p = "ANYBUT"; | |
6679 break; | |
6680 case ANYBUT + ADD_NL: | |
6681 p = "ANYBUT+NL"; | |
6682 break; | |
6683 case IDENT: | |
6684 p = "IDENT"; | |
6685 break; | |
6686 case IDENT + ADD_NL: | |
6687 p = "IDENT+NL"; | |
6688 break; | |
6689 case SIDENT: | |
6690 p = "SIDENT"; | |
6691 break; | |
6692 case SIDENT + ADD_NL: | |
6693 p = "SIDENT+NL"; | |
6694 break; | |
6695 case KWORD: | |
6696 p = "KWORD"; | |
6697 break; | |
6698 case KWORD + ADD_NL: | |
6699 p = "KWORD+NL"; | |
6700 break; | |
6701 case SKWORD: | |
6702 p = "SKWORD"; | |
6703 break; | |
6704 case SKWORD + ADD_NL: | |
6705 p = "SKWORD+NL"; | |
6706 break; | |
6707 case FNAME: | |
6708 p = "FNAME"; | |
6709 break; | |
6710 case FNAME + ADD_NL: | |
6711 p = "FNAME+NL"; | |
6712 break; | |
6713 case SFNAME: | |
6714 p = "SFNAME"; | |
6715 break; | |
6716 case SFNAME + ADD_NL: | |
6717 p = "SFNAME+NL"; | |
6718 break; | |
6719 case PRINT: | |
6720 p = "PRINT"; | |
6721 break; | |
6722 case PRINT + ADD_NL: | |
6723 p = "PRINT+NL"; | |
6724 break; | |
6725 case SPRINT: | |
6726 p = "SPRINT"; | |
6727 break; | |
6728 case SPRINT + ADD_NL: | |
6729 p = "SPRINT+NL"; | |
6730 break; | |
6731 case WHITE: | |
6732 p = "WHITE"; | |
6733 break; | |
6734 case WHITE + ADD_NL: | |
6735 p = "WHITE+NL"; | |
6736 break; | |
6737 case NWHITE: | |
6738 p = "NWHITE"; | |
6739 break; | |
6740 case NWHITE + ADD_NL: | |
6741 p = "NWHITE+NL"; | |
6742 break; | |
6743 case DIGIT: | |
6744 p = "DIGIT"; | |
6745 break; | |
6746 case DIGIT + ADD_NL: | |
6747 p = "DIGIT+NL"; | |
6748 break; | |
6749 case NDIGIT: | |
6750 p = "NDIGIT"; | |
6751 break; | |
6752 case NDIGIT + ADD_NL: | |
6753 p = "NDIGIT+NL"; | |
6754 break; | |
6755 case HEX: | |
6756 p = "HEX"; | |
6757 break; | |
6758 case HEX + ADD_NL: | |
6759 p = "HEX+NL"; | |
6760 break; | |
6761 case NHEX: | |
6762 p = "NHEX"; | |
6763 break; | |
6764 case NHEX + ADD_NL: | |
6765 p = "NHEX+NL"; | |
6766 break; | |
6767 case OCTAL: | |
6768 p = "OCTAL"; | |
6769 break; | |
6770 case OCTAL + ADD_NL: | |
6771 p = "OCTAL+NL"; | |
6772 break; | |
6773 case NOCTAL: | |
6774 p = "NOCTAL"; | |
6775 break; | |
6776 case NOCTAL + ADD_NL: | |
6777 p = "NOCTAL+NL"; | |
6778 break; | |
6779 case WORD: | |
6780 p = "WORD"; | |
6781 break; | |
6782 case WORD + ADD_NL: | |
6783 p = "WORD+NL"; | |
6784 break; | |
6785 case NWORD: | |
6786 p = "NWORD"; | |
6787 break; | |
6788 case NWORD + ADD_NL: | |
6789 p = "NWORD+NL"; | |
6790 break; | |
6791 case HEAD: | |
6792 p = "HEAD"; | |
6793 break; | |
6794 case HEAD + ADD_NL: | |
6795 p = "HEAD+NL"; | |
6796 break; | |
6797 case NHEAD: | |
6798 p = "NHEAD"; | |
6799 break; | |
6800 case NHEAD + ADD_NL: | |
6801 p = "NHEAD+NL"; | |
6802 break; | |
6803 case ALPHA: | |
6804 p = "ALPHA"; | |
6805 break; | |
6806 case ALPHA + ADD_NL: | |
6807 p = "ALPHA+NL"; | |
6808 break; | |
6809 case NALPHA: | |
6810 p = "NALPHA"; | |
6811 break; | |
6812 case NALPHA + ADD_NL: | |
6813 p = "NALPHA+NL"; | |
6814 break; | |
6815 case LOWER: | |
6816 p = "LOWER"; | |
6817 break; | |
6818 case LOWER + ADD_NL: | |
6819 p = "LOWER+NL"; | |
6820 break; | |
6821 case NLOWER: | |
6822 p = "NLOWER"; | |
6823 break; | |
6824 case NLOWER + ADD_NL: | |
6825 p = "NLOWER+NL"; | |
6826 break; | |
6827 case UPPER: | |
6828 p = "UPPER"; | |
6829 break; | |
6830 case UPPER + ADD_NL: | |
6831 p = "UPPER+NL"; | |
6832 break; | |
6833 case NUPPER: | |
6834 p = "NUPPER"; | |
6835 break; | |
6836 case NUPPER + ADD_NL: | |
6837 p = "NUPPER+NL"; | |
6838 break; | |
6839 case BRANCH: | |
6840 p = "BRANCH"; | |
6841 break; | |
6842 case EXACTLY: | |
6843 p = "EXACTLY"; | |
6844 break; | |
6845 case NOTHING: | |
6846 p = "NOTHING"; | |
6847 break; | |
6848 case BACK: | |
6849 p = "BACK"; | |
6850 break; | |
6851 case END: | |
6852 p = "END"; | |
6853 break; | |
6854 case MOPEN + 0: | |
6855 p = "MATCH START"; | |
6856 break; | |
6857 case MOPEN + 1: | |
6858 case MOPEN + 2: | |
6859 case MOPEN + 3: | |
6860 case MOPEN + 4: | |
6861 case MOPEN + 5: | |
6862 case MOPEN + 6: | |
6863 case MOPEN + 7: | |
6864 case MOPEN + 8: | |
6865 case MOPEN + 9: | |
6866 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN); | |
6867 p = NULL; | |
6868 break; | |
6869 case MCLOSE + 0: | |
6870 p = "MATCH END"; | |
6871 break; | |
6872 case MCLOSE + 1: | |
6873 case MCLOSE + 2: | |
6874 case MCLOSE + 3: | |
6875 case MCLOSE + 4: | |
6876 case MCLOSE + 5: | |
6877 case MCLOSE + 6: | |
6878 case MCLOSE + 7: | |
6879 case MCLOSE + 8: | |
6880 case MCLOSE + 9: | |
6881 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE); | |
6882 p = NULL; | |
6883 break; | |
6884 case BACKREF + 1: | |
6885 case BACKREF + 2: | |
6886 case BACKREF + 3: | |
6887 case BACKREF + 4: | |
6888 case BACKREF + 5: | |
6889 case BACKREF + 6: | |
6890 case BACKREF + 7: | |
6891 case BACKREF + 8: | |
6892 case BACKREF + 9: | |
6893 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF); | |
6894 p = NULL; | |
6895 break; | |
6896 case NOPEN: | |
6897 p = "NOPEN"; | |
6898 break; | |
6899 case NCLOSE: | |
6900 p = "NCLOSE"; | |
6901 break; | |
6902 #ifdef FEAT_SYN_HL | |
6903 case ZOPEN + 1: | |
6904 case ZOPEN + 2: | |
6905 case ZOPEN + 3: | |
6906 case ZOPEN + 4: | |
6907 case ZOPEN + 5: | |
6908 case ZOPEN + 6: | |
6909 case ZOPEN + 7: | |
6910 case ZOPEN + 8: | |
6911 case ZOPEN + 9: | |
6912 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN); | |
6913 p = NULL; | |
6914 break; | |
6915 case ZCLOSE + 1: | |
6916 case ZCLOSE + 2: | |
6917 case ZCLOSE + 3: | |
6918 case ZCLOSE + 4: | |
6919 case ZCLOSE + 5: | |
6920 case ZCLOSE + 6: | |
6921 case ZCLOSE + 7: | |
6922 case ZCLOSE + 8: | |
6923 case ZCLOSE + 9: | |
6924 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE); | |
6925 p = NULL; | |
6926 break; | |
6927 case ZREF + 1: | |
6928 case ZREF + 2: | |
6929 case ZREF + 3: | |
6930 case ZREF + 4: | |
6931 case ZREF + 5: | |
6932 case ZREF + 6: | |
6933 case ZREF + 7: | |
6934 case ZREF + 8: | |
6935 case ZREF + 9: | |
6936 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF); | |
6937 p = NULL; | |
6938 break; | |
6939 #endif | |
6940 case STAR: | |
6941 p = "STAR"; | |
6942 break; | |
6943 case PLUS: | |
6944 p = "PLUS"; | |
6945 break; | |
6946 case NOMATCH: | |
6947 p = "NOMATCH"; | |
6948 break; | |
6949 case MATCH: | |
6950 p = "MATCH"; | |
6951 break; | |
6952 case BEHIND: | |
6953 p = "BEHIND"; | |
6954 break; | |
6955 case NOBEHIND: | |
6956 p = "NOBEHIND"; | |
6957 break; | |
6958 case SUBPAT: | |
6959 p = "SUBPAT"; | |
6960 break; | |
6961 case BRACE_LIMITS: | |
6962 p = "BRACE_LIMITS"; | |
6963 break; | |
6964 case BRACE_SIMPLE: | |
6965 p = "BRACE_SIMPLE"; | |
6966 break; | |
6967 case BRACE_COMPLEX + 0: | |
6968 case BRACE_COMPLEX + 1: | |
6969 case BRACE_COMPLEX + 2: | |
6970 case BRACE_COMPLEX + 3: | |
6971 case BRACE_COMPLEX + 4: | |
6972 case BRACE_COMPLEX + 5: | |
6973 case BRACE_COMPLEX + 6: | |
6974 case BRACE_COMPLEX + 7: | |
6975 case BRACE_COMPLEX + 8: | |
6976 case BRACE_COMPLEX + 9: | |
6977 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX); | |
6978 p = NULL; | |
6979 break; | |
6980 #ifdef FEAT_MBYTE | |
6981 case MULTIBYTECODE: | |
6982 p = "MULTIBYTECODE"; | |
6983 break; | |
6984 #endif | |
6985 case NEWL: | |
6986 p = "NEWL"; | |
6987 break; | |
6988 default: | |
6989 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op)); | |
6990 p = NULL; | |
6991 break; | |
6992 } | |
6993 if (p != NULL) | |
4444 | 6994 STRCAT(buf, p); |
6995 return (char_u *)buf; | |
7 | 6996 } |
4444 | 6997 #endif /* DEBUG */ |
7 | 6998 |
6203 | 6999 /* |
7000 * Used in a place where no * or \+ can follow. | |
7001 */ | |
7002 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7003 re_mult_next(char *what) |
6203 | 7004 { |
7005 if (re_multi_type(peekchr()) == MULTI_MULT) | |
7006 EMSG2_RET_FAIL(_("E888: (NFA regexp) cannot repeat %s"), what); | |
7007 return OK; | |
7008 } | |
7009 | |
7 | 7010 #ifdef FEAT_MBYTE |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7011 static void mb_decompose(int c, int *c1, int *c2, int *c3); |
7 | 7012 |
7013 typedef struct | |
7014 { | |
7015 int a, b, c; | |
7016 } decomp_T; | |
7017 | |
7018 | |
7019 /* 0xfb20 - 0xfb4f */ | |
297 | 7020 static decomp_T decomp_table[0xfb4f-0xfb20+1] = |
7 | 7021 { |
7022 {0x5e2,0,0}, /* 0xfb20 alt ayin */ | |
7023 {0x5d0,0,0}, /* 0xfb21 alt alef */ | |
7024 {0x5d3,0,0}, /* 0xfb22 alt dalet */ | |
7025 {0x5d4,0,0}, /* 0xfb23 alt he */ | |
7026 {0x5db,0,0}, /* 0xfb24 alt kaf */ | |
7027 {0x5dc,0,0}, /* 0xfb25 alt lamed */ | |
7028 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */ | |
7029 {0x5e8,0,0}, /* 0xfb27 alt resh */ | |
7030 {0x5ea,0,0}, /* 0xfb28 alt tav */ | |
7031 {'+', 0, 0}, /* 0xfb29 alt plus */ | |
7032 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */ | |
7033 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */ | |
7034 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */ | |
7035 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */ | |
7036 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */ | |
7037 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */ | |
7038 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */ | |
7039 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */ | |
7040 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */ | |
7041 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */ | |
7042 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */ | |
7043 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */ | |
7044 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */ | |
7045 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */ | |
7046 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */ | |
7047 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */ | |
7048 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */ | |
7049 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */ | |
7050 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */ | |
7051 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */ | |
7052 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */ | |
7053 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */ | |
7054 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */ | |
7055 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */ | |
7056 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */ | |
7057 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */ | |
7058 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */ | |
7059 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */ | |
7060 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */ | |
7061 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */ | |
7062 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */ | |
7063 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */ | |
7064 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */ | |
7065 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */ | |
7066 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */ | |
7067 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */ | |
7068 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */ | |
7069 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */ | |
7070 }; | |
7071 | |
7072 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7073 mb_decompose(int c, int *c1, int *c2, int *c3) |
7 | 7074 { |
7075 decomp_T d; | |
7076 | |
4505
d037b9cbdaaa
updated for version 7.3.1000
Bram Moolenaar <bram@vim.org>
parents:
4466
diff
changeset
|
7077 if (c >= 0xfb20 && c <= 0xfb4f) |
7 | 7078 { |
7079 d = decomp_table[c - 0xfb20]; | |
7080 *c1 = d.a; | |
7081 *c2 = d.b; | |
7082 *c3 = d.c; | |
7083 } | |
7084 else | |
7085 { | |
7086 *c1 = c; | |
7087 *c2 = *c3 = 0; | |
7088 } | |
7089 } | |
7090 #endif | |
7091 | |
7092 /* | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7093 * Compare two strings, ignore case if rex.reg_ic set. |
7 | 7094 * Return 0 if strings match, non-zero otherwise. |
7095 * Correct the length "*n" when composing characters are ignored. | |
7096 */ | |
7097 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7098 cstrncmp(char_u *s1, char_u *s2, int *n) |
7 | 7099 { |
7100 int result; | |
7101 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7102 if (!rex.reg_ic) |
7 | 7103 result = STRNCMP(s1, s2, *n); |
7104 else | |
7105 result = MB_STRNICMP(s1, s2, *n); | |
7106 | |
7107 #ifdef FEAT_MBYTE | |
7108 /* 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
|
7109 if (result != 0 && enc_utf8 && rex.reg_icombine) |
7 | 7110 { |
7111 char_u *str1, *str2; | |
7112 int c1, c2, c11, c12; | |
7113 int junk; | |
7114 | |
7115 /* we have to handle the strcmp ourselves, since it is necessary to | |
7116 * deal with the composing characters by ignoring them: */ | |
7117 str1 = s1; | |
7118 str2 = s2; | |
7119 c1 = c2 = 0; | |
507 | 7120 while ((int)(str1 - s1) < *n) |
7 | 7121 { |
7122 c1 = mb_ptr2char_adv(&str1); | |
7123 c2 = mb_ptr2char_adv(&str2); | |
7124 | |
7125 /* decompose the character if necessary, into 'base' characters | |
7126 * because I don't care about Arabic, I will hard-code the Hebrew | |
7127 * 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
|
7128 if (c1 != c2 && (!rex.reg_ic || utf_fold(c1) != utf_fold(c2))) |
7 | 7129 { |
7130 /* decomposition necessary? */ | |
7131 mb_decompose(c1, &c11, &junk, &junk); | |
7132 mb_decompose(c2, &c12, &junk, &junk); | |
7133 c1 = c11; | |
7134 c2 = c12; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7135 if (c11 != c12 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7136 && (!rex.reg_ic || utf_fold(c11) != utf_fold(c12))) |
7 | 7137 break; |
7138 } | |
7139 } | |
7140 result = c2 - c1; | |
7141 if (result == 0) | |
7142 *n = (int)(str2 - s2); | |
7143 } | |
7144 #endif | |
7145 | |
7146 return result; | |
7147 } | |
7148 | |
7149 /* | |
7150 * cstrchr: This function is used a lot for simple searches, keep it fast! | |
7151 */ | |
7152 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7153 cstrchr(char_u *s, int c) |
7 | 7154 { |
7155 char_u *p; | |
7156 int cc; | |
7157 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7158 if (!rex.reg_ic |
7 | 7159 #ifdef FEAT_MBYTE |
7160 || (!enc_utf8 && mb_char2len(c) > 1) | |
7161 #endif | |
7162 ) | |
7163 return vim_strchr(s, c); | |
7164 | |
7165 /* tolower() and toupper() can be slow, comparing twice should be a lot | |
7166 * faster (esp. when using MS Visual C++!). | |
7167 * For UTF-8 need to use folded case. */ | |
7168 #ifdef FEAT_MBYTE | |
7169 if (enc_utf8 && c > 0x80) | |
7170 cc = utf_fold(c); | |
7171 else | |
7172 #endif | |
1347 | 7173 if (MB_ISUPPER(c)) |
7174 cc = MB_TOLOWER(c); | |
7175 else if (MB_ISLOWER(c)) | |
7176 cc = MB_TOUPPER(c); | |
7 | 7177 else |
7178 return vim_strchr(s, c); | |
7179 | |
7180 #ifdef FEAT_MBYTE | |
7181 if (has_mbyte) | |
7182 { | |
474 | 7183 for (p = s; *p != NUL; p += (*mb_ptr2len)(p)) |
7 | 7184 { |
7185 if (enc_utf8 && c > 0x80) | |
7186 { | |
7187 if (utf_fold(utf_ptr2char(p)) == cc) | |
7188 return p; | |
7189 } | |
7190 else if (*p == c || *p == cc) | |
7191 return p; | |
7192 } | |
7193 } | |
7194 else | |
7195 #endif | |
7196 /* Faster version for when there are no multi-byte characters. */ | |
7197 for (p = s; *p != NUL; ++p) | |
7198 if (*p == c || *p == cc) | |
7199 return p; | |
7200 | |
7201 return NULL; | |
7202 } | |
7203 | |
7204 /*************************************************************** | |
7205 * regsub stuff * | |
7206 ***************************************************************/ | |
7207 | |
7208 /* | |
7209 * We should define ftpr as a pointer to a function returning a pointer to | |
7210 * a function returning a pointer to a function ... | |
7211 * This is impossible, so we declare a pointer to a function returning a | |
7212 * pointer to a function returning void. This should work for all compilers. | |
7213 */ | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7214 typedef void (*(*fptr_T)(int *, int))(); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7215 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7216 static fptr_T do_upper(int *, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7217 static fptr_T do_Upper(int *, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7218 static fptr_T do_lower(int *, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7219 static fptr_T do_Lower(int *, int); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7220 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7221 static int vim_regsub_both(char_u *source, typval_T *expr, char_u *dest, int copy, int magic, int backslash); |
7 | 7222 |
772 | 7223 static fptr_T |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7224 do_upper(int *d, int c) |
7 | 7225 { |
772 | 7226 *d = MB_TOUPPER(c); |
7227 | |
7228 return (fptr_T)NULL; | |
7 | 7229 } |
7230 | |
772 | 7231 static fptr_T |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7232 do_Upper(int *d, int c) |
7 | 7233 { |
772 | 7234 *d = MB_TOUPPER(c); |
7235 | |
7236 return (fptr_T)do_Upper; | |
7237 } | |
7238 | |
7239 static fptr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7240 do_lower(int *d, int c) |
772 | 7241 { |
7242 *d = MB_TOLOWER(c); | |
7243 | |
7244 return (fptr_T)NULL; | |
7245 } | |
7246 | |
7247 static fptr_T | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7248 do_Lower(int *d, int c) |
772 | 7249 { |
7250 *d = MB_TOLOWER(c); | |
7251 | |
7252 return (fptr_T)do_Lower; | |
7 | 7253 } |
7254 | |
7255 /* | |
7256 * regtilde(): Replace tildes in the pattern by the old pattern. | |
7257 * | |
7258 * Short explanation of the tilde: It stands for the previous replacement | |
7259 * pattern. If that previous pattern also contains a ~ we should go back a | |
7260 * step further... But we insert the previous pattern into the current one | |
7261 * and remember that. | |
772 | 7262 * This still does not handle the case where "magic" changes. So require the |
7263 * user to keep his hands off of "magic". | |
7 | 7264 * |
7265 * The tildes are parsed once before the first call to vim_regsub(). | |
7266 */ | |
7267 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7268 regtilde(char_u *source, int magic) |
7 | 7269 { |
7270 char_u *newsub = source; | |
7271 char_u *tmpsub; | |
7272 char_u *p; | |
7273 int len; | |
7274 int prevlen; | |
7275 | |
7276 for (p = newsub; *p; ++p) | |
7277 { | |
7278 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic)) | |
7279 { | |
7280 if (reg_prev_sub != NULL) | |
7281 { | |
7282 /* length = len(newsub) - 1 + len(prev_sub) + 1 */ | |
7283 prevlen = (int)STRLEN(reg_prev_sub); | |
7284 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen)); | |
7285 if (tmpsub != NULL) | |
7286 { | |
7287 /* copy prefix */ | |
7288 len = (int)(p - newsub); /* not including ~ */ | |
7289 mch_memmove(tmpsub, newsub, (size_t)len); | |
1209 | 7290 /* interpret tilde */ |
7 | 7291 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen); |
7292 /* copy postfix */ | |
7293 if (!magic) | |
7294 ++p; /* back off \ */ | |
7295 STRCPY(tmpsub + len + prevlen, p + 1); | |
7296 | |
7297 if (newsub != source) /* already allocated newsub */ | |
7298 vim_free(newsub); | |
7299 newsub = tmpsub; | |
7300 p = newsub + len + prevlen; | |
7301 } | |
7302 } | |
7303 else if (magic) | |
1621 | 7304 STRMOVE(p, p + 1); /* remove '~' */ |
7 | 7305 else |
1621 | 7306 STRMOVE(p, p + 2); /* remove '\~' */ |
7 | 7307 --p; |
7308 } | |
7309 else | |
7310 { | |
7311 if (*p == '\\' && p[1]) /* skip escaped characters */ | |
7312 ++p; | |
7313 #ifdef FEAT_MBYTE | |
7314 if (has_mbyte) | |
474 | 7315 p += (*mb_ptr2len)(p) - 1; |
7 | 7316 #endif |
7317 } | |
7318 } | |
7319 | |
7320 vim_free(reg_prev_sub); | |
7321 if (newsub != source) /* newsub was allocated, just keep it */ | |
7322 reg_prev_sub = newsub; | |
7323 else /* no ~ found, need to save newsub */ | |
7324 reg_prev_sub = vim_strsave(newsub); | |
7325 return newsub; | |
7326 } | |
7327 | |
7328 #ifdef FEAT_EVAL | |
7329 static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */ | |
7330 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7331 /* 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
|
7332 * 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
|
7333 * and submatch(). */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7334 typedef struct { |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7335 regmatch_T *sm_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7336 regmmatch_T *sm_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7337 linenr_T sm_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7338 linenr_T sm_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7339 int sm_line_lbr; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7340 } regsubmatch_T; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7341 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7342 static regsubmatch_T rsm; /* can only be used when can_f_submatch is TRUE */ |
7 | 7343 #endif |
7344 | |
7345 #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
|
7346 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7347 /* |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7348 * 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
|
7349 * vim_regsub_both(). |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7350 */ |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7351 static int |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7352 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
|
7353 { |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7354 listitem_T *li; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7355 int i; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7356 char_u *s; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7357 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7358 if (argcount == 0) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7359 /* 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
|
7360 return 0; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7361 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7362 /* 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
|
7363 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
|
7364 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7365 /* 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
|
7366 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
|
7367 for (i = 0; i < 10; ++i) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7368 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7369 s = rsm.sm_match->startp[i]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7370 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
|
7371 s = NULL; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7372 else |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7373 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
|
7374 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
|
7375 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
|
7376 li = li->li_next; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7377 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7378 return 1; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7379 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7380 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7381 static void |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7382 clear_submatch_list(staticList10_T *sl) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7383 { |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7384 int i; |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7385 |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7386 for (i = 0; i < 10; ++i) |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7387 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
|
7388 } |
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7389 |
7 | 7390 /* |
7391 * vim_regsub() - perform substitutions after a vim_regexec() or | |
7392 * vim_regexec_multi() match. | |
7393 * | |
7394 * If "copy" is TRUE really copy into "dest". | |
7395 * If "copy" is FALSE nothing is copied, this is just to find out the length | |
7396 * of the result. | |
7397 * | |
7398 * If "backslash" is TRUE, a backslash will be removed later, need to double | |
7399 * them to keep them, and insert a backslash before a CR to avoid it being | |
7400 * replaced with a line break later. | |
7401 * | |
7402 * Note: The matched text must not change between the call of | |
7403 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back | |
7404 * references invalid! | |
7405 * | |
7406 * Returns the size of the replacement, including terminating NUL. | |
7407 */ | |
7408 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7409 vim_regsub( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7410 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7411 char_u *source, |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7412 typval_T *expr, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7413 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7414 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7415 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7416 int backslash) |
7 | 7417 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7418 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7419 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7420 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
|
7421 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7422 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7423 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7424 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7425 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7426 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7427 rex.reg_match = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7428 rex.reg_mmatch = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7429 rex.reg_maxline = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7430 rex.reg_buf = curbuf; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7431 rex.reg_line_lbr = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7432 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
|
7433 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7434 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
|
7435 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7436 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7437 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7438 return result; |
7 | 7439 } |
7440 #endif | |
7441 | |
7442 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7443 vim_regsub_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7444 regmmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7445 linenr_T lnum, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7446 char_u *source, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7447 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7448 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7449 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7450 int backslash) |
7 | 7451 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7452 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7453 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7454 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
|
7455 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7456 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7457 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7458 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7459 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7460 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7461 rex.reg_match = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7462 rex.reg_mmatch = rmp; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7463 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
|
7464 rex.reg_firstlnum = lnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7465 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
|
7466 rex.reg_line_lbr = FALSE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7467 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
|
7468 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7469 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
|
7470 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7471 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7472 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7473 return result; |
7 | 7474 } |
7475 | |
7476 static int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7477 vim_regsub_both( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7478 char_u *source, |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7479 typval_T *expr, |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7480 char_u *dest, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7481 int copy, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7482 int magic, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7483 int backslash) |
7 | 7484 { |
7485 char_u *src; | |
7486 char_u *dst; | |
7487 char_u *s; | |
7488 int c; | |
772 | 7489 int cc; |
7 | 7490 int no = -1; |
4244 | 7491 fptr_T func_all = (fptr_T)NULL; |
7492 fptr_T func_one = (fptr_T)NULL; | |
7 | 7493 linenr_T clnum = 0; /* init for GCC */ |
7494 int len = 0; /* init for GCC */ | |
7495 #ifdef FEAT_EVAL | |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7496 static char_u *eval_result = NULL; |
7 | 7497 #endif |
7498 | |
7499 /* Be paranoid... */ | |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7500 if ((source == NULL && expr == NULL) || dest == NULL) |
7 | 7501 { |
7502 EMSG(_(e_null)); | |
7503 return 0; | |
7504 } | |
7505 if (prog_magic_wrong()) | |
7506 return 0; | |
7507 src = source; | |
7508 dst = dest; | |
7509 | |
7510 /* | |
7511 * When the substitute part starts with "\=" evaluate it as an expression. | |
7512 */ | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7513 if (expr != NULL || (source[0] == '\\' && source[1] == '=')) |
7 | 7514 { |
7515 #ifdef FEAT_EVAL | |
7516 /* To make sure that the length doesn't change between checking the | |
7517 * length and copying the string, and to speed up things, the | |
7518 * resulting string is saved from the call with "copy" == FALSE to the | |
7519 * call with "copy" == TRUE. */ | |
7520 if (copy) | |
7521 { | |
7522 if (eval_result != NULL) | |
7523 { | |
7524 STRCPY(dest, eval_result); | |
7525 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
|
7526 VIM_CLEAR(eval_result); |
7 | 7527 } |
7528 } | |
7529 else | |
7530 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7531 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
|
7532 regsubmatch_T rsm_save; |
7 | 7533 |
7534 vim_free(eval_result); | |
7535 | |
7536 /* The expression may contain substitute(), which calls us | |
7537 * 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
|
7538 * level. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7539 if (can_f_submatch) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7540 rsm_save = rsm; |
7 | 7541 can_f_submatch = TRUE; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7542 rsm.sm_match = rex.reg_match; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7543 rsm.sm_mmatch = rex.reg_mmatch; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7544 rsm.sm_firstlnum = rex.reg_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7545 rsm.sm_maxline = rex.reg_maxline; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7546 rsm.sm_line_lbr = rex.reg_line_lbr; |
7 | 7547 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7548 if (expr != NULL) |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7549 { |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7550 typval_T argv[2]; |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7551 int dummy; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7552 char_u buf[NUMBUFLEN]; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7553 typval_T rettv; |
9626
172131507c85
commit https://github.com/vim/vim/commit/df48fb456fb6bf63d94cad9b302ff01d8ee8d311
Christian Brabandt <cb@256bit.org>
parents:
9589
diff
changeset
|
7554 staticList10_T matchList; |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7555 |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7556 rettv.v_type = VAR_STRING; |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7557 rettv.vval.v_string = NULL; |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7558 argv[0].v_type = VAR_LIST; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7559 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
|
7560 matchList.sl_list.lv_len = 0; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7561 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
|
7562 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7563 s = expr->vval.v_string; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7564 call_func(s, (int)STRLEN(s), &rettv, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7565 1, argv, fill_submatch_list, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7566 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
|
7567 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7568 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
|
7569 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7570 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
|
7571 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7572 s = partial_name(partial); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7573 call_func(s, (int)STRLEN(s), &rettv, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7574 1, argv, fill_submatch_list, |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7575 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
|
7576 } |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7577 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
|
7578 /* fill_submatch_list() was called */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7579 clear_submatch_list(&matchList); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7580 |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7581 eval_result = get_tv_string_buf_chk(&rettv, buf); |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7582 if (eval_result != NULL) |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7583 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
|
7584 clear_tv(&rettv); |
9589
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7585 } |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7586 else |
bf204ab1ce7d
commit https://github.com/vim/vim/commit/72ab729c3dcdea0fba44d8e676602c847e841bcd
Christian Brabandt <cb@256bit.org>
parents:
9015
diff
changeset
|
7587 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
|
7588 |
7 | 7589 if (eval_result != NULL) |
7590 { | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7591 int had_backslash = FALSE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7592 |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
7593 for (s = eval_result; *s != NUL; MB_PTR_ADV(s)) |
7 | 7594 { |
2904 | 7595 /* Change NL to CR, so that it becomes a line break, |
7596 * unless called from vim_regexec_nl(). | |
7 | 7597 * Skip over a backslashed character. */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7598 if (*s == NL && !rsm.sm_line_lbr) |
7 | 7599 *s = CAR; |
7600 else if (*s == '\\' && s[1] != NUL) | |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7601 { |
7 | 7602 ++s; |
2173 | 7603 /* Change NL to CR here too, so that this works: |
7604 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text: | |
7605 * abc\ | |
7606 * def | |
2904 | 7607 * Not when called from vim_regexec_nl(). |
2173 | 7608 */ |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7609 if (*s == NL && !rsm.sm_line_lbr) |
2173 | 7610 *s = CAR; |
2125
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7611 had_backslash = TRUE; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7612 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7613 } |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7614 if (had_backslash && backslash) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7615 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7616 /* Backslashes will be consumed, need to double them. */ |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7617 s = vim_strsave_escaped(eval_result, (char_u *)"\\"); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7618 if (s != NULL) |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7619 { |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7620 vim_free(eval_result); |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7621 eval_result = s; |
b8744d1982d1
updated for version 7.2.407
Bram Moolenaar <bram@zimbu.org>
parents:
2012
diff
changeset
|
7622 } |
7 | 7623 } |
7624 | |
7625 dst += STRLEN(eval_result); | |
7626 } | |
7627 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7628 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
|
7629 if (can_f_submatch) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7630 rsm = rsm_save; |
7 | 7631 } |
7632 #endif | |
7633 } | |
7634 else | |
7635 while ((c = *src++) != NUL) | |
7636 { | |
7637 if (c == '&' && magic) | |
7638 no = 0; | |
7639 else if (c == '\\' && *src != NUL) | |
7640 { | |
7641 if (*src == '&' && !magic) | |
7642 { | |
7643 ++src; | |
7644 no = 0; | |
7645 } | |
7646 else if ('0' <= *src && *src <= '9') | |
7647 { | |
7648 no = *src++ - '0'; | |
7649 } | |
7650 else if (vim_strchr((char_u *)"uUlLeE", *src)) | |
7651 { | |
7652 switch (*src++) | |
7653 { | |
4244 | 7654 case 'u': func_one = (fptr_T)do_upper; |
7 | 7655 continue; |
4244 | 7656 case 'U': func_all = (fptr_T)do_Upper; |
7 | 7657 continue; |
4244 | 7658 case 'l': func_one = (fptr_T)do_lower; |
7 | 7659 continue; |
4244 | 7660 case 'L': func_all = (fptr_T)do_Lower; |
7 | 7661 continue; |
7662 case 'e': | |
4244 | 7663 case 'E': func_one = func_all = (fptr_T)NULL; |
7 | 7664 continue; |
7665 } | |
7666 } | |
7667 } | |
7668 if (no < 0) /* Ordinary character. */ | |
7669 { | |
798 | 7670 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL) |
7671 { | |
1209 | 7672 /* Copy a special key as-is. */ |
798 | 7673 if (copy) |
7674 { | |
7675 *dst++ = c; | |
7676 *dst++ = *src++; | |
7677 *dst++ = *src++; | |
7678 } | |
7679 else | |
7680 { | |
7681 dst += 3; | |
7682 src += 2; | |
7683 } | |
7684 continue; | |
7685 } | |
7686 | |
7 | 7687 if (c == '\\' && *src != NUL) |
7688 { | |
7689 /* Check for abbreviations -- webb */ | |
7690 switch (*src) | |
7691 { | |
7692 case 'r': c = CAR; ++src; break; | |
7693 case 'n': c = NL; ++src; break; | |
7694 case 't': c = TAB; ++src; break; | |
7695 /* Oh no! \e already has meaning in subst pat :-( */ | |
7696 /* case 'e': c = ESC; ++src; break; */ | |
7697 case 'b': c = Ctrl_H; ++src; break; | |
7698 | |
7699 /* If "backslash" is TRUE the backslash will be removed | |
7700 * later. Used to insert a literal CR. */ | |
7701 default: if (backslash) | |
7702 { | |
7703 if (copy) | |
7704 *dst = '\\'; | |
7705 ++dst; | |
7706 } | |
7707 c = *src++; | |
7708 } | |
7709 } | |
798 | 7710 #ifdef FEAT_MBYTE |
7711 else if (has_mbyte) | |
7712 c = mb_ptr2char(src - 1); | |
7713 #endif | |
7 | 7714 |
7715 /* Write to buffer, if copy is set. */ | |
4244 | 7716 if (func_one != (fptr_T)NULL) |
7717 /* Turbo C complains without the typecast */ | |
7718 func_one = (fptr_T)(func_one(&cc, c)); | |
7719 else if (func_all != (fptr_T)NULL) | |
7720 /* Turbo C complains without the typecast */ | |
7721 func_all = (fptr_T)(func_all(&cc, c)); | |
7722 else /* just copy */ | |
772 | 7723 cc = c; |
7724 | |
7725 #ifdef FEAT_MBYTE | |
7726 if (has_mbyte) | |
7 | 7727 { |
2307
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7728 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
|
7729 |
7 | 7730 if (copy) |
772 | 7731 mb_char2bytes(cc, dst); |
7732 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
|
7733 if (enc_utf8) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7734 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7735 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
|
7736 |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7737 /* 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
|
7738 * 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
|
7739 if (clen < totlen) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7740 { |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7741 if (copy) |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7742 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
|
7743 (size_t)(totlen - clen)); |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7744 dst += totlen - clen; |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7745 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7746 } |
81527f127fb1
Fix: Composing characters in :s substitute text were dropped.
Bram Moolenaar <bram@vim.org>
parents:
2247
diff
changeset
|
7747 src += totlen - 1; |
7 | 7748 } |
7749 else | |
7750 #endif | |
7751 if (copy) | |
772 | 7752 *dst = cc; |
7 | 7753 dst++; |
7754 } | |
7755 else | |
7756 { | |
7757 if (REG_MULTI) | |
7758 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7759 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
|
7760 if (clnum < 0 || rex.reg_mmatch->endpos[no].lnum < 0) |
7 | 7761 s = NULL; |
7762 else | |
7763 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7764 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
|
7765 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
|
7766 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
|
7767 - rex.reg_mmatch->startpos[no].col; |
7 | 7768 else |
7769 len = (int)STRLEN(s); | |
7770 } | |
7771 } | |
7772 else | |
7773 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7774 s = rex.reg_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7775 if (rex.reg_match->endp[no] == NULL) |
7 | 7776 s = NULL; |
7777 else | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7778 len = (int)(rex.reg_match->endp[no] - s); |
7 | 7779 } |
7780 if (s != NULL) | |
7781 { | |
7782 for (;;) | |
7783 { | |
7784 if (len == 0) | |
7785 { | |
7786 if (REG_MULTI) | |
7787 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7788 if (rex.reg_mmatch->endpos[no].lnum == clnum) |
7 | 7789 break; |
7790 if (copy) | |
7791 *dst = CAR; | |
7792 ++dst; | |
7793 s = reg_getline(++clnum); | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7794 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
|
7795 len = rex.reg_mmatch->endpos[no].col; |
7 | 7796 else |
7797 len = (int)STRLEN(s); | |
7798 } | |
7799 else | |
7800 break; | |
7801 } | |
7802 else if (*s == NUL) /* we hit NUL. */ | |
7803 { | |
7804 if (copy) | |
7805 EMSG(_(e_re_damg)); | |
7806 goto exit; | |
7807 } | |
7808 else | |
7809 { | |
7810 if (backslash && (*s == CAR || *s == '\\')) | |
7811 { | |
7812 /* | |
7813 * Insert a backslash in front of a CR, otherwise | |
7814 * it will be replaced by a line break. | |
7815 * Number of backslashes will be halved later, | |
7816 * double them here. | |
7817 */ | |
7818 if (copy) | |
7819 { | |
7820 dst[0] = '\\'; | |
7821 dst[1] = *s; | |
7822 } | |
7823 dst += 2; | |
7824 } | |
7825 else | |
7826 { | |
772 | 7827 #ifdef FEAT_MBYTE |
7828 if (has_mbyte) | |
7829 c = mb_ptr2char(s); | |
7830 else | |
7831 #endif | |
7832 c = *s; | |
7833 | |
4244 | 7834 if (func_one != (fptr_T)NULL) |
7835 /* Turbo C complains without the typecast */ | |
7836 func_one = (fptr_T)(func_one(&cc, c)); | |
7837 else if (func_all != (fptr_T)NULL) | |
7838 /* Turbo C complains without the typecast */ | |
7839 func_all = (fptr_T)(func_all(&cc, c)); | |
7840 else /* just copy */ | |
772 | 7841 cc = c; |
7842 | |
7843 #ifdef FEAT_MBYTE | |
7844 if (has_mbyte) | |
7 | 7845 { |
1332 | 7846 int l; |
7847 | |
7848 /* Copy composing characters separately, one | |
7849 * at a time. */ | |
7850 if (enc_utf8) | |
7851 l = utf_ptr2len(s) - 1; | |
7852 else | |
7853 l = mb_ptr2len(s) - 1; | |
772 | 7854 |
7855 s += l; | |
7856 len -= l; | |
7857 if (copy) | |
7858 mb_char2bytes(cc, dst); | |
7859 dst += mb_char2len(cc) - 1; | |
7 | 7860 } |
772 | 7861 else |
7862 #endif | |
7863 if (copy) | |
7864 *dst = cc; | |
7865 dst++; | |
7 | 7866 } |
772 | 7867 |
7 | 7868 ++s; |
7869 --len; | |
7870 } | |
7871 } | |
7872 } | |
7873 no = -1; | |
7874 } | |
7875 } | |
7876 if (copy) | |
7877 *dst = NUL; | |
7878 | |
7879 exit: | |
7880 return (int)((dst - dest) + 1); | |
7881 } | |
7882 | |
7883 #ifdef FEAT_EVAL | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
7884 static char_u *reg_getline_submatch(linenr_T lnum); |
2012 | 7885 |
7 | 7886 /* |
2011 | 7887 * Call reg_getline() with the line numbers from the submatch. If a |
7888 * substitute() was used the reg_maxline and other values have been | |
7889 * overwritten. | |
7890 */ | |
7891 static char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7892 reg_getline_submatch(linenr_T lnum) |
2011 | 7893 { |
7894 char_u *s; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7895 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
|
7896 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
|
7897 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7898 rex.reg_firstlnum = rsm.sm_firstlnum; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7899 rex.reg_maxline = rsm.sm_maxline; |
2011 | 7900 |
7901 s = reg_getline(lnum); | |
7902 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7903 rex.reg_firstlnum = save_first; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7904 rex.reg_maxline = save_max; |
2011 | 7905 return s; |
7906 } | |
7907 | |
7908 /* | |
1209 | 7909 * Used for the submatch() function: get the string from the n'th submatch in |
7 | 7910 * allocated memory. |
7911 * Returns NULL when not in a ":s" command and for a non-existing submatch. | |
7912 */ | |
7913 char_u * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
7914 reg_submatch(int no) |
7 | 7915 { |
7916 char_u *retval = NULL; | |
7917 char_u *s; | |
7918 int len; | |
7919 int round; | |
7920 linenr_T lnum; | |
7921 | |
840 | 7922 if (!can_f_submatch || no < 0) |
7 | 7923 return NULL; |
7924 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7925 if (rsm.sm_match == NULL) |
7 | 7926 { |
7927 /* | |
7928 * First round: compute the length and allocate memory. | |
7929 * Second round: copy the text. | |
7930 */ | |
7931 for (round = 1; round <= 2; ++round) | |
7932 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7933 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
|
7934 if (lnum < 0 || rsm.sm_mmatch->endpos[no].lnum < 0) |
7 | 7935 return NULL; |
7936 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7937 s = reg_getline_submatch(lnum) + rsm.sm_mmatch->startpos[no].col; |
7 | 7938 if (s == NULL) /* anti-crash check, cannot happen? */ |
7939 break; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7940 if (rsm.sm_mmatch->endpos[no].lnum == lnum) |
7 | 7941 { |
7942 /* 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
|
7943 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
|
7944 - rsm.sm_mmatch->startpos[no].col; |
7 | 7945 if (round == 2) |
418 | 7946 vim_strncpy(retval, s, len); |
7 | 7947 ++len; |
7948 } | |
7949 else | |
7950 { | |
7951 /* Multiple lines: take start line from start col, middle | |
7952 * lines completely and end line up to end col. */ | |
7953 len = (int)STRLEN(s); | |
7954 if (round == 2) | |
7955 { | |
7956 STRCPY(retval, s); | |
7957 retval[len] = '\n'; | |
7958 } | |
7959 ++len; | |
7960 ++lnum; | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7961 while (lnum < rsm.sm_mmatch->endpos[no].lnum) |
7 | 7962 { |
2011 | 7963 s = reg_getline_submatch(lnum++); |
7 | 7964 if (round == 2) |
7965 STRCPY(retval + len, s); | |
7966 len += (int)STRLEN(s); | |
7967 if (round == 2) | |
7968 retval[len] = '\n'; | |
7969 ++len; | |
7970 } | |
7971 if (round == 2) | |
2011 | 7972 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
|
7973 rsm.sm_mmatch->endpos[no].col); |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7974 len += rsm.sm_mmatch->endpos[no].col; |
7 | 7975 if (round == 2) |
7976 retval[len] = NUL; | |
7977 ++len; | |
7978 } | |
7979 | |
840 | 7980 if (retval == NULL) |
7 | 7981 { |
7982 retval = lalloc((long_u)len, TRUE); | |
840 | 7983 if (retval == NULL) |
7 | 7984 return NULL; |
7985 } | |
7986 } | |
7987 } | |
7988 else | |
7989 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7990 s = rsm.sm_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7991 if (s == NULL || rsm.sm_match->endp[no] == NULL) |
7 | 7992 retval = NULL; |
7993 else | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
7994 retval = vim_strnsave(s, (int)(rsm.sm_match->endp[no] - s)); |
7 | 7995 } |
7996 | |
7997 return retval; | |
7998 } | |
5794 | 7999 |
8000 /* | |
8001 * Used for the submatch() function with the optional non-zero argument: get | |
8002 * the list of strings from the n'th submatch in allocated memory with NULs | |
8003 * represented in NLs. | |
8004 * Returns a list of allocated strings. Returns NULL when not in a ":s" | |
8005 * command, for a non-existing submatch and for any error. | |
8006 */ | |
8007 list_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8008 reg_submatch_list(int no) |
5794 | 8009 { |
8010 char_u *s; | |
8011 linenr_T slnum; | |
8012 linenr_T elnum; | |
8013 colnr_T scol; | |
8014 colnr_T ecol; | |
8015 int i; | |
8016 list_T *list; | |
8017 int error = FALSE; | |
8018 | |
8019 if (!can_f_submatch || no < 0) | |
8020 return NULL; | |
8021 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8022 if (rsm.sm_match == NULL) |
5794 | 8023 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8024 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
|
8025 elnum = rsm.sm_mmatch->endpos[no].lnum; |
5794 | 8026 if (slnum < 0 || elnum < 0) |
8027 return NULL; | |
8028 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8029 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
|
8030 ecol = rsm.sm_mmatch->endpos[no].col; |
5794 | 8031 |
8032 list = list_alloc(); | |
8033 if (list == NULL) | |
8034 return NULL; | |
8035 | |
8036 s = reg_getline_submatch(slnum) + scol; | |
8037 if (slnum == elnum) | |
8038 { | |
8039 if (list_append_string(list, s, ecol - scol) == FAIL) | |
8040 error = TRUE; | |
8041 } | |
8042 else | |
8043 { | |
8044 if (list_append_string(list, s, -1) == FAIL) | |
8045 error = TRUE; | |
8046 for (i = 1; i < elnum - slnum; i++) | |
8047 { | |
8048 s = reg_getline_submatch(slnum + i); | |
8049 if (list_append_string(list, s, -1) == FAIL) | |
8050 error = TRUE; | |
8051 } | |
8052 s = reg_getline_submatch(elnum); | |
8053 if (list_append_string(list, s, ecol) == FAIL) | |
8054 error = TRUE; | |
8055 } | |
8056 } | |
8057 else | |
8058 { | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8059 s = rsm.sm_match->startp[no]; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8060 if (s == NULL || rsm.sm_match->endp[no] == NULL) |
5794 | 8061 return NULL; |
8062 list = list_alloc(); | |
8063 if (list == NULL) | |
8064 return NULL; | |
8065 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
|
8066 (int)(rsm.sm_match->endp[no] - s)) == FAIL) |
5794 | 8067 error = TRUE; |
8068 } | |
8069 | |
8070 if (error) | |
8071 { | |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8825
diff
changeset
|
8072 list_free(list); |
5794 | 8073 return NULL; |
8074 } | |
8075 return list; | |
8076 } | |
7 | 8077 #endif |
4444 | 8078 |
8079 static regengine_T bt_regengine = | |
8080 { | |
8081 bt_regcomp, | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8082 bt_regfree, |
4444 | 8083 bt_regexec_nl, |
6328 | 8084 bt_regexec_multi, |
8085 (char_u *)"" | |
4444 | 8086 }; |
8087 | |
8088 #include "regexp_nfa.c" | |
8089 | |
8090 static regengine_T nfa_regengine = | |
8091 { | |
8092 nfa_regcomp, | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8093 nfa_regfree, |
4444 | 8094 nfa_regexec_nl, |
6328 | 8095 nfa_regexec_multi, |
8096 (char_u *)"" | |
4444 | 8097 }; |
8098 | |
8099 /* Which regexp engine to use? Needed for vim_regcomp(). | |
8100 * Must match with 'regexpengine'. */ | |
8101 static int regexp_engine = 0; | |
6328 | 8102 |
4444 | 8103 #ifdef DEBUG |
8104 static char_u regname[][30] = { | |
8105 "AUTOMATIC Regexp Engine", | |
4579
7a2be4a39423
updated for version 7.3.1037
Bram Moolenaar <bram@vim.org>
parents:
4505
diff
changeset
|
8106 "BACKTRACKING Regexp Engine", |
4444 | 8107 "NFA Regexp Engine" |
8108 }; | |
8109 #endif | |
8110 | |
8111 /* | |
8112 * Compile a regular expression into internal code. | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8113 * Returns the program in allocated memory. |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8114 * Use vim_regfree() to free the memory. |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8115 * Returns NULL for an error. |
4444 | 8116 */ |
8117 regprog_T * | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8118 vim_regcomp(char_u *expr_arg, int re_flags) |
4444 | 8119 { |
8120 regprog_T *prog = NULL; | |
8121 char_u *expr = expr_arg; | |
8122 | |
8123 regexp_engine = p_re; | |
8124 | |
8125 /* Check for prefix "\%#=", that sets the regexp engine */ | |
8126 if (STRNCMP(expr, "\\%#=", 4) == 0) | |
8127 { | |
8128 int newengine = expr[4] - '0'; | |
8129 | |
8130 if (newengine == AUTOMATIC_ENGINE | |
8131 || newengine == BACKTRACKING_ENGINE | |
8132 || newengine == NFA_ENGINE) | |
8133 { | |
8134 regexp_engine = expr[4] - '0'; | |
8135 expr += 5; | |
8136 #ifdef DEBUG | |
5897 | 8137 smsg((char_u *)"New regexp mode selected (%d): %s", |
8138 regexp_engine, regname[newengine]); | |
4444 | 8139 #endif |
8140 } | |
8141 else | |
8142 { | |
8143 EMSG(_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used ")); | |
8144 regexp_engine = AUTOMATIC_ENGINE; | |
8145 } | |
8146 } | |
8147 bt_regengine.expr = expr; | |
8148 nfa_regengine.expr = expr; | |
8149 | |
8150 /* | |
8151 * First try the NFA engine, unless backtracking was requested. | |
8152 */ | |
8153 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
|
8154 prog = nfa_regengine.regcomp(expr, |
6533 | 8155 re_flags + (regexp_engine == AUTOMATIC_ENGINE ? RE_AUTO : 0)); |
4444 | 8156 else |
8157 prog = bt_regengine.regcomp(expr, re_flags); | |
8158 | |
6328 | 8159 /* Check for error compiling regexp with initial engine. */ |
8160 if (prog == NULL) | |
4444 | 8161 { |
4460 | 8162 #ifdef BT_REGEXP_DEBUG_LOG |
4444 | 8163 if (regexp_engine != BACKTRACKING_ENGINE) /* debugging log for NFA */ |
8164 { | |
8165 FILE *f; | |
4460 | 8166 f = fopen(BT_REGEXP_DEBUG_LOG_NAME, "a"); |
4444 | 8167 if (f) |
8168 { | |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8169 fprintf(f, "Syntax error in \"%s\"\n", expr); |
4444 | 8170 fclose(f); |
8171 } | |
8172 else | |
4460 | 8173 EMSG2("(NFA) Could not open \"%s\" to write !!!", |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8174 BT_REGEXP_DEBUG_LOG_NAME); |
4444 | 8175 } |
8176 #endif | |
8177 /* | |
6328 | 8178 * If the NFA engine failed, try the backtracking engine. |
6533 | 8179 * The NFA engine also fails for patterns that it can't handle well |
8180 * but are still valid patterns, thus a retry should work. | |
8181 */ | |
4444 | 8182 if (regexp_engine == AUTOMATIC_ENGINE) |
6328 | 8183 { |
6533 | 8184 regexp_engine = BACKTRACKING_ENGINE; |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8185 prog = bt_regengine.regcomp(expr, re_flags); |
6328 | 8186 } |
4762
47906f888725
updated for version 7.3.1128
Bram Moolenaar <bram@vim.org>
parents:
4760
diff
changeset
|
8187 } |
4444 | 8188 |
6328 | 8189 if (prog != NULL) |
8190 { | |
8191 /* Store the info needed to call regcomp() again when the engine turns | |
8192 * out to be very slow when executing it. */ | |
8193 prog->re_engine = regexp_engine; | |
8194 prog->re_flags = re_flags; | |
8195 } | |
8196 | |
4444 | 8197 return prog; |
8198 } | |
8199 | |
8200 /* | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8201 * 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
|
8202 */ |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8203 void |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8204 vim_regfree(regprog_T *prog) |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8205 { |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8206 if (prog != NULL) |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8207 prog->engine->regfree(prog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8208 } |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8209 |
6328 | 8210 #ifdef FEAT_EVAL |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
8211 static void report_re_switch(char_u *pat); |
6328 | 8212 |
8213 static void | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8214 report_re_switch(char_u *pat) |
6328 | 8215 { |
8216 if (p_verbose > 0) | |
8217 { | |
8218 verbose_enter(); | |
8219 MSG_PUTS(_("Switching to backtracking RE engine for pattern: ")); | |
8220 MSG_PUTS(pat); | |
8221 verbose_leave(); | |
8222 } | |
8223 } | |
8224 #endif | |
8225 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4770
diff
changeset
|
8226 /* |
4444 | 8227 * Match a regexp against a string. |
8228 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
6375 | 8229 * Note: "rmp->regprog" may be freed and changed. |
4444 | 8230 * Uses curbuf for line count and 'iskeyword'. |
6328 | 8231 * When "nl" is TRUE consider a "\n" in "line" to be a line break. |
4444 | 8232 * |
8233 * Return TRUE if there is a match, FALSE if not. | |
8234 */ | |
6328 | 8235 static int |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8236 vim_regexec_string( |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8237 regmatch_T *rmp, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8238 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
|
8239 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
|
8240 int nl) |
6328 | 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 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8246 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8247 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8248 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8249 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8250 rex.reg_startp = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8251 rex.reg_endp = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8252 rex.reg_startpos = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8253 rex.reg_endpos = NULL; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8254 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8255 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl); |
6328 | 8256 |
8257 /* NFA engine aborted because it's very slow. */ | |
8258 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE | |
8259 && result == NFA_TOO_EXPENSIVE) | |
8260 { | |
8261 int save_p_re = p_re; | |
8262 int re_flags = rmp->regprog->re_flags; | |
8263 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern); | |
8264 | |
8265 p_re = BACKTRACKING_ENGINE; | |
8266 vim_regfree(rmp->regprog); | |
8267 if (pat != NULL) | |
8268 { | |
8269 #ifdef FEAT_EVAL | |
8270 report_re_switch(pat); | |
8271 #endif | |
8272 rmp->regprog = vim_regcomp(pat, re_flags); | |
8273 if (rmp->regprog != NULL) | |
8274 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl); | |
8275 vim_free(pat); | |
8276 } | |
8277 | |
8278 p_re = save_p_re; | |
8279 } | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8280 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8281 rex_in_use = rex_in_use_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8282 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8283 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8284 |
6390 | 8285 return result > 0; |
6328 | 8286 } |
8287 | |
6375 | 8288 /* |
8289 * Note: "*prog" may be freed and changed. | |
6390 | 8290 * Return TRUE if there is a match, FALSE if not. |
6375 | 8291 */ |
8292 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8293 vim_regexec_prog( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8294 regprog_T **prog, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8295 int ignore_case, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8296 char_u *line, |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8297 colnr_T col) |
6375 | 8298 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8299 int r; |
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8300 regmatch_T regmatch; |
6375 | 8301 |
8302 regmatch.regprog = *prog; | |
8303 regmatch.rm_ic = ignore_case; | |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8304 r = vim_regexec_string(®match, line, col, FALSE); |
6375 | 8305 *prog = regmatch.regprog; |
8306 return r; | |
8307 } | |
8308 | |
8309 /* | |
8310 * Note: "rmp->regprog" may be freed and changed. | |
6390 | 8311 * Return TRUE if there is a match, FALSE if not. |
6375 | 8312 */ |
4444 | 8313 int |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8314 vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col) |
4444 | 8315 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8316 return vim_regexec_string(rmp, line, col, FALSE); |
4444 | 8317 } |
8318 | |
8319 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \ | |
8320 || defined(FIND_REPLACE_DIALOG) || defined(PROTO) | |
8321 /* | |
8322 * Like vim_regexec(), but consider a "\n" in "line" to be a line break. | |
6375 | 8323 * Note: "rmp->regprog" may be freed and changed. |
6390 | 8324 * Return TRUE if there is a match, FALSE if not. |
4444 | 8325 */ |
8326 int | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8327 vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col) |
4444 | 8328 { |
11529
998d2cf59caa
patch 8.0.0647: syntax highlighting can make cause a freeze
Christian Brabandt <cb@256bit.org>
parents:
11527
diff
changeset
|
8329 return vim_regexec_string(rmp, line, col, TRUE); |
4444 | 8330 } |
8331 #endif | |
8332 | |
8333 /* | |
8334 * Match a regexp against multiple lines. | |
8335 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). | |
6375 | 8336 * Note: "rmp->regprog" may be freed and changed. |
4444 | 8337 * Uses curbuf for line count and 'iskeyword'. |
8338 * | |
8339 * Return zero if there is no match. Return number of lines contained in the | |
8340 * match otherwise. | |
8341 */ | |
8342 long | |
7833
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8343 vim_regexec_multi( |
c079097365f3
commit https://github.com/vim/vim/commit/055409764ca5f7978d4c399d2c440af0ce971c4f
Christian Brabandt <cb@256bit.org>
parents:
7807
diff
changeset
|
8344 regmmatch_T *rmp, |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8345 win_T *win, /* window in which to search or NULL */ |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8346 buf_T *buf, /* buffer in which to search */ |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8347 linenr_T lnum, /* nr of line to start looking for match */ |
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
12752
diff
changeset
|
8348 colnr_T col, /* column to start looking for match */ |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8349 proftime_T *tm, /* timeout limit or NULL */ |
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8350 int *timed_out) /* flag is set when timeout limit reached */ |
4444 | 8351 { |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8352 int result; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8353 regexec_T rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8354 int rex_in_use_save = rex_in_use; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8355 |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8356 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8357 /* Being called recursively, save the state. */ |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8358 rex_save = rex; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8359 rex_in_use = TRUE; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8360 |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11482
diff
changeset
|
8361 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
|
8362 rmp, win, buf, lnum, col, tm, timed_out); |
6328 | 8363 |
8364 /* NFA engine aborted because it's very slow. */ | |
8365 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE | |
8366 && result == NFA_TOO_EXPENSIVE) | |
8367 { | |
8368 int save_p_re = p_re; | |
8369 int re_flags = rmp->regprog->re_flags; | |
8370 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern); | |
8371 | |
8372 p_re = BACKTRACKING_ENGINE; | |
8373 vim_regfree(rmp->regprog); | |
8374 if (pat != NULL) | |
8375 { | |
8376 #ifdef FEAT_EVAL | |
8377 report_re_switch(pat); | |
8378 #endif | |
8379 rmp->regprog = vim_regcomp(pat, re_flags); | |
8380 if (rmp->regprog != NULL) | |
8381 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
|
8382 rmp, win, buf, lnum, col, tm, timed_out); |
6328 | 8383 vim_free(pat); |
8384 } | |
8385 p_re = save_p_re; | |
8386 } | |
8387 | |
10245
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8388 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
|
8389 if (rex_in_use) |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8390 rex = rex_save; |
d76ccdacb41e
commit https://github.com/vim/vim/commit/6100d02aab7c8294b581cb299250eea164b50e9d
Christian Brabandt <cb@256bit.org>
parents:
10187
diff
changeset
|
8391 |
6390 | 8392 return result <= 0 ? 0 : result; |
4444 | 8393 } |