blob: d36ac49bb6a9a250989d53a423f69cdb131c2cc9 [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;
4785 for (i = 0; reginput[i] != NUL; i += utf_char2len(inpc))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004786 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004787 inpc = mb_ptr2char(reginput + i);
4788 if (!utf_iscomposing(inpc))
4789 {
4790 if (i > 0)
4791 break;
4792 }
4793 else if (opndc == inpc)
4794 {
4795 /* Include all following composing chars. */
4796 len = i + mb_ptr2len(reginput + i);
4797 status = RA_MATCH;
4798 break;
4799 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004800 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004801 }
4802 else
4803 for (i = 0; i < len; ++i)
4804 if (opnd[i] != reginput[i])
4805 {
4806 status = RA_NOMATCH;
4807 break;
4808 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 reginput += len;
4810 }
4811 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004812 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813 break;
4814#endif
Bram Moolenaar8df5acf2014-05-13 19:37:29 +02004815 case RE_COMPOSING:
4816#ifdef FEAT_MBYTE
4817 if (enc_utf8)
4818 {
4819 /* Skip composing characters. */
4820 while (utf_iscomposing(utf_ptr2char(reginput)))
4821 mb_cptr_adv(reginput);
4822 }
4823#endif
4824 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825
4826 case NOTHING:
4827 break;
4828
4829 case BACK:
Bram Moolenaar582fd852005-03-28 20:58:01 +00004830 {
4831 int i;
4832 backpos_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833
Bram Moolenaar582fd852005-03-28 20:58:01 +00004834 /*
4835 * When we run into BACK we need to check if we don't keep
4836 * looping without matching any input. The second and later
4837 * times a BACK is encountered it fails if the input is still
4838 * at the same position as the previous time.
4839 * The positions are stored in "backpos" and found by the
4840 * current value of "scan", the position in the RE program.
4841 */
4842 bp = (backpos_T *)backpos.ga_data;
4843 for (i = 0; i < backpos.ga_len; ++i)
4844 if (bp[i].bp_scan == scan)
4845 break;
4846 if (i == backpos.ga_len)
4847 {
4848 /* First time at this BACK, make room to store the pos. */
4849 if (ga_grow(&backpos, 1) == FAIL)
4850 status = RA_FAIL;
4851 else
4852 {
4853 /* get "ga_data" again, it may have changed */
4854 bp = (backpos_T *)backpos.ga_data;
4855 bp[i].bp_scan = scan;
4856 ++backpos.ga_len;
4857 }
4858 }
4859 else if (reg_save_equal(&bp[i].bp_pos))
4860 /* Still at same position as last time, fail. */
4861 status = RA_NOMATCH;
4862
4863 if (status != RA_FAIL && status != RA_NOMATCH)
4864 reg_save(&bp[i].bp_pos, &backpos);
4865 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004866 break;
4867
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 case MOPEN + 0: /* Match start: \zs */
4869 case MOPEN + 1: /* \( */
4870 case MOPEN + 2:
4871 case MOPEN + 3:
4872 case MOPEN + 4:
4873 case MOPEN + 5:
4874 case MOPEN + 6:
4875 case MOPEN + 7:
4876 case MOPEN + 8:
4877 case MOPEN + 9:
4878 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 no = op - MOPEN;
4880 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004881 rp = regstack_push(RS_MOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004882 if (rp == NULL)
4883 status = RA_FAIL;
4884 else
4885 {
4886 rp->rs_no = no;
4887 save_se(&rp->rs_un.sesave, &reg_startpos[no],
4888 &reg_startp[no]);
4889 /* We simply continue and handle the result when done. */
4890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004891 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004892 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893
4894 case NOPEN: /* \%( */
4895 case NCLOSE: /* \) after \%( */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004896 if (regstack_push(RS_NOPEN, scan) == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004897 status = RA_FAIL;
4898 /* We simply continue and handle the result when done. */
4899 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900
4901#ifdef FEAT_SYN_HL
4902 case ZOPEN + 1:
4903 case ZOPEN + 2:
4904 case ZOPEN + 3:
4905 case ZOPEN + 4:
4906 case ZOPEN + 5:
4907 case ZOPEN + 6:
4908 case ZOPEN + 7:
4909 case ZOPEN + 8:
4910 case ZOPEN + 9:
4911 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 no = op - ZOPEN;
4913 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004914 rp = regstack_push(RS_ZOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004915 if (rp == NULL)
4916 status = RA_FAIL;
4917 else
4918 {
4919 rp->rs_no = no;
4920 save_se(&rp->rs_un.sesave, &reg_startzpos[no],
4921 &reg_startzp[no]);
4922 /* We simply continue and handle the result when done. */
4923 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004925 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926#endif
4927
4928 case MCLOSE + 0: /* Match end: \ze */
4929 case MCLOSE + 1: /* \) */
4930 case MCLOSE + 2:
4931 case MCLOSE + 3:
4932 case MCLOSE + 4:
4933 case MCLOSE + 5:
4934 case MCLOSE + 6:
4935 case MCLOSE + 7:
4936 case MCLOSE + 8:
4937 case MCLOSE + 9:
4938 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 no = op - MCLOSE;
4940 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004941 rp = regstack_push(RS_MCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004942 if (rp == NULL)
4943 status = RA_FAIL;
4944 else
4945 {
4946 rp->rs_no = no;
4947 save_se(&rp->rs_un.sesave, &reg_endpos[no], &reg_endp[no]);
4948 /* We simply continue and handle the result when done. */
4949 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004951 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952
4953#ifdef FEAT_SYN_HL
4954 case ZCLOSE + 1: /* \) after \z( */
4955 case ZCLOSE + 2:
4956 case ZCLOSE + 3:
4957 case ZCLOSE + 4:
4958 case ZCLOSE + 5:
4959 case ZCLOSE + 6:
4960 case ZCLOSE + 7:
4961 case ZCLOSE + 8:
4962 case ZCLOSE + 9:
4963 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 no = op - ZCLOSE;
4965 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004966 rp = regstack_push(RS_ZCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004967 if (rp == NULL)
4968 status = RA_FAIL;
4969 else
4970 {
4971 rp->rs_no = no;
4972 save_se(&rp->rs_un.sesave, &reg_endzpos[no],
4973 &reg_endzp[no]);
4974 /* We simply continue and handle the result when done. */
4975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004977 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978#endif
4979
4980 case BACKREF + 1:
4981 case BACKREF + 2:
4982 case BACKREF + 3:
4983 case BACKREF + 4:
4984 case BACKREF + 5:
4985 case BACKREF + 6:
4986 case BACKREF + 7:
4987 case BACKREF + 8:
4988 case BACKREF + 9:
4989 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991
4992 no = op - BACKREF;
4993 cleanup_subexpr();
4994 if (!REG_MULTI) /* Single-line regexp */
4995 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004996 if (reg_startp[no] == NULL || reg_endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 {
4998 /* Backref was not set: Match an empty string. */
4999 len = 0;
5000 }
5001 else
5002 {
5003 /* Compare current input with back-ref in the same
5004 * line. */
5005 len = (int)(reg_endp[no] - reg_startp[no]);
5006 if (cstrncmp(reg_startp[no], reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005007 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 }
5009 }
5010 else /* Multi-line regexp */
5011 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00005012 if (reg_startpos[no].lnum < 0 || reg_endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 {
5014 /* Backref was not set: Match an empty string. */
5015 len = 0;
5016 }
5017 else
5018 {
5019 if (reg_startpos[no].lnum == reglnum
5020 && reg_endpos[no].lnum == reglnum)
5021 {
5022 /* Compare back-ref within the current line. */
5023 len = reg_endpos[no].col - reg_startpos[no].col;
5024 if (cstrncmp(regline + reg_startpos[no].col,
5025 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005026 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
5028 else
5029 {
5030 /* Messy situation: Need to compare between two
5031 * lines. */
Bram Moolenaar141f6bb2013-06-15 15:09:50 +02005032 int r = match_with_backref(
Bram Moolenaar580abea2013-06-14 20:31:28 +02005033 reg_startpos[no].lnum,
5034 reg_startpos[no].col,
5035 reg_endpos[no].lnum,
5036 reg_endpos[no].col,
Bram Moolenaar4cff8fa2013-06-14 22:48:54 +02005037 &len);
Bram Moolenaar141f6bb2013-06-15 15:09:50 +02005038
5039 if (r != RA_MATCH)
5040 status = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 }
5042 }
5043 }
5044
5045 /* Matched the backref, skip over it. */
5046 reginput += len;
5047 }
5048 break;
5049
5050#ifdef FEAT_SYN_HL
5051 case ZREF + 1:
5052 case ZREF + 2:
5053 case ZREF + 3:
5054 case ZREF + 4:
5055 case ZREF + 5:
5056 case ZREF + 6:
5057 case ZREF + 7:
5058 case ZREF + 8:
5059 case ZREF + 9:
5060 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 int len;
5062
5063 cleanup_zsubexpr();
5064 no = op - ZREF;
5065 if (re_extmatch_in != NULL
5066 && re_extmatch_in->matches[no] != NULL)
5067 {
5068 len = (int)STRLEN(re_extmatch_in->matches[no]);
5069 if (cstrncmp(re_extmatch_in->matches[no],
5070 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005071 status = RA_NOMATCH;
5072 else
5073 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 }
5075 else
5076 {
5077 /* Backref was not set: Match an empty string. */
5078 }
5079 }
5080 break;
5081#endif
5082
5083 case BRANCH:
5084 {
5085 if (OP(next) != BRANCH) /* No choice. */
5086 next = OPERAND(scan); /* Avoid recursion. */
5087 else
5088 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005089 rp = regstack_push(RS_BRANCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005090 if (rp == NULL)
5091 status = RA_FAIL;
5092 else
5093 status = RA_BREAK; /* rest is below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095 }
5096 break;
5097
5098 case BRACE_LIMITS:
5099 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 if (OP(next) == BRACE_SIMPLE)
5101 {
5102 bl_minval = OPERAND_MIN(scan);
5103 bl_maxval = OPERAND_MAX(scan);
5104 }
5105 else if (OP(next) >= BRACE_COMPLEX
5106 && OP(next) < BRACE_COMPLEX + 10)
5107 {
5108 no = OP(next) - BRACE_COMPLEX;
5109 brace_min[no] = OPERAND_MIN(scan);
5110 brace_max[no] = OPERAND_MAX(scan);
5111 brace_count[no] = 0;
5112 }
5113 else
5114 {
5115 EMSG(_(e_internal)); /* Shouldn't happen */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005116 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 }
5118 }
5119 break;
5120
5121 case BRACE_COMPLEX + 0:
5122 case BRACE_COMPLEX + 1:
5123 case BRACE_COMPLEX + 2:
5124 case BRACE_COMPLEX + 3:
5125 case BRACE_COMPLEX + 4:
5126 case BRACE_COMPLEX + 5:
5127 case BRACE_COMPLEX + 6:
5128 case BRACE_COMPLEX + 7:
5129 case BRACE_COMPLEX + 8:
5130 case BRACE_COMPLEX + 9:
5131 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 no = op - BRACE_COMPLEX;
5133 ++brace_count[no];
5134
5135 /* If not matched enough times yet, try one more */
5136 if (brace_count[no] <= (brace_min[no] <= brace_max[no]
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005137 ? brace_min[no] : brace_max[no]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005139 rp = regstack_push(RS_BRCPLX_MORE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005140 if (rp == NULL)
5141 status = RA_FAIL;
5142 else
5143 {
5144 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005145 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005146 next = OPERAND(scan);
5147 /* We continue and handle the result when done. */
5148 }
5149 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 }
5151
5152 /* If matched enough times, may try matching some more */
5153 if (brace_min[no] <= brace_max[no])
5154 {
5155 /* Range is the normal way around, use longest match */
5156 if (brace_count[no] <= brace_max[no])
5157 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005158 rp = regstack_push(RS_BRCPLX_LONG, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005159 if (rp == NULL)
5160 status = RA_FAIL;
5161 else
5162 {
5163 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005164 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005165 next = OPERAND(scan);
5166 /* We continue and handle the result when done. */
5167 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 }
5169 }
5170 else
5171 {
5172 /* Range is backwards, use shortest match first */
5173 if (brace_count[no] <= brace_min[no])
5174 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005175 rp = regstack_push(RS_BRCPLX_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005176 if (rp == NULL)
5177 status = RA_FAIL;
5178 else
5179 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005180 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005181 /* We continue and handle the result when done. */
5182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 }
5184 }
5185 }
5186 break;
5187
5188 case BRACE_SIMPLE:
5189 case STAR:
5190 case PLUS:
5191 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005192 regstar_T rst;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193
5194 /*
5195 * Lookahead to avoid useless match attempts when we know
5196 * what character comes next.
5197 */
5198 if (OP(next) == EXACTLY)
5199 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005200 rst.nextb = *OPERAND(next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 if (ireg_ic)
5202 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005203 if (MB_ISUPPER(rst.nextb))
5204 rst.nextb_ic = MB_TOLOWER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 else
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005206 rst.nextb_ic = MB_TOUPPER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 }
5208 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005209 rst.nextb_ic = rst.nextb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 }
5211 else
5212 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005213 rst.nextb = NUL;
5214 rst.nextb_ic = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 }
5216 if (op != BRACE_SIMPLE)
5217 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005218 rst.minval = (op == STAR) ? 0 : 1;
5219 rst.maxval = MAX_LIMIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 }
5221 else
5222 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005223 rst.minval = bl_minval;
5224 rst.maxval = bl_maxval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 }
5226
5227 /*
5228 * When maxval > minval, try matching as much as possible, up
5229 * to maxval. When maxval < minval, try matching at least the
5230 * minimal number (since the range is backwards, that's also
5231 * maxval!).
5232 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005233 rst.count = regrepeat(OPERAND(scan), rst.maxval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005236 status = RA_FAIL;
5237 break;
5238 }
5239 if (rst.minval <= rst.maxval
5240 ? rst.count >= rst.minval : rst.count >= rst.maxval)
5241 {
5242 /* It could match. Prepare for trying to match what
5243 * follows. The code is below. Parameters are stored in
5244 * a regstar_T on the regstack. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005245 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005246 {
5247 EMSG(_(e_maxmempat));
5248 status = RA_FAIL;
5249 }
5250 else if (ga_grow(&regstack, sizeof(regstar_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005251 status = RA_FAIL;
5252 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005254 regstack.ga_len += sizeof(regstar_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005255 rp = regstack_push(rst.minval <= rst.maxval
Bram Moolenaar582fd852005-03-28 20:58:01 +00005256 ? RS_STAR_LONG : RS_STAR_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005257 if (rp == NULL)
5258 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005259 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005260 {
5261 *(((regstar_T *)rp) - 1) = rst;
5262 status = RA_BREAK; /* skip the restore bits */
5263 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005264 }
5265 }
5266 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005267 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 }
5270 break;
5271
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005272 case NOMATCH:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 case MATCH:
5274 case SUBPAT:
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005275 rp = regstack_push(RS_NOMATCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005276 if (rp == NULL)
5277 status = RA_FAIL;
5278 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005280 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005281 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005282 next = OPERAND(scan);
5283 /* We continue and handle the result when done. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 }
5285 break;
5286
5287 case BEHIND:
5288 case NOBEHIND:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005289 /* Need a bit of room to store extra positions. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005290 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005291 {
5292 EMSG(_(e_maxmempat));
5293 status = RA_FAIL;
5294 }
5295 else if (ga_grow(&regstack, sizeof(regbehind_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005296 status = RA_FAIL;
5297 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005298 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005299 regstack.ga_len += sizeof(regbehind_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005300 rp = regstack_push(RS_BEHIND1, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005301 if (rp == NULL)
5302 status = RA_FAIL;
5303 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005305 /* Need to save the subexpr to be able to restore them
5306 * when there is a match but we don't use it. */
5307 save_subexpr(((regbehind_T *)rp) - 1);
5308
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005309 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005310 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005311 /* First try if what follows matches. If it does then we
5312 * check the behind match by looping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005315 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
5317 case BHPOS:
5318 if (REG_MULTI)
5319 {
5320 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline)
5321 || behind_pos.rs_u.pos.lnum != reglnum)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005322 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323 }
5324 else if (behind_pos.rs_u.ptr != reginput)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005325 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005326 break;
5327
5328 case NEWL:
Bram Moolenaar640009d2006-10-17 16:48:26 +00005329 if ((c != NUL || !REG_MULTI || reglnum > reg_maxline
5330 || reg_line_lbr) && (c != '\n' || !reg_line_lbr))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005331 status = RA_NOMATCH;
5332 else if (reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 ADVANCE_REGINPUT();
5334 else
5335 reg_nextline();
5336 break;
5337
5338 case END:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005339 status = RA_MATCH; /* Success! */
5340 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341
5342 default:
5343 EMSG(_(e_re_corr));
5344#ifdef DEBUG
5345 printf("Illegal op code %d\n", op);
5346#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005347 status = RA_FAIL;
5348 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 }
5350 }
5351
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005352 /* If we can't continue sequentially, break the inner loop. */
5353 if (status != RA_CONT)
5354 break;
5355
5356 /* Continue in inner loop, advance to next item. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 scan = next;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005358
5359 } /* end of inner loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005360
5361 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005362 * If there is something on the regstack execute the code for the state.
Bram Moolenaar582fd852005-03-28 20:58:01 +00005363 * If the state is popped then loop and use the older state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005365 while (regstack.ga_len > 0 && status != RA_FAIL)
5366 {
5367 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
5368 switch (rp->rs_state)
5369 {
5370 case RS_NOPEN:
5371 /* Result is passed on as-is, simply pop the state. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005372 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005373 break;
5374
5375 case RS_MOPEN:
5376 /* Pop the state. Restore pointers when there is no match. */
5377 if (status == RA_NOMATCH)
5378 restore_se(&rp->rs_un.sesave, &reg_startpos[rp->rs_no],
5379 &reg_startp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005380 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005381 break;
5382
5383#ifdef FEAT_SYN_HL
5384 case RS_ZOPEN:
5385 /* Pop the state. Restore pointers when there is no match. */
5386 if (status == RA_NOMATCH)
5387 restore_se(&rp->rs_un.sesave, &reg_startzpos[rp->rs_no],
5388 &reg_startzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005389 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005390 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005392
5393 case RS_MCLOSE:
5394 /* Pop the state. Restore pointers when there is no match. */
5395 if (status == RA_NOMATCH)
5396 restore_se(&rp->rs_un.sesave, &reg_endpos[rp->rs_no],
5397 &reg_endp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005398 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005399 break;
5400
5401#ifdef FEAT_SYN_HL
5402 case RS_ZCLOSE:
5403 /* Pop the state. Restore pointers when there is no match. */
5404 if (status == RA_NOMATCH)
5405 restore_se(&rp->rs_un.sesave, &reg_endzpos[rp->rs_no],
5406 &reg_endzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005407 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005408 break;
5409#endif
5410
5411 case RS_BRANCH:
5412 if (status == RA_MATCH)
5413 /* this branch matched, use it */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005414 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005415 else
5416 {
5417 if (status != RA_BREAK)
5418 {
5419 /* After a non-matching branch: try next one. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005420 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005421 scan = rp->rs_scan;
5422 }
5423 if (scan == NULL || OP(scan) != BRANCH)
5424 {
5425 /* no more branches, didn't find a match */
5426 status = RA_NOMATCH;
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005427 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005428 }
5429 else
5430 {
5431 /* Prepare to try a branch. */
5432 rp->rs_scan = regnext(scan);
Bram Moolenaar582fd852005-03-28 20:58:01 +00005433 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005434 scan = OPERAND(scan);
5435 }
5436 }
5437 break;
5438
5439 case RS_BRCPLX_MORE:
5440 /* Pop the state. Restore pointers when there is no match. */
5441 if (status == RA_NOMATCH)
5442 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005443 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005444 --brace_count[rp->rs_no]; /* decrement match count */
5445 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005446 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005447 break;
5448
5449 case RS_BRCPLX_LONG:
5450 /* Pop the state. Restore pointers when there is no match. */
5451 if (status == RA_NOMATCH)
5452 {
5453 /* There was no match, but we did find enough matches. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005454 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005455 --brace_count[rp->rs_no];
5456 /* continue with the items after "\{}" */
5457 status = RA_CONT;
5458 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005459 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005460 if (status == RA_CONT)
5461 scan = regnext(scan);
5462 break;
5463
5464 case RS_BRCPLX_SHORT:
5465 /* Pop the state. Restore pointers when there is no match. */
5466 if (status == RA_NOMATCH)
5467 /* There was no match, try to match one more item. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005468 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005469 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005470 if (status == RA_NOMATCH)
5471 {
5472 scan = OPERAND(scan);
5473 status = RA_CONT;
5474 }
5475 break;
5476
5477 case RS_NOMATCH:
5478 /* Pop the state. If the operand matches for NOMATCH or
5479 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup,
5480 * except for SUBPAT, and continue with the next item. */
5481 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH))
5482 status = RA_NOMATCH;
5483 else
5484 {
5485 status = RA_CONT;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005486 if (rp->rs_no != SUBPAT) /* zero-width */
5487 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005488 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005489 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005490 if (status == RA_CONT)
5491 scan = regnext(scan);
5492 break;
5493
5494 case RS_BEHIND1:
5495 if (status == RA_NOMATCH)
5496 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005497 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005498 regstack.ga_len -= sizeof(regbehind_T);
5499 }
5500 else
5501 {
5502 /* The stuff after BEHIND/NOBEHIND matches. Now try if
5503 * the behind part does (not) match before the current
5504 * position in the input. This must be done at every
5505 * position in the input and checking if the match ends at
5506 * the current position. */
5507
5508 /* save the position after the found match for next */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005509 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005510
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005511 /* Start looking for a match with operand at the current
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00005512 * position. Go back one character until we find the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005513 * result, hitting the start of the line or the previous
5514 * line (for multi-line matching).
5515 * Set behind_pos to where the match should end, BHPOS
5516 * will match it. Save the current value. */
5517 (((regbehind_T *)rp) - 1)->save_behind = behind_pos;
5518 behind_pos = rp->rs_un.regsave;
5519
5520 rp->rs_state = RS_BEHIND2;
5521
Bram Moolenaar582fd852005-03-28 20:58:01 +00005522 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005523 scan = OPERAND(rp->rs_scan) + 4;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005524 }
5525 break;
5526
5527 case RS_BEHIND2:
5528 /*
5529 * Looping for BEHIND / NOBEHIND match.
5530 */
5531 if (status == RA_MATCH && reg_save_equal(&behind_pos))
5532 {
5533 /* found a match that ends where "next" started */
5534 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5535 if (rp->rs_no == BEHIND)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005536 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5537 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005538 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005539 {
5540 /* But we didn't want a match. Need to restore the
5541 * subexpr, because what follows matched, so they have
5542 * been set. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005543 status = RA_NOMATCH;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005544 restore_subexpr(((regbehind_T *)rp) - 1);
5545 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005546 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005547 regstack.ga_len -= sizeof(regbehind_T);
5548 }
5549 else
5550 {
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005551 long limit;
5552
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005553 /* No match or a match that doesn't end where we want it: Go
5554 * back one character. May go to previous line once. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005555 no = OK;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005556 limit = OPERAND_MIN(rp->rs_scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005557 if (REG_MULTI)
5558 {
Bram Moolenaar61602c52013-06-01 19:54:43 +02005559 if (limit > 0
5560 && ((rp->rs_un.regsave.rs_u.pos.lnum
5561 < behind_pos.rs_u.pos.lnum
5562 ? (colnr_T)STRLEN(regline)
5563 : behind_pos.rs_u.pos.col)
5564 - rp->rs_un.regsave.rs_u.pos.col >= limit))
5565 no = FAIL;
5566 else if (rp->rs_un.regsave.rs_u.pos.col == 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005567 {
5568 if (rp->rs_un.regsave.rs_u.pos.lnum
5569 < behind_pos.rs_u.pos.lnum
5570 || reg_getline(
5571 --rp->rs_un.regsave.rs_u.pos.lnum)
5572 == NULL)
5573 no = FAIL;
5574 else
5575 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005576 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005577 rp->rs_un.regsave.rs_u.pos.col =
5578 (colnr_T)STRLEN(regline);
5579 }
5580 }
5581 else
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005582 {
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005583#ifdef FEAT_MBYTE
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005584 if (has_mbyte)
5585 rp->rs_un.regsave.rs_u.pos.col -=
5586 (*mb_head_off)(regline, regline
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005587 + rp->rs_un.regsave.rs_u.pos.col - 1) + 1;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005588 else
Bram Moolenaarf5e44a72013-02-26 18:46:01 +01005589#endif
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005590 --rp->rs_un.regsave.rs_u.pos.col;
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005591 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005592 }
5593 else
5594 {
5595 if (rp->rs_un.regsave.rs_u.ptr == regline)
5596 no = FAIL;
5597 else
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005598 {
5599 mb_ptr_back(regline, rp->rs_un.regsave.rs_u.ptr);
5600 if (limit > 0 && (long)(behind_pos.rs_u.ptr
5601 - rp->rs_un.regsave.rs_u.ptr) > limit)
5602 no = FAIL;
5603 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005604 }
5605 if (no == OK)
5606 {
5607 /* Advanced, prepare for finding match again. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005608 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaar75eb1612013-05-29 18:45:11 +02005609 scan = OPERAND(rp->rs_scan) + 4;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005610 if (status == RA_MATCH)
5611 {
5612 /* We did match, so subexpr may have been changed,
5613 * need to restore them for the next try. */
5614 status = RA_NOMATCH;
5615 restore_subexpr(((regbehind_T *)rp) - 1);
5616 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005617 }
5618 else
5619 {
5620 /* Can't advance. For NOBEHIND that's a match. */
5621 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5622 if (rp->rs_no == NOBEHIND)
5623 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005624 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5625 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005626 status = RA_MATCH;
5627 }
5628 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005629 {
5630 /* We do want a proper match. Need to restore the
5631 * subexpr if we had a match, because they may have
5632 * been set. */
5633 if (status == RA_MATCH)
5634 {
5635 status = RA_NOMATCH;
5636 restore_subexpr(((regbehind_T *)rp) - 1);
5637 }
5638 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005639 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005640 regstack.ga_len -= sizeof(regbehind_T);
5641 }
5642 }
5643 break;
5644
5645 case RS_STAR_LONG:
5646 case RS_STAR_SHORT:
5647 {
5648 regstar_T *rst = ((regstar_T *)rp) - 1;
5649
5650 if (status == RA_MATCH)
5651 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005652 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005653 regstack.ga_len -= sizeof(regstar_T);
5654 break;
5655 }
5656
5657 /* Tried once already, restore input pointers. */
5658 if (status != RA_BREAK)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005659 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005660
5661 /* Repeat until we found a position where it could match. */
5662 for (;;)
5663 {
5664 if (status != RA_BREAK)
5665 {
5666 /* Tried first position already, advance. */
5667 if (rp->rs_state == RS_STAR_LONG)
5668 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005669 /* Trying for longest match, but couldn't or
5670 * didn't match -- back up one char. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005671 if (--rst->count < rst->minval)
5672 break;
5673 if (reginput == regline)
5674 {
5675 /* backup to last char of previous line */
5676 --reglnum;
5677 regline = reg_getline(reglnum);
5678 /* Just in case regrepeat() didn't count
5679 * right. */
5680 if (regline == NULL)
5681 break;
5682 reginput = regline + STRLEN(regline);
5683 fast_breakcheck();
5684 }
5685 else
5686 mb_ptr_back(regline, reginput);
5687 }
5688 else
5689 {
5690 /* Range is backwards, use shortest match first.
5691 * Careful: maxval and minval are exchanged!
5692 * Couldn't or didn't match: try advancing one
5693 * char. */
5694 if (rst->count == rst->minval
5695 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0)
5696 break;
5697 ++rst->count;
5698 }
5699 if (got_int)
5700 break;
5701 }
5702 else
5703 status = RA_NOMATCH;
5704
5705 /* If it could match, try it. */
5706 if (rst->nextb == NUL || *reginput == rst->nextb
5707 || *reginput == rst->nextb_ic)
5708 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005709 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005710 scan = regnext(rp->rs_scan);
5711 status = RA_CONT;
5712 break;
5713 }
5714 }
5715 if (status != RA_CONT)
5716 {
5717 /* Failed. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005718 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005719 regstack.ga_len -= sizeof(regstar_T);
5720 status = RA_NOMATCH;
5721 }
5722 }
5723 break;
5724 }
5725
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005726 /* If we want to continue the inner loop or didn't pop a state
5727 * continue matching loop */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005728 if (status == RA_CONT || rp == (regitem_T *)
5729 ((char *)regstack.ga_data + regstack.ga_len) - 1)
5730 break;
5731 }
5732
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005733 /* May need to continue with the inner loop, starting at "scan". */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005734 if (status == RA_CONT)
5735 continue;
5736
5737 /*
5738 * If the regstack is empty or something failed we are done.
5739 */
5740 if (regstack.ga_len == 0 || status == RA_FAIL)
5741 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005742 if (scan == NULL)
5743 {
5744 /*
5745 * We get here only if there's trouble -- normally "case END" is
5746 * the terminating point.
5747 */
5748 EMSG(_(e_re_corr));
5749#ifdef DEBUG
5750 printf("Premature EOL\n");
5751#endif
5752 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005753 if (status == RA_FAIL)
5754 got_int = TRUE;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005755 return (status == RA_MATCH);
5756 }
5757
5758 } /* End of loop until the regstack is empty. */
5759
5760 /* NOTREACHED */
5761}
5762
5763/*
5764 * Push an item onto the regstack.
5765 * Returns pointer to new item. Returns NULL when out of memory.
5766 */
5767 static regitem_T *
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005768regstack_push(state, scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005769 regstate_T state;
5770 char_u *scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005771{
5772 regitem_T *rp;
5773
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005774 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005775 {
5776 EMSG(_(e_maxmempat));
5777 return NULL;
5778 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005779 if (ga_grow(&regstack, sizeof(regitem_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005780 return NULL;
5781
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005782 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005783 rp->rs_state = state;
5784 rp->rs_scan = scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005785
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005786 regstack.ga_len += sizeof(regitem_T);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005787 return rp;
5788}
5789
5790/*
5791 * Pop an item from the regstack.
5792 */
5793 static void
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005794regstack_pop(scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005795 char_u **scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005796{
5797 regitem_T *rp;
5798
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005799 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005800 *scan = rp->rs_scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005801
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005802 regstack.ga_len -= sizeof(regitem_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803}
5804
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805/*
5806 * regrepeat - repeatedly match something simple, return how many.
5807 * Advances reginput (and reglnum) to just after the matched chars.
5808 */
5809 static int
5810regrepeat(p, maxcount)
5811 char_u *p;
5812 long maxcount; /* maximum number of matches allowed */
5813{
5814 long count = 0;
5815 char_u *scan;
5816 char_u *opnd;
5817 int mask;
5818 int testval = 0;
5819
5820 scan = reginput; /* Make local copy of reginput for speed. */
5821 opnd = OPERAND(p);
5822 switch (OP(p))
5823 {
5824 case ANY:
5825 case ANY + ADD_NL:
5826 while (count < maxcount)
5827 {
5828 /* Matching anything means we continue until end-of-line (or
5829 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5830 while (*scan != NUL && count < maxcount)
5831 {
5832 ++count;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005833 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 }
Bram Moolenaar640009d2006-10-17 16:48:26 +00005835 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5836 || reg_line_lbr || count == maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 break;
5838 ++count; /* count the line-break */
5839 reg_nextline();
5840 scan = reginput;
5841 if (got_int)
5842 break;
5843 }
5844 break;
5845
5846 case IDENT:
5847 case IDENT + ADD_NL:
5848 testval = TRUE;
5849 /*FALLTHROUGH*/
5850 case SIDENT:
5851 case SIDENT + ADD_NL:
5852 while (count < maxcount)
5853 {
Bram Moolenaar09ea9fc2013-05-21 00:03:02 +02005854 if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005856 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 }
5858 else if (*scan == NUL)
5859 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005860 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5861 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 break;
5863 reg_nextline();
5864 scan = reginput;
5865 if (got_int)
5866 break;
5867 }
5868 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5869 ++scan;
5870 else
5871 break;
5872 ++count;
5873 }
5874 break;
5875
5876 case KWORD:
5877 case KWORD + ADD_NL:
5878 testval = TRUE;
5879 /*FALLTHROUGH*/
5880 case SKWORD:
5881 case SKWORD + ADD_NL:
5882 while (count < maxcount)
5883 {
Bram Moolenaarf813a182013-01-30 13:59:37 +01005884 if (vim_iswordp_buf(scan, reg_buf)
5885 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005887 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 }
5889 else if (*scan == NUL)
5890 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005891 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5892 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 break;
5894 reg_nextline();
5895 scan = reginput;
5896 if (got_int)
5897 break;
5898 }
5899 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5900 ++scan;
5901 else
5902 break;
5903 ++count;
5904 }
5905 break;
5906
5907 case FNAME:
5908 case FNAME + ADD_NL:
5909 testval = TRUE;
5910 /*FALLTHROUGH*/
5911 case SFNAME:
5912 case SFNAME + ADD_NL:
5913 while (count < maxcount)
5914 {
Bram Moolenaar09ea9fc2013-05-21 00:03:02 +02005915 if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005917 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 }
5919 else if (*scan == NUL)
5920 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005921 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5922 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 break;
5924 reg_nextline();
5925 scan = reginput;
5926 if (got_int)
5927 break;
5928 }
5929 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5930 ++scan;
5931 else
5932 break;
5933 ++count;
5934 }
5935 break;
5936
5937 case PRINT:
5938 case PRINT + ADD_NL:
5939 testval = TRUE;
5940 /*FALLTHROUGH*/
5941 case SPRINT:
5942 case SPRINT + ADD_NL:
5943 while (count < maxcount)
5944 {
5945 if (*scan == NUL)
5946 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005947 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5948 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 break;
5950 reg_nextline();
5951 scan = reginput;
5952 if (got_int)
5953 break;
5954 }
Bram Moolenaarac7c33e2013-07-21 17:06:00 +02005955 else if (vim_isprintc(PTR2CHAR(scan)) == 1
5956 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005958 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959 }
5960 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5961 ++scan;
5962 else
5963 break;
5964 ++count;
5965 }
5966 break;
5967
5968 case WHITE:
5969 case WHITE + ADD_NL:
5970 testval = mask = RI_WHITE;
5971do_class:
5972 while (count < maxcount)
5973 {
5974#ifdef FEAT_MBYTE
5975 int l;
5976#endif
5977 if (*scan == NUL)
5978 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005979 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5980 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981 break;
5982 reg_nextline();
5983 scan = reginput;
5984 if (got_int)
5985 break;
5986 }
5987#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005988 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005989 {
5990 if (testval != 0)
5991 break;
5992 scan += l;
5993 }
5994#endif
5995 else if ((class_tab[*scan] & mask) == testval)
5996 ++scan;
5997 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5998 ++scan;
5999 else
6000 break;
6001 ++count;
6002 }
6003 break;
6004
6005 case NWHITE:
6006 case NWHITE + ADD_NL:
6007 mask = RI_WHITE;
6008 goto do_class;
6009 case DIGIT:
6010 case DIGIT + ADD_NL:
6011 testval = mask = RI_DIGIT;
6012 goto do_class;
6013 case NDIGIT:
6014 case NDIGIT + ADD_NL:
6015 mask = RI_DIGIT;
6016 goto do_class;
6017 case HEX:
6018 case HEX + ADD_NL:
6019 testval = mask = RI_HEX;
6020 goto do_class;
6021 case NHEX:
6022 case NHEX + ADD_NL:
6023 mask = RI_HEX;
6024 goto do_class;
6025 case OCTAL:
6026 case OCTAL + ADD_NL:
6027 testval = mask = RI_OCTAL;
6028 goto do_class;
6029 case NOCTAL:
6030 case NOCTAL + ADD_NL:
6031 mask = RI_OCTAL;
6032 goto do_class;
6033 case WORD:
6034 case WORD + ADD_NL:
6035 testval = mask = RI_WORD;
6036 goto do_class;
6037 case NWORD:
6038 case NWORD + ADD_NL:
6039 mask = RI_WORD;
6040 goto do_class;
6041 case HEAD:
6042 case HEAD + ADD_NL:
6043 testval = mask = RI_HEAD;
6044 goto do_class;
6045 case NHEAD:
6046 case NHEAD + ADD_NL:
6047 mask = RI_HEAD;
6048 goto do_class;
6049 case ALPHA:
6050 case ALPHA + ADD_NL:
6051 testval = mask = RI_ALPHA;
6052 goto do_class;
6053 case NALPHA:
6054 case NALPHA + ADD_NL:
6055 mask = RI_ALPHA;
6056 goto do_class;
6057 case LOWER:
6058 case LOWER + ADD_NL:
6059 testval = mask = RI_LOWER;
6060 goto do_class;
6061 case NLOWER:
6062 case NLOWER + ADD_NL:
6063 mask = RI_LOWER;
6064 goto do_class;
6065 case UPPER:
6066 case UPPER + ADD_NL:
6067 testval = mask = RI_UPPER;
6068 goto do_class;
6069 case NUPPER:
6070 case NUPPER + ADD_NL:
6071 mask = RI_UPPER;
6072 goto do_class;
6073
6074 case EXACTLY:
6075 {
6076 int cu, cl;
6077
6078 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006079 * would have been used for it. It does handle single-byte
6080 * characters, such as latin1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081 if (ireg_ic)
6082 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006083 cu = MB_TOUPPER(*opnd);
6084 cl = MB_TOLOWER(*opnd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006085 while (count < maxcount && (*scan == cu || *scan == cl))
6086 {
6087 count++;
6088 scan++;
6089 }
6090 }
6091 else
6092 {
6093 cu = *opnd;
6094 while (count < maxcount && *scan == cu)
6095 {
6096 count++;
6097 scan++;
6098 }
6099 }
6100 break;
6101 }
6102
6103#ifdef FEAT_MBYTE
6104 case MULTIBYTECODE:
6105 {
6106 int i, len, cf = 0;
6107
6108 /* Safety check (just in case 'encoding' was changed since
6109 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006110 if ((len = (*mb_ptr2len)(opnd)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006111 {
6112 if (ireg_ic && enc_utf8)
6113 cf = utf_fold(utf_ptr2char(opnd));
6114 while (count < maxcount)
6115 {
6116 for (i = 0; i < len; ++i)
6117 if (opnd[i] != scan[i])
6118 break;
6119 if (i < len && (!ireg_ic || !enc_utf8
6120 || utf_fold(utf_ptr2char(scan)) != cf))
6121 break;
6122 scan += len;
6123 ++count;
6124 }
6125 }
6126 }
6127 break;
6128#endif
6129
6130 case ANYOF:
6131 case ANYOF + ADD_NL:
6132 testval = TRUE;
6133 /*FALLTHROUGH*/
6134
6135 case ANYBUT:
6136 case ANYBUT + ADD_NL:
6137 while (count < maxcount)
6138 {
6139#ifdef FEAT_MBYTE
6140 int len;
6141#endif
6142 if (*scan == NUL)
6143 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00006144 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
6145 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 break;
6147 reg_nextline();
6148 scan = reginput;
6149 if (got_int)
6150 break;
6151 }
6152 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
6153 ++scan;
6154#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006155 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156 {
6157 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval)
6158 break;
6159 scan += len;
6160 }
6161#endif
6162 else
6163 {
6164 if ((cstrchr(opnd, *scan) == NULL) == testval)
6165 break;
6166 ++scan;
6167 }
6168 ++count;
6169 }
6170 break;
6171
6172 case NEWL:
6173 while (count < maxcount
Bram Moolenaar640009d2006-10-17 16:48:26 +00006174 && ((*scan == NUL && reglnum <= reg_maxline && !reg_line_lbr
6175 && REG_MULTI) || (*scan == '\n' && reg_line_lbr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176 {
6177 count++;
6178 if (reg_line_lbr)
6179 ADVANCE_REGINPUT();
6180 else
6181 reg_nextline();
6182 scan = reginput;
6183 if (got_int)
6184 break;
6185 }
6186 break;
6187
6188 default: /* Oh dear. Called inappropriately. */
6189 EMSG(_(e_re_corr));
6190#ifdef DEBUG
6191 printf("Called regrepeat with op code %d\n", OP(p));
6192#endif
6193 break;
6194 }
6195
6196 reginput = scan;
6197
6198 return (int)count;
6199}
6200
6201/*
6202 * regnext - dig the "next" pointer out of a node
Bram Moolenaard3005802009-11-25 17:21:32 +00006203 * Returns NULL when calculating size, when there is no next item and when
6204 * there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 */
6206 static char_u *
6207regnext(p)
6208 char_u *p;
6209{
6210 int offset;
6211
Bram Moolenaard3005802009-11-25 17:21:32 +00006212 if (p == JUST_CALC_SIZE || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213 return NULL;
6214
6215 offset = NEXT(p);
6216 if (offset == 0)
6217 return NULL;
6218
Bram Moolenaar582fd852005-03-28 20:58:01 +00006219 if (OP(p) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220 return p - offset;
6221 else
6222 return p + offset;
6223}
6224
6225/*
6226 * Check the regexp program for its magic number.
6227 * Return TRUE if it's wrong.
6228 */
6229 static int
6230prog_magic_wrong()
6231{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006232 regprog_T *prog;
6233
6234 prog = REG_MULTI ? reg_mmatch->regprog : reg_match->regprog;
6235 if (prog->engine == &nfa_regengine)
6236 /* For NFA matcher we don't check the magic */
6237 return FALSE;
6238
6239 if (UCHARAT(((bt_regprog_T *)prog)->program) != REGMAGIC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006240 {
6241 EMSG(_(e_re_corr));
6242 return TRUE;
6243 }
6244 return FALSE;
6245}
6246
6247/*
6248 * Cleanup the subexpressions, if this wasn't done yet.
6249 * This construction is used to clear the subexpressions only when they are
6250 * used (to increase speed).
6251 */
6252 static void
6253cleanup_subexpr()
6254{
6255 if (need_clear_subexpr)
6256 {
6257 if (REG_MULTI)
6258 {
6259 /* Use 0xff to set lnum to -1 */
6260 vim_memset(reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6261 vim_memset(reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6262 }
6263 else
6264 {
6265 vim_memset(reg_startp, 0, sizeof(char_u *) * NSUBEXP);
6266 vim_memset(reg_endp, 0, sizeof(char_u *) * NSUBEXP);
6267 }
6268 need_clear_subexpr = FALSE;
6269 }
6270}
6271
6272#ifdef FEAT_SYN_HL
6273 static void
6274cleanup_zsubexpr()
6275{
6276 if (need_clear_zsubexpr)
6277 {
6278 if (REG_MULTI)
6279 {
6280 /* Use 0xff to set lnum to -1 */
6281 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6282 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6283 }
6284 else
6285 {
6286 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP);
6287 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP);
6288 }
6289 need_clear_zsubexpr = FALSE;
6290 }
6291}
6292#endif
6293
6294/*
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006295 * Save the current subexpr to "bp", so that they can be restored
6296 * later by restore_subexpr().
6297 */
6298 static void
6299save_subexpr(bp)
6300 regbehind_T *bp;
6301{
6302 int i;
6303
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006304 /* When "need_clear_subexpr" is set we don't need to save the values, only
6305 * remember that this flag needs to be set again when restoring. */
6306 bp->save_need_clear_subexpr = need_clear_subexpr;
6307 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006308 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006309 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006310 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006311 if (REG_MULTI)
6312 {
6313 bp->save_start[i].se_u.pos = reg_startpos[i];
6314 bp->save_end[i].se_u.pos = reg_endpos[i];
6315 }
6316 else
6317 {
6318 bp->save_start[i].se_u.ptr = reg_startp[i];
6319 bp->save_end[i].se_u.ptr = reg_endp[i];
6320 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006321 }
6322 }
6323}
6324
6325/*
6326 * Restore the subexpr from "bp".
6327 */
6328 static void
6329restore_subexpr(bp)
6330 regbehind_T *bp;
6331{
6332 int i;
6333
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006334 /* Only need to restore saved values when they are not to be cleared. */
6335 need_clear_subexpr = bp->save_need_clear_subexpr;
6336 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006337 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006338 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006339 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006340 if (REG_MULTI)
6341 {
6342 reg_startpos[i] = bp->save_start[i].se_u.pos;
6343 reg_endpos[i] = bp->save_end[i].se_u.pos;
6344 }
6345 else
6346 {
6347 reg_startp[i] = bp->save_start[i].se_u.ptr;
6348 reg_endp[i] = bp->save_end[i].se_u.ptr;
6349 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006350 }
6351 }
6352}
6353
6354/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 * Advance reglnum, regline and reginput to the next line.
6356 */
6357 static void
6358reg_nextline()
6359{
6360 regline = reg_getline(++reglnum);
6361 reginput = regline;
6362 fast_breakcheck();
6363}
6364
6365/*
6366 * Save the input line and position in a regsave_T.
6367 */
6368 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006369reg_save(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006371 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372{
6373 if (REG_MULTI)
6374 {
6375 save->rs_u.pos.col = (colnr_T)(reginput - regline);
6376 save->rs_u.pos.lnum = reglnum;
6377 }
6378 else
6379 save->rs_u.ptr = reginput;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006380 save->rs_len = gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381}
6382
6383/*
6384 * Restore the input line and position from a regsave_T.
6385 */
6386 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006387reg_restore(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006389 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390{
6391 if (REG_MULTI)
6392 {
6393 if (reglnum != save->rs_u.pos.lnum)
6394 {
6395 /* only call reg_getline() when the line number changed to save
6396 * a bit of time */
6397 reglnum = save->rs_u.pos.lnum;
6398 regline = reg_getline(reglnum);
6399 }
6400 reginput = regline + save->rs_u.pos.col;
6401 }
6402 else
6403 reginput = save->rs_u.ptr;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006404 gap->ga_len = save->rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405}
6406
6407/*
6408 * Return TRUE if current position is equal to saved position.
6409 */
6410 static int
6411reg_save_equal(save)
6412 regsave_T *save;
6413{
6414 if (REG_MULTI)
6415 return reglnum == save->rs_u.pos.lnum
6416 && reginput == regline + save->rs_u.pos.col;
6417 return reginput == save->rs_u.ptr;
6418}
6419
6420/*
6421 * Tentatively set the sub-expression start to the current position (after
6422 * calling regmatch() they will have changed). Need to save the existing
6423 * values for when there is no match.
6424 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
6425 * depending on REG_MULTI.
6426 */
6427 static void
6428save_se_multi(savep, posp)
6429 save_se_T *savep;
6430 lpos_T *posp;
6431{
6432 savep->se_u.pos = *posp;
6433 posp->lnum = reglnum;
6434 posp->col = (colnr_T)(reginput - regline);
6435}
6436
6437 static void
6438save_se_one(savep, pp)
6439 save_se_T *savep;
6440 char_u **pp;
6441{
6442 savep->se_u.ptr = *pp;
6443 *pp = reginput;
6444}
6445
6446/*
6447 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6448 */
6449 static int
6450re_num_cmp(val, scan)
6451 long_u val;
6452 char_u *scan;
6453{
6454 long_u n = OPERAND_MIN(scan);
6455
6456 if (OPERAND_CMP(scan) == '>')
6457 return val > n;
6458 if (OPERAND_CMP(scan) == '<')
6459 return val < n;
6460 return val == n;
6461}
6462
Bram Moolenaar580abea2013-06-14 20:31:28 +02006463/*
6464 * Check whether a backreference matches.
6465 * Returns RA_FAIL, RA_NOMATCH or RA_MATCH.
Bram Moolenaar438ee5b2013-11-21 17:13:00 +01006466 * If "bytelen" is not NULL, it is set to the byte length of the match in the
6467 * last line.
Bram Moolenaar580abea2013-06-14 20:31:28 +02006468 */
6469 static int
6470match_with_backref(start_lnum, start_col, end_lnum, end_col, bytelen)
6471 linenr_T start_lnum;
6472 colnr_T start_col;
6473 linenr_T end_lnum;
6474 colnr_T end_col;
6475 int *bytelen;
6476{
6477 linenr_T clnum = start_lnum;
6478 colnr_T ccol = start_col;
6479 int len;
6480 char_u *p;
6481
6482 if (bytelen != NULL)
6483 *bytelen = 0;
6484 for (;;)
6485 {
6486 /* Since getting one line may invalidate the other, need to make copy.
6487 * Slow! */
6488 if (regline != reg_tofree)
6489 {
6490 len = (int)STRLEN(regline);
6491 if (reg_tofree == NULL || len >= (int)reg_tofreelen)
6492 {
6493 len += 50; /* get some extra */
6494 vim_free(reg_tofree);
6495 reg_tofree = alloc(len);
6496 if (reg_tofree == NULL)
6497 return RA_FAIL; /* out of memory!*/
6498 reg_tofreelen = len;
6499 }
6500 STRCPY(reg_tofree, regline);
6501 reginput = reg_tofree + (reginput - regline);
6502 regline = reg_tofree;
6503 }
6504
6505 /* Get the line to compare with. */
6506 p = reg_getline(clnum);
6507 if (clnum == end_lnum)
6508 len = end_col - ccol;
6509 else
6510 len = (int)STRLEN(p + ccol);
6511
6512 if (cstrncmp(p + ccol, reginput, &len) != 0)
6513 return RA_NOMATCH; /* doesn't match */
6514 if (bytelen != NULL)
6515 *bytelen += len;
6516 if (clnum == end_lnum)
6517 break; /* match and at end! */
6518 if (reglnum >= reg_maxline)
6519 return RA_NOMATCH; /* text too short */
6520
6521 /* Advance to next line. */
6522 reg_nextline();
Bram Moolenaar438ee5b2013-11-21 17:13:00 +01006523 if (bytelen != NULL)
6524 *bytelen = 0;
Bram Moolenaar580abea2013-06-14 20:31:28 +02006525 ++clnum;
6526 ccol = 0;
6527 if (got_int)
6528 return RA_FAIL;
6529 }
6530
6531 /* found a match! Note that regline may now point to a copy of the line,
6532 * that should not matter. */
6533 return RA_MATCH;
6534}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006536#ifdef BT_REGEXP_DUMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537
6538/*
6539 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6540 */
6541 static void
6542regdump(pattern, r)
6543 char_u *pattern;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006544 bt_regprog_T *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545{
6546 char_u *s;
6547 int op = EXACTLY; /* Arbitrary non-END op. */
6548 char_u *next;
6549 char_u *end = NULL;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006550 FILE *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006552#ifdef BT_REGEXP_LOG
6553 f = fopen("bt_regexp_log.log", "a");
6554#else
6555 f = stdout;
6556#endif
6557 if (f == NULL)
6558 return;
6559 fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560
6561 s = r->program + 1;
6562 /*
6563 * Loop until we find the END that isn't before a referred next (an END
6564 * can also appear in a NOMATCH operand).
6565 */
6566 while (op != END || s <= end)
6567 {
6568 op = OP(s);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006569 fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570 next = regnext(s);
6571 if (next == NULL) /* Next ptr. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006572 fprintf(f, "(0)");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 else
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006574 fprintf(f, "(%d)", (int)((s - r->program) + (next - s)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 if (end < next)
6576 end = next;
6577 if (op == BRACE_LIMITS)
6578 {
Bram Moolenaar5b84ddc2013-06-05 16:33:10 +02006579 /* Two ints */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006580 fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581 s += 8;
6582 }
Bram Moolenaar5b84ddc2013-06-05 16:33:10 +02006583 else if (op == BEHIND || op == NOBEHIND)
6584 {
6585 /* one int */
6586 fprintf(f, " count %ld", OPERAND_MIN(s));
6587 s += 4;
6588 }
Bram Moolenaar6d3a5d72013-06-06 18:04:51 +02006589 else if (op == RE_LNUM || op == RE_COL || op == RE_VCOL)
6590 {
6591 /* one int plus comperator */
6592 fprintf(f, " count %ld", OPERAND_MIN(s));
6593 s += 5;
6594 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595 s += 3;
6596 if (op == ANYOF || op == ANYOF + ADD_NL
6597 || op == ANYBUT || op == ANYBUT + ADD_NL
6598 || op == EXACTLY)
6599 {
6600 /* Literal string, where present. */
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006601 fprintf(f, "\nxxxxxxxxx\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 while (*s != NUL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006603 fprintf(f, "%c", *s++);
6604 fprintf(f, "\nxxxxxxxxx\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605 s++;
6606 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006607 fprintf(f, "\r\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608 }
6609
6610 /* Header fields of interest. */
6611 if (r->regstart != NUL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006612 fprintf(f, "start `%s' 0x%x; ", r->regstart < 256
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 ? (char *)transchar(r->regstart)
6614 : "multibyte", r->regstart);
6615 if (r->reganch)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006616 fprintf(f, "anchored; ");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 if (r->regmust != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006618 fprintf(f, "must have \"%s\"", r->regmust);
6619 fprintf(f, "\r\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006621#ifdef BT_REGEXP_LOG
6622 fclose(f);
6623#endif
6624}
6625#endif /* BT_REGEXP_DUMP */
6626
6627#ifdef DEBUG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628/*
6629 * regprop - printable representation of opcode
6630 */
6631 static char_u *
6632regprop(op)
6633 char_u *op;
6634{
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006635 char *p;
6636 static char buf[50];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006637
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006638 STRCPY(buf, ":");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02006640 switch ((int) OP(op))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 {
6642 case BOL:
6643 p = "BOL";
6644 break;
6645 case EOL:
6646 p = "EOL";
6647 break;
6648 case RE_BOF:
6649 p = "BOF";
6650 break;
6651 case RE_EOF:
6652 p = "EOF";
6653 break;
6654 case CURSOR:
6655 p = "CURSOR";
6656 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006657 case RE_VISUAL:
6658 p = "RE_VISUAL";
6659 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 case RE_LNUM:
6661 p = "RE_LNUM";
6662 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006663 case RE_MARK:
6664 p = "RE_MARK";
6665 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 case RE_COL:
6667 p = "RE_COL";
6668 break;
6669 case RE_VCOL:
6670 p = "RE_VCOL";
6671 break;
6672 case BOW:
6673 p = "BOW";
6674 break;
6675 case EOW:
6676 p = "EOW";
6677 break;
6678 case ANY:
6679 p = "ANY";
6680 break;
6681 case ANY + ADD_NL:
6682 p = "ANY+NL";
6683 break;
6684 case ANYOF:
6685 p = "ANYOF";
6686 break;
6687 case ANYOF + ADD_NL:
6688 p = "ANYOF+NL";
6689 break;
6690 case ANYBUT:
6691 p = "ANYBUT";
6692 break;
6693 case ANYBUT + ADD_NL:
6694 p = "ANYBUT+NL";
6695 break;
6696 case IDENT:
6697 p = "IDENT";
6698 break;
6699 case IDENT + ADD_NL:
6700 p = "IDENT+NL";
6701 break;
6702 case SIDENT:
6703 p = "SIDENT";
6704 break;
6705 case SIDENT + ADD_NL:
6706 p = "SIDENT+NL";
6707 break;
6708 case KWORD:
6709 p = "KWORD";
6710 break;
6711 case KWORD + ADD_NL:
6712 p = "KWORD+NL";
6713 break;
6714 case SKWORD:
6715 p = "SKWORD";
6716 break;
6717 case SKWORD + ADD_NL:
6718 p = "SKWORD+NL";
6719 break;
6720 case FNAME:
6721 p = "FNAME";
6722 break;
6723 case FNAME + ADD_NL:
6724 p = "FNAME+NL";
6725 break;
6726 case SFNAME:
6727 p = "SFNAME";
6728 break;
6729 case SFNAME + ADD_NL:
6730 p = "SFNAME+NL";
6731 break;
6732 case PRINT:
6733 p = "PRINT";
6734 break;
6735 case PRINT + ADD_NL:
6736 p = "PRINT+NL";
6737 break;
6738 case SPRINT:
6739 p = "SPRINT";
6740 break;
6741 case SPRINT + ADD_NL:
6742 p = "SPRINT+NL";
6743 break;
6744 case WHITE:
6745 p = "WHITE";
6746 break;
6747 case WHITE + ADD_NL:
6748 p = "WHITE+NL";
6749 break;
6750 case NWHITE:
6751 p = "NWHITE";
6752 break;
6753 case NWHITE + ADD_NL:
6754 p = "NWHITE+NL";
6755 break;
6756 case DIGIT:
6757 p = "DIGIT";
6758 break;
6759 case DIGIT + ADD_NL:
6760 p = "DIGIT+NL";
6761 break;
6762 case NDIGIT:
6763 p = "NDIGIT";
6764 break;
6765 case NDIGIT + ADD_NL:
6766 p = "NDIGIT+NL";
6767 break;
6768 case HEX:
6769 p = "HEX";
6770 break;
6771 case HEX + ADD_NL:
6772 p = "HEX+NL";
6773 break;
6774 case NHEX:
6775 p = "NHEX";
6776 break;
6777 case NHEX + ADD_NL:
6778 p = "NHEX+NL";
6779 break;
6780 case OCTAL:
6781 p = "OCTAL";
6782 break;
6783 case OCTAL + ADD_NL:
6784 p = "OCTAL+NL";
6785 break;
6786 case NOCTAL:
6787 p = "NOCTAL";
6788 break;
6789 case NOCTAL + ADD_NL:
6790 p = "NOCTAL+NL";
6791 break;
6792 case WORD:
6793 p = "WORD";
6794 break;
6795 case WORD + ADD_NL:
6796 p = "WORD+NL";
6797 break;
6798 case NWORD:
6799 p = "NWORD";
6800 break;
6801 case NWORD + ADD_NL:
6802 p = "NWORD+NL";
6803 break;
6804 case HEAD:
6805 p = "HEAD";
6806 break;
6807 case HEAD + ADD_NL:
6808 p = "HEAD+NL";
6809 break;
6810 case NHEAD:
6811 p = "NHEAD";
6812 break;
6813 case NHEAD + ADD_NL:
6814 p = "NHEAD+NL";
6815 break;
6816 case ALPHA:
6817 p = "ALPHA";
6818 break;
6819 case ALPHA + ADD_NL:
6820 p = "ALPHA+NL";
6821 break;
6822 case NALPHA:
6823 p = "NALPHA";
6824 break;
6825 case NALPHA + ADD_NL:
6826 p = "NALPHA+NL";
6827 break;
6828 case LOWER:
6829 p = "LOWER";
6830 break;
6831 case LOWER + ADD_NL:
6832 p = "LOWER+NL";
6833 break;
6834 case NLOWER:
6835 p = "NLOWER";
6836 break;
6837 case NLOWER + ADD_NL:
6838 p = "NLOWER+NL";
6839 break;
6840 case UPPER:
6841 p = "UPPER";
6842 break;
6843 case UPPER + ADD_NL:
6844 p = "UPPER+NL";
6845 break;
6846 case NUPPER:
6847 p = "NUPPER";
6848 break;
6849 case NUPPER + ADD_NL:
6850 p = "NUPPER+NL";
6851 break;
6852 case BRANCH:
6853 p = "BRANCH";
6854 break;
6855 case EXACTLY:
6856 p = "EXACTLY";
6857 break;
6858 case NOTHING:
6859 p = "NOTHING";
6860 break;
6861 case BACK:
6862 p = "BACK";
6863 break;
6864 case END:
6865 p = "END";
6866 break;
6867 case MOPEN + 0:
6868 p = "MATCH START";
6869 break;
6870 case MOPEN + 1:
6871 case MOPEN + 2:
6872 case MOPEN + 3:
6873 case MOPEN + 4:
6874 case MOPEN + 5:
6875 case MOPEN + 6:
6876 case MOPEN + 7:
6877 case MOPEN + 8:
6878 case MOPEN + 9:
6879 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN);
6880 p = NULL;
6881 break;
6882 case MCLOSE + 0:
6883 p = "MATCH END";
6884 break;
6885 case MCLOSE + 1:
6886 case MCLOSE + 2:
6887 case MCLOSE + 3:
6888 case MCLOSE + 4:
6889 case MCLOSE + 5:
6890 case MCLOSE + 6:
6891 case MCLOSE + 7:
6892 case MCLOSE + 8:
6893 case MCLOSE + 9:
6894 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE);
6895 p = NULL;
6896 break;
6897 case BACKREF + 1:
6898 case BACKREF + 2:
6899 case BACKREF + 3:
6900 case BACKREF + 4:
6901 case BACKREF + 5:
6902 case BACKREF + 6:
6903 case BACKREF + 7:
6904 case BACKREF + 8:
6905 case BACKREF + 9:
6906 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF);
6907 p = NULL;
6908 break;
6909 case NOPEN:
6910 p = "NOPEN";
6911 break;
6912 case NCLOSE:
6913 p = "NCLOSE";
6914 break;
6915#ifdef FEAT_SYN_HL
6916 case ZOPEN + 1:
6917 case ZOPEN + 2:
6918 case ZOPEN + 3:
6919 case ZOPEN + 4:
6920 case ZOPEN + 5:
6921 case ZOPEN + 6:
6922 case ZOPEN + 7:
6923 case ZOPEN + 8:
6924 case ZOPEN + 9:
6925 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN);
6926 p = NULL;
6927 break;
6928 case ZCLOSE + 1:
6929 case ZCLOSE + 2:
6930 case ZCLOSE + 3:
6931 case ZCLOSE + 4:
6932 case ZCLOSE + 5:
6933 case ZCLOSE + 6:
6934 case ZCLOSE + 7:
6935 case ZCLOSE + 8:
6936 case ZCLOSE + 9:
6937 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE);
6938 p = NULL;
6939 break;
6940 case ZREF + 1:
6941 case ZREF + 2:
6942 case ZREF + 3:
6943 case ZREF + 4:
6944 case ZREF + 5:
6945 case ZREF + 6:
6946 case ZREF + 7:
6947 case ZREF + 8:
6948 case ZREF + 9:
6949 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF);
6950 p = NULL;
6951 break;
6952#endif
6953 case STAR:
6954 p = "STAR";
6955 break;
6956 case PLUS:
6957 p = "PLUS";
6958 break;
6959 case NOMATCH:
6960 p = "NOMATCH";
6961 break;
6962 case MATCH:
6963 p = "MATCH";
6964 break;
6965 case BEHIND:
6966 p = "BEHIND";
6967 break;
6968 case NOBEHIND:
6969 p = "NOBEHIND";
6970 break;
6971 case SUBPAT:
6972 p = "SUBPAT";
6973 break;
6974 case BRACE_LIMITS:
6975 p = "BRACE_LIMITS";
6976 break;
6977 case BRACE_SIMPLE:
6978 p = "BRACE_SIMPLE";
6979 break;
6980 case BRACE_COMPLEX + 0:
6981 case BRACE_COMPLEX + 1:
6982 case BRACE_COMPLEX + 2:
6983 case BRACE_COMPLEX + 3:
6984 case BRACE_COMPLEX + 4:
6985 case BRACE_COMPLEX + 5:
6986 case BRACE_COMPLEX + 6:
6987 case BRACE_COMPLEX + 7:
6988 case BRACE_COMPLEX + 8:
6989 case BRACE_COMPLEX + 9:
6990 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX);
6991 p = NULL;
6992 break;
6993#ifdef FEAT_MBYTE
6994 case MULTIBYTECODE:
6995 p = "MULTIBYTECODE";
6996 break;
6997#endif
6998 case NEWL:
6999 p = "NEWL";
7000 break;
7001 default:
7002 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op));
7003 p = NULL;
7004 break;
7005 }
7006 if (p != NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02007007 STRCAT(buf, p);
7008 return (char_u *)buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009}
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02007010#endif /* DEBUG */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011
Bram Moolenaarfb031402014-09-09 17:18:49 +02007012/*
7013 * Used in a place where no * or \+ can follow.
7014 */
7015 static int
7016re_mult_next(what)
7017 char *what;
7018{
7019 if (re_multi_type(peekchr()) == MULTI_MULT)
7020 EMSG2_RET_FAIL(_("E888: (NFA regexp) cannot repeat %s"), what);
7021 return OK;
7022}
7023
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024#ifdef FEAT_MBYTE
7025static void mb_decompose __ARGS((int c, int *c1, int *c2, int *c3));
7026
7027typedef struct
7028{
7029 int a, b, c;
7030} decomp_T;
7031
7032
7033/* 0xfb20 - 0xfb4f */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007034static decomp_T decomp_table[0xfb4f-0xfb20+1] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035{
7036 {0x5e2,0,0}, /* 0xfb20 alt ayin */
7037 {0x5d0,0,0}, /* 0xfb21 alt alef */
7038 {0x5d3,0,0}, /* 0xfb22 alt dalet */
7039 {0x5d4,0,0}, /* 0xfb23 alt he */
7040 {0x5db,0,0}, /* 0xfb24 alt kaf */
7041 {0x5dc,0,0}, /* 0xfb25 alt lamed */
7042 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
7043 {0x5e8,0,0}, /* 0xfb27 alt resh */
7044 {0x5ea,0,0}, /* 0xfb28 alt tav */
7045 {'+', 0, 0}, /* 0xfb29 alt plus */
7046 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
7047 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
7048 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
7049 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
7050 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
7051 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
7052 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
7053 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
7054 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
7055 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
7056 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
7057 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
7058 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
7059 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
7060 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
7061 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
7062 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
7063 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
7064 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
7065 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
7066 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
7067 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
7068 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
7069 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
7070 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
7071 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
7072 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
7073 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
7074 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
7075 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
7076 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
7077 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
7078 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
7079 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
7080 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
7081 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
7082 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
7083 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
7084};
7085
7086 static void
7087mb_decompose(c, c1, c2, c3)
7088 int c, *c1, *c2, *c3;
7089{
7090 decomp_T d;
7091
Bram Moolenaar2eec59e2013-05-21 21:37:20 +02007092 if (c >= 0xfb20 && c <= 0xfb4f)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 {
7094 d = decomp_table[c - 0xfb20];
7095 *c1 = d.a;
7096 *c2 = d.b;
7097 *c3 = d.c;
7098 }
7099 else
7100 {
7101 *c1 = c;
7102 *c2 = *c3 = 0;
7103 }
7104}
7105#endif
7106
7107/*
7108 * Compare two strings, ignore case if ireg_ic set.
7109 * Return 0 if strings match, non-zero otherwise.
7110 * Correct the length "*n" when composing characters are ignored.
7111 */
7112 static int
7113cstrncmp(s1, s2, n)
7114 char_u *s1, *s2;
7115 int *n;
7116{
7117 int result;
7118
7119 if (!ireg_ic)
7120 result = STRNCMP(s1, s2, *n);
7121 else
7122 result = MB_STRNICMP(s1, s2, *n);
7123
7124#ifdef FEAT_MBYTE
7125 /* if it failed and it's utf8 and we want to combineignore: */
7126 if (result != 0 && enc_utf8 && ireg_icombine)
7127 {
7128 char_u *str1, *str2;
7129 int c1, c2, c11, c12;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130 int junk;
7131
7132 /* we have to handle the strcmp ourselves, since it is necessary to
7133 * deal with the composing characters by ignoring them: */
7134 str1 = s1;
7135 str2 = s2;
7136 c1 = c2 = 0;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00007137 while ((int)(str1 - s1) < *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138 {
7139 c1 = mb_ptr2char_adv(&str1);
7140 c2 = mb_ptr2char_adv(&str2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141
7142 /* decompose the character if necessary, into 'base' characters
7143 * because I don't care about Arabic, I will hard-code the Hebrew
7144 * which I *do* care about! So sue me... */
7145 if (c1 != c2 && (!ireg_ic || utf_fold(c1) != utf_fold(c2)))
7146 {
7147 /* decomposition necessary? */
7148 mb_decompose(c1, &c11, &junk, &junk);
7149 mb_decompose(c2, &c12, &junk, &junk);
7150 c1 = c11;
7151 c2 = c12;
7152 if (c11 != c12 && (!ireg_ic || utf_fold(c11) != utf_fold(c12)))
7153 break;
7154 }
7155 }
7156 result = c2 - c1;
7157 if (result == 0)
7158 *n = (int)(str2 - s2);
7159 }
7160#endif
7161
7162 return result;
7163}
7164
7165/*
7166 * cstrchr: This function is used a lot for simple searches, keep it fast!
7167 */
7168 static char_u *
7169cstrchr(s, c)
7170 char_u *s;
7171 int c;
7172{
7173 char_u *p;
7174 int cc;
7175
7176 if (!ireg_ic
7177#ifdef FEAT_MBYTE
7178 || (!enc_utf8 && mb_char2len(c) > 1)
7179#endif
7180 )
7181 return vim_strchr(s, c);
7182
7183 /* tolower() and toupper() can be slow, comparing twice should be a lot
7184 * faster (esp. when using MS Visual C++!).
7185 * For UTF-8 need to use folded case. */
7186#ifdef FEAT_MBYTE
7187 if (enc_utf8 && c > 0x80)
7188 cc = utf_fold(c);
7189 else
7190#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00007191 if (MB_ISUPPER(c))
7192 cc = MB_TOLOWER(c);
7193 else if (MB_ISLOWER(c))
7194 cc = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007195 else
7196 return vim_strchr(s, c);
7197
7198#ifdef FEAT_MBYTE
7199 if (has_mbyte)
7200 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007201 for (p = s; *p != NUL; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 {
7203 if (enc_utf8 && c > 0x80)
7204 {
7205 if (utf_fold(utf_ptr2char(p)) == cc)
7206 return p;
7207 }
7208 else if (*p == c || *p == cc)
7209 return p;
7210 }
7211 }
7212 else
7213#endif
7214 /* Faster version for when there are no multi-byte characters. */
7215 for (p = s; *p != NUL; ++p)
7216 if (*p == c || *p == cc)
7217 return p;
7218
7219 return NULL;
7220}
7221
7222/***************************************************************
7223 * regsub stuff *
7224 ***************************************************************/
7225
7226/* This stuff below really confuses cc on an SGI -- webb */
7227#ifdef __sgi
7228# undef __ARGS
7229# define __ARGS(x) ()
7230#endif
7231
7232/*
7233 * We should define ftpr as a pointer to a function returning a pointer to
7234 * a function returning a pointer to a function ...
7235 * This is impossible, so we declare a pointer to a function returning a
7236 * pointer to a function returning void. This should work for all compilers.
7237 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007238typedef void (*(*fptr_T) __ARGS((int *, int)))();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007240static fptr_T do_upper __ARGS((int *, int));
7241static fptr_T do_Upper __ARGS((int *, int));
7242static fptr_T do_lower __ARGS((int *, int));
7243static fptr_T do_Lower __ARGS((int *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244
7245static int vim_regsub_both __ARGS((char_u *source, char_u *dest, int copy, int magic, int backslash));
7246
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007247 static fptr_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007248do_upper(d, c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007249 int *d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 int c;
7251{
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007252 *d = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007253
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007254 return (fptr_T)NULL;
7255}
7256
7257 static fptr_T
7258do_Upper(d, c)
7259 int *d;
7260 int c;
7261{
7262 *d = MB_TOUPPER(c);
7263
7264 return (fptr_T)do_Upper;
7265}
7266
7267 static fptr_T
7268do_lower(d, c)
7269 int *d;
7270 int c;
7271{
7272 *d = MB_TOLOWER(c);
7273
7274 return (fptr_T)NULL;
7275}
7276
7277 static fptr_T
7278do_Lower(d, c)
7279 int *d;
7280 int c;
7281{
7282 *d = MB_TOLOWER(c);
7283
7284 return (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285}
7286
7287/*
7288 * regtilde(): Replace tildes in the pattern by the old pattern.
7289 *
7290 * Short explanation of the tilde: It stands for the previous replacement
7291 * pattern. If that previous pattern also contains a ~ we should go back a
7292 * step further... But we insert the previous pattern into the current one
7293 * and remember that.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007294 * This still does not handle the case where "magic" changes. So require the
7295 * user to keep his hands off of "magic".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296 *
7297 * The tildes are parsed once before the first call to vim_regsub().
7298 */
7299 char_u *
7300regtilde(source, magic)
7301 char_u *source;
7302 int magic;
7303{
7304 char_u *newsub = source;
7305 char_u *tmpsub;
7306 char_u *p;
7307 int len;
7308 int prevlen;
7309
7310 for (p = newsub; *p; ++p)
7311 {
7312 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic))
7313 {
7314 if (reg_prev_sub != NULL)
7315 {
7316 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
7317 prevlen = (int)STRLEN(reg_prev_sub);
7318 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen));
7319 if (tmpsub != NULL)
7320 {
7321 /* copy prefix */
7322 len = (int)(p - newsub); /* not including ~ */
7323 mch_memmove(tmpsub, newsub, (size_t)len);
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007324 /* interpret tilde */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007325 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen);
7326 /* copy postfix */
7327 if (!magic)
7328 ++p; /* back off \ */
7329 STRCPY(tmpsub + len + prevlen, p + 1);
7330
7331 if (newsub != source) /* already allocated newsub */
7332 vim_free(newsub);
7333 newsub = tmpsub;
7334 p = newsub + len + prevlen;
7335 }
7336 }
7337 else if (magic)
Bram Moolenaar446cb832008-06-24 21:56:24 +00007338 STRMOVE(p, p + 1); /* remove '~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 else
Bram Moolenaar446cb832008-06-24 21:56:24 +00007340 STRMOVE(p, p + 2); /* remove '\~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 --p;
7342 }
7343 else
7344 {
7345 if (*p == '\\' && p[1]) /* skip escaped characters */
7346 ++p;
7347#ifdef FEAT_MBYTE
7348 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007349 p += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350#endif
7351 }
7352 }
7353
7354 vim_free(reg_prev_sub);
7355 if (newsub != source) /* newsub was allocated, just keep it */
7356 reg_prev_sub = newsub;
7357 else /* no ~ found, need to save newsub */
7358 reg_prev_sub = vim_strsave(newsub);
7359 return newsub;
7360}
7361
7362#ifdef FEAT_EVAL
7363static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */
7364
7365/* These pointers are used instead of reg_match and reg_mmatch for
7366 * reg_submatch(). Needed for when the substitution string is an expression
7367 * that contains a call to substitute() and submatch(). */
7368static regmatch_T *submatch_match;
7369static regmmatch_T *submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007370static linenr_T submatch_firstlnum;
7371static linenr_T submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007372static int submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373#endif
7374
7375#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
7376/*
7377 * vim_regsub() - perform substitutions after a vim_regexec() or
7378 * vim_regexec_multi() match.
7379 *
7380 * If "copy" is TRUE really copy into "dest".
7381 * If "copy" is FALSE nothing is copied, this is just to find out the length
7382 * of the result.
7383 *
7384 * If "backslash" is TRUE, a backslash will be removed later, need to double
7385 * them to keep them, and insert a backslash before a CR to avoid it being
7386 * replaced with a line break later.
7387 *
7388 * Note: The matched text must not change between the call of
7389 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
7390 * references invalid!
7391 *
7392 * Returns the size of the replacement, including terminating NUL.
7393 */
7394 int
7395vim_regsub(rmp, source, dest, copy, magic, backslash)
7396 regmatch_T *rmp;
7397 char_u *source;
7398 char_u *dest;
7399 int copy;
7400 int magic;
7401 int backslash;
7402{
7403 reg_match = rmp;
7404 reg_mmatch = NULL;
7405 reg_maxline = 0;
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01007406 reg_buf = curbuf;
Bram Moolenaar93fc4812014-04-23 18:48:47 +02007407 reg_line_lbr = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408 return vim_regsub_both(source, dest, copy, magic, backslash);
7409}
7410#endif
7411
7412 int
7413vim_regsub_multi(rmp, lnum, source, dest, copy, magic, backslash)
7414 regmmatch_T *rmp;
7415 linenr_T lnum;
7416 char_u *source;
7417 char_u *dest;
7418 int copy;
7419 int magic;
7420 int backslash;
7421{
7422 reg_match = NULL;
7423 reg_mmatch = rmp;
7424 reg_buf = curbuf; /* always works on the current buffer! */
7425 reg_firstlnum = lnum;
7426 reg_maxline = curbuf->b_ml.ml_line_count - lnum;
Bram Moolenaar93fc4812014-04-23 18:48:47 +02007427 reg_line_lbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007428 return vim_regsub_both(source, dest, copy, magic, backslash);
7429}
7430
7431 static int
7432vim_regsub_both(source, dest, copy, magic, backslash)
7433 char_u *source;
7434 char_u *dest;
7435 int copy;
7436 int magic;
7437 int backslash;
7438{
7439 char_u *src;
7440 char_u *dst;
7441 char_u *s;
7442 int c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007443 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444 int no = -1;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007445 fptr_T func_all = (fptr_T)NULL;
7446 fptr_T func_one = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 linenr_T clnum = 0; /* init for GCC */
7448 int len = 0; /* init for GCC */
7449#ifdef FEAT_EVAL
7450 static char_u *eval_result = NULL;
7451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452
7453 /* Be paranoid... */
7454 if (source == NULL || dest == NULL)
7455 {
7456 EMSG(_(e_null));
7457 return 0;
7458 }
7459 if (prog_magic_wrong())
7460 return 0;
7461 src = source;
7462 dst = dest;
7463
7464 /*
7465 * When the substitute part starts with "\=" evaluate it as an expression.
7466 */
7467 if (source[0] == '\\' && source[1] == '='
7468#ifdef FEAT_EVAL
7469 && !can_f_submatch /* can't do this recursively */
7470#endif
7471 )
7472 {
7473#ifdef FEAT_EVAL
7474 /* To make sure that the length doesn't change between checking the
7475 * length and copying the string, and to speed up things, the
7476 * resulting string is saved from the call with "copy" == FALSE to the
7477 * call with "copy" == TRUE. */
7478 if (copy)
7479 {
7480 if (eval_result != NULL)
7481 {
7482 STRCPY(dest, eval_result);
7483 dst += STRLEN(eval_result);
7484 vim_free(eval_result);
7485 eval_result = NULL;
7486 }
7487 }
7488 else
7489 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 win_T *save_reg_win;
7491 int save_ireg_ic;
7492
7493 vim_free(eval_result);
7494
7495 /* The expression may contain substitute(), which calls us
7496 * recursively. Make sure submatch() gets the text from the first
7497 * level. Don't need to save "reg_buf", because
7498 * vim_regexec_multi() can't be called recursively. */
7499 submatch_match = reg_match;
7500 submatch_mmatch = reg_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007501 submatch_firstlnum = reg_firstlnum;
7502 submatch_maxline = reg_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007503 submatch_line_lbr = reg_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504 save_reg_win = reg_win;
7505 save_ireg_ic = ireg_ic;
7506 can_f_submatch = TRUE;
7507
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007508 eval_result = eval_to_string(source + 2, NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509 if (eval_result != NULL)
7510 {
Bram Moolenaar06975a42010-03-23 16:27:22 +01007511 int had_backslash = FALSE;
7512
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00007513 for (s = eval_result; *s != NUL; mb_ptr_adv(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007514 {
Bram Moolenaar978287b2011-06-19 04:32:15 +02007515 /* Change NL to CR, so that it becomes a line break,
7516 * unless called from vim_regexec_nl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 * Skip over a backslashed character. */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007518 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007519 *s = CAR;
7520 else if (*s == '\\' && s[1] != NUL)
Bram Moolenaar06975a42010-03-23 16:27:22 +01007521 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 ++s;
Bram Moolenaar60190782010-05-21 13:08:58 +02007523 /* Change NL to CR here too, so that this works:
7524 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text:
7525 * abc\
7526 * def
Bram Moolenaar978287b2011-06-19 04:32:15 +02007527 * Not when called from vim_regexec_nl().
Bram Moolenaar60190782010-05-21 13:08:58 +02007528 */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007529 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar60190782010-05-21 13:08:58 +02007530 *s = CAR;
Bram Moolenaar06975a42010-03-23 16:27:22 +01007531 had_backslash = TRUE;
7532 }
7533 }
7534 if (had_backslash && backslash)
7535 {
7536 /* Backslashes will be consumed, need to double them. */
7537 s = vim_strsave_escaped(eval_result, (char_u *)"\\");
7538 if (s != NULL)
7539 {
7540 vim_free(eval_result);
7541 eval_result = s;
7542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 }
7544
7545 dst += STRLEN(eval_result);
7546 }
7547
7548 reg_match = submatch_match;
7549 reg_mmatch = submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007550 reg_firstlnum = submatch_firstlnum;
7551 reg_maxline = submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007552 reg_line_lbr = submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007553 reg_win = save_reg_win;
7554 ireg_ic = save_ireg_ic;
7555 can_f_submatch = FALSE;
7556 }
7557#endif
7558 }
7559 else
7560 while ((c = *src++) != NUL)
7561 {
7562 if (c == '&' && magic)
7563 no = 0;
7564 else if (c == '\\' && *src != NUL)
7565 {
7566 if (*src == '&' && !magic)
7567 {
7568 ++src;
7569 no = 0;
7570 }
7571 else if ('0' <= *src && *src <= '9')
7572 {
7573 no = *src++ - '0';
7574 }
7575 else if (vim_strchr((char_u *)"uUlLeE", *src))
7576 {
7577 switch (*src++)
7578 {
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007579 case 'u': func_one = (fptr_T)do_upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007580 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007581 case 'U': func_all = (fptr_T)do_Upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007583 case 'l': func_one = (fptr_T)do_lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007584 continue;
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007585 case 'L': func_all = (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007586 continue;
7587 case 'e':
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007588 case 'E': func_one = func_all = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 continue;
7590 }
7591 }
7592 }
7593 if (no < 0) /* Ordinary character. */
7594 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00007595 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL)
7596 {
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007597 /* Copy a special key as-is. */
Bram Moolenaardb552d602006-03-23 22:59:57 +00007598 if (copy)
7599 {
7600 *dst++ = c;
7601 *dst++ = *src++;
7602 *dst++ = *src++;
7603 }
7604 else
7605 {
7606 dst += 3;
7607 src += 2;
7608 }
7609 continue;
7610 }
7611
Bram Moolenaar071d4272004-06-13 20:20:40 +00007612 if (c == '\\' && *src != NUL)
7613 {
7614 /* Check for abbreviations -- webb */
7615 switch (*src)
7616 {
7617 case 'r': c = CAR; ++src; break;
7618 case 'n': c = NL; ++src; break;
7619 case 't': c = TAB; ++src; break;
7620 /* Oh no! \e already has meaning in subst pat :-( */
7621 /* case 'e': c = ESC; ++src; break; */
7622 case 'b': c = Ctrl_H; ++src; break;
7623
7624 /* If "backslash" is TRUE the backslash will be removed
7625 * later. Used to insert a literal CR. */
7626 default: if (backslash)
7627 {
7628 if (copy)
7629 *dst = '\\';
7630 ++dst;
7631 }
7632 c = *src++;
7633 }
7634 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635#ifdef FEAT_MBYTE
Bram Moolenaardb552d602006-03-23 22:59:57 +00007636 else if (has_mbyte)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007637 c = mb_ptr2char(src - 1);
7638#endif
7639
Bram Moolenaardb552d602006-03-23 22:59:57 +00007640 /* Write to buffer, if copy is set. */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007641 if (func_one != (fptr_T)NULL)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007642 /* Turbo C complains without the typecast */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007643 func_one = (fptr_T)(func_one(&cc, c));
7644 else if (func_all != (fptr_T)NULL)
7645 /* Turbo C complains without the typecast */
7646 func_all = (fptr_T)(func_all(&cc, c));
7647 else /* just copy */
7648 cc = c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007649
7650#ifdef FEAT_MBYTE
7651 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652 {
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007653 int totlen = mb_ptr2len(src - 1);
7654
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007656 mb_char2bytes(cc, dst);
7657 dst += mb_char2len(cc) - 1;
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007658 if (enc_utf8)
7659 {
7660 int clen = utf_ptr2len(src - 1);
7661
7662 /* If the character length is shorter than "totlen", there
7663 * are composing characters; copy them as-is. */
7664 if (clen < totlen)
7665 {
7666 if (copy)
7667 mch_memmove(dst + 1, src - 1 + clen,
7668 (size_t)(totlen - clen));
7669 dst += totlen - clen;
7670 }
7671 }
7672 src += totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007673 }
7674 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007675#endif
7676 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007677 *dst = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007678 dst++;
7679 }
7680 else
7681 {
7682 if (REG_MULTI)
7683 {
7684 clnum = reg_mmatch->startpos[no].lnum;
7685 if (clnum < 0 || reg_mmatch->endpos[no].lnum < 0)
7686 s = NULL;
7687 else
7688 {
7689 s = reg_getline(clnum) + reg_mmatch->startpos[no].col;
7690 if (reg_mmatch->endpos[no].lnum == clnum)
7691 len = reg_mmatch->endpos[no].col
7692 - reg_mmatch->startpos[no].col;
7693 else
7694 len = (int)STRLEN(s);
7695 }
7696 }
7697 else
7698 {
7699 s = reg_match->startp[no];
7700 if (reg_match->endp[no] == NULL)
7701 s = NULL;
7702 else
7703 len = (int)(reg_match->endp[no] - s);
7704 }
7705 if (s != NULL)
7706 {
7707 for (;;)
7708 {
7709 if (len == 0)
7710 {
7711 if (REG_MULTI)
7712 {
7713 if (reg_mmatch->endpos[no].lnum == clnum)
7714 break;
7715 if (copy)
7716 *dst = CAR;
7717 ++dst;
7718 s = reg_getline(++clnum);
7719 if (reg_mmatch->endpos[no].lnum == clnum)
7720 len = reg_mmatch->endpos[no].col;
7721 else
7722 len = (int)STRLEN(s);
7723 }
7724 else
7725 break;
7726 }
7727 else if (*s == NUL) /* we hit NUL. */
7728 {
7729 if (copy)
7730 EMSG(_(e_re_damg));
7731 goto exit;
7732 }
7733 else
7734 {
7735 if (backslash && (*s == CAR || *s == '\\'))
7736 {
7737 /*
7738 * Insert a backslash in front of a CR, otherwise
7739 * it will be replaced by a line break.
7740 * Number of backslashes will be halved later,
7741 * double them here.
7742 */
7743 if (copy)
7744 {
7745 dst[0] = '\\';
7746 dst[1] = *s;
7747 }
7748 dst += 2;
7749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007750 else
7751 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007752#ifdef FEAT_MBYTE
7753 if (has_mbyte)
7754 c = mb_ptr2char(s);
7755 else
7756#endif
7757 c = *s;
7758
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007759 if (func_one != (fptr_T)NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007760 /* Turbo C complains without the typecast */
Bram Moolenaarc2c355d2013-03-19 17:42:15 +01007761 func_one = (fptr_T)(func_one(&cc, c));
7762 else if (func_all != (fptr_T)NULL)
7763 /* Turbo C complains without the typecast */
7764 func_all = (fptr_T)(func_all(&cc, c));
7765 else /* just copy */
7766 cc = c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007767
7768#ifdef FEAT_MBYTE
7769 if (has_mbyte)
7770 {
Bram Moolenaar9225efb2007-07-30 20:32:53 +00007771 int l;
7772
7773 /* Copy composing characters separately, one
7774 * at a time. */
7775 if (enc_utf8)
7776 l = utf_ptr2len(s) - 1;
7777 else
7778 l = mb_ptr2len(s) - 1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007779
7780 s += l;
7781 len -= l;
7782 if (copy)
7783 mb_char2bytes(cc, dst);
7784 dst += mb_char2len(cc) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007785 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007786 else
7787#endif
7788 if (copy)
7789 *dst = cc;
7790 dst++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007792
Bram Moolenaar071d4272004-06-13 20:20:40 +00007793 ++s;
7794 --len;
7795 }
7796 }
7797 }
7798 no = -1;
7799 }
7800 }
7801 if (copy)
7802 *dst = NUL;
7803
7804exit:
7805 return (int)((dst - dest) + 1);
7806}
7807
7808#ifdef FEAT_EVAL
Bram Moolenaard32a3192009-11-26 19:40:49 +00007809static char_u *reg_getline_submatch __ARGS((linenr_T lnum));
7810
Bram Moolenaar071d4272004-06-13 20:20:40 +00007811/*
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007812 * Call reg_getline() with the line numbers from the submatch. If a
7813 * substitute() was used the reg_maxline and other values have been
7814 * overwritten.
7815 */
7816 static char_u *
7817reg_getline_submatch(lnum)
7818 linenr_T lnum;
7819{
7820 char_u *s;
7821 linenr_T save_first = reg_firstlnum;
7822 linenr_T save_max = reg_maxline;
7823
7824 reg_firstlnum = submatch_firstlnum;
7825 reg_maxline = submatch_maxline;
7826
7827 s = reg_getline(lnum);
7828
7829 reg_firstlnum = save_first;
7830 reg_maxline = save_max;
7831 return s;
7832}
7833
7834/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007835 * Used for the submatch() function: get the string from the n'th submatch in
Bram Moolenaar071d4272004-06-13 20:20:40 +00007836 * allocated memory.
7837 * Returns NULL when not in a ":s" command and for a non-existing submatch.
7838 */
7839 char_u *
7840reg_submatch(no)
7841 int no;
7842{
7843 char_u *retval = NULL;
7844 char_u *s;
7845 int len;
7846 int round;
7847 linenr_T lnum;
7848
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007849 if (!can_f_submatch || no < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007850 return NULL;
7851
7852 if (submatch_match == NULL)
7853 {
7854 /*
7855 * First round: compute the length and allocate memory.
7856 * Second round: copy the text.
7857 */
7858 for (round = 1; round <= 2; ++round)
7859 {
7860 lnum = submatch_mmatch->startpos[no].lnum;
7861 if (lnum < 0 || submatch_mmatch->endpos[no].lnum < 0)
7862 return NULL;
7863
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007864 s = reg_getline_submatch(lnum) + submatch_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865 if (s == NULL) /* anti-crash check, cannot happen? */
7866 break;
7867 if (submatch_mmatch->endpos[no].lnum == lnum)
7868 {
7869 /* Within one line: take form start to end col. */
7870 len = submatch_mmatch->endpos[no].col
7871 - submatch_mmatch->startpos[no].col;
7872 if (round == 2)
Bram Moolenaarbbebc852005-07-18 21:47:53 +00007873 vim_strncpy(retval, s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007874 ++len;
7875 }
7876 else
7877 {
7878 /* Multiple lines: take start line from start col, middle
7879 * lines completely and end line up to end col. */
7880 len = (int)STRLEN(s);
7881 if (round == 2)
7882 {
7883 STRCPY(retval, s);
7884 retval[len] = '\n';
7885 }
7886 ++len;
7887 ++lnum;
7888 while (lnum < submatch_mmatch->endpos[no].lnum)
7889 {
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007890 s = reg_getline_submatch(lnum++);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007891 if (round == 2)
7892 STRCPY(retval + len, s);
7893 len += (int)STRLEN(s);
7894 if (round == 2)
7895 retval[len] = '\n';
7896 ++len;
7897 }
7898 if (round == 2)
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007899 STRNCPY(retval + len, reg_getline_submatch(lnum),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900 submatch_mmatch->endpos[no].col);
7901 len += submatch_mmatch->endpos[no].col;
7902 if (round == 2)
7903 retval[len] = NUL;
7904 ++len;
7905 }
7906
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007907 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007908 {
7909 retval = lalloc((long_u)len, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007910 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007911 return NULL;
7912 }
7913 }
7914 }
7915 else
7916 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00007917 s = submatch_match->startp[no];
7918 if (s == NULL || submatch_match->endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007919 retval = NULL;
7920 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007921 retval = vim_strnsave(s, (int)(submatch_match->endp[no] - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007922 }
7923
7924 return retval;
7925}
Bram Moolenaar41571762014-04-02 19:00:58 +02007926
7927/*
7928 * Used for the submatch() function with the optional non-zero argument: get
7929 * the list of strings from the n'th submatch in allocated memory with NULs
7930 * represented in NLs.
7931 * Returns a list of allocated strings. Returns NULL when not in a ":s"
7932 * command, for a non-existing submatch and for any error.
7933 */
7934 list_T *
7935reg_submatch_list(no)
7936 int no;
7937{
7938 char_u *s;
7939 linenr_T slnum;
7940 linenr_T elnum;
7941 colnr_T scol;
7942 colnr_T ecol;
7943 int i;
7944 list_T *list;
7945 int error = FALSE;
7946
7947 if (!can_f_submatch || no < 0)
7948 return NULL;
7949
7950 if (submatch_match == NULL)
7951 {
7952 slnum = submatch_mmatch->startpos[no].lnum;
7953 elnum = submatch_mmatch->endpos[no].lnum;
7954 if (slnum < 0 || elnum < 0)
7955 return NULL;
7956
7957 scol = submatch_mmatch->startpos[no].col;
7958 ecol = submatch_mmatch->endpos[no].col;
7959
7960 list = list_alloc();
7961 if (list == NULL)
7962 return NULL;
7963
7964 s = reg_getline_submatch(slnum) + scol;
7965 if (slnum == elnum)
7966 {
7967 if (list_append_string(list, s, ecol - scol) == FAIL)
7968 error = TRUE;
7969 }
7970 else
7971 {
7972 if (list_append_string(list, s, -1) == FAIL)
7973 error = TRUE;
7974 for (i = 1; i < elnum - slnum; i++)
7975 {
7976 s = reg_getline_submatch(slnum + i);
7977 if (list_append_string(list, s, -1) == FAIL)
7978 error = TRUE;
7979 }
7980 s = reg_getline_submatch(elnum);
7981 if (list_append_string(list, s, ecol) == FAIL)
7982 error = TRUE;
7983 }
7984 }
7985 else
7986 {
7987 s = submatch_match->startp[no];
7988 if (s == NULL || submatch_match->endp[no] == NULL)
7989 return NULL;
7990 list = list_alloc();
7991 if (list == NULL)
7992 return NULL;
7993 if (list_append_string(list, s,
7994 (int)(submatch_match->endp[no] - s)) == FAIL)
7995 error = TRUE;
7996 }
7997
7998 if (error)
7999 {
8000 list_free(list, TRUE);
8001 return NULL;
8002 }
8003 return list;
8004}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005#endif
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008006
8007static regengine_T bt_regengine =
8008{
8009 bt_regcomp,
Bram Moolenaar473de612013-06-08 18:19:48 +02008010 bt_regfree,
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008011 bt_regexec_nl,
Bram Moolenaarfda37292014-11-05 14:27:36 +01008012 bt_regexec_multi,
8013 (char_u *)""
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008014};
8015
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008016#include "regexp_nfa.c"
8017
8018static regengine_T nfa_regengine =
8019{
8020 nfa_regcomp,
Bram Moolenaar473de612013-06-08 18:19:48 +02008021 nfa_regfree,
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008022 nfa_regexec_nl,
Bram Moolenaarfda37292014-11-05 14:27:36 +01008023 nfa_regexec_multi,
8024 (char_u *)""
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008025};
8026
8027/* Which regexp engine to use? Needed for vim_regcomp().
8028 * Must match with 'regexpengine'. */
8029static int regexp_engine = 0;
Bram Moolenaarfda37292014-11-05 14:27:36 +01008030
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008031#ifdef DEBUG
8032static char_u regname[][30] = {
8033 "AUTOMATIC Regexp Engine",
Bram Moolenaar75eb1612013-05-29 18:45:11 +02008034 "BACKTRACKING Regexp Engine",
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008035 "NFA Regexp Engine"
8036 };
8037#endif
8038
8039/*
8040 * Compile a regular expression into internal code.
Bram Moolenaar473de612013-06-08 18:19:48 +02008041 * Returns the program in allocated memory.
8042 * Use vim_regfree() to free the memory.
8043 * Returns NULL for an error.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008044 */
8045 regprog_T *
8046vim_regcomp(expr_arg, re_flags)
8047 char_u *expr_arg;
8048 int re_flags;
8049{
8050 regprog_T *prog = NULL;
8051 char_u *expr = expr_arg;
8052
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008053 regexp_engine = p_re;
8054
8055 /* Check for prefix "\%#=", that sets the regexp engine */
8056 if (STRNCMP(expr, "\\%#=", 4) == 0)
8057 {
8058 int newengine = expr[4] - '0';
8059
8060 if (newengine == AUTOMATIC_ENGINE
8061 || newengine == BACKTRACKING_ENGINE
8062 || newengine == NFA_ENGINE)
8063 {
8064 regexp_engine = expr[4] - '0';
8065 expr += 5;
8066#ifdef DEBUG
Bram Moolenaar6e132072014-05-13 16:46:32 +02008067 smsg((char_u *)"New regexp mode selected (%d): %s",
8068 regexp_engine, regname[newengine]);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008069#endif
8070 }
8071 else
8072 {
8073 EMSG(_("E864: \\%#= can only be followed by 0, 1, or 2. The automatic engine will be used "));
8074 regexp_engine = AUTOMATIC_ENGINE;
8075 }
8076 }
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008077 bt_regengine.expr = expr;
8078 nfa_regengine.expr = expr;
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008079
8080 /*
8081 * First try the NFA engine, unless backtracking was requested.
8082 */
8083 if (regexp_engine != BACKTRACKING_ENGINE)
8084 prog = nfa_regengine.regcomp(expr, re_flags);
8085 else
8086 prog = bt_regengine.regcomp(expr, re_flags);
8087
Bram Moolenaarfda37292014-11-05 14:27:36 +01008088 /* Check for error compiling regexp with initial engine. */
8089 if (prog == NULL)
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008090 {
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008091#ifdef BT_REGEXP_DEBUG_LOG
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008092 if (regexp_engine != BACKTRACKING_ENGINE) /* debugging log for NFA */
8093 {
8094 FILE *f;
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008095 f = fopen(BT_REGEXP_DEBUG_LOG_NAME, "a");
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008096 if (f)
8097 {
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008098 fprintf(f, "Syntax error in \"%s\"\n", expr);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008099 fclose(f);
8100 }
8101 else
Bram Moolenaar7fcff1f2013-05-20 21:49:13 +02008102 EMSG2("(NFA) Could not open \"%s\" to write !!!",
8103 BT_REGEXP_DEBUG_LOG_NAME);
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008104 }
8105#endif
8106 /*
Bram Moolenaarfda37292014-11-05 14:27:36 +01008107 * If the NFA engine failed, try the backtracking engine.
8108 * Disabled for now, both engines fail on the same patterns.
8109 * Re-enable when regcomp() fails when the pattern would work better
8110 * with the other engine.
Bram Moolenaar917789f2013-09-19 17:04:01 +02008111 *
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +02008112 if (regexp_engine == AUTOMATIC_ENGINE)
Bram Moolenaarfda37292014-11-05 14:27:36 +01008113 {
Bram Moolenaarcd2d8bb2013-06-05 21:42:53 +02008114 prog = bt_regengine.regcomp(expr, re_flags);
Bram Moolenaarfda37292014-11-05 14:27:36 +01008115 regexp_engine == BACKTRACKING_ENGINE;
8116 }
Bram Moolenaar917789f2013-09-19 17:04:01 +02008117 */
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}