blob: 961796be511bf23e63d965339c837c5d80ac7a86 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * Handling of regular expressions: vim_regcomp(), vim_regexec(), vim_regsub()
4 *
5 * NOTICE:
6 *
7 * This is NOT the original regular expression code as written by Henry
8 * Spencer. This code has been modified specifically for use with the VIM
9 * editor, and should not be used separately from Vim. If you want a good
10 * regular expression library, get the original code. The copyright notice
11 * that follows is from the original.
12 *
13 * END NOTICE
14 *
15 * Copyright (c) 1986 by University of Toronto.
16 * Written by Henry Spencer. Not derived from licensed software.
17 *
18 * Permission is granted to anyone to use this software for any
19 * purpose on any computer system, and to redistribute it freely,
20 * subject to the following restrictions:
21 *
22 * 1. The author is not responsible for the consequences of use of
23 * this software, no matter how awful, even if they arise
24 * from defects in it.
25 *
26 * 2. The origin of this software must not be misrepresented, either
27 * by explicit claim or by omission.
28 *
29 * 3. Altered versions must be plainly marked as such, and must not
30 * be misrepresented as being the original software.
31 *
32 * Beware that some of this code is subtly aware of the way operator
33 * precedence is structured in regular expressions. Serious changes in
34 * regular-expression syntax might require a total rethink.
35 *
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
258static int no_Magic __ARGS((int x));
259static int toggle_Magic __ARGS((int x));
260
261 static int
262no_Magic(x)
263 int x;
264{
265 if (is_Magic(x))
266 return un_Magic(x);
267 return x;
268}
269
270 static int
271toggle_Magic(x)
272 int x;
273{
274 if (is_Magic(x))
275 return un_Magic(x);
276 return Magic(x);
277}
278
279/*
280 * The first byte of the regexp internal "program" is actually this magic
281 * number; the start node begins in the second byte. It's used to catch the
282 * most severe mutilation of the program by the caller.
283 */
284
285#define REGMAGIC 0234
286
287/*
288 * Opcode notes:
289 *
290 * BRANCH The set of branches constituting a single choice are hooked
291 * together with their "next" pointers, since precedence prevents
292 * anything being concatenated to any individual branch. The
293 * "next" pointer of the last BRANCH in a choice points to the
294 * thing following the whole choice. This is also where the
295 * final "next" pointer of each individual branch points; each
296 * branch starts with the operand node of a BRANCH node.
297 *
298 * BACK Normal "next" pointers all implicitly point forward; BACK
299 * exists to make loop structures possible.
300 *
301 * STAR,PLUS '=', and complex '*' and '+', are implemented as circular
302 * BRANCH structures using BACK. Simple cases (one character
303 * per match) are implemented with STAR and PLUS for speed
304 * and to minimize recursive plunges.
305 *
306 * BRACE_LIMITS This is always followed by a BRACE_SIMPLE or BRACE_COMPLEX
307 * node, and defines the min and max limits to be used for that
308 * node.
309 *
310 * MOPEN,MCLOSE ...are numbered at compile time.
311 * ZOPEN,ZCLOSE ...ditto
312 */
313
314/*
315 * A node is one char of opcode followed by two chars of "next" pointer.
316 * "Next" pointers are stored as two 8-bit bytes, high order first. The
317 * value is a positive offset from the opcode of the node containing it.
318 * An operand, if any, simply follows the node. (Note that much of the
319 * code generation knows about this implicit relationship.)
320 *
321 * Using two bytes for the "next" pointer is vast overkill for most things,
322 * but allows patterns to get big without disasters.
323 */
324#define OP(p) ((int)*(p))
325#define NEXT(p) (((*((p) + 1) & 0377) << 8) + (*((p) + 2) & 0377))
326#define OPERAND(p) ((p) + 3)
327/* Obtain an operand that was stored as four bytes, MSB first. */
328#define OPERAND_MIN(p) (((long)(p)[3] << 24) + ((long)(p)[4] << 16) \
329 + ((long)(p)[5] << 8) + (long)(p)[6])
330/* Obtain a second operand stored as four bytes. */
331#define OPERAND_MAX(p) OPERAND_MIN((p) + 4)
332/* Obtain a second single-byte operand stored after a four bytes operand. */
333#define OPERAND_CMP(p) (p)[7]
334
335/*
336 * Utility definitions.
337 */
338#define UCHARAT(p) ((int)*(char_u *)(p))
339
340/* Used for an error (down from) vim_regcomp(): give the error message, set
341 * rc_did_emsg and return NULL */
Bram Moolenaar98692072006-02-04 00:57:42 +0000342#define EMSG_RET_NULL(m) return (EMSG(m), rc_did_emsg = TRUE, (void *)NULL)
Bram Moolenaar45eeb132005-06-06 21:59:07 +0000343#define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200344#define EMSG2_RET_NULL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, (void *)NULL)
345#define EMSG2_RET_FAIL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, FAIL)
346#define EMSG_ONE_RET_NULL EMSG2_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347
348#define MAX_LIMIT (32767L << 16L)
349
350static int re_multi_type __ARGS((int));
351static int cstrncmp __ARGS((char_u *s1, char_u *s2, int *n));
352static char_u *cstrchr __ARGS((char_u *, int));
353
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200354#ifdef BT_REGEXP_DUMP
355static void regdump __ARGS((char_u *, bt_regprog_T *));
356#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357#ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358static char_u *regprop __ARGS((char_u *));
359#endif
360
Bram Moolenaarfb031402014-09-09 17:18:49 +0200361static int re_mult_next __ARGS((char *what));
362
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200363static char_u e_missingbracket[] = N_("E769: Missing ] after %s[");
364static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%(");
365static char_u e_unmatchedp[] = N_("E54: Unmatched %s(");
366static char_u e_unmatchedpar[] = N_("E55: Unmatched %s)");
Bram Moolenaar01d89dd2013-06-03 19:41:06 +0200367#ifdef FEAT_SYN_HL
Bram Moolenaar5de820b2013-06-02 15:01:57 +0200368static char_u e_z_not_allowed[] = N_("E66: \\z( not allowed here");
369static char_u e_z1_not_allowed[] = N_("E67: \\z1 et al. not allowed here");
Bram Moolenaar01d89dd2013-06-03 19:41:06 +0200370#endif
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +0200371static char_u e_missing_sb[] = N_("E69: Missing ] after %s%%[");
Bram Moolenaar2976c022013-06-05 21:30:37 +0200372static char_u e_empty_sb[] = N_("E70: Empty %s%%[]");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373#define NOT_MULTI 0
374#define MULTI_ONE 1
375#define MULTI_MULT 2
376/*
377 * Return NOT_MULTI if c is not a "multi" operator.
378 * Return MULTI_ONE if c is a single "multi" operator.
379 * Return MULTI_MULT if c is a multi "multi" operator.
380 */
381 static int
382re_multi_type(c)
383 int c;
384{
385 if (c == Magic('@') || c == Magic('=') || c == Magic('?'))
386 return MULTI_ONE;
387 if (c == Magic('*') || c == Magic('+') || c == Magic('{'))
388 return MULTI_MULT;
389 return NOT_MULTI;
390}
391
392/*
393 * Flags to be passed up and down.
394 */
395#define HASWIDTH 0x1 /* Known never to match null string. */
396#define SIMPLE 0x2 /* Simple enough to be STAR/PLUS operand. */
397#define SPSTART 0x4 /* Starts with * or +. */
398#define HASNL 0x8 /* Contains some \n. */
399#define HASLOOKBH 0x10 /* Contains "\@<=" or "\@<!". */
400#define WORST 0 /* Worst case. */
401
402/*
403 * When regcode is set to this value, code is not emitted and size is computed
404 * instead.
405 */
406#define JUST_CALC_SIZE ((char_u *) -1)
407
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
429static int backslash_trans __ARGS((int c));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000430static int get_char_class __ARGS((char_u **pp));
431static int get_equi_class __ARGS((char_u **pp));
432static void reg_equi_class __ARGS((int c));
433static int get_coll_element __ARGS((char_u **pp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434static char_u *skip_anyof __ARGS((char_u *p));
435static void init_class_tab __ARGS((void));
436
437/*
438 * Translate '\x' to its control character, except "\n", which is Magic.
439 */
440 static int
441backslash_trans(c)
442 int c;
443{
444 switch (c)
445 {
446 case 'r': return CAR;
447 case 't': return TAB;
448 case 'e': return ESC;
449 case 'b': return BS;
450 }
451 return c;
452}
453
454/*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000455 * Check for a character class name "[:name:]". "pp" points to the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 * Returns one of the CLASS_ items. CLASS_NONE means that no item was
457 * recognized. Otherwise "pp" is advanced to after the item.
458 */
459 static int
Bram Moolenaardf177f62005-02-22 08:39:57 +0000460get_char_class(pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 char_u **pp;
462{
463 static const char *(class_names[]) =
464 {
465 "alnum:]",
466#define CLASS_ALNUM 0
467 "alpha:]",
468#define CLASS_ALPHA 1
469 "blank:]",
470#define CLASS_BLANK 2
471 "cntrl:]",
472#define CLASS_CNTRL 3
473 "digit:]",
474#define CLASS_DIGIT 4
475 "graph:]",
476#define CLASS_GRAPH 5
477 "lower:]",
478#define CLASS_LOWER 6
479 "print:]",
480#define CLASS_PRINT 7
481 "punct:]",
482#define CLASS_PUNCT 8
483 "space:]",
484#define CLASS_SPACE 9
485 "upper:]",
486#define CLASS_UPPER 10
487 "xdigit:]",
488#define CLASS_XDIGIT 11
489 "tab:]",
490#define CLASS_TAB 12
491 "return:]",
492#define CLASS_RETURN 13
493 "backspace:]",
494#define CLASS_BACKSPACE 14
495 "escape:]",
496#define CLASS_ESCAPE 15
497 };
498#define CLASS_NONE 99
499 int i;
500
501 if ((*pp)[1] == ':')
502 {
Bram Moolenaar78a15312009-05-15 19:33:18 +0000503 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0)
505 {
506 *pp += STRLEN(class_names[i]) + 2;
507 return i;
508 }
509 }
510 return CLASS_NONE;
511}
512
513/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 * Specific version of character class functions.
515 * Using a table to keep this fast.
516 */
517static short class_tab[256];
518
519#define RI_DIGIT 0x01
520#define RI_HEX 0x02
521#define RI_OCTAL 0x04
522#define RI_WORD 0x08
523#define RI_HEAD 0x10
524#define RI_ALPHA 0x20
525#define RI_LOWER 0x40
526#define RI_UPPER 0x80
527#define RI_WHITE 0x100
528
529 static void
530init_class_tab()
531{
532 int i;
533 static int done = FALSE;
534
535 if (done)
536 return;
537
538 for (i = 0; i < 256; ++i)
539 {
540 if (i >= '0' && i <= '7')
541 class_tab[i] = RI_DIGIT + RI_HEX + RI_OCTAL + RI_WORD;
542 else if (i >= '8' && i <= '9')
543 class_tab[i] = RI_DIGIT + RI_HEX + RI_WORD;
544 else if (i >= 'a' && i <= 'f')
545 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER;
546#ifdef EBCDIC
547 else if ((i >= 'g' && i <= 'i') || (i >= 'j' && i <= 'r')
548 || (i >= 's' && i <= 'z'))
549#else
550 else if (i >= 'g' && i <= 'z')
551#endif
552 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER;
553 else if (i >= 'A' && i <= 'F')
554 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER;
555#ifdef EBCDIC
556 else if ((i >= 'G' && i <= 'I') || ( i >= 'J' && i <= 'R')
557 || (i >= 'S' && i <= 'Z'))
558#else
559 else if (i >= 'G' && i <= 'Z')
560#endif
561 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER;
562 else if (i == '_')
563 class_tab[i] = RI_WORD + RI_HEAD;
564 else
565 class_tab[i] = 0;
566 }
567 class_tab[' '] |= RI_WHITE;
568 class_tab['\t'] |= RI_WHITE;
569 done = TRUE;
570}
571
572#ifdef FEAT_MBYTE
573# define ri_digit(c) (c < 0x100 && (class_tab[c] & RI_DIGIT))
574# define ri_hex(c) (c < 0x100 && (class_tab[c] & RI_HEX))
575# define ri_octal(c) (c < 0x100 && (class_tab[c] & RI_OCTAL))
576# define ri_word(c) (c < 0x100 && (class_tab[c] & RI_WORD))
577# define ri_head(c) (c < 0x100 && (class_tab[c] & RI_HEAD))
578# define ri_alpha(c) (c < 0x100 && (class_tab[c] & RI_ALPHA))
579# define ri_lower(c) (c < 0x100 && (class_tab[c] & RI_LOWER))
580# define ri_upper(c) (c < 0x100 && (class_tab[c] & RI_UPPER))
581# define ri_white(c) (c < 0x100 && (class_tab[c] & RI_WHITE))
582#else
583# define ri_digit(c) (class_tab[c] & RI_DIGIT)
584# define ri_hex(c) (class_tab[c] & RI_HEX)
585# define ri_octal(c) (class_tab[c] & RI_OCTAL)
586# define ri_word(c) (class_tab[c] & RI_WORD)
587# define ri_head(c) (class_tab[c] & RI_HEAD)
588# define ri_alpha(c) (class_tab[c] & RI_ALPHA)
589# define ri_lower(c) (class_tab[c] & RI_LOWER)
590# define ri_upper(c) (class_tab[c] & RI_UPPER)
591# define ri_white(c) (class_tab[c] & RI_WHITE)
592#endif
593
594/* flags for regflags */
595#define RF_ICASE 1 /* ignore case */
596#define RF_NOICASE 2 /* don't ignore case */
597#define RF_HASNL 4 /* can match a NL */
598#define RF_ICOMBINE 8 /* ignore combining characters */
599#define RF_LOOKBH 16 /* uses "\@<=" or "\@<!" */
600
601/*
602 * Global work variables for vim_regcomp().
603 */
604
605static char_u *regparse; /* Input-scan pointer. */
606static int prevchr_len; /* byte length of previous char */
607static int num_complex_braces; /* Complex \{...} count */
608static int regnpar; /* () count. */
609#ifdef FEAT_SYN_HL
610static int regnzpar; /* \z() count. */
611static int re_has_z; /* \z item detected */
612#endif
613static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */
614static long regsize; /* Code size. */
Bram Moolenaard3005802009-11-25 17:21:32 +0000615static int reg_toolong; /* TRUE when offset out of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */
617static unsigned regflags; /* RF_ flags for prog */
618static long brace_min[10]; /* Minimums for complex brace repeats */
619static long brace_max[10]; /* Maximums for complex brace repeats */
620static int brace_count[10]; /* Current counts for complex brace repeats */
621#if defined(FEAT_SYN_HL) || defined(PROTO)
622static int had_eol; /* TRUE when EOL found by vim_regcomp() */
623#endif
624static int one_exactly = FALSE; /* only do one char for EXACTLY */
625
626static int reg_magic; /* magicness of the pattern: */
627#define MAGIC_NONE 1 /* "\V" very unmagic */
628#define MAGIC_OFF 2 /* "\M" or 'magic' off */
629#define MAGIC_ON 3 /* "\m" or 'magic' */
630#define MAGIC_ALL 4 /* "\v" very magic */
631
632static int reg_string; /* matching with a string instead of a buffer
633 line */
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000634static int reg_strict; /* "[abc" is illegal */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635
636/*
637 * META contains all characters that may be magic, except '^' and '$'.
638 */
639
640#ifdef EBCDIC
641static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~";
642#else
643/* META[] is used often enough to justify turning it into a table. */
644static char_u META_flags[] = {
645 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
646 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
647/* % & ( ) * + . */
648 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0,
649/* 1 2 3 4 5 6 7 8 9 < = > ? */
650 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1,
651/* @ A C D F H I K L M O */
652 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1,
653/* P S U V W X Z [ _ */
654 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1,
655/* a c d f h i k l m n o */
656 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1,
657/* p s u v w x z { | ~ */
658 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1
659};
660#endif
661
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200662static int curchr; /* currently parsed character */
663/* Previous character. Note: prevchr is sometimes -1 when we are not at the
664 * start, eg in /[ ^I]^ the pattern was never found even if it existed,
665 * because ^ was taken to be magic -- webb */
666static int prevchr;
667static int prevprevchr; /* previous-previous character */
668static int nextchr; /* used for ungetchr() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669
670/* arguments for reg() */
671#define REG_NOPAREN 0 /* toplevel reg() */
672#define REG_PAREN 1 /* \(\) */
673#define REG_ZPAREN 2 /* \z(\) */
674#define REG_NPAREN 3 /* \%(\) */
675
Bram Moolenaar3737fc12013-06-01 14:42:56 +0200676typedef struct
677{
678 char_u *regparse;
679 int prevchr_len;
680 int curchr;
681 int prevchr;
682 int prevprevchr;
683 int nextchr;
684 int at_start;
685 int prev_at_start;
686 int regnpar;
687} parse_state_T;
688
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689/*
690 * Forward declarations for vim_regcomp()'s friends.
691 */
692static void initchr __ARGS((char_u *));
Bram Moolenaar3737fc12013-06-01 14:42:56 +0200693static void save_parse_state __ARGS((parse_state_T *ps));
694static void restore_parse_state __ARGS((parse_state_T *ps));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695static int getchr __ARGS((void));
696static void skipchr_keepstart __ARGS((void));
697static int peekchr __ARGS((void));
698static void skipchr __ARGS((void));
699static void ungetchr __ARGS((void));
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000700static int gethexchrs __ARGS((int maxinputlen));
701static int getoctchrs __ARGS((void));
702static int getdecchrs __ARGS((void));
703static int coll_get_char __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704static void regcomp_start __ARGS((char_u *expr, int flags));
705static char_u *reg __ARGS((int, int *));
706static char_u *regbranch __ARGS((int *flagp));
707static char_u *regconcat __ARGS((int *flagp));
708static char_u *regpiece __ARGS((int *));
709static char_u *regatom __ARGS((int *));
710static char_u *regnode __ARGS((int));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000711#ifdef FEAT_MBYTE
712static int use_multibytecode __ARGS((int c));
713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714static int prog_magic_wrong __ARGS((void));
715static char_u *regnext __ARGS((char_u *));
716static void regc __ARGS((int b));
717#ifdef FEAT_MBYTE
718static void regmbc __ARGS((int c));
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200719# define REGMBC(x) regmbc(x);
720# define CASEMBC(x) case x:
Bram Moolenaardf177f62005-02-22 08:39:57 +0000721#else
722# define regmbc(c) regc(c)
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200723# define REGMBC(x)
724# define CASEMBC(x)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725#endif
726static void reginsert __ARGS((int, char_u *));
Bram Moolenaar75eb1612013-05-29 18:45:11 +0200727static void reginsert_nr __ARGS((int op, long val, char_u *opnd));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728static void reginsert_limits __ARGS((int, long, long, char_u *));
729static char_u *re_put_long __ARGS((char_u *pr, long_u val));
730static int read_limits __ARGS((long *, long *));
731static void regtail __ARGS((char_u *, char_u *));
732static void regoptail __ARGS((char_u *, char_u *));
733
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200734static regengine_T bt_regengine;
735static regengine_T nfa_regengine;
736
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737/*
738 * Return TRUE if compiled regular expression "prog" can match a line break.
739 */
740 int
741re_multiline(prog)
742 regprog_T *prog;
743{
744 return (prog->regflags & RF_HASNL);
745}
746
747/*
748 * Return TRUE if compiled regular expression "prog" looks before the start
749 * position (pattern contains "\@<=" or "\@<!").
750 */
751 int
752re_lookbehind(prog)
753 regprog_T *prog;
754{
755 return (prog->regflags & RF_LOOKBH);
756}
757
758/*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000759 * Check for an equivalence class name "[=a=]". "pp" points to the '['.
760 * Returns a character representing the class. Zero means that no item was
761 * recognized. Otherwise "pp" is advanced to after the item.
762 */
763 static int
764get_equi_class(pp)
765 char_u **pp;
766{
767 int c;
768 int l = 1;
769 char_u *p = *pp;
770
771 if (p[1] == '=')
772 {
773#ifdef FEAT_MBYTE
774 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000775 l = (*mb_ptr2len)(p + 2);
Bram Moolenaardf177f62005-02-22 08:39:57 +0000776#endif
777 if (p[l + 2] == '=' && p[l + 3] == ']')
778 {
779#ifdef FEAT_MBYTE
780 if (has_mbyte)
781 c = mb_ptr2char(p + 2);
782 else
783#endif
784 c = p[2];
785 *pp += l + 4;
786 return c;
787 }
788 }
789 return 0;
790}
791
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200792#ifdef EBCDIC
793/*
794 * Table for equivalence class "c". (IBM-1047)
795 */
796char *EQUIVAL_CLASS_C[16] = {
797 "A\x62\x63\x64\x65\x66\x67",
798 "C\x68",
799 "E\x71\x72\x73\x74",
800 "I\x75\x76\x77\x78",
801 "N\x69",
802 "O\xEB\xEC\xED\xEE\xEF",
803 "U\xFB\xFC\xFD\xFE",
804 "Y\xBA",
805 "a\x42\x43\x44\x45\x46\x47",
806 "c\x48",
807 "e\x51\x52\x53\x54",
808 "i\x55\x56\x57\x58",
809 "n\x49",
810 "o\xCB\xCC\xCD\xCE\xCF",
811 "u\xDB\xDC\xDD\xDE",
812 "y\x8D\xDF",
813};
814#endif
815
Bram Moolenaardf177f62005-02-22 08:39:57 +0000816/*
817 * Produce the bytes for equivalence class "c".
818 * Currently only handles latin1, latin9 and utf-8.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200819 * NOTE: When changing this function, also change nfa_emit_equi_class()
Bram Moolenaardf177f62005-02-22 08:39:57 +0000820 */
821 static void
822reg_equi_class(c)
823 int c;
824{
825#ifdef FEAT_MBYTE
826 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0
Bram Moolenaar78622822005-08-23 21:00:13 +0000827 || STRCMP(p_enc, "iso-8859-15") == 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000828#endif
829 {
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200830#ifdef EBCDIC
831 int i;
832
833 /* This might be slower than switch/case below. */
834 for (i = 0; i < 16; i++)
835 {
836 if (vim_strchr(EQUIVAL_CLASS_C[i], c) != NULL)
837 {
838 char *p = EQUIVAL_CLASS_C[i];
839
840 while (*p != 0)
841 regmbc(*p++);
842 return;
843 }
844 }
845#else
Bram Moolenaardf177f62005-02-22 08:39:57 +0000846 switch (c)
847 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000848 case 'A': case '\300': case '\301': case '\302':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200849 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd)
850 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000851 case '\303': case '\304': case '\305':
852 regmbc('A'); regmbc('\300'); regmbc('\301');
853 regmbc('\302'); regmbc('\303'); regmbc('\304');
854 regmbc('\305');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200855 REGMBC(0x100) REGMBC(0x102) REGMBC(0x104)
856 REGMBC(0x1cd) REGMBC(0x1de) REGMBC(0x1e0)
857 REGMBC(0x1ea2)
858 return;
859 case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06)
860 regmbc('B'); REGMBC(0x1e02) REGMBC(0x1e06)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000861 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000862 case 'C': case '\307':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200863 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000864 regmbc('C'); regmbc('\307');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200865 REGMBC(0x106) REGMBC(0x108) REGMBC(0x10a)
866 REGMBC(0x10c)
867 return;
868 case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a)
869 CASEMBC(0x1e0e) CASEMBC(0x1e10)
870 regmbc('D'); REGMBC(0x10e) REGMBC(0x110)
871 REGMBC(0x1e0a) REGMBC(0x1e0e) REGMBC(0x1e10)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000872 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000873 case 'E': case '\310': case '\311': case '\312': case '\313':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200874 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118)
875 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000876 regmbc('E'); regmbc('\310'); regmbc('\311');
877 regmbc('\312'); regmbc('\313');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200878 REGMBC(0x112) REGMBC(0x114) REGMBC(0x116)
879 REGMBC(0x118) REGMBC(0x11a) REGMBC(0x1eba)
880 REGMBC(0x1ebc)
881 return;
882 case 'F': CASEMBC(0x1e1e)
883 regmbc('F'); REGMBC(0x1e1e)
884 return;
885 case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120)
886 CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4)
887 CASEMBC(0x1e20)
888 regmbc('G'); REGMBC(0x11c) REGMBC(0x11e)
889 REGMBC(0x120) REGMBC(0x122) REGMBC(0x1e4)
890 REGMBC(0x1e6) REGMBC(0x1f4) REGMBC(0x1e20)
891 return;
892 case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22)
893 CASEMBC(0x1e26) CASEMBC(0x1e28)
894 regmbc('H'); REGMBC(0x124) REGMBC(0x126)
895 REGMBC(0x1e22) REGMBC(0x1e26) REGMBC(0x1e28)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000896 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000897 case 'I': case '\314': case '\315': case '\316': case '\317':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200898 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e)
899 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000900 regmbc('I'); regmbc('\314'); regmbc('\315');
901 regmbc('\316'); regmbc('\317');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200902 REGMBC(0x128) REGMBC(0x12a) REGMBC(0x12c)
903 REGMBC(0x12e) REGMBC(0x130) REGMBC(0x1cf)
904 REGMBC(0x1ec8)
905 return;
906 case 'J': CASEMBC(0x134)
907 regmbc('J'); REGMBC(0x134)
908 return;
909 case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30)
910 CASEMBC(0x1e34)
911 regmbc('K'); REGMBC(0x136) REGMBC(0x1e8)
912 REGMBC(0x1e30) REGMBC(0x1e34)
913 return;
914 case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d)
915 CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a)
916 regmbc('L'); REGMBC(0x139) REGMBC(0x13b)
917 REGMBC(0x13d) REGMBC(0x13f) REGMBC(0x141)
918 REGMBC(0x1e3a)
919 return;
920 case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40)
921 regmbc('M'); REGMBC(0x1e3e) REGMBC(0x1e40)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000922 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000923 case 'N': case '\321':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200924 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44)
925 CASEMBC(0x1e48)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000926 regmbc('N'); regmbc('\321');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200927 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147)
928 REGMBC(0x1e44) REGMBC(0x1e48)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000929 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000930 case 'O': case '\322': case '\323': case '\324': case '\325':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200931 case '\326': case '\330':
932 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0)
933 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000934 regmbc('O'); regmbc('\322'); regmbc('\323');
935 regmbc('\324'); regmbc('\325'); regmbc('\326');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200936 regmbc('\330');
937 REGMBC(0x14c) REGMBC(0x14e) REGMBC(0x150)
938 REGMBC(0x1a0) REGMBC(0x1d1) REGMBC(0x1ea)
939 REGMBC(0x1ec) REGMBC(0x1ece)
940 return;
941 case 'P': case 0x1e54: case 0x1e56:
942 regmbc('P'); REGMBC(0x1e54) REGMBC(0x1e56)
943 return;
944 case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158)
945 CASEMBC(0x1e58) CASEMBC(0x1e5e)
946 regmbc('R'); REGMBC(0x154) REGMBC(0x156) REGMBC(0x158)
947 REGMBC(0x1e58) REGMBC(0x1e5e)
948 return;
949 case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e)
950 CASEMBC(0x160) CASEMBC(0x1e60)
951 regmbc('S'); REGMBC(0x15a) REGMBC(0x15c)
952 REGMBC(0x15e) REGMBC(0x160) REGMBC(0x1e60)
953 return;
954 case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166)
955 CASEMBC(0x1e6a) CASEMBC(0x1e6e)
956 regmbc('T'); REGMBC(0x162) REGMBC(0x164)
957 REGMBC(0x166) REGMBC(0x1e6a) REGMBC(0x1e6e)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000958 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000959 case 'U': case '\331': case '\332': case '\333': case '\334':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200960 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e)
961 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3)
962 CASEMBC(0x1ee6)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000963 regmbc('U'); regmbc('\331'); regmbc('\332');
964 regmbc('\333'); regmbc('\334');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200965 REGMBC(0x168) REGMBC(0x16a) REGMBC(0x16c)
966 REGMBC(0x16e) REGMBC(0x170) REGMBC(0x172)
967 REGMBC(0x1af) REGMBC(0x1d3) REGMBC(0x1ee6)
968 return;
969 case 'V': CASEMBC(0x1e7c)
970 regmbc('V'); REGMBC(0x1e7c)
971 return;
972 case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82)
973 CASEMBC(0x1e84) CASEMBC(0x1e86)
974 regmbc('W'); REGMBC(0x174) REGMBC(0x1e80)
975 REGMBC(0x1e82) REGMBC(0x1e84) REGMBC(0x1e86)
976 return;
977 case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c)
978 regmbc('X'); REGMBC(0x1e8a) REGMBC(0x1e8c)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000979 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000980 case 'Y': case '\335':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200981 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2)
982 CASEMBC(0x1ef6) CASEMBC(0x1ef8)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000983 regmbc('Y'); regmbc('\335');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200984 REGMBC(0x176) REGMBC(0x178) REGMBC(0x1e8e)
985 REGMBC(0x1ef2) REGMBC(0x1ef6) REGMBC(0x1ef8)
986 return;
987 case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d)
988 CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94)
989 regmbc('Z'); REGMBC(0x179) REGMBC(0x17b)
990 REGMBC(0x17d) REGMBC(0x1b5) REGMBC(0x1e90)
991 REGMBC(0x1e94)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000992 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000993 case 'a': case '\340': case '\341': case '\342':
994 case '\343': case '\344': case '\345':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200995 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce)
996 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000997 regmbc('a'); regmbc('\340'); regmbc('\341');
998 regmbc('\342'); regmbc('\343'); regmbc('\344');
999 regmbc('\345');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001000 REGMBC(0x101) REGMBC(0x103) REGMBC(0x105)
1001 REGMBC(0x1ce) REGMBC(0x1df) REGMBC(0x1e1)
1002 REGMBC(0x1ea3)
1003 return;
1004 case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07)
1005 regmbc('b'); REGMBC(0x1e03) REGMBC(0x1e07)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001006 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001007 case 'c': case '\347':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001008 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001009 regmbc('c'); regmbc('\347');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001010 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b)
1011 REGMBC(0x10d)
1012 return;
1013 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1d0b)
1014 CASEMBC(0x1e11)
1015 regmbc('d'); REGMBC(0x10f) REGMBC(0x111)
1016 REGMBC(0x1e0b) REGMBC(0x01e0f) REGMBC(0x1e11)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001017 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001018 case 'e': case '\350': case '\351': case '\352': case '\353':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001019 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119)
1020 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001021 regmbc('e'); regmbc('\350'); regmbc('\351');
1022 regmbc('\352'); regmbc('\353');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001023 REGMBC(0x113) REGMBC(0x115) REGMBC(0x117)
1024 REGMBC(0x119) REGMBC(0x11b) REGMBC(0x1ebb)
1025 REGMBC(0x1ebd)
1026 return;
1027 case 'f': CASEMBC(0x1e1f)
1028 regmbc('f'); REGMBC(0x1e1f)
1029 return;
1030 case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121)
1031 CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5)
1032 CASEMBC(0x1e21)
1033 regmbc('g'); REGMBC(0x11d) REGMBC(0x11f)
1034 REGMBC(0x121) REGMBC(0x123) REGMBC(0x1e5)
1035 REGMBC(0x1e7) REGMBC(0x1f5) REGMBC(0x1e21)
1036 return;
1037 case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23)
1038 CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96)
1039 regmbc('h'); REGMBC(0x125) REGMBC(0x127)
1040 REGMBC(0x1e23) REGMBC(0x1e27) REGMBC(0x1e29)
1041 REGMBC(0x1e96)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001042 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001043 case 'i': case '\354': case '\355': case '\356': case '\357':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001044 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f)
1045 CASEMBC(0x1d0) CASEMBC(0x1ec9)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001046 regmbc('i'); regmbc('\354'); regmbc('\355');
1047 regmbc('\356'); regmbc('\357');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001048 REGMBC(0x129) REGMBC(0x12b) REGMBC(0x12d)
1049 REGMBC(0x12f) REGMBC(0x1d0) REGMBC(0x1ec9)
1050 return;
1051 case 'j': CASEMBC(0x135) CASEMBC(0x1f0)
1052 regmbc('j'); REGMBC(0x135) REGMBC(0x1f0)
1053 return;
1054 case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31)
1055 CASEMBC(0x1e35)
1056 regmbc('k'); REGMBC(0x137) REGMBC(0x1e9)
1057 REGMBC(0x1e31) REGMBC(0x1e35)
1058 return;
1059 case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e)
1060 CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b)
1061 regmbc('l'); REGMBC(0x13a) REGMBC(0x13c)
1062 REGMBC(0x13e) REGMBC(0x140) REGMBC(0x142)
1063 REGMBC(0x1e3b)
1064 return;
1065 case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41)
1066 regmbc('m'); REGMBC(0x1e3f) REGMBC(0x1e41)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001067 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001068 case 'n': case '\361':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001069 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149)
1070 CASEMBC(0x1e45) CASEMBC(0x1e49)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001071 regmbc('n'); regmbc('\361');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001072 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148)
1073 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001074 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001075 case 'o': case '\362': case '\363': case '\364': case '\365':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001076 case '\366': case '\370':
1077 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1)
1078 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001079 regmbc('o'); regmbc('\362'); regmbc('\363');
1080 regmbc('\364'); regmbc('\365'); regmbc('\366');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001081 regmbc('\370');
1082 REGMBC(0x14d) REGMBC(0x14f) REGMBC(0x151)
1083 REGMBC(0x1a1) REGMBC(0x1d2) REGMBC(0x1eb)
1084 REGMBC(0x1ed) REGMBC(0x1ecf)
1085 return;
1086 case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57)
1087 regmbc('p'); REGMBC(0x1e55) REGMBC(0x1e57)
1088 return;
1089 case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159)
1090 CASEMBC(0x1e59) CASEMBC(0x1e5f)
1091 regmbc('r'); REGMBC(0x155) REGMBC(0x157) REGMBC(0x159)
1092 REGMBC(0x1e59) REGMBC(0x1e5f)
1093 return;
1094 case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f)
1095 CASEMBC(0x161) CASEMBC(0x1e61)
1096 regmbc('s'); REGMBC(0x15b) REGMBC(0x15d)
1097 REGMBC(0x15f) REGMBC(0x161) REGMBC(0x1e61)
1098 return;
1099 case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167)
1100 CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97)
1101 regmbc('t'); REGMBC(0x163) REGMBC(0x165) REGMBC(0x167)
1102 REGMBC(0x1e6b) REGMBC(0x1e6f) REGMBC(0x1e97)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001103 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001104 case 'u': case '\371': case '\372': case '\373': case '\374':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001105 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f)
1106 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4)
1107 CASEMBC(0x1ee7)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001108 regmbc('u'); regmbc('\371'); regmbc('\372');
1109 regmbc('\373'); regmbc('\374');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001110 REGMBC(0x169) REGMBC(0x16b) REGMBC(0x16d)
1111 REGMBC(0x16f) REGMBC(0x171) REGMBC(0x173)
1112 REGMBC(0x1b0) REGMBC(0x1d4) REGMBC(0x1ee7)
1113 return;
1114 case 'v': CASEMBC(0x1e7d)
1115 regmbc('v'); REGMBC(0x1e7d)
1116 return;
1117 case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83)
1118 CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98)
1119 regmbc('w'); REGMBC(0x175) REGMBC(0x1e81)
1120 REGMBC(0x1e83) REGMBC(0x1e85) REGMBC(0x1e87)
1121 REGMBC(0x1e98)
1122 return;
1123 case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d)
1124 regmbc('x'); REGMBC(0x1e8b) REGMBC(0x1e8d)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001125 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001126 case 'y': case '\375': case '\377':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001127 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99)
1128 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001129 regmbc('y'); regmbc('\375'); regmbc('\377');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001130 REGMBC(0x177) REGMBC(0x1e8f) REGMBC(0x1e99)
1131 REGMBC(0x1ef3) REGMBC(0x1ef7) REGMBC(0x1ef9)
1132 return;
1133 case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e)
1134 CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95)
1135 regmbc('z'); REGMBC(0x17a) REGMBC(0x17c)
1136 REGMBC(0x17e) REGMBC(0x1b6) REGMBC(0x1e91)
1137 REGMBC(0x1e95)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001138 return;
1139 }
Bram Moolenaar2c704a72010-06-03 21:17:25 +02001140#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001141 }
1142 regmbc(c);
1143}
1144
1145/*
1146 * Check for a collating element "[.a.]". "pp" points to the '['.
1147 * Returns a character. Zero means that no item was recognized. Otherwise
1148 * "pp" is advanced to after the item.
1149 * Currently only single characters are recognized!
1150 */
1151 static int
1152get_coll_element(pp)
1153 char_u **pp;
1154{
1155 int c;
1156 int l = 1;
1157 char_u *p = *pp;
1158
1159 if (p[1] == '.')
1160 {
1161#ifdef FEAT_MBYTE
1162 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001163 l = (*mb_ptr2len)(p + 2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00001164#endif
1165 if (p[l + 2] == '.' && p[l + 3] == ']')
1166 {
1167#ifdef FEAT_MBYTE
1168 if (has_mbyte)
1169 c = mb_ptr2char(p + 2);
1170 else
1171#endif
1172 c = p[2];
1173 *pp += l + 4;
1174 return c;
1175 }
1176 }
1177 return 0;
1178}
1179
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001180static void get_cpo_flags __ARGS((void));
1181static int reg_cpo_lit; /* 'cpoptions' contains 'l' flag */
1182static int reg_cpo_bsl; /* 'cpoptions' contains '\' flag */
1183
1184 static void
1185get_cpo_flags()
1186{
1187 reg_cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL;
1188 reg_cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL;
1189}
Bram Moolenaardf177f62005-02-22 08:39:57 +00001190
1191/*
1192 * Skip over a "[]" range.
1193 * "p" must point to the character after the '['.
1194 * The returned pointer is on the matching ']', or the terminating NUL.
1195 */
1196 static char_u *
1197skip_anyof(p)
1198 char_u *p;
1199{
Bram Moolenaardf177f62005-02-22 08:39:57 +00001200#ifdef FEAT_MBYTE
1201 int l;
1202#endif
1203
Bram Moolenaardf177f62005-02-22 08:39:57 +00001204 if (*p == '^') /* Complement of range. */
1205 ++p;
1206 if (*p == ']' || *p == '-')
1207 ++p;
1208 while (*p != NUL && *p != ']')
1209 {
1210#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001211 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001212 p += l;
1213 else
1214#endif
1215 if (*p == '-')
1216 {
1217 ++p;
1218 if (*p != ']' && *p != NUL)
1219 mb_ptr_adv(p);
1220 }
1221 else if (*p == '\\'
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001222 && !reg_cpo_bsl
Bram Moolenaardf177f62005-02-22 08:39:57 +00001223 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001224 || (!reg_cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL)))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001225 p += 2;
1226 else if (*p == '[')
1227 {
1228 if (get_char_class(&p) == CLASS_NONE
1229 && get_equi_class(&p) == 0
1230 && get_coll_element(&p) == 0)
1231 ++p; /* It was not a class name */
1232 }
1233 else
1234 ++p;
1235 }
1236
1237 return p;
1238}
1239
1240/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 * Skip past regular expression.
Bram Moolenaar748bf032005-02-02 23:04:36 +00001242 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 * Take care of characters with a backslash in front of it.
1244 * Skip strings inside [ and ].
1245 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the
1246 * expression and change "\?" to "?". If "*newp" is not NULL the expression
1247 * is changed in-place.
1248 */
1249 char_u *
1250skip_regexp(startp, dirc, magic, newp)
1251 char_u *startp;
1252 int dirc;
1253 int magic;
1254 char_u **newp;
1255{
1256 int mymagic;
1257 char_u *p = startp;
1258
1259 if (magic)
1260 mymagic = MAGIC_ON;
1261 else
1262 mymagic = MAGIC_OFF;
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001263 get_cpo_flags();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001265 for (; p[0] != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 {
1267 if (p[0] == dirc) /* found end of regexp */
1268 break;
1269 if ((p[0] == '[' && mymagic >= MAGIC_ON)
1270 || (p[0] == '\\' && p[1] == '[' && mymagic <= MAGIC_OFF))
1271 {
1272 p = skip_anyof(p + 1);
1273 if (p[0] == NUL)
1274 break;
1275 }
1276 else if (p[0] == '\\' && p[1] != NUL)
1277 {
1278 if (dirc == '?' && newp != NULL && p[1] == '?')
1279 {
1280 /* change "\?" to "?", make a copy first. */
1281 if (*newp == NULL)
1282 {
1283 *newp = vim_strsave(startp);
1284 if (*newp != NULL)
1285 p = *newp + (p - startp);
1286 }
1287 if (*newp != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00001288 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 else
1290 ++p;
1291 }
1292 else
1293 ++p; /* skip next character */
1294 if (*p == 'v')
1295 mymagic = MAGIC_ALL;
1296 else if (*p == 'V')
1297 mymagic = MAGIC_NONE;
1298 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001299 }
1300 return p;
1301}
1302
Bram Moolenaar473de612013-06-08 18:19:48 +02001303static regprog_T *bt_regcomp __ARGS((char_u *expr, int re_flags));
1304static void bt_regfree __ARGS((regprog_T *prog));
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001305
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001307 * bt_regcomp() - compile a regular expression into internal code for the
1308 * traditional back track matcher.
Bram Moolenaar86b68352004-12-27 21:59:20 +00001309 * Returns the program in allocated space. Returns NULL for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 *
1311 * We can't allocate space until we know how big the compiled form will be,
1312 * but we can't compile it (and thus know how big it is) until we've got a
1313 * place to put the code. So we cheat: we compile it twice, once with code
1314 * generation turned off and size counting turned on, and once "for real".
1315 * This also means that we don't allocate space until we are sure that the
1316 * thing really will compile successfully, and we never have to move the
1317 * code and thus invalidate pointers into it. (Note that it has to be in
1318 * one piece because vim_free() must be able to free it all.)
1319 *
1320 * Whether upper/lower case is to be ignored is decided when executing the
1321 * program, it does not matter here.
1322 *
1323 * Beware that the optimization-preparation code in here knows about some
1324 * of the structure of the compiled regexp.
1325 * "re_flags": RE_MAGIC and/or RE_STRING.
1326 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001327 static regprog_T *
1328bt_regcomp(expr, re_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 char_u *expr;
1330 int re_flags;
1331{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001332 bt_regprog_T *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 char_u *scan;
1334 char_u *longest;
1335 int len;
1336 int flags;
1337
1338 if (expr == NULL)
1339 EMSG_RET_NULL(_(e_null));
1340
1341 init_class_tab();
1342
1343 /*
1344 * First pass: determine size, legality.
1345 */
1346 regcomp_start(expr, re_flags);
1347 regcode = JUST_CALC_SIZE;
1348 regc(REGMAGIC);
1349 if (reg(REG_NOPAREN, &flags) == NULL)
1350 return NULL;
1351
1352 /* Small enough for pointer-storage convention? */
1353#ifdef SMALL_MALLOC /* 16 bit storage allocation */
1354 if (regsize >= 65536L - 256L)
1355 EMSG_RET_NULL(_("E339: Pattern too long"));
1356#endif
1357
1358 /* Allocate space. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001359 r = (bt_regprog_T *)lalloc(sizeof(bt_regprog_T) + regsize, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 if (r == NULL)
1361 return NULL;
1362
1363 /*
1364 * Second pass: emit code.
1365 */
1366 regcomp_start(expr, re_flags);
1367 regcode = r->program;
1368 regc(REGMAGIC);
Bram Moolenaard3005802009-11-25 17:21:32 +00001369 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 {
1371 vim_free(r);
Bram Moolenaard3005802009-11-25 17:21:32 +00001372 if (reg_toolong)
1373 EMSG_RET_NULL(_("E339: Pattern too long"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374 return NULL;
1375 }
1376
1377 /* Dig out information for optimizations. */
1378 r->regstart = NUL; /* Worst-case defaults. */
1379 r->reganch = 0;
1380 r->regmust = NULL;
1381 r->regmlen = 0;
1382 r->regflags = regflags;
1383 if (flags & HASNL)
1384 r->regflags |= RF_HASNL;
1385 if (flags & HASLOOKBH)
1386 r->regflags |= RF_LOOKBH;
1387#ifdef FEAT_SYN_HL
1388 /* Remember whether this pattern has any \z specials in it. */
1389 r->reghasz = re_has_z;
1390#endif
1391 scan = r->program + 1; /* First BRANCH. */
1392 if (OP(regnext(scan)) == END) /* Only one top-level choice. */
1393 {
1394 scan = OPERAND(scan);
1395
1396 /* Starting-point info. */
1397 if (OP(scan) == BOL || OP(scan) == RE_BOF)
1398 {
1399 r->reganch++;
1400 scan = regnext(scan);
1401 }
1402
1403 if (OP(scan) == EXACTLY)
1404 {
1405#ifdef FEAT_MBYTE
1406 if (has_mbyte)
1407 r->regstart = (*mb_ptr2char)(OPERAND(scan));
1408 else
1409#endif
1410 r->regstart = *OPERAND(scan);
1411 }
1412 else if ((OP(scan) == BOW
1413 || OP(scan) == EOW
1414 || OP(scan) == NOTHING
1415 || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN
1416 || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE)
1417 && OP(regnext(scan)) == EXACTLY)
1418 {
1419#ifdef FEAT_MBYTE
1420 if (has_mbyte)
1421 r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan)));
1422 else
1423#endif
1424 r->regstart = *OPERAND(regnext(scan));
1425 }
1426
1427 /*
1428 * If there's something expensive in the r.e., find the longest
1429 * literal string that must appear and make it the regmust. Resolve
1430 * ties in favor of later strings, since the regstart check works
1431 * with the beginning of the r.e. and avoiding duplication
1432 * strengthens checking. Not a strong reason, but sufficient in the
1433 * absence of others.
1434 */
1435 /*
1436 * When the r.e. starts with BOW, it is faster to look for a regmust
1437 * first. Used a lot for "#" and "*" commands. (Added by mool).
1438 */
1439 if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW)
1440 && !(flags & HASNL))
1441 {
1442 longest = NULL;
1443 len = 0;
1444 for (; scan != NULL; scan = regnext(scan))
1445 if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len)
1446 {
1447 longest = OPERAND(scan);
1448 len = (int)STRLEN(OPERAND(scan));
1449 }
1450 r->regmust = longest;
1451 r->regmlen = len;
1452 }
1453 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001454#ifdef BT_REGEXP_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455 regdump(expr, r);
1456#endif
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001457 r->engine = &bt_regengine;
1458 return (regprog_T *)r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459}
1460
1461/*
Bram Moolenaar473de612013-06-08 18:19:48 +02001462 * Free a compiled regexp program, returned by bt_regcomp().
1463 */
1464 static void
1465bt_regfree(prog)
1466 regprog_T *prog;
1467{
1468 vim_free(prog);
1469}
1470
1471/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 * Setup to parse the regexp. Used once to get the length and once to do it.
1473 */
1474 static void
1475regcomp_start(expr, re_flags)
1476 char_u *expr;
1477 int re_flags; /* see vim_regcomp() */
1478{
1479 initchr(expr);
1480 if (re_flags & RE_MAGIC)
1481 reg_magic = MAGIC_ON;
1482 else
1483 reg_magic = MAGIC_OFF;
1484 reg_string = (re_flags & RE_STRING);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001485 reg_strict = (re_flags & RE_STRICT);
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02001486 get_cpo_flags();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001487
1488 num_complex_braces = 0;
1489 regnpar = 1;
1490 vim_memset(had_endbrace, 0, sizeof(had_endbrace));
1491#ifdef FEAT_SYN_HL
1492 regnzpar = 1;
1493 re_has_z = 0;
1494#endif
1495 regsize = 0L;
Bram Moolenaard3005802009-11-25 17:21:32 +00001496 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 regflags = 0;
1498#if defined(FEAT_SYN_HL) || defined(PROTO)
1499 had_eol = FALSE;
1500#endif
1501}
1502
1503#if defined(FEAT_SYN_HL) || defined(PROTO)
1504/*
1505 * Check if during the previous call to vim_regcomp the EOL item "$" has been
1506 * found. This is messy, but it works fine.
1507 */
1508 int
1509vim_regcomp_had_eol()
1510{
1511 return had_eol;
1512}
1513#endif
1514
1515/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001516 * Parse regular expression, i.e. main body or parenthesized thing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 *
1518 * Caller must absorb opening parenthesis.
1519 *
1520 * Combining parenthesis handling with the base level of regular expression
1521 * is a trifle forced, but the need to tie the tails of the branches to what
1522 * follows makes it hard to avoid.
1523 */
1524 static char_u *
1525reg(paren, flagp)
1526 int paren; /* REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN */
1527 int *flagp;
1528{
1529 char_u *ret;
1530 char_u *br;
1531 char_u *ender;
1532 int parno = 0;
1533 int flags;
1534
1535 *flagp = HASWIDTH; /* Tentatively. */
1536
1537#ifdef FEAT_SYN_HL
1538 if (paren == REG_ZPAREN)
1539 {
1540 /* Make a ZOPEN node. */
1541 if (regnzpar >= NSUBEXP)
1542 EMSG_RET_NULL(_("E50: Too many \\z("));
1543 parno = regnzpar;
1544 regnzpar++;
1545 ret = regnode(ZOPEN + parno);
1546 }
1547 else
1548#endif
1549 if (paren == REG_PAREN)
1550 {
1551 /* Make a MOPEN node. */
1552 if (regnpar >= NSUBEXP)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001553 EMSG2_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 parno = regnpar;
1555 ++regnpar;
1556 ret = regnode(MOPEN + parno);
1557 }
1558 else if (paren == REG_NPAREN)
1559 {
1560 /* Make a NOPEN node. */
1561 ret = regnode(NOPEN);
1562 }
1563 else
1564 ret = NULL;
1565
1566 /* Pick up the branches, linking them together. */
1567 br = regbranch(&flags);
1568 if (br == NULL)
1569 return NULL;
1570 if (ret != NULL)
1571 regtail(ret, br); /* [MZ]OPEN -> first. */
1572 else
1573 ret = br;
1574 /* If one of the branches can be zero-width, the whole thing can.
1575 * If one of the branches has * at start or matches a line-break, the
1576 * whole thing can. */
1577 if (!(flags & HASWIDTH))
1578 *flagp &= ~HASWIDTH;
1579 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH);
1580 while (peekchr() == Magic('|'))
1581 {
1582 skipchr();
1583 br = regbranch(&flags);
Bram Moolenaard3005802009-11-25 17:21:32 +00001584 if (br == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 return NULL;
1586 regtail(ret, br); /* BRANCH -> BRANCH. */
1587 if (!(flags & HASWIDTH))
1588 *flagp &= ~HASWIDTH;
1589 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH);
1590 }
1591
1592 /* Make a closing node, and hook it on the end. */
1593 ender = regnode(
1594#ifdef FEAT_SYN_HL
1595 paren == REG_ZPAREN ? ZCLOSE + parno :
1596#endif
1597 paren == REG_PAREN ? MCLOSE + parno :
1598 paren == REG_NPAREN ? NCLOSE : END);
1599 regtail(ret, ender);
1600
1601 /* Hook the tails of the branches to the closing node. */
1602 for (br = ret; br != NULL; br = regnext(br))
1603 regoptail(br, ender);
1604
1605 /* Check for proper termination. */
1606 if (paren != REG_NOPAREN && getchr() != Magic(')'))
1607 {
1608#ifdef FEAT_SYN_HL
1609 if (paren == REG_ZPAREN)
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001610 EMSG_RET_NULL(_("E52: Unmatched \\z("));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 else
1612#endif
1613 if (paren == REG_NPAREN)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001614 EMSG2_RET_NULL(_(e_unmatchedpp), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 else
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001616 EMSG2_RET_NULL(_(e_unmatchedp), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617 }
1618 else if (paren == REG_NOPAREN && peekchr() != NUL)
1619 {
1620 if (curchr == Magic(')'))
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001621 EMSG2_RET_NULL(_(e_unmatchedpar), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 else
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001623 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 /* NOTREACHED */
1625 }
1626 /*
1627 * Here we set the flag allowing back references to this set of
1628 * parentheses.
1629 */
1630 if (paren == REG_PAREN)
1631 had_endbrace[parno] = TRUE; /* have seen the close paren */
1632 return ret;
1633}
1634
1635/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001636 * Parse one alternative of an | operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 * Implements the & operator.
1638 */
1639 static char_u *
1640regbranch(flagp)
1641 int *flagp;
1642{
1643 char_u *ret;
1644 char_u *chain = NULL;
1645 char_u *latest;
1646 int flags;
1647
1648 *flagp = WORST | HASNL; /* Tentatively. */
1649
1650 ret = regnode(BRANCH);
1651 for (;;)
1652 {
1653 latest = regconcat(&flags);
1654 if (latest == NULL)
1655 return NULL;
1656 /* If one of the branches has width, the whole thing has. If one of
1657 * the branches anchors at start-of-line, the whole thing does.
1658 * If one of the branches uses look-behind, the whole thing does. */
1659 *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH);
1660 /* If one of the branches doesn't match a line-break, the whole thing
1661 * doesn't. */
1662 *flagp &= ~HASNL | (flags & HASNL);
1663 if (chain != NULL)
1664 regtail(chain, latest);
1665 if (peekchr() != Magic('&'))
1666 break;
1667 skipchr();
1668 regtail(latest, regnode(END)); /* operand ends */
Bram Moolenaard3005802009-11-25 17:21:32 +00001669 if (reg_toolong)
1670 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 reginsert(MATCH, latest);
1672 chain = latest;
1673 }
1674
1675 return ret;
1676}
1677
1678/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001679 * Parse one alternative of an | or & operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680 * Implements the concatenation operator.
1681 */
1682 static char_u *
1683regconcat(flagp)
1684 int *flagp;
1685{
1686 char_u *first = NULL;
1687 char_u *chain = NULL;
1688 char_u *latest;
1689 int flags;
1690 int cont = TRUE;
1691
1692 *flagp = WORST; /* Tentatively. */
1693
1694 while (cont)
1695 {
1696 switch (peekchr())
1697 {
1698 case NUL:
1699 case Magic('|'):
1700 case Magic('&'):
1701 case Magic(')'):
1702 cont = FALSE;
1703 break;
1704 case Magic('Z'):
1705#ifdef FEAT_MBYTE
1706 regflags |= RF_ICOMBINE;
1707#endif
1708 skipchr_keepstart();
1709 break;
1710 case Magic('c'):
1711 regflags |= RF_ICASE;
1712 skipchr_keepstart();
1713 break;
1714 case Magic('C'):
1715 regflags |= RF_NOICASE;
1716 skipchr_keepstart();
1717 break;
1718 case Magic('v'):
1719 reg_magic = MAGIC_ALL;
1720 skipchr_keepstart();
1721 curchr = -1;
1722 break;
1723 case Magic('m'):
1724 reg_magic = MAGIC_ON;
1725 skipchr_keepstart();
1726 curchr = -1;
1727 break;
1728 case Magic('M'):
1729 reg_magic = MAGIC_OFF;
1730 skipchr_keepstart();
1731 curchr = -1;
1732 break;
1733 case Magic('V'):
1734 reg_magic = MAGIC_NONE;
1735 skipchr_keepstart();
1736 curchr = -1;
1737 break;
1738 default:
1739 latest = regpiece(&flags);
Bram Moolenaard3005802009-11-25 17:21:32 +00001740 if (latest == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 return NULL;
1742 *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH);
1743 if (chain == NULL) /* First piece. */
1744 *flagp |= flags & SPSTART;
1745 else
1746 regtail(chain, latest);
1747 chain = latest;
1748 if (first == NULL)
1749 first = latest;
1750 break;
1751 }
1752 }
1753 if (first == NULL) /* Loop ran zero times. */
1754 first = regnode(NOTHING);
1755 return first;
1756}
1757
1758/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001759 * Parse something followed by possible [*+=].
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 *
1761 * Note that the branching code sequences used for = and the general cases
1762 * of * and + are somewhat optimized: they use the same NOTHING node as
1763 * both the endmarker for their branch list and the body of the last branch.
1764 * It might seem that this node could be dispensed with entirely, but the
1765 * endmarker role is not redundant.
1766 */
1767 static char_u *
1768regpiece(flagp)
1769 int *flagp;
1770{
1771 char_u *ret;
1772 int op;
1773 char_u *next;
1774 int flags;
1775 long minval;
1776 long maxval;
1777
1778 ret = regatom(&flags);
1779 if (ret == NULL)
1780 return NULL;
1781
1782 op = peekchr();
1783 if (re_multi_type(op) == NOT_MULTI)
1784 {
1785 *flagp = flags;
1786 return ret;
1787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 /* default flags */
1789 *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH)));
1790
1791 skipchr();
1792 switch (op)
1793 {
1794 case Magic('*'):
1795 if (flags & SIMPLE)
1796 reginsert(STAR, ret);
1797 else
1798 {
1799 /* Emit x* as (x&|), where & means "self". */
1800 reginsert(BRANCH, ret); /* Either x */
1801 regoptail(ret, regnode(BACK)); /* and loop */
1802 regoptail(ret, ret); /* back */
1803 regtail(ret, regnode(BRANCH)); /* or */
1804 regtail(ret, regnode(NOTHING)); /* null. */
1805 }
1806 break;
1807
1808 case Magic('+'):
1809 if (flags & SIMPLE)
1810 reginsert(PLUS, ret);
1811 else
1812 {
1813 /* Emit x+ as x(&|), where & means "self". */
1814 next = regnode(BRANCH); /* Either */
1815 regtail(ret, next);
Bram Moolenaar582fd852005-03-28 20:58:01 +00001816 regtail(regnode(BACK), ret); /* loop back */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 regtail(next, regnode(BRANCH)); /* or */
1818 regtail(ret, regnode(NOTHING)); /* null. */
1819 }
1820 *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH)));
1821 break;
1822
1823 case Magic('@'):
1824 {
1825 int lop = END;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02001826 int nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827
Bram Moolenaar75eb1612013-05-29 18:45:11 +02001828 nr = getdecchrs();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 switch (no_Magic(getchr()))
1830 {
1831 case '=': lop = MATCH; break; /* \@= */
1832 case '!': lop = NOMATCH; break; /* \@! */
1833 case '>': lop = SUBPAT; break; /* \@> */
1834 case '<': switch (no_Magic(getchr()))
1835 {
1836 case '=': lop = BEHIND; break; /* \@<= */
1837 case '!': lop = NOBEHIND; break; /* \@<! */
1838 }
1839 }
1840 if (lop == END)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001841 EMSG2_RET_NULL(_("E59: invalid character after %s@"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 reg_magic == MAGIC_ALL);
1843 /* Look behind must match with behind_pos. */
1844 if (lop == BEHIND || lop == NOBEHIND)
1845 {
1846 regtail(ret, regnode(BHPOS));
1847 *flagp |= HASLOOKBH;
1848 }
1849 regtail(ret, regnode(END)); /* operand ends */
Bram Moolenaar75eb1612013-05-29 18:45:11 +02001850 if (lop == BEHIND || lop == NOBEHIND)
1851 {
1852 if (nr < 0)
1853 nr = 0; /* no limit is same as zero limit */
1854 reginsert_nr(lop, nr, ret);
1855 }
1856 else
1857 reginsert(lop, ret);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 break;
1859 }
1860
1861 case Magic('?'):
1862 case Magic('='):
1863 /* Emit x= as (x|) */
1864 reginsert(BRANCH, ret); /* Either x */
1865 regtail(ret, regnode(BRANCH)); /* or */
1866 next = regnode(NOTHING); /* null. */
1867 regtail(ret, next);
1868 regoptail(ret, next);
1869 break;
1870
1871 case Magic('{'):
1872 if (!read_limits(&minval, &maxval))
1873 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 if (flags & SIMPLE)
1875 {
1876 reginsert(BRACE_SIMPLE, ret);
1877 reginsert_limits(BRACE_LIMITS, minval, maxval, ret);
1878 }
1879 else
1880 {
1881 if (num_complex_braces >= 10)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001882 EMSG2_RET_NULL(_("E60: Too many complex %s{...}s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 reg_magic == MAGIC_ALL);
1884 reginsert(BRACE_COMPLEX + num_complex_braces, ret);
1885 regoptail(ret, regnode(BACK));
1886 regoptail(ret, ret);
1887 reginsert_limits(BRACE_LIMITS, minval, maxval, ret);
1888 ++num_complex_braces;
1889 }
1890 if (minval > 0 && maxval > 0)
1891 *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH)));
1892 break;
1893 }
1894 if (re_multi_type(peekchr()) != NOT_MULTI)
1895 {
1896 /* Can't have a multi follow a multi. */
1897 if (peekchr() == Magic('*'))
1898 sprintf((char *)IObuff, _("E61: Nested %s*"),
1899 reg_magic >= MAGIC_ON ? "" : "\\");
1900 else
1901 sprintf((char *)IObuff, _("E62: Nested %s%c"),
1902 reg_magic == MAGIC_ALL ? "" : "\\", no_Magic(peekchr()));
1903 EMSG_RET_NULL(IObuff);
1904 }
1905
1906 return ret;
1907}
1908
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001909/* When making changes to classchars also change nfa_classcodes. */
1910static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU";
1911static int classcodes[] = {
1912 ANY, IDENT, SIDENT, KWORD, SKWORD,
1913 FNAME, SFNAME, PRINT, SPRINT,
1914 WHITE, NWHITE, DIGIT, NDIGIT,
1915 HEX, NHEX, OCTAL, NOCTAL,
1916 WORD, NWORD, HEAD, NHEAD,
1917 ALPHA, NALPHA, LOWER, NLOWER,
1918 UPPER, NUPPER
1919};
1920
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02001922 * Parse the lowest level.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 *
1924 * Optimization: gobbles an entire sequence of ordinary characters so that
1925 * it can turn them into a single node, which is smaller to store and
1926 * faster to run. Don't do this when one_exactly is set.
1927 */
1928 static char_u *
1929regatom(flagp)
1930 int *flagp;
1931{
1932 char_u *ret;
1933 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 char_u *p;
1936 int extra = 0;
1937
1938 *flagp = WORST; /* Tentatively. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939
1940 c = getchr();
1941 switch (c)
1942 {
1943 case Magic('^'):
1944 ret = regnode(BOL);
1945 break;
1946
1947 case Magic('$'):
1948 ret = regnode(EOL);
1949#if defined(FEAT_SYN_HL) || defined(PROTO)
1950 had_eol = TRUE;
1951#endif
1952 break;
1953
1954 case Magic('<'):
1955 ret = regnode(BOW);
1956 break;
1957
1958 case Magic('>'):
1959 ret = regnode(EOW);
1960 break;
1961
1962 case Magic('_'):
1963 c = no_Magic(getchr());
1964 if (c == '^') /* "\_^" is start-of-line */
1965 {
1966 ret = regnode(BOL);
1967 break;
1968 }
1969 if (c == '$') /* "\_$" is end-of-line */
1970 {
1971 ret = regnode(EOL);
1972#if defined(FEAT_SYN_HL) || defined(PROTO)
1973 had_eol = TRUE;
1974#endif
1975 break;
1976 }
1977
1978 extra = ADD_NL;
1979 *flagp |= HASNL;
1980
1981 /* "\_[" is character range plus newline */
1982 if (c == '[')
1983 goto collection;
1984
1985 /* "\_x" is character class plus newline */
1986 /*FALLTHROUGH*/
1987
1988 /*
1989 * Character classes.
1990 */
1991 case Magic('.'):
1992 case Magic('i'):
1993 case Magic('I'):
1994 case Magic('k'):
1995 case Magic('K'):
1996 case Magic('f'):
1997 case Magic('F'):
1998 case Magic('p'):
1999 case Magic('P'):
2000 case Magic('s'):
2001 case Magic('S'):
2002 case Magic('d'):
2003 case Magic('D'):
2004 case Magic('x'):
2005 case Magic('X'):
2006 case Magic('o'):
2007 case Magic('O'):
2008 case Magic('w'):
2009 case Magic('W'):
2010 case Magic('h'):
2011 case Magic('H'):
2012 case Magic('a'):
2013 case Magic('A'):
2014 case Magic('l'):
2015 case Magic('L'):
2016 case Magic('u'):
2017 case Magic('U'):
2018 p = vim_strchr(classchars, no_Magic(c));
2019 if (p == NULL)
2020 EMSG_RET_NULL(_("E63: invalid use of \\_"));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002021#ifdef FEAT_MBYTE
2022 /* When '.' is followed by a composing char ignore the dot, so that
2023 * the composing char is matched here. */
2024 if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr()))
2025 {
2026 c = getchr();
2027 goto do_multibyte;
2028 }
2029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 ret = regnode(classcodes[p - classchars] + extra);
2031 *flagp |= HASWIDTH | SIMPLE;
2032 break;
2033
2034 case Magic('n'):
2035 if (reg_string)
2036 {
2037 /* In a string "\n" matches a newline character. */
2038 ret = regnode(EXACTLY);
2039 regc(NL);
2040 regc(NUL);
2041 *flagp |= HASWIDTH | SIMPLE;
2042 }
2043 else
2044 {
2045 /* In buffer text "\n" matches the end of a line. */
2046 ret = regnode(NEWL);
2047 *flagp |= HASWIDTH | HASNL;
2048 }
2049 break;
2050
2051 case Magic('('):
2052 if (one_exactly)
2053 EMSG_ONE_RET_NULL;
2054 ret = reg(REG_PAREN, &flags);
2055 if (ret == NULL)
2056 return NULL;
2057 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH);
2058 break;
2059
2060 case NUL:
2061 case Magic('|'):
2062 case Magic('&'):
2063 case Magic(')'):
Bram Moolenaard4210772008-01-02 14:35:30 +00002064 if (one_exactly)
2065 EMSG_ONE_RET_NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 EMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */
2067 /* NOTREACHED */
2068
2069 case Magic('='):
2070 case Magic('?'):
2071 case Magic('+'):
2072 case Magic('@'):
2073 case Magic('{'):
2074 case Magic('*'):
2075 c = no_Magic(c);
2076 sprintf((char *)IObuff, _("E64: %s%c follows nothing"),
2077 (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL)
2078 ? "" : "\\", c);
2079 EMSG_RET_NULL(IObuff);
2080 /* NOTREACHED */
2081
2082 case Magic('~'): /* previous substitute pattern */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002083 if (reg_prev_sub != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 {
2085 char_u *lp;
2086
2087 ret = regnode(EXACTLY);
2088 lp = reg_prev_sub;
2089 while (*lp != NUL)
2090 regc(*lp++);
2091 regc(NUL);
2092 if (*reg_prev_sub != NUL)
2093 {
2094 *flagp |= HASWIDTH;
2095 if ((lp - reg_prev_sub) == 1)
2096 *flagp |= SIMPLE;
2097 }
2098 }
2099 else
2100 EMSG_RET_NULL(_(e_nopresub));
2101 break;
2102
2103 case Magic('1'):
2104 case Magic('2'):
2105 case Magic('3'):
2106 case Magic('4'):
2107 case Magic('5'):
2108 case Magic('6'):
2109 case Magic('7'):
2110 case Magic('8'):
2111 case Magic('9'):
2112 {
2113 int refnum;
2114
2115 refnum = c - Magic('0');
2116 /*
2117 * Check if the back reference is legal. We must have seen the
2118 * close brace.
2119 * TODO: Should also check that we don't refer to something
2120 * that is repeated (+*=): what instance of the repetition
2121 * should we match?
2122 */
2123 if (!had_endbrace[refnum])
2124 {
2125 /* Trick: check if "@<=" or "@<!" follows, in which case
2126 * the \1 can appear before the referenced match. */
2127 for (p = regparse; *p != NUL; ++p)
2128 if (p[0] == '@' && p[1] == '<'
2129 && (p[2] == '!' || p[2] == '='))
2130 break;
2131 if (*p == NUL)
2132 EMSG_RET_NULL(_("E65: Illegal back reference"));
2133 }
2134 ret = regnode(BACKREF + refnum);
2135 }
2136 break;
2137
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138 case Magic('z'):
2139 {
2140 c = no_Magic(getchr());
2141 switch (c)
2142 {
Bram Moolenaarc4956c82006-03-12 21:58:43 +00002143#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 case '(': if (reg_do_extmatch != REX_SET)
Bram Moolenaar5de820b2013-06-02 15:01:57 +02002145 EMSG_RET_NULL(_(e_z_not_allowed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 if (one_exactly)
2147 EMSG_ONE_RET_NULL;
2148 ret = reg(REG_ZPAREN, &flags);
2149 if (ret == NULL)
2150 return NULL;
2151 *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH);
2152 re_has_z = REX_SET;
2153 break;
2154
2155 case '1':
2156 case '2':
2157 case '3':
2158 case '4':
2159 case '5':
2160 case '6':
2161 case '7':
2162 case '8':
2163 case '9': if (reg_do_extmatch != REX_USE)
Bram Moolenaar5de820b2013-06-02 15:01:57 +02002164 EMSG_RET_NULL(_(e_z1_not_allowed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 ret = regnode(ZREF + c - '0');
2166 re_has_z = REX_USE;
2167 break;
Bram Moolenaarc4956c82006-03-12 21:58:43 +00002168#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169
2170 case 's': ret = regnode(MOPEN + 0);
Bram Moolenaarfb031402014-09-09 17:18:49 +02002171 if (re_mult_next("\\zs") == FAIL)
2172 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 break;
2174
2175 case 'e': ret = regnode(MCLOSE + 0);
Bram Moolenaarfb031402014-09-09 17:18:49 +02002176 if (re_mult_next("\\ze") == FAIL)
2177 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178 break;
2179
2180 default: EMSG_RET_NULL(_("E68: Invalid character after \\z"));
2181 }
2182 }
2183 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184
2185 case Magic('%'):
2186 {
2187 c = no_Magic(getchr());
2188 switch (c)
2189 {
2190 /* () without a back reference */
2191 case '(':
2192 if (one_exactly)
2193 EMSG_ONE_RET_NULL;
2194 ret = reg(REG_NPAREN, &flags);
2195 if (ret == NULL)
2196 return NULL;
2197 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH);
2198 break;
2199
2200 /* Catch \%^ and \%$ regardless of where they appear in the
2201 * pattern -- regardless of whether or not it makes sense. */
2202 case '^':
2203 ret = regnode(RE_BOF);
2204 break;
2205
2206 case '$':
2207 ret = regnode(RE_EOF);
2208 break;
2209
2210 case '#':
2211 ret = regnode(CURSOR);
2212 break;
2213
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002214 case 'V':
2215 ret = regnode(RE_VISUAL);
2216 break;
2217
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02002218 case 'C':
2219 ret = regnode(RE_COMPOSING);
2220 break;
2221
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222 /* \%[abc]: Emit as a list of branches, all ending at the last
2223 * branch which matches nothing. */
2224 case '[':
2225 if (one_exactly) /* doesn't nest */
2226 EMSG_ONE_RET_NULL;
2227 {
2228 char_u *lastbranch;
2229 char_u *lastnode = NULL;
2230 char_u *br;
2231
2232 ret = NULL;
2233 while ((c = getchr()) != ']')
2234 {
2235 if (c == NUL)
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002236 EMSG2_RET_NULL(_(e_missing_sb),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 reg_magic == MAGIC_ALL);
2238 br = regnode(BRANCH);
2239 if (ret == NULL)
2240 ret = br;
2241 else
2242 regtail(lastnode, br);
2243
2244 ungetchr();
2245 one_exactly = TRUE;
2246 lastnode = regatom(flagp);
2247 one_exactly = FALSE;
2248 if (lastnode == NULL)
2249 return NULL;
2250 }
2251 if (ret == NULL)
Bram Moolenaar2976c022013-06-05 21:30:37 +02002252 EMSG2_RET_NULL(_(e_empty_sb),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253 reg_magic == MAGIC_ALL);
2254 lastbranch = regnode(BRANCH);
2255 br = regnode(NOTHING);
2256 if (ret != JUST_CALC_SIZE)
2257 {
2258 regtail(lastnode, br);
2259 regtail(lastbranch, br);
2260 /* connect all branches to the NOTHING
2261 * branch at the end */
2262 for (br = ret; br != lastnode; )
2263 {
2264 if (OP(br) == BRANCH)
2265 {
2266 regtail(br, lastbranch);
2267 br = OPERAND(br);
2268 }
2269 else
2270 br = regnext(br);
2271 }
2272 }
Bram Moolenaara6404a42008-08-08 11:45:39 +00002273 *flagp &= ~(HASWIDTH | SIMPLE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 break;
2275 }
2276
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002277 case 'd': /* %d123 decimal */
2278 case 'o': /* %o123 octal */
2279 case 'x': /* %xab hex 2 */
2280 case 'u': /* %uabcd hex 4 */
2281 case 'U': /* %U1234abcd hex 8 */
2282 {
2283 int i;
2284
2285 switch (c)
2286 {
2287 case 'd': i = getdecchrs(); break;
2288 case 'o': i = getoctchrs(); break;
2289 case 'x': i = gethexchrs(2); break;
2290 case 'u': i = gethexchrs(4); break;
2291 case 'U': i = gethexchrs(8); break;
2292 default: i = -1; break;
2293 }
2294
2295 if (i < 0)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002296 EMSG2_RET_NULL(
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002297 _("E678: Invalid character after %s%%[dxouU]"),
2298 reg_magic == MAGIC_ALL);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002299#ifdef FEAT_MBYTE
2300 if (use_multibytecode(i))
2301 ret = regnode(MULTIBYTECODE);
2302 else
2303#endif
2304 ret = regnode(EXACTLY);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002305 if (i == 0)
2306 regc(0x0a);
2307 else
2308#ifdef FEAT_MBYTE
2309 regmbc(i);
2310#else
2311 regc(i);
2312#endif
2313 regc(NUL);
2314 *flagp |= HASWIDTH;
2315 break;
2316 }
2317
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 default:
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002319 if (VIM_ISDIGIT(c) || c == '<' || c == '>'
2320 || c == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 {
2322 long_u n = 0;
2323 int cmp;
2324
2325 cmp = c;
2326 if (cmp == '<' || cmp == '>')
2327 c = getchr();
2328 while (VIM_ISDIGIT(c))
2329 {
2330 n = n * 10 + (c - '0');
2331 c = getchr();
2332 }
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002333 if (c == '\'' && n == 0)
2334 {
2335 /* "\%'m", "\%<'m" and "\%>'m": Mark */
2336 c = getchr();
2337 ret = regnode(RE_MARK);
2338 if (ret == JUST_CALC_SIZE)
2339 regsize += 2;
2340 else
2341 {
2342 *regcode++ = c;
2343 *regcode++ = cmp;
2344 }
2345 break;
2346 }
2347 else if (c == 'l' || c == 'c' || c == 'v')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 {
2349 if (c == 'l')
2350 ret = regnode(RE_LNUM);
2351 else if (c == 'c')
2352 ret = regnode(RE_COL);
2353 else
2354 ret = regnode(RE_VCOL);
2355 if (ret == JUST_CALC_SIZE)
2356 regsize += 5;
2357 else
2358 {
2359 /* put the number and the optional
2360 * comparator after the opcode */
2361 regcode = re_put_long(regcode, n);
2362 *regcode++ = cmp;
2363 }
2364 break;
2365 }
2366 }
2367
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002368 EMSG2_RET_NULL(_("E71: Invalid character after %s%%"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 reg_magic == MAGIC_ALL);
2370 }
2371 }
2372 break;
2373
2374 case Magic('['):
2375collection:
2376 {
2377 char_u *lp;
2378
2379 /*
2380 * If there is no matching ']', we assume the '[' is a normal
2381 * character. This makes 'incsearch' and ":help [" work.
2382 */
2383 lp = skip_anyof(regparse);
2384 if (*lp == ']') /* there is a matching ']' */
2385 {
2386 int startc = -1; /* > 0 when next '-' is a range */
2387 int endc;
2388
2389 /*
2390 * In a character class, different parsing rules apply.
2391 * Not even \ is special anymore, nothing is.
2392 */
2393 if (*regparse == '^') /* Complement of range. */
2394 {
2395 ret = regnode(ANYBUT + extra);
2396 regparse++;
2397 }
2398 else
2399 ret = regnode(ANYOF + extra);
2400
2401 /* At the start ']' and '-' mean the literal character. */
2402 if (*regparse == ']' || *regparse == '-')
Bram Moolenaardf177f62005-02-22 08:39:57 +00002403 {
2404 startc = *regparse;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 regc(*regparse++);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002406 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407
2408 while (*regparse != NUL && *regparse != ']')
2409 {
2410 if (*regparse == '-')
2411 {
2412 ++regparse;
2413 /* The '-' is not used for a range at the end and
2414 * after or before a '\n'. */
2415 if (*regparse == ']' || *regparse == NUL
2416 || startc == -1
2417 || (regparse[0] == '\\' && regparse[1] == 'n'))
2418 {
2419 regc('-');
2420 startc = '-'; /* [--x] is a range */
2421 }
2422 else
2423 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00002424 /* Also accept "a-[.z.]" */
2425 endc = 0;
2426 if (*regparse == '[')
2427 endc = get_coll_element(&regparse);
2428 if (endc == 0)
2429 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430#ifdef FEAT_MBYTE
Bram Moolenaardf177f62005-02-22 08:39:57 +00002431 if (has_mbyte)
2432 endc = mb_ptr2char_adv(&regparse);
2433 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00002435 endc = *regparse++;
2436 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002437
2438 /* Handle \o40, \x20 and \u20AC style sequences */
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002439 if (endc == '\\' && !reg_cpo_lit && !reg_cpo_bsl)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002440 endc = coll_get_char();
2441
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 if (startc > endc)
2443 EMSG_RET_NULL(_(e_invrange));
2444#ifdef FEAT_MBYTE
2445 if (has_mbyte && ((*mb_char2len)(startc) > 1
2446 || (*mb_char2len)(endc) > 1))
2447 {
2448 /* Limit to a range of 256 chars */
2449 if (endc > startc + 256)
2450 EMSG_RET_NULL(_(e_invrange));
2451 while (++startc <= endc)
2452 regmbc(startc);
2453 }
2454 else
2455#endif
2456 {
2457#ifdef EBCDIC
2458 int alpha_only = FALSE;
2459
2460 /* for alphabetical range skip the gaps
2461 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */
2462 if (isalpha(startc) && isalpha(endc))
2463 alpha_only = TRUE;
2464#endif
2465 while (++startc <= endc)
2466#ifdef EBCDIC
2467 if (!alpha_only || isalpha(startc))
2468#endif
2469 regc(startc);
2470 }
2471 startc = -1;
2472 }
2473 }
2474 /*
2475 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim
2476 * accepts "\t", "\e", etc., but only when the 'l' flag in
2477 * 'cpoptions' is not included.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002478 * Posix doesn't recognize backslash at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 */
2480 else if (*regparse == '\\'
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002481 && !reg_cpo_bsl
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL
Bram Moolenaar1cd3f2c2013-06-05 12:43:09 +02002483 || (!reg_cpo_lit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 && vim_strchr(REGEXP_ABBR,
2485 regparse[1]) != NULL)))
2486 {
2487 regparse++;
2488 if (*regparse == 'n')
2489 {
2490 /* '\n' in range: also match NL */
2491 if (ret != JUST_CALC_SIZE)
2492 {
Bram Moolenaare337e5f2013-01-30 18:21:51 +01002493 /* Using \n inside [^] does not change what
2494 * matches. "[^\n]" is the same as ".". */
2495 if (*ret == ANYOF)
2496 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 *ret = ANYOF + ADD_NL;
Bram Moolenaare337e5f2013-01-30 18:21:51 +01002498 *flagp |= HASNL;
2499 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 /* else: must have had a \n already */
2501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 regparse++;
2503 startc = -1;
2504 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002505 else if (*regparse == 'd'
2506 || *regparse == 'o'
2507 || *regparse == 'x'
2508 || *regparse == 'u'
2509 || *regparse == 'U')
2510 {
2511 startc = coll_get_char();
2512 if (startc == 0)
2513 regc(0x0a);
2514 else
2515#ifdef FEAT_MBYTE
2516 regmbc(startc);
2517#else
2518 regc(startc);
2519#endif
2520 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 else
2522 {
2523 startc = backslash_trans(*regparse++);
2524 regc(startc);
2525 }
2526 }
2527 else if (*regparse == '[')
2528 {
2529 int c_class;
2530 int cu;
2531
Bram Moolenaardf177f62005-02-22 08:39:57 +00002532 c_class = get_char_class(&regparse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 startc = -1;
2534 /* Characters assumed to be 8 bits! */
2535 switch (c_class)
2536 {
2537 case CLASS_NONE:
Bram Moolenaardf177f62005-02-22 08:39:57 +00002538 c_class = get_equi_class(&regparse);
2539 if (c_class != 0)
2540 {
2541 /* produce equivalence class */
2542 reg_equi_class(c_class);
2543 }
2544 else if ((c_class =
2545 get_coll_element(&regparse)) != 0)
2546 {
2547 /* produce a collating element */
2548 regmbc(c_class);
2549 }
2550 else
2551 {
2552 /* literal '[', allow [[-x] as a range */
2553 startc = *regparse++;
2554 regc(startc);
2555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 break;
2557 case CLASS_ALNUM:
2558 for (cu = 1; cu <= 255; cu++)
2559 if (isalnum(cu))
2560 regc(cu);
2561 break;
2562 case CLASS_ALPHA:
2563 for (cu = 1; cu <= 255; cu++)
2564 if (isalpha(cu))
2565 regc(cu);
2566 break;
2567 case CLASS_BLANK:
2568 regc(' ');
2569 regc('\t');
2570 break;
2571 case CLASS_CNTRL:
2572 for (cu = 1; cu <= 255; cu++)
2573 if (iscntrl(cu))
2574 regc(cu);
2575 break;
2576 case CLASS_DIGIT:
2577 for (cu = 1; cu <= 255; cu++)
2578 if (VIM_ISDIGIT(cu))
2579 regc(cu);
2580 break;
2581 case CLASS_GRAPH:
2582 for (cu = 1; cu <= 255; cu++)
2583 if (isgraph(cu))
2584 regc(cu);
2585 break;
2586 case CLASS_LOWER:
2587 for (cu = 1; cu <= 255; cu++)
Bram Moolenaara245a5b2007-08-11 11:58:23 +00002588 if (MB_ISLOWER(cu))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 regc(cu);
2590 break;
2591 case CLASS_PRINT:
2592 for (cu = 1; cu <= 255; cu++)
2593 if (vim_isprintc(cu))
2594 regc(cu);
2595 break;
2596 case CLASS_PUNCT:
2597 for (cu = 1; cu <= 255; cu++)
2598 if (ispunct(cu))
2599 regc(cu);
2600 break;
2601 case CLASS_SPACE:
2602 for (cu = 9; cu <= 13; cu++)
2603 regc(cu);
2604 regc(' ');
2605 break;
2606 case CLASS_UPPER:
2607 for (cu = 1; cu <= 255; cu++)
Bram Moolenaara245a5b2007-08-11 11:58:23 +00002608 if (MB_ISUPPER(cu))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 regc(cu);
2610 break;
2611 case CLASS_XDIGIT:
2612 for (cu = 1; cu <= 255; cu++)
2613 if (vim_isxdigit(cu))
2614 regc(cu);
2615 break;
2616 case CLASS_TAB:
2617 regc('\t');
2618 break;
2619 case CLASS_RETURN:
2620 regc('\r');
2621 break;
2622 case CLASS_BACKSPACE:
2623 regc('\b');
2624 break;
2625 case CLASS_ESCAPE:
2626 regc('\033');
2627 break;
2628 }
2629 }
2630 else
2631 {
2632#ifdef FEAT_MBYTE
2633 if (has_mbyte)
2634 {
2635 int len;
2636
2637 /* produce a multibyte character, including any
2638 * following composing characters */
2639 startc = mb_ptr2char(regparse);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002640 len = (*mb_ptr2len)(regparse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 if (enc_utf8 && utf_char2len(startc) != len)
2642 startc = -1; /* composing chars */
2643 while (--len >= 0)
2644 regc(*regparse++);
2645 }
2646 else
2647#endif
2648 {
2649 startc = *regparse++;
2650 regc(startc);
2651 }
2652 }
2653 }
2654 regc(NUL);
2655 prevchr_len = 1; /* last char was the ']' */
2656 if (*regparse != ']')
2657 EMSG_RET_NULL(_(e_toomsbra)); /* Cannot happen? */
2658 skipchr(); /* let's be friends with the lexer again */
2659 *flagp |= HASWIDTH | SIMPLE;
2660 break;
2661 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +00002662 else if (reg_strict)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002663 EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 }
2665 /* FALLTHROUGH */
2666
2667 default:
2668 {
2669 int len;
2670
2671#ifdef FEAT_MBYTE
2672 /* A multi-byte character is handled as a separate atom if it's
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002673 * before a multi and when it's a composing char. */
2674 if (use_multibytecode(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002676do_multibyte:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 ret = regnode(MULTIBYTECODE);
2678 regmbc(c);
2679 *flagp |= HASWIDTH | SIMPLE;
2680 break;
2681 }
2682#endif
2683
2684 ret = regnode(EXACTLY);
2685
2686 /*
2687 * Append characters as long as:
2688 * - there is no following multi, we then need the character in
2689 * front of it as a single character operand
2690 * - not running into a Magic character
2691 * - "one_exactly" is not set
2692 * But always emit at least one character. Might be a Multi,
2693 * e.g., a "[" without matching "]".
2694 */
2695 for (len = 0; c != NUL && (len == 0
2696 || (re_multi_type(peekchr()) == NOT_MULTI
2697 && !one_exactly
2698 && !is_Magic(c))); ++len)
2699 {
2700 c = no_Magic(c);
2701#ifdef FEAT_MBYTE
2702 if (has_mbyte)
2703 {
2704 regmbc(c);
2705 if (enc_utf8)
2706 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 int l;
2708
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002709 /* Need to get composing character too. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 for (;;)
2711 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002712 l = utf_ptr2len(regparse);
2713 if (!UTF_COMPOSINGLIKE(regparse, regparse + l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714 break;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002715 regmbc(utf_ptr2char(regparse));
2716 skipchr();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 }
2719 }
2720 else
2721#endif
2722 regc(c);
2723 c = getchr();
2724 }
2725 ungetchr();
2726
2727 regc(NUL);
2728 *flagp |= HASWIDTH;
2729 if (len == 1)
2730 *flagp |= SIMPLE;
2731 }
2732 break;
2733 }
2734
2735 return ret;
2736}
2737
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002738#ifdef FEAT_MBYTE
2739/*
2740 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for
2741 * character "c".
2742 */
2743 static int
2744use_multibytecode(c)
2745 int c;
2746{
2747 return has_mbyte && (*mb_char2len)(c) > 1
2748 && (re_multi_type(peekchr()) != NOT_MULTI
2749 || (enc_utf8 && utf_iscomposing(c)));
2750}
2751#endif
2752
Bram Moolenaar071d4272004-06-13 20:20:40 +00002753/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002754 * Emit a node.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 * Return pointer to generated code.
2756 */
2757 static char_u *
2758regnode(op)
2759 int op;
2760{
2761 char_u *ret;
2762
2763 ret = regcode;
2764 if (ret == JUST_CALC_SIZE)
2765 regsize += 3;
2766 else
2767 {
2768 *regcode++ = op;
2769 *regcode++ = NUL; /* Null "next" pointer. */
2770 *regcode++ = NUL;
2771 }
2772 return ret;
2773}
2774
2775/*
2776 * Emit (if appropriate) a byte of code
2777 */
2778 static void
2779regc(b)
2780 int b;
2781{
2782 if (regcode == JUST_CALC_SIZE)
2783 regsize++;
2784 else
2785 *regcode++ = b;
2786}
2787
2788#ifdef FEAT_MBYTE
2789/*
2790 * Emit (if appropriate) a multi-byte character of code
2791 */
2792 static void
2793regmbc(c)
2794 int c;
2795{
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02002796 if (!has_mbyte && c > 0xff)
2797 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 if (regcode == JUST_CALC_SIZE)
2799 regsize += (*mb_char2len)(c);
2800 else
2801 regcode += (*mb_char2bytes)(c, regcode);
2802}
2803#endif
2804
2805/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002806 * Insert an operator in front of already-emitted operand
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 *
2808 * Means relocating the operand.
2809 */
2810 static void
2811reginsert(op, opnd)
2812 int op;
2813 char_u *opnd;
2814{
2815 char_u *src;
2816 char_u *dst;
2817 char_u *place;
2818
2819 if (regcode == JUST_CALC_SIZE)
2820 {
2821 regsize += 3;
2822 return;
2823 }
2824 src = regcode;
2825 regcode += 3;
2826 dst = regcode;
2827 while (src > opnd)
2828 *--dst = *--src;
2829
2830 place = opnd; /* Op node, where operand used to be. */
2831 *place++ = op;
2832 *place++ = NUL;
2833 *place = NUL;
2834}
2835
2836/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002837 * Insert an operator in front of already-emitted operand.
Bram Moolenaar75eb1612013-05-29 18:45:11 +02002838 * Add a number to the operator.
2839 */
2840 static void
2841reginsert_nr(op, val, opnd)
2842 int op;
2843 long val;
2844 char_u *opnd;
2845{
2846 char_u *src;
2847 char_u *dst;
2848 char_u *place;
2849
2850 if (regcode == JUST_CALC_SIZE)
2851 {
2852 regsize += 7;
2853 return;
2854 }
2855 src = regcode;
2856 regcode += 7;
2857 dst = regcode;
2858 while (src > opnd)
2859 *--dst = *--src;
2860
2861 place = opnd; /* Op node, where operand used to be. */
2862 *place++ = op;
2863 *place++ = NUL;
2864 *place++ = NUL;
2865 place = re_put_long(place, (long_u)val);
2866}
2867
2868/*
2869 * Insert an operator in front of already-emitted operand.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 * The operator has the given limit values as operands. Also set next pointer.
2871 *
2872 * Means relocating the operand.
2873 */
2874 static void
2875reginsert_limits(op, minval, maxval, opnd)
2876 int op;
2877 long minval;
2878 long maxval;
2879 char_u *opnd;
2880{
2881 char_u *src;
2882 char_u *dst;
2883 char_u *place;
2884
2885 if (regcode == JUST_CALC_SIZE)
2886 {
2887 regsize += 11;
2888 return;
2889 }
2890 src = regcode;
2891 regcode += 11;
2892 dst = regcode;
2893 while (src > opnd)
2894 *--dst = *--src;
2895
2896 place = opnd; /* Op node, where operand used to be. */
2897 *place++ = op;
2898 *place++ = NUL;
2899 *place++ = NUL;
2900 place = re_put_long(place, (long_u)minval);
2901 place = re_put_long(place, (long_u)maxval);
2902 regtail(opnd, place);
2903}
2904
2905/*
2906 * Write a long as four bytes at "p" and return pointer to the next char.
2907 */
2908 static char_u *
2909re_put_long(p, val)
2910 char_u *p;
2911 long_u val;
2912{
2913 *p++ = (char_u) ((val >> 24) & 0377);
2914 *p++ = (char_u) ((val >> 16) & 0377);
2915 *p++ = (char_u) ((val >> 8) & 0377);
2916 *p++ = (char_u) (val & 0377);
2917 return p;
2918}
2919
2920/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002921 * Set the next-pointer at the end of a node chain.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 */
2923 static void
2924regtail(p, val)
2925 char_u *p;
2926 char_u *val;
2927{
2928 char_u *scan;
2929 char_u *temp;
2930 int offset;
2931
2932 if (p == JUST_CALC_SIZE)
2933 return;
2934
2935 /* Find last node. */
2936 scan = p;
2937 for (;;)
2938 {
2939 temp = regnext(scan);
2940 if (temp == NULL)
2941 break;
2942 scan = temp;
2943 }
2944
Bram Moolenaar582fd852005-03-28 20:58:01 +00002945 if (OP(scan) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002946 offset = (int)(scan - val);
2947 else
2948 offset = (int)(val - scan);
Bram Moolenaard3005802009-11-25 17:21:32 +00002949 /* When the offset uses more than 16 bits it can no longer fit in the two
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02002950 * bytes available. Use a global flag to avoid having to check return
Bram Moolenaard3005802009-11-25 17:21:32 +00002951 * values in too many places. */
2952 if (offset > 0xffff)
2953 reg_toolong = TRUE;
2954 else
2955 {
2956 *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377);
2957 *(scan + 2) = (char_u) (offset & 0377);
2958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959}
2960
2961/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002962 * Like regtail, on item after a BRANCH; nop if none.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963 */
2964 static void
2965regoptail(p, val)
2966 char_u *p;
2967 char_u *val;
2968{
2969 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */
2970 if (p == NULL || p == JUST_CALC_SIZE
2971 || (OP(p) != BRANCH
2972 && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9)))
2973 return;
2974 regtail(OPERAND(p), val);
2975}
2976
2977/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002978 * Functions for getting characters from the regexp input.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 */
2980
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981static int at_start; /* True when on the first character */
2982static int prev_at_start; /* True when on the second character */
2983
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002984/*
2985 * Start parsing at "str".
2986 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987 static void
2988initchr(str)
2989 char_u *str;
2990{
2991 regparse = str;
2992 prevchr_len = 0;
2993 curchr = prevprevchr = prevchr = nextchr = -1;
2994 at_start = TRUE;
2995 prev_at_start = FALSE;
2996}
2997
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02002998/*
Bram Moolenaar3737fc12013-06-01 14:42:56 +02002999 * Save the current parse state, so that it can be restored and parsing
3000 * starts in the same state again.
3001 */
3002 static void
3003save_parse_state(ps)
3004 parse_state_T *ps;
3005{
3006 ps->regparse = regparse;
3007 ps->prevchr_len = prevchr_len;
3008 ps->curchr = curchr;
3009 ps->prevchr = prevchr;
3010 ps->prevprevchr = prevprevchr;
3011 ps->nextchr = nextchr;
3012 ps->at_start = at_start;
3013 ps->prev_at_start = prev_at_start;
3014 ps->regnpar = regnpar;
3015}
3016
3017/*
3018 * Restore a previously saved parse state.
3019 */
3020 static void
3021restore_parse_state(ps)
3022 parse_state_T *ps;
3023{
3024 regparse = ps->regparse;
3025 prevchr_len = ps->prevchr_len;
3026 curchr = ps->curchr;
3027 prevchr = ps->prevchr;
3028 prevprevchr = ps->prevprevchr;
3029 nextchr = ps->nextchr;
3030 at_start = ps->at_start;
3031 prev_at_start = ps->prev_at_start;
3032 regnpar = ps->regnpar;
3033}
3034
3035
3036/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003037 * Get the next character without advancing.
3038 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039 static int
3040peekchr()
3041{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003042 static int after_slash = FALSE;
3043
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 if (curchr == -1)
3045 {
3046 switch (curchr = regparse[0])
3047 {
3048 case '.':
3049 case '[':
3050 case '~':
3051 /* magic when 'magic' is on */
3052 if (reg_magic >= MAGIC_ON)
3053 curchr = Magic(curchr);
3054 break;
3055 case '(':
3056 case ')':
3057 case '{':
3058 case '%':
3059 case '+':
3060 case '=':
3061 case '?':
3062 case '@':
3063 case '!':
3064 case '&':
3065 case '|':
3066 case '<':
3067 case '>':
3068 case '#': /* future ext. */
3069 case '"': /* future ext. */
3070 case '\'': /* future ext. */
3071 case ',': /* future ext. */
3072 case '-': /* future ext. */
3073 case ':': /* future ext. */
3074 case ';': /* future ext. */
3075 case '`': /* future ext. */
3076 case '/': /* Can't be used in / command */
3077 /* magic only after "\v" */
3078 if (reg_magic == MAGIC_ALL)
3079 curchr = Magic(curchr);
3080 break;
3081 case '*':
Bram Moolenaardf177f62005-02-22 08:39:57 +00003082 /* * is not magic as the very first character, eg "?*ptr", when
3083 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But
3084 * "\(\*" is not magic, thus must be magic if "after_slash" */
3085 if (reg_magic >= MAGIC_ON
3086 && !at_start
3087 && !(prev_at_start && prevchr == Magic('^'))
3088 && (after_slash
3089 || (prevchr != Magic('(')
3090 && prevchr != Magic('&')
3091 && prevchr != Magic('|'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 curchr = Magic('*');
3093 break;
3094 case '^':
3095 /* '^' is only magic as the very first character and if it's after
3096 * "\(", "\|", "\&' or "\n" */
3097 if (reg_magic >= MAGIC_OFF
3098 && (at_start
3099 || reg_magic == MAGIC_ALL
3100 || prevchr == Magic('(')
3101 || prevchr == Magic('|')
3102 || prevchr == Magic('&')
3103 || prevchr == Magic('n')
3104 || (no_Magic(prevchr) == '('
3105 && prevprevchr == Magic('%'))))
3106 {
3107 curchr = Magic('^');
3108 at_start = TRUE;
3109 prev_at_start = FALSE;
3110 }
3111 break;
3112 case '$':
3113 /* '$' is only magic as the very last char and if it's in front of
3114 * either "\|", "\)", "\&", or "\n" */
3115 if (reg_magic >= MAGIC_OFF)
3116 {
3117 char_u *p = regparse + 1;
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003118 int is_magic_all = (reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003120 /* ignore \c \C \m \M \v \V and \Z after '$' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C'
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003122 || p[1] == 'm' || p[1] == 'M'
3123 || p[1] == 'v' || p[1] == 'V' || p[1] == 'Z'))
3124 {
3125 if (p[1] == 'v')
3126 is_magic_all = TRUE;
3127 else if (p[1] == 'm' || p[1] == 'M' || p[1] == 'V')
3128 is_magic_all = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 p += 2;
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003130 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 if (p[0] == NUL
3132 || (p[0] == '\\'
3133 && (p[1] == '|' || p[1] == '&' || p[1] == ')'
3134 || p[1] == 'n'))
Bram Moolenaarff65ac82014-07-09 19:32:34 +02003135 || (is_magic_all
3136 && (p[0] == '|' || p[0] == '&' || p[0] == ')'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137 || reg_magic == MAGIC_ALL)
3138 curchr = Magic('$');
3139 }
3140 break;
3141 case '\\':
3142 {
3143 int c = regparse[1];
3144
3145 if (c == NUL)
3146 curchr = '\\'; /* trailing '\' */
3147 else if (
3148#ifdef EBCDIC
3149 vim_strchr(META, c)
3150#else
3151 c <= '~' && META_flags[c]
3152#endif
3153 )
3154 {
3155 /*
3156 * META contains everything that may be magic sometimes,
3157 * except ^ and $ ("\^" and "\$" are only magic after
3158 * "\v"). We now fetch the next character and toggle its
3159 * magicness. Therefore, \ is so meta-magic that it is
3160 * not in META.
3161 */
3162 curchr = -1;
3163 prev_at_start = at_start;
3164 at_start = FALSE; /* be able to say "/\*ptr" */
3165 ++regparse;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003166 ++after_slash;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 peekchr();
3168 --regparse;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003169 --after_slash;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 curchr = toggle_Magic(curchr);
3171 }
3172 else if (vim_strchr(REGEXP_ABBR, c))
3173 {
3174 /*
3175 * Handle abbreviations, like "\t" for TAB -- webb
3176 */
3177 curchr = backslash_trans(c);
3178 }
3179 else if (reg_magic == MAGIC_NONE && (c == '$' || c == '^'))
3180 curchr = toggle_Magic(c);
3181 else
3182 {
3183 /*
3184 * Next character can never be (made) magic?
3185 * Then backslashing it won't do anything.
3186 */
3187#ifdef FEAT_MBYTE
3188 if (has_mbyte)
3189 curchr = (*mb_ptr2char)(regparse + 1);
3190 else
3191#endif
3192 curchr = c;
3193 }
3194 break;
3195 }
3196
3197#ifdef FEAT_MBYTE
3198 default:
3199 if (has_mbyte)
3200 curchr = (*mb_ptr2char)(regparse);
3201#endif
3202 }
3203 }
3204
3205 return curchr;
3206}
3207
3208/*
3209 * Eat one lexed character. Do this in a way that we can undo it.
3210 */
3211 static void
3212skipchr()
3213{
3214 /* peekchr() eats a backslash, do the same here */
3215 if (*regparse == '\\')
3216 prevchr_len = 1;
3217 else
3218 prevchr_len = 0;
3219 if (regparse[prevchr_len] != NUL)
3220 {
3221#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003222 if (enc_utf8)
Bram Moolenaar8f5c5782007-11-29 20:27:21 +00003223 /* exclude composing chars that mb_ptr2len does include */
3224 prevchr_len += utf_ptr2len(regparse + prevchr_len);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003225 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003226 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 else
3228#endif
3229 ++prevchr_len;
3230 }
3231 regparse += prevchr_len;
3232 prev_at_start = at_start;
3233 at_start = FALSE;
3234 prevprevchr = prevchr;
3235 prevchr = curchr;
3236 curchr = nextchr; /* use previously unget char, or -1 */
3237 nextchr = -1;
3238}
3239
3240/*
3241 * Skip a character while keeping the value of prev_at_start for at_start.
3242 * prevchr and prevprevchr are also kept.
3243 */
3244 static void
3245skipchr_keepstart()
3246{
3247 int as = prev_at_start;
3248 int pr = prevchr;
3249 int prpr = prevprevchr;
3250
3251 skipchr();
3252 at_start = as;
3253 prevchr = pr;
3254 prevprevchr = prpr;
3255}
3256
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003257/*
3258 * Get the next character from the pattern. We know about magic and such, so
3259 * therefore we need a lexical analyzer.
3260 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 static int
3262getchr()
3263{
3264 int chr = peekchr();
3265
3266 skipchr();
3267 return chr;
3268}
3269
3270/*
3271 * put character back. Works only once!
3272 */
3273 static void
3274ungetchr()
3275{
3276 nextchr = curchr;
3277 curchr = prevchr;
3278 prevchr = prevprevchr;
3279 at_start = prev_at_start;
3280 prev_at_start = FALSE;
3281
3282 /* Backup regparse, so that it's at the same position as before the
3283 * getchr(). */
3284 regparse -= prevchr_len;
3285}
3286
3287/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003288 * Get and return the value of the hex string at the current position.
3289 * Return -1 if there is no valid hex number.
3290 * The position is updated:
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003291 * blahblah\%x20asdf
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003292 * before-^ ^-after
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003293 * The parameter controls the maximum number of input characters. This will be
3294 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence.
3295 */
3296 static int
3297gethexchrs(maxinputlen)
3298 int maxinputlen;
3299{
3300 int nr = 0;
3301 int c;
3302 int i;
3303
3304 for (i = 0; i < maxinputlen; ++i)
3305 {
3306 c = regparse[0];
3307 if (!vim_isxdigit(c))
3308 break;
3309 nr <<= 4;
3310 nr |= hex2nr(c);
3311 ++regparse;
3312 }
3313
3314 if (i == 0)
3315 return -1;
3316 return nr;
3317}
3318
3319/*
Bram Moolenaar75eb1612013-05-29 18:45:11 +02003320 * Get and return the value of the decimal string immediately after the
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003321 * current position. Return -1 for invalid. Consumes all digits.
3322 */
3323 static int
3324getdecchrs()
3325{
3326 int nr = 0;
3327 int c;
3328 int i;
3329
3330 for (i = 0; ; ++i)
3331 {
3332 c = regparse[0];
3333 if (c < '0' || c > '9')
3334 break;
3335 nr *= 10;
3336 nr += c - '0';
3337 ++regparse;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02003338 curchr = -1; /* no longer valid */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003339 }
3340
3341 if (i == 0)
3342 return -1;
3343 return nr;
3344}
3345
3346/*
3347 * get and return the value of the octal string immediately after the current
3348 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle
3349 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't
3350 * treat 8 or 9 as recognised characters. Position is updated:
3351 * blahblah\%o210asdf
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003352 * before-^ ^-after
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003353 */
3354 static int
3355getoctchrs()
3356{
3357 int nr = 0;
3358 int c;
3359 int i;
3360
3361 for (i = 0; i < 3 && nr < 040; ++i)
3362 {
3363 c = regparse[0];
3364 if (c < '0' || c > '7')
3365 break;
3366 nr <<= 3;
3367 nr |= hex2nr(c);
3368 ++regparse;
3369 }
3370
3371 if (i == 0)
3372 return -1;
3373 return nr;
3374}
3375
3376/*
3377 * Get a number after a backslash that is inside [].
3378 * When nothing is recognized return a backslash.
3379 */
3380 static int
3381coll_get_char()
3382{
3383 int nr = -1;
3384
3385 switch (*regparse++)
3386 {
3387 case 'd': nr = getdecchrs(); break;
3388 case 'o': nr = getoctchrs(); break;
3389 case 'x': nr = gethexchrs(2); break;
3390 case 'u': nr = gethexchrs(4); break;
3391 case 'U': nr = gethexchrs(8); break;
3392 }
3393 if (nr < 0)
3394 {
3395 /* If getting the number fails be backwards compatible: the character
3396 * is a backslash. */
3397 --regparse;
3398 nr = '\\';
3399 }
3400 return nr;
3401}
3402
3403/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404 * read_limits - Read two integers to be taken as a minimum and maximum.
3405 * If the first character is '-', then the range is reversed.
3406 * Should end with 'end'. If minval is missing, zero is default, if maxval is
3407 * missing, a very big number is the default.
3408 */
3409 static int
3410read_limits(minval, maxval)
3411 long *minval;
3412 long *maxval;
3413{
3414 int reverse = FALSE;
3415 char_u *first_char;
3416 long tmp;
3417
3418 if (*regparse == '-')
3419 {
3420 /* Starts with '-', so reverse the range later */
3421 regparse++;
3422 reverse = TRUE;
3423 }
3424 first_char = regparse;
3425 *minval = getdigits(&regparse);
3426 if (*regparse == ',') /* There is a comma */
3427 {
3428 if (vim_isdigit(*++regparse))
3429 *maxval = getdigits(&regparse);
3430 else
3431 *maxval = MAX_LIMIT;
3432 }
3433 else if (VIM_ISDIGIT(*first_char))
3434 *maxval = *minval; /* It was \{n} or \{-n} */
3435 else
3436 *maxval = MAX_LIMIT; /* It was \{} or \{-} */
3437 if (*regparse == '\\')
3438 regparse++; /* Allow either \{...} or \{...\} */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003439 if (*regparse != '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 {
3441 sprintf((char *)IObuff, _("E554: Syntax error in %s{...}"),
3442 reg_magic == MAGIC_ALL ? "" : "\\");
3443 EMSG_RET_FAIL(IObuff);
3444 }
3445
3446 /*
3447 * Reverse the range if there was a '-', or make sure it is in the right
3448 * order otherwise.
3449 */
3450 if ((!reverse && *minval > *maxval) || (reverse && *minval < *maxval))
3451 {
3452 tmp = *minval;
3453 *minval = *maxval;
3454 *maxval = tmp;
3455 }
3456 skipchr(); /* let's be friends with the lexer again */
3457 return OK;
3458}
3459
3460/*
3461 * vim_regexec and friends
3462 */
3463
3464/*
3465 * Global work variables for vim_regexec().
3466 */
3467
3468/* The current match-position is remembered with these variables: */
3469static linenr_T reglnum; /* line number, relative to first line */
3470static char_u *regline; /* start of current line */
3471static char_u *reginput; /* current input, points into "regline" */
3472
3473static int need_clear_subexpr; /* subexpressions still need to be
3474 * cleared */
3475#ifdef FEAT_SYN_HL
3476static int need_clear_zsubexpr = FALSE; /* extmatch subexpressions
3477 * still need to be cleared */
3478#endif
3479
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480/*
3481 * Structure used to save the current input state, when it needs to be
3482 * restored after trying a match. Used by reg_save() and reg_restore().
Bram Moolenaar582fd852005-03-28 20:58:01 +00003483 * Also stores the length of "backpos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003484 */
3485typedef struct
3486{
3487 union
3488 {
3489 char_u *ptr; /* reginput pointer, for single-line regexp */
3490 lpos_T pos; /* reginput pos, for multi-line regexp */
3491 } rs_u;
Bram Moolenaar582fd852005-03-28 20:58:01 +00003492 int rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493} regsave_T;
3494
3495/* struct to save start/end pointer/position in for \(\) */
3496typedef struct
3497{
3498 union
3499 {
3500 char_u *ptr;
3501 lpos_T pos;
3502 } se_u;
3503} save_se_T;
3504
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003505/* used for BEHIND and NOBEHIND matching */
3506typedef struct regbehind_S
3507{
3508 regsave_T save_after;
3509 regsave_T save_behind;
Bram Moolenaarfde483c2008-06-15 12:21:50 +00003510 int save_need_clear_subexpr;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003511 save_se_T save_start[NSUBEXP];
3512 save_se_T save_end[NSUBEXP];
3513} regbehind_T;
3514
Bram Moolenaar071d4272004-06-13 20:20:40 +00003515static char_u *reg_getline __ARGS((linenr_T lnum));
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003516static long bt_regexec_both __ARGS((char_u *line, colnr_T col, proftime_T *tm));
3517static long regtry __ARGS((bt_regprog_T *prog, colnr_T col));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003518static void cleanup_subexpr __ARGS((void));
3519#ifdef FEAT_SYN_HL
3520static void cleanup_zsubexpr __ARGS((void));
3521#endif
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003522static void save_subexpr __ARGS((regbehind_T *bp));
3523static void restore_subexpr __ARGS((regbehind_T *bp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524static void reg_nextline __ARGS((void));
Bram Moolenaar582fd852005-03-28 20:58:01 +00003525static void reg_save __ARGS((regsave_T *save, garray_T *gap));
3526static void reg_restore __ARGS((regsave_T *save, garray_T *gap));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527static int reg_save_equal __ARGS((regsave_T *save));
3528static void save_se_multi __ARGS((save_se_T *savep, lpos_T *posp));
3529static void save_se_one __ARGS((save_se_T *savep, char_u **pp));
3530
3531/* Save the sub-expressions before attempting a match. */
3532#define save_se(savep, posp, pp) \
3533 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp))
3534
3535/* After a failed match restore the sub-expressions. */
3536#define restore_se(savep, posp, pp) { \
3537 if (REG_MULTI) \
3538 *(posp) = (savep)->se_u.pos; \
3539 else \
3540 *(pp) = (savep)->se_u.ptr; }
3541
3542static int re_num_cmp __ARGS((long_u val, char_u *scan));
Bram Moolenaar580abea2013-06-14 20:31:28 +02003543static int match_with_backref __ARGS((linenr_T start_lnum, colnr_T start_col, linenr_T end_lnum, colnr_T end_col, int *bytelen));
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003544static int regmatch __ARGS((char_u *prog));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545static int regrepeat __ARGS((char_u *p, long maxcount));
3546
3547#ifdef DEBUG
3548int regnarrate = 0;
3549#endif
3550
3551/*
3552 * Internal copy of 'ignorecase'. It is set at each call to vim_regexec().
3553 * Normally it gets the value of "rm_ic" or "rmm_ic", but when the pattern
3554 * contains '\c' or '\C' the value is overruled.
3555 */
3556static int ireg_ic;
3557
3558#ifdef FEAT_MBYTE
3559/*
3560 * Similar to ireg_ic, but only for 'combining' characters. Set with \Z flag
3561 * in the regexp. Defaults to false, always.
3562 */
3563static int ireg_icombine;
3564#endif
3565
3566/*
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003567 * Copy of "rmm_maxcol": maximum column to search for a match. Zero when
3568 * there is no maximum.
3569 */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003570static colnr_T ireg_maxcol;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003571
3572/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573 * Sometimes need to save a copy of a line. Since alloc()/free() is very
3574 * slow, we keep one allocated piece of memory and only re-allocate it when
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003575 * it's too small. It's freed in bt_regexec_both() when finished.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 */
Bram Moolenaard4210772008-01-02 14:35:30 +00003577static char_u *reg_tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578static unsigned reg_tofreelen;
3579
3580/*
3581 * These variables are set when executing a regexp to speed up the execution.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003582 * Which ones are set depends on whether a single-line or multi-line match is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 * done:
3584 * single-line multi-line
3585 * reg_match &regmatch_T NULL
3586 * reg_mmatch NULL &regmmatch_T
3587 * reg_startp reg_match->startp <invalid>
3588 * reg_endp reg_match->endp <invalid>
3589 * reg_startpos <invalid> reg_mmatch->startpos
3590 * reg_endpos <invalid> reg_mmatch->endpos
3591 * reg_win NULL window in which to search
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01003592 * reg_buf curbuf buffer in which to search
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 * reg_firstlnum <invalid> first line in which to search
3594 * reg_maxline 0 last line nr
3595 * reg_line_lbr FALSE or TRUE FALSE
3596 */
3597static regmatch_T *reg_match;
3598static regmmatch_T *reg_mmatch;
3599static char_u **reg_startp = NULL;
3600static char_u **reg_endp = NULL;
3601static lpos_T *reg_startpos = NULL;
3602static lpos_T *reg_endpos = NULL;
3603static win_T *reg_win;
3604static buf_T *reg_buf;
3605static linenr_T reg_firstlnum;
3606static linenr_T reg_maxline;
3607static int reg_line_lbr; /* "\n" in string is line break */
3608
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003609/* Values for rs_state in regitem_T. */
3610typedef enum regstate_E
3611{
3612 RS_NOPEN = 0 /* NOPEN and NCLOSE */
3613 , RS_MOPEN /* MOPEN + [0-9] */
3614 , RS_MCLOSE /* MCLOSE + [0-9] */
3615#ifdef FEAT_SYN_HL
3616 , RS_ZOPEN /* ZOPEN + [0-9] */
3617 , RS_ZCLOSE /* ZCLOSE + [0-9] */
3618#endif
3619 , RS_BRANCH /* BRANCH */
3620 , RS_BRCPLX_MORE /* BRACE_COMPLEX and trying one more match */
3621 , RS_BRCPLX_LONG /* BRACE_COMPLEX and trying longest match */
3622 , RS_BRCPLX_SHORT /* BRACE_COMPLEX and trying shortest match */
3623 , RS_NOMATCH /* NOMATCH */
3624 , RS_BEHIND1 /* BEHIND / NOBEHIND matching rest */
3625 , RS_BEHIND2 /* BEHIND / NOBEHIND matching behind part */
3626 , RS_STAR_LONG /* STAR/PLUS/BRACE_SIMPLE longest match */
3627 , RS_STAR_SHORT /* STAR/PLUS/BRACE_SIMPLE shortest match */
3628} regstate_T;
3629
3630/*
3631 * When there are alternatives a regstate_T is put on the regstack to remember
3632 * what we are doing.
3633 * Before it may be another type of item, depending on rs_state, to remember
3634 * more things.
3635 */
3636typedef struct regitem_S
3637{
3638 regstate_T rs_state; /* what we are doing, one of RS_ above */
3639 char_u *rs_scan; /* current node in program */
3640 union
3641 {
3642 save_se_T sesave;
3643 regsave_T regsave;
3644 } rs_un; /* room for saving reginput */
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003645 short rs_no; /* submatch nr or BEHIND/NOBEHIND */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003646} regitem_T;
3647
3648static regitem_T *regstack_push __ARGS((regstate_T state, char_u *scan));
3649static void regstack_pop __ARGS((char_u **scan));
3650
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003651/* used for STAR, PLUS and BRACE_SIMPLE matching */
3652typedef struct regstar_S
3653{
3654 int nextb; /* next byte */
3655 int nextb_ic; /* next byte reverse case */
3656 long count;
3657 long minval;
3658 long maxval;
3659} regstar_T;
3660
3661/* used to store input position when a BACK was encountered, so that we now if
3662 * we made any progress since the last time. */
3663typedef struct backpos_S
3664{
3665 char_u *bp_scan; /* "scan" where BACK was encountered */
3666 regsave_T bp_pos; /* last input position */
3667} backpos_T;
3668
3669/*
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003670 * "regstack" and "backpos" are used by regmatch(). They are kept over calls
3671 * to avoid invoking malloc() and free() often.
3672 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T
3673 * or regbehind_T.
3674 * "backpos_T" is a table with backpos_T for BACK
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003675 */
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003676static garray_T regstack = {0, 0, 0, 0, NULL};
3677static garray_T backpos = {0, 0, 0, 0, NULL};
3678
3679/*
3680 * Both for regstack and backpos tables we use the following strategy of
3681 * allocation (to reduce malloc/free calls):
3682 * - Initial size is fairly small.
3683 * - When needed, the tables are grown bigger (8 times at first, double after
3684 * that).
3685 * - After executing the match we free the memory only if the array has grown.
3686 * Thus the memory is kept allocated when it's at the initial size.
3687 * This makes it fast while not keeping a lot of memory allocated.
3688 * A three times speed increase was observed when using many simple patterns.
3689 */
3690#define REGSTACK_INITIAL 2048
3691#define BACKPOS_INITIAL 64
3692
3693#if defined(EXITFREE) || defined(PROTO)
3694 void
3695free_regexp_stuff()
3696{
3697 ga_clear(&regstack);
3698 ga_clear(&backpos);
3699 vim_free(reg_tofree);
3700 vim_free(reg_prev_sub);
3701}
3702#endif
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003703
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704/*
3705 * Get pointer to the line "lnum", which is relative to "reg_firstlnum".
3706 */
3707 static char_u *
3708reg_getline(lnum)
3709 linenr_T lnum;
3710{
3711 /* when looking behind for a match/no-match lnum is negative. But we
3712 * can't go before line 1 */
3713 if (reg_firstlnum + lnum < 1)
3714 return NULL;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00003715 if (lnum > reg_maxline)
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003716 /* Must have matched the "\n" in the last line. */
3717 return (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 return ml_get_buf(reg_buf, reg_firstlnum + lnum, FALSE);
3719}
3720
3721static regsave_T behind_pos;
3722
3723#ifdef FEAT_SYN_HL
3724static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */
3725static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */
3726static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */
3727static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */
3728#endif
3729
3730/* TRUE if using multi-line regexp. */
3731#define REG_MULTI (reg_match == NULL)
3732
Bram Moolenaar2af78a12014-04-23 19:06:37 +02003733static int bt_regexec_nl __ARGS((regmatch_T *rmp, char_u *line, colnr_T col, int line_lbr));
3734
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003735
Bram Moolenaar071d4272004-06-13 20:20:40 +00003736/*
3737 * Match a regexp against a string.
3738 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3739 * Uses curbuf for line count and 'iskeyword'.
Bram Moolenaar2af78a12014-04-23 19:06:37 +02003740 * if "line_lbr" is TRUE consider a "\n" in "line" to be a line break.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 *
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003742 * Returns 0 for failure, number of lines contained in the match otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003744 static int
Bram Moolenaar2af78a12014-04-23 19:06:37 +02003745bt_regexec_nl(rmp, line, col, line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 regmatch_T *rmp;
3747 char_u *line; /* string to match against */
3748 colnr_T col; /* column to start looking for match */
Bram Moolenaar2af78a12014-04-23 19:06:37 +02003749 int line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750{
3751 reg_match = rmp;
3752 reg_mmatch = NULL;
3753 reg_maxline = 0;
Bram Moolenaar2af78a12014-04-23 19:06:37 +02003754 reg_line_lbr = line_lbr;
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01003755 reg_buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 reg_win = NULL;
3757 ireg_ic = rmp->rm_ic;
3758#ifdef FEAT_MBYTE
3759 ireg_icombine = FALSE;
3760#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003761 ireg_maxcol = 0;
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003762
3763 return bt_regexec_both(line, col, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764}
3765
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003766static long bt_regexec_multi __ARGS((regmmatch_T *rmp, win_T *win, buf_T *buf, linenr_T lnum, colnr_T col, proftime_T *tm));
3767
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768/*
3769 * Match a regexp against multiple lines.
3770 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3771 * Uses curbuf for line count and 'iskeyword'.
3772 *
3773 * Return zero if there is no match. Return number of lines contained in the
3774 * match otherwise.
3775 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003776 static long
3777bt_regexec_multi(rmp, win, buf, lnum, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 regmmatch_T *rmp;
3779 win_T *win; /* window in which to search or NULL */
3780 buf_T *buf; /* buffer in which to search */
3781 linenr_T lnum; /* nr of line to start looking for match */
3782 colnr_T col; /* column to start looking for match */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003783 proftime_T *tm; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785 reg_match = NULL;
3786 reg_mmatch = rmp;
3787 reg_buf = buf;
3788 reg_win = win;
3789 reg_firstlnum = lnum;
3790 reg_maxline = reg_buf->b_ml.ml_line_count - lnum;
3791 reg_line_lbr = FALSE;
3792 ireg_ic = rmp->rmm_ic;
3793#ifdef FEAT_MBYTE
3794 ireg_icombine = FALSE;
3795#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003796 ireg_maxcol = rmp->rmm_maxcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003798 return bt_regexec_both(NULL, col, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799}
3800
3801/*
3802 * Match a regexp against a string ("line" points to the string) or multiple
3803 * lines ("line" is NULL, use reg_getline()).
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003804 * Returns 0 for failure, number of lines contained in the match otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 static long
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003807bt_regexec_both(line, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 char_u *line;
3809 colnr_T col; /* column to start looking for match */
Bram Moolenaar78a15312009-05-15 19:33:18 +00003810 proftime_T *tm UNUSED; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811{
Bram Moolenaar66a3e792014-11-20 23:07:05 +01003812 bt_regprog_T *prog;
3813 char_u *s;
3814 long retval = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003816 /* Create "regstack" and "backpos" if they are not allocated yet.
3817 * We allocate *_INITIAL amount of bytes first and then set the grow size
3818 * to much bigger value to avoid many malloc calls in case of deep regular
3819 * expressions. */
3820 if (regstack.ga_data == NULL)
3821 {
3822 /* Use an item size of 1 byte, since we push different things
3823 * onto the regstack. */
3824 ga_init2(&regstack, 1, REGSTACK_INITIAL);
3825 ga_grow(&regstack, REGSTACK_INITIAL);
3826 regstack.ga_growsize = REGSTACK_INITIAL * 8;
3827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003829 if (backpos.ga_data == NULL)
3830 {
3831 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL);
3832 ga_grow(&backpos, BACKPOS_INITIAL);
3833 backpos.ga_growsize = BACKPOS_INITIAL * 8;
3834 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003835
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 if (REG_MULTI)
3837 {
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003838 prog = (bt_regprog_T *)reg_mmatch->regprog;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 line = reg_getline((linenr_T)0);
3840 reg_startpos = reg_mmatch->startpos;
3841 reg_endpos = reg_mmatch->endpos;
3842 }
3843 else
3844 {
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02003845 prog = (bt_regprog_T *)reg_match->regprog;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003846 reg_startp = reg_match->startp;
3847 reg_endp = reg_match->endp;
3848 }
3849
3850 /* Be paranoid... */
3851 if (prog == NULL || line == NULL)
3852 {
3853 EMSG(_(e_null));
3854 goto theend;
3855 }
3856
3857 /* Check validity of program. */
3858 if (prog_magic_wrong())
3859 goto theend;
3860
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003861 /* If the start column is past the maximum column: no need to try. */
3862 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3863 goto theend;
3864
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 /* If pattern contains "\c" or "\C": overrule value of ireg_ic */
3866 if (prog->regflags & RF_ICASE)
3867 ireg_ic = TRUE;
3868 else if (prog->regflags & RF_NOICASE)
3869 ireg_ic = FALSE;
3870
3871#ifdef FEAT_MBYTE
3872 /* If pattern contains "\Z" overrule value of ireg_icombine */
3873 if (prog->regflags & RF_ICOMBINE)
3874 ireg_icombine = TRUE;
3875#endif
3876
3877 /* If there is a "must appear" string, look for it. */
3878 if (prog->regmust != NULL)
3879 {
3880 int c;
3881
3882#ifdef FEAT_MBYTE
3883 if (has_mbyte)
3884 c = (*mb_ptr2char)(prog->regmust);
3885 else
3886#endif
3887 c = *prog->regmust;
3888 s = line + col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003889
3890 /*
3891 * This is used very often, esp. for ":global". Use three versions of
3892 * the loop to avoid overhead of conditions.
3893 */
3894 if (!ireg_ic
3895#ifdef FEAT_MBYTE
3896 && !has_mbyte
3897#endif
3898 )
3899 while ((s = vim_strbyte(s, c)) != NULL)
3900 {
3901 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3902 break; /* Found it. */
3903 ++s;
3904 }
3905#ifdef FEAT_MBYTE
3906 else if (!ireg_ic || (!enc_utf8 && mb_char2len(c) > 1))
3907 while ((s = vim_strchr(s, c)) != NULL)
3908 {
3909 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3910 break; /* Found it. */
3911 mb_ptr_adv(s);
3912 }
3913#endif
3914 else
3915 while ((s = cstrchr(s, c)) != NULL)
3916 {
3917 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3918 break; /* Found it. */
3919 mb_ptr_adv(s);
3920 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921 if (s == NULL) /* Not present. */
3922 goto theend;
3923 }
3924
3925 regline = line;
3926 reglnum = 0;
Bram Moolenaar73a92fe2010-09-14 10:55:47 +02003927 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928
3929 /* Simplest case: Anchored match need be tried only once. */
3930 if (prog->reganch)
3931 {
3932 int c;
3933
3934#ifdef FEAT_MBYTE
3935 if (has_mbyte)
3936 c = (*mb_ptr2char)(regline + col);
3937 else
3938#endif
3939 c = regline[col];
3940 if (prog->regstart == NUL
3941 || prog->regstart == c
3942 || (ireg_ic && ((
3943#ifdef FEAT_MBYTE
3944 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c)))
3945 || (c < 255 && prog->regstart < 255 &&
3946#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003947 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 retval = regtry(prog, col);
3949 else
3950 retval = 0;
3951 }
3952 else
3953 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003954#ifdef FEAT_RELTIME
3955 int tm_count = 0;
3956#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 /* Messy cases: unanchored match. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003958 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 {
3960 if (prog->regstart != NUL)
3961 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003962 /* Skip until the char we know it must start with.
3963 * Used often, do some work to avoid call overhead. */
3964 if (!ireg_ic
3965#ifdef FEAT_MBYTE
3966 && !has_mbyte
3967#endif
3968 )
3969 s = vim_strbyte(regline + col, prog->regstart);
3970 else
3971 s = cstrchr(regline + col, prog->regstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 if (s == NULL)
3973 {
3974 retval = 0;
3975 break;
3976 }
3977 col = (int)(s - regline);
3978 }
3979
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003980 /* Check for maximum column to try. */
3981 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3982 {
3983 retval = 0;
3984 break;
3985 }
3986
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 retval = regtry(prog, col);
3988 if (retval > 0)
3989 break;
3990
3991 /* if not currently on the first line, get it again */
3992 if (reglnum != 0)
3993 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 reglnum = 0;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003995 regline = reg_getline((linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 }
3997 if (regline[col] == NUL)
3998 break;
3999#ifdef FEAT_MBYTE
4000 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004001 col += (*mb_ptr2len)(regline + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 else
4003#endif
4004 ++col;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004005#ifdef FEAT_RELTIME
4006 /* Check for timeout once in a twenty times to avoid overhead. */
4007 if (tm != NULL && ++tm_count == 20)
4008 {
4009 tm_count = 0;
4010 if (profile_passed_limit(tm))
4011 break;
4012 }
4013#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 }
4015 }
4016
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017theend:
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004018 /* Free "reg_tofree" when it's a bit big.
4019 * Free regstack and backpos if they are bigger than their initial size. */
4020 if (reg_tofreelen > 400)
4021 {
4022 vim_free(reg_tofree);
4023 reg_tofree = NULL;
4024 }
4025 if (regstack.ga_maxlen > REGSTACK_INITIAL)
4026 ga_clear(&regstack);
4027 if (backpos.ga_maxlen > BACKPOS_INITIAL)
4028 ga_clear(&backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004029
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 return retval;
4031}
4032
4033#ifdef FEAT_SYN_HL
4034static reg_extmatch_T *make_extmatch __ARGS((void));
4035
4036/*
4037 * Create a new extmatch and mark it as referenced once.
4038 */
4039 static reg_extmatch_T *
4040make_extmatch()
4041{
4042 reg_extmatch_T *em;
4043
4044 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T));
4045 if (em != NULL)
4046 em->refcnt = 1;
4047 return em;
4048}
4049
4050/*
4051 * Add a reference to an extmatch.
4052 */
4053 reg_extmatch_T *
4054ref_extmatch(em)
4055 reg_extmatch_T *em;
4056{
4057 if (em != NULL)
4058 em->refcnt++;
4059 return em;
4060}
4061
4062/*
4063 * Remove a reference to an extmatch. If there are no references left, free
4064 * the info.
4065 */
4066 void
4067unref_extmatch(em)
4068 reg_extmatch_T *em;
4069{
4070 int i;
4071
4072 if (em != NULL && --em->refcnt <= 0)
4073 {
4074 for (i = 0; i < NSUBEXP; ++i)
4075 vim_free(em->matches[i]);
4076 vim_free(em);
4077 }
4078}
4079#endif
4080
4081/*
4082 * regtry - try match of "prog" with at regline["col"].
4083 * Returns 0 for failure, number of lines contained in the match otherwise.
4084 */
4085 static long
4086regtry(prog, col)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004087 bt_regprog_T *prog;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 colnr_T col;
4089{
4090 reginput = regline + col;
4091 need_clear_subexpr = TRUE;
4092#ifdef FEAT_SYN_HL
4093 /* Clear the external match subpointers if necessary. */
4094 if (prog->reghasz == REX_SET)
4095 need_clear_zsubexpr = TRUE;
4096#endif
4097
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004098 if (regmatch(prog->program + 1) == 0)
4099 return 0;
4100
4101 cleanup_subexpr();
4102 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004104 if (reg_startpos[0].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004106 reg_startpos[0].lnum = 0;
4107 reg_startpos[0].col = col;
4108 }
4109 if (reg_endpos[0].lnum < 0)
4110 {
4111 reg_endpos[0].lnum = reglnum;
4112 reg_endpos[0].col = (int)(reginput - regline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 }
4114 else
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004115 /* Use line number of "\ze". */
4116 reglnum = reg_endpos[0].lnum;
4117 }
4118 else
4119 {
4120 if (reg_startp[0] == NULL)
4121 reg_startp[0] = regline + col;
4122 if (reg_endp[0] == NULL)
4123 reg_endp[0] = reginput;
4124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004125#ifdef FEAT_SYN_HL
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004126 /* Package any found \z(...\) matches for export. Default is none. */
4127 unref_extmatch(re_extmatch_out);
4128 re_extmatch_out = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004130 if (prog->reghasz == REX_SET)
4131 {
4132 int i;
4133
4134 cleanup_zsubexpr();
4135 re_extmatch_out = make_extmatch();
4136 for (i = 0; i < NSUBEXP; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004138 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004140 /* Only accept single line matches. */
4141 if (reg_startzpos[i].lnum >= 0
Bram Moolenaar5a4e1602014-04-06 21:34:04 +02004142 && reg_endzpos[i].lnum == reg_startzpos[i].lnum
4143 && reg_endzpos[i].col >= reg_startzpos[i].col)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004144 re_extmatch_out->matches[i] =
4145 vim_strnsave(reg_getline(reg_startzpos[i].lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 + reg_startzpos[i].col,
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004147 reg_endzpos[i].col - reg_startzpos[i].col);
4148 }
4149 else
4150 {
4151 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL)
4152 re_extmatch_out->matches[i] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 vim_strnsave(reg_startzp[i],
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004154 (int)(reg_endzp[i] - reg_startzp[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 }
4156 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004158#endif
4159 return 1 + reglnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160}
4161
4162#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163static int reg_prev_class __ARGS((void));
4164
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165/*
4166 * Get class of previous character.
4167 */
4168 static int
4169reg_prev_class()
4170{
4171 if (reginput > regline)
Bram Moolenaarf813a182013-01-30 13:59:37 +01004172 return mb_get_class_buf(reginput - 1
4173 - (*mb_head_off)(regline, reginput - 1), reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 return -1;
4175}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176#endif
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01004177
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004178static int reg_match_visual __ARGS((void));
4179
4180/*
4181 * Return TRUE if the current reginput position matches the Visual area.
4182 */
4183 static int
4184reg_match_visual()
4185{
4186 pos_T top, bot;
4187 linenr_T lnum;
4188 colnr_T col;
4189 win_T *wp = reg_win == NULL ? curwin : reg_win;
4190 int mode;
4191 colnr_T start, end;
4192 colnr_T start2, end2;
4193 colnr_T cols;
4194
4195 /* Check if the buffer is the current buffer. */
4196 if (reg_buf != curbuf || VIsual.lnum == 0)
4197 return FALSE;
4198
4199 if (VIsual_active)
4200 {
4201 if (lt(VIsual, wp->w_cursor))
4202 {
4203 top = VIsual;
4204 bot = wp->w_cursor;
4205 }
4206 else
4207 {
4208 top = wp->w_cursor;
4209 bot = VIsual;
4210 }
4211 mode = VIsual_mode;
4212 }
4213 else
4214 {
4215 if (lt(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end))
4216 {
4217 top = curbuf->b_visual.vi_start;
4218 bot = curbuf->b_visual.vi_end;
4219 }
4220 else
4221 {
4222 top = curbuf->b_visual.vi_end;
4223 bot = curbuf->b_visual.vi_start;
4224 }
4225 mode = curbuf->b_visual.vi_mode;
4226 }
4227 lnum = reglnum + reg_firstlnum;
4228 if (lnum < top.lnum || lnum > bot.lnum)
4229 return FALSE;
4230
4231 if (mode == 'v')
4232 {
4233 col = (colnr_T)(reginput - regline);
4234 if ((lnum == top.lnum && col < top.col)
4235 || (lnum == bot.lnum && col >= bot.col + (*p_sel != 'e')))
4236 return FALSE;
4237 }
4238 else if (mode == Ctrl_V)
4239 {
4240 getvvcol(wp, &top, &start, NULL, &end);
4241 getvvcol(wp, &bot, &start2, NULL, &end2);
4242 if (start2 < start)
4243 start = start2;
4244 if (end2 > end)
4245 end = end2;
4246 if (top.col == MAXCOL || bot.col == MAXCOL)
4247 end = MAXCOL;
4248 cols = win_linetabsize(wp, regline, (colnr_T)(reginput - regline));
4249 if (cols < start || cols > end - (*p_sel == 'e'))
4250 return FALSE;
4251 }
4252 return TRUE;
4253}
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004254
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004255#define ADVANCE_REGINPUT() mb_ptr_adv(reginput)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
4257/*
4258 * The arguments from BRACE_LIMITS are stored here. They are actually local
4259 * to regmatch(), but they are here to reduce the amount of stack space used
4260 * (it can be called recursively many times).
4261 */
4262static long bl_minval;
4263static long bl_maxval;
4264
4265/*
4266 * regmatch - main matching routine
4267 *
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004268 * Conceptually the strategy is simple: Check to see whether the current node
4269 * matches, push an item onto the regstack and loop to see whether the rest
4270 * matches, and then act accordingly. In practice we make some effort to
4271 * avoid using the regstack, in particular by going through "ordinary" nodes
4272 * (that don't need to know whether the rest of the match failed) by a nested
4273 * loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 *
4275 * Returns TRUE when there is a match. Leaves reginput and reglnum just after
4276 * the last matched character.
4277 * Returns FALSE when there is no match. Leaves reginput and reglnum in an
4278 * undefined state!
4279 */
4280 static int
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004281regmatch(scan)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 char_u *scan; /* Current node. */
4283{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004284 char_u *next; /* Next node. */
4285 int op;
4286 int c;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004287 regitem_T *rp;
4288 int no;
4289 int status; /* one of the RA_ values: */
4290#define RA_FAIL 1 /* something failed, abort */
4291#define RA_CONT 2 /* continue in inner loop */
4292#define RA_BREAK 3 /* break inner loop */
4293#define RA_MATCH 4 /* successful match */
4294#define RA_NOMATCH 5 /* didn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004296 /* Make "regstack" and "backpos" empty. They are allocated and freed in
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004297 * bt_regexec_both() to reduce malloc()/free() calls. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004298 regstack.ga_len = 0;
4299 backpos.ga_len = 0;
Bram Moolenaar582fd852005-03-28 20:58:01 +00004300
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004301 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004302 * Repeat until "regstack" is empty.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004303 */
4304 for (;;)
4305 {
Bram Moolenaar41f12052013-08-25 17:01:42 +02004306 /* Some patterns may take a long time to match, e.g., "\([a-z]\+\)\+Q".
4307 * Allow interrupting them with CTRL-C. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 fast_breakcheck();
4309
4310#ifdef DEBUG
4311 if (scan != NULL && regnarrate)
4312 {
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004313 mch_errmsg((char *)regprop(scan));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 mch_errmsg("(\n");
4315 }
4316#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004317
4318 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004319 * Repeat for items that can be matched sequentially, without using the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004320 * regstack.
4321 */
4322 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004324 if (got_int || scan == NULL)
4325 {
4326 status = RA_FAIL;
4327 break;
4328 }
4329 status = RA_CONT;
4330
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331#ifdef DEBUG
4332 if (regnarrate)
4333 {
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004334 mch_errmsg((char *)regprop(scan));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335 mch_errmsg("...\n");
4336# ifdef FEAT_SYN_HL
4337 if (re_extmatch_in != NULL)
4338 {
4339 int i;
4340
4341 mch_errmsg(_("External submatches:\n"));
4342 for (i = 0; i < NSUBEXP; i++)
4343 {
4344 mch_errmsg(" \"");
4345 if (re_extmatch_in->matches[i] != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02004346 mch_errmsg((char *)re_extmatch_in->matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 mch_errmsg("\"\n");
4348 }
4349 }
4350# endif
4351 }
4352#endif
4353 next = regnext(scan);
4354
4355 op = OP(scan);
4356 /* Check for character class with NL added. */
Bram Moolenaar640009d2006-10-17 16:48:26 +00004357 if (!reg_line_lbr && WITH_NL(op) && REG_MULTI
4358 && *reginput == NUL && reglnum <= reg_maxline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
4360 reg_nextline();
4361 }
4362 else if (reg_line_lbr && WITH_NL(op) && *reginput == '\n')
4363 {
4364 ADVANCE_REGINPUT();
4365 }
4366 else
4367 {
4368 if (WITH_NL(op))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004369 op -= ADD_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370#ifdef FEAT_MBYTE
4371 if (has_mbyte)
4372 c = (*mb_ptr2char)(reginput);
4373 else
4374#endif
4375 c = *reginput;
4376 switch (op)
4377 {
4378 case BOL:
4379 if (reginput != regline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004380 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 break;
4382
4383 case EOL:
4384 if (c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004385 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 break;
4387
4388 case RE_BOF:
Bram Moolenaara7139332007-12-09 18:26:22 +00004389 /* We're not at the beginning of the file when below the first
4390 * line where we started, not at the start of the line or we
4391 * didn't start at the first line of the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 if (reglnum != 0 || reginput != regline
Bram Moolenaara7139332007-12-09 18:26:22 +00004393 || (REG_MULTI && reg_firstlnum > 1))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004394 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 break;
4396
4397 case RE_EOF:
4398 if (reglnum != reg_maxline || c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004399 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 break;
4401
4402 case CURSOR:
4403 /* Check if the buffer is in a window and compare the
4404 * reg_win->w_cursor position to the match position. */
4405 if (reg_win == NULL
4406 || (reglnum + reg_firstlnum != reg_win->w_cursor.lnum)
4407 || ((colnr_T)(reginput - regline) != reg_win->w_cursor.col))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004408 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 break;
4410
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004411 case RE_MARK:
Bram Moolenaar044aa292013-06-04 21:27:38 +02004412 /* Compare the mark position to the match position. */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004413 {
4414 int mark = OPERAND(scan)[0];
4415 int cmp = OPERAND(scan)[1];
4416 pos_T *pos;
4417
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004418 pos = getmark_buf(reg_buf, mark, FALSE);
Bram Moolenaare9400a42007-05-06 13:04:32 +00004419 if (pos == NULL /* mark doesn't exist */
Bram Moolenaar044aa292013-06-04 21:27:38 +02004420 || pos->lnum <= 0 /* mark isn't set in reg_buf */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004421 || (pos->lnum == reglnum + reg_firstlnum
4422 ? (pos->col == (colnr_T)(reginput - regline)
4423 ? (cmp == '<' || cmp == '>')
4424 : (pos->col < (colnr_T)(reginput - regline)
4425 ? cmp != '>'
4426 : cmp != '<'))
4427 : (pos->lnum < reglnum + reg_firstlnum
4428 ? cmp != '>'
4429 : cmp != '<')))
4430 status = RA_NOMATCH;
4431 }
4432 break;
4433
4434 case RE_VISUAL:
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004435 if (!reg_match_visual())
Bram Moolenaardacd7de2013-06-04 18:28:48 +02004436 status = RA_NOMATCH;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004437 break;
4438
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 case RE_LNUM:
4440 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + reg_firstlnum),
4441 scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004442 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 break;
4444
4445 case RE_COL:
4446 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004447 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 break;
4449
4450 case RE_VCOL:
4451 if (!re_num_cmp((long_u)win_linetabsize(
4452 reg_win == NULL ? curwin : reg_win,
4453 regline, (colnr_T)(reginput - regline)) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004454 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455 break;
4456
4457 case BOW: /* \<word; reginput points to w */
4458 if (c == NUL) /* Can't match at end of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004459 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004461 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 {
4463 int this_class;
4464
4465 /* Get class of current and previous char (if it exists). */
Bram Moolenaarf813a182013-01-30 13:59:37 +01004466 this_class = mb_get_class_buf(reginput, reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 if (this_class <= 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004468 status = RA_NOMATCH; /* not on a word at all */
4469 else if (reg_prev_class() == this_class)
4470 status = RA_NOMATCH; /* previous char is in same word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 }
4472#endif
4473 else
4474 {
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01004475 if (!vim_iswordc_buf(c, reg_buf) || (reginput > regline
4476 && vim_iswordc_buf(reginput[-1], reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004477 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 }
4479 break;
4480
4481 case EOW: /* word\>; reginput points after d */
4482 if (reginput == regline) /* Can't match at start of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004483 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004485 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 {
4487 int this_class, prev_class;
4488
4489 /* Get class of current and previous char (if it exists). */
Bram Moolenaarf813a182013-01-30 13:59:37 +01004490 this_class = mb_get_class_buf(reginput, reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 prev_class = reg_prev_class();
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004492 if (this_class == prev_class
4493 || prev_class == 0 || prev_class == 1)
4494 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004497 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 {
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004499 if (!vim_iswordc_buf(reginput[-1], reg_buf)
4500 || (reginput[0] != NUL && vim_iswordc_buf(c, reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004501 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 }
4503 break; /* Matched with EOW */
4504
4505 case ANY:
Bram Moolenaare337e5f2013-01-30 18:21:51 +01004506 /* ANY does not match new lines. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004508 status = RA_NOMATCH;
4509 else
4510 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511 break;
4512
4513 case IDENT:
4514 if (!vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004515 status = RA_NOMATCH;
4516 else
4517 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 break;
4519
4520 case SIDENT:
4521 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004522 status = RA_NOMATCH;
4523 else
4524 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 break;
4526
4527 case KWORD:
Bram Moolenaarf813a182013-01-30 13:59:37 +01004528 if (!vim_iswordp_buf(reginput, reg_buf))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004529 status = RA_NOMATCH;
4530 else
4531 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 break;
4533
4534 case SKWORD:
Bram Moolenaarf813a182013-01-30 13:59:37 +01004535 if (VIM_ISDIGIT(*reginput) || !vim_iswordp_buf(reginput, reg_buf))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004536 status = RA_NOMATCH;
4537 else
4538 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 break;
4540
4541 case FNAME:
4542 if (!vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004543 status = RA_NOMATCH;
4544 else
4545 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 break;
4547
4548 case SFNAME:
4549 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004550 status = RA_NOMATCH;
4551 else
4552 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 break;
4554
4555 case PRINT:
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02004556 if (!vim_isprintc(PTR2CHAR(reginput)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004557 status = RA_NOMATCH;
4558 else
4559 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 break;
4561
4562 case SPRINT:
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02004563 if (VIM_ISDIGIT(*reginput) || !vim_isprintc(PTR2CHAR(reginput)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004564 status = RA_NOMATCH;
4565 else
4566 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 break;
4568
4569 case WHITE:
4570 if (!vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004571 status = RA_NOMATCH;
4572 else
4573 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 break;
4575
4576 case NWHITE:
4577 if (c == NUL || vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004578 status = RA_NOMATCH;
4579 else
4580 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 break;
4582
4583 case DIGIT:
4584 if (!ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004585 status = RA_NOMATCH;
4586 else
4587 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 break;
4589
4590 case NDIGIT:
4591 if (c == NUL || ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004592 status = RA_NOMATCH;
4593 else
4594 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 break;
4596
4597 case HEX:
4598 if (!ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004599 status = RA_NOMATCH;
4600 else
4601 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 break;
4603
4604 case NHEX:
4605 if (c == NUL || ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004606 status = RA_NOMATCH;
4607 else
4608 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 break;
4610
4611 case OCTAL:
4612 if (!ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004613 status = RA_NOMATCH;
4614 else
4615 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 break;
4617
4618 case NOCTAL:
4619 if (c == NUL || ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004620 status = RA_NOMATCH;
4621 else
4622 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 break;
4624
4625 case WORD:
4626 if (!ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004627 status = RA_NOMATCH;
4628 else
4629 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 break;
4631
4632 case NWORD:
4633 if (c == NUL || ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004634 status = RA_NOMATCH;
4635 else
4636 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 break;
4638
4639 case HEAD:
4640 if (!ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004641 status = RA_NOMATCH;
4642 else
4643 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 break;
4645
4646 case NHEAD:
4647 if (c == NUL || ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004648 status = RA_NOMATCH;
4649 else
4650 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 break;
4652
4653 case ALPHA:
4654 if (!ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004655 status = RA_NOMATCH;
4656 else
4657 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 break;
4659
4660 case NALPHA:
4661 if (c == NUL || ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004662 status = RA_NOMATCH;
4663 else
4664 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665 break;
4666
4667 case LOWER:
4668 if (!ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004669 status = RA_NOMATCH;
4670 else
4671 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 break;
4673
4674 case NLOWER:
4675 if (c == NUL || ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004676 status = RA_NOMATCH;
4677 else
4678 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 break;
4680
4681 case UPPER:
4682 if (!ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004683 status = RA_NOMATCH;
4684 else
4685 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 break;
4687
4688 case NUPPER:
4689 if (c == NUL || ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004690 status = RA_NOMATCH;
4691 else
4692 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 break;
4694
4695 case EXACTLY:
4696 {
4697 int len;
4698 char_u *opnd;
4699
4700 opnd = OPERAND(scan);
4701 /* Inline the first byte, for speed. */
4702 if (*opnd != *reginput
4703 && (!ireg_ic || (
4704#ifdef FEAT_MBYTE
4705 !enc_utf8 &&
4706#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00004707 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput))))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004708 status = RA_NOMATCH;
4709 else if (*opnd == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 {
4711 /* match empty string always works; happens when "~" is
4712 * empty. */
4713 }
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004714 else
4715 {
4716 if (opnd[1] == NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717#ifdef FEAT_MBYTE
4718 && !(enc_utf8 && ireg_ic)
4719#endif
4720 )
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004721 {
4722 len = 1; /* matched a single byte above */
4723 }
4724 else
4725 {
4726 /* Need to match first byte again for multi-byte. */
4727 len = (int)STRLEN(opnd);
4728 if (cstrncmp(opnd, reginput, &len) != 0)
4729 status = RA_NOMATCH;
4730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731#ifdef FEAT_MBYTE
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004732 /* Check for following composing character, unless %C
4733 * follows (skips over all composing chars). */
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004734 if (status != RA_NOMATCH
4735 && enc_utf8
4736 && UTF_COMPOSINGLIKE(reginput, reginput + len)
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004737 && !ireg_icombine
4738 && OP(next) != RE_COMPOSING)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 {
4740 /* raaron: This code makes a composing character get
4741 * ignored, which is the correct behavior (sometimes)
4742 * for voweled Hebrew texts. */
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004743 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745#endif
Bram Moolenaar6082bea2014-05-13 18:04:00 +02004746 if (status != RA_NOMATCH)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004747 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 }
4749 }
4750 break;
4751
4752 case ANYOF:
4753 case ANYBUT:
4754 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004755 status = RA_NOMATCH;
4756 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF))
4757 status = RA_NOMATCH;
4758 else
4759 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 break;
4761
4762#ifdef FEAT_MBYTE
4763 case MULTIBYTECODE:
4764 if (has_mbyte)
4765 {
4766 int i, len;
4767 char_u *opnd;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004768 int opndc = 0, inpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769
4770 opnd = OPERAND(scan);
4771 /* Safety check (just in case 'encoding' was changed since
4772 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004773 if ((len = (*mb_ptr2len)(opnd)) < 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004774 {
4775 status = RA_NOMATCH;
4776 break;
4777 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004778 if (enc_utf8)
4779 opndc = mb_ptr2char(opnd);
4780 if (enc_utf8 && utf_iscomposing(opndc))
4781 {
4782 /* When only a composing char is given match at any
4783 * position where that composing char appears. */
4784 status = RA_NOMATCH;
Bram Moolenaar0e462412015-03-31 14:17:31 +02004785 for (i = 0; reginput[i] != NUL;
4786 i += utf_ptr2len(reginput + i))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004787 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004788 inpc = mb_ptr2char(reginput + i);
4789 if (!utf_iscomposing(inpc))
4790 {
4791 if (i > 0)
4792 break;
4793 }
4794 else if (opndc == inpc)
4795 {
4796 /* Include all following composing chars. */
4797 len = i + mb_ptr2len(reginput + i);
4798 status = RA_MATCH;
4799 break;
4800 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004801 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004802 }
4803 else
4804 for (i = 0; i < len; ++i)
4805 if (opnd[i] != reginput[i])
4806 {
4807 status = RA_NOMATCH;
4808 break;
4809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 reginput += len;
4811 }
4812 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004813 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 break;
4815#endif
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004816 case RE_COMPOSING:
4817#ifdef FEAT_MBYTE
4818 if (enc_utf8)
4819 {
4820 /* Skip composing characters. */
4821 while (utf_iscomposing(utf_ptr2char(reginput)))
4822 mb_cptr_adv(reginput);
4823 }
4824#endif
4825 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826
4827 case NOTHING:
4828 break;
4829
4830 case BACK:
Bram Moolenaar582fd852005-03-28 20:58:01 +00004831 {
4832 int i;
4833 backpos_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834
Bram Moolenaar582fd852005-03-28 20:58:01 +00004835 /*
4836 * When we run into BACK we need to check if we don't keep
4837 * looping without matching any input. The second and later
4838 * times a BACK is encountered it fails if the input is still
4839 * at the same position as the previous time.
4840 * The positions are stored in "backpos" and found by the
4841 * current value of "scan", the position in the RE program.
4842 */
4843 bp = (backpos_T *)backpos.ga_data;
4844 for (i = 0; i < backpos.ga_len; ++i)
4845 if (bp[i].bp_scan == scan)
4846 break;
4847 if (i == backpos.ga_len)
4848 {
4849 /* First time at this BACK, make room to store the pos. */
4850 if (ga_grow(&backpos, 1) == FAIL)
4851 status = RA_FAIL;
4852 else
4853 {
4854 /* get "ga_data" again, it may have changed */
4855 bp = (backpos_T *)backpos.ga_data;
4856 bp[i].bp_scan = scan;
4857 ++backpos.ga_len;
4858 }
4859 }
4860 else if (reg_save_equal(&bp[i].bp_pos))
4861 /* Still at same position as last time, fail. */
4862 status = RA_NOMATCH;
4863
4864 if (status != RA_FAIL && status != RA_NOMATCH)
4865 reg_save(&bp[i].bp_pos, &backpos);
4866 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004867 break;
4868
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 case MOPEN + 0: /* Match start: \zs */
4870 case MOPEN + 1: /* \( */
4871 case MOPEN + 2:
4872 case MOPEN + 3:
4873 case MOPEN + 4:
4874 case MOPEN + 5:
4875 case MOPEN + 6:
4876 case MOPEN + 7:
4877 case MOPEN + 8:
4878 case MOPEN + 9:
4879 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880 no = op - MOPEN;
4881 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004882 rp = regstack_push(RS_MOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004883 if (rp == NULL)
4884 status = RA_FAIL;
4885 else
4886 {
4887 rp->rs_no = no;
4888 save_se(&rp->rs_un.sesave, &reg_startpos[no],
4889 &reg_startp[no]);
4890 /* We simply continue and handle the result when done. */
4891 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004892 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004893 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894
4895 case NOPEN: /* \%( */
4896 case NCLOSE: /* \) after \%( */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004897 if (regstack_push(RS_NOPEN, scan) == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004898 status = RA_FAIL;
4899 /* We simply continue and handle the result when done. */
4900 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901
4902#ifdef FEAT_SYN_HL
4903 case ZOPEN + 1:
4904 case ZOPEN + 2:
4905 case ZOPEN + 3:
4906 case ZOPEN + 4:
4907 case ZOPEN + 5:
4908 case ZOPEN + 6:
4909 case ZOPEN + 7:
4910 case ZOPEN + 8:
4911 case ZOPEN + 9:
4912 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 no = op - ZOPEN;
4914 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004915 rp = regstack_push(RS_ZOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004916 if (rp == NULL)
4917 status = RA_FAIL;
4918 else
4919 {
4920 rp->rs_no = no;
4921 save_se(&rp->rs_un.sesave, &reg_startzpos[no],
4922 &reg_startzp[no]);
4923 /* We simply continue and handle the result when done. */
4924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004926 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927#endif
4928
4929 case MCLOSE + 0: /* Match end: \ze */
4930 case MCLOSE + 1: /* \) */
4931 case MCLOSE + 2:
4932 case MCLOSE + 3:
4933 case MCLOSE + 4:
4934 case MCLOSE + 5:
4935 case MCLOSE + 6:
4936 case MCLOSE + 7:
4937 case MCLOSE + 8:
4938 case MCLOSE + 9:
4939 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 no = op - MCLOSE;
4941 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004942 rp = regstack_push(RS_MCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004943 if (rp == NULL)
4944 status = RA_FAIL;
4945 else
4946 {
4947 rp->rs_no = no;
4948 save_se(&rp->rs_un.sesave, &reg_endpos[no], &reg_endp[no]);
4949 /* We simply continue and handle the result when done. */
4950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004952 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953
4954#ifdef FEAT_SYN_HL
4955 case ZCLOSE + 1: /* \) after \z( */
4956 case ZCLOSE + 2:
4957 case ZCLOSE + 3:
4958 case ZCLOSE + 4:
4959 case ZCLOSE + 5:
4960 case ZCLOSE + 6:
4961 case ZCLOSE + 7:
4962 case ZCLOSE + 8:
4963 case ZCLOSE + 9:
4964 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 no = op - ZCLOSE;
4966 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004967 rp = regstack_push(RS_ZCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004968 if (rp == NULL)
4969 status = RA_FAIL;
4970 else
4971 {
4972 rp->rs_no = no;
4973 save_se(&rp->rs_un.sesave, &reg_endzpos[no],
4974 &reg_endzp[no]);
4975 /* We simply continue and handle the result when done. */
4976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004978 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979#endif
4980
4981 case BACKREF + 1:
4982 case BACKREF + 2:
4983 case BACKREF + 3:
4984 case BACKREF + 4:
4985 case BACKREF + 5:
4986 case BACKREF + 6:
4987 case BACKREF + 7:
4988 case BACKREF + 8:
4989 case BACKREF + 9:
4990 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992
4993 no = op - BACKREF;
4994 cleanup_subexpr();
4995 if (!REG_MULTI) /* Single-line regexp */
4996 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004997 if (reg_startp[no] == NULL || reg_endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 {
4999 /* Backref was not set: Match an empty string. */
5000 len = 0;
5001 }
5002 else
5003 {
5004 /* Compare current input with back-ref in the same
5005 * line. */
5006 len = (int)(reg_endp[no] - reg_startp[no]);
5007 if (cstrncmp(reg_startp[no], reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005008 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 }
5010 }
5011 else /* Multi-line regexp */
5012 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00005013 if (reg_startpos[no].lnum < 0 || 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 {
5020 if (reg_startpos[no].lnum == reglnum
5021 && reg_endpos[no].lnum == reglnum)
5022 {
5023 /* Compare back-ref within the current line. */
5024 len = reg_endpos[no].col - reg_startpos[no].col;
5025 if (cstrncmp(regline + reg_startpos[no].col,
5026 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005027 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
5029 else
5030 {
5031 /* Messy situation: Need to compare between two
5032 * lines. */
Bram Moolenaar141f6bb2013-06-15 15:09:50 +02005033 int r = match_with_backref(
Bram Moolenaar580abea2013-06-14 20:31:28 +02005034 reg_startpos[no].lnum,
5035 reg_startpos[no].col,
5036 reg_endpos[no].lnum,
5037 reg_endpos[no].col,
Bram Moolenaar4cff8fa2013-06-14 22:48:54 +02005038 &len);
Bram Moolenaar141f6bb2013-06-15 15:09:50 +02005039
5040 if (r != RA_MATCH)
5041 status = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 }
5043 }
5044 }
5045
5046 /* Matched the backref, skip over it. */
5047 reginput += len;
5048 }
5049 break;
5050
5051#ifdef FEAT_SYN_HL
5052 case ZREF + 1:
5053 case ZREF + 2:
5054 case ZREF + 3:
5055 case ZREF + 4:
5056 case ZREF + 5:
5057 case ZREF + 6:
5058 case ZREF + 7:
5059 case ZREF + 8:
5060 case ZREF + 9:
5061 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 int len;
5063
5064 cleanup_zsubexpr();
5065 no = op - ZREF;
5066 if (re_extmatch_in != NULL
5067 && re_extmatch_in->matches[no] != NULL)
5068 {
5069 len = (int)STRLEN(re_extmatch_in->matches[no]);
5070 if (cstrncmp(re_extmatch_in->matches[no],
5071 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005072 status = RA_NOMATCH;
5073 else
5074 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075 }
5076 else
5077 {
5078 /* Backref was not set: Match an empty string. */
5079 }
5080 }
5081 break;
5082#endif
5083
5084 case BRANCH:
5085 {
5086 if (OP(next) != BRANCH) /* No choice. */
5087 next = OPERAND(scan); /* Avoid recursion. */
5088 else
5089 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005090 rp = regstack_push(RS_BRANCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005091 if (rp == NULL)
5092 status = RA_FAIL;
5093 else
5094 status = RA_BREAK; /* rest is below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 }
5096 }
5097 break;
5098
5099 case BRACE_LIMITS:
5100 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 if (OP(next) == BRACE_SIMPLE)
5102 {
5103 bl_minval = OPERAND_MIN(scan);
5104 bl_maxval = OPERAND_MAX(scan);
5105 }
5106 else if (OP(next) >= BRACE_COMPLEX
5107 && OP(next) < BRACE_COMPLEX + 10)
5108 {
5109 no = OP(next) - BRACE_COMPLEX;
5110 brace_min[no] = OPERAND_MIN(scan);
5111 brace_max[no] = OPERAND_MAX(scan);
5112 brace_count[no] = 0;
5113 }
5114 else
5115 {
5116 EMSG(_(e_internal)); /* Shouldn't happen */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005117 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 }
5119 }
5120 break;
5121
5122 case BRACE_COMPLEX + 0:
5123 case BRACE_COMPLEX + 1:
5124 case BRACE_COMPLEX + 2:
5125 case BRACE_COMPLEX + 3:
5126 case BRACE_COMPLEX + 4:
5127 case BRACE_COMPLEX + 5:
5128 case BRACE_COMPLEX + 6:
5129 case BRACE_COMPLEX + 7:
5130 case BRACE_COMPLEX + 8:
5131 case BRACE_COMPLEX + 9:
5132 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 no = op - BRACE_COMPLEX;
5134 ++brace_count[no];
5135
5136 /* If not matched enough times yet, try one more */
5137 if (brace_count[no] <= (brace_min[no] <= brace_max[no]
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005138 ? brace_min[no] : brace_max[no]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005140 rp = regstack_push(RS_BRCPLX_MORE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005141 if (rp == NULL)
5142 status = RA_FAIL;
5143 else
5144 {
5145 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005146 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005147 next = OPERAND(scan);
5148 /* We continue and handle the result when done. */
5149 }
5150 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005151 }
5152
5153 /* If matched enough times, may try matching some more */
5154 if (brace_min[no] <= brace_max[no])
5155 {
5156 /* Range is the normal way around, use longest match */
5157 if (brace_count[no] <= brace_max[no])
5158 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005159 rp = regstack_push(RS_BRCPLX_LONG, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005160 if (rp == NULL)
5161 status = RA_FAIL;
5162 else
5163 {
5164 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005165 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005166 next = OPERAND(scan);
5167 /* We continue and handle the result when done. */
5168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 }
5170 }
5171 else
5172 {
5173 /* Range is backwards, use shortest match first */
5174 if (brace_count[no] <= brace_min[no])
5175 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005176 rp = regstack_push(RS_BRCPLX_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005177 if (rp == NULL)
5178 status = RA_FAIL;
5179 else
5180 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005181 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005182 /* We continue and handle the result when done. */
5183 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 }
5185 }
5186 }
5187 break;
5188
5189 case BRACE_SIMPLE:
5190 case STAR:
5191 case PLUS:
5192 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005193 regstar_T rst;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194
5195 /*
5196 * Lookahead to avoid useless match attempts when we know
5197 * what character comes next.
5198 */
5199 if (OP(next) == EXACTLY)
5200 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005201 rst.nextb = *OPERAND(next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 if (ireg_ic)
5203 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005204 if (MB_ISUPPER(rst.nextb))
5205 rst.nextb_ic = MB_TOLOWER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 else
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005207 rst.nextb_ic = MB_TOUPPER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 }
5209 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005210 rst.nextb_ic = rst.nextb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211 }
5212 else
5213 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005214 rst.nextb = NUL;
5215 rst.nextb_ic = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216 }
5217 if (op != BRACE_SIMPLE)
5218 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005219 rst.minval = (op == STAR) ? 0 : 1;
5220 rst.maxval = MAX_LIMIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005221 }
5222 else
5223 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005224 rst.minval = bl_minval;
5225 rst.maxval = bl_maxval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 }
5227
5228 /*
5229 * When maxval > minval, try matching as much as possible, up
5230 * to maxval. When maxval < minval, try matching at least the
5231 * minimal number (since the range is backwards, that's also
5232 * maxval!).
5233 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005234 rst.count = regrepeat(OPERAND(scan), rst.maxval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005237 status = RA_FAIL;
5238 break;
5239 }
5240 if (rst.minval <= rst.maxval
5241 ? rst.count >= rst.minval : rst.count >= rst.maxval)
5242 {
5243 /* It could match. Prepare for trying to match what
5244 * follows. The code is below. Parameters are stored in
5245 * a regstar_T on the regstack. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005246 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005247 {
5248 EMSG(_(e_maxmempat));
5249 status = RA_FAIL;
5250 }
5251 else if (ga_grow(&regstack, sizeof(regstar_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005252 status = RA_FAIL;
5253 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005255 regstack.ga_len += sizeof(regstar_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005256 rp = regstack_push(rst.minval <= rst.maxval
Bram Moolenaar582fd852005-03-28 20:58:01 +00005257 ? RS_STAR_LONG : RS_STAR_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005258 if (rp == NULL)
5259 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005261 {
5262 *(((regstar_T *)rp) - 1) = rst;
5263 status = RA_BREAK; /* skip the restore bits */
5264 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265 }
5266 }
5267 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005268 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270 }
5271 break;
5272
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005273 case NOMATCH:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 case MATCH:
5275 case SUBPAT:
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005276 rp = regstack_push(RS_NOMATCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005277 if (rp == NULL)
5278 status = RA_FAIL;
5279 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005281 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005282 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005283 next = OPERAND(scan);
5284 /* We continue and handle the result when done. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 }
5286 break;
5287
5288 case BEHIND:
5289 case NOBEHIND:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005290 /* Need a bit of room to store extra positions. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005291 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005292 {
5293 EMSG(_(e_maxmempat));
5294 status = RA_FAIL;
5295 }
5296 else if (ga_grow(&regstack, sizeof(regbehind_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005297 status = RA_FAIL;
5298 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005300 regstack.ga_len += sizeof(regbehind_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005301 rp = regstack_push(RS_BEHIND1, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005302 if (rp == NULL)
5303 status = RA_FAIL;
5304 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005306 /* Need to save the subexpr to be able to restore them
5307 * when there is a match but we don't use it. */
5308 save_subexpr(((regbehind_T *)rp) - 1);
5309
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005310 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005311 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005312 /* First try if what follows matches. If it does then we
5313 * check the behind match by looping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005316 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317
5318 case BHPOS:
5319 if (REG_MULTI)
5320 {
5321 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline)
5322 || behind_pos.rs_u.pos.lnum != reglnum)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005323 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 }
5325 else if (behind_pos.rs_u.ptr != reginput)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005326 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 break;
5328
5329 case NEWL:
Bram Moolenaar640009d2006-10-17 16:48:26 +00005330 if ((c != NUL || !REG_MULTI || reglnum > reg_maxline
5331 || reg_line_lbr) && (c != '\n' || !reg_line_lbr))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005332 status = RA_NOMATCH;
5333 else if (reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005334 ADVANCE_REGINPUT();
5335 else
5336 reg_nextline();
5337 break;
5338
5339 case END:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005340 status = RA_MATCH; /* Success! */
5341 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342
5343 default:
5344 EMSG(_(e_re_corr));
5345#ifdef DEBUG
5346 printf("Illegal op code %d\n", op);
5347#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005348 status = RA_FAIL;
5349 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 }
5351 }
5352
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005353 /* If we can't continue sequentially, break the inner loop. */
5354 if (status != RA_CONT)
5355 break;
5356
5357 /* Continue in inner loop, advance to next item. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 scan = next;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005359
5360 } /* end of inner loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361
5362 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005363 * If there is something on the regstack execute the code for the state.
Bram Moolenaar582fd852005-03-28 20:58:01 +00005364 * If the state is popped then loop and use the older state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005366 while (regstack.ga_len > 0 && status != RA_FAIL)
5367 {
5368 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
5369 switch (rp->rs_state)
5370 {
5371 case RS_NOPEN:
5372 /* Result is passed on as-is, simply pop the state. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005373 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005374 break;
5375
5376 case RS_MOPEN:
5377 /* Pop the state. Restore pointers when there is no match. */
5378 if (status == RA_NOMATCH)
5379 restore_se(&rp->rs_un.sesave, &reg_startpos[rp->rs_no],
5380 &reg_startp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005381 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005382 break;
5383
5384#ifdef FEAT_SYN_HL
5385 case RS_ZOPEN:
5386 /* Pop the state. Restore pointers when there is no match. */
5387 if (status == RA_NOMATCH)
5388 restore_se(&rp->rs_un.sesave, &reg_startzpos[rp->rs_no],
5389 &reg_startzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005390 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005391 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005393
5394 case RS_MCLOSE:
5395 /* Pop the state. Restore pointers when there is no match. */
5396 if (status == RA_NOMATCH)
5397 restore_se(&rp->rs_un.sesave, &reg_endpos[rp->rs_no],
5398 &reg_endp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005399 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005400 break;
5401
5402#ifdef FEAT_SYN_HL
5403 case RS_ZCLOSE:
5404 /* Pop the state. Restore pointers when there is no match. */
5405 if (status == RA_NOMATCH)
5406 restore_se(&rp->rs_un.sesave, &reg_endzpos[rp->rs_no],
5407 &reg_endzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005408 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005409 break;
5410#endif
5411
5412 case RS_BRANCH:
5413 if (status == RA_MATCH)
5414 /* this branch matched, use it */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005415 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005416 else
5417 {
5418 if (status != RA_BREAK)
5419 {
5420 /* After a non-matching branch: try next one. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005421 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005422 scan = rp->rs_scan;
5423 }
5424 if (scan == NULL || OP(scan) != BRANCH)
5425 {
5426 /* no more branches, didn't find a match */
5427 status = RA_NOMATCH;
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005428 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005429 }
5430 else
5431 {
5432 /* Prepare to try a branch. */
5433 rp->rs_scan = regnext(scan);
Bram Moolenaar582fd852005-03-28 20:58:01 +00005434 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005435 scan = OPERAND(scan);
5436 }
5437 }
5438 break;
5439
5440 case RS_BRCPLX_MORE:
5441 /* Pop the state. Restore pointers when there is no match. */
5442 if (status == RA_NOMATCH)
5443 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005444 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005445 --brace_count[rp->rs_no]; /* decrement match count */
5446 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005447 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005448 break;
5449
5450 case RS_BRCPLX_LONG:
5451 /* Pop the state. Restore pointers when there is no match. */
5452 if (status == RA_NOMATCH)
5453 {
5454 /* There was no match, but we did find enough matches. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005455 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005456 --brace_count[rp->rs_no];
5457 /* continue with the items after "\{}" */
5458 status = RA_CONT;
5459 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005460 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005461 if (status == RA_CONT)
5462 scan = regnext(scan);
5463 break;
5464
5465 case RS_BRCPLX_SHORT:
5466 /* Pop the state. Restore pointers when there is no match. */
5467 if (status == RA_NOMATCH)
5468 /* There was no match, try to match one more item. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005469 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005470 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005471 if (status == RA_NOMATCH)
5472 {
5473 scan = OPERAND(scan);
5474 status = RA_CONT;
5475 }
5476 break;
5477
5478 case RS_NOMATCH:
5479 /* Pop the state. If the operand matches for NOMATCH or
5480 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup,
5481 * except for SUBPAT, and continue with the next item. */
5482 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH))
5483 status = RA_NOMATCH;
5484 else
5485 {
5486 status = RA_CONT;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005487 if (rp->rs_no != SUBPAT) /* zero-width */
5488 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005489 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005490 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005491 if (status == RA_CONT)
5492 scan = regnext(scan);
5493 break;
5494
5495 case RS_BEHIND1:
5496 if (status == RA_NOMATCH)
5497 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005498 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005499 regstack.ga_len -= sizeof(regbehind_T);
5500 }
5501 else
5502 {
5503 /* The stuff after BEHIND/NOBEHIND matches. Now try if
5504 * the behind part does (not) match before the current
5505 * position in the input. This must be done at every
5506 * position in the input and checking if the match ends at
5507 * the current position. */
5508
5509 /* save the position after the found match for next */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005510 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005511
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005512 /* Start looking for a match with operand at the current
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00005513 * position. Go back one character until we find the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005514 * result, hitting the start of the line or the previous
5515 * line (for multi-line matching).
5516 * Set behind_pos to where the match should end, BHPOS
5517 * will match it. Save the current value. */
5518 (((regbehind_T *)rp) - 1)->save_behind = behind_pos;
5519 behind_pos = rp->rs_un.regsave;
5520
5521 rp->rs_state = RS_BEHIND2;
5522
Bram Moolenaar582fd852005-03-28 20:58:01 +00005523 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005524 scan = OPERAND(rp->rs_scan) + 4;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005525 }
5526 break;
5527
5528 case RS_BEHIND2:
5529 /*
5530 * Looping for BEHIND / NOBEHIND match.
5531 */
5532 if (status == RA_MATCH && reg_save_equal(&behind_pos))
5533 {
5534 /* found a match that ends where "next" started */
5535 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5536 if (rp->rs_no == BEHIND)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005537 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5538 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005539 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005540 {
5541 /* But we didn't want a match. Need to restore the
5542 * subexpr, because what follows matched, so they have
5543 * been set. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005544 status = RA_NOMATCH;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005545 restore_subexpr(((regbehind_T *)rp) - 1);
5546 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005547 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005548 regstack.ga_len -= sizeof(regbehind_T);
5549 }
5550 else
5551 {
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005552 long limit;
5553
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005554 /* No match or a match that doesn't end where we want it: Go
5555 * back one character. May go to previous line once. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005556 no = OK;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005557 limit = OPERAND_MIN(rp->rs_scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005558 if (REG_MULTI)
5559 {
Bram Moolenaar61602c52013-06-01 19:54:43 +02005560 if (limit > 0
5561 && ((rp->rs_un.regsave.rs_u.pos.lnum
5562 < behind_pos.rs_u.pos.lnum
5563 ? (colnr_T)STRLEN(regline)
5564 : behind_pos.rs_u.pos.col)
5565 - rp->rs_un.regsave.rs_u.pos.col >= limit))
5566 no = FAIL;
5567 else if (rp->rs_un.regsave.rs_u.pos.col == 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005568 {
5569 if (rp->rs_un.regsave.rs_u.pos.lnum
5570 < behind_pos.rs_u.pos.lnum
5571 || reg_getline(
5572 --rp->rs_un.regsave.rs_u.pos.lnum)
5573 == NULL)
5574 no = FAIL;
5575 else
5576 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005577 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005578 rp->rs_un.regsave.rs_u.pos.col =
5579 (colnr_T)STRLEN(regline);
5580 }
5581 }
5582 else
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005583 {
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005584#ifdef FEAT_MBYTE
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005585 if (has_mbyte)
5586 rp->rs_un.regsave.rs_u.pos.col -=
5587 (*mb_head_off)(regline, regline
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005588 + rp->rs_un.regsave.rs_u.pos.col - 1) + 1;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005589 else
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005590#endif
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005591 --rp->rs_un.regsave.rs_u.pos.col;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005592 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005593 }
5594 else
5595 {
5596 if (rp->rs_un.regsave.rs_u.ptr == regline)
5597 no = FAIL;
5598 else
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005599 {
5600 mb_ptr_back(regline, rp->rs_un.regsave.rs_u.ptr);
5601 if (limit > 0 && (long)(behind_pos.rs_u.ptr
5602 - rp->rs_un.regsave.rs_u.ptr) > limit)
5603 no = FAIL;
5604 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005605 }
5606 if (no == OK)
5607 {
5608 /* Advanced, prepare for finding match again. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005609 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005610 scan = OPERAND(rp->rs_scan) + 4;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005611 if (status == RA_MATCH)
5612 {
5613 /* We did match, so subexpr may have been changed,
5614 * need to restore them for the next try. */
5615 status = RA_NOMATCH;
5616 restore_subexpr(((regbehind_T *)rp) - 1);
5617 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005618 }
5619 else
5620 {
5621 /* Can't advance. For NOBEHIND that's a match. */
5622 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5623 if (rp->rs_no == NOBEHIND)
5624 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005625 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5626 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005627 status = RA_MATCH;
5628 }
5629 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005630 {
5631 /* We do want a proper match. Need to restore the
5632 * subexpr if we had a match, because they may have
5633 * been set. */
5634 if (status == RA_MATCH)
5635 {
5636 status = RA_NOMATCH;
5637 restore_subexpr(((regbehind_T *)rp) - 1);
5638 }
5639 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005640 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005641 regstack.ga_len -= sizeof(regbehind_T);
5642 }
5643 }
5644 break;
5645
5646 case RS_STAR_LONG:
5647 case RS_STAR_SHORT:
5648 {
5649 regstar_T *rst = ((regstar_T *)rp) - 1;
5650
5651 if (status == RA_MATCH)
5652 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005653 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005654 regstack.ga_len -= sizeof(regstar_T);
5655 break;
5656 }
5657
5658 /* Tried once already, restore input pointers. */
5659 if (status != RA_BREAK)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005660 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005661
5662 /* Repeat until we found a position where it could match. */
5663 for (;;)
5664 {
5665 if (status != RA_BREAK)
5666 {
5667 /* Tried first position already, advance. */
5668 if (rp->rs_state == RS_STAR_LONG)
5669 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005670 /* Trying for longest match, but couldn't or
5671 * didn't match -- back up one char. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005672 if (--rst->count < rst->minval)
5673 break;
5674 if (reginput == regline)
5675 {
5676 /* backup to last char of previous line */
5677 --reglnum;
5678 regline = reg_getline(reglnum);
5679 /* Just in case regrepeat() didn't count
5680 * right. */
5681 if (regline == NULL)
5682 break;
5683 reginput = regline + STRLEN(regline);
5684 fast_breakcheck();
5685 }
5686 else
5687 mb_ptr_back(regline, reginput);
5688 }
5689 else
5690 {
5691 /* Range is backwards, use shortest match first.
5692 * Careful: maxval and minval are exchanged!
5693 * Couldn't or didn't match: try advancing one
5694 * char. */
5695 if (rst->count == rst->minval
5696 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0)
5697 break;
5698 ++rst->count;
5699 }
5700 if (got_int)
5701 break;
5702 }
5703 else
5704 status = RA_NOMATCH;
5705
5706 /* If it could match, try it. */
5707 if (rst->nextb == NUL || *reginput == rst->nextb
5708 || *reginput == rst->nextb_ic)
5709 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005710 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005711 scan = regnext(rp->rs_scan);
5712 status = RA_CONT;
5713 break;
5714 }
5715 }
5716 if (status != RA_CONT)
5717 {
5718 /* Failed. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005719 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005720 regstack.ga_len -= sizeof(regstar_T);
5721 status = RA_NOMATCH;
5722 }
5723 }
5724 break;
5725 }
5726
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005727 /* If we want to continue the inner loop or didn't pop a state
5728 * continue matching loop */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005729 if (status == RA_CONT || rp == (regitem_T *)
5730 ((char *)regstack.ga_data + regstack.ga_len) - 1)
5731 break;
5732 }
5733
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005734 /* May need to continue with the inner loop, starting at "scan". */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005735 if (status == RA_CONT)
5736 continue;
5737
5738 /*
5739 * If the regstack is empty or something failed we are done.
5740 */
5741 if (regstack.ga_len == 0 || status == RA_FAIL)
5742 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005743 if (scan == NULL)
5744 {
5745 /*
5746 * We get here only if there's trouble -- normally "case END" is
5747 * the terminating point.
5748 */
5749 EMSG(_(e_re_corr));
5750#ifdef DEBUG
5751 printf("Premature EOL\n");
5752#endif
5753 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005754 if (status == RA_FAIL)
5755 got_int = TRUE;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005756 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 Moolenaara7fc0102005-05-18 22:17:12 +00005769regstack_push(state, scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005770 regstate_T state;
5771 char_u *scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005772{
5773 regitem_T *rp;
5774
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005775 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005776 {
5777 EMSG(_(e_maxmempat));
5778 return NULL;
5779 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005780 if (ga_grow(&regstack, sizeof(regitem_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005781 return NULL;
5782
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005783 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005784 rp->rs_state = state;
5785 rp->rs_scan = scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005786
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005787 regstack.ga_len += sizeof(regitem_T);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005788 return rp;
5789}
5790
5791/*
5792 * Pop an item from the regstack.
5793 */
5794 static void
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005795regstack_pop(scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005796 char_u **scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005797{
5798 regitem_T *rp;
5799
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005800 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005801 *scan = rp->rs_scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005802
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005803 regstack.ga_len -= sizeof(regitem_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005804}
5805
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806/*
5807 * regrepeat - repeatedly match something simple, return how many.
5808 * Advances reginput (and reglnum) to just after the matched chars.
5809 */
5810 static int
5811regrepeat(p, maxcount)
5812 char_u *p;
5813 long maxcount; /* maximum number of matches allowed */
5814{
5815 long count = 0;
5816 char_u *scan;
5817 char_u *opnd;
5818 int mask;
5819 int testval = 0;
5820
5821 scan = reginput; /* Make local copy of reginput for speed. */
5822 opnd = OPERAND(p);
5823 switch (OP(p))
5824 {
5825 case ANY:
5826 case ANY + ADD_NL:
5827 while (count < maxcount)
5828 {
5829 /* Matching anything means we continue until end-of-line (or
5830 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5831 while (*scan != NUL && count < maxcount)
5832 {
5833 ++count;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005834 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005835 }
Bram Moolenaar640009d2006-10-17 16:48:26 +00005836 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5837 || reg_line_lbr || count == maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 break;
5839 ++count; /* count the line-break */
5840 reg_nextline();
5841 scan = reginput;
5842 if (got_int)
5843 break;
5844 }
5845 break;
5846
5847 case IDENT:
5848 case IDENT + ADD_NL:
5849 testval = TRUE;
5850 /*FALLTHROUGH*/
5851 case SIDENT:
5852 case SIDENT + ADD_NL:
5853 while (count < maxcount)
5854 {
Bram Moolenaar09ea9fc2013-05-21 00:03:02 +02005855 if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005857 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 }
5859 else if (*scan == NUL)
5860 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005861 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5862 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 break;
5864 reg_nextline();
5865 scan = reginput;
5866 if (got_int)
5867 break;
5868 }
5869 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5870 ++scan;
5871 else
5872 break;
5873 ++count;
5874 }
5875 break;
5876
5877 case KWORD:
5878 case KWORD + ADD_NL:
5879 testval = TRUE;
5880 /*FALLTHROUGH*/
5881 case SKWORD:
5882 case SKWORD + ADD_NL:
5883 while (count < maxcount)
5884 {
Bram Moolenaarf813a182013-01-30 13:59:37 +01005885 if (vim_iswordp_buf(scan, reg_buf)
5886 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005888 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 }
5890 else if (*scan == NUL)
5891 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005892 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5893 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 break;
5895 reg_nextline();
5896 scan = reginput;
5897 if (got_int)
5898 break;
5899 }
5900 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5901 ++scan;
5902 else
5903 break;
5904 ++count;
5905 }
5906 break;
5907
5908 case FNAME:
5909 case FNAME + ADD_NL:
5910 testval = TRUE;
5911 /*FALLTHROUGH*/
5912 case SFNAME:
5913 case SFNAME + ADD_NL:
5914 while (count < maxcount)
5915 {
Bram Moolenaar09ea9fc2013-05-21 00:03:02 +02005916 if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005918 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 }
5920 else if (*scan == NUL)
5921 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005922 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5923 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 break;
5925 reg_nextline();
5926 scan = reginput;
5927 if (got_int)
5928 break;
5929 }
5930 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5931 ++scan;
5932 else
5933 break;
5934 ++count;
5935 }
5936 break;
5937
5938 case PRINT:
5939 case PRINT + ADD_NL:
5940 testval = TRUE;
5941 /*FALLTHROUGH*/
5942 case SPRINT:
5943 case SPRINT + ADD_NL:
5944 while (count < maxcount)
5945 {
5946 if (*scan == NUL)
5947 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005948 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5949 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 break;
5951 reg_nextline();
5952 scan = reginput;
5953 if (got_int)
5954 break;
5955 }
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02005956 else if (vim_isprintc(PTR2CHAR(scan)) == 1
5957 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005959 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960 }
5961 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5962 ++scan;
5963 else
5964 break;
5965 ++count;
5966 }
5967 break;
5968
5969 case WHITE:
5970 case WHITE + ADD_NL:
5971 testval = mask = RI_WHITE;
5972do_class:
5973 while (count < maxcount)
5974 {
5975#ifdef FEAT_MBYTE
5976 int l;
5977#endif
5978 if (*scan == NUL)
5979 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005980 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5981 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 break;
5983 reg_nextline();
5984 scan = reginput;
5985 if (got_int)
5986 break;
5987 }
5988#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005989 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005990 {
5991 if (testval != 0)
5992 break;
5993 scan += l;
5994 }
5995#endif
5996 else if ((class_tab[*scan] & mask) == testval)
5997 ++scan;
5998 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5999 ++scan;
6000 else
6001 break;
6002 ++count;
6003 }
6004 break;
6005
6006 case NWHITE:
6007 case NWHITE + ADD_NL:
6008 mask = RI_WHITE;
6009 goto do_class;
6010 case DIGIT:
6011 case DIGIT + ADD_NL:
6012 testval = mask = RI_DIGIT;
6013 goto do_class;
6014 case NDIGIT:
6015 case NDIGIT + ADD_NL:
6016 mask = RI_DIGIT;
6017 goto do_class;
6018 case HEX:
6019 case HEX + ADD_NL:
6020 testval = mask = RI_HEX;
6021 goto do_class;
6022 case NHEX:
6023 case NHEX + ADD_NL:
6024 mask = RI_HEX;
6025 goto do_class;
6026 case OCTAL:
6027 case OCTAL + ADD_NL:
6028 testval = mask = RI_OCTAL;
6029 goto do_class;
6030 case NOCTAL:
6031 case NOCTAL + ADD_NL:
6032 mask = RI_OCTAL;
6033 goto do_class;
6034 case WORD:
6035 case WORD + ADD_NL:
6036 testval = mask = RI_WORD;
6037 goto do_class;
6038 case NWORD:
6039 case NWORD + ADD_NL:
6040 mask = RI_WORD;
6041 goto do_class;
6042 case HEAD:
6043 case HEAD + ADD_NL:
6044 testval = mask = RI_HEAD;
6045 goto do_class;
6046 case NHEAD:
6047 case NHEAD + ADD_NL:
6048 mask = RI_HEAD;
6049 goto do_class;
6050 case ALPHA:
6051 case ALPHA + ADD_NL:
6052 testval = mask = RI_ALPHA;
6053 goto do_class;
6054 case NALPHA:
6055 case NALPHA + ADD_NL:
6056 mask = RI_ALPHA;
6057 goto do_class;
6058 case LOWER:
6059 case LOWER + ADD_NL:
6060 testval = mask = RI_LOWER;
6061 goto do_class;
6062 case NLOWER:
6063 case NLOWER + ADD_NL:
6064 mask = RI_LOWER;
6065 goto do_class;
6066 case UPPER:
6067 case UPPER + ADD_NL:
6068 testval = mask = RI_UPPER;
6069 goto do_class;
6070 case NUPPER:
6071 case NUPPER + ADD_NL:
6072 mask = RI_UPPER;
6073 goto do_class;
6074
6075 case EXACTLY:
6076 {
6077 int cu, cl;
6078
6079 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006080 * would have been used for it. It does handle single-byte
6081 * characters, such as latin1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 if (ireg_ic)
6083 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006084 cu = MB_TOUPPER(*opnd);
6085 cl = MB_TOLOWER(*opnd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086 while (count < maxcount && (*scan == cu || *scan == cl))
6087 {
6088 count++;
6089 scan++;
6090 }
6091 }
6092 else
6093 {
6094 cu = *opnd;
6095 while (count < maxcount && *scan == cu)
6096 {
6097 count++;
6098 scan++;
6099 }
6100 }
6101 break;
6102 }
6103
6104#ifdef FEAT_MBYTE
6105 case MULTIBYTECODE:
6106 {
6107 int i, len, cf = 0;
6108
6109 /* Safety check (just in case 'encoding' was changed since
6110 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006111 if ((len = (*mb_ptr2len)(opnd)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112 {
6113 if (ireg_ic && enc_utf8)
6114 cf = utf_fold(utf_ptr2char(opnd));
6115 while (count < maxcount)
6116 {
6117 for (i = 0; i < len; ++i)
6118 if (opnd[i] != scan[i])
6119 break;
6120 if (i < len && (!ireg_ic || !enc_utf8
6121 || utf_fold(utf_ptr2char(scan)) != cf))
6122 break;
6123 scan += len;
6124 ++count;
6125 }
6126 }
6127 }
6128 break;
6129#endif
6130
6131 case ANYOF:
6132 case ANYOF + ADD_NL:
6133 testval = TRUE;
6134 /*FALLTHROUGH*/
6135
6136 case ANYBUT:
6137 case ANYBUT + ADD_NL:
6138 while (count < maxcount)
6139 {
6140#ifdef FEAT_MBYTE
6141 int len;
6142#endif
6143 if (*scan == NUL)
6144 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00006145 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
6146 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 break;
6148 reg_nextline();
6149 scan = reginput;
6150 if (got_int)
6151 break;
6152 }
6153 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
6154 ++scan;
6155#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006156 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 {
6158 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval)
6159 break;
6160 scan += len;
6161 }
6162#endif
6163 else
6164 {
6165 if ((cstrchr(opnd, *scan) == NULL) == testval)
6166 break;
6167 ++scan;
6168 }
6169 ++count;
6170 }
6171 break;
6172
6173 case NEWL:
6174 while (count < maxcount
Bram Moolenaar640009d2006-10-17 16:48:26 +00006175 && ((*scan == NUL && reglnum <= reg_maxline && !reg_line_lbr
6176 && REG_MULTI) || (*scan == '\n' && reg_line_lbr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 {
6178 count++;
6179 if (reg_line_lbr)
6180 ADVANCE_REGINPUT();
6181 else
6182 reg_nextline();
6183 scan = reginput;
6184 if (got_int)
6185 break;
6186 }
6187 break;
6188
6189 default: /* Oh dear. Called inappropriately. */
6190 EMSG(_(e_re_corr));
6191#ifdef DEBUG
6192 printf("Called regrepeat with op code %d\n", OP(p));
6193#endif
6194 break;
6195 }
6196
6197 reginput = scan;
6198
6199 return (int)count;
6200}
6201
6202/*
6203 * regnext - dig the "next" pointer out of a node
Bram Moolenaard3005802009-11-25 17:21:32 +00006204 * Returns NULL when calculating size, when there is no next item and when
6205 * there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 */
6207 static char_u *
6208regnext(p)
6209 char_u *p;
6210{
6211 int offset;
6212
Bram Moolenaard3005802009-11-25 17:21:32 +00006213 if (p == JUST_CALC_SIZE || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 return NULL;
6215
6216 offset = NEXT(p);
6217 if (offset == 0)
6218 return NULL;
6219
Bram Moolenaar582fd852005-03-28 20:58:01 +00006220 if (OP(p) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 return p - offset;
6222 else
6223 return p + offset;
6224}
6225
6226/*
6227 * Check the regexp program for its magic number.
6228 * Return TRUE if it's wrong.
6229 */
6230 static int
6231prog_magic_wrong()
6232{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006233 regprog_T *prog;
6234
6235 prog = REG_MULTI ? reg_mmatch->regprog : reg_match->regprog;
6236 if (prog->engine == &nfa_regengine)
6237 /* For NFA matcher we don't check the magic */
6238 return FALSE;
6239
6240 if (UCHARAT(((bt_regprog_T *)prog)->program) != REGMAGIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 {
6242 EMSG(_(e_re_corr));
6243 return TRUE;
6244 }
6245 return FALSE;
6246}
6247
6248/*
6249 * Cleanup the subexpressions, if this wasn't done yet.
6250 * This construction is used to clear the subexpressions only when they are
6251 * used (to increase speed).
6252 */
6253 static void
6254cleanup_subexpr()
6255{
6256 if (need_clear_subexpr)
6257 {
6258 if (REG_MULTI)
6259 {
6260 /* Use 0xff to set lnum to -1 */
6261 vim_memset(reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6262 vim_memset(reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6263 }
6264 else
6265 {
6266 vim_memset(reg_startp, 0, sizeof(char_u *) * NSUBEXP);
6267 vim_memset(reg_endp, 0, sizeof(char_u *) * NSUBEXP);
6268 }
6269 need_clear_subexpr = FALSE;
6270 }
6271}
6272
6273#ifdef FEAT_SYN_HL
6274 static void
6275cleanup_zsubexpr()
6276{
6277 if (need_clear_zsubexpr)
6278 {
6279 if (REG_MULTI)
6280 {
6281 /* Use 0xff to set lnum to -1 */
6282 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6283 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6284 }
6285 else
6286 {
6287 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP);
6288 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP);
6289 }
6290 need_clear_zsubexpr = FALSE;
6291 }
6292}
6293#endif
6294
6295/*
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006296 * Save the current subexpr to "bp", so that they can be restored
6297 * later by restore_subexpr().
6298 */
6299 static void
6300save_subexpr(bp)
6301 regbehind_T *bp;
6302{
6303 int i;
6304
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006305 /* When "need_clear_subexpr" is set we don't need to save the values, only
6306 * remember that this flag needs to be set again when restoring. */
6307 bp->save_need_clear_subexpr = need_clear_subexpr;
6308 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006309 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006310 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006311 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006312 if (REG_MULTI)
6313 {
6314 bp->save_start[i].se_u.pos = reg_startpos[i];
6315 bp->save_end[i].se_u.pos = reg_endpos[i];
6316 }
6317 else
6318 {
6319 bp->save_start[i].se_u.ptr = reg_startp[i];
6320 bp->save_end[i].se_u.ptr = reg_endp[i];
6321 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006322 }
6323 }
6324}
6325
6326/*
6327 * Restore the subexpr from "bp".
6328 */
6329 static void
6330restore_subexpr(bp)
6331 regbehind_T *bp;
6332{
6333 int i;
6334
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006335 /* Only need to restore saved values when they are not to be cleared. */
6336 need_clear_subexpr = bp->save_need_clear_subexpr;
6337 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006338 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006339 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006340 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006341 if (REG_MULTI)
6342 {
6343 reg_startpos[i] = bp->save_start[i].se_u.pos;
6344 reg_endpos[i] = bp->save_end[i].se_u.pos;
6345 }
6346 else
6347 {
6348 reg_startp[i] = bp->save_start[i].se_u.ptr;
6349 reg_endp[i] = bp->save_end[i].se_u.ptr;
6350 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006351 }
6352 }
6353}
6354
6355/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 * Advance reglnum, regline and reginput to the next line.
6357 */
6358 static void
6359reg_nextline()
6360{
6361 regline = reg_getline(++reglnum);
6362 reginput = regline;
6363 fast_breakcheck();
6364}
6365
6366/*
6367 * Save the input line and position in a regsave_T.
6368 */
6369 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006370reg_save(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006372 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373{
6374 if (REG_MULTI)
6375 {
6376 save->rs_u.pos.col = (colnr_T)(reginput - regline);
6377 save->rs_u.pos.lnum = reglnum;
6378 }
6379 else
6380 save->rs_u.ptr = reginput;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006381 save->rs_len = gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006382}
6383
6384/*
6385 * Restore the input line and position from a regsave_T.
6386 */
6387 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006388reg_restore(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006390 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391{
6392 if (REG_MULTI)
6393 {
6394 if (reglnum != save->rs_u.pos.lnum)
6395 {
6396 /* only call reg_getline() when the line number changed to save
6397 * a bit of time */
6398 reglnum = save->rs_u.pos.lnum;
6399 regline = reg_getline(reglnum);
6400 }
6401 reginput = regline + save->rs_u.pos.col;
6402 }
6403 else
6404 reginput = save->rs_u.ptr;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006405 gap->ga_len = save->rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406}
6407
6408/*
6409 * Return TRUE if current position is equal to saved position.
6410 */
6411 static int
6412reg_save_equal(save)
6413 regsave_T *save;
6414{
6415 if (REG_MULTI)
6416 return reglnum == save->rs_u.pos.lnum
6417 && reginput == regline + save->rs_u.pos.col;
6418 return reginput == save->rs_u.ptr;
6419}
6420
6421/*
6422 * Tentatively set the sub-expression start to the current position (after
6423 * calling regmatch() they will have changed). Need to save the existing
6424 * values for when there is no match.
6425 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
6426 * depending on REG_MULTI.
6427 */
6428 static void
6429save_se_multi(savep, posp)
6430 save_se_T *savep;
6431 lpos_T *posp;
6432{
6433 savep->se_u.pos = *posp;
6434 posp->lnum = reglnum;
6435 posp->col = (colnr_T)(reginput - regline);
6436}
6437
6438 static void
6439save_se_one(savep, pp)
6440 save_se_T *savep;
6441 char_u **pp;
6442{
6443 savep->se_u.ptr = *pp;
6444 *pp = reginput;
6445}
6446
6447/*
6448 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6449 */
6450 static int
6451re_num_cmp(val, scan)
6452 long_u val;
6453 char_u *scan;
6454{
6455 long_u n = OPERAND_MIN(scan);
6456
6457 if (OPERAND_CMP(scan) == '>')
6458 return val > n;
6459 if (OPERAND_CMP(scan) == '<')
6460 return val < n;
6461 return val == n;
6462}
6463
Bram Moolenaar580abea2013-06-14 20:31:28 +02006464/*
6465 * Check whether a backreference matches.
6466 * Returns RA_FAIL, RA_NOMATCH or RA_MATCH.
Bram Moolenaar438ee5b2013-11-21 17:13:00 +01006467 * If "bytelen" is not NULL, it is set to the byte length of the match in the
6468 * last line.
Bram Moolenaar580abea2013-06-14 20:31:28 +02006469 */
6470 static int
6471match_with_backref(start_lnum, start_col, end_lnum, end_col, bytelen)
6472 linenr_T start_lnum;
6473 colnr_T start_col;
6474 linenr_T end_lnum;
6475 colnr_T end_col;
6476 int *bytelen;
6477{
6478 linenr_T clnum = start_lnum;
6479 colnr_T ccol = start_col;
6480 int len;
6481 char_u *p;
6482
6483 if (bytelen != NULL)
6484 *bytelen = 0;
6485 for (;;)
6486 {
6487 /* Since getting one line may invalidate the other, need to make copy.
6488 * Slow! */
6489 if (regline != reg_tofree)
6490 {
6491 len = (int)STRLEN(regline);
6492 if (reg_tofree == NULL || len >= (int)reg_tofreelen)
6493 {
6494 len += 50; /* get some extra */
6495 vim_free(reg_tofree);
6496 reg_tofree = alloc(len);
6497 if (reg_tofree == NULL)
6498 return RA_FAIL; /* out of memory!*/
6499 reg_tofreelen = len;
6500 }
6501 STRCPY(reg_tofree, regline);
6502 reginput = reg_tofree + (reginput - regline);
6503 regline = reg_tofree;
6504 }
6505
6506 /* Get the line to compare with. */
6507 p = reg_getline(clnum);
6508 if (clnum == end_lnum)
6509 len = end_col - ccol;
6510 else
6511 len = (int)STRLEN(p + ccol);
6512
6513 if (cstrncmp(p + ccol, reginput, &len) != 0)
6514 return RA_NOMATCH; /* doesn't match */
6515 if (bytelen != NULL)
6516 *bytelen += len;
6517 if (clnum == end_lnum)
6518 break; /* match and at end! */
6519 if (reglnum >= reg_maxline)
6520 return RA_NOMATCH; /* text too short */
6521
6522 /* Advance to next line. */
6523 reg_nextline();
Bram Moolenaar438ee5b2013-11-21 17:13:00 +01006524 if (bytelen != NULL)
6525 *bytelen = 0;
Bram Moolenaar580abea2013-06-14 20:31:28 +02006526 ++clnum;
6527 ccol = 0;
6528 if (got_int)
6529 return RA_FAIL;
6530 }
6531
6532 /* found a match! Note that regline may now point to a copy of the line,
6533 * that should not matter. */
6534 return RA_MATCH;
6535}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006536
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006537#ifdef BT_REGEXP_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538
6539/*
6540 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6541 */
6542 static void
6543regdump(pattern, r)
6544 char_u *pattern;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006545 bt_regprog_T *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546{
6547 char_u *s;
6548 int op = EXACTLY; /* Arbitrary non-END op. */
6549 char_u *next;
6550 char_u *end = NULL;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006551 FILE *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006553#ifdef BT_REGEXP_LOG
6554 f = fopen("bt_regexp_log.log", "a");
6555#else
6556 f = stdout;
6557#endif
6558 if (f == NULL)
6559 return;
6560 fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561
6562 s = r->program + 1;
6563 /*
6564 * Loop until we find the END that isn't before a referred next (an END
6565 * can also appear in a NOMATCH operand).
6566 */
6567 while (op != END || s <= end)
6568 {
6569 op = OP(s);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006570 fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 next = regnext(s);
6572 if (next == NULL) /* Next ptr. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006573 fprintf(f, "(0)");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 else
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006575 fprintf(f, "(%d)", (int)((s - r->program) + (next - s)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 if (end < next)
6577 end = next;
6578 if (op == BRACE_LIMITS)
6579 {
Bram Moolenaar5b84ddc2013-06-05 16:33:10 +02006580 /* Two ints */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006581 fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 s += 8;
6583 }
Bram Moolenaar5b84ddc2013-06-05 16:33:10 +02006584 else if (op == BEHIND || op == NOBEHIND)
6585 {
6586 /* one int */
6587 fprintf(f, " count %ld", OPERAND_MIN(s));
6588 s += 4;
6589 }
Bram Moolenaar6d3a5d72013-06-06 18:04:51 +02006590 else if (op == RE_LNUM || op == RE_COL || op == RE_VCOL)
6591 {
6592 /* one int plus comperator */
6593 fprintf(f, " count %ld", OPERAND_MIN(s));
6594 s += 5;
6595 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 s += 3;
6597 if (op == ANYOF || op == ANYOF + ADD_NL
6598 || op == ANYBUT || op == ANYBUT + ADD_NL
6599 || op == EXACTLY)
6600 {
6601 /* Literal string, where present. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006602 fprintf(f, "\nxxxxxxxxx\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603 while (*s != NUL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006604 fprintf(f, "%c", *s++);
6605 fprintf(f, "\nxxxxxxxxx\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 s++;
6607 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006608 fprintf(f, "\r\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 }
6610
6611 /* Header fields of interest. */
6612 if (r->regstart != NUL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006613 fprintf(f, "start `%s' 0x%x; ", r->regstart < 256
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 ? (char *)transchar(r->regstart)
6615 : "multibyte", r->regstart);
6616 if (r->reganch)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006617 fprintf(f, "anchored; ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 if (r->regmust != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006619 fprintf(f, "must have \"%s\"", r->regmust);
6620 fprintf(f, "\r\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006622#ifdef BT_REGEXP_LOG
6623 fclose(f);
6624#endif
6625}
6626#endif /* BT_REGEXP_DUMP */
6627
6628#ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629/*
6630 * regprop - printable representation of opcode
6631 */
6632 static char_u *
6633regprop(op)
6634 char_u *op;
6635{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006636 char *p;
6637 static char buf[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006639 STRCPY(buf, ":");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006641 switch ((int) OP(op))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 {
6643 case BOL:
6644 p = "BOL";
6645 break;
6646 case EOL:
6647 p = "EOL";
6648 break;
6649 case RE_BOF:
6650 p = "BOF";
6651 break;
6652 case RE_EOF:
6653 p = "EOF";
6654 break;
6655 case CURSOR:
6656 p = "CURSOR";
6657 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006658 case RE_VISUAL:
6659 p = "RE_VISUAL";
6660 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 case RE_LNUM:
6662 p = "RE_LNUM";
6663 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006664 case RE_MARK:
6665 p = "RE_MARK";
6666 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 case RE_COL:
6668 p = "RE_COL";
6669 break;
6670 case RE_VCOL:
6671 p = "RE_VCOL";
6672 break;
6673 case BOW:
6674 p = "BOW";
6675 break;
6676 case EOW:
6677 p = "EOW";
6678 break;
6679 case ANY:
6680 p = "ANY";
6681 break;
6682 case ANY + ADD_NL:
6683 p = "ANY+NL";
6684 break;
6685 case ANYOF:
6686 p = "ANYOF";
6687 break;
6688 case ANYOF + ADD_NL:
6689 p = "ANYOF+NL";
6690 break;
6691 case ANYBUT:
6692 p = "ANYBUT";
6693 break;
6694 case ANYBUT + ADD_NL:
6695 p = "ANYBUT+NL";
6696 break;
6697 case IDENT:
6698 p = "IDENT";
6699 break;
6700 case IDENT + ADD_NL:
6701 p = "IDENT+NL";
6702 break;
6703 case SIDENT:
6704 p = "SIDENT";
6705 break;
6706 case SIDENT + ADD_NL:
6707 p = "SIDENT+NL";
6708 break;
6709 case KWORD:
6710 p = "KWORD";
6711 break;
6712 case KWORD + ADD_NL:
6713 p = "KWORD+NL";
6714 break;
6715 case SKWORD:
6716 p = "SKWORD";
6717 break;
6718 case SKWORD + ADD_NL:
6719 p = "SKWORD+NL";
6720 break;
6721 case FNAME:
6722 p = "FNAME";
6723 break;
6724 case FNAME + ADD_NL:
6725 p = "FNAME+NL";
6726 break;
6727 case SFNAME:
6728 p = "SFNAME";
6729 break;
6730 case SFNAME + ADD_NL:
6731 p = "SFNAME+NL";
6732 break;
6733 case PRINT:
6734 p = "PRINT";
6735 break;
6736 case PRINT + ADD_NL:
6737 p = "PRINT+NL";
6738 break;
6739 case SPRINT:
6740 p = "SPRINT";
6741 break;
6742 case SPRINT + ADD_NL:
6743 p = "SPRINT+NL";
6744 break;
6745 case WHITE:
6746 p = "WHITE";
6747 break;
6748 case WHITE + ADD_NL:
6749 p = "WHITE+NL";
6750 break;
6751 case NWHITE:
6752 p = "NWHITE";
6753 break;
6754 case NWHITE + ADD_NL:
6755 p = "NWHITE+NL";
6756 break;
6757 case DIGIT:
6758 p = "DIGIT";
6759 break;
6760 case DIGIT + ADD_NL:
6761 p = "DIGIT+NL";
6762 break;
6763 case NDIGIT:
6764 p = "NDIGIT";
6765 break;
6766 case NDIGIT + ADD_NL:
6767 p = "NDIGIT+NL";
6768 break;
6769 case HEX:
6770 p = "HEX";
6771 break;
6772 case HEX + ADD_NL:
6773 p = "HEX+NL";
6774 break;
6775 case NHEX:
6776 p = "NHEX";
6777 break;
6778 case NHEX + ADD_NL:
6779 p = "NHEX+NL";
6780 break;
6781 case OCTAL:
6782 p = "OCTAL";
6783 break;
6784 case OCTAL + ADD_NL:
6785 p = "OCTAL+NL";
6786 break;
6787 case NOCTAL:
6788 p = "NOCTAL";
6789 break;
6790 case NOCTAL + ADD_NL:
6791 p = "NOCTAL+NL";
6792 break;
6793 case WORD:
6794 p = "WORD";
6795 break;
6796 case WORD + ADD_NL:
6797 p = "WORD+NL";
6798 break;
6799 case NWORD:
6800 p = "NWORD";
6801 break;
6802 case NWORD + ADD_NL:
6803 p = "NWORD+NL";
6804 break;
6805 case HEAD:
6806 p = "HEAD";
6807 break;
6808 case HEAD + ADD_NL:
6809 p = "HEAD+NL";
6810 break;
6811 case NHEAD:
6812 p = "NHEAD";
6813 break;
6814 case NHEAD + ADD_NL:
6815 p = "NHEAD+NL";
6816 break;
6817 case ALPHA:
6818 p = "ALPHA";
6819 break;
6820 case ALPHA + ADD_NL:
6821 p = "ALPHA+NL";
6822 break;
6823 case NALPHA:
6824 p = "NALPHA";
6825 break;
6826 case NALPHA + ADD_NL:
6827 p = "NALPHA+NL";
6828 break;
6829 case LOWER:
6830 p = "LOWER";
6831 break;
6832 case LOWER + ADD_NL:
6833 p = "LOWER+NL";
6834 break;
6835 case NLOWER:
6836 p = "NLOWER";
6837 break;
6838 case NLOWER + ADD_NL:
6839 p = "NLOWER+NL";
6840 break;
6841 case UPPER:
6842 p = "UPPER";
6843 break;
6844 case UPPER + ADD_NL:
6845 p = "UPPER+NL";
6846 break;
6847 case NUPPER:
6848 p = "NUPPER";
6849 break;
6850 case NUPPER + ADD_NL:
6851 p = "NUPPER+NL";
6852 break;
6853 case BRANCH:
6854 p = "BRANCH";
6855 break;
6856 case EXACTLY:
6857 p = "EXACTLY";
6858 break;
6859 case NOTHING:
6860 p = "NOTHING";
6861 break;
6862 case BACK:
6863 p = "BACK";
6864 break;
6865 case END:
6866 p = "END";
6867 break;
6868 case MOPEN + 0:
6869 p = "MATCH START";
6870 break;
6871 case MOPEN + 1:
6872 case MOPEN + 2:
6873 case MOPEN + 3:
6874 case MOPEN + 4:
6875 case MOPEN + 5:
6876 case MOPEN + 6:
6877 case MOPEN + 7:
6878 case MOPEN + 8:
6879 case MOPEN + 9:
6880 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN);
6881 p = NULL;
6882 break;
6883 case MCLOSE + 0:
6884 p = "MATCH END";
6885 break;
6886 case MCLOSE + 1:
6887 case MCLOSE + 2:
6888 case MCLOSE + 3:
6889 case MCLOSE + 4:
6890 case MCLOSE + 5:
6891 case MCLOSE + 6:
6892 case MCLOSE + 7:
6893 case MCLOSE + 8:
6894 case MCLOSE + 9:
6895 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE);
6896 p = NULL;
6897 break;
6898 case BACKREF + 1:
6899 case BACKREF + 2:
6900 case BACKREF + 3:
6901 case BACKREF + 4:
6902 case BACKREF + 5:
6903 case BACKREF + 6:
6904 case BACKREF + 7:
6905 case BACKREF + 8:
6906 case BACKREF + 9:
6907 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF);
6908 p = NULL;
6909 break;
6910 case NOPEN:
6911 p = "NOPEN";
6912 break;
6913 case NCLOSE:
6914 p = "NCLOSE";
6915 break;
6916#ifdef FEAT_SYN_HL
6917 case ZOPEN + 1:
6918 case ZOPEN + 2:
6919 case ZOPEN + 3:
6920 case ZOPEN + 4:
6921 case ZOPEN + 5:
6922 case ZOPEN + 6:
6923 case ZOPEN + 7:
6924 case ZOPEN + 8:
6925 case ZOPEN + 9:
6926 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN);
6927 p = NULL;
6928 break;
6929 case ZCLOSE + 1:
6930 case ZCLOSE + 2:
6931 case ZCLOSE + 3:
6932 case ZCLOSE + 4:
6933 case ZCLOSE + 5:
6934 case ZCLOSE + 6:
6935 case ZCLOSE + 7:
6936 case ZCLOSE + 8:
6937 case ZCLOSE + 9:
6938 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE);
6939 p = NULL;
6940 break;
6941 case ZREF + 1:
6942 case ZREF + 2:
6943 case ZREF + 3:
6944 case ZREF + 4:
6945 case ZREF + 5:
6946 case ZREF + 6:
6947 case ZREF + 7:
6948 case ZREF + 8:
6949 case ZREF + 9:
6950 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF);
6951 p = NULL;
6952 break;
6953#endif
6954 case STAR:
6955 p = "STAR";
6956 break;
6957 case PLUS:
6958 p = "PLUS";
6959 break;
6960 case NOMATCH:
6961 p = "NOMATCH";
6962 break;
6963 case MATCH:
6964 p = "MATCH";
6965 break;
6966 case BEHIND:
6967 p = "BEHIND";
6968 break;
6969 case NOBEHIND:
6970 p = "NOBEHIND";
6971 break;
6972 case SUBPAT:
6973 p = "SUBPAT";
6974 break;
6975 case BRACE_LIMITS:
6976 p = "BRACE_LIMITS";
6977 break;
6978 case BRACE_SIMPLE:
6979 p = "BRACE_SIMPLE";
6980 break;
6981 case BRACE_COMPLEX + 0:
6982 case BRACE_COMPLEX + 1:
6983 case BRACE_COMPLEX + 2:
6984 case BRACE_COMPLEX + 3:
6985 case BRACE_COMPLEX + 4:
6986 case BRACE_COMPLEX + 5:
6987 case BRACE_COMPLEX + 6:
6988 case BRACE_COMPLEX + 7:
6989 case BRACE_COMPLEX + 8:
6990 case BRACE_COMPLEX + 9:
6991 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX);
6992 p = NULL;
6993 break;
6994#ifdef FEAT_MBYTE
6995 case MULTIBYTECODE:
6996 p = "MULTIBYTECODE";
6997 break;
6998#endif
6999 case NEWL:
7000 p = "NEWL";
7001 break;
7002 default:
7003 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op));
7004 p = NULL;
7005 break;
7006 }
7007 if (p != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02007008 STRCAT(buf, p);
7009 return (char_u *)buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010}
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02007011#endif /* DEBUG */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007012
Bram Moolenaarfb031402014-09-09 17:18:49 +02007013/*
7014 * Used in a place where no * or \+ can follow.
7015 */
7016 static int
7017re_mult_next(what)
7018 char *what;
7019{
7020 if (re_multi_type(peekchr()) == MULTI_MULT)
7021 EMSG2_RET_FAIL(_("E888: (NFA regexp) cannot repeat %s"), what);
7022 return OK;
7023}
7024
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025#ifdef FEAT_MBYTE
7026static void mb_decompose __ARGS((int c, int *c1, int *c2, int *c3));
7027
7028typedef struct
7029{
7030 int a, b, c;
7031} decomp_T;
7032
7033
7034/* 0xfb20 - 0xfb4f */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007035static decomp_T decomp_table[0xfb4f-0xfb20+1] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036{
7037 {0x5e2,0,0}, /* 0xfb20 alt ayin */
7038 {0x5d0,0,0}, /* 0xfb21 alt alef */
7039 {0x5d3,0,0}, /* 0xfb22 alt dalet */
7040 {0x5d4,0,0}, /* 0xfb23 alt he */
7041 {0x5db,0,0}, /* 0xfb24 alt kaf */
7042 {0x5dc,0,0}, /* 0xfb25 alt lamed */
7043 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
7044 {0x5e8,0,0}, /* 0xfb27 alt resh */
7045 {0x5ea,0,0}, /* 0xfb28 alt tav */
7046 {'+', 0, 0}, /* 0xfb29 alt plus */
7047 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
7048 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
7049 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
7050 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
7051 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
7052 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
7053 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
7054 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
7055 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
7056 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
7057 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
7058 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
7059 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
7060 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
7061 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
7062 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
7063 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
7064 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
7065 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
7066 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
7067 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
7068 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
7069 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
7070 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
7071 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
7072 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
7073 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
7074 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
7075 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
7076 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
7077 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
7078 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
7079 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
7080 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
7081 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
7082 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
7083 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
7084 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
7085};
7086
7087 static void
7088mb_decompose(c, c1, c2, c3)
7089 int c, *c1, *c2, *c3;
7090{
7091 decomp_T d;
7092
Bram Moolenaar2eec59e2013-05-21 21:37:20 +02007093 if (c >= 0xfb20 && c <= 0xfb4f)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 {
7095 d = decomp_table[c - 0xfb20];
7096 *c1 = d.a;
7097 *c2 = d.b;
7098 *c3 = d.c;
7099 }
7100 else
7101 {
7102 *c1 = c;
7103 *c2 = *c3 = 0;
7104 }
7105}
7106#endif
7107
7108/*
7109 * Compare two strings, ignore case if ireg_ic set.
7110 * Return 0 if strings match, non-zero otherwise.
7111 * Correct the length "*n" when composing characters are ignored.
7112 */
7113 static int
7114cstrncmp(s1, s2, n)
7115 char_u *s1, *s2;
7116 int *n;
7117{
7118 int result;
7119
7120 if (!ireg_ic)
7121 result = STRNCMP(s1, s2, *n);
7122 else
7123 result = MB_STRNICMP(s1, s2, *n);
7124
7125#ifdef FEAT_MBYTE
7126 /* if it failed and it's utf8 and we want to combineignore: */
7127 if (result != 0 && enc_utf8 && ireg_icombine)
7128 {
7129 char_u *str1, *str2;
7130 int c1, c2, c11, c12;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 int junk;
7132
7133 /* we have to handle the strcmp ourselves, since it is necessary to
7134 * deal with the composing characters by ignoring them: */
7135 str1 = s1;
7136 str2 = s2;
7137 c1 = c2 = 0;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00007138 while ((int)(str1 - s1) < *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139 {
7140 c1 = mb_ptr2char_adv(&str1);
7141 c2 = mb_ptr2char_adv(&str2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142
7143 /* decompose the character if necessary, into 'base' characters
7144 * because I don't care about Arabic, I will hard-code the Hebrew
7145 * which I *do* care about! So sue me... */
7146 if (c1 != c2 && (!ireg_ic || utf_fold(c1) != utf_fold(c2)))
7147 {
7148 /* decomposition necessary? */
7149 mb_decompose(c1, &c11, &junk, &junk);
7150 mb_decompose(c2, &c12, &junk, &junk);
7151 c1 = c11;
7152 c2 = c12;
7153 if (c11 != c12 && (!ireg_ic || utf_fold(c11) != utf_fold(c12)))
7154 break;
7155 }
7156 }
7157 result = c2 - c1;
7158 if (result == 0)
7159 *n = (int)(str2 - s2);
7160 }
7161#endif
7162
7163 return result;
7164}
7165
7166/*
7167 * cstrchr: This function is used a lot for simple searches, keep it fast!
7168 */
7169 static char_u *
7170cstrchr(s, c)
7171 char_u *s;
7172 int c;
7173{
7174 char_u *p;
7175 int cc;
7176
7177 if (!ireg_ic
7178#ifdef FEAT_MBYTE
7179 || (!enc_utf8 && mb_char2len(c) > 1)
7180#endif
7181 )
7182 return vim_strchr(s, c);
7183
7184 /* tolower() and toupper() can be slow, comparing twice should be a lot
7185 * faster (esp. when using MS Visual C++!).
7186 * For UTF-8 need to use folded case. */
7187#ifdef FEAT_MBYTE
7188 if (enc_utf8 && c > 0x80)
7189 cc = utf_fold(c);
7190 else
7191#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00007192 if (MB_ISUPPER(c))
7193 cc = MB_TOLOWER(c);
7194 else if (MB_ISLOWER(c))
7195 cc = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 else
7197 return vim_strchr(s, c);
7198
7199#ifdef FEAT_MBYTE
7200 if (has_mbyte)
7201 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007202 for (p = s; *p != NUL; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 {
7204 if (enc_utf8 && c > 0x80)
7205 {
7206 if (utf_fold(utf_ptr2char(p)) == cc)
7207 return p;
7208 }
7209 else if (*p == c || *p == cc)
7210 return p;
7211 }
7212 }
7213 else
7214#endif
7215 /* Faster version for when there are no multi-byte characters. */
7216 for (p = s; *p != NUL; ++p)
7217 if (*p == c || *p == cc)
7218 return p;
7219
7220 return NULL;
7221}
7222
7223/***************************************************************
7224 * regsub stuff *
7225 ***************************************************************/
7226
7227/* This stuff below really confuses cc on an SGI -- webb */
7228#ifdef __sgi
7229# undef __ARGS
7230# define __ARGS(x) ()
7231#endif
7232
7233/*
7234 * We should define ftpr as a pointer to a function returning a pointer to
7235 * a function returning a pointer to a function ...
7236 * This is impossible, so we declare a pointer to a function returning a
7237 * pointer to a function returning void. This should work for all compilers.
7238 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007239typedef void (*(*fptr_T) __ARGS((int *, int)))();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007241static fptr_T do_upper __ARGS((int *, int));
7242static fptr_T do_Upper __ARGS((int *, int));
7243static fptr_T do_lower __ARGS((int *, int));
7244static fptr_T do_Lower __ARGS((int *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245
7246static int vim_regsub_both __ARGS((char_u *source, char_u *dest, int copy, int magic, int backslash));
7247
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007248 static fptr_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249do_upper(d, c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007250 int *d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 int c;
7252{
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007253 *d = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007255 return (fptr_T)NULL;
7256}
7257
7258 static fptr_T
7259do_Upper(d, c)
7260 int *d;
7261 int c;
7262{
7263 *d = MB_TOUPPER(c);
7264
7265 return (fptr_T)do_Upper;
7266}
7267
7268 static fptr_T
7269do_lower(d, c)
7270 int *d;
7271 int c;
7272{
7273 *d = MB_TOLOWER(c);
7274
7275 return (fptr_T)NULL;
7276}
7277
7278 static fptr_T
7279do_Lower(d, c)
7280 int *d;
7281 int c;
7282{
7283 *d = MB_TOLOWER(c);
7284
7285 return (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286}
7287
7288/*
7289 * regtilde(): Replace tildes in the pattern by the old pattern.
7290 *
7291 * Short explanation of the tilde: It stands for the previous replacement
7292 * pattern. If that previous pattern also contains a ~ we should go back a
7293 * step further... But we insert the previous pattern into the current one
7294 * and remember that.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007295 * This still does not handle the case where "magic" changes. So require the
7296 * user to keep his hands off of "magic".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007297 *
7298 * The tildes are parsed once before the first call to vim_regsub().
7299 */
7300 char_u *
7301regtilde(source, magic)
7302 char_u *source;
7303 int magic;
7304{
7305 char_u *newsub = source;
7306 char_u *tmpsub;
7307 char_u *p;
7308 int len;
7309 int prevlen;
7310
7311 for (p = newsub; *p; ++p)
7312 {
7313 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic))
7314 {
7315 if (reg_prev_sub != NULL)
7316 {
7317 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
7318 prevlen = (int)STRLEN(reg_prev_sub);
7319 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen));
7320 if (tmpsub != NULL)
7321 {
7322 /* copy prefix */
7323 len = (int)(p - newsub); /* not including ~ */
7324 mch_memmove(tmpsub, newsub, (size_t)len);
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007325 /* interpret tilde */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007326 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen);
7327 /* copy postfix */
7328 if (!magic)
7329 ++p; /* back off \ */
7330 STRCPY(tmpsub + len + prevlen, p + 1);
7331
7332 if (newsub != source) /* already allocated newsub */
7333 vim_free(newsub);
7334 newsub = tmpsub;
7335 p = newsub + len + prevlen;
7336 }
7337 }
7338 else if (magic)
Bram Moolenaar446cb832008-06-24 21:56:24 +00007339 STRMOVE(p, p + 1); /* remove '~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 else
Bram Moolenaar446cb832008-06-24 21:56:24 +00007341 STRMOVE(p, p + 2); /* remove '\~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 --p;
7343 }
7344 else
7345 {
7346 if (*p == '\\' && p[1]) /* skip escaped characters */
7347 ++p;
7348#ifdef FEAT_MBYTE
7349 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007350 p += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351#endif
7352 }
7353 }
7354
7355 vim_free(reg_prev_sub);
7356 if (newsub != source) /* newsub was allocated, just keep it */
7357 reg_prev_sub = newsub;
7358 else /* no ~ found, need to save newsub */
7359 reg_prev_sub = vim_strsave(newsub);
7360 return newsub;
7361}
7362
7363#ifdef FEAT_EVAL
7364static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */
7365
7366/* These pointers are used instead of reg_match and reg_mmatch for
7367 * reg_submatch(). Needed for when the substitution string is an expression
7368 * that contains a call to substitute() and submatch(). */
7369static regmatch_T *submatch_match;
7370static regmmatch_T *submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007371static linenr_T submatch_firstlnum;
7372static linenr_T submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007373static int submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374#endif
7375
7376#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
7377/*
7378 * vim_regsub() - perform substitutions after a vim_regexec() or
7379 * vim_regexec_multi() match.
7380 *
7381 * If "copy" is TRUE really copy into "dest".
7382 * If "copy" is FALSE nothing is copied, this is just to find out the length
7383 * of the result.
7384 *
7385 * If "backslash" is TRUE, a backslash will be removed later, need to double
7386 * them to keep them, and insert a backslash before a CR to avoid it being
7387 * replaced with a line break later.
7388 *
7389 * Note: The matched text must not change between the call of
7390 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
7391 * references invalid!
7392 *
7393 * Returns the size of the replacement, including terminating NUL.
7394 */
7395 int
7396vim_regsub(rmp, source, dest, copy, magic, backslash)
7397 regmatch_T *rmp;
7398 char_u *source;
7399 char_u *dest;
7400 int copy;
7401 int magic;
7402 int backslash;
7403{
7404 reg_match = rmp;
7405 reg_mmatch = NULL;
7406 reg_maxline = 0;
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01007407 reg_buf = curbuf;
Bram Moolenaar93fc4812014-04-23 18:48:47 +02007408 reg_line_lbr = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 return vim_regsub_both(source, dest, copy, magic, backslash);
7410}
7411#endif
7412
7413 int
7414vim_regsub_multi(rmp, lnum, source, dest, copy, magic, backslash)
7415 regmmatch_T *rmp;
7416 linenr_T lnum;
7417 char_u *source;
7418 char_u *dest;
7419 int copy;
7420 int magic;
7421 int backslash;
7422{
7423 reg_match = NULL;
7424 reg_mmatch = rmp;
7425 reg_buf = curbuf; /* always works on the current buffer! */
7426 reg_firstlnum = lnum;
7427 reg_maxline = curbuf->b_ml.ml_line_count - lnum;
Bram Moolenaar93fc4812014-04-23 18:48:47 +02007428 reg_line_lbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429 return vim_regsub_both(source, dest, copy, magic, backslash);
7430}
7431
7432 static int
7433vim_regsub_both(source, dest, copy, magic, backslash)
7434 char_u *source;
7435 char_u *dest;
7436 int copy;
7437 int magic;
7438 int backslash;
7439{
7440 char_u *src;
7441 char_u *dst;
7442 char_u *s;
7443 int c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007444 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007445 int no = -1;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007446 fptr_T func_all = (fptr_T)NULL;
7447 fptr_T func_one = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 linenr_T clnum = 0; /* init for GCC */
7449 int len = 0; /* init for GCC */
7450#ifdef FEAT_EVAL
7451 static char_u *eval_result = NULL;
7452#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453
7454 /* Be paranoid... */
7455 if (source == NULL || dest == NULL)
7456 {
7457 EMSG(_(e_null));
7458 return 0;
7459 }
7460 if (prog_magic_wrong())
7461 return 0;
7462 src = source;
7463 dst = dest;
7464
7465 /*
7466 * When the substitute part starts with "\=" evaluate it as an expression.
7467 */
7468 if (source[0] == '\\' && source[1] == '='
7469#ifdef FEAT_EVAL
7470 && !can_f_submatch /* can't do this recursively */
7471#endif
7472 )
7473 {
7474#ifdef FEAT_EVAL
7475 /* To make sure that the length doesn't change between checking the
7476 * length and copying the string, and to speed up things, the
7477 * resulting string is saved from the call with "copy" == FALSE to the
7478 * call with "copy" == TRUE. */
7479 if (copy)
7480 {
7481 if (eval_result != NULL)
7482 {
7483 STRCPY(dest, eval_result);
7484 dst += STRLEN(eval_result);
7485 vim_free(eval_result);
7486 eval_result = NULL;
7487 }
7488 }
7489 else
7490 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007491 win_T *save_reg_win;
7492 int save_ireg_ic;
7493
7494 vim_free(eval_result);
7495
7496 /* The expression may contain substitute(), which calls us
7497 * recursively. Make sure submatch() gets the text from the first
7498 * level. Don't need to save "reg_buf", because
7499 * vim_regexec_multi() can't be called recursively. */
7500 submatch_match = reg_match;
7501 submatch_mmatch = reg_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007502 submatch_firstlnum = reg_firstlnum;
7503 submatch_maxline = reg_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007504 submatch_line_lbr = reg_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 save_reg_win = reg_win;
7506 save_ireg_ic = ireg_ic;
7507 can_f_submatch = TRUE;
7508
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007509 eval_result = eval_to_string(source + 2, NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510 if (eval_result != NULL)
7511 {
Bram Moolenaar06975a42010-03-23 16:27:22 +01007512 int had_backslash = FALSE;
7513
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00007514 for (s = eval_result; *s != NUL; mb_ptr_adv(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515 {
Bram Moolenaar978287b2011-06-19 04:32:15 +02007516 /* Change NL to CR, so that it becomes a line break,
7517 * unless called from vim_regexec_nl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007518 * Skip over a backslashed character. */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007519 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 *s = CAR;
7521 else if (*s == '\\' && s[1] != NUL)
Bram Moolenaar06975a42010-03-23 16:27:22 +01007522 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007523 ++s;
Bram Moolenaar60190782010-05-21 13:08:58 +02007524 /* Change NL to CR here too, so that this works:
7525 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text:
7526 * abc\
7527 * def
Bram Moolenaar978287b2011-06-19 04:32:15 +02007528 * Not when called from vim_regexec_nl().
Bram Moolenaar60190782010-05-21 13:08:58 +02007529 */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007530 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar60190782010-05-21 13:08:58 +02007531 *s = CAR;
Bram Moolenaar06975a42010-03-23 16:27:22 +01007532 had_backslash = TRUE;
7533 }
7534 }
7535 if (had_backslash && backslash)
7536 {
7537 /* Backslashes will be consumed, need to double them. */
7538 s = vim_strsave_escaped(eval_result, (char_u *)"\\");
7539 if (s != NULL)
7540 {
7541 vim_free(eval_result);
7542 eval_result = s;
7543 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007544 }
7545
7546 dst += STRLEN(eval_result);
7547 }
7548
7549 reg_match = submatch_match;
7550 reg_mmatch = submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007551 reg_firstlnum = submatch_firstlnum;
7552 reg_maxline = submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007553 reg_line_lbr = submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007554 reg_win = save_reg_win;
7555 ireg_ic = save_ireg_ic;
7556 can_f_submatch = FALSE;
7557 }
7558#endif
7559 }
7560 else
7561 while ((c = *src++) != NUL)
7562 {
7563 if (c == '&' && magic)
7564 no = 0;
7565 else if (c == '\\' && *src != NUL)
7566 {
7567 if (*src == '&' && !magic)
7568 {
7569 ++src;
7570 no = 0;
7571 }
7572 else if ('0' <= *src && *src <= '9')
7573 {
7574 no = *src++ - '0';
7575 }
7576 else if (vim_strchr((char_u *)"uUlLeE", *src))
7577 {
7578 switch (*src++)
7579 {
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007580 case 'u': func_one = (fptr_T)do_upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007581 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007582 case 'U': func_all = (fptr_T)do_Upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007583 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007584 case 'l': func_one = (fptr_T)do_lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007586 case 'L': func_all = (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007587 continue;
7588 case 'e':
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007589 case 'E': func_one = func_all = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590 continue;
7591 }
7592 }
7593 }
7594 if (no < 0) /* Ordinary character. */
7595 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00007596 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL)
7597 {
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007598 /* Copy a special key as-is. */
Bram Moolenaardb552d602006-03-23 22:59:57 +00007599 if (copy)
7600 {
7601 *dst++ = c;
7602 *dst++ = *src++;
7603 *dst++ = *src++;
7604 }
7605 else
7606 {
7607 dst += 3;
7608 src += 2;
7609 }
7610 continue;
7611 }
7612
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613 if (c == '\\' && *src != NUL)
7614 {
7615 /* Check for abbreviations -- webb */
7616 switch (*src)
7617 {
7618 case 'r': c = CAR; ++src; break;
7619 case 'n': c = NL; ++src; break;
7620 case 't': c = TAB; ++src; break;
7621 /* Oh no! \e already has meaning in subst pat :-( */
7622 /* case 'e': c = ESC; ++src; break; */
7623 case 'b': c = Ctrl_H; ++src; break;
7624
7625 /* If "backslash" is TRUE the backslash will be removed
7626 * later. Used to insert a literal CR. */
7627 default: if (backslash)
7628 {
7629 if (copy)
7630 *dst = '\\';
7631 ++dst;
7632 }
7633 c = *src++;
7634 }
7635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007636#ifdef FEAT_MBYTE
Bram Moolenaardb552d602006-03-23 22:59:57 +00007637 else if (has_mbyte)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007638 c = mb_ptr2char(src - 1);
7639#endif
7640
Bram Moolenaardb552d602006-03-23 22:59:57 +00007641 /* Write to buffer, if copy is set. */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007642 if (func_one != (fptr_T)NULL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007643 /* Turbo C complains without the typecast */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007644 func_one = (fptr_T)(func_one(&cc, c));
7645 else if (func_all != (fptr_T)NULL)
7646 /* Turbo C complains without the typecast */
7647 func_all = (fptr_T)(func_all(&cc, c));
7648 else /* just copy */
7649 cc = c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007650
7651#ifdef FEAT_MBYTE
7652 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653 {
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007654 int totlen = mb_ptr2len(src - 1);
7655
Bram Moolenaar071d4272004-06-13 20:20:40 +00007656 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007657 mb_char2bytes(cc, dst);
7658 dst += mb_char2len(cc) - 1;
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007659 if (enc_utf8)
7660 {
7661 int clen = utf_ptr2len(src - 1);
7662
7663 /* If the character length is shorter than "totlen", there
7664 * are composing characters; copy them as-is. */
7665 if (clen < totlen)
7666 {
7667 if (copy)
7668 mch_memmove(dst + 1, src - 1 + clen,
7669 (size_t)(totlen - clen));
7670 dst += totlen - clen;
7671 }
7672 }
7673 src += totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 }
7675 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007676#endif
7677 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007678 *dst = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007679 dst++;
7680 }
7681 else
7682 {
7683 if (REG_MULTI)
7684 {
7685 clnum = reg_mmatch->startpos[no].lnum;
7686 if (clnum < 0 || reg_mmatch->endpos[no].lnum < 0)
7687 s = NULL;
7688 else
7689 {
7690 s = reg_getline(clnum) + reg_mmatch->startpos[no].col;
7691 if (reg_mmatch->endpos[no].lnum == clnum)
7692 len = reg_mmatch->endpos[no].col
7693 - reg_mmatch->startpos[no].col;
7694 else
7695 len = (int)STRLEN(s);
7696 }
7697 }
7698 else
7699 {
7700 s = reg_match->startp[no];
7701 if (reg_match->endp[no] == NULL)
7702 s = NULL;
7703 else
7704 len = (int)(reg_match->endp[no] - s);
7705 }
7706 if (s != NULL)
7707 {
7708 for (;;)
7709 {
7710 if (len == 0)
7711 {
7712 if (REG_MULTI)
7713 {
7714 if (reg_mmatch->endpos[no].lnum == clnum)
7715 break;
7716 if (copy)
7717 *dst = CAR;
7718 ++dst;
7719 s = reg_getline(++clnum);
7720 if (reg_mmatch->endpos[no].lnum == clnum)
7721 len = reg_mmatch->endpos[no].col;
7722 else
7723 len = (int)STRLEN(s);
7724 }
7725 else
7726 break;
7727 }
7728 else if (*s == NUL) /* we hit NUL. */
7729 {
7730 if (copy)
7731 EMSG(_(e_re_damg));
7732 goto exit;
7733 }
7734 else
7735 {
7736 if (backslash && (*s == CAR || *s == '\\'))
7737 {
7738 /*
7739 * Insert a backslash in front of a CR, otherwise
7740 * it will be replaced by a line break.
7741 * Number of backslashes will be halved later,
7742 * double them here.
7743 */
7744 if (copy)
7745 {
7746 dst[0] = '\\';
7747 dst[1] = *s;
7748 }
7749 dst += 2;
7750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751 else
7752 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007753#ifdef FEAT_MBYTE
7754 if (has_mbyte)
7755 c = mb_ptr2char(s);
7756 else
7757#endif
7758 c = *s;
7759
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007760 if (func_one != (fptr_T)NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007761 /* Turbo C complains without the typecast */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007762 func_one = (fptr_T)(func_one(&cc, c));
7763 else if (func_all != (fptr_T)NULL)
7764 /* Turbo C complains without the typecast */
7765 func_all = (fptr_T)(func_all(&cc, c));
7766 else /* just copy */
7767 cc = c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007768
7769#ifdef FEAT_MBYTE
7770 if (has_mbyte)
7771 {
Bram Moolenaar9225efb2007-07-30 20:32:53 +00007772 int l;
7773
7774 /* Copy composing characters separately, one
7775 * at a time. */
7776 if (enc_utf8)
7777 l = utf_ptr2len(s) - 1;
7778 else
7779 l = mb_ptr2len(s) - 1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007780
7781 s += l;
7782 len -= l;
7783 if (copy)
7784 mb_char2bytes(cc, dst);
7785 dst += mb_char2len(cc) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007786 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007787 else
7788#endif
7789 if (copy)
7790 *dst = cc;
7791 dst++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007792 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007793
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794 ++s;
7795 --len;
7796 }
7797 }
7798 }
7799 no = -1;
7800 }
7801 }
7802 if (copy)
7803 *dst = NUL;
7804
7805exit:
7806 return (int)((dst - dest) + 1);
7807}
7808
7809#ifdef FEAT_EVAL
Bram Moolenaard32a3192009-11-26 19:40:49 +00007810static char_u *reg_getline_submatch __ARGS((linenr_T lnum));
7811
Bram Moolenaar071d4272004-06-13 20:20:40 +00007812/*
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007813 * Call reg_getline() with the line numbers from the submatch. If a
7814 * substitute() was used the reg_maxline and other values have been
7815 * overwritten.
7816 */
7817 static char_u *
7818reg_getline_submatch(lnum)
7819 linenr_T lnum;
7820{
7821 char_u *s;
7822 linenr_T save_first = reg_firstlnum;
7823 linenr_T save_max = reg_maxline;
7824
7825 reg_firstlnum = submatch_firstlnum;
7826 reg_maxline = submatch_maxline;
7827
7828 s = reg_getline(lnum);
7829
7830 reg_firstlnum = save_first;
7831 reg_maxline = save_max;
7832 return s;
7833}
7834
7835/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007836 * Used for the submatch() function: get the string from the n'th submatch in
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837 * allocated memory.
7838 * Returns NULL when not in a ":s" command and for a non-existing submatch.
7839 */
7840 char_u *
7841reg_submatch(no)
7842 int no;
7843{
7844 char_u *retval = NULL;
7845 char_u *s;
7846 int len;
7847 int round;
7848 linenr_T lnum;
7849
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007850 if (!can_f_submatch || no < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007851 return NULL;
7852
7853 if (submatch_match == NULL)
7854 {
7855 /*
7856 * First round: compute the length and allocate memory.
7857 * Second round: copy the text.
7858 */
7859 for (round = 1; round <= 2; ++round)
7860 {
7861 lnum = submatch_mmatch->startpos[no].lnum;
7862 if (lnum < 0 || submatch_mmatch->endpos[no].lnum < 0)
7863 return NULL;
7864
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007865 s = reg_getline_submatch(lnum) + submatch_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007866 if (s == NULL) /* anti-crash check, cannot happen? */
7867 break;
7868 if (submatch_mmatch->endpos[no].lnum == lnum)
7869 {
7870 /* Within one line: take form start to end col. */
7871 len = submatch_mmatch->endpos[no].col
7872 - submatch_mmatch->startpos[no].col;
7873 if (round == 2)
Bram Moolenaarbbebc852005-07-18 21:47:53 +00007874 vim_strncpy(retval, s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007875 ++len;
7876 }
7877 else
7878 {
7879 /* Multiple lines: take start line from start col, middle
7880 * lines completely and end line up to end col. */
7881 len = (int)STRLEN(s);
7882 if (round == 2)
7883 {
7884 STRCPY(retval, s);
7885 retval[len] = '\n';
7886 }
7887 ++len;
7888 ++lnum;
7889 while (lnum < submatch_mmatch->endpos[no].lnum)
7890 {
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007891 s = reg_getline_submatch(lnum++);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892 if (round == 2)
7893 STRCPY(retval + len, s);
7894 len += (int)STRLEN(s);
7895 if (round == 2)
7896 retval[len] = '\n';
7897 ++len;
7898 }
7899 if (round == 2)
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007900 STRNCPY(retval + len, reg_getline_submatch(lnum),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007901 submatch_mmatch->endpos[no].col);
7902 len += submatch_mmatch->endpos[no].col;
7903 if (round == 2)
7904 retval[len] = NUL;
7905 ++len;
7906 }
7907
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007908 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007909 {
7910 retval = lalloc((long_u)len, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007911 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007912 return NULL;
7913 }
7914 }
7915 }
7916 else
7917 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00007918 s = submatch_match->startp[no];
7919 if (s == NULL || submatch_match->endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007920 retval = NULL;
7921 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007922 retval = vim_strnsave(s, (int)(submatch_match->endp[no] - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007923 }
7924
7925 return retval;
7926}
Bram Moolenaar41571762014-04-02 19:00:58 +02007927
7928/*
7929 * Used for the submatch() function with the optional non-zero argument: get
7930 * the list of strings from the n'th submatch in allocated memory with NULs
7931 * represented in NLs.
7932 * Returns a list of allocated strings. Returns NULL when not in a ":s"
7933 * command, for a non-existing submatch and for any error.
7934 */
7935 list_T *
7936reg_submatch_list(no)
7937 int no;
7938{
7939 char_u *s;
7940 linenr_T slnum;
7941 linenr_T elnum;
7942 colnr_T scol;
7943 colnr_T ecol;
7944 int i;
7945 list_T *list;
7946 int error = FALSE;
7947
7948 if (!can_f_submatch || no < 0)
7949 return NULL;
7950
7951 if (submatch_match == NULL)
7952 {
7953 slnum = submatch_mmatch->startpos[no].lnum;
7954 elnum = submatch_mmatch->endpos[no].lnum;
7955 if (slnum < 0 || elnum < 0)
7956 return NULL;
7957
7958 scol = submatch_mmatch->startpos[no].col;
7959 ecol = submatch_mmatch->endpos[no].col;
7960
7961 list = list_alloc();
7962 if (list == NULL)
7963 return NULL;
7964
7965 s = reg_getline_submatch(slnum) + scol;
7966 if (slnum == elnum)
7967 {
7968 if (list_append_string(list, s, ecol - scol) == FAIL)
7969 error = TRUE;
7970 }
7971 else
7972 {
7973 if (list_append_string(list, s, -1) == FAIL)
7974 error = TRUE;
7975 for (i = 1; i < elnum - slnum; i++)
7976 {
7977 s = reg_getline_submatch(slnum + i);
7978 if (list_append_string(list, s, -1) == FAIL)
7979 error = TRUE;
7980 }
7981 s = reg_getline_submatch(elnum);
7982 if (list_append_string(list, s, ecol) == FAIL)
7983 error = TRUE;
7984 }
7985 }
7986 else
7987 {
7988 s = submatch_match->startp[no];
7989 if (s == NULL || submatch_match->endp[no] == NULL)
7990 return NULL;
7991 list = list_alloc();
7992 if (list == NULL)
7993 return NULL;
7994 if (list_append_string(list, s,
7995 (int)(submatch_match->endp[no] - s)) == FAIL)
7996 error = TRUE;
7997 }
7998
7999 if (error)
8000 {
8001 list_free(list, TRUE);
8002 return NULL;
8003 }
8004 return list;
8005}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008006#endif
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008007
8008static regengine_T bt_regengine =
8009{
8010 bt_regcomp,
Bram Moolenaar473de612013-06-08 18:19:48 +02008011 bt_regfree,
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008012 bt_regexec_nl,
Bram Moolenaarfda37292014-11-05 14:27:36 +01008013 bt_regexec_multi,
8014 (char_u *)""
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008015};
8016
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008017#include "regexp_nfa.c"
8018
8019static regengine_T nfa_regengine =
8020{
8021 nfa_regcomp,
Bram Moolenaar473de612013-06-08 18:19:48 +02008022 nfa_regfree,
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008023 nfa_regexec_nl,
Bram Moolenaarfda37292014-11-05 14:27:36 +01008024 nfa_regexec_multi,
8025 (char_u *)""
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008026};
8027
8028/* Which regexp engine to use? Needed for vim_regcomp().
8029 * Must match with 'regexpengine'. */
8030static int regexp_engine = 0;
Bram Moolenaarfda37292014-11-05 14:27:36 +01008031
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008032#ifdef DEBUG
8033static char_u regname[][30] = {
8034 "AUTOMATIC Regexp Engine",
Bram Moolenaar75eb1612013-05-29 18:45:11 +02008035 "BACKTRACKING Regexp Engine",
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008036 "NFA Regexp Engine"
8037 };
8038#endif
8039
8040/*
8041 * Compile a regular expression into internal code.
Bram Moolenaar473de612013-06-08 18:19:48 +02008042 * Returns the program in allocated memory.
8043 * Use vim_regfree() to free the memory.
8044 * Returns NULL for an error.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008045 */
8046 regprog_T *
8047vim_regcomp(expr_arg, re_flags)
8048 char_u *expr_arg;
8049 int re_flags;
8050{
8051 regprog_T *prog = NULL;
8052 char_u *expr = expr_arg;
8053
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008054 regexp_engine = p_re;
8055
8056 /* Check for prefix "\%#=", that sets the regexp engine */
8057 if (STRNCMP(expr, "\\%#=", 4) == 0)
8058 {
8059 int newengine = expr[4] - '0';
8060
8061 if (newengine == AUTOMATIC_ENGINE
8062 || newengine == BACKTRACKING_ENGINE
8063 || newengine == NFA_ENGINE)
8064 {
8065 regexp_engine = expr[4] - '0';
8066 expr += 5;
8067#ifdef DEBUG
Bram Moolenaar6e132072014-05-13 16:46:32 +02008068 smsg((char_u *)"New regexp mode selected (%d): %s",
8069 regexp_engine, regname[newengine]);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008070#endif
8071 }
8072 else
8073 {
8074 EMSG(_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used "));
8075 regexp_engine = AUTOMATIC_ENGINE;
8076 }
8077 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008078 bt_regengine.expr = expr;
8079 nfa_regengine.expr = expr;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008080
8081 /*
8082 * First try the NFA engine, unless backtracking was requested.
8083 */
8084 if (regexp_engine != BACKTRACKING_ENGINE)
Bram Moolenaare0ad3652015-01-27 12:59:55 +01008085 prog = nfa_regengine.regcomp(expr,
8086 re_flags + (regexp_engine == AUTOMATIC_ENGINE ? RE_AUTO : 0));
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008087 else
8088 prog = bt_regengine.regcomp(expr, re_flags);
8089
Bram Moolenaarfda37292014-11-05 14:27:36 +01008090 /* Check for error compiling regexp with initial engine. */
8091 if (prog == NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008092 {
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008093#ifdef BT_REGEXP_DEBUG_LOG
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008094 if (regexp_engine != BACKTRACKING_ENGINE) /* debugging log for NFA */
8095 {
8096 FILE *f;
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008097 f = fopen(BT_REGEXP_DEBUG_LOG_NAME, "a");
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008098 if (f)
8099 {
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008100 fprintf(f, "Syntax error in \"%s\"\n", expr);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008101 fclose(f);
8102 }
8103 else
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008104 EMSG2("(NFA) Could not open \"%s\" to write !!!",
8105 BT_REGEXP_DEBUG_LOG_NAME);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008106 }
8107#endif
8108 /*
Bram Moolenaarfda37292014-11-05 14:27:36 +01008109 * If the NFA engine failed, try the backtracking engine.
Bram Moolenaare0ad3652015-01-27 12:59:55 +01008110 * The NFA engine also fails for patterns that it can't handle well
8111 * but are still valid patterns, thus a retry should work.
8112 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008113 if (regexp_engine == AUTOMATIC_ENGINE)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008114 {
Bram Moolenaare0ad3652015-01-27 12:59:55 +01008115 regexp_engine = BACKTRACKING_ENGINE;
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008116 prog = bt_regengine.regcomp(expr, re_flags);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008117 }
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008118 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008119
Bram Moolenaarfda37292014-11-05 14:27:36 +01008120 if (prog != NULL)
8121 {
8122 /* Store the info needed to call regcomp() again when the engine turns
8123 * out to be very slow when executing it. */
8124 prog->re_engine = regexp_engine;
8125 prog->re_flags = re_flags;
8126 }
8127
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008128 return prog;
8129}
8130
8131/*
Bram Moolenaar473de612013-06-08 18:19:48 +02008132 * Free a compiled regexp program, returned by vim_regcomp().
8133 */
8134 void
8135vim_regfree(prog)
8136 regprog_T *prog;
8137{
8138 if (prog != NULL)
8139 prog->engine->regfree(prog);
8140}
8141
Bram Moolenaarfda37292014-11-05 14:27:36 +01008142#ifdef FEAT_EVAL
8143static void report_re_switch __ARGS((char_u *pat));
8144
8145 static void
8146report_re_switch(pat)
8147 char_u *pat;
8148{
8149 if (p_verbose > 0)
8150 {
8151 verbose_enter();
8152 MSG_PUTS(_("Switching to backtracking RE engine for pattern: "));
8153 MSG_PUTS(pat);
8154 verbose_leave();
8155 }
8156}
8157#endif
8158
8159static int vim_regexec_both __ARGS((regmatch_T *rmp, char_u *line, colnr_T col, int nl));
8160
Bram Moolenaar473de612013-06-08 18:19:48 +02008161/*
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008162 * Match a regexp against a string.
8163 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008164 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008165 * Uses curbuf for line count and 'iskeyword'.
Bram Moolenaarfda37292014-11-05 14:27:36 +01008166 * When "nl" is TRUE consider a "\n" in "line" to be a line break.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008167 *
8168 * Return TRUE if there is a match, FALSE if not.
8169 */
Bram Moolenaarfda37292014-11-05 14:27:36 +01008170 static int
8171vim_regexec_both(rmp, line, col, nl)
8172 regmatch_T *rmp;
8173 char_u *line; /* string to match against */
8174 colnr_T col; /* column to start looking for match */
8175 int nl;
8176{
8177 int result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl);
8178
8179 /* NFA engine aborted because it's very slow. */
8180 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE
8181 && result == NFA_TOO_EXPENSIVE)
8182 {
8183 int save_p_re = p_re;
8184 int re_flags = rmp->regprog->re_flags;
8185 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern);
8186
8187 p_re = BACKTRACKING_ENGINE;
8188 vim_regfree(rmp->regprog);
8189 if (pat != NULL)
8190 {
8191#ifdef FEAT_EVAL
8192 report_re_switch(pat);
8193#endif
8194 rmp->regprog = vim_regcomp(pat, re_flags);
8195 if (rmp->regprog != NULL)
8196 result = rmp->regprog->engine->regexec_nl(rmp, line, col, nl);
8197 vim_free(pat);
8198 }
8199
8200 p_re = save_p_re;
8201 }
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008202 return result > 0;
Bram Moolenaarfda37292014-11-05 14:27:36 +01008203}
8204
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008205/*
8206 * Note: "*prog" may be freed and changed.
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008207 * Return TRUE if there is a match, FALSE if not.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008208 */
8209 int
8210vim_regexec_prog(prog, ignore_case, line, col)
8211 regprog_T **prog;
8212 int ignore_case;
8213 char_u *line;
8214 colnr_T col;
8215{
8216 int r;
8217 regmatch_T regmatch;
8218
8219 regmatch.regprog = *prog;
8220 regmatch.rm_ic = ignore_case;
8221 r = vim_regexec_both(&regmatch, line, col, FALSE);
8222 *prog = regmatch.regprog;
8223 return r;
8224}
8225
8226/*
8227 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008228 * Return TRUE if there is a match, FALSE if not.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008229 */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008230 int
8231vim_regexec(rmp, line, col)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008232 regmatch_T *rmp;
8233 char_u *line;
8234 colnr_T col;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008235{
Bram Moolenaarfda37292014-11-05 14:27:36 +01008236 return vim_regexec_both(rmp, line, col, FALSE);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008237}
8238
8239#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
8240 || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
8241/*
8242 * Like vim_regexec(), but consider a "\n" in "line" to be a line break.
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008243 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008244 * Return TRUE if there is a match, FALSE if not.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008245 */
8246 int
8247vim_regexec_nl(rmp, line, col)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008248 regmatch_T *rmp;
8249 char_u *line;
8250 colnr_T col;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008251{
Bram Moolenaarfda37292014-11-05 14:27:36 +01008252 return vim_regexec_both(rmp, line, col, TRUE);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008253}
8254#endif
8255
8256/*
8257 * Match a regexp against multiple lines.
8258 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
Bram Moolenaardffa5b82014-11-19 16:38:07 +01008259 * Note: "rmp->regprog" may be freed and changed.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008260 * Uses curbuf for line count and 'iskeyword'.
8261 *
8262 * Return zero if there is no match. Return number of lines contained in the
8263 * match otherwise.
8264 */
8265 long
8266vim_regexec_multi(rmp, win, buf, lnum, col, tm)
8267 regmmatch_T *rmp;
8268 win_T *win; /* window in which to search or NULL */
8269 buf_T *buf; /* buffer in which to search */
8270 linenr_T lnum; /* nr of line to start looking for match */
8271 colnr_T col; /* column to start looking for match */
8272 proftime_T *tm; /* timeout limit or NULL */
8273{
Bram Moolenaarfda37292014-11-05 14:27:36 +01008274 int result = rmp->regprog->engine->regexec_multi(
8275 rmp, win, buf, lnum, col, tm);
8276
8277 /* NFA engine aborted because it's very slow. */
8278 if (rmp->regprog->re_engine == AUTOMATIC_ENGINE
8279 && result == NFA_TOO_EXPENSIVE)
8280 {
8281 int save_p_re = p_re;
8282 int re_flags = rmp->regprog->re_flags;
8283 char_u *pat = vim_strsave(((nfa_regprog_T *)rmp->regprog)->pattern);
8284
8285 p_re = BACKTRACKING_ENGINE;
8286 vim_regfree(rmp->regprog);
8287 if (pat != NULL)
8288 {
8289#ifdef FEAT_EVAL
8290 report_re_switch(pat);
8291#endif
8292 rmp->regprog = vim_regcomp(pat, re_flags);
8293 if (rmp->regprog != NULL)
8294 result = rmp->regprog->engine->regexec_multi(
8295 rmp, win, buf, lnum, col, tm);
8296 vim_free(pat);
8297 }
8298 p_re = save_p_re;
8299 }
8300
Bram Moolenaar66a3e792014-11-20 23:07:05 +01008301 return result <= 0 ? 0 : result;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008302}