blob: d07391eefb93984ff88a15638a1948c195766e5a [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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 *
Bram Moolenaarc0197e22004-09-13 20:26:32 +000036 * Changes have been made by Tony Andrews, Olaf 'Rhialto' Seibert, Robert
37 * Webb, Ciaran McCreesh and Bram Moolenaar.
Bram Moolenaar071d4272004-06-13 20:20:40 +000038 * Named character class support added by Walter Briscoe (1998 Jul 01)
39 */
40
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +020041/* 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000047#include "vim.h"
48
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +020049#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
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +020054# define BT_REGEXP_DEBUG_LOG
55# define BT_REGEXP_DEBUG_LOG_NAME "bt_regexp_debug.log"
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +020056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000057
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
Bram Moolenaardf177f62005-02-22 08:39:57 +000090 * 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.)
Bram Moolenaar071d4272004-06-13 20:20:40 +000096 *
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 *
Bram Moolenaardf177f62005-02-22 08:39:57 +0000114 * +----------------------+
115 * V |
Bram Moolenaar582fd852005-03-28 20:58:01 +0000116 * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000117 * | | ^ ^
118 * | +-----------+ |
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000119 * +--------------------------------------------------+
Bram Moolenaardf177f62005-02-22 08:39:57 +0000120 *
121 *
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122 * +-------------------------+
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 *
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +0000144 * They all start with a BRANCH for "\|" alternatives, even when there is only
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 * 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
Bram Moolenaar71fe80d2006-01-22 23:25:56 +0000245#define RE_MARK 207 /* mark cmp Match mark position */
246#define RE_VISUAL 208 /* Match Visual area */
Bram Moolenaar8df5acf2014-05-13 19:37:29 +0200247#define RE_COMPOSING 209 /* any composing characters */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +0000248
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249/*
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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100259no_Magic(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260{
261 if (is_Magic(x))
262 return un_Magic(x);
263 return x;
264}
265
266 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100267toggle_Magic(int x)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268{
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 */
Bram Moolenaar98692072006-02-04 00:57:42 +0000337#define EMSG_RET_NULL(m) return (EMSG(m), rc_did_emsg = TRUE, (void *)NULL)
Bram Moolenaar95f09602016-11-10 20:01:45 +0100338#define IEMSG_RET_NULL(m) return (IEMSG(m), rc_did_emsg = TRUE, (void *)NULL)
Bram Moolenaar45eeb132005-06-06 21:59:07 +0000339#define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200340#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)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343
Bram Moolenaar95f09602016-11-10 20:01:45 +0100344
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345#define MAX_LIMIT (32767L << 16L)
346
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100347static int re_multi_type(int);
348static int cstrncmp(char_u *s1, char_u *s2, int *n);
349static char_u *cstrchr(char_u *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200351#ifdef BT_REGEXP_DUMP
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100352static void regdump(char_u *, bt_regprog_T *);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354#ifdef DEBUG
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100355static char_u *regprop(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356#endif
357
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100358static int re_mult_next(char *what);
Bram Moolenaarfb031402014-09-09 17:18:49 +0200359
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200360static char_u e_missingbracket[] = N_("E769: Missing ] after %s[");
Bram Moolenaar966e58e2017-06-05 16:54:08 +0200361static char_u e_reverse_range[] = N_("E944: Reverse range in character class");
Bram Moolenaar6c95fbc2017-06-05 17:53:37 +0200362#ifdef FEAT_MBYTE
Bram Moolenaar966e58e2017-06-05 16:54:08 +0200363static char_u e_large_class[] = N_("E945: Range too large in character class");
Bram Moolenaar6c95fbc2017-06-05 17:53:37 +0200364#endif
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200365static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%(");
366static char_u e_unmatchedp[] = N_("E54: Unmatched %s(");
367static char_u e_unmatchedpar[] = N_("E55: Unmatched %s)");
Bram Moolenaar01d89dd2013-06-03 19:41:06 +0200368#ifdef FEAT_SYN_HL
Bram Moolenaar5de820b2013-06-02 15:01:57 +0200369static char_u e_z_not_allowed[] = N_("E66: \\z( not allowed here");
370static char_u e_z1_not_allowed[] = N_("E67: \\z1 et al. not allowed here");
Bram Moolenaar01d89dd2013-06-03 19:41:06 +0200371#endif
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +0200372static char_u e_missing_sb[] = N_("E69: Missing ] after %s%%[");
Bram Moolenaar2976c022013-06-05 21:30:37 +0200373static char_u e_empty_sb[] = N_("E70: Empty %s%%[]");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374#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
Bram Moolenaar05540972016-01-30 20:31:25 +0100383re_multi_type(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384{
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
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000408static char_u *reg_prev_sub = NULL;
409
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410/*
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).
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000420 * \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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 */
426static char_u REGEXP_INRANGE[] = "]^-n\\";
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000427static char_u REGEXP_ABBR[] = "nrtebdoxuU";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100429static int backslash_trans(int c);
430static int get_char_class(char_u **pp);
431static int get_equi_class(char_u **pp);
432static void reg_equi_class(int c);
433static int get_coll_element(char_u **pp);
434static char_u *skip_anyof(char_u *p);
435static void init_class_tab(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436
437/*
438 * Translate '\x' to its control character, except "\n", which is Magic.
439 */
440 static int
Bram Moolenaar05540972016-01-30 20:31:25 +0100441backslash_trans(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442{
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/*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000454 * Check for a character class name "[:name:]". "pp" points to the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 * 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
Bram Moolenaar05540972016-01-30 20:31:25 +0100459get_char_class(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460{
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 {
Bram Moolenaar78a15312009-05-15 19:33:18 +0000501 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502 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/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 * Specific version of character class functions.
513 * Using a table to keep this fast.
514 */
515static 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
Bram Moolenaar05540972016-01-30 20:31:25 +0100528init_class_tab(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529{
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
603static char_u *regparse; /* Input-scan pointer. */
604static int prevchr_len; /* byte length of previous char */
605static int num_complex_braces; /* Complex \{...} count */
606static int regnpar; /* () count. */
607#ifdef FEAT_SYN_HL
608static int regnzpar; /* \z() count. */
609static int re_has_z; /* \z item detected */
610#endif
611static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */
612static long regsize; /* Code size. */
Bram Moolenaard3005802009-11-25 17:21:32 +0000613static int reg_toolong; /* TRUE when offset out of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */
615static unsigned regflags; /* RF_ flags for prog */
616static long brace_min[10]; /* Minimums for complex brace repeats */
617static long brace_max[10]; /* Maximums for complex brace repeats */
618static int brace_count[10]; /* Current counts for complex brace repeats */
619#if defined(FEAT_SYN_HL) || defined(PROTO)
620static int had_eol; /* TRUE when EOL found by vim_regcomp() */
621#endif
622static int one_exactly = FALSE; /* only do one char for EXACTLY */
623
624static 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
630static int reg_string; /* matching with a string instead of a buffer
631 line */
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000632static int reg_strict; /* "[abc" is illegal */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633
634/*
635 * META contains all characters that may be magic, except '^' and '$'.
636 */
637
638#ifdef EBCDIC
639static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~";
640#else
641/* META[] is used often enough to justify turning it into a table. */
642static 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
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200660static 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 */
664static int prevchr;
665static int prevprevchr; /* previous-previous character */
666static int nextchr; /* used for ungetchr() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667
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
Bram Moolenaar3737fc12013-06-01 14:42:56 +0200674typedef struct
675{
676 char_u *regparse;
677 int prevchr_len;
678 int curchr;
679 int prevchr;
680 int prevprevchr;
681 int nextchr;
682 int at_start;
683 int prev_at_start;
684 int regnpar;
685} parse_state_T;
686
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687/*
688 * Forward declarations for vim_regcomp()'s friends.
689 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100690static void initchr(char_u *);
691static void save_parse_state(parse_state_T *ps);
692static void restore_parse_state(parse_state_T *ps);
693static int getchr(void);
694static void skipchr_keepstart(void);
695static int peekchr(void);
696static void skipchr(void);
697static void ungetchr(void);
Bram Moolenaar4c22a912017-11-02 22:29:38 +0100698static long gethexchrs(int maxinputlen);
699static long getoctchrs(void);
700static long getdecchrs(void);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100701static int coll_get_char(void);
702static void regcomp_start(char_u *expr, int flags);
703static char_u *reg(int, int *);
704static char_u *regbranch(int *flagp);
705static char_u *regconcat(int *flagp);
706static char_u *regpiece(int *);
707static char_u *regatom(int *);
708static char_u *regnode(int);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000709#ifdef FEAT_MBYTE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100710static int use_multibytecode(int c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000711#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100712static int prog_magic_wrong(void);
713static char_u *regnext(char_u *);
714static void regc(int b);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715#ifdef FEAT_MBYTE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100716static void regmbc(int c);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200717# define REGMBC(x) regmbc(x);
718# define CASEMBC(x) case x:
Bram Moolenaardf177f62005-02-22 08:39:57 +0000719#else
720# define regmbc(c) regc(c)
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200721# define REGMBC(x)
722# define CASEMBC(x)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100724static void reginsert(int, char_u *);
725static void reginsert_nr(int op, long val, char_u *opnd);
726static void reginsert_limits(int, long, long, char_u *);
727static char_u *re_put_long(char_u *pr, long_u val);
728static int read_limits(long *, long *);
729static void regtail(char_u *, char_u *);
730static void regoptail(char_u *, char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200732static regengine_T bt_regengine;
733static regengine_T nfa_regengine;
734
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735/*
736 * Return TRUE if compiled regular expression "prog" can match a line break.
737 */
738 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100739re_multiline(regprog_T *prog)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740{
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
Bram Moolenaar05540972016-01-30 20:31:25 +0100749re_lookbehind(regprog_T *prog)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750{
751 return (prog->regflags & RF_LOOKBH);
752}
753
754/*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000755 * 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
Bram Moolenaar05540972016-01-30 20:31:25 +0100760get_equi_class(char_u **pp)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000761{
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)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000770 l = (*mb_ptr2len)(p + 2);
Bram Moolenaardf177f62005-02-22 08:39:57 +0000771#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
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200787#ifdef EBCDIC
788/*
789 * Table for equivalence class "c". (IBM-1047)
790 */
791char *EQUIVAL_CLASS_C[16] = {
792 "A\x62\x63\x64\x65\x66\x67",
793 "C\x68",
794 "E\x71\x72\x73\x74",
795 "I\x75\x76\x77\x78",
796 "N\x69",
Bram Moolenaar22e42152016-04-03 14:02:02 +0200797 "O\xEB\xEC\xED\xEE\xEF\x80",
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200798 "U\xFB\xFC\xFD\xFE",
799 "Y\xBA",
800 "a\x42\x43\x44\x45\x46\x47",
801 "c\x48",
802 "e\x51\x52\x53\x54",
803 "i\x55\x56\x57\x58",
804 "n\x49",
Bram Moolenaar22e42152016-04-03 14:02:02 +0200805 "o\xCB\xCC\xCD\xCE\xCF\x70",
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200806 "u\xDB\xDC\xDD\xDE",
807 "y\x8D\xDF",
808};
809#endif
810
Bram Moolenaardf177f62005-02-22 08:39:57 +0000811/*
812 * Produce the bytes for equivalence class "c".
813 * Currently only handles latin1, latin9 and utf-8.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200814 * NOTE: When changing this function, also change nfa_emit_equi_class()
Bram Moolenaardf177f62005-02-22 08:39:57 +0000815 */
816 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100817reg_equi_class(int c)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000818{
819#ifdef FEAT_MBYTE
820 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0
Bram Moolenaar78622822005-08-23 21:00:13 +0000821 || STRCMP(p_enc, "iso-8859-15") == 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000822#endif
823 {
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200824#ifdef EBCDIC
825 int i;
826
827 /* This might be slower than switch/case below. */
828 for (i = 0; i < 16; i++)
829 {
830 if (vim_strchr(EQUIVAL_CLASS_C[i], c) != NULL)
831 {
832 char *p = EQUIVAL_CLASS_C[i];
833
834 while (*p != 0)
835 regmbc(*p++);
836 return;
837 }
838 }
839#else
Bram Moolenaardf177f62005-02-22 08:39:57 +0000840 switch (c)
841 {
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200842 /* 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:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200845 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd)
846 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200847 regmbc('A'); regmbc(0xc0); regmbc(0xc1);
848 regmbc(0xc2); regmbc(0xc3); regmbc(0xc4);
849 regmbc(0xc5);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200850 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000856 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200857 case 'C': case 0xc7:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200858 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200859 regmbc('C'); regmbc(0xc7);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200860 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000867 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200868 case 'E': case 0xc8: case 0xc9: case 0xca: case 0xcb:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200869 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118)
870 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200871 regmbc('E'); regmbc(0xc8); regmbc(0xc9);
872 regmbc(0xca); regmbc(0xcb);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200873 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000891 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200892 case 'I': case 0xcc: case 0xcd: case 0xce: case 0xcf:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200893 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e)
894 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200895 regmbc('I'); regmbc(0xcc); regmbc(0xcd);
896 regmbc(0xce); regmbc(0xcf);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200897 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000917 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200918 case 'N': case 0xd1:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200919 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44)
920 CASEMBC(0x1e48)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200921 regmbc('N'); regmbc(0xd1);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200922 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147)
923 REGMBC(0x1e44) REGMBC(0x1e48)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000924 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200925 case 'O': case 0xd2: case 0xd3: case 0xd4: case 0xd5:
926 case 0xd6: case 0xd8:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200927 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0)
928 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200929 regmbc('O'); regmbc(0xd2); regmbc(0xd3);
930 regmbc(0xd4); regmbc(0xd5); regmbc(0xd6);
931 regmbc(0xd8);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200932 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000953 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200954 case 'U': case 0xd9: case 0xda: case 0xdb: case 0xdc:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200955 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e)
956 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3)
957 CASEMBC(0x1ee6)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200958 regmbc('U'); regmbc(0xd9); regmbc(0xda);
959 regmbc(0xdb); regmbc(0xdc);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200960 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000974 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200975 case 'Y': case 0xdd:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200976 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2)
977 CASEMBC(0x1ef6) CASEMBC(0x1ef8)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200978 regmbc('Y'); regmbc(0xdd);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200979 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000987 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200988 case 'a': case 0xe0: case 0xe1: case 0xe2:
989 case 0xe3: case 0xe4: case 0xe5:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200990 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce)
991 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3)
Bram Moolenaard82a2a92015-04-21 14:02:35 +0200992 regmbc('a'); regmbc(0xe0); regmbc(0xe1);
993 regmbc(0xe2); regmbc(0xe3); regmbc(0xe4);
994 regmbc(0xe5);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200995 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001001 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001002 case 'c': case 0xe7:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001003 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001004 regmbc('c'); regmbc(0xe7);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001005 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b)
1006 REGMBC(0x10d)
1007 return;
Bram Moolenaar2c61ec62015-07-10 19:16:34 +02001008 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1e0b)
1009 CASEMBC(0x1e0f) CASEMBC(0x1e11)
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001010 regmbc('d'); REGMBC(0x10f) REGMBC(0x111)
Bram Moolenaar2c61ec62015-07-10 19:16:34 +02001011 REGMBC(0x1e0b) REGMBC(0x1e0f) REGMBC(0x1e11)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001012 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001013 case 'e': case 0xe8: case 0xe9: case 0xea: case 0xeb:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001014 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119)
1015 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001016 regmbc('e'); regmbc(0xe8); regmbc(0xe9);
1017 regmbc(0xea); regmbc(0xeb);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001018 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001037 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001038 case 'i': case 0xec: case 0xed: case 0xee: case 0xef:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001039 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f)
1040 CASEMBC(0x1d0) CASEMBC(0x1ec9)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001041 regmbc('i'); regmbc(0xec); regmbc(0xed);
1042 regmbc(0xee); regmbc(0xef);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001043 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001062 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001063 case 'n': case 0xf1:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001064 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149)
1065 CASEMBC(0x1e45) CASEMBC(0x1e49)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001066 regmbc('n'); regmbc(0xf1);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001067 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148)
1068 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001069 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001070 case 'o': case 0xf2: case 0xf3: case 0xf4: case 0xf5:
1071 case 0xf6: case 0xf8:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001072 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1)
1073 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001074 regmbc('o'); regmbc(0xf2); regmbc(0xf3);
1075 regmbc(0xf4); regmbc(0xf5); regmbc(0xf6);
1076 regmbc(0xf8);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001077 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001098 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001099 case 'u': case 0xf9: case 0xfa: case 0xfb: case 0xfc:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001100 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f)
1101 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4)
1102 CASEMBC(0x1ee7)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001103 regmbc('u'); regmbc(0xf9); regmbc(0xfa);
1104 regmbc(0xfb); regmbc(0xfc);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001105 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001120 return;
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001121 case 'y': case 0xfd: case 0xff:
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001122 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99)
1123 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9)
Bram Moolenaard82a2a92015-04-21 14:02:35 +02001124 regmbc('y'); regmbc(0xfd); regmbc(0xff);
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001125 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)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001133 return;
1134 }
Bram Moolenaar2c704a72010-06-03 21:17:25 +02001135#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001136 }
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
Bram Moolenaar05540972016-01-30 20:31:25 +01001147get_coll_element(char_u **pp)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001148{
1149 int c;
1150 int l = 1;
1151 char_u *p = *pp;
1152
Bram Moolenaarb878bbb2015-06-09 20:39:24 +02001153 if (p[0] != NUL && p[1] == '.')
Bram Moolenaardf177f62005-02-22 08:39:57 +00001154 {
1155#ifdef FEAT_MBYTE
1156 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001157 l = (*mb_ptr2len)(p + 2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00001158#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
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001174static void get_cpo_flags(void);
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001175static int reg_cpo_lit; /* 'cpoptions' contains 'l' flag */
1176static int reg_cpo_bsl; /* 'cpoptions' contains '\' flag */
1177
1178 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001179get_cpo_flags(void)
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001180{
1181 reg_cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL;
1182 reg_cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL;
1183}
Bram Moolenaardf177f62005-02-22 08:39:57 +00001184
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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01001191skip_anyof(char_u *p)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001192{
Bram Moolenaardf177f62005-02-22 08:39:57 +00001193#ifdef FEAT_MBYTE
1194 int l;
1195#endif
1196
Bram Moolenaardf177f62005-02-22 08:39:57 +00001197 if (*p == '^') /* Complement of range. */
1198 ++p;
1199 if (*p == ']' || *p == '-')
1200 ++p;
1201 while (*p != NUL && *p != ']')
1202 {
1203#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001204 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001205 p += l;
1206 else
1207#endif
1208 if (*p == '-')
1209 {
1210 ++p;
1211 if (*p != ']' && *p != NUL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001212 MB_PTR_ADV(p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00001213 }
1214 else if (*p == '\\'
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001215 && !reg_cpo_bsl
Bram Moolenaardf177f62005-02-22 08:39:57 +00001216 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001217 || (!reg_cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL)))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001218 p += 2;
1219 else if (*p == '[')
1220 {
1221 if (get_char_class(&p) == CLASS_NONE
1222 && get_equi_class(&p) == 0
Bram Moolenaarb878bbb2015-06-09 20:39:24 +02001223 && get_coll_element(&p) == 0
1224 && *p != NUL)
1225 ++p; /* it is not a class name and not NUL */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001226 }
1227 else
1228 ++p;
1229 }
1230
1231 return p;
1232}
1233
1234/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 * Skip past regular expression.
Bram Moolenaar748bf032005-02-02 23:04:36 +00001236 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 * 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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01001244skip_regexp(
1245 char_u *startp,
1246 int dirc,
1247 int magic,
1248 char_u **newp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249{
1250 int mymagic;
1251 char_u *p = startp;
1252
1253 if (magic)
1254 mymagic = MAGIC_ON;
1255 else
1256 mymagic = MAGIC_OFF;
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001257 get_cpo_flags();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258
Bram Moolenaar91acfff2017-03-12 19:22:36 +01001259 for (; p[0] != NUL; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
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)
Bram Moolenaar446cb832008-06-24 21:56:24 +00001282 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 }
1294 return p;
1295}
1296
Bram Moolenaar1ef9bbe2017-06-17 20:08:20 +02001297/*
1298 * Return TRUE if the back reference is legal. We must have seen the close
1299 * brace.
1300 * TODO: Should also check that we don't refer to something that is repeated
1301 * (+*=): what instance of the repetition should we match?
1302 */
1303 static int
1304seen_endbrace(int refnum)
1305{
1306 if (!had_endbrace[refnum])
1307 {
1308 char_u *p;
1309
1310 /* Trick: check if "@<=" or "@<!" follows, in which case
1311 * the \1 can appear before the referenced match. */
1312 for (p = regparse; *p != NUL; ++p)
1313 if (p[0] == '@' && p[1] == '<' && (p[2] == '!' || p[2] == '='))
1314 break;
1315 if (*p == NUL)
1316 {
1317 EMSG(_("E65: Illegal back reference"));
1318 rc_did_emsg = TRUE;
1319 return FALSE;
1320 }
1321 }
1322 return TRUE;
1323}
1324
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001325static regprog_T *bt_regcomp(char_u *expr, int re_flags);
1326static void bt_regfree(regprog_T *prog);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001327
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001329 * bt_regcomp() - compile a regular expression into internal code for the
1330 * traditional back track matcher.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001331 * Returns the program in allocated space. Returns NULL for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 *
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 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001349 static regprog_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01001350bt_regcomp(char_u *expr, int re_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001352 bt_regprog_T *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 /* Allocate space. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001373 r = (bt_regprog_T *)lalloc(sizeof(bt_regprog_T) + regsize, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 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);
Bram Moolenaard3005802009-11-25 17:21:32 +00001383 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 {
1385 vim_free(r);
Bram Moolenaard3005802009-11-25 17:21:32 +00001386 if (reg_toolong)
1387 EMSG_RET_NULL(_("E339: Pattern too long"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 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 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001468#ifdef BT_REGEXP_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001469 regdump(expr, r);
1470#endif
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001471 r->engine = &bt_regengine;
1472 return (regprog_T *)r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473}
1474
1475/*
Bram Moolenaar473de612013-06-08 18:19:48 +02001476 * Free a compiled regexp program, returned by bt_regcomp().
1477 */
1478 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001479bt_regfree(regprog_T *prog)
Bram Moolenaar473de612013-06-08 18:19:48 +02001480{
1481 vim_free(prog);
1482}
1483
1484/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001485 * Setup to parse the regexp. Used once to get the length and once to do it.
1486 */
1487 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001488regcomp_start(
1489 char_u *expr,
1490 int re_flags) /* see vim_regcomp() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491{
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);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001498 reg_strict = (re_flags & RE_STRICT);
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001499 get_cpo_flags();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500
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;
Bram Moolenaard3005802009-11-25 17:21:32 +00001509 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510 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
Bram Moolenaar05540972016-01-30 20:31:25 +01001522vim_regcomp_had_eol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523{
1524 return had_eol;
1525}
1526#endif
1527
Bram Moolenaar7c29f382016-02-12 19:08:15 +01001528/* variables for parsing reginput */
1529static int at_start; /* True when on the first character */
1530static int prev_at_start; /* True when on the second character */
1531
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001533 * Parse regular expression, i.e. main body or parenthesized thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 *
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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01001542reg(
1543 int paren, /* REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN */
1544 int *flagp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545{
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)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001570 EMSG2_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001571 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);
Bram Moolenaard3005802009-11-25 17:21:32 +00001601 if (br == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 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)
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001627 EMSG_RET_NULL(_("E52: Unmatched \\z("));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 else
1629#endif
1630 if (paren == REG_NPAREN)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001631 EMSG2_RET_NULL(_(e_unmatchedpp), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 else
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001633 EMSG2_RET_NULL(_(e_unmatchedp), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 }
1635 else if (paren == REG_NOPAREN && peekchr() != NUL)
1636 {
1637 if (curchr == Magic(')'))
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001638 EMSG2_RET_NULL(_(e_unmatchedpar), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 else
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001640 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 /* 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/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001653 * Parse one alternative of an | operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 * Implements the & operator.
1655 */
1656 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01001657regbranch(int *flagp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658{
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 */
Bram Moolenaard3005802009-11-25 17:21:32 +00001685 if (reg_toolong)
1686 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 reginsert(MATCH, latest);
1688 chain = latest;
1689 }
1690
1691 return ret;
1692}
1693
1694/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001695 * Parse one alternative of an | or & operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 * Implements the concatenation operator.
1697 */
1698 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01001699regconcat(int *flagp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700{
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);
Bram Moolenaard3005802009-11-25 17:21:32 +00001755 if (latest == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 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/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001774 * Parse something followed by possible [*+=].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 *
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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01001783regpiece(int *flagp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784{
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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 /* 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);
Bram Moolenaar582fd852005-03-28 20:58:01 +00001830 regtail(regnode(BACK), ret); /* loop back */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 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;
Bram Moolenaar4c22a912017-11-02 22:29:38 +01001840 long nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841
Bram Moolenaar75eb1612013-05-29 18:45:11 +02001842 nr = getdecchrs();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 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)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001855 EMSG2_RET_NULL(_("E59: invalid character after %s@"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 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 */
Bram Moolenaar75eb1612013-05-29 18:45:11 +02001864 if (lop == BEHIND || lop == NOBEHIND)
1865 {
1866 if (nr < 0)
1867 nr = 0; /* no limit is same as zero limit */
1868 reginsert_nr(lop, nr, ret);
1869 }
1870 else
1871 reginsert(lop, ret);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 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;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 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)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001896 EMSG2_RET_NULL(_("E60: Too many complex %s{...}s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 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
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001923/* When making changes to classchars also change nfa_classcodes. */
1924static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU";
1925static 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001936 * Parse the lowest level.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 *
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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01001943regatom(int *flagp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944{
1945 char_u *ret;
1946 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948 char_u *p;
1949 int extra = 0;
Bram Moolenaar7c29f382016-02-12 19:08:15 +01001950 int save_prev_at_start = prev_at_start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951
1952 *flagp = WORST; /* Tentatively. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953
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 */
Bram Moolenaar2f40d122017-10-24 21:49:36 +02002000 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001
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 \\_"));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002035#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
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 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(')'):
Bram Moolenaard4210772008-01-02 14:35:30 +00002078 if (one_exactly)
2079 EMSG_ONE_RET_NULL;
Bram Moolenaar95f09602016-11-10 20:01:45 +01002080 IEMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 /* 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 */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002097 if (reg_prev_sub != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 {
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');
Bram Moolenaar1ef9bbe2017-06-17 20:08:20 +02002130 if (!seen_endbrace(refnum))
2131 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 ret = regnode(BACKREF + refnum);
2133 }
2134 break;
2135
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136 case Magic('z'):
2137 {
2138 c = no_Magic(getchr());
2139 switch (c)
2140 {
Bram Moolenaarc4956c82006-03-12 21:58:43 +00002141#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 case '(': if (reg_do_extmatch != REX_SET)
Bram Moolenaar5de820b2013-06-02 15:01:57 +02002143 EMSG_RET_NULL(_(e_z_not_allowed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 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)
Bram Moolenaar5de820b2013-06-02 15:01:57 +02002162 EMSG_RET_NULL(_(e_z1_not_allowed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 ret = regnode(ZREF + c - '0');
2164 re_has_z = REX_USE;
2165 break;
Bram Moolenaarc4956c82006-03-12 21:58:43 +00002166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167
2168 case 's': ret = regnode(MOPEN + 0);
Bram Moolenaarfb031402014-09-09 17:18:49 +02002169 if (re_mult_next("\\zs") == FAIL)
2170 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 break;
2172
2173 case 'e': ret = regnode(MCLOSE + 0);
Bram Moolenaarfb031402014-09-09 17:18:49 +02002174 if (re_mult_next("\\ze") == FAIL)
2175 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 break;
2177
2178 default: EMSG_RET_NULL(_("E68: Invalid character after \\z"));
2179 }
2180 }
2181 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182
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
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002212 case 'V':
2213 ret = regnode(RE_VISUAL);
2214 break;
2215
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02002216 case 'C':
2217 ret = regnode(RE_COMPOSING);
2218 break;
2219
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 /* \%[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)
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002234 EMSG2_RET_NULL(_(e_missing_sb),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 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)
Bram Moolenaar2976c022013-06-05 21:30:37 +02002250 EMSG2_RET_NULL(_(e_empty_sb),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 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 }
Bram Moolenaara6404a42008-08-08 11:45:39 +00002271 *flagp &= ~(HASWIDTH | SIMPLE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 break;
2273 }
2274
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002275 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 {
Bram Moolenaar4c22a912017-11-02 22:29:38 +01002281 long i;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002282
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)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002294 EMSG2_RET_NULL(
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002295 _("E678: Invalid character after %s%%[dxouU]"),
2296 reg_magic == MAGIC_ALL);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002297#ifdef FEAT_MBYTE
2298 if (use_multibytecode(i))
2299 ret = regnode(MULTIBYTECODE);
2300 else
2301#endif
2302 ret = regnode(EXACTLY);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002303 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 default:
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002317 if (VIM_ISDIGIT(c) || c == '<' || c == '>'
2318 || c == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 {
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 }
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002331 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')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 {
2347 if (c == 'l')
Bram Moolenaar7c29f382016-02-12 19:08:15 +01002348 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 ret = regnode(RE_LNUM);
Bram Moolenaar7c29f382016-02-12 19:08:15 +01002350 if (save_prev_at_start)
2351 at_start = TRUE;
2352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 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
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002370 EMSG2_RET_NULL(_("E71: Invalid character after %s%%"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 reg_magic == MAGIC_ALL);
2372 }
2373 }
2374 break;
2375
2376 case Magic('['):
2377collection:
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 == '-')
Bram Moolenaardf177f62005-02-22 08:39:57 +00002405 {
2406 startc = *regparse;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 regc(*regparse++);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002408 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409
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 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00002426 /* Also accept "a-[.z.]" */
2427 endc = 0;
2428 if (*regparse == '[')
2429 endc = get_coll_element(&regparse);
2430 if (endc == 0)
2431 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432#ifdef FEAT_MBYTE
Bram Moolenaardf177f62005-02-22 08:39:57 +00002433 if (has_mbyte)
2434 endc = mb_ptr2char_adv(&regparse);
2435 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00002437 endc = *regparse++;
2438 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002439
2440 /* Handle \o40, \x20 and \u20AC style sequences */
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002441 if (endc == '\\' && !reg_cpo_lit && !reg_cpo_bsl)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002442 endc = coll_get_char();
2443
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 if (startc > endc)
Bram Moolenaar966e58e2017-06-05 16:54:08 +02002445 EMSG_RET_NULL(_(e_reverse_range));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446#ifdef FEAT_MBYTE
2447 if (has_mbyte && ((*mb_char2len)(startc) > 1
2448 || (*mb_char2len)(endc) > 1))
2449 {
Bram Moolenaar966e58e2017-06-05 16:54:08 +02002450 /* Limit to a range of 256 chars. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 if (endc > startc + 256)
Bram Moolenaar966e58e2017-06-05 16:54:08 +02002452 EMSG_RET_NULL(_(e_large_class));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 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.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002480 * Posix doesn't recognize backslash at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 */
2482 else if (*regparse == '\\'
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002483 && !reg_cpo_bsl
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002485 || (!reg_cpo_lit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 && 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 {
Bram Moolenaare337e5f2013-01-30 18:21:51 +01002495 /* Using \n inside [^] does not change what
2496 * matches. "[^\n]" is the same as ".". */
2497 if (*ret == ANYOF)
2498 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 *ret = ANYOF + ADD_NL;
Bram Moolenaare337e5f2013-01-30 18:21:51 +01002500 *flagp |= HASNL;
2501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 /* else: must have had a \n already */
2503 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 regparse++;
2505 startc = -1;
2506 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002507 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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 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
Bram Moolenaardf177f62005-02-22 08:39:57 +00002534 c_class = get_char_class(&regparse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 startc = -1;
2536 /* Characters assumed to be 8 bits! */
2537 switch (c_class)
2538 {
2539 case CLASS_NONE:
Bram Moolenaardf177f62005-02-22 08:39:57 +00002540 c_class = get_equi_class(&regparse);
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(&regparse)) != 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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 break;
2559 case CLASS_ALNUM:
Bram Moolenaare8aee7d2016-04-26 21:39:13 +02002560 for (cu = 1; cu < 128; cu++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 if (isalnum(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002562 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 break;
2564 case CLASS_ALPHA:
Bram Moolenaare8aee7d2016-04-26 21:39:13 +02002565 for (cu = 1; cu < 128; cu++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 if (isalpha(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002567 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 break;
2569 case CLASS_BLANK:
2570 regc(' ');
2571 regc('\t');
2572 break;
2573 case CLASS_CNTRL:
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02002574 for (cu = 1; cu <= 127; cu++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 if (iscntrl(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002576 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 break;
2578 case CLASS_DIGIT:
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02002579 for (cu = 1; cu <= 127; cu++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 if (VIM_ISDIGIT(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002581 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 break;
2583 case CLASS_GRAPH:
Bram Moolenaar0c078fc2017-03-29 15:31:20 +02002584 for (cu = 1; cu <= 127; cu++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 if (isgraph(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002586 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 break;
2588 case CLASS_LOWER:
2589 for (cu = 1; cu <= 255; cu++)
Bram Moolenaare8aee7d2016-04-26 21:39:13 +02002590 if (MB_ISLOWER(cu) && cu != 170
2591 && cu != 186)
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002592 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 break;
2594 case CLASS_PRINT:
2595 for (cu = 1; cu <= 255; cu++)
2596 if (vim_isprintc(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002597 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 break;
2599 case CLASS_PUNCT:
Bram Moolenaare8aee7d2016-04-26 21:39:13 +02002600 for (cu = 1; cu < 128; cu++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 if (ispunct(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002602 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 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++)
Bram Moolenaara245a5b2007-08-11 11:58:23 +00002611 if (MB_ISUPPER(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002612 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 break;
2614 case CLASS_XDIGIT:
2615 for (cu = 1; cu <= 255; cu++)
2616 if (vim_isxdigit(cu))
Bram Moolenaaraf98a492016-04-24 14:40:12 +02002617 regmbc(cu);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 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);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002643 len = (*mb_ptr2len)(regparse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 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 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +00002665 else if (reg_strict)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002666 EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 }
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
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002676 * before a multi and when it's a composing char. */
2677 if (use_multibytecode(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002679do_multibyte:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680 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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 int l;
2711
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002712 /* Need to get composing character too. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 for (;;)
2714 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002715 l = utf_ptr2len(regparse);
2716 if (!UTF_COMPOSINGLIKE(regparse, regparse + l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 break;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002718 regmbc(utf_ptr2char(regparse));
2719 skipchr();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 }
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
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002741#ifdef FEAT_MBYTE
2742/*
2743 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for
2744 * character "c".
2745 */
2746 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01002747use_multibytecode(int c)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002748{
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
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002756 * Emit a node.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757 * Return pointer to generated code.
2758 */
2759 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01002760regnode(int op)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761{
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
Bram Moolenaar05540972016-01-30 20:31:25 +01002780regc(int b)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781{
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
Bram Moolenaar05540972016-01-30 20:31:25 +01002793regmbc(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794{
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02002795 if (!has_mbyte && c > 0xff)
2796 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 if (regcode == JUST_CALC_SIZE)
2798 regsize += (*mb_char2len)(c);
2799 else
2800 regcode += (*mb_char2bytes)(c, regcode);
2801}
2802#endif
2803
2804/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002805 * Insert an operator in front of already-emitted operand
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806 *
2807 * Means relocating the operand.
2808 */
2809 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002810reginsert(int op, char_u *opnd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811{
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/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002834 * Insert an operator in front of already-emitted operand.
Bram Moolenaar75eb1612013-05-29 18:45:11 +02002835 * Add a number to the operator.
2836 */
2837 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002838reginsert_nr(int op, long val, char_u *opnd)
Bram Moolenaar75eb1612013-05-29 18:45:11 +02002839{
2840 char_u *src;
2841 char_u *dst;
2842 char_u *place;
2843
2844 if (regcode == JUST_CALC_SIZE)
2845 {
2846 regsize += 7;
2847 return;
2848 }
2849 src = regcode;
2850 regcode += 7;
2851 dst = regcode;
2852 while (src > opnd)
2853 *--dst = *--src;
2854
2855 place = opnd; /* Op node, where operand used to be. */
2856 *place++ = op;
2857 *place++ = NUL;
2858 *place++ = NUL;
2859 place = re_put_long(place, (long_u)val);
2860}
2861
2862/*
2863 * Insert an operator in front of already-emitted operand.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 * The operator has the given limit values as operands. Also set next pointer.
2865 *
2866 * Means relocating the operand.
2867 */
2868 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002869reginsert_limits(
2870 int op,
2871 long minval,
2872 long maxval,
2873 char_u *opnd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874{
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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01002903re_put_long(char_u *p, long_u val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904{
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/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002913 * Set the next-pointer at the end of a node chain.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 */
2915 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002916regtail(char_u *p, char_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917{
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
Bram Moolenaar582fd852005-03-28 20:58:01 +00002935 if (OP(scan) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 offset = (int)(scan - val);
2937 else
2938 offset = (int)(val - scan);
Bram Moolenaard3005802009-11-25 17:21:32 +00002939 /* When the offset uses more than 16 bits it can no longer fit in the two
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02002940 * bytes available. Use a global flag to avoid having to check return
Bram Moolenaard3005802009-11-25 17:21:32 +00002941 * 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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949}
2950
2951/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002952 * Like regtail, on item after a BRANCH; nop if none.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 */
2954 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002955regoptail(char_u *p, char_u *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956{
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/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002966 * Functions for getting characters from the regexp input.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002968/*
2969 * Start parsing at "str".
2970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002972initchr(char_u *str)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 regparse = str;
2975 prevchr_len = 0;
2976 curchr = prevprevchr = prevchr = nextchr = -1;
2977 at_start = TRUE;
2978 prev_at_start = FALSE;
2979}
2980
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002981/*
Bram Moolenaar3737fc12013-06-01 14:42:56 +02002982 * Save the current parse state, so that it can be restored and parsing
2983 * starts in the same state again.
2984 */
2985 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002986save_parse_state(parse_state_T *ps)
Bram Moolenaar3737fc12013-06-01 14:42:56 +02002987{
2988 ps->regparse = regparse;
2989 ps->prevchr_len = prevchr_len;
2990 ps->curchr = curchr;
2991 ps->prevchr = prevchr;
2992 ps->prevprevchr = prevprevchr;
2993 ps->nextchr = nextchr;
2994 ps->at_start = at_start;
2995 ps->prev_at_start = prev_at_start;
2996 ps->regnpar = regnpar;
2997}
2998
2999/*
3000 * Restore a previously saved parse state.
3001 */
3002 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003003restore_parse_state(parse_state_T *ps)
Bram Moolenaar3737fc12013-06-01 14:42:56 +02003004{
3005 regparse = ps->regparse;
3006 prevchr_len = ps->prevchr_len;
3007 curchr = ps->curchr;
3008 prevchr = ps->prevchr;
3009 prevprevchr = ps->prevprevchr;
3010 nextchr = ps->nextchr;
3011 at_start = ps->at_start;
3012 prev_at_start = ps->prev_at_start;
3013 regnpar = ps->regnpar;
3014}
3015
3016
3017/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003018 * Get the next character without advancing.
3019 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003021peekchr(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003023 static int after_slash = FALSE;
3024
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 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 '*':
Bram Moolenaardf177f62005-02-22 08:39:57 +00003063 /* * 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('|'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 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;
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003099 int is_magic_all = (reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003101 /* ignore \c \C \m \M \v \V and \Z after '$' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003102 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C'
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003103 || 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;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 p += 2;
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 if (p[0] == NUL
3113 || (p[0] == '\\'
3114 && (p[1] == '|' || p[1] == '&' || p[1] == ')'
3115 || p[1] == 'n'))
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003116 || (is_magic_all
3117 && (p[0] == '|' || p[0] == '&' || p[0] == ')'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 || 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
Bram Moolenaarb878bbb2015-06-09 20:39:24 +02003139 * "\V"). We now fetch the next character and toggle its
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 * 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;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003147 ++after_slash;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 peekchr();
3149 --regparse;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003150 --after_slash;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 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
Bram Moolenaar05540972016-01-30 20:31:25 +01003193skipchr(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194{
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
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003203 if (enc_utf8)
Bram Moolenaar8f5c5782007-11-29 20:27:21 +00003204 /* exclude composing chars that mb_ptr2len does include */
3205 prevchr_len += utf_ptr2len(regparse + prevchr_len);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003206 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003207 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 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
Bram Moolenaar05540972016-01-30 20:31:25 +01003226skipchr_keepstart(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227{
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
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003238/*
3239 * Get the next character from the pattern. We know about magic and such, so
3240 * therefore we need a lexical analyzer.
3241 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003243getchr(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
3245 int chr = peekchr();
3246
3247 skipchr();
3248 return chr;
3249}
3250
3251/*
3252 * put character back. Works only once!
3253 */
3254 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003255ungetchr(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256{
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/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003269 * 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:
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003272 * blahblah\%x20asdf
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003273 * before-^ ^-after
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003274 * 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 */
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003277 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01003278gethexchrs(int maxinputlen)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003279{
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003280 long_u nr = 0;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003281 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;
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003296 return (long)nr;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003297}
3298
3299/*
Bram Moolenaar75eb1612013-05-29 18:45:11 +02003300 * Get and return the value of the decimal string immediately after the
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003301 * current position. Return -1 for invalid. Consumes all digits.
3302 */
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003303 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01003304getdecchrs(void)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003305{
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003306 long_u nr = 0;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003307 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;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02003318 curchr = -1; /* no longer valid */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003319 }
3320
3321 if (i == 0)
3322 return -1;
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003323 return (long)nr;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003324}
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
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003332 * before-^ ^-after
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003333 */
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003334 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01003335getoctchrs(void)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003336{
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003337 long_u nr = 0;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003338 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;
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003353 return (long)nr;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003354}
3355
3356/*
3357 * Get a number after a backslash that is inside [].
3358 * When nothing is recognized return a backslash.
3359 */
3360 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003361coll_get_char(void)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003362{
Bram Moolenaar4c22a912017-11-02 22:29:38 +01003363 long nr = -1;
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003364
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/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 * 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
Bram Moolenaar05540972016-01-30 20:31:25 +01003390read_limits(long *minval, long *maxval)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
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(&regparse);
3404 if (*regparse == ',') /* There is a comma */
3405 {
3406 if (vim_isdigit(*++regparse))
3407 *maxval = getdigits(&regparse);
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 \{...\} */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003417 if (*regparse != '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 {
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: */
3447static linenr_T reglnum; /* line number, relative to first line */
3448static char_u *regline; /* start of current line */
3449static char_u *reginput; /* current input, points into "regline" */
3450
3451static int need_clear_subexpr; /* subexpressions still need to be
3452 * cleared */
3453#ifdef FEAT_SYN_HL
3454static int need_clear_zsubexpr = FALSE; /* extmatch subexpressions
3455 * still need to be cleared */
3456#endif
3457
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458/*
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().
Bram Moolenaar582fd852005-03-28 20:58:01 +00003461 * Also stores the length of "backpos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 */
3463typedef 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;
Bram Moolenaar582fd852005-03-28 20:58:01 +00003470 int rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471} regsave_T;
3472
3473/* struct to save start/end pointer/position in for \(\) */
3474typedef struct
3475{
3476 union
3477 {
3478 char_u *ptr;
3479 lpos_T pos;
3480 } se_u;
3481} save_se_T;
3482
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003483/* used for BEHIND and NOBEHIND matching */
3484typedef struct regbehind_S
3485{
3486 regsave_T save_after;
3487 regsave_T save_behind;
Bram Moolenaarfde483c2008-06-15 12:21:50 +00003488 int save_need_clear_subexpr;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003489 save_se_T save_start[NSUBEXP];
3490 save_se_T save_end[NSUBEXP];
3491} regbehind_T;
3492
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003493static char_u *reg_getline(linenr_T lnum);
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02003494static long bt_regexec_both(char_u *line, colnr_T col, proftime_T *tm, int *timed_out);
Bram Moolenaar09463262017-06-17 20:55:06 +02003495static long regtry(bt_regprog_T *prog, colnr_T col, proftime_T *tm, int *timed_out);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003496static void cleanup_subexpr(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497#ifdef FEAT_SYN_HL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003498static void cleanup_zsubexpr(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003500static void save_subexpr(regbehind_T *bp);
3501static void restore_subexpr(regbehind_T *bp);
3502static void reg_nextline(void);
3503static void reg_save(regsave_T *save, garray_T *gap);
3504static void reg_restore(regsave_T *save, garray_T *gap);
3505static int reg_save_equal(regsave_T *save);
3506static void save_se_multi(save_se_T *savep, lpos_T *posp);
3507static void save_se_one(save_se_T *savep, char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508
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
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003520static int re_num_cmp(long_u val, char_u *scan);
3521static int match_with_backref(linenr_T start_lnum, colnr_T start_col, linenr_T end_lnum, colnr_T end_col, int *bytelen);
Bram Moolenaar09463262017-06-17 20:55:06 +02003522static int regmatch(char_u *prog, proftime_T *tm, int *timed_out);
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003523static int regrepeat(char_u *p, long maxcount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524
3525#ifdef DEBUG
3526int regnarrate = 0;
3527#endif
3528
3529/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 * 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
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003532 * it's too small. It's freed in bt_regexec_both() when finished.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 */
Bram Moolenaard4210772008-01-02 14:35:30 +00003534static char_u *reg_tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535static unsigned reg_tofreelen;
3536
3537/*
Bram Moolenaar6100d022016-10-02 16:51:57 +02003538 * Structure used to store the execution state of the regex engine.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003539 * Which ones are set depends on whether a single-line or multi-line match is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540 * done:
3541 * single-line multi-line
3542 * reg_match &regmatch_T NULL
3543 * reg_mmatch NULL &regmmatch_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
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01003549 * reg_buf curbuf buffer in which to search
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 * 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 */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003554typedef struct {
3555 regmatch_T *reg_match;
3556 regmmatch_T *reg_mmatch;
3557 char_u **reg_startp;
3558 char_u **reg_endp;
3559 lpos_T *reg_startpos;
3560 lpos_T *reg_endpos;
3561 win_T *reg_win;
3562 buf_T *reg_buf;
3563 linenr_T reg_firstlnum;
3564 linenr_T reg_maxline;
3565 int reg_line_lbr; /* "\n" in string is line break */
3566
3567 /* Internal copy of 'ignorecase'. It is set at each call to vim_regexec().
3568 * Normally it gets the value of "rm_ic" or "rmm_ic", but when the pattern
3569 * contains '\c' or '\C' the value is overruled. */
3570 int reg_ic;
3571
3572#ifdef FEAT_MBYTE
3573 /* Similar to rex.reg_ic, but only for 'combining' characters. Set with \Z
3574 * flag in the regexp. Defaults to false, always. */
3575 int reg_icombine;
3576#endif
3577
3578 /* Copy of "rmm_maxcol": maximum column to search for a match. Zero when
3579 * there is no maximum. */
3580 colnr_T reg_maxcol;
3581} regexec_T;
3582
3583static regexec_T rex;
3584static int rex_in_use = FALSE;
3585
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003587/* Values for rs_state in regitem_T. */
3588typedef 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 */
3614typedef 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 */
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003623 short rs_no; /* submatch nr or BEHIND/NOBEHIND */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003624} regitem_T;
3625
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003626static regitem_T *regstack_push(regstate_T state, char_u *scan);
3627static void regstack_pop(char_u **scan);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003628
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003629/* used for STAR, PLUS and BRACE_SIMPLE matching */
3630typedef 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. */
3641typedef 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/*
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003648 * "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
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003653 */
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003654static garray_T regstack = {0, 0, 0, 0, NULL};
3655static 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
Bram Moolenaar05540972016-01-30 20:31:25 +01003673free_regexp_stuff(void)
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003674{
3675 ga_clear(&regstack);
3676 ga_clear(&backpos);
3677 vim_free(reg_tofree);
3678 vim_free(reg_prev_sub);
3679}
3680#endif
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003681
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682/*
3683 * Get pointer to the line "lnum", which is relative to "reg_firstlnum".
3684 */
3685 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01003686reg_getline(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687{
3688 /* when looking behind for a match/no-match lnum is negative. But we
3689 * can't go before line 1 */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003690 if (rex.reg_firstlnum + lnum < 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 return NULL;
Bram Moolenaar6100d022016-10-02 16:51:57 +02003692 if (lnum > rex.reg_maxline)
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003693 /* Must have matched the "\n" in the last line. */
3694 return (char_u *)"";
Bram Moolenaar6100d022016-10-02 16:51:57 +02003695 return ml_get_buf(rex.reg_buf, rex.reg_firstlnum + lnum, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696}
3697
3698static regsave_T behind_pos;
3699
3700#ifdef FEAT_SYN_HL
3701static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */
3702static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */
3703static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */
3704static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */
3705#endif
3706
3707/* TRUE if using multi-line regexp. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003708#define REG_MULTI (rex.reg_match == NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003709
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710/*
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'.
Bram Moolenaar2af78a12014-04-23 19:06:37 +02003714 * if "line_lbr" is TRUE consider a "\n" in "line" to be a line break.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 *
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003716 * Returns 0 for failure, number of lines contained in the match otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003718 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003719bt_regexec_nl(
3720 regmatch_T *rmp,
3721 char_u *line, /* string to match against */
3722 colnr_T col, /* column to start looking for match */
3723 int line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724{
Bram Moolenaar6100d022016-10-02 16:51:57 +02003725 rex.reg_match = rmp;
3726 rex.reg_mmatch = NULL;
3727 rex.reg_maxline = 0;
3728 rex.reg_line_lbr = line_lbr;
3729 rex.reg_buf = curbuf;
3730 rex.reg_win = NULL;
3731 rex.reg_ic = rmp->rm_ic;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732#ifdef FEAT_MBYTE
Bram Moolenaar6100d022016-10-02 16:51:57 +02003733 rex.reg_icombine = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734#endif
Bram Moolenaar6100d022016-10-02 16:51:57 +02003735 rex.reg_maxcol = 0;
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003736
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02003737 return bt_regexec_both(line, col, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738}
3739
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740/*
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 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003748 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01003749bt_regexec_multi(
3750 regmmatch_T *rmp,
3751 win_T *win, /* window in which to search or NULL */
3752 buf_T *buf, /* buffer in which to search */
3753 linenr_T lnum, /* nr of line to start looking for match */
3754 colnr_T col, /* column to start looking for match */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02003755 proftime_T *tm, /* timeout limit or NULL */
3756 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757{
Bram Moolenaar6100d022016-10-02 16:51:57 +02003758 rex.reg_match = NULL;
3759 rex.reg_mmatch = rmp;
3760 rex.reg_buf = buf;
3761 rex.reg_win = win;
3762 rex.reg_firstlnum = lnum;
3763 rex.reg_maxline = rex.reg_buf->b_ml.ml_line_count - lnum;
3764 rex.reg_line_lbr = FALSE;
3765 rex.reg_ic = rmp->rmm_ic;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766#ifdef FEAT_MBYTE
Bram Moolenaar6100d022016-10-02 16:51:57 +02003767 rex.reg_icombine = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768#endif
Bram Moolenaar6100d022016-10-02 16:51:57 +02003769 rex.reg_maxcol = rmp->rmm_maxcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02003771 return bt_regexec_both(NULL, col, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772}
3773
3774/*
3775 * Match a regexp against a string ("line" points to the string) or multiple
3776 * lines ("line" is NULL, use reg_getline()).
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003777 * Returns 0 for failure, number of lines contained in the match otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 static long
Bram Moolenaar05540972016-01-30 20:31:25 +01003780bt_regexec_both(
3781 char_u *line,
3782 colnr_T col, /* column to start looking for match */
Bram Moolenaar09463262017-06-17 20:55:06 +02003783 proftime_T *tm, /* timeout limit or NULL */
3784 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785{
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003786 bt_regprog_T *prog;
3787 char_u *s;
3788 long retval = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003790 /* 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(&regstack, 1, REGSTACK_INITIAL);
Bram Moolenaarcde88542015-08-11 19:14:00 +02003799 (void)ga_grow(&regstack, REGSTACK_INITIAL);
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003800 regstack.ga_growsize = REGSTACK_INITIAL * 8;
3801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003803 if (backpos.ga_data == NULL)
3804 {
3805 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL);
Bram Moolenaarcde88542015-08-11 19:14:00 +02003806 (void)ga_grow(&backpos, BACKPOS_INITIAL);
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003807 backpos.ga_growsize = BACKPOS_INITIAL * 8;
3808 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003809
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 if (REG_MULTI)
3811 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02003812 prog = (bt_regprog_T *)rex.reg_mmatch->regprog;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 line = reg_getline((linenr_T)0);
Bram Moolenaar6100d022016-10-02 16:51:57 +02003814 rex.reg_startpos = rex.reg_mmatch->startpos;
3815 rex.reg_endpos = rex.reg_mmatch->endpos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 }
3817 else
3818 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02003819 prog = (bt_regprog_T *)rex.reg_match->regprog;
3820 rex.reg_startp = rex.reg_match->startp;
3821 rex.reg_endp = rex.reg_match->endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 }
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
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003835 /* If the start column is past the maximum column: no need to try. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003836 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003837 goto theend;
3838
Bram Moolenaar6100d022016-10-02 16:51:57 +02003839 /* If pattern contains "\c" or "\C": overrule value of rex.reg_ic */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 if (prog->regflags & RF_ICASE)
Bram Moolenaar6100d022016-10-02 16:51:57 +02003841 rex.reg_ic = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 else if (prog->regflags & RF_NOICASE)
Bram Moolenaar6100d022016-10-02 16:51:57 +02003843 rex.reg_ic = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844
3845#ifdef FEAT_MBYTE
Bram Moolenaar6100d022016-10-02 16:51:57 +02003846 /* If pattern contains "\Z" overrule value of rex.reg_icombine */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 if (prog->regflags & RF_ICOMBINE)
Bram Moolenaar6100d022016-10-02 16:51:57 +02003848 rex.reg_icombine = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849#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;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003863
3864 /*
3865 * This is used very often, esp. for ":global". Use three versions of
3866 * the loop to avoid overhead of conditions.
3867 */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003868 if (!rex.reg_ic
Bram Moolenaar05159a02005-02-26 23:04:13 +00003869#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
Bram Moolenaar6100d022016-10-02 16:51:57 +02003880 else if (!rex.reg_ic || (!enc_utf8 && mb_char2len(c) > 1))
Bram Moolenaar05159a02005-02-26 23:04:13 +00003881 while ((s = vim_strchr(s, c)) != NULL)
3882 {
3883 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3884 break; /* Found it. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003885 MB_PTR_ADV(s);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003886 }
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. */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01003893 MB_PTR_ADV(s);
Bram Moolenaar05159a02005-02-26 23:04:13 +00003894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 if (s == NULL) /* Not present. */
3896 goto theend;
3897 }
3898
3899 regline = line;
3900 reglnum = 0;
Bram Moolenaar73a92fe2010-09-14 10:55:47 +02003901 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902
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
Bram Moolenaar6100d022016-10-02 16:51:57 +02003916 || (rex.reg_ic && ((
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917#ifdef FEAT_MBYTE
3918 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c)))
3919 || (c < 255 && prog->regstart < 255 &&
3920#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003921 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c)))))
Bram Moolenaar09463262017-06-17 20:55:06 +02003922 retval = regtry(prog, col, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 else
3924 retval = 0;
3925 }
3926 else
3927 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003928#ifdef FEAT_RELTIME
3929 int tm_count = 0;
3930#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 /* Messy cases: unanchored match. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003932 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 {
3934 if (prog->regstart != NUL)
3935 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003936 /* Skip until the char we know it must start with.
3937 * Used often, do some work to avoid call overhead. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003938 if (!rex.reg_ic
Bram Moolenaar05159a02005-02-26 23:04:13 +00003939#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);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 if (s == NULL)
3947 {
3948 retval = 0;
3949 break;
3950 }
3951 col = (int)(s - regline);
3952 }
3953
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003954 /* Check for maximum column to try. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02003955 if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol)
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003956 {
3957 retval = 0;
3958 break;
3959 }
3960
Bram Moolenaar09463262017-06-17 20:55:06 +02003961 retval = regtry(prog, col, tm, timed_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 if (retval > 0)
3963 break;
3964
3965 /* if not currently on the first line, get it again */
3966 if (reglnum != 0)
3967 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 reglnum = 0;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003969 regline = reg_getline((linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 }
3971 if (regline[col] == NUL)
3972 break;
3973#ifdef FEAT_MBYTE
3974 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003975 col += (*mb_ptr2len)(regline + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 else
3977#endif
3978 ++col;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003979#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))
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02003985 {
3986 if (timed_out != NULL)
3987 *timed_out = TRUE;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003988 break;
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02003989 }
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003990 }
3991#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 }
3993 }
3994
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995theend:
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003996 /* 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)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003999 VIM_CLEAR(reg_tofree);
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004000 if (regstack.ga_maxlen > REGSTACK_INITIAL)
4001 ga_clear(&regstack);
4002 if (backpos.ga_maxlen > BACKPOS_INITIAL)
4003 ga_clear(&backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004004
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 return retval;
4006}
4007
4008#ifdef FEAT_SYN_HL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004009static reg_extmatch_T *make_extmatch(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004010
4011/*
4012 * Create a new extmatch and mark it as referenced once.
4013 */
4014 static reg_extmatch_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01004015make_extmatch(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016{
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 *
Bram Moolenaar05540972016-01-30 20:31:25 +01004029ref_extmatch(reg_extmatch_T *em)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030{
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
Bram Moolenaar05540972016-01-30 20:31:25 +01004041unref_extmatch(reg_extmatch_T *em)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004042{
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
Bram Moolenaar09463262017-06-17 20:55:06 +02004059regtry(
4060 bt_regprog_T *prog,
4061 colnr_T col,
4062 proftime_T *tm, /* timeout limit or NULL */
4063 int *timed_out) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064{
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
Bram Moolenaar09463262017-06-17 20:55:06 +02004073 if (regmatch(prog->program + 1, tm, timed_out) == 0)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004074 return 0;
4075
4076 cleanup_subexpr();
4077 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004079 if (rex.reg_startpos[0].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004081 rex.reg_startpos[0].lnum = 0;
4082 rex.reg_startpos[0].col = col;
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004083 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02004084 if (rex.reg_endpos[0].lnum < 0)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004085 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004086 rex.reg_endpos[0].lnum = reglnum;
4087 rex.reg_endpos[0].col = (int)(reginput - regline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 }
4089 else
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004090 /* Use line number of "\ze". */
Bram Moolenaar6100d022016-10-02 16:51:57 +02004091 reglnum = rex.reg_endpos[0].lnum;
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004092 }
4093 else
4094 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004095 if (rex.reg_startp[0] == NULL)
4096 rex.reg_startp[0] = regline + col;
4097 if (rex.reg_endp[0] == NULL)
4098 rex.reg_endp[0] = reginput;
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100#ifdef FEAT_SYN_HL
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004101 /* Package any found \z(...\) matches for export. Default is none. */
4102 unref_extmatch(re_extmatch_out);
4103 re_extmatch_out = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004105 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++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004113 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004115 /* Only accept single line matches. */
4116 if (reg_startzpos[i].lnum >= 0
Bram Moolenaar5a4e1602014-04-06 21:34:04 +02004117 && reg_endzpos[i].lnum == reg_startzpos[i].lnum
4118 && reg_endzpos[i].col >= reg_startzpos[i].col)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004119 re_extmatch_out->matches[i] =
4120 vim_strnsave(reg_getline(reg_startzpos[i].lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 + reg_startzpos[i].col,
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004122 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] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 vim_strnsave(reg_startzp[i],
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004129 (int)(reg_endzp[i] - reg_startzp[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 }
4131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004133#endif
4134 return 1 + reglnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135}
4136
4137#ifdef FEAT_MBYTE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004138static int reg_prev_class(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140/*
4141 * Get class of previous character.
4142 */
4143 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01004144reg_prev_class(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145{
4146 if (reginput > regline)
Bram Moolenaarf813a182013-01-30 13:59:37 +01004147 return mb_get_class_buf(reginput - 1
Bram Moolenaar6100d022016-10-02 16:51:57 +02004148 - (*mb_head_off)(regline, reginput - 1), rex.reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 return -1;
4150}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004152
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01004153static int reg_match_visual(void);
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004154
4155/*
4156 * Return TRUE if the current reginput position matches the Visual area.
4157 */
4158 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01004159reg_match_visual(void)
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004160{
4161 pos_T top, bot;
4162 linenr_T lnum;
4163 colnr_T col;
Bram Moolenaar6100d022016-10-02 16:51:57 +02004164 win_T *wp = rex.reg_win == NULL ? curwin : rex.reg_win;
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004165 int mode;
4166 colnr_T start, end;
4167 colnr_T start2, end2;
4168 colnr_T cols;
4169
4170 /* Check if the buffer is the current buffer. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02004171 if (rex.reg_buf != curbuf || VIsual.lnum == 0)
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004172 return FALSE;
4173
4174 if (VIsual_active)
4175 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004176 if (LT_POS(VIsual, wp->w_cursor))
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004177 {
4178 top = VIsual;
4179 bot = wp->w_cursor;
4180 }
4181 else
4182 {
4183 top = wp->w_cursor;
4184 bot = VIsual;
4185 }
4186 mode = VIsual_mode;
4187 }
4188 else
4189 {
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01004190 if (LT_POS(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end))
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004191 {
4192 top = curbuf->b_visual.vi_start;
4193 bot = curbuf->b_visual.vi_end;
4194 }
4195 else
4196 {
4197 top = curbuf->b_visual.vi_end;
4198 bot = curbuf->b_visual.vi_start;
4199 }
4200 mode = curbuf->b_visual.vi_mode;
4201 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02004202 lnum = reglnum + rex.reg_firstlnum;
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004203 if (lnum < top.lnum || lnum > bot.lnum)
4204 return FALSE;
4205
4206 if (mode == 'v')
4207 {
4208 col = (colnr_T)(reginput - regline);
4209 if ((lnum == top.lnum && col < top.col)
4210 || (lnum == bot.lnum && col >= bot.col + (*p_sel != 'e')))
4211 return FALSE;
4212 }
4213 else if (mode == Ctrl_V)
4214 {
4215 getvvcol(wp, &top, &start, NULL, &end);
4216 getvvcol(wp, &bot, &start2, NULL, &end2);
4217 if (start2 < start)
4218 start = start2;
4219 if (end2 > end)
4220 end = end2;
4221 if (top.col == MAXCOL || bot.col == MAXCOL)
4222 end = MAXCOL;
4223 cols = win_linetabsize(wp, regline, (colnr_T)(reginput - regline));
4224 if (cols < start || cols > end - (*p_sel == 'e'))
4225 return FALSE;
4226 }
4227 return TRUE;
4228}
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004229
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004230#define ADVANCE_REGINPUT() MB_PTR_ADV(reginput)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231
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 */
4237static long bl_minval;
4238static long bl_maxval;
4239
4240/*
4241 * regmatch - main matching routine
4242 *
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004243 * 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.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 *
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
Bram Moolenaar05540972016-01-30 20:31:25 +01004256regmatch(
Bram Moolenaar09463262017-06-17 20:55:06 +02004257 char_u *scan, /* Current node. */
4258 proftime_T *tm UNUSED, /* timeout limit or NULL */
4259 int *timed_out UNUSED) /* flag set on timeout or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004261 char_u *next; /* Next node. */
4262 int op;
4263 int c;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004264 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 */
Bram Moolenaar09463262017-06-17 20:55:06 +02004272#ifdef FEAT_RELTIME
4273 int tm_count = 0;
4274#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004276 /* Make "regstack" and "backpos" empty. They are allocated and freed in
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004277 * bt_regexec_both() to reduce malloc()/free() calls. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004278 regstack.ga_len = 0;
4279 backpos.ga_len = 0;
Bram Moolenaar582fd852005-03-28 20:58:01 +00004280
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004281 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004282 * Repeat until "regstack" is empty.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004283 */
4284 for (;;)
4285 {
Bram Moolenaar41f12052013-08-25 17:01:42 +02004286 /* Some patterns may take a long time to match, e.g., "\([a-z]\+\)\+Q".
4287 * Allow interrupting them with CTRL-C. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 fast_breakcheck();
4289
4290#ifdef DEBUG
4291 if (scan != NULL && regnarrate)
4292 {
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004293 mch_errmsg((char *)regprop(scan));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 mch_errmsg("(\n");
4295 }
4296#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004297
4298 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004299 * Repeat for items that can be matched sequentially, without using the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004300 * regstack.
4301 */
4302 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004304 if (got_int || scan == NULL)
4305 {
4306 status = RA_FAIL;
4307 break;
4308 }
Bram Moolenaar09463262017-06-17 20:55:06 +02004309#ifdef FEAT_RELTIME
4310 /* Check for timeout once in a 100 times to avoid overhead. */
4311 if (tm != NULL && ++tm_count == 100)
4312 {
4313 tm_count = 0;
4314 if (profile_passed_limit(tm))
4315 {
4316 if (timed_out != NULL)
4317 *timed_out = TRUE;
4318 status = RA_FAIL;
4319 break;
4320 }
4321 }
4322#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004323 status = RA_CONT;
4324
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325#ifdef DEBUG
4326 if (regnarrate)
4327 {
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004328 mch_errmsg((char *)regprop(scan));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 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)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004340 mch_errmsg((char *)re_extmatch_in->matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 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. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02004351 if (!rex.reg_line_lbr && WITH_NL(op) && REG_MULTI
4352 && *reginput == NUL && reglnum <= rex.reg_maxline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 {
4354 reg_nextline();
4355 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02004356 else if (rex.reg_line_lbr && WITH_NL(op) && *reginput == '\n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 {
4358 ADVANCE_REGINPUT();
4359 }
4360 else
4361 {
4362 if (WITH_NL(op))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004363 op -= ADD_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364#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)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004374 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 break;
4376
4377 case EOL:
4378 if (c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004379 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 break;
4381
4382 case RE_BOF:
Bram Moolenaara7139332007-12-09 18:26:22 +00004383 /* 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. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 if (reglnum != 0 || reginput != regline
Bram Moolenaar6100d022016-10-02 16:51:57 +02004387 || (REG_MULTI && rex.reg_firstlnum > 1))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004388 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 break;
4390
4391 case RE_EOF:
Bram Moolenaar6100d022016-10-02 16:51:57 +02004392 if (reglnum != rex.reg_maxline || c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004393 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 break;
4395
4396 case CURSOR:
4397 /* Check if the buffer is in a window and compare the
Bram Moolenaar6100d022016-10-02 16:51:57 +02004398 * rex.reg_win->w_cursor position to the match position. */
4399 if (rex.reg_win == NULL
4400 || (reglnum + rex.reg_firstlnum
4401 != rex.reg_win->w_cursor.lnum)
4402 || ((colnr_T)(reginput - regline)
4403 != rex.reg_win->w_cursor.col))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004404 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 break;
4406
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004407 case RE_MARK:
Bram Moolenaar044aa292013-06-04 21:27:38 +02004408 /* Compare the mark position to the match position. */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004409 {
4410 int mark = OPERAND(scan)[0];
4411 int cmp = OPERAND(scan)[1];
4412 pos_T *pos;
4413
Bram Moolenaar6100d022016-10-02 16:51:57 +02004414 pos = getmark_buf(rex.reg_buf, mark, FALSE);
Bram Moolenaare9400a42007-05-06 13:04:32 +00004415 if (pos == NULL /* mark doesn't exist */
Bram Moolenaar044aa292013-06-04 21:27:38 +02004416 || pos->lnum <= 0 /* mark isn't set in reg_buf */
Bram Moolenaar6100d022016-10-02 16:51:57 +02004417 || (pos->lnum == reglnum + rex.reg_firstlnum
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004418 ? (pos->col == (colnr_T)(reginput - regline)
4419 ? (cmp == '<' || cmp == '>')
4420 : (pos->col < (colnr_T)(reginput - regline)
4421 ? cmp != '>'
4422 : cmp != '<'))
Bram Moolenaar6100d022016-10-02 16:51:57 +02004423 : (pos->lnum < reglnum + rex.reg_firstlnum
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004424 ? cmp != '>'
4425 : cmp != '<')))
4426 status = RA_NOMATCH;
4427 }
4428 break;
4429
4430 case RE_VISUAL:
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004431 if (!reg_match_visual())
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004432 status = RA_NOMATCH;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004433 break;
4434
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 case RE_LNUM:
Bram Moolenaar6100d022016-10-02 16:51:57 +02004436 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + rex.reg_firstlnum),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004438 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 break;
4440
4441 case RE_COL:
4442 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004443 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 break;
4445
4446 case RE_VCOL:
4447 if (!re_num_cmp((long_u)win_linetabsize(
Bram Moolenaar6100d022016-10-02 16:51:57 +02004448 rex.reg_win == NULL ? curwin : rex.reg_win,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 regline, (colnr_T)(reginput - regline)) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004450 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 break;
4452
4453 case BOW: /* \<word; reginput points to w */
4454 if (c == NUL) /* Can't match at end of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004455 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004457 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 {
4459 int this_class;
4460
4461 /* Get class of current and previous char (if it exists). */
Bram Moolenaar6100d022016-10-02 16:51:57 +02004462 this_class = mb_get_class_buf(reginput, rex.reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 if (this_class <= 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004464 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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468#endif
4469 else
4470 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004471 if (!vim_iswordc_buf(c, rex.reg_buf) || (reginput > regline
4472 && vim_iswordc_buf(reginput[-1], rex.reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004473 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 }
4475 break;
4476
4477 case EOW: /* word\>; reginput points after d */
4478 if (reginput == regline) /* Can't match at start of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004479 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004481 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 {
4483 int this_class, prev_class;
4484
4485 /* Get class of current and previous char (if it exists). */
Bram Moolenaar6100d022016-10-02 16:51:57 +02004486 this_class = mb_get_class_buf(reginput, rex.reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 prev_class = reg_prev_class();
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004488 if (this_class == prev_class
4489 || prev_class == 0 || prev_class == 1)
4490 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004493 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004495 if (!vim_iswordc_buf(reginput[-1], rex.reg_buf)
4496 || (reginput[0] != NUL
4497 && vim_iswordc_buf(c, rex.reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004498 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004499 }
4500 break; /* Matched with EOW */
4501
4502 case ANY:
Bram Moolenaare337e5f2013-01-30 18:21:51 +01004503 /* ANY does not match new lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004505 status = RA_NOMATCH;
4506 else
4507 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 break;
4509
4510 case IDENT:
4511 if (!vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004512 status = RA_NOMATCH;
4513 else
4514 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 break;
4516
4517 case SIDENT:
4518 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004519 status = RA_NOMATCH;
4520 else
4521 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 break;
4523
4524 case KWORD:
Bram Moolenaar6100d022016-10-02 16:51:57 +02004525 if (!vim_iswordp_buf(reginput, rex.reg_buf))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004526 status = RA_NOMATCH;
4527 else
4528 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 break;
4530
4531 case SKWORD:
Bram Moolenaar6100d022016-10-02 16:51:57 +02004532 if (VIM_ISDIGIT(*reginput)
4533 || !vim_iswordp_buf(reginput, rex.reg_buf))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004534 status = RA_NOMATCH;
4535 else
4536 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537 break;
4538
4539 case FNAME:
4540 if (!vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004541 status = RA_NOMATCH;
4542 else
4543 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 break;
4545
4546 case SFNAME:
4547 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004548 status = RA_NOMATCH;
4549 else
4550 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 break;
4552
4553 case PRINT:
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02004554 if (!vim_isprintc(PTR2CHAR(reginput)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004555 status = RA_NOMATCH;
4556 else
4557 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 break;
4559
4560 case SPRINT:
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02004561 if (VIM_ISDIGIT(*reginput) || !vim_isprintc(PTR2CHAR(reginput)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004562 status = RA_NOMATCH;
4563 else
4564 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 break;
4566
4567 case WHITE:
Bram Moolenaar1c465442017-03-12 20:10:05 +01004568 if (!VIM_ISWHITE(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004569 status = RA_NOMATCH;
4570 else
4571 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 break;
4573
4574 case NWHITE:
Bram Moolenaar1c465442017-03-12 20:10:05 +01004575 if (c == NUL || VIM_ISWHITE(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004576 status = RA_NOMATCH;
4577 else
4578 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579 break;
4580
4581 case DIGIT:
4582 if (!ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004583 status = RA_NOMATCH;
4584 else
4585 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 break;
4587
4588 case NDIGIT:
4589 if (c == NUL || ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004590 status = RA_NOMATCH;
4591 else
4592 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 break;
4594
4595 case HEX:
4596 if (!ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004597 status = RA_NOMATCH;
4598 else
4599 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 break;
4601
4602 case NHEX:
4603 if (c == NUL || ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004604 status = RA_NOMATCH;
4605 else
4606 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 break;
4608
4609 case OCTAL:
4610 if (!ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004611 status = RA_NOMATCH;
4612 else
4613 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 break;
4615
4616 case NOCTAL:
4617 if (c == NUL || ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004618 status = RA_NOMATCH;
4619 else
4620 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621 break;
4622
4623 case WORD:
4624 if (!ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004625 status = RA_NOMATCH;
4626 else
4627 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 break;
4629
4630 case NWORD:
4631 if (c == NUL || ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004632 status = RA_NOMATCH;
4633 else
4634 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 break;
4636
4637 case HEAD:
4638 if (!ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004639 status = RA_NOMATCH;
4640 else
4641 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 break;
4643
4644 case NHEAD:
4645 if (c == NUL || ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004646 status = RA_NOMATCH;
4647 else
4648 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 break;
4650
4651 case ALPHA:
4652 if (!ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004653 status = RA_NOMATCH;
4654 else
4655 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 break;
4657
4658 case NALPHA:
4659 if (c == NUL || ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004660 status = RA_NOMATCH;
4661 else
4662 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 break;
4664
4665 case LOWER:
4666 if (!ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004667 status = RA_NOMATCH;
4668 else
4669 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 break;
4671
4672 case NLOWER:
4673 if (c == NUL || ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004674 status = RA_NOMATCH;
4675 else
4676 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 break;
4678
4679 case UPPER:
4680 if (!ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004681 status = RA_NOMATCH;
4682 else
4683 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 break;
4685
4686 case NUPPER:
4687 if (c == NUL || ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004688 status = RA_NOMATCH;
4689 else
4690 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 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
Bram Moolenaar6100d022016-10-02 16:51:57 +02004701 && (!rex.reg_ic || (
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702#ifdef FEAT_MBYTE
4703 !enc_utf8 &&
4704#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00004705 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput))))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004706 status = RA_NOMATCH;
4707 else if (*opnd == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 {
4709 /* match empty string always works; happens when "~" is
4710 * empty. */
4711 }
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004712 else
4713 {
4714 if (opnd[1] == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715#ifdef FEAT_MBYTE
Bram Moolenaar6100d022016-10-02 16:51:57 +02004716 && !(enc_utf8 && rex.reg_ic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717#endif
4718 )
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004719 {
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 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729#ifdef FEAT_MBYTE
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004730 /* Check for following composing character, unless %C
4731 * follows (skips over all composing chars). */
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004732 if (status != RA_NOMATCH
4733 && enc_utf8
4734 && UTF_COMPOSINGLIKE(reginput, reginput + len)
Bram Moolenaar6100d022016-10-02 16:51:57 +02004735 && !rex.reg_icombine
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004736 && OP(next) != RE_COMPOSING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 {
4738 /* raaron: This code makes a composing character get
4739 * ignored, which is the correct behavior (sometimes)
4740 * for voweled Hebrew texts. */
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004741 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743#endif
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004744 if (status != RA_NOMATCH)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004745 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 }
4747 }
4748 break;
4749
4750 case ANYOF:
4751 case ANYBUT:
4752 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004753 status = RA_NOMATCH;
4754 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF))
4755 status = RA_NOMATCH;
4756 else
4757 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 break;
4759
4760#ifdef FEAT_MBYTE
4761 case MULTIBYTECODE:
4762 if (has_mbyte)
4763 {
4764 int i, len;
4765 char_u *opnd;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004766 int opndc = 0, inpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767
4768 opnd = OPERAND(scan);
4769 /* Safety check (just in case 'encoding' was changed since
4770 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004771 if ((len = (*mb_ptr2len)(opnd)) < 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004772 {
4773 status = RA_NOMATCH;
4774 break;
4775 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004776 if (enc_utf8)
Bram Moolenaarace95982017-03-29 17:30:27 +02004777 opndc = utf_ptr2char(opnd);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004778 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;
Bram Moolenaar0e462412015-03-31 14:17:31 +02004783 for (i = 0; reginput[i] != NUL;
4784 i += utf_ptr2len(reginput + i))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004785 {
Bram Moolenaarace95982017-03-29 17:30:27 +02004786 inpc = utf_ptr2char(reginput + i);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004787 if (!utf_iscomposing(inpc))
4788 {
4789 if (i > 0)
4790 break;
4791 }
4792 else if (opndc == inpc)
4793 {
4794 /* Include all following composing chars. */
Bram Moolenaarace95982017-03-29 17:30:27 +02004795 len = i + utfc_ptr2len(reginput + i);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004796 status = RA_MATCH;
4797 break;
4798 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004799 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004800 }
4801 else
4802 for (i = 0; i < len; ++i)
4803 if (opnd[i] != reginput[i])
4804 {
4805 status = RA_NOMATCH;
4806 break;
4807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 reginput += len;
4809 }
4810 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004811 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 break;
4813#endif
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004814 case RE_COMPOSING:
4815#ifdef FEAT_MBYTE
4816 if (enc_utf8)
4817 {
4818 /* Skip composing characters. */
4819 while (utf_iscomposing(utf_ptr2char(reginput)))
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004820 MB_CPTR_ADV(reginput);
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004821 }
4822#endif
4823 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824
4825 case NOTHING:
4826 break;
4827
4828 case BACK:
Bram Moolenaar582fd852005-03-28 20:58:01 +00004829 {
4830 int i;
4831 backpos_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832
Bram Moolenaar582fd852005-03-28 20:58:01 +00004833 /*
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 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004865 break;
4866
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867 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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 no = op - MOPEN;
4879 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004880 rp = regstack_push(RS_MOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004881 if (rp == NULL)
4882 status = RA_FAIL;
4883 else
4884 {
4885 rp->rs_no = no;
Bram Moolenaar6100d022016-10-02 16:51:57 +02004886 save_se(&rp->rs_un.sesave, &rex.reg_startpos[no],
4887 &rex.reg_startp[no]);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004888 /* We simply continue and handle the result when done. */
4889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004891 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892
4893 case NOPEN: /* \%( */
4894 case NCLOSE: /* \) after \%( */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004895 if (regstack_push(RS_NOPEN, scan) == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004896 status = RA_FAIL;
4897 /* We simply continue and handle the result when done. */
4898 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899
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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 no = op - ZOPEN;
4912 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004913 rp = regstack_push(RS_ZOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004914 if (rp == NULL)
4915 status = RA_FAIL;
4916 else
4917 {
4918 rp->rs_no = no;
4919 save_se(&rp->rs_un.sesave, &reg_startzpos[no],
4920 &reg_startzp[no]);
4921 /* We simply continue and handle the result when done. */
4922 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004924 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925#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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 no = op - MCLOSE;
4939 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004940 rp = regstack_push(RS_MCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004941 if (rp == NULL)
4942 status = RA_FAIL;
4943 else
4944 {
4945 rp->rs_no = no;
Bram Moolenaar6100d022016-10-02 16:51:57 +02004946 save_se(&rp->rs_un.sesave, &rex.reg_endpos[no],
4947 &rex.reg_endp[no]);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004948 /* We simply continue and handle the result when done. */
4949 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004951 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952
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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 no = op - ZCLOSE;
4965 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004966 rp = regstack_push(RS_ZCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004967 if (rp == NULL)
4968 status = RA_FAIL;
4969 else
4970 {
4971 rp->rs_no = no;
4972 save_se(&rp->rs_un.sesave, &reg_endzpos[no],
4973 &reg_endzp[no]);
4974 /* We simply continue and handle the result when done. */
4975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004977 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978#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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991
4992 no = op - BACKREF;
4993 cleanup_subexpr();
4994 if (!REG_MULTI) /* Single-line regexp */
4995 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02004996 if (rex.reg_startp[no] == NULL || rex.reg_endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 {
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. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02005005 len = (int)(rex.reg_endp[no] - rex.reg_startp[no]);
5006 if (cstrncmp(rex.reg_startp[no], reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005007 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 }
5009 }
5010 else /* Multi-line regexp */
5011 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005012 if (rex.reg_startpos[no].lnum < 0
5013 || rex.reg_endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005014 {
5015 /* Backref was not set: Match an empty string. */
5016 len = 0;
5017 }
5018 else
5019 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005020 if (rex.reg_startpos[no].lnum == reglnum
5021 && rex.reg_endpos[no].lnum == reglnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 {
5023 /* Compare back-ref within the current line. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02005024 len = rex.reg_endpos[no].col
5025 - rex.reg_startpos[no].col;
5026 if (cstrncmp(regline + rex.reg_startpos[no].col,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005028 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 }
5030 else
5031 {
5032 /* Messy situation: Need to compare between two
5033 * lines. */
Bram Moolenaar141f6bb2013-06-15 15:09:50 +02005034 int r = match_with_backref(
Bram Moolenaar6100d022016-10-02 16:51:57 +02005035 rex.reg_startpos[no].lnum,
5036 rex.reg_startpos[no].col,
5037 rex.reg_endpos[no].lnum,
5038 rex.reg_endpos[no].col,
Bram Moolenaar4cff8fa2013-06-14 22:48:54 +02005039 &len);
Bram Moolenaar141f6bb2013-06-15 15:09:50 +02005040
5041 if (r != RA_MATCH)
5042 status = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 }
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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 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)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005073 status = RA_NOMATCH;
5074 else
5075 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 }
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 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005091 rp = regstack_push(RS_BRANCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005092 if (rp == NULL)
5093 status = RA_FAIL;
5094 else
5095 status = RA_BREAK; /* rest is below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 }
5097 }
5098 break;
5099
5100 case BRACE_LIMITS:
5101 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 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 {
Bram Moolenaar95f09602016-11-10 20:01:45 +01005117 internal_error("BRACE_LIMITS");
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005118 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 }
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 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 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]
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005139 ? brace_min[no] : brace_max[no]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005141 rp = regstack_push(RS_BRCPLX_MORE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005142 if (rp == NULL)
5143 status = RA_FAIL;
5144 else
5145 {
5146 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005147 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005148 next = OPERAND(scan);
5149 /* We continue and handle the result when done. */
5150 }
5151 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 }
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 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005160 rp = regstack_push(RS_BRCPLX_LONG, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005161 if (rp == NULL)
5162 status = RA_FAIL;
5163 else
5164 {
5165 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005166 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005167 next = OPERAND(scan);
5168 /* We continue and handle the result when done. */
5169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 }
5171 }
5172 else
5173 {
5174 /* Range is backwards, use shortest match first */
5175 if (brace_count[no] <= brace_min[no])
5176 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005177 rp = regstack_push(RS_BRCPLX_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005178 if (rp == NULL)
5179 status = RA_FAIL;
5180 else
5181 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005182 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005183 /* We continue and handle the result when done. */
5184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 }
5186 }
5187 }
5188 break;
5189
5190 case BRACE_SIMPLE:
5191 case STAR:
5192 case PLUS:
5193 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005194 regstar_T rst;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195
5196 /*
5197 * Lookahead to avoid useless match attempts when we know
5198 * what character comes next.
5199 */
5200 if (OP(next) == EXACTLY)
5201 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005202 rst.nextb = *OPERAND(next);
Bram Moolenaar6100d022016-10-02 16:51:57 +02005203 if (rex.reg_ic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005205 if (MB_ISUPPER(rst.nextb))
5206 rst.nextb_ic = MB_TOLOWER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 else
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005208 rst.nextb_ic = MB_TOUPPER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209 }
5210 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005211 rst.nextb_ic = rst.nextb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 }
5213 else
5214 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005215 rst.nextb = NUL;
5216 rst.nextb_ic = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 }
5218 if (op != BRACE_SIMPLE)
5219 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005220 rst.minval = (op == STAR) ? 0 : 1;
5221 rst.maxval = MAX_LIMIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 }
5223 else
5224 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005225 rst.minval = bl_minval;
5226 rst.maxval = bl_maxval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 }
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 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005235 rst.count = regrepeat(OPERAND(scan), rst.maxval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005238 status = RA_FAIL;
5239 break;
5240 }
5241 if (rst.minval <= rst.maxval
5242 ? rst.count >= rst.minval : rst.count >= rst.maxval)
5243 {
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. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005247 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005248 {
5249 EMSG(_(e_maxmempat));
5250 status = RA_FAIL;
5251 }
5252 else if (ga_grow(&regstack, sizeof(regstar_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005253 status = RA_FAIL;
5254 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005256 regstack.ga_len += sizeof(regstar_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005257 rp = regstack_push(rst.minval <= rst.maxval
Bram Moolenaar582fd852005-03-28 20:58:01 +00005258 ? RS_STAR_LONG : RS_STAR_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005259 if (rp == NULL)
5260 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005262 {
5263 *(((regstar_T *)rp) - 1) = rst;
5264 status = RA_BREAK; /* skip the restore bits */
5265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 }
5267 }
5268 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005269 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 }
5272 break;
5273
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005274 case NOMATCH:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 case MATCH:
5276 case SUBPAT:
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005277 rp = regstack_push(RS_NOMATCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005278 if (rp == NULL)
5279 status = RA_FAIL;
5280 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005282 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005283 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005284 next = OPERAND(scan);
5285 /* We continue and handle the result when done. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 }
5287 break;
5288
5289 case BEHIND:
5290 case NOBEHIND:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005291 /* Need a bit of room to store extra positions. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005292 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005293 {
5294 EMSG(_(e_maxmempat));
5295 status = RA_FAIL;
5296 }
5297 else if (ga_grow(&regstack, sizeof(regbehind_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005298 status = RA_FAIL;
5299 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005301 regstack.ga_len += sizeof(regbehind_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005302 rp = regstack_push(RS_BEHIND1, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005303 if (rp == NULL)
5304 status = RA_FAIL;
5305 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005307 /* 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
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005311 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005312 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005313 /* First try if what follows matches. If it does then we
5314 * check the behind match by looping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005317 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318
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)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005324 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325 }
5326 else if (behind_pos.rs_u.ptr != reginput)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005327 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 break;
5329
5330 case NEWL:
Bram Moolenaar6100d022016-10-02 16:51:57 +02005331 if ((c != NUL || !REG_MULTI || reglnum > rex.reg_maxline
5332 || rex.reg_line_lbr)
5333 && (c != '\n' || !rex.reg_line_lbr))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005334 status = RA_NOMATCH;
Bram Moolenaar6100d022016-10-02 16:51:57 +02005335 else if (rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005336 ADVANCE_REGINPUT();
5337 else
5338 reg_nextline();
5339 break;
5340
5341 case END:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005342 status = RA_MATCH; /* Success! */
5343 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005344
5345 default:
5346 EMSG(_(e_re_corr));
5347#ifdef DEBUG
5348 printf("Illegal op code %d\n", op);
5349#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005350 status = RA_FAIL;
5351 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 }
5353 }
5354
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005355 /* 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. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360 scan = next;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005361
5362 } /* end of inner loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005363
5364 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005365 * If there is something on the regstack execute the code for the state.
Bram Moolenaar582fd852005-03-28 20:58:01 +00005366 * If the state is popped then loop and use the older state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005368 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. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005375 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005376 break;
5377
5378 case RS_MOPEN:
5379 /* Pop the state. Restore pointers when there is no match. */
5380 if (status == RA_NOMATCH)
Bram Moolenaar6100d022016-10-02 16:51:57 +02005381 restore_se(&rp->rs_un.sesave, &rex.reg_startpos[rp->rs_no],
5382 &rex.reg_startp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005383 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005384 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, &reg_startzpos[rp->rs_no],
5391 &reg_startzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005392 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005393 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005395
5396 case RS_MCLOSE:
5397 /* Pop the state. Restore pointers when there is no match. */
5398 if (status == RA_NOMATCH)
Bram Moolenaar6100d022016-10-02 16:51:57 +02005399 restore_se(&rp->rs_un.sesave, &rex.reg_endpos[rp->rs_no],
5400 &rex.reg_endp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005401 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005402 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, &reg_endzpos[rp->rs_no],
5409 &reg_endzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005410 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005411 break;
5412#endif
5413
5414 case RS_BRANCH:
5415 if (status == RA_MATCH)
5416 /* this branch matched, use it */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005417 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005418 else
5419 {
5420 if (status != RA_BREAK)
5421 {
5422 /* After a non-matching branch: try next one. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005423 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005424 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;
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005430 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005431 }
5432 else
5433 {
5434 /* Prepare to try a branch. */
5435 rp->rs_scan = regnext(scan);
Bram Moolenaar582fd852005-03-28 20:58:01 +00005436 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005437 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 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005446 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005447 --brace_count[rp->rs_no]; /* decrement match count */
5448 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005449 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005450 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. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005457 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005458 --brace_count[rp->rs_no];
5459 /* continue with the items after "\{}" */
5460 status = RA_CONT;
5461 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005462 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005463 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. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005471 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005472 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005473 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;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005489 if (rp->rs_no != SUBPAT) /* zero-width */
5490 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005491 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005492 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005493 if (status == RA_CONT)
5494 scan = regnext(scan);
5495 break;
5496
5497 case RS_BEHIND1:
5498 if (status == RA_NOMATCH)
5499 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005500 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005501 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 */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005512 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005513
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005514 /* Start looking for a match with operand at the current
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00005515 * position. Go back one character until we find the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005516 * 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
Bram Moolenaar582fd852005-03-28 20:58:01 +00005525 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005526 scan = OPERAND(rp->rs_scan) + 4;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005527 }
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)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005539 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5540 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005541 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005542 {
5543 /* But we didn't want a match. Need to restore the
5544 * subexpr, because what follows matched, so they have
5545 * been set. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005546 status = RA_NOMATCH;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005547 restore_subexpr(((regbehind_T *)rp) - 1);
5548 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005549 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005550 regstack.ga_len -= sizeof(regbehind_T);
5551 }
5552 else
5553 {
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005554 long limit;
5555
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005556 /* No match or a match that doesn't end where we want it: Go
5557 * back one character. May go to previous line once. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005558 no = OK;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005559 limit = OPERAND_MIN(rp->rs_scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005560 if (REG_MULTI)
5561 {
Bram Moolenaar61602c52013-06-01 19:54:43 +02005562 if (limit > 0
5563 && ((rp->rs_un.regsave.rs_u.pos.lnum
5564 < behind_pos.rs_u.pos.lnum
5565 ? (colnr_T)STRLEN(regline)
5566 : behind_pos.rs_u.pos.col)
5567 - rp->rs_un.regsave.rs_u.pos.col >= limit))
5568 no = FAIL;
5569 else if (rp->rs_un.regsave.rs_u.pos.col == 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005570 {
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 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005579 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005580 rp->rs_un.regsave.rs_u.pos.col =
5581 (colnr_T)STRLEN(regline);
5582 }
5583 }
5584 else
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005585 {
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005586#ifdef FEAT_MBYTE
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005587 if (has_mbyte)
5588 rp->rs_un.regsave.rs_u.pos.col -=
5589 (*mb_head_off)(regline, regline
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005590 + rp->rs_un.regsave.rs_u.pos.col - 1) + 1;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005591 else
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005592#endif
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005593 --rp->rs_un.regsave.rs_u.pos.col;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005594 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005595 }
5596 else
5597 {
5598 if (rp->rs_un.regsave.rs_u.ptr == regline)
5599 no = FAIL;
5600 else
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005601 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005602 MB_PTR_BACK(regline, rp->rs_un.regsave.rs_u.ptr);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005603 if (limit > 0 && (long)(behind_pos.rs_u.ptr
5604 - rp->rs_un.regsave.rs_u.ptr) > limit)
5605 no = FAIL;
5606 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005607 }
5608 if (no == OK)
5609 {
5610 /* Advanced, prepare for finding match again. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005611 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005612 scan = OPERAND(rp->rs_scan) + 4;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005613 if (status == RA_MATCH)
5614 {
5615 /* We did match, so subexpr may have been changed,
5616 * need to restore them for the next try. */
5617 status = RA_NOMATCH;
5618 restore_subexpr(((regbehind_T *)rp) - 1);
5619 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005620 }
5621 else
5622 {
5623 /* Can't advance. For NOBEHIND that's a match. */
5624 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5625 if (rp->rs_no == NOBEHIND)
5626 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005627 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5628 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005629 status = RA_MATCH;
5630 }
5631 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005632 {
5633 /* We do want a proper match. Need to restore the
5634 * subexpr if we had a match, because they may have
5635 * been set. */
5636 if (status == RA_MATCH)
5637 {
5638 status = RA_NOMATCH;
5639 restore_subexpr(((regbehind_T *)rp) - 1);
5640 }
5641 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005642 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005643 regstack.ga_len -= sizeof(regbehind_T);
5644 }
5645 }
5646 break;
5647
5648 case RS_STAR_LONG:
5649 case RS_STAR_SHORT:
5650 {
5651 regstar_T *rst = ((regstar_T *)rp) - 1;
5652
5653 if (status == RA_MATCH)
5654 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005655 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005656 regstack.ga_len -= sizeof(regstar_T);
5657 break;
5658 }
5659
5660 /* Tried once already, restore input pointers. */
5661 if (status != RA_BREAK)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005662 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005663
5664 /* Repeat until we found a position where it could match. */
5665 for (;;)
5666 {
5667 if (status != RA_BREAK)
5668 {
5669 /* Tried first position already, advance. */
5670 if (rp->rs_state == RS_STAR_LONG)
5671 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005672 /* Trying for longest match, but couldn't or
5673 * didn't match -- back up one char. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005674 if (--rst->count < rst->minval)
5675 break;
5676 if (reginput == regline)
5677 {
5678 /* backup to last char of previous line */
5679 --reglnum;
5680 regline = reg_getline(reglnum);
5681 /* Just in case regrepeat() didn't count
5682 * right. */
5683 if (regline == NULL)
5684 break;
5685 reginput = regline + STRLEN(regline);
5686 fast_breakcheck();
5687 }
5688 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005689 MB_PTR_BACK(regline, reginput);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005690 }
5691 else
5692 {
5693 /* Range is backwards, use shortest match first.
5694 * Careful: maxval and minval are exchanged!
5695 * Couldn't or didn't match: try advancing one
5696 * char. */
5697 if (rst->count == rst->minval
5698 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0)
5699 break;
5700 ++rst->count;
5701 }
5702 if (got_int)
5703 break;
5704 }
5705 else
5706 status = RA_NOMATCH;
5707
5708 /* If it could match, try it. */
5709 if (rst->nextb == NUL || *reginput == rst->nextb
5710 || *reginput == rst->nextb_ic)
5711 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005712 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005713 scan = regnext(rp->rs_scan);
5714 status = RA_CONT;
5715 break;
5716 }
5717 }
5718 if (status != RA_CONT)
5719 {
5720 /* Failed. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005721 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005722 regstack.ga_len -= sizeof(regstar_T);
5723 status = RA_NOMATCH;
5724 }
5725 }
5726 break;
5727 }
5728
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005729 /* If we want to continue the inner loop or didn't pop a state
5730 * continue matching loop */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005731 if (status == RA_CONT || rp == (regitem_T *)
5732 ((char *)regstack.ga_data + regstack.ga_len) - 1)
5733 break;
5734 }
5735
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005736 /* May need to continue with the inner loop, starting at "scan". */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005737 if (status == RA_CONT)
5738 continue;
5739
5740 /*
5741 * If the regstack is empty or something failed we are done.
5742 */
5743 if (regstack.ga_len == 0 || status == RA_FAIL)
5744 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005745 if (scan == NULL)
5746 {
5747 /*
5748 * We get here only if there's trouble -- normally "case END" is
5749 * the terminating point.
5750 */
5751 EMSG(_(e_re_corr));
5752#ifdef DEBUG
5753 printf("Premature EOL\n");
5754#endif
5755 }
5756 return (status == RA_MATCH);
5757 }
5758
5759 } /* End of loop until the regstack is empty. */
5760
5761 /* NOTREACHED */
5762}
5763
5764/*
5765 * Push an item onto the regstack.
5766 * Returns pointer to new item. Returns NULL when out of memory.
5767 */
5768 static regitem_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01005769regstack_push(regstate_T state, char_u *scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005770{
5771 regitem_T *rp;
5772
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005773 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005774 {
5775 EMSG(_(e_maxmempat));
5776 return NULL;
5777 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005778 if (ga_grow(&regstack, sizeof(regitem_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005779 return NULL;
5780
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005781 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005782 rp->rs_state = state;
5783 rp->rs_scan = scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005784
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005785 regstack.ga_len += sizeof(regitem_T);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005786 return rp;
5787}
5788
5789/*
5790 * Pop an item from the regstack.
5791 */
5792 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01005793regstack_pop(char_u **scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005794{
5795 regitem_T *rp;
5796
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005797 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005798 *scan = rp->rs_scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005799
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005800 regstack.ga_len -= sizeof(regitem_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801}
5802
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803/*
5804 * regrepeat - repeatedly match something simple, return how many.
5805 * Advances reginput (and reglnum) to just after the matched chars.
5806 */
5807 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01005808regrepeat(
5809 char_u *p,
5810 long maxcount) /* maximum number of matches allowed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811{
5812 long count = 0;
5813 char_u *scan;
5814 char_u *opnd;
5815 int mask;
5816 int testval = 0;
5817
5818 scan = reginput; /* Make local copy of reginput for speed. */
5819 opnd = OPERAND(p);
5820 switch (OP(p))
5821 {
5822 case ANY:
5823 case ANY + ADD_NL:
5824 while (count < maxcount)
5825 {
5826 /* Matching anything means we continue until end-of-line (or
5827 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5828 while (*scan != NUL && count < maxcount)
5829 {
5830 ++count;
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005831 MB_PTR_ADV(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02005833 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
5834 || rex.reg_line_lbr || count == maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835 break;
5836 ++count; /* count the line-break */
5837 reg_nextline();
5838 scan = reginput;
5839 if (got_int)
5840 break;
5841 }
5842 break;
5843
5844 case IDENT:
5845 case IDENT + ADD_NL:
5846 testval = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005847 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 case SIDENT:
5849 case SIDENT + ADD_NL:
5850 while (count < maxcount)
5851 {
Bram Moolenaar09ea9fc2013-05-21 00:03:02 +02005852 if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005854 MB_PTR_ADV(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 }
5856 else if (*scan == NUL)
5857 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005858 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
5859 || rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 break;
5861 reg_nextline();
5862 scan = reginput;
5863 if (got_int)
5864 break;
5865 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02005866 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 ++scan;
5868 else
5869 break;
5870 ++count;
5871 }
5872 break;
5873
5874 case KWORD:
5875 case KWORD + ADD_NL:
5876 testval = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005877 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 case SKWORD:
5879 case SKWORD + ADD_NL:
5880 while (count < maxcount)
5881 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005882 if (vim_iswordp_buf(scan, rex.reg_buf)
Bram Moolenaarf813a182013-01-30 13:59:37 +01005883 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005885 MB_PTR_ADV(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 }
5887 else if (*scan == NUL)
5888 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005889 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
5890 || rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 break;
5892 reg_nextline();
5893 scan = reginput;
5894 if (got_int)
5895 break;
5896 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02005897 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 ++scan;
5899 else
5900 break;
5901 ++count;
5902 }
5903 break;
5904
5905 case FNAME:
5906 case FNAME + ADD_NL:
5907 testval = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005908 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 case SFNAME:
5910 case SFNAME + ADD_NL:
5911 while (count < maxcount)
5912 {
Bram Moolenaar09ea9fc2013-05-21 00:03:02 +02005913 if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005915 MB_PTR_ADV(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 }
5917 else if (*scan == NUL)
5918 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005919 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
5920 || rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921 break;
5922 reg_nextline();
5923 scan = reginput;
5924 if (got_int)
5925 break;
5926 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02005927 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 ++scan;
5929 else
5930 break;
5931 ++count;
5932 }
5933 break;
5934
5935 case PRINT:
5936 case PRINT + ADD_NL:
5937 testval = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02005938 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 case SPRINT:
5940 case SPRINT + ADD_NL:
5941 while (count < maxcount)
5942 {
5943 if (*scan == NUL)
5944 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005945 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
5946 || rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 break;
5948 reg_nextline();
5949 scan = reginput;
5950 if (got_int)
5951 break;
5952 }
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02005953 else if (vim_isprintc(PTR2CHAR(scan)) == 1
5954 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 {
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005956 MB_PTR_ADV(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02005958 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 ++scan;
5960 else
5961 break;
5962 ++count;
5963 }
5964 break;
5965
5966 case WHITE:
5967 case WHITE + ADD_NL:
5968 testval = mask = RI_WHITE;
5969do_class:
5970 while (count < maxcount)
5971 {
5972#ifdef FEAT_MBYTE
5973 int l;
5974#endif
5975 if (*scan == NUL)
5976 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02005977 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
5978 || rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 break;
5980 reg_nextline();
5981 scan = reginput;
5982 if (got_int)
5983 break;
5984 }
5985#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005986 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005987 {
5988 if (testval != 0)
5989 break;
5990 scan += l;
5991 }
5992#endif
5993 else if ((class_tab[*scan] & mask) == testval)
5994 ++scan;
Bram Moolenaar6100d022016-10-02 16:51:57 +02005995 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 ++scan;
5997 else
5998 break;
5999 ++count;
6000 }
6001 break;
6002
6003 case NWHITE:
6004 case NWHITE + ADD_NL:
6005 mask = RI_WHITE;
6006 goto do_class;
6007 case DIGIT:
6008 case DIGIT + ADD_NL:
6009 testval = mask = RI_DIGIT;
6010 goto do_class;
6011 case NDIGIT:
6012 case NDIGIT + ADD_NL:
6013 mask = RI_DIGIT;
6014 goto do_class;
6015 case HEX:
6016 case HEX + ADD_NL:
6017 testval = mask = RI_HEX;
6018 goto do_class;
6019 case NHEX:
6020 case NHEX + ADD_NL:
6021 mask = RI_HEX;
6022 goto do_class;
6023 case OCTAL:
6024 case OCTAL + ADD_NL:
6025 testval = mask = RI_OCTAL;
6026 goto do_class;
6027 case NOCTAL:
6028 case NOCTAL + ADD_NL:
6029 mask = RI_OCTAL;
6030 goto do_class;
6031 case WORD:
6032 case WORD + ADD_NL:
6033 testval = mask = RI_WORD;
6034 goto do_class;
6035 case NWORD:
6036 case NWORD + ADD_NL:
6037 mask = RI_WORD;
6038 goto do_class;
6039 case HEAD:
6040 case HEAD + ADD_NL:
6041 testval = mask = RI_HEAD;
6042 goto do_class;
6043 case NHEAD:
6044 case NHEAD + ADD_NL:
6045 mask = RI_HEAD;
6046 goto do_class;
6047 case ALPHA:
6048 case ALPHA + ADD_NL:
6049 testval = mask = RI_ALPHA;
6050 goto do_class;
6051 case NALPHA:
6052 case NALPHA + ADD_NL:
6053 mask = RI_ALPHA;
6054 goto do_class;
6055 case LOWER:
6056 case LOWER + ADD_NL:
6057 testval = mask = RI_LOWER;
6058 goto do_class;
6059 case NLOWER:
6060 case NLOWER + ADD_NL:
6061 mask = RI_LOWER;
6062 goto do_class;
6063 case UPPER:
6064 case UPPER + ADD_NL:
6065 testval = mask = RI_UPPER;
6066 goto do_class;
6067 case NUPPER:
6068 case NUPPER + ADD_NL:
6069 mask = RI_UPPER;
6070 goto do_class;
6071
6072 case EXACTLY:
6073 {
6074 int cu, cl;
6075
6076 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006077 * would have been used for it. It does handle single-byte
6078 * characters, such as latin1. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02006079 if (rex.reg_ic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006081 cu = MB_TOUPPER(*opnd);
6082 cl = MB_TOLOWER(*opnd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 while (count < maxcount && (*scan == cu || *scan == cl))
6084 {
6085 count++;
6086 scan++;
6087 }
6088 }
6089 else
6090 {
6091 cu = *opnd;
6092 while (count < maxcount && *scan == cu)
6093 {
6094 count++;
6095 scan++;
6096 }
6097 }
6098 break;
6099 }
6100
6101#ifdef FEAT_MBYTE
6102 case MULTIBYTECODE:
6103 {
6104 int i, len, cf = 0;
6105
6106 /* Safety check (just in case 'encoding' was changed since
6107 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006108 if ((len = (*mb_ptr2len)(opnd)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006109 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006110 if (rex.reg_ic && enc_utf8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 cf = utf_fold(utf_ptr2char(opnd));
Bram Moolenaar069dd082015-05-04 09:56:49 +02006112 while (count < maxcount && (*mb_ptr2len)(scan) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 {
6114 for (i = 0; i < len; ++i)
6115 if (opnd[i] != scan[i])
6116 break;
Bram Moolenaar6100d022016-10-02 16:51:57 +02006117 if (i < len && (!rex.reg_ic || !enc_utf8
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118 || utf_fold(utf_ptr2char(scan)) != cf))
6119 break;
6120 scan += len;
6121 ++count;
6122 }
6123 }
6124 }
6125 break;
6126#endif
6127
6128 case ANYOF:
6129 case ANYOF + ADD_NL:
6130 testval = TRUE;
Bram Moolenaar2f40d122017-10-24 21:49:36 +02006131 /* FALLTHROUGH */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132
6133 case ANYBUT:
6134 case ANYBUT + ADD_NL:
6135 while (count < maxcount)
6136 {
6137#ifdef FEAT_MBYTE
6138 int len;
6139#endif
6140 if (*scan == NUL)
6141 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006142 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > rex.reg_maxline
6143 || rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144 break;
6145 reg_nextline();
6146 scan = reginput;
6147 if (got_int)
6148 break;
6149 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02006150 else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 ++scan;
6152#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006153 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 {
6155 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval)
6156 break;
6157 scan += len;
6158 }
6159#endif
6160 else
6161 {
6162 if ((cstrchr(opnd, *scan) == NULL) == testval)
6163 break;
6164 ++scan;
6165 }
6166 ++count;
6167 }
6168 break;
6169
6170 case NEWL:
6171 while (count < maxcount
Bram Moolenaar6100d022016-10-02 16:51:57 +02006172 && ((*scan == NUL && reglnum <= rex.reg_maxline
6173 && !rex.reg_line_lbr && REG_MULTI)
6174 || (*scan == '\n' && rex.reg_line_lbr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 {
6176 count++;
Bram Moolenaar6100d022016-10-02 16:51:57 +02006177 if (rex.reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 ADVANCE_REGINPUT();
6179 else
6180 reg_nextline();
6181 scan = reginput;
6182 if (got_int)
6183 break;
6184 }
6185 break;
6186
6187 default: /* Oh dear. Called inappropriately. */
6188 EMSG(_(e_re_corr));
6189#ifdef DEBUG
6190 printf("Called regrepeat with op code %d\n", OP(p));
6191#endif
6192 break;
6193 }
6194
6195 reginput = scan;
6196
6197 return (int)count;
6198}
6199
6200/*
6201 * regnext - dig the "next" pointer out of a node
Bram Moolenaard3005802009-11-25 17:21:32 +00006202 * Returns NULL when calculating size, when there is no next item and when
6203 * there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 */
6205 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01006206regnext(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207{
6208 int offset;
6209
Bram Moolenaard3005802009-11-25 17:21:32 +00006210 if (p == JUST_CALC_SIZE || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 return NULL;
6212
6213 offset = NEXT(p);
6214 if (offset == 0)
6215 return NULL;
6216
Bram Moolenaar582fd852005-03-28 20:58:01 +00006217 if (OP(p) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 return p - offset;
6219 else
6220 return p + offset;
6221}
6222
6223/*
6224 * Check the regexp program for its magic number.
6225 * Return TRUE if it's wrong.
6226 */
6227 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006228prog_magic_wrong(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006230 regprog_T *prog;
6231
Bram Moolenaar6100d022016-10-02 16:51:57 +02006232 prog = REG_MULTI ? rex.reg_mmatch->regprog : rex.reg_match->regprog;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006233 if (prog->engine == &nfa_regengine)
6234 /* For NFA matcher we don't check the magic */
6235 return FALSE;
6236
6237 if (UCHARAT(((bt_regprog_T *)prog)->program) != REGMAGIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 {
6239 EMSG(_(e_re_corr));
6240 return TRUE;
6241 }
6242 return FALSE;
6243}
6244
6245/*
6246 * Cleanup the subexpressions, if this wasn't done yet.
6247 * This construction is used to clear the subexpressions only when they are
6248 * used (to increase speed).
6249 */
6250 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006251cleanup_subexpr(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252{
6253 if (need_clear_subexpr)
6254 {
6255 if (REG_MULTI)
6256 {
6257 /* Use 0xff to set lnum to -1 */
Bram Moolenaar6100d022016-10-02 16:51:57 +02006258 vim_memset(rex.reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6259 vim_memset(rex.reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260 }
6261 else
6262 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006263 vim_memset(rex.reg_startp, 0, sizeof(char_u *) * NSUBEXP);
6264 vim_memset(rex.reg_endp, 0, sizeof(char_u *) * NSUBEXP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265 }
6266 need_clear_subexpr = FALSE;
6267 }
6268}
6269
6270#ifdef FEAT_SYN_HL
6271 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006272cleanup_zsubexpr(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273{
6274 if (need_clear_zsubexpr)
6275 {
6276 if (REG_MULTI)
6277 {
6278 /* Use 0xff to set lnum to -1 */
6279 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6280 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6281 }
6282 else
6283 {
6284 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP);
6285 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP);
6286 }
6287 need_clear_zsubexpr = FALSE;
6288 }
6289}
6290#endif
6291
6292/*
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006293 * Save the current subexpr to "bp", so that they can be restored
6294 * later by restore_subexpr().
6295 */
6296 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006297save_subexpr(regbehind_T *bp)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006298{
6299 int i;
6300
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006301 /* When "need_clear_subexpr" is set we don't need to save the values, only
6302 * remember that this flag needs to be set again when restoring. */
6303 bp->save_need_clear_subexpr = need_clear_subexpr;
6304 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006305 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006306 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006307 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006308 if (REG_MULTI)
6309 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006310 bp->save_start[i].se_u.pos = rex.reg_startpos[i];
6311 bp->save_end[i].se_u.pos = rex.reg_endpos[i];
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006312 }
6313 else
6314 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006315 bp->save_start[i].se_u.ptr = rex.reg_startp[i];
6316 bp->save_end[i].se_u.ptr = rex.reg_endp[i];
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006317 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006318 }
6319 }
6320}
6321
6322/*
6323 * Restore the subexpr from "bp".
6324 */
6325 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006326restore_subexpr(regbehind_T *bp)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006327{
6328 int i;
6329
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006330 /* Only need to restore saved values when they are not to be cleared. */
6331 need_clear_subexpr = bp->save_need_clear_subexpr;
6332 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006333 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006334 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006335 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006336 if (REG_MULTI)
6337 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006338 rex.reg_startpos[i] = bp->save_start[i].se_u.pos;
6339 rex.reg_endpos[i] = bp->save_end[i].se_u.pos;
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006340 }
6341 else
6342 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02006343 rex.reg_startp[i] = bp->save_start[i].se_u.ptr;
6344 rex.reg_endp[i] = bp->save_end[i].se_u.ptr;
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006345 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006346 }
6347 }
6348}
6349
6350/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 * Advance reglnum, regline and reginput to the next line.
6352 */
6353 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006354reg_nextline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355{
6356 regline = reg_getline(++reglnum);
6357 reginput = regline;
6358 fast_breakcheck();
6359}
6360
6361/*
6362 * Save the input line and position in a regsave_T.
6363 */
6364 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006365reg_save(regsave_T *save, garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366{
6367 if (REG_MULTI)
6368 {
6369 save->rs_u.pos.col = (colnr_T)(reginput - regline);
6370 save->rs_u.pos.lnum = reglnum;
6371 }
6372 else
6373 save->rs_u.ptr = reginput;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006374 save->rs_len = gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375}
6376
6377/*
6378 * Restore the input line and position from a regsave_T.
6379 */
6380 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006381reg_restore(regsave_T *save, garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382{
6383 if (REG_MULTI)
6384 {
6385 if (reglnum != save->rs_u.pos.lnum)
6386 {
6387 /* only call reg_getline() when the line number changed to save
6388 * a bit of time */
6389 reglnum = save->rs_u.pos.lnum;
6390 regline = reg_getline(reglnum);
6391 }
6392 reginput = regline + save->rs_u.pos.col;
6393 }
6394 else
6395 reginput = save->rs_u.ptr;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006396 gap->ga_len = save->rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397}
6398
6399/*
6400 * Return TRUE if current position is equal to saved position.
6401 */
6402 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006403reg_save_equal(regsave_T *save)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404{
6405 if (REG_MULTI)
6406 return reglnum == save->rs_u.pos.lnum
6407 && reginput == regline + save->rs_u.pos.col;
6408 return reginput == save->rs_u.ptr;
6409}
6410
6411/*
6412 * Tentatively set the sub-expression start to the current position (after
6413 * calling regmatch() they will have changed). Need to save the existing
6414 * values for when there is no match.
6415 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
6416 * depending on REG_MULTI.
6417 */
6418 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006419save_se_multi(save_se_T *savep, lpos_T *posp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420{
6421 savep->se_u.pos = *posp;
6422 posp->lnum = reglnum;
6423 posp->col = (colnr_T)(reginput - regline);
6424}
6425
6426 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006427save_se_one(save_se_T *savep, char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428{
6429 savep->se_u.ptr = *pp;
6430 *pp = reginput;
6431}
6432
6433/*
6434 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6435 */
6436 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006437re_num_cmp(long_u val, char_u *scan)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006438{
6439 long_u n = OPERAND_MIN(scan);
6440
6441 if (OPERAND_CMP(scan) == '>')
6442 return val > n;
6443 if (OPERAND_CMP(scan) == '<')
6444 return val < n;
6445 return val == n;
6446}
6447
Bram Moolenaar580abea2013-06-14 20:31:28 +02006448/*
6449 * Check whether a backreference matches.
6450 * Returns RA_FAIL, RA_NOMATCH or RA_MATCH.
Bram Moolenaar438ee5b2013-11-21 17:13:00 +01006451 * If "bytelen" is not NULL, it is set to the byte length of the match in the
6452 * last line.
Bram Moolenaar580abea2013-06-14 20:31:28 +02006453 */
6454 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006455match_with_backref(
6456 linenr_T start_lnum,
6457 colnr_T start_col,
6458 linenr_T end_lnum,
6459 colnr_T end_col,
6460 int *bytelen)
Bram Moolenaar580abea2013-06-14 20:31:28 +02006461{
6462 linenr_T clnum = start_lnum;
6463 colnr_T ccol = start_col;
6464 int len;
6465 char_u *p;
6466
6467 if (bytelen != NULL)
6468 *bytelen = 0;
6469 for (;;)
6470 {
6471 /* Since getting one line may invalidate the other, need to make copy.
6472 * Slow! */
6473 if (regline != reg_tofree)
6474 {
6475 len = (int)STRLEN(regline);
6476 if (reg_tofree == NULL || len >= (int)reg_tofreelen)
6477 {
6478 len += 50; /* get some extra */
6479 vim_free(reg_tofree);
6480 reg_tofree = alloc(len);
6481 if (reg_tofree == NULL)
6482 return RA_FAIL; /* out of memory!*/
6483 reg_tofreelen = len;
6484 }
6485 STRCPY(reg_tofree, regline);
6486 reginput = reg_tofree + (reginput - regline);
6487 regline = reg_tofree;
6488 }
6489
6490 /* Get the line to compare with. */
6491 p = reg_getline(clnum);
6492 if (clnum == end_lnum)
6493 len = end_col - ccol;
6494 else
6495 len = (int)STRLEN(p + ccol);
6496
6497 if (cstrncmp(p + ccol, reginput, &len) != 0)
6498 return RA_NOMATCH; /* doesn't match */
6499 if (bytelen != NULL)
6500 *bytelen += len;
6501 if (clnum == end_lnum)
6502 break; /* match and at end! */
Bram Moolenaar6100d022016-10-02 16:51:57 +02006503 if (reglnum >= rex.reg_maxline)
Bram Moolenaar580abea2013-06-14 20:31:28 +02006504 return RA_NOMATCH; /* text too short */
6505
6506 /* Advance to next line. */
6507 reg_nextline();
Bram Moolenaar438ee5b2013-11-21 17:13:00 +01006508 if (bytelen != NULL)
6509 *bytelen = 0;
Bram Moolenaar580abea2013-06-14 20:31:28 +02006510 ++clnum;
6511 ccol = 0;
6512 if (got_int)
6513 return RA_FAIL;
6514 }
6515
6516 /* found a match! Note that regline may now point to a copy of the line,
6517 * that should not matter. */
6518 return RA_MATCH;
6519}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006521#ifdef BT_REGEXP_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522
6523/*
6524 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6525 */
6526 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006527regdump(char_u *pattern, bt_regprog_T *r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528{
6529 char_u *s;
6530 int op = EXACTLY; /* Arbitrary non-END op. */
6531 char_u *next;
6532 char_u *end = NULL;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006533 FILE *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006535#ifdef BT_REGEXP_LOG
6536 f = fopen("bt_regexp_log.log", "a");
6537#else
6538 f = stdout;
6539#endif
6540 if (f == NULL)
6541 return;
6542 fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543
6544 s = r->program + 1;
6545 /*
6546 * Loop until we find the END that isn't before a referred next (an END
6547 * can also appear in a NOMATCH operand).
6548 */
6549 while (op != END || s <= end)
6550 {
6551 op = OP(s);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006552 fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 next = regnext(s);
6554 if (next == NULL) /* Next ptr. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006555 fprintf(f, "(0)");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 else
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006557 fprintf(f, "(%d)", (int)((s - r->program) + (next - s)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 if (end < next)
6559 end = next;
6560 if (op == BRACE_LIMITS)
6561 {
Bram Moolenaar5b84ddc2013-06-05 16:33:10 +02006562 /* Two ints */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006563 fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 s += 8;
6565 }
Bram Moolenaar5b84ddc2013-06-05 16:33:10 +02006566 else if (op == BEHIND || op == NOBEHIND)
6567 {
6568 /* one int */
6569 fprintf(f, " count %ld", OPERAND_MIN(s));
6570 s += 4;
6571 }
Bram Moolenaar6d3a5d72013-06-06 18:04:51 +02006572 else if (op == RE_LNUM || op == RE_COL || op == RE_VCOL)
6573 {
6574 /* one int plus comperator */
6575 fprintf(f, " count %ld", OPERAND_MIN(s));
6576 s += 5;
6577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 s += 3;
6579 if (op == ANYOF || op == ANYOF + ADD_NL
6580 || op == ANYBUT || op == ANYBUT + ADD_NL
6581 || op == EXACTLY)
6582 {
6583 /* Literal string, where present. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006584 fprintf(f, "\nxxxxxxxxx\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585 while (*s != NUL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006586 fprintf(f, "%c", *s++);
6587 fprintf(f, "\nxxxxxxxxx\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 s++;
6589 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006590 fprintf(f, "\r\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 }
6592
6593 /* Header fields of interest. */
6594 if (r->regstart != NUL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006595 fprintf(f, "start `%s' 0x%x; ", r->regstart < 256
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 ? (char *)transchar(r->regstart)
6597 : "multibyte", r->regstart);
6598 if (r->reganch)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006599 fprintf(f, "anchored; ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 if (r->regmust != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006601 fprintf(f, "must have \"%s\"", r->regmust);
6602 fprintf(f, "\r\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006604#ifdef BT_REGEXP_LOG
6605 fclose(f);
6606#endif
6607}
6608#endif /* BT_REGEXP_DUMP */
6609
6610#ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611/*
6612 * regprop - printable representation of opcode
6613 */
6614 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01006615regprop(char_u *op)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006617 char *p;
6618 static char buf[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006620 STRCPY(buf, ":");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006622 switch ((int) OP(op))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623 {
6624 case BOL:
6625 p = "BOL";
6626 break;
6627 case EOL:
6628 p = "EOL";
6629 break;
6630 case RE_BOF:
6631 p = "BOF";
6632 break;
6633 case RE_EOF:
6634 p = "EOF";
6635 break;
6636 case CURSOR:
6637 p = "CURSOR";
6638 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006639 case RE_VISUAL:
6640 p = "RE_VISUAL";
6641 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 case RE_LNUM:
6643 p = "RE_LNUM";
6644 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006645 case RE_MARK:
6646 p = "RE_MARK";
6647 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 case RE_COL:
6649 p = "RE_COL";
6650 break;
6651 case RE_VCOL:
6652 p = "RE_VCOL";
6653 break;
6654 case BOW:
6655 p = "BOW";
6656 break;
6657 case EOW:
6658 p = "EOW";
6659 break;
6660 case ANY:
6661 p = "ANY";
6662 break;
6663 case ANY + ADD_NL:
6664 p = "ANY+NL";
6665 break;
6666 case ANYOF:
6667 p = "ANYOF";
6668 break;
6669 case ANYOF + ADD_NL:
6670 p = "ANYOF+NL";
6671 break;
6672 case ANYBUT:
6673 p = "ANYBUT";
6674 break;
6675 case ANYBUT + ADD_NL:
6676 p = "ANYBUT+NL";
6677 break;
6678 case IDENT:
6679 p = "IDENT";
6680 break;
6681 case IDENT + ADD_NL:
6682 p = "IDENT+NL";
6683 break;
6684 case SIDENT:
6685 p = "SIDENT";
6686 break;
6687 case SIDENT + ADD_NL:
6688 p = "SIDENT+NL";
6689 break;
6690 case KWORD:
6691 p = "KWORD";
6692 break;
6693 case KWORD + ADD_NL:
6694 p = "KWORD+NL";
6695 break;
6696 case SKWORD:
6697 p = "SKWORD";
6698 break;
6699 case SKWORD + ADD_NL:
6700 p = "SKWORD+NL";
6701 break;
6702 case FNAME:
6703 p = "FNAME";
6704 break;
6705 case FNAME + ADD_NL:
6706 p = "FNAME+NL";
6707 break;
6708 case SFNAME:
6709 p = "SFNAME";
6710 break;
6711 case SFNAME + ADD_NL:
6712 p = "SFNAME+NL";
6713 break;
6714 case PRINT:
6715 p = "PRINT";
6716 break;
6717 case PRINT + ADD_NL:
6718 p = "PRINT+NL";
6719 break;
6720 case SPRINT:
6721 p = "SPRINT";
6722 break;
6723 case SPRINT + ADD_NL:
6724 p = "SPRINT+NL";
6725 break;
6726 case WHITE:
6727 p = "WHITE";
6728 break;
6729 case WHITE + ADD_NL:
6730 p = "WHITE+NL";
6731 break;
6732 case NWHITE:
6733 p = "NWHITE";
6734 break;
6735 case NWHITE + ADD_NL:
6736 p = "NWHITE+NL";
6737 break;
6738 case DIGIT:
6739 p = "DIGIT";
6740 break;
6741 case DIGIT + ADD_NL:
6742 p = "DIGIT+NL";
6743 break;
6744 case NDIGIT:
6745 p = "NDIGIT";
6746 break;
6747 case NDIGIT + ADD_NL:
6748 p = "NDIGIT+NL";
6749 break;
6750 case HEX:
6751 p = "HEX";
6752 break;
6753 case HEX + ADD_NL:
6754 p = "HEX+NL";
6755 break;
6756 case NHEX:
6757 p = "NHEX";
6758 break;
6759 case NHEX + ADD_NL:
6760 p = "NHEX+NL";
6761 break;
6762 case OCTAL:
6763 p = "OCTAL";
6764 break;
6765 case OCTAL + ADD_NL:
6766 p = "OCTAL+NL";
6767 break;
6768 case NOCTAL:
6769 p = "NOCTAL";
6770 break;
6771 case NOCTAL + ADD_NL:
6772 p = "NOCTAL+NL";
6773 break;
6774 case WORD:
6775 p = "WORD";
6776 break;
6777 case WORD + ADD_NL:
6778 p = "WORD+NL";
6779 break;
6780 case NWORD:
6781 p = "NWORD";
6782 break;
6783 case NWORD + ADD_NL:
6784 p = "NWORD+NL";
6785 break;
6786 case HEAD:
6787 p = "HEAD";
6788 break;
6789 case HEAD + ADD_NL:
6790 p = "HEAD+NL";
6791 break;
6792 case NHEAD:
6793 p = "NHEAD";
6794 break;
6795 case NHEAD + ADD_NL:
6796 p = "NHEAD+NL";
6797 break;
6798 case ALPHA:
6799 p = "ALPHA";
6800 break;
6801 case ALPHA + ADD_NL:
6802 p = "ALPHA+NL";
6803 break;
6804 case NALPHA:
6805 p = "NALPHA";
6806 break;
6807 case NALPHA + ADD_NL:
6808 p = "NALPHA+NL";
6809 break;
6810 case LOWER:
6811 p = "LOWER";
6812 break;
6813 case LOWER + ADD_NL:
6814 p = "LOWER+NL";
6815 break;
6816 case NLOWER:
6817 p = "NLOWER";
6818 break;
6819 case NLOWER + ADD_NL:
6820 p = "NLOWER+NL";
6821 break;
6822 case UPPER:
6823 p = "UPPER";
6824 break;
6825 case UPPER + ADD_NL:
6826 p = "UPPER+NL";
6827 break;
6828 case NUPPER:
6829 p = "NUPPER";
6830 break;
6831 case NUPPER + ADD_NL:
6832 p = "NUPPER+NL";
6833 break;
6834 case BRANCH:
6835 p = "BRANCH";
6836 break;
6837 case EXACTLY:
6838 p = "EXACTLY";
6839 break;
6840 case NOTHING:
6841 p = "NOTHING";
6842 break;
6843 case BACK:
6844 p = "BACK";
6845 break;
6846 case END:
6847 p = "END";
6848 break;
6849 case MOPEN + 0:
6850 p = "MATCH START";
6851 break;
6852 case MOPEN + 1:
6853 case MOPEN + 2:
6854 case MOPEN + 3:
6855 case MOPEN + 4:
6856 case MOPEN + 5:
6857 case MOPEN + 6:
6858 case MOPEN + 7:
6859 case MOPEN + 8:
6860 case MOPEN + 9:
6861 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN);
6862 p = NULL;
6863 break;
6864 case MCLOSE + 0:
6865 p = "MATCH END";
6866 break;
6867 case MCLOSE + 1:
6868 case MCLOSE + 2:
6869 case MCLOSE + 3:
6870 case MCLOSE + 4:
6871 case MCLOSE + 5:
6872 case MCLOSE + 6:
6873 case MCLOSE + 7:
6874 case MCLOSE + 8:
6875 case MCLOSE + 9:
6876 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE);
6877 p = NULL;
6878 break;
6879 case BACKREF + 1:
6880 case BACKREF + 2:
6881 case BACKREF + 3:
6882 case BACKREF + 4:
6883 case BACKREF + 5:
6884 case BACKREF + 6:
6885 case BACKREF + 7:
6886 case BACKREF + 8:
6887 case BACKREF + 9:
6888 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF);
6889 p = NULL;
6890 break;
6891 case NOPEN:
6892 p = "NOPEN";
6893 break;
6894 case NCLOSE:
6895 p = "NCLOSE";
6896 break;
6897#ifdef FEAT_SYN_HL
6898 case ZOPEN + 1:
6899 case ZOPEN + 2:
6900 case ZOPEN + 3:
6901 case ZOPEN + 4:
6902 case ZOPEN + 5:
6903 case ZOPEN + 6:
6904 case ZOPEN + 7:
6905 case ZOPEN + 8:
6906 case ZOPEN + 9:
6907 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN);
6908 p = NULL;
6909 break;
6910 case ZCLOSE + 1:
6911 case ZCLOSE + 2:
6912 case ZCLOSE + 3:
6913 case ZCLOSE + 4:
6914 case ZCLOSE + 5:
6915 case ZCLOSE + 6:
6916 case ZCLOSE + 7:
6917 case ZCLOSE + 8:
6918 case ZCLOSE + 9:
6919 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE);
6920 p = NULL;
6921 break;
6922 case ZREF + 1:
6923 case ZREF + 2:
6924 case ZREF + 3:
6925 case ZREF + 4:
6926 case ZREF + 5:
6927 case ZREF + 6:
6928 case ZREF + 7:
6929 case ZREF + 8:
6930 case ZREF + 9:
6931 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF);
6932 p = NULL;
6933 break;
6934#endif
6935 case STAR:
6936 p = "STAR";
6937 break;
6938 case PLUS:
6939 p = "PLUS";
6940 break;
6941 case NOMATCH:
6942 p = "NOMATCH";
6943 break;
6944 case MATCH:
6945 p = "MATCH";
6946 break;
6947 case BEHIND:
6948 p = "BEHIND";
6949 break;
6950 case NOBEHIND:
6951 p = "NOBEHIND";
6952 break;
6953 case SUBPAT:
6954 p = "SUBPAT";
6955 break;
6956 case BRACE_LIMITS:
6957 p = "BRACE_LIMITS";
6958 break;
6959 case BRACE_SIMPLE:
6960 p = "BRACE_SIMPLE";
6961 break;
6962 case BRACE_COMPLEX + 0:
6963 case BRACE_COMPLEX + 1:
6964 case BRACE_COMPLEX + 2:
6965 case BRACE_COMPLEX + 3:
6966 case BRACE_COMPLEX + 4:
6967 case BRACE_COMPLEX + 5:
6968 case BRACE_COMPLEX + 6:
6969 case BRACE_COMPLEX + 7:
6970 case BRACE_COMPLEX + 8:
6971 case BRACE_COMPLEX + 9:
6972 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX);
6973 p = NULL;
6974 break;
6975#ifdef FEAT_MBYTE
6976 case MULTIBYTECODE:
6977 p = "MULTIBYTECODE";
6978 break;
6979#endif
6980 case NEWL:
6981 p = "NEWL";
6982 break;
6983 default:
6984 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op));
6985 p = NULL;
6986 break;
6987 }
6988 if (p != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006989 STRCAT(buf, p);
6990 return (char_u *)buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991}
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006992#endif /* DEBUG */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993
Bram Moolenaarfb031402014-09-09 17:18:49 +02006994/*
6995 * Used in a place where no * or \+ can follow.
6996 */
6997 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006998re_mult_next(char *what)
Bram Moolenaarfb031402014-09-09 17:18:49 +02006999{
7000 if (re_multi_type(peekchr()) == MULTI_MULT)
7001 EMSG2_RET_FAIL(_("E888: (NFA regexp) cannot repeat %s"), what);
7002 return OK;
7003}
7004
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005#ifdef FEAT_MBYTE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007006static void mb_decompose(int c, int *c1, int *c2, int *c3);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007
7008typedef struct
7009{
7010 int a, b, c;
7011} decomp_T;
7012
7013
7014/* 0xfb20 - 0xfb4f */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007015static decomp_T decomp_table[0xfb4f-0xfb20+1] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016{
7017 {0x5e2,0,0}, /* 0xfb20 alt ayin */
7018 {0x5d0,0,0}, /* 0xfb21 alt alef */
7019 {0x5d3,0,0}, /* 0xfb22 alt dalet */
7020 {0x5d4,0,0}, /* 0xfb23 alt he */
7021 {0x5db,0,0}, /* 0xfb24 alt kaf */
7022 {0x5dc,0,0}, /* 0xfb25 alt lamed */
7023 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
7024 {0x5e8,0,0}, /* 0xfb27 alt resh */
7025 {0x5ea,0,0}, /* 0xfb28 alt tav */
7026 {'+', 0, 0}, /* 0xfb29 alt plus */
7027 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
7028 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
7029 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
7030 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
7031 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
7032 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
7033 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
7034 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
7035 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
7036 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
7037 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
7038 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
7039 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
7040 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
7041 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
7042 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
7043 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
7044 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
7045 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
7046 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
7047 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
7048 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
7049 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
7050 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
7051 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
7052 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
7053 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
7054 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
7055 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
7056 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
7057 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
7058 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
7059 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
7060 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
7061 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
7062 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
7063 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
7064 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
7065};
7066
7067 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007068mb_decompose(int c, int *c1, int *c2, int *c3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069{
7070 decomp_T d;
7071
Bram Moolenaar2eec59e2013-05-21 21:37:20 +02007072 if (c >= 0xfb20 && c <= 0xfb4f)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073 {
7074 d = decomp_table[c - 0xfb20];
7075 *c1 = d.a;
7076 *c2 = d.b;
7077 *c3 = d.c;
7078 }
7079 else
7080 {
7081 *c1 = c;
7082 *c2 = *c3 = 0;
7083 }
7084}
7085#endif
7086
7087/*
Bram Moolenaar6100d022016-10-02 16:51:57 +02007088 * Compare two strings, ignore case if rex.reg_ic set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 * Return 0 if strings match, non-zero otherwise.
7090 * Correct the length "*n" when composing characters are ignored.
7091 */
7092 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007093cstrncmp(char_u *s1, char_u *s2, int *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094{
7095 int result;
7096
Bram Moolenaar6100d022016-10-02 16:51:57 +02007097 if (!rex.reg_ic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 result = STRNCMP(s1, s2, *n);
7099 else
7100 result = MB_STRNICMP(s1, s2, *n);
7101
7102#ifdef FEAT_MBYTE
7103 /* if it failed and it's utf8 and we want to combineignore: */
Bram Moolenaar6100d022016-10-02 16:51:57 +02007104 if (result != 0 && enc_utf8 && rex.reg_icombine)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105 {
7106 char_u *str1, *str2;
7107 int c1, c2, c11, c12;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108 int junk;
7109
7110 /* we have to handle the strcmp ourselves, since it is necessary to
7111 * deal with the composing characters by ignoring them: */
7112 str1 = s1;
7113 str2 = s2;
7114 c1 = c2 = 0;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00007115 while ((int)(str1 - s1) < *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 {
7117 c1 = mb_ptr2char_adv(&str1);
7118 c2 = mb_ptr2char_adv(&str2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119
7120 /* decompose the character if necessary, into 'base' characters
7121 * because I don't care about Arabic, I will hard-code the Hebrew
7122 * which I *do* care about! So sue me... */
Bram Moolenaar6100d022016-10-02 16:51:57 +02007123 if (c1 != c2 && (!rex.reg_ic || utf_fold(c1) != utf_fold(c2)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124 {
7125 /* decomposition necessary? */
7126 mb_decompose(c1, &c11, &junk, &junk);
7127 mb_decompose(c2, &c12, &junk, &junk);
7128 c1 = c11;
7129 c2 = c12;
Bram Moolenaar6100d022016-10-02 16:51:57 +02007130 if (c11 != c12
7131 && (!rex.reg_ic || utf_fold(c11) != utf_fold(c12)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 break;
7133 }
7134 }
7135 result = c2 - c1;
7136 if (result == 0)
7137 *n = (int)(str2 - s2);
7138 }
7139#endif
7140
7141 return result;
7142}
7143
7144/*
7145 * cstrchr: This function is used a lot for simple searches, keep it fast!
7146 */
7147 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01007148cstrchr(char_u *s, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149{
7150 char_u *p;
7151 int cc;
7152
Bram Moolenaar6100d022016-10-02 16:51:57 +02007153 if (!rex.reg_ic
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154#ifdef FEAT_MBYTE
7155 || (!enc_utf8 && mb_char2len(c) > 1)
7156#endif
7157 )
7158 return vim_strchr(s, c);
7159
7160 /* tolower() and toupper() can be slow, comparing twice should be a lot
7161 * faster (esp. when using MS Visual C++!).
7162 * For UTF-8 need to use folded case. */
7163#ifdef FEAT_MBYTE
7164 if (enc_utf8 && c > 0x80)
7165 cc = utf_fold(c);
7166 else
7167#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00007168 if (MB_ISUPPER(c))
7169 cc = MB_TOLOWER(c);
7170 else if (MB_ISLOWER(c))
7171 cc = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172 else
7173 return vim_strchr(s, c);
7174
7175#ifdef FEAT_MBYTE
7176 if (has_mbyte)
7177 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007178 for (p = s; *p != NUL; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 {
7180 if (enc_utf8 && c > 0x80)
7181 {
7182 if (utf_fold(utf_ptr2char(p)) == cc)
7183 return p;
7184 }
7185 else if (*p == c || *p == cc)
7186 return p;
7187 }
7188 }
7189 else
7190#endif
7191 /* Faster version for when there are no multi-byte characters. */
7192 for (p = s; *p != NUL; ++p)
7193 if (*p == c || *p == cc)
7194 return p;
7195
7196 return NULL;
7197}
7198
7199/***************************************************************
7200 * regsub stuff *
7201 ***************************************************************/
7202
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203/*
7204 * We should define ftpr as a pointer to a function returning a pointer to
7205 * a function returning a pointer to a function ...
7206 * This is impossible, so we declare a pointer to a function returning a
7207 * pointer to a function returning void. This should work for all compilers.
7208 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007209typedef void (*(*fptr_T)(int *, int))();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007211static fptr_T do_upper(int *, int);
7212static fptr_T do_Upper(int *, int);
7213static fptr_T do_lower(int *, int);
7214static fptr_T do_Lower(int *, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007215
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007216static int vim_regsub_both(char_u *source, typval_T *expr, char_u *dest, int copy, int magic, int backslash);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007218 static fptr_T
Bram Moolenaar05540972016-01-30 20:31:25 +01007219do_upper(int *d, int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007220{
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007221 *d = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007223 return (fptr_T)NULL;
7224}
7225
7226 static fptr_T
Bram Moolenaar05540972016-01-30 20:31:25 +01007227do_Upper(int *d, int c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007228{
7229 *d = MB_TOUPPER(c);
7230
7231 return (fptr_T)do_Upper;
7232}
7233
7234 static fptr_T
Bram Moolenaar05540972016-01-30 20:31:25 +01007235do_lower(int *d, int c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007236{
7237 *d = MB_TOLOWER(c);
7238
7239 return (fptr_T)NULL;
7240}
7241
7242 static fptr_T
Bram Moolenaar05540972016-01-30 20:31:25 +01007243do_Lower(int *d, int c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007244{
7245 *d = MB_TOLOWER(c);
7246
7247 return (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007248}
7249
7250/*
7251 * regtilde(): Replace tildes in the pattern by the old pattern.
7252 *
7253 * Short explanation of the tilde: It stands for the previous replacement
7254 * pattern. If that previous pattern also contains a ~ we should go back a
7255 * step further... But we insert the previous pattern into the current one
7256 * and remember that.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007257 * This still does not handle the case where "magic" changes. So require the
7258 * user to keep his hands off of "magic".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007259 *
7260 * The tildes are parsed once before the first call to vim_regsub().
7261 */
7262 char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01007263regtilde(char_u *source, int magic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264{
7265 char_u *newsub = source;
7266 char_u *tmpsub;
7267 char_u *p;
7268 int len;
7269 int prevlen;
7270
7271 for (p = newsub; *p; ++p)
7272 {
7273 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic))
7274 {
7275 if (reg_prev_sub != NULL)
7276 {
7277 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
7278 prevlen = (int)STRLEN(reg_prev_sub);
7279 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen));
7280 if (tmpsub != NULL)
7281 {
7282 /* copy prefix */
7283 len = (int)(p - newsub); /* not including ~ */
7284 mch_memmove(tmpsub, newsub, (size_t)len);
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007285 /* interpret tilde */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen);
7287 /* copy postfix */
7288 if (!magic)
7289 ++p; /* back off \ */
7290 STRCPY(tmpsub + len + prevlen, p + 1);
7291
7292 if (newsub != source) /* already allocated newsub */
7293 vim_free(newsub);
7294 newsub = tmpsub;
7295 p = newsub + len + prevlen;
7296 }
7297 }
7298 else if (magic)
Bram Moolenaar446cb832008-06-24 21:56:24 +00007299 STRMOVE(p, p + 1); /* remove '~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 else
Bram Moolenaar446cb832008-06-24 21:56:24 +00007301 STRMOVE(p, p + 2); /* remove '\~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302 --p;
7303 }
7304 else
7305 {
7306 if (*p == '\\' && p[1]) /* skip escaped characters */
7307 ++p;
7308#ifdef FEAT_MBYTE
7309 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007310 p += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311#endif
7312 }
7313 }
7314
7315 vim_free(reg_prev_sub);
7316 if (newsub != source) /* newsub was allocated, just keep it */
7317 reg_prev_sub = newsub;
7318 else /* no ~ found, need to save newsub */
7319 reg_prev_sub = vim_strsave(newsub);
7320 return newsub;
7321}
7322
7323#ifdef FEAT_EVAL
7324static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */
7325
Bram Moolenaar6100d022016-10-02 16:51:57 +02007326/* These pointers are used for reg_submatch(). Needed for when the
7327 * substitution string is an expression that contains a call to substitute()
7328 * and submatch(). */
7329typedef struct {
7330 regmatch_T *sm_match;
7331 regmmatch_T *sm_mmatch;
7332 linenr_T sm_firstlnum;
7333 linenr_T sm_maxline;
7334 int sm_line_lbr;
7335} regsubmatch_T;
7336
7337static regsubmatch_T rsm; /* can only be used when can_f_submatch is TRUE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007338#endif
7339
7340#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaardf48fb42016-07-22 21:50:18 +02007341
7342/*
7343 * Put the submatches in "argv[0]" which is a list passed into call_func() by
7344 * vim_regsub_both().
7345 */
7346 static int
7347fill_submatch_list(int argc UNUSED, typval_T *argv, int argcount)
7348{
7349 listitem_T *li;
7350 int i;
7351 char_u *s;
7352
7353 if (argcount == 0)
7354 /* called function doesn't take an argument */
7355 return 0;
7356
7357 /* Relies on sl_list to be the first item in staticList10_T. */
7358 init_static_list((staticList10_T *)(argv->vval.v_list));
7359
7360 /* There are always 10 list items in staticList10_T. */
7361 li = argv->vval.v_list->lv_first;
7362 for (i = 0; i < 10; ++i)
7363 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007364 s = rsm.sm_match->startp[i];
7365 if (s == NULL || rsm.sm_match->endp[i] == NULL)
Bram Moolenaardf48fb42016-07-22 21:50:18 +02007366 s = NULL;
7367 else
Bram Moolenaar6100d022016-10-02 16:51:57 +02007368 s = vim_strnsave(s, (int)(rsm.sm_match->endp[i] - s));
Bram Moolenaardf48fb42016-07-22 21:50:18 +02007369 li->li_tv.v_type = VAR_STRING;
7370 li->li_tv.vval.v_string = s;
7371 li = li->li_next;
7372 }
7373 return 1;
7374}
7375
7376 static void
7377clear_submatch_list(staticList10_T *sl)
7378{
7379 int i;
7380
7381 for (i = 0; i < 10; ++i)
7382 vim_free(sl->sl_items[i].li_tv.vval.v_string);
7383}
7384
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385/*
7386 * vim_regsub() - perform substitutions after a vim_regexec() or
7387 * vim_regexec_multi() match.
7388 *
7389 * If "copy" is TRUE really copy into "dest".
7390 * If "copy" is FALSE nothing is copied, this is just to find out the length
7391 * of the result.
7392 *
7393 * If "backslash" is TRUE, a backslash will be removed later, need to double
7394 * them to keep them, and insert a backslash before a CR to avoid it being
7395 * replaced with a line break later.
7396 *
7397 * Note: The matched text must not change between the call of
7398 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
7399 * references invalid!
7400 *
7401 * Returns the size of the replacement, including terminating NUL.
7402 */
7403 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007404vim_regsub(
7405 regmatch_T *rmp,
7406 char_u *source,
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007407 typval_T *expr,
Bram Moolenaar05540972016-01-30 20:31:25 +01007408 char_u *dest,
7409 int copy,
7410 int magic,
7411 int backslash)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412{
Bram Moolenaar6100d022016-10-02 16:51:57 +02007413 int result;
7414 regexec_T rex_save;
7415 int rex_in_use_save = rex_in_use;
7416
7417 if (rex_in_use)
7418 /* Being called recursively, save the state. */
7419 rex_save = rex;
7420 rex_in_use = TRUE;
7421
7422 rex.reg_match = rmp;
7423 rex.reg_mmatch = NULL;
7424 rex.reg_maxline = 0;
7425 rex.reg_buf = curbuf;
7426 rex.reg_line_lbr = TRUE;
7427 result = vim_regsub_both(source, expr, dest, copy, magic, backslash);
7428
7429 rex_in_use = rex_in_use_save;
7430 if (rex_in_use)
7431 rex = rex_save;
7432
7433 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007434}
7435#endif
7436
7437 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007438vim_regsub_multi(
7439 regmmatch_T *rmp,
7440 linenr_T lnum,
7441 char_u *source,
7442 char_u *dest,
7443 int copy,
7444 int magic,
7445 int backslash)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007446{
Bram Moolenaar6100d022016-10-02 16:51:57 +02007447 int result;
7448 regexec_T rex_save;
7449 int rex_in_use_save = rex_in_use;
7450
7451 if (rex_in_use)
7452 /* Being called recursively, save the state. */
7453 rex_save = rex;
7454 rex_in_use = TRUE;
7455
7456 rex.reg_match = NULL;
7457 rex.reg_mmatch = rmp;
7458 rex.reg_buf = curbuf; /* always works on the current buffer! */
7459 rex.reg_firstlnum = lnum;
7460 rex.reg_maxline = curbuf->b_ml.ml_line_count - lnum;
7461 rex.reg_line_lbr = FALSE;
7462 result = vim_regsub_both(source, NULL, dest, copy, magic, backslash);
7463
7464 rex_in_use = rex_in_use_save;
7465 if (rex_in_use)
7466 rex = rex_save;
7467
7468 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469}
7470
7471 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007472vim_regsub_both(
7473 char_u *source,
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007474 typval_T *expr,
Bram Moolenaar05540972016-01-30 20:31:25 +01007475 char_u *dest,
7476 int copy,
7477 int magic,
7478 int backslash)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479{
7480 char_u *src;
7481 char_u *dst;
7482 char_u *s;
7483 int c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007484 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 int no = -1;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007486 fptr_T func_all = (fptr_T)NULL;
7487 fptr_T func_one = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488 linenr_T clnum = 0; /* init for GCC */
7489 int len = 0; /* init for GCC */
7490#ifdef FEAT_EVAL
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007491 static char_u *eval_result = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493
7494 /* Be paranoid... */
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007495 if ((source == NULL && expr == NULL) || dest == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007496 {
7497 EMSG(_(e_null));
7498 return 0;
7499 }
7500 if (prog_magic_wrong())
7501 return 0;
7502 src = source;
7503 dst = dest;
7504
7505 /*
7506 * When the substitute part starts with "\=" evaluate it as an expression.
7507 */
Bram Moolenaar6100d022016-10-02 16:51:57 +02007508 if (expr != NULL || (source[0] == '\\' && source[1] == '='))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509 {
7510#ifdef FEAT_EVAL
7511 /* To make sure that the length doesn't change between checking the
7512 * length and copying the string, and to speed up things, the
7513 * resulting string is saved from the call with "copy" == FALSE to the
7514 * call with "copy" == TRUE. */
7515 if (copy)
7516 {
7517 if (eval_result != NULL)
7518 {
7519 STRCPY(dest, eval_result);
7520 dst += STRLEN(eval_result);
Bram Moolenaard23a8232018-02-10 18:45:26 +01007521 VIM_CLEAR(eval_result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 }
7523 }
7524 else
7525 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007526 int prev_can_f_submatch = can_f_submatch;
7527 regsubmatch_T rsm_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007528
7529 vim_free(eval_result);
7530
7531 /* The expression may contain substitute(), which calls us
7532 * recursively. Make sure submatch() gets the text from the first
Bram Moolenaar6100d022016-10-02 16:51:57 +02007533 * level. */
7534 if (can_f_submatch)
7535 rsm_save = rsm;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536 can_f_submatch = TRUE;
Bram Moolenaar6100d022016-10-02 16:51:57 +02007537 rsm.sm_match = rex.reg_match;
7538 rsm.sm_mmatch = rex.reg_mmatch;
7539 rsm.sm_firstlnum = rex.reg_firstlnum;
7540 rsm.sm_maxline = rex.reg_maxline;
7541 rsm.sm_line_lbr = rex.reg_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007542
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007543 if (expr != NULL)
7544 {
Bram Moolenaardf48fb42016-07-22 21:50:18 +02007545 typval_T argv[2];
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007546 int dummy;
7547 char_u buf[NUMBUFLEN];
7548 typval_T rettv;
Bram Moolenaardf48fb42016-07-22 21:50:18 +02007549 staticList10_T matchList;
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007550
7551 rettv.v_type = VAR_STRING;
7552 rettv.vval.v_string = NULL;
Bram Moolenaar6100d022016-10-02 16:51:57 +02007553 argv[0].v_type = VAR_LIST;
7554 argv[0].vval.v_list = &matchList.sl_list;
7555 matchList.sl_list.lv_len = 0;
7556 if (expr->v_type == VAR_FUNC)
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007557 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007558 s = expr->vval.v_string;
7559 call_func(s, (int)STRLEN(s), &rettv,
7560 1, argv, fill_submatch_list,
7561 0L, 0L, &dummy, TRUE, NULL, NULL);
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007562 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02007563 else if (expr->v_type == VAR_PARTIAL)
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007564 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007565 partial_T *partial = expr->vval.v_partial;
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007566
Bram Moolenaar6100d022016-10-02 16:51:57 +02007567 s = partial_name(partial);
7568 call_func(s, (int)STRLEN(s), &rettv,
7569 1, argv, fill_submatch_list,
7570 0L, 0L, &dummy, TRUE, partial, NULL);
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007571 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02007572 if (matchList.sl_list.lv_len > 0)
7573 /* fill_submatch_list() was called */
7574 clear_submatch_list(&matchList);
7575
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007576 eval_result = get_tv_string_buf_chk(&rettv, buf);
7577 if (eval_result != NULL)
7578 eval_result = vim_strsave(eval_result);
Bram Moolenaardf48fb42016-07-22 21:50:18 +02007579 clear_tv(&rettv);
Bram Moolenaar72ab7292016-07-19 19:10:51 +02007580 }
7581 else
7582 eval_result = eval_to_string(source + 2, NULL, TRUE);
7583
Bram Moolenaar071d4272004-06-13 20:20:40 +00007584 if (eval_result != NULL)
7585 {
Bram Moolenaar06975a42010-03-23 16:27:22 +01007586 int had_backslash = FALSE;
7587
Bram Moolenaar91acfff2017-03-12 19:22:36 +01007588 for (s = eval_result; *s != NUL; MB_PTR_ADV(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 {
Bram Moolenaar978287b2011-06-19 04:32:15 +02007590 /* Change NL to CR, so that it becomes a line break,
7591 * unless called from vim_regexec_nl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 * Skip over a backslashed character. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02007593 if (*s == NL && !rsm.sm_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594 *s = CAR;
7595 else if (*s == '\\' && s[1] != NUL)
Bram Moolenaar06975a42010-03-23 16:27:22 +01007596 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 ++s;
Bram Moolenaar60190782010-05-21 13:08:58 +02007598 /* Change NL to CR here too, so that this works:
7599 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text:
7600 * abc\
7601 * def
Bram Moolenaar978287b2011-06-19 04:32:15 +02007602 * Not when called from vim_regexec_nl().
Bram Moolenaar60190782010-05-21 13:08:58 +02007603 */
Bram Moolenaar6100d022016-10-02 16:51:57 +02007604 if (*s == NL && !rsm.sm_line_lbr)
Bram Moolenaar60190782010-05-21 13:08:58 +02007605 *s = CAR;
Bram Moolenaar06975a42010-03-23 16:27:22 +01007606 had_backslash = TRUE;
7607 }
7608 }
7609 if (had_backslash && backslash)
7610 {
7611 /* Backslashes will be consumed, need to double them. */
7612 s = vim_strsave_escaped(eval_result, (char_u *)"\\");
7613 if (s != NULL)
7614 {
7615 vim_free(eval_result);
7616 eval_result = s;
7617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007618 }
7619
7620 dst += STRLEN(eval_result);
7621 }
7622
Bram Moolenaar6100d022016-10-02 16:51:57 +02007623 can_f_submatch = prev_can_f_submatch;
7624 if (can_f_submatch)
7625 rsm = rsm_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 }
7627#endif
7628 }
7629 else
7630 while ((c = *src++) != NUL)
7631 {
7632 if (c == '&' && magic)
7633 no = 0;
7634 else if (c == '\\' && *src != NUL)
7635 {
7636 if (*src == '&' && !magic)
7637 {
7638 ++src;
7639 no = 0;
7640 }
7641 else if ('0' <= *src && *src <= '9')
7642 {
7643 no = *src++ - '0';
7644 }
7645 else if (vim_strchr((char_u *)"uUlLeE", *src))
7646 {
7647 switch (*src++)
7648 {
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007649 case 'u': func_one = (fptr_T)do_upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007651 case 'U': func_all = (fptr_T)do_Upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007653 case 'l': func_one = (fptr_T)do_lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007654 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007655 case 'L': func_all = (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007656 continue;
7657 case 'e':
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007658 case 'E': func_one = func_all = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007659 continue;
7660 }
7661 }
7662 }
7663 if (no < 0) /* Ordinary character. */
7664 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00007665 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL)
7666 {
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007667 /* Copy a special key as-is. */
Bram Moolenaardb552d602006-03-23 22:59:57 +00007668 if (copy)
7669 {
7670 *dst++ = c;
7671 *dst++ = *src++;
7672 *dst++ = *src++;
7673 }
7674 else
7675 {
7676 dst += 3;
7677 src += 2;
7678 }
7679 continue;
7680 }
7681
Bram Moolenaar071d4272004-06-13 20:20:40 +00007682 if (c == '\\' && *src != NUL)
7683 {
7684 /* Check for abbreviations -- webb */
7685 switch (*src)
7686 {
7687 case 'r': c = CAR; ++src; break;
7688 case 'n': c = NL; ++src; break;
7689 case 't': c = TAB; ++src; break;
7690 /* Oh no! \e already has meaning in subst pat :-( */
7691 /* case 'e': c = ESC; ++src; break; */
7692 case 'b': c = Ctrl_H; ++src; break;
7693
7694 /* If "backslash" is TRUE the backslash will be removed
7695 * later. Used to insert a literal CR. */
7696 default: if (backslash)
7697 {
7698 if (copy)
7699 *dst = '\\';
7700 ++dst;
7701 }
7702 c = *src++;
7703 }
7704 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007705#ifdef FEAT_MBYTE
Bram Moolenaardb552d602006-03-23 22:59:57 +00007706 else if (has_mbyte)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007707 c = mb_ptr2char(src - 1);
7708#endif
7709
Bram Moolenaardb552d602006-03-23 22:59:57 +00007710 /* Write to buffer, if copy is set. */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007711 if (func_one != (fptr_T)NULL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007712 /* Turbo C complains without the typecast */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007713 func_one = (fptr_T)(func_one(&cc, c));
7714 else if (func_all != (fptr_T)NULL)
7715 /* Turbo C complains without the typecast */
7716 func_all = (fptr_T)(func_all(&cc, c));
7717 else /* just copy */
7718 cc = c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007719
7720#ifdef FEAT_MBYTE
7721 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007722 {
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007723 int totlen = mb_ptr2len(src - 1);
7724
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007726 mb_char2bytes(cc, dst);
7727 dst += mb_char2len(cc) - 1;
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007728 if (enc_utf8)
7729 {
7730 int clen = utf_ptr2len(src - 1);
7731
7732 /* If the character length is shorter than "totlen", there
7733 * are composing characters; copy them as-is. */
7734 if (clen < totlen)
7735 {
7736 if (copy)
7737 mch_memmove(dst + 1, src - 1 + clen,
7738 (size_t)(totlen - clen));
7739 dst += totlen - clen;
7740 }
7741 }
7742 src += totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 }
7744 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007745#endif
7746 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007747 *dst = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748 dst++;
7749 }
7750 else
7751 {
7752 if (REG_MULTI)
7753 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007754 clnum = rex.reg_mmatch->startpos[no].lnum;
7755 if (clnum < 0 || rex.reg_mmatch->endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756 s = NULL;
7757 else
7758 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007759 s = reg_getline(clnum) + rex.reg_mmatch->startpos[no].col;
7760 if (rex.reg_mmatch->endpos[no].lnum == clnum)
7761 len = rex.reg_mmatch->endpos[no].col
7762 - rex.reg_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007763 else
7764 len = (int)STRLEN(s);
7765 }
7766 }
7767 else
7768 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007769 s = rex.reg_match->startp[no];
7770 if (rex.reg_match->endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007771 s = NULL;
7772 else
Bram Moolenaar6100d022016-10-02 16:51:57 +02007773 len = (int)(rex.reg_match->endp[no] - s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774 }
7775 if (s != NULL)
7776 {
7777 for (;;)
7778 {
7779 if (len == 0)
7780 {
7781 if (REG_MULTI)
7782 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007783 if (rex.reg_mmatch->endpos[no].lnum == clnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784 break;
7785 if (copy)
7786 *dst = CAR;
7787 ++dst;
7788 s = reg_getline(++clnum);
Bram Moolenaar6100d022016-10-02 16:51:57 +02007789 if (rex.reg_mmatch->endpos[no].lnum == clnum)
7790 len = rex.reg_mmatch->endpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 else
7792 len = (int)STRLEN(s);
7793 }
7794 else
7795 break;
7796 }
7797 else if (*s == NUL) /* we hit NUL. */
7798 {
7799 if (copy)
7800 EMSG(_(e_re_damg));
7801 goto exit;
7802 }
7803 else
7804 {
7805 if (backslash && (*s == CAR || *s == '\\'))
7806 {
7807 /*
7808 * Insert a backslash in front of a CR, otherwise
7809 * it will be replaced by a line break.
7810 * Number of backslashes will be halved later,
7811 * double them here.
7812 */
7813 if (copy)
7814 {
7815 dst[0] = '\\';
7816 dst[1] = *s;
7817 }
7818 dst += 2;
7819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 else
7821 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007822#ifdef FEAT_MBYTE
7823 if (has_mbyte)
7824 c = mb_ptr2char(s);
7825 else
7826#endif
7827 c = *s;
7828
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007829 if (func_one != (fptr_T)NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007830 /* Turbo C complains without the typecast */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007831 func_one = (fptr_T)(func_one(&cc, c));
7832 else if (func_all != (fptr_T)NULL)
7833 /* Turbo C complains without the typecast */
7834 func_all = (fptr_T)(func_all(&cc, c));
7835 else /* just copy */
7836 cc = c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007837
7838#ifdef FEAT_MBYTE
7839 if (has_mbyte)
7840 {
Bram Moolenaar9225efb2007-07-30 20:32:53 +00007841 int l;
7842
7843 /* Copy composing characters separately, one
7844 * at a time. */
7845 if (enc_utf8)
7846 l = utf_ptr2len(s) - 1;
7847 else
7848 l = mb_ptr2len(s) - 1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007849
7850 s += l;
7851 len -= l;
7852 if (copy)
7853 mb_char2bytes(cc, dst);
7854 dst += mb_char2len(cc) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007855 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007856 else
7857#endif
7858 if (copy)
7859 *dst = cc;
7860 dst++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007861 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007862
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863 ++s;
7864 --len;
7865 }
7866 }
7867 }
7868 no = -1;
7869 }
7870 }
7871 if (copy)
7872 *dst = NUL;
7873
7874exit:
7875 return (int)((dst - dest) + 1);
7876}
7877
7878#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007879static char_u *reg_getline_submatch(linenr_T lnum);
Bram Moolenaard32a3192009-11-26 19:40:49 +00007880
Bram Moolenaar071d4272004-06-13 20:20:40 +00007881/*
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007882 * Call reg_getline() with the line numbers from the submatch. If a
7883 * substitute() was used the reg_maxline and other values have been
7884 * overwritten.
7885 */
7886 static char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01007887reg_getline_submatch(linenr_T lnum)
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007888{
7889 char_u *s;
Bram Moolenaar6100d022016-10-02 16:51:57 +02007890 linenr_T save_first = rex.reg_firstlnum;
7891 linenr_T save_max = rex.reg_maxline;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007892
Bram Moolenaar6100d022016-10-02 16:51:57 +02007893 rex.reg_firstlnum = rsm.sm_firstlnum;
7894 rex.reg_maxline = rsm.sm_maxline;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007895
7896 s = reg_getline(lnum);
7897
Bram Moolenaar6100d022016-10-02 16:51:57 +02007898 rex.reg_firstlnum = save_first;
7899 rex.reg_maxline = save_max;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007900 return s;
7901}
7902
7903/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007904 * Used for the submatch() function: get the string from the n'th submatch in
Bram Moolenaar071d4272004-06-13 20:20:40 +00007905 * allocated memory.
7906 * Returns NULL when not in a ":s" command and for a non-existing submatch.
7907 */
7908 char_u *
Bram Moolenaar05540972016-01-30 20:31:25 +01007909reg_submatch(int no)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910{
7911 char_u *retval = NULL;
7912 char_u *s;
7913 int len;
7914 int round;
7915 linenr_T lnum;
7916
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007917 if (!can_f_submatch || no < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918 return NULL;
7919
Bram Moolenaar6100d022016-10-02 16:51:57 +02007920 if (rsm.sm_match == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007921 {
7922 /*
7923 * First round: compute the length and allocate memory.
7924 * Second round: copy the text.
7925 */
7926 for (round = 1; round <= 2; ++round)
7927 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007928 lnum = rsm.sm_mmatch->startpos[no].lnum;
7929 if (lnum < 0 || rsm.sm_mmatch->endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930 return NULL;
7931
Bram Moolenaar6100d022016-10-02 16:51:57 +02007932 s = reg_getline_submatch(lnum) + rsm.sm_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933 if (s == NULL) /* anti-crash check, cannot happen? */
7934 break;
Bram Moolenaar6100d022016-10-02 16:51:57 +02007935 if (rsm.sm_mmatch->endpos[no].lnum == lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007936 {
7937 /* Within one line: take form start to end col. */
Bram Moolenaar6100d022016-10-02 16:51:57 +02007938 len = rsm.sm_mmatch->endpos[no].col
7939 - rsm.sm_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007940 if (round == 2)
Bram Moolenaarbbebc852005-07-18 21:47:53 +00007941 vim_strncpy(retval, s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007942 ++len;
7943 }
7944 else
7945 {
7946 /* Multiple lines: take start line from start col, middle
7947 * lines completely and end line up to end col. */
7948 len = (int)STRLEN(s);
7949 if (round == 2)
7950 {
7951 STRCPY(retval, s);
7952 retval[len] = '\n';
7953 }
7954 ++len;
7955 ++lnum;
Bram Moolenaar6100d022016-10-02 16:51:57 +02007956 while (lnum < rsm.sm_mmatch->endpos[no].lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007957 {
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007958 s = reg_getline_submatch(lnum++);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007959 if (round == 2)
7960 STRCPY(retval + len, s);
7961 len += (int)STRLEN(s);
7962 if (round == 2)
7963 retval[len] = '\n';
7964 ++len;
7965 }
7966 if (round == 2)
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007967 STRNCPY(retval + len, reg_getline_submatch(lnum),
Bram Moolenaar6100d022016-10-02 16:51:57 +02007968 rsm.sm_mmatch->endpos[no].col);
7969 len += rsm.sm_mmatch->endpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 if (round == 2)
7971 retval[len] = NUL;
7972 ++len;
7973 }
7974
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007975 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007976 {
7977 retval = lalloc((long_u)len, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007978 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979 return NULL;
7980 }
7981 }
7982 }
7983 else
7984 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02007985 s = rsm.sm_match->startp[no];
7986 if (s == NULL || rsm.sm_match->endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007987 retval = NULL;
7988 else
Bram Moolenaar6100d022016-10-02 16:51:57 +02007989 retval = vim_strnsave(s, (int)(rsm.sm_match->endp[no] - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990 }
7991
7992 return retval;
7993}
Bram Moolenaar41571762014-04-02 19:00:58 +02007994
7995/*
7996 * Used for the submatch() function with the optional non-zero argument: get
7997 * the list of strings from the n'th submatch in allocated memory with NULs
7998 * represented in NLs.
7999 * Returns a list of allocated strings. Returns NULL when not in a ":s"
8000 * command, for a non-existing submatch and for any error.
8001 */
8002 list_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01008003reg_submatch_list(int no)
Bram Moolenaar41571762014-04-02 19:00:58 +02008004{
8005 char_u *s;
8006 linenr_T slnum;
8007 linenr_T elnum;
8008 colnr_T scol;
8009 colnr_T ecol;
8010 int i;
8011 list_T *list;
8012 int error = FALSE;
8013
8014 if (!can_f_submatch || no < 0)
8015 return NULL;
8016
Bram Moolenaar6100d022016-10-02 16:51:57 +02008017 if (rsm.sm_match == NULL)
Bram Moolenaar41571762014-04-02 19:00:58 +02008018 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02008019 slnum = rsm.sm_mmatch->startpos[no].lnum;
8020 elnum = rsm.sm_mmatch->endpos[no].lnum;
Bram Moolenaar41571762014-04-02 19:00:58 +02008021 if (slnum < 0 || elnum < 0)
8022 return NULL;
8023
Bram Moolenaar6100d022016-10-02 16:51:57 +02008024 scol = rsm.sm_mmatch->startpos[no].col;
8025 ecol = rsm.sm_mmatch->endpos[no].col;
Bram Moolenaar41571762014-04-02 19:00:58 +02008026
8027 list = list_alloc();
8028 if (list == NULL)
8029 return NULL;
8030
8031 s = reg_getline_submatch(slnum) + scol;
8032 if (slnum == elnum)
8033 {
8034 if (list_append_string(list, s, ecol - scol) == FAIL)
8035 error = TRUE;
8036 }
8037 else
8038 {
8039 if (list_append_string(list, s, -1) == FAIL)
8040 error = TRUE;
8041 for (i = 1; i < elnum - slnum; i++)
8042 {
8043 s = reg_getline_submatch(slnum + i);
8044 if (list_append_string(list, s, -1) == FAIL)
8045 error = TRUE;
8046 }
8047 s = reg_getline_submatch(elnum);
8048 if (list_append_string(list, s, ecol) == FAIL)
8049 error = TRUE;
8050 }
8051 }
8052 else
8053 {
Bram Moolenaar6100d022016-10-02 16:51:57 +02008054 s = rsm.sm_match->startp[no];
8055 if (s == NULL || rsm.sm_match->endp[no] == NULL)
Bram Moolenaar41571762014-04-02 19:00:58 +02008056 return NULL;
8057 list = list_alloc();
8058 if (list == NULL)
8059 return NULL;
8060 if (list_append_string(list, s,
Bram Moolenaar6100d022016-10-02 16:51:57 +02008061 (int)(rsm.sm_match->endp[no] - s)) == FAIL)
Bram Moolenaar41571762014-04-02 19:00:58 +02008062 error = TRUE;
8063 }
8064
8065 if (error)
8066 {
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02008067 list_free(list);
Bram Moolenaar41571762014-04-02 19:00:58 +02008068 return NULL;
8069 }
8070 return list;
8071}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072#endif
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008073
8074static regengine_T bt_regengine =
8075{
8076 bt_regcomp,
Bram Moolenaar473de612013-06-08 18:19:48 +02008077 bt_regfree,
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008078 bt_regexec_nl,
Bram Moolenaarfda37292014-11-05 14:27:36 +01008079 bt_regexec_multi,
8080 (char_u *)""
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008081};
8082
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008083#include "regexp_nfa.c"
8084
8085static regengine_T nfa_regengine =
8086{
8087 nfa_regcomp,
Bram Moolenaar473de612013-06-08 18:19:48 +02008088 nfa_regfree,
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008089 nfa_regexec_nl,
Bram Moolenaarfda37292014-11-05 14:27:36 +01008090 nfa_regexec_multi,
8091 (char_u *)""
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008092};
8093
8094/* Which regexp engine to use? Needed for vim_regcomp().
8095 * Must match with 'regexpengine'. */
8096static int regexp_engine = 0;
Bram Moolenaarfda37292014-11-05 14:27:36 +01008097
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008098#ifdef DEBUG
8099static char_u regname[][30] = {
8100 "AUTOMATIC Regexp Engine",
Bram Moolenaar75eb1612013-05-29 18:45:11 +02008101 "BACKTRACKING Regexp Engine",
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008102 "NFA Regexp Engine"
8103 };
8104#endif
8105
8106/*
8107 * Compile a regular expression into internal code.
Bram Moolenaar473de612013-06-08 18:19:48 +02008108 * Returns the program in allocated memory.
8109 * Use vim_regfree() to free the memory.
8110 * Returns NULL for an error.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008111 */
8112 regprog_T *
Bram Moolenaar05540972016-01-30 20:31:25 +01008113vim_regcomp(char_u *expr_arg, int re_flags)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008114{
8115 regprog_T *prog = NULL;
8116 char_u *expr = expr_arg;
8117
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008118 regexp_engine = p_re;
8119
8120 /* Check for prefix "\%#=", that sets the regexp engine */
8121 if (STRNCMP(expr, "\\%#=", 4) == 0)
8122 {
8123 int newengine = expr[4] - '0';
8124
8125 if (newengine == AUTOMATIC_ENGINE
8126 || newengine == BACKTRACKING_ENGINE
8127 || newengine == NFA_ENGINE)
8128 {
8129 regexp_engine = expr[4] - '0';
8130 expr += 5;
8131#ifdef DEBUG
Bram Moolenaar6e132072014-05-13 16:46:32 +02008132 smsg((char_u *)"New regexp mode selected (%d): %s",
8133 regexp_engine, regname[newengine]);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008134#endif
8135 }
8136 else
8137 {
8138 EMSG(_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used "));
8139 regexp_engine = AUTOMATIC_ENGINE;
8140 }
8141 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008142 bt_regengine.expr = expr;
8143 nfa_regengine.expr = expr;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008144
8145 /*
8146 * First try the NFA engine, unless backtracking was requested.
8147 */
8148 if (regexp_engine != BACKTRACKING_ENGINE)
Bram Moolenaard23a8232018-02-10 18:45:26 +01008149 prog = nfa_regengine.regcomp(expr,
Bram Moolenaare0ad3652015-01-27 12:59:55 +01008150 re_flags + (regexp_engine == AUTOMATIC_ENGINE ? RE_AUTO : 0));
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008151 else
8152 prog = bt_regengine.regcomp(expr, re_flags);
8153
Bram Moolenaarfda37292014-11-05 14:27:36 +01008154 /* Check for error compiling regexp with initial engine. */
8155 if (prog == NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008156 {
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008157#ifdef BT_REGEXP_DEBUG_LOG
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008158 if (regexp_engine != BACKTRACKING_ENGINE) /* debugging log for NFA */
8159 {
8160 FILE *f;
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008161 f = fopen(BT_REGEXP_DEBUG_LOG_NAME, "a");
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008162 if (f)
8163 {
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008164 fprintf(f, "Syntax error in \"%s\"\n", expr);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008165 fclose(f);
8166 }
8167 else
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008168 EMSG2("(NFA) Could not open \"%s\" to write !!!",
Bram Moolenaard23a8232018-02-10 18:45:26 +01008169 BT_REGEXP_DEBUG_LOG_NAME);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008170 }
8171#endif
8172 /*
Bram Moolenaarfda37292014-11-05 14:27:36 +01008173 * If the NFA engine failed, try the backtracking engine.
Bram Moolenaare0ad3652015-01-27 12:59:55 +01008174 * The NFA engine also fails for patterns that it can't handle well
8175 * but are still valid patterns, thus a retry should work.
8176 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008177 if (regexp_engine == AUTOMATIC_ENGINE)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008178 {
Bram Moolenaare0ad3652015-01-27 12:59:55 +01008179 regexp_engine = BACKTRACKING_ENGINE;
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008180 prog = bt_regengine.regcomp(expr, re_flags);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008181 }
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008182 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008183
Bram Moolenaarfda37292014-11-05 14:27:36 +01008184 if (prog != NULL)
8185 {
8186 /* Store the info needed to call regcomp() again when the engine turns
8187 * out to be very slow when executing it. */
8188 prog->re_engine = regexp_engine;
8189 prog->re_flags = re_flags;
8190 }
8191
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008192 return prog;
8193}
8194
8195/*
Bram Moolenaar473de612013-06-08 18:19:48 +02008196 * Free a compiled regexp program, returned by vim_regcomp().
8197 */
8198 void
Bram Moolenaar05540972016-01-30 20:31:25 +01008199vim_regfree(regprog_T *prog)
Bram Moolenaar473de612013-06-08 18:19:48 +02008200{
8201 if (prog != NULL)
8202 prog->engine->regfree(prog);
8203}
8204
Bram Moolenaarfda37292014-11-05 14:27:36 +01008205#ifdef FEAT_EVAL
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01008206static void report_re_switch(char_u *pat);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008207
8208 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01008209report_re_switch(char_u *pat)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008210{
8211 if (p_verbose > 0)
8212 {
8213 verbose_enter();
8214 MSG_PUTS(_("Switching to backtracking RE engine for pattern: "));
8215 MSG_PUTS(pat);
8216 verbose_leave();
8217 }
8218}
8219#endif
8220
Bram Moolenaar473de612013-06-08 18:19:48 +02008221/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008222 * Match a regexp against a string.
8223 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008224 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008225 * Uses curbuf for line count and 'iskeyword'.
Bram Moolenaarfda37292014-11-05 14:27:36 +01008226 * When "nl" is TRUE consider a "\n" in "line" to be a line break.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008227 *
8228 * Return TRUE if there is a match, FALSE if not.
8229 */
Bram Moolenaarfda37292014-11-05 14:27:36 +01008230 static int
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02008231vim_regexec_string(
Bram Moolenaar05540972016-01-30 20:31:25 +01008232 regmatch_T *rmp,
8233 char_u *line, /* string to match against */
8234 colnr_T col, /* column to start looking for match */
8235 int nl)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008236{
Bram Moolenaar6100d022016-10-02 16:51:57 +02008237 int result;
8238 regexec_T rex_save;
8239 int rex_in_use_save = rex_in_use;
8240
8241 if (rex_in_use)
8242 /* Being called recursively, save the state. */
8243 rex_save = rex;
8244 rex_in_use = TRUE;
8245 rex.reg_startp = NULL;
8246 rex.reg_endp = NULL;
8247 rex.reg_startpos = NULL;
8248 rex.reg_endpos = NULL;
8249
8250 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008251
8252 /* NFA engine aborted because it's very slow. */
8253 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE
8254 && result == NFA_TOO_EXPENSIVE)
8255 {
8256 int save_p_re = p_re;
8257 int re_flags = rmp->regprog->re_flags;
8258 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern);
8259
8260 p_re = BACKTRACKING_ENGINE;
8261 vim_regfree(rmp->regprog);
8262 if (pat != NULL)
8263 {
8264#ifdef FEAT_EVAL
8265 report_re_switch(pat);
8266#endif
8267 rmp->regprog = vim_regcomp(pat, re_flags);
8268 if (rmp->regprog != NULL)
8269 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl);
8270 vim_free(pat);
8271 }
8272
8273 p_re = save_p_re;
8274 }
Bram Moolenaar6100d022016-10-02 16:51:57 +02008275
8276 rex_in_use = rex_in_use_save;
8277 if (rex_in_use)
8278 rex = rex_save;
8279
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008280 return result > 0;
Bram Moolenaarfda37292014-11-05 14:27:36 +01008281}
8282
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008283/*
8284 * Note: "*prog" may be freed and changed.
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008285 * Return TRUE if there is a match, FALSE if not.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008286 */
8287 int
Bram Moolenaar05540972016-01-30 20:31:25 +01008288vim_regexec_prog(
8289 regprog_T **prog,
8290 int ignore_case,
8291 char_u *line,
8292 colnr_T col)
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008293{
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02008294 int r;
8295 regmatch_T regmatch;
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008296
8297 regmatch.regprog = *prog;
8298 regmatch.rm_ic = ignore_case;
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02008299 r = vim_regexec_string(&regmatch, line, col, FALSE);
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008300 *prog = regmatch.regprog;
8301 return r;
8302}
8303
8304/*
8305 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008306 * Return TRUE if there is a match, FALSE if not.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008307 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008308 int
Bram Moolenaar05540972016-01-30 20:31:25 +01008309vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008310{
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02008311 return vim_regexec_string(rmp, line, col, FALSE);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008312}
8313
8314#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
8315 || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
8316/*
8317 * Like vim_regexec(), but consider a "\n" in "line" to be a line break.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008318 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008319 * Return TRUE if there is a match, FALSE if not.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008320 */
8321 int
Bram Moolenaar05540972016-01-30 20:31:25 +01008322vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008323{
Bram Moolenaar06f1ed22017-06-18 22:41:03 +02008324 return vim_regexec_string(rmp, line, col, TRUE);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008325}
8326#endif
8327
8328/*
8329 * Match a regexp against multiple lines.
8330 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008331 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008332 * Uses curbuf for line count and 'iskeyword'.
8333 *
8334 * Return zero if there is no match. Return number of lines contained in the
8335 * match otherwise.
8336 */
8337 long
Bram Moolenaar05540972016-01-30 20:31:25 +01008338vim_regexec_multi(
8339 regmmatch_T *rmp,
Bram Moolenaard23a8232018-02-10 18:45:26 +01008340 win_T *win, /* window in which to search or NULL */
8341 buf_T *buf, /* buffer in which to search */
8342 linenr_T lnum, /* nr of line to start looking for match */
8343 colnr_T col, /* column to start looking for match */
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02008344 proftime_T *tm, /* timeout limit or NULL */
8345 int *timed_out) /* flag is set when timeout limit reached */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008346{
Bram Moolenaar6100d022016-10-02 16:51:57 +02008347 int result;
8348 regexec_T rex_save;
8349 int rex_in_use_save = rex_in_use;
8350
8351 if (rex_in_use)
8352 /* Being called recursively, save the state. */
8353 rex_save = rex;
8354 rex_in_use = TRUE;
8355
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02008356 result = rmp->regprog->engine->regexec_multi(
8357 rmp, win, buf, lnum, col, tm, timed_out);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008358
8359 /* NFA engine aborted because it's very slow. */
8360 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE
8361 && result == NFA_TOO_EXPENSIVE)
8362 {
8363 int save_p_re = p_re;
8364 int re_flags = rmp->regprog->re_flags;
8365 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern);
8366
8367 p_re = BACKTRACKING_ENGINE;
8368 vim_regfree(rmp->regprog);
8369 if (pat != NULL)
8370 {
8371#ifdef FEAT_EVAL
8372 report_re_switch(pat);
8373#endif
8374 rmp->regprog = vim_regcomp(pat, re_flags);
8375 if (rmp->regprog != NULL)
8376 result = rmp->regprog->engine->regexec_multi(
Bram Moolenaarfbd0b0a2017-06-17 18:44:21 +02008377 rmp, win, buf, lnum, col, tm, timed_out);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008378 vim_free(pat);
8379 }
8380 p_re = save_p_re;
8381 }
8382
Bram Moolenaar6100d022016-10-02 16:51:57 +02008383 rex_in_use = rex_in_use_save;
8384 if (rex_in_use)
8385 rex = rex_save;
8386
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008387 return result <= 0 ? 0 : result;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008388}