blob: b6506a03a613f738502b1805ea3a159aabc9d2eb [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
41#include "vim.h"
42
43#undef DEBUG
44
45/*
46 * The "internal use only" fields in regexp.h are present to pass info from
47 * compile to execute that permits the execute phase to run lots faster on
48 * simple cases. They are:
49 *
50 * regstart char that must begin a match; NUL if none obvious; Can be a
51 * multi-byte character.
52 * reganch is the match anchored (at beginning-of-line only)?
53 * regmust string (pointer into program) that match must include, or NULL
54 * regmlen length of regmust string
55 * regflags RF_ values or'ed together
56 *
57 * Regstart and reganch permit very fast decisions on suitable starting points
58 * for a match, cutting down the work a lot. Regmust permits fast rejection
59 * of lines that cannot possibly match. The regmust tests are costly enough
60 * that vim_regcomp() supplies a regmust only if the r.e. contains something
61 * potentially expensive (at present, the only such thing detected is * or +
62 * at the start of the r.e., which can involve a lot of backup). Regmlen is
63 * supplied because the test in vim_regexec() needs it and vim_regcomp() is
64 * computing it anyway.
65 */
66
67/*
68 * Structure for regexp "program". This is essentially a linear encoding
69 * of a nondeterministic finite-state machine (aka syntax charts or
70 * "railroad normal form" in parsing technology). Each node is an opcode
71 * plus a "next" pointer, possibly plus an operand. "Next" pointers of
72 * all nodes except BRANCH and BRACES_COMPLEX implement concatenation; a "next"
73 * pointer with a BRANCH on both ends of it is connecting two alternatives.
74 * (Here we have one of the subtle syntax dependencies: an individual BRANCH
75 * (as opposed to a collection of them) is never concatenated with anything
76 * because of operator precedence). The "next" pointer of a BRACES_COMPLEX
Bram Moolenaardf177f62005-02-22 08:39:57 +000077 * node points to the node after the stuff to be repeated.
78 * The operand of some types of node is a literal string; for others, it is a
79 * node leading into a sub-FSM. In particular, the operand of a BRANCH node
80 * is the first node of the branch.
81 * (NB this is *not* a tree structure: the tail of the branch connects to the
82 * thing following the set of BRANCHes.)
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 *
84 * pattern is coded like:
85 *
86 * +-----------------+
87 * | V
88 * <aa>\|<bb> BRANCH <aa> BRANCH <bb> --> END
89 * | ^ | ^
90 * +------+ +----------+
91 *
92 *
93 * +------------------+
94 * V |
95 * <aa>* BRANCH BRANCH <aa> --> BACK BRANCH --> NOTHING --> END
96 * | | ^ ^
97 * | +---------------+ |
98 * +---------------------------------------------+
99 *
100 *
Bram Moolenaardf177f62005-02-22 08:39:57 +0000101 * +----------------------+
102 * V |
Bram Moolenaar582fd852005-03-28 20:58:01 +0000103 * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000104 * | | ^ ^
105 * | +-----------+ |
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000106 * +--------------------------------------------------+
Bram Moolenaardf177f62005-02-22 08:39:57 +0000107 *
108 *
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109 * +-------------------------+
110 * V |
111 * <aa>\{} BRANCH BRACE_LIMITS --> BRACE_COMPLEX <aa> --> BACK END
112 * | | ^
113 * | +----------------+
114 * +-----------------------------------------------+
115 *
116 *
117 * <aa>\@!<bb> BRANCH NOMATCH <aa> --> END <bb> --> END
118 * | | ^ ^
119 * | +----------------+ |
120 * +--------------------------------+
121 *
122 * +---------+
123 * | V
124 * \z[abc] BRANCH BRANCH a BRANCH b BRANCH c BRANCH NOTHING --> END
125 * | | | | ^ ^
126 * | | | +-----+ |
127 * | | +----------------+ |
128 * | +---------------------------+ |
129 * +------------------------------------------------------+
130 *
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +0000131 * They all start with a BRANCH for "\|" alternatives, even when there is only
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 * one alternative.
133 */
134
135/*
136 * The opcodes are:
137 */
138
139/* definition number opnd? meaning */
140#define END 0 /* End of program or NOMATCH operand. */
141#define BOL 1 /* Match "" at beginning of line. */
142#define EOL 2 /* Match "" at end of line. */
143#define BRANCH 3 /* node Match this alternative, or the
144 * next... */
145#define BACK 4 /* Match "", "next" ptr points backward. */
146#define EXACTLY 5 /* str Match this string. */
147#define NOTHING 6 /* Match empty string. */
148#define STAR 7 /* node Match this (simple) thing 0 or more
149 * times. */
150#define PLUS 8 /* node Match this (simple) thing 1 or more
151 * times. */
152#define MATCH 9 /* node match the operand zero-width */
153#define NOMATCH 10 /* node check for no match with operand */
154#define BEHIND 11 /* node look behind for a match with operand */
155#define NOBEHIND 12 /* node look behind for no match with operand */
156#define SUBPAT 13 /* node match the operand here */
157#define BRACE_SIMPLE 14 /* node Match this (simple) thing between m and
158 * n times (\{m,n\}). */
159#define BOW 15 /* Match "" after [^a-zA-Z0-9_] */
160#define EOW 16 /* Match "" at [^a-zA-Z0-9_] */
161#define BRACE_LIMITS 17 /* nr nr define the min & max for BRACE_SIMPLE
162 * and BRACE_COMPLEX. */
163#define NEWL 18 /* Match line-break */
164#define BHPOS 19 /* End position for BEHIND or NOBEHIND */
165
166
167/* character classes: 20-48 normal, 50-78 include a line-break */
168#define ADD_NL 30
169#define FIRST_NL ANY + ADD_NL
170#define ANY 20 /* Match any one character. */
171#define ANYOF 21 /* str Match any character in this string. */
172#define ANYBUT 22 /* str Match any character not in this
173 * string. */
174#define IDENT 23 /* Match identifier char */
175#define SIDENT 24 /* Match identifier char but no digit */
176#define KWORD 25 /* Match keyword char */
177#define SKWORD 26 /* Match word char but no digit */
178#define FNAME 27 /* Match file name char */
179#define SFNAME 28 /* Match file name char but no digit */
180#define PRINT 29 /* Match printable char */
181#define SPRINT 30 /* Match printable char but no digit */
182#define WHITE 31 /* Match whitespace char */
183#define NWHITE 32 /* Match non-whitespace char */
184#define DIGIT 33 /* Match digit char */
185#define NDIGIT 34 /* Match non-digit char */
186#define HEX 35 /* Match hex char */
187#define NHEX 36 /* Match non-hex char */
188#define OCTAL 37 /* Match octal char */
189#define NOCTAL 38 /* Match non-octal char */
190#define WORD 39 /* Match word char */
191#define NWORD 40 /* Match non-word char */
192#define HEAD 41 /* Match head char */
193#define NHEAD 42 /* Match non-head char */
194#define ALPHA 43 /* Match alpha char */
195#define NALPHA 44 /* Match non-alpha char */
196#define LOWER 45 /* Match lowercase char */
197#define NLOWER 46 /* Match non-lowercase char */
198#define UPPER 47 /* Match uppercase char */
199#define NUPPER 48 /* Match non-uppercase char */
200#define LAST_NL NUPPER + ADD_NL
201#define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL)
202
203#define MOPEN 80 /* -89 Mark this point in input as start of
204 * \( subexpr. MOPEN + 0 marks start of
205 * match. */
206#define MCLOSE 90 /* -99 Analogous to MOPEN. MCLOSE + 0 marks
207 * end of match. */
208#define BACKREF 100 /* -109 node Match same string again \1-\9 */
209
210#ifdef FEAT_SYN_HL
211# define ZOPEN 110 /* -119 Mark this point in input as start of
212 * \z( subexpr. */
213# define ZCLOSE 120 /* -129 Analogous to ZOPEN. */
214# define ZREF 130 /* -139 node Match external submatch \z1-\z9 */
215#endif
216
217#define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */
218
219#define NOPEN 150 /* Mark this point in input as start of
220 \%( subexpr. */
221#define NCLOSE 151 /* Analogous to NOPEN. */
222
223#define MULTIBYTECODE 200 /* mbc Match one multi-byte character */
224#define RE_BOF 201 /* Match "" at beginning of file. */
225#define RE_EOF 202 /* Match "" at end of file. */
226#define CURSOR 203 /* Match location of cursor. */
227
228#define RE_LNUM 204 /* nr cmp Match line number */
229#define RE_COL 205 /* nr cmp Match column number */
230#define RE_VCOL 206 /* nr cmp Match virtual column number */
231
Bram Moolenaar71fe80d2006-01-22 23:25:56 +0000232#define RE_MARK 207 /* mark cmp Match mark position */
233#define RE_VISUAL 208 /* Match Visual area */
234
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235/*
236 * Magic characters have a special meaning, they don't match literally.
237 * Magic characters are negative. This separates them from literal characters
238 * (possibly multi-byte). Only ASCII characters can be Magic.
239 */
240#define Magic(x) ((int)(x) - 256)
241#define un_Magic(x) ((x) + 256)
242#define is_Magic(x) ((x) < 0)
243
244static int no_Magic __ARGS((int x));
245static int toggle_Magic __ARGS((int x));
246
247 static int
248no_Magic(x)
249 int x;
250{
251 if (is_Magic(x))
252 return un_Magic(x);
253 return x;
254}
255
256 static int
257toggle_Magic(x)
258 int x;
259{
260 if (is_Magic(x))
261 return un_Magic(x);
262 return Magic(x);
263}
264
265/*
266 * The first byte of the regexp internal "program" is actually this magic
267 * number; the start node begins in the second byte. It's used to catch the
268 * most severe mutilation of the program by the caller.
269 */
270
271#define REGMAGIC 0234
272
273/*
274 * Opcode notes:
275 *
276 * BRANCH The set of branches constituting a single choice are hooked
277 * together with their "next" pointers, since precedence prevents
278 * anything being concatenated to any individual branch. The
279 * "next" pointer of the last BRANCH in a choice points to the
280 * thing following the whole choice. This is also where the
281 * final "next" pointer of each individual branch points; each
282 * branch starts with the operand node of a BRANCH node.
283 *
284 * BACK Normal "next" pointers all implicitly point forward; BACK
285 * exists to make loop structures possible.
286 *
287 * STAR,PLUS '=', and complex '*' and '+', are implemented as circular
288 * BRANCH structures using BACK. Simple cases (one character
289 * per match) are implemented with STAR and PLUS for speed
290 * and to minimize recursive plunges.
291 *
292 * BRACE_LIMITS This is always followed by a BRACE_SIMPLE or BRACE_COMPLEX
293 * node, and defines the min and max limits to be used for that
294 * node.
295 *
296 * MOPEN,MCLOSE ...are numbered at compile time.
297 * ZOPEN,ZCLOSE ...ditto
298 */
299
300/*
301 * A node is one char of opcode followed by two chars of "next" pointer.
302 * "Next" pointers are stored as two 8-bit bytes, high order first. The
303 * value is a positive offset from the opcode of the node containing it.
304 * An operand, if any, simply follows the node. (Note that much of the
305 * code generation knows about this implicit relationship.)
306 *
307 * Using two bytes for the "next" pointer is vast overkill for most things,
308 * but allows patterns to get big without disasters.
309 */
310#define OP(p) ((int)*(p))
311#define NEXT(p) (((*((p) + 1) & 0377) << 8) + (*((p) + 2) & 0377))
312#define OPERAND(p) ((p) + 3)
313/* Obtain an operand that was stored as four bytes, MSB first. */
314#define OPERAND_MIN(p) (((long)(p)[3] << 24) + ((long)(p)[4] << 16) \
315 + ((long)(p)[5] << 8) + (long)(p)[6])
316/* Obtain a second operand stored as four bytes. */
317#define OPERAND_MAX(p) OPERAND_MIN((p) + 4)
318/* Obtain a second single-byte operand stored after a four bytes operand. */
319#define OPERAND_CMP(p) (p)[7]
320
321/*
322 * Utility definitions.
323 */
324#define UCHARAT(p) ((int)*(char_u *)(p))
325
326/* Used for an error (down from) vim_regcomp(): give the error message, set
327 * rc_did_emsg and return NULL */
Bram Moolenaar98692072006-02-04 00:57:42 +0000328#define EMSG_RET_NULL(m) return (EMSG(m), rc_did_emsg = TRUE, (void *)NULL)
329#define EMSG_M_RET_NULL(m, c) return (EMSG2((m), (c) ? "" : "\\"), rc_did_emsg = TRUE, (void *)NULL)
Bram Moolenaar45eeb132005-06-06 21:59:07 +0000330#define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331#define EMSG_ONE_RET_NULL EMSG_M_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL)
332
333#define MAX_LIMIT (32767L << 16L)
334
335static int re_multi_type __ARGS((int));
336static int cstrncmp __ARGS((char_u *s1, char_u *s2, int *n));
337static char_u *cstrchr __ARGS((char_u *, int));
338
339#ifdef DEBUG
340static void regdump __ARGS((char_u *, regprog_T *));
341static char_u *regprop __ARGS((char_u *));
342#endif
343
344#define NOT_MULTI 0
345#define MULTI_ONE 1
346#define MULTI_MULT 2
347/*
348 * Return NOT_MULTI if c is not a "multi" operator.
349 * Return MULTI_ONE if c is a single "multi" operator.
350 * Return MULTI_MULT if c is a multi "multi" operator.
351 */
352 static int
353re_multi_type(c)
354 int c;
355{
356 if (c == Magic('@') || c == Magic('=') || c == Magic('?'))
357 return MULTI_ONE;
358 if (c == Magic('*') || c == Magic('+') || c == Magic('{'))
359 return MULTI_MULT;
360 return NOT_MULTI;
361}
362
363/*
364 * Flags to be passed up and down.
365 */
366#define HASWIDTH 0x1 /* Known never to match null string. */
367#define SIMPLE 0x2 /* Simple enough to be STAR/PLUS operand. */
368#define SPSTART 0x4 /* Starts with * or +. */
369#define HASNL 0x8 /* Contains some \n. */
370#define HASLOOKBH 0x10 /* Contains "\@<=" or "\@<!". */
371#define WORST 0 /* Worst case. */
372
373/*
374 * When regcode is set to this value, code is not emitted and size is computed
375 * instead.
376 */
377#define JUST_CALC_SIZE ((char_u *) -1)
378
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000379static char_u *reg_prev_sub = NULL;
380
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381/*
382 * REGEXP_INRANGE contains all characters which are always special in a []
383 * range after '\'.
384 * REGEXP_ABBR contains all characters which act as abbreviations after '\'.
385 * These are:
386 * \n - New line (NL).
387 * \r - Carriage Return (CR).
388 * \t - Tab (TAB).
389 * \e - Escape (ESC).
390 * \b - Backspace (Ctrl_H).
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000391 * \d - Character code in decimal, eg \d123
392 * \o - Character code in octal, eg \o80
393 * \x - Character code in hex, eg \x4a
394 * \u - Multibyte character code, eg \u20ac
395 * \U - Long multibyte character code, eg \U12345678
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 */
397static char_u REGEXP_INRANGE[] = "]^-n\\";
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000398static char_u REGEXP_ABBR[] = "nrtebdoxuU";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399
400static int backslash_trans __ARGS((int c));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000401static int get_char_class __ARGS((char_u **pp));
402static int get_equi_class __ARGS((char_u **pp));
403static void reg_equi_class __ARGS((int c));
404static int get_coll_element __ARGS((char_u **pp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405static char_u *skip_anyof __ARGS((char_u *p));
406static void init_class_tab __ARGS((void));
407
408/*
409 * Translate '\x' to its control character, except "\n", which is Magic.
410 */
411 static int
412backslash_trans(c)
413 int c;
414{
415 switch (c)
416 {
417 case 'r': return CAR;
418 case 't': return TAB;
419 case 'e': return ESC;
420 case 'b': return BS;
421 }
422 return c;
423}
424
425/*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000426 * Check for a character class name "[:name:]". "pp" points to the '['.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427 * Returns one of the CLASS_ items. CLASS_NONE means that no item was
428 * recognized. Otherwise "pp" is advanced to after the item.
429 */
430 static int
Bram Moolenaardf177f62005-02-22 08:39:57 +0000431get_char_class(pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 char_u **pp;
433{
434 static const char *(class_names[]) =
435 {
436 "alnum:]",
437#define CLASS_ALNUM 0
438 "alpha:]",
439#define CLASS_ALPHA 1
440 "blank:]",
441#define CLASS_BLANK 2
442 "cntrl:]",
443#define CLASS_CNTRL 3
444 "digit:]",
445#define CLASS_DIGIT 4
446 "graph:]",
447#define CLASS_GRAPH 5
448 "lower:]",
449#define CLASS_LOWER 6
450 "print:]",
451#define CLASS_PRINT 7
452 "punct:]",
453#define CLASS_PUNCT 8
454 "space:]",
455#define CLASS_SPACE 9
456 "upper:]",
457#define CLASS_UPPER 10
458 "xdigit:]",
459#define CLASS_XDIGIT 11
460 "tab:]",
461#define CLASS_TAB 12
462 "return:]",
463#define CLASS_RETURN 13
464 "backspace:]",
465#define CLASS_BACKSPACE 14
466 "escape:]",
467#define CLASS_ESCAPE 15
468 };
469#define CLASS_NONE 99
470 int i;
471
472 if ((*pp)[1] == ':')
473 {
Bram Moolenaar78a15312009-05-15 19:33:18 +0000474 for (i = 0; i < (int)(sizeof(class_names) / sizeof(*class_names)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 if (STRNCMP(*pp + 2, class_names[i], STRLEN(class_names[i])) == 0)
476 {
477 *pp += STRLEN(class_names[i]) + 2;
478 return i;
479 }
480 }
481 return CLASS_NONE;
482}
483
484/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 * Specific version of character class functions.
486 * Using a table to keep this fast.
487 */
488static short class_tab[256];
489
490#define RI_DIGIT 0x01
491#define RI_HEX 0x02
492#define RI_OCTAL 0x04
493#define RI_WORD 0x08
494#define RI_HEAD 0x10
495#define RI_ALPHA 0x20
496#define RI_LOWER 0x40
497#define RI_UPPER 0x80
498#define RI_WHITE 0x100
499
500 static void
501init_class_tab()
502{
503 int i;
504 static int done = FALSE;
505
506 if (done)
507 return;
508
509 for (i = 0; i < 256; ++i)
510 {
511 if (i >= '0' && i <= '7')
512 class_tab[i] = RI_DIGIT + RI_HEX + RI_OCTAL + RI_WORD;
513 else if (i >= '8' && i <= '9')
514 class_tab[i] = RI_DIGIT + RI_HEX + RI_WORD;
515 else if (i >= 'a' && i <= 'f')
516 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER;
517#ifdef EBCDIC
518 else if ((i >= 'g' && i <= 'i') || (i >= 'j' && i <= 'r')
519 || (i >= 's' && i <= 'z'))
520#else
521 else if (i >= 'g' && i <= 'z')
522#endif
523 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_LOWER;
524 else if (i >= 'A' && i <= 'F')
525 class_tab[i] = RI_HEX + RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER;
526#ifdef EBCDIC
527 else if ((i >= 'G' && i <= 'I') || ( i >= 'J' && i <= 'R')
528 || (i >= 'S' && i <= 'Z'))
529#else
530 else if (i >= 'G' && i <= 'Z')
531#endif
532 class_tab[i] = RI_WORD + RI_HEAD + RI_ALPHA + RI_UPPER;
533 else if (i == '_')
534 class_tab[i] = RI_WORD + RI_HEAD;
535 else
536 class_tab[i] = 0;
537 }
538 class_tab[' '] |= RI_WHITE;
539 class_tab['\t'] |= RI_WHITE;
540 done = TRUE;
541}
542
543#ifdef FEAT_MBYTE
544# define ri_digit(c) (c < 0x100 && (class_tab[c] & RI_DIGIT))
545# define ri_hex(c) (c < 0x100 && (class_tab[c] & RI_HEX))
546# define ri_octal(c) (c < 0x100 && (class_tab[c] & RI_OCTAL))
547# define ri_word(c) (c < 0x100 && (class_tab[c] & RI_WORD))
548# define ri_head(c) (c < 0x100 && (class_tab[c] & RI_HEAD))
549# define ri_alpha(c) (c < 0x100 && (class_tab[c] & RI_ALPHA))
550# define ri_lower(c) (c < 0x100 && (class_tab[c] & RI_LOWER))
551# define ri_upper(c) (c < 0x100 && (class_tab[c] & RI_UPPER))
552# define ri_white(c) (c < 0x100 && (class_tab[c] & RI_WHITE))
553#else
554# define ri_digit(c) (class_tab[c] & RI_DIGIT)
555# define ri_hex(c) (class_tab[c] & RI_HEX)
556# define ri_octal(c) (class_tab[c] & RI_OCTAL)
557# define ri_word(c) (class_tab[c] & RI_WORD)
558# define ri_head(c) (class_tab[c] & RI_HEAD)
559# define ri_alpha(c) (class_tab[c] & RI_ALPHA)
560# define ri_lower(c) (class_tab[c] & RI_LOWER)
561# define ri_upper(c) (class_tab[c] & RI_UPPER)
562# define ri_white(c) (class_tab[c] & RI_WHITE)
563#endif
564
565/* flags for regflags */
566#define RF_ICASE 1 /* ignore case */
567#define RF_NOICASE 2 /* don't ignore case */
568#define RF_HASNL 4 /* can match a NL */
569#define RF_ICOMBINE 8 /* ignore combining characters */
570#define RF_LOOKBH 16 /* uses "\@<=" or "\@<!" */
571
572/*
573 * Global work variables for vim_regcomp().
574 */
575
576static char_u *regparse; /* Input-scan pointer. */
577static int prevchr_len; /* byte length of previous char */
578static int num_complex_braces; /* Complex \{...} count */
579static int regnpar; /* () count. */
580#ifdef FEAT_SYN_HL
581static int regnzpar; /* \z() count. */
582static int re_has_z; /* \z item detected */
583#endif
584static char_u *regcode; /* Code-emit pointer, or JUST_CALC_SIZE */
585static long regsize; /* Code size. */
Bram Moolenaard3005802009-11-25 17:21:32 +0000586static int reg_toolong; /* TRUE when offset out of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587static char_u had_endbrace[NSUBEXP]; /* flags, TRUE if end of () found */
588static unsigned regflags; /* RF_ flags for prog */
589static long brace_min[10]; /* Minimums for complex brace repeats */
590static long brace_max[10]; /* Maximums for complex brace repeats */
591static int brace_count[10]; /* Current counts for complex brace repeats */
592#if defined(FEAT_SYN_HL) || defined(PROTO)
593static int had_eol; /* TRUE when EOL found by vim_regcomp() */
594#endif
595static int one_exactly = FALSE; /* only do one char for EXACTLY */
596
597static int reg_magic; /* magicness of the pattern: */
598#define MAGIC_NONE 1 /* "\V" very unmagic */
599#define MAGIC_OFF 2 /* "\M" or 'magic' off */
600#define MAGIC_ON 3 /* "\m" or 'magic' */
601#define MAGIC_ALL 4 /* "\v" very magic */
602
603static int reg_string; /* matching with a string instead of a buffer
604 line */
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000605static int reg_strict; /* "[abc" is illegal */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606
607/*
608 * META contains all characters that may be magic, except '^' and '$'.
609 */
610
611#ifdef EBCDIC
612static char_u META[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~";
613#else
614/* META[] is used often enough to justify turning it into a table. */
615static char_u META_flags[] = {
616 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
617 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
618/* % & ( ) * + . */
619 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0,
620/* 1 2 3 4 5 6 7 8 9 < = > ? */
621 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1,
622/* @ A C D F H I K L M O */
623 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1,
624/* P S U V W X Z [ _ */
625 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1,
626/* a c d f h i k l m n o */
627 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1,
628/* p s u v w x z { | ~ */
629 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1
630};
631#endif
632
633static int curchr;
634
635/* arguments for reg() */
636#define REG_NOPAREN 0 /* toplevel reg() */
637#define REG_PAREN 1 /* \(\) */
638#define REG_ZPAREN 2 /* \z(\) */
639#define REG_NPAREN 3 /* \%(\) */
640
641/*
642 * Forward declarations for vim_regcomp()'s friends.
643 */
644static void initchr __ARGS((char_u *));
645static int getchr __ARGS((void));
646static void skipchr_keepstart __ARGS((void));
647static int peekchr __ARGS((void));
648static void skipchr __ARGS((void));
649static void ungetchr __ARGS((void));
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000650static int gethexchrs __ARGS((int maxinputlen));
651static int getoctchrs __ARGS((void));
652static int getdecchrs __ARGS((void));
653static int coll_get_char __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654static void regcomp_start __ARGS((char_u *expr, int flags));
655static char_u *reg __ARGS((int, int *));
656static char_u *regbranch __ARGS((int *flagp));
657static char_u *regconcat __ARGS((int *flagp));
658static char_u *regpiece __ARGS((int *));
659static char_u *regatom __ARGS((int *));
660static char_u *regnode __ARGS((int));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000661#ifdef FEAT_MBYTE
662static int use_multibytecode __ARGS((int c));
663#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664static int prog_magic_wrong __ARGS((void));
665static char_u *regnext __ARGS((char_u *));
666static void regc __ARGS((int b));
667#ifdef FEAT_MBYTE
668static void regmbc __ARGS((int c));
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200669# define REGMBC(x) regmbc(x);
670# define CASEMBC(x) case x:
Bram Moolenaardf177f62005-02-22 08:39:57 +0000671#else
672# define regmbc(c) regc(c)
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200673# define REGMBC(x)
674# define CASEMBC(x)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675#endif
676static void reginsert __ARGS((int, char_u *));
677static void reginsert_limits __ARGS((int, long, long, char_u *));
678static char_u *re_put_long __ARGS((char_u *pr, long_u val));
679static int read_limits __ARGS((long *, long *));
680static void regtail __ARGS((char_u *, char_u *));
681static void regoptail __ARGS((char_u *, char_u *));
682
683/*
684 * Return TRUE if compiled regular expression "prog" can match a line break.
685 */
686 int
687re_multiline(prog)
688 regprog_T *prog;
689{
690 return (prog->regflags & RF_HASNL);
691}
692
693/*
694 * Return TRUE if compiled regular expression "prog" looks before the start
695 * position (pattern contains "\@<=" or "\@<!").
696 */
697 int
698re_lookbehind(prog)
699 regprog_T *prog;
700{
701 return (prog->regflags & RF_LOOKBH);
702}
703
704/*
Bram Moolenaardf177f62005-02-22 08:39:57 +0000705 * Check for an equivalence class name "[=a=]". "pp" points to the '['.
706 * Returns a character representing the class. Zero means that no item was
707 * recognized. Otherwise "pp" is advanced to after the item.
708 */
709 static int
710get_equi_class(pp)
711 char_u **pp;
712{
713 int c;
714 int l = 1;
715 char_u *p = *pp;
716
717 if (p[1] == '=')
718 {
719#ifdef FEAT_MBYTE
720 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000721 l = (*mb_ptr2len)(p + 2);
Bram Moolenaardf177f62005-02-22 08:39:57 +0000722#endif
723 if (p[l + 2] == '=' && p[l + 3] == ']')
724 {
725#ifdef FEAT_MBYTE
726 if (has_mbyte)
727 c = mb_ptr2char(p + 2);
728 else
729#endif
730 c = p[2];
731 *pp += l + 4;
732 return c;
733 }
734 }
735 return 0;
736}
737
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200738#ifdef EBCDIC
739/*
740 * Table for equivalence class "c". (IBM-1047)
741 */
742char *EQUIVAL_CLASS_C[16] = {
743 "A\x62\x63\x64\x65\x66\x67",
744 "C\x68",
745 "E\x71\x72\x73\x74",
746 "I\x75\x76\x77\x78",
747 "N\x69",
748 "O\xEB\xEC\xED\xEE\xEF",
749 "U\xFB\xFC\xFD\xFE",
750 "Y\xBA",
751 "a\x42\x43\x44\x45\x46\x47",
752 "c\x48",
753 "e\x51\x52\x53\x54",
754 "i\x55\x56\x57\x58",
755 "n\x49",
756 "o\xCB\xCC\xCD\xCE\xCF",
757 "u\xDB\xDC\xDD\xDE",
758 "y\x8D\xDF",
759};
760#endif
761
Bram Moolenaardf177f62005-02-22 08:39:57 +0000762/*
763 * Produce the bytes for equivalence class "c".
764 * Currently only handles latin1, latin9 and utf-8.
765 */
766 static void
767reg_equi_class(c)
768 int c;
769{
770#ifdef FEAT_MBYTE
771 if (enc_utf8 || STRCMP(p_enc, "latin1") == 0
Bram Moolenaar78622822005-08-23 21:00:13 +0000772 || STRCMP(p_enc, "iso-8859-15") == 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000773#endif
774 {
Bram Moolenaar2c704a72010-06-03 21:17:25 +0200775#ifdef EBCDIC
776 int i;
777
778 /* This might be slower than switch/case below. */
779 for (i = 0; i < 16; i++)
780 {
781 if (vim_strchr(EQUIVAL_CLASS_C[i], c) != NULL)
782 {
783 char *p = EQUIVAL_CLASS_C[i];
784
785 while (*p != 0)
786 regmbc(*p++);
787 return;
788 }
789 }
790#else
Bram Moolenaardf177f62005-02-22 08:39:57 +0000791 switch (c)
792 {
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000793 case 'A': case '\300': case '\301': case '\302':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200794 CASEMBC(0x100) CASEMBC(0x102) CASEMBC(0x104) CASEMBC(0x1cd)
795 CASEMBC(0x1de) CASEMBC(0x1e0) CASEMBC(0x1ea2)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000796 case '\303': case '\304': case '\305':
797 regmbc('A'); regmbc('\300'); regmbc('\301');
798 regmbc('\302'); regmbc('\303'); regmbc('\304');
799 regmbc('\305');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200800 REGMBC(0x100) REGMBC(0x102) REGMBC(0x104)
801 REGMBC(0x1cd) REGMBC(0x1de) REGMBC(0x1e0)
802 REGMBC(0x1ea2)
803 return;
804 case 'B': CASEMBC(0x1e02) CASEMBC(0x1e06)
805 regmbc('B'); REGMBC(0x1e02) REGMBC(0x1e06)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000806 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000807 case 'C': case '\307':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200808 CASEMBC(0x106) CASEMBC(0x108) CASEMBC(0x10a) CASEMBC(0x10c)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000809 regmbc('C'); regmbc('\307');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200810 REGMBC(0x106) REGMBC(0x108) REGMBC(0x10a)
811 REGMBC(0x10c)
812 return;
813 case 'D': CASEMBC(0x10e) CASEMBC(0x110) CASEMBC(0x1e0a)
814 CASEMBC(0x1e0e) CASEMBC(0x1e10)
815 regmbc('D'); REGMBC(0x10e) REGMBC(0x110)
816 REGMBC(0x1e0a) REGMBC(0x1e0e) REGMBC(0x1e10)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000817 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000818 case 'E': case '\310': case '\311': case '\312': case '\313':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200819 CASEMBC(0x112) CASEMBC(0x114) CASEMBC(0x116) CASEMBC(0x118)
820 CASEMBC(0x11a) CASEMBC(0x1eba) CASEMBC(0x1ebc)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000821 regmbc('E'); regmbc('\310'); regmbc('\311');
822 regmbc('\312'); regmbc('\313');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200823 REGMBC(0x112) REGMBC(0x114) REGMBC(0x116)
824 REGMBC(0x118) REGMBC(0x11a) REGMBC(0x1eba)
825 REGMBC(0x1ebc)
826 return;
827 case 'F': CASEMBC(0x1e1e)
828 regmbc('F'); REGMBC(0x1e1e)
829 return;
830 case 'G': CASEMBC(0x11c) CASEMBC(0x11e) CASEMBC(0x120)
831 CASEMBC(0x122) CASEMBC(0x1e4) CASEMBC(0x1e6) CASEMBC(0x1f4)
832 CASEMBC(0x1e20)
833 regmbc('G'); REGMBC(0x11c) REGMBC(0x11e)
834 REGMBC(0x120) REGMBC(0x122) REGMBC(0x1e4)
835 REGMBC(0x1e6) REGMBC(0x1f4) REGMBC(0x1e20)
836 return;
837 case 'H': CASEMBC(0x124) CASEMBC(0x126) CASEMBC(0x1e22)
838 CASEMBC(0x1e26) CASEMBC(0x1e28)
839 regmbc('H'); REGMBC(0x124) REGMBC(0x126)
840 REGMBC(0x1e22) REGMBC(0x1e26) REGMBC(0x1e28)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000841 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000842 case 'I': case '\314': case '\315': case '\316': case '\317':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200843 CASEMBC(0x128) CASEMBC(0x12a) CASEMBC(0x12c) CASEMBC(0x12e)
844 CASEMBC(0x130) CASEMBC(0x1cf) CASEMBC(0x1ec8)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000845 regmbc('I'); regmbc('\314'); regmbc('\315');
846 regmbc('\316'); regmbc('\317');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200847 REGMBC(0x128) REGMBC(0x12a) REGMBC(0x12c)
848 REGMBC(0x12e) REGMBC(0x130) REGMBC(0x1cf)
849 REGMBC(0x1ec8)
850 return;
851 case 'J': CASEMBC(0x134)
852 regmbc('J'); REGMBC(0x134)
853 return;
854 case 'K': CASEMBC(0x136) CASEMBC(0x1e8) CASEMBC(0x1e30)
855 CASEMBC(0x1e34)
856 regmbc('K'); REGMBC(0x136) REGMBC(0x1e8)
857 REGMBC(0x1e30) REGMBC(0x1e34)
858 return;
859 case 'L': CASEMBC(0x139) CASEMBC(0x13b) CASEMBC(0x13d)
860 CASEMBC(0x13f) CASEMBC(0x141) CASEMBC(0x1e3a)
861 regmbc('L'); REGMBC(0x139) REGMBC(0x13b)
862 REGMBC(0x13d) REGMBC(0x13f) REGMBC(0x141)
863 REGMBC(0x1e3a)
864 return;
865 case 'M': CASEMBC(0x1e3e) CASEMBC(0x1e40)
866 regmbc('M'); REGMBC(0x1e3e) REGMBC(0x1e40)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000867 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000868 case 'N': case '\321':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200869 CASEMBC(0x143) CASEMBC(0x145) CASEMBC(0x147) CASEMBC(0x1e44)
870 CASEMBC(0x1e48)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000871 regmbc('N'); regmbc('\321');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200872 REGMBC(0x143) REGMBC(0x145) REGMBC(0x147)
873 REGMBC(0x1e44) REGMBC(0x1e48)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000874 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000875 case 'O': case '\322': case '\323': case '\324': case '\325':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200876 case '\326': case '\330':
877 CASEMBC(0x14c) CASEMBC(0x14e) CASEMBC(0x150) CASEMBC(0x1a0)
878 CASEMBC(0x1d1) CASEMBC(0x1ea) CASEMBC(0x1ec) CASEMBC(0x1ece)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000879 regmbc('O'); regmbc('\322'); regmbc('\323');
880 regmbc('\324'); regmbc('\325'); regmbc('\326');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200881 regmbc('\330');
882 REGMBC(0x14c) REGMBC(0x14e) REGMBC(0x150)
883 REGMBC(0x1a0) REGMBC(0x1d1) REGMBC(0x1ea)
884 REGMBC(0x1ec) REGMBC(0x1ece)
885 return;
886 case 'P': case 0x1e54: case 0x1e56:
887 regmbc('P'); REGMBC(0x1e54) REGMBC(0x1e56)
888 return;
889 case 'R': CASEMBC(0x154) CASEMBC(0x156) CASEMBC(0x158)
890 CASEMBC(0x1e58) CASEMBC(0x1e5e)
891 regmbc('R'); REGMBC(0x154) REGMBC(0x156) REGMBC(0x158)
892 REGMBC(0x1e58) REGMBC(0x1e5e)
893 return;
894 case 'S': CASEMBC(0x15a) CASEMBC(0x15c) CASEMBC(0x15e)
895 CASEMBC(0x160) CASEMBC(0x1e60)
896 regmbc('S'); REGMBC(0x15a) REGMBC(0x15c)
897 REGMBC(0x15e) REGMBC(0x160) REGMBC(0x1e60)
898 return;
899 case 'T': CASEMBC(0x162) CASEMBC(0x164) CASEMBC(0x166)
900 CASEMBC(0x1e6a) CASEMBC(0x1e6e)
901 regmbc('T'); REGMBC(0x162) REGMBC(0x164)
902 REGMBC(0x166) REGMBC(0x1e6a) REGMBC(0x1e6e)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000903 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000904 case 'U': case '\331': case '\332': case '\333': case '\334':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200905 CASEMBC(0x168) CASEMBC(0x16a) CASEMBC(0x16c) CASEMBC(0x16e)
906 CASEMBC(0x170) CASEMBC(0x172) CASEMBC(0x1af) CASEMBC(0x1d3)
907 CASEMBC(0x1ee6)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000908 regmbc('U'); regmbc('\331'); regmbc('\332');
909 regmbc('\333'); regmbc('\334');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200910 REGMBC(0x168) REGMBC(0x16a) REGMBC(0x16c)
911 REGMBC(0x16e) REGMBC(0x170) REGMBC(0x172)
912 REGMBC(0x1af) REGMBC(0x1d3) REGMBC(0x1ee6)
913 return;
914 case 'V': CASEMBC(0x1e7c)
915 regmbc('V'); REGMBC(0x1e7c)
916 return;
917 case 'W': CASEMBC(0x174) CASEMBC(0x1e80) CASEMBC(0x1e82)
918 CASEMBC(0x1e84) CASEMBC(0x1e86)
919 regmbc('W'); REGMBC(0x174) REGMBC(0x1e80)
920 REGMBC(0x1e82) REGMBC(0x1e84) REGMBC(0x1e86)
921 return;
922 case 'X': CASEMBC(0x1e8a) CASEMBC(0x1e8c)
923 regmbc('X'); REGMBC(0x1e8a) REGMBC(0x1e8c)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000924 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000925 case 'Y': case '\335':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200926 CASEMBC(0x176) CASEMBC(0x178) CASEMBC(0x1e8e) CASEMBC(0x1ef2)
927 CASEMBC(0x1ef6) CASEMBC(0x1ef8)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000928 regmbc('Y'); regmbc('\335');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200929 REGMBC(0x176) REGMBC(0x178) REGMBC(0x1e8e)
930 REGMBC(0x1ef2) REGMBC(0x1ef6) REGMBC(0x1ef8)
931 return;
932 case 'Z': CASEMBC(0x179) CASEMBC(0x17b) CASEMBC(0x17d)
933 CASEMBC(0x1b5) CASEMBC(0x1e90) CASEMBC(0x1e94)
934 regmbc('Z'); REGMBC(0x179) REGMBC(0x17b)
935 REGMBC(0x17d) REGMBC(0x1b5) REGMBC(0x1e90)
936 REGMBC(0x1e94)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000937 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000938 case 'a': case '\340': case '\341': case '\342':
939 case '\343': case '\344': case '\345':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200940 CASEMBC(0x101) CASEMBC(0x103) CASEMBC(0x105) CASEMBC(0x1ce)
941 CASEMBC(0x1df) CASEMBC(0x1e1) CASEMBC(0x1ea3)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000942 regmbc('a'); regmbc('\340'); regmbc('\341');
943 regmbc('\342'); regmbc('\343'); regmbc('\344');
944 regmbc('\345');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200945 REGMBC(0x101) REGMBC(0x103) REGMBC(0x105)
946 REGMBC(0x1ce) REGMBC(0x1df) REGMBC(0x1e1)
947 REGMBC(0x1ea3)
948 return;
949 case 'b': CASEMBC(0x1e03) CASEMBC(0x1e07)
950 regmbc('b'); REGMBC(0x1e03) REGMBC(0x1e07)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000951 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000952 case 'c': case '\347':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200953 CASEMBC(0x107) CASEMBC(0x109) CASEMBC(0x10b) CASEMBC(0x10d)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000954 regmbc('c'); regmbc('\347');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200955 REGMBC(0x107) REGMBC(0x109) REGMBC(0x10b)
956 REGMBC(0x10d)
957 return;
958 case 'd': CASEMBC(0x10f) CASEMBC(0x111) CASEMBC(0x1d0b)
959 CASEMBC(0x1e11)
960 regmbc('d'); REGMBC(0x10f) REGMBC(0x111)
961 REGMBC(0x1e0b) REGMBC(0x01e0f) REGMBC(0x1e11)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000962 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000963 case 'e': case '\350': case '\351': case '\352': case '\353':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200964 CASEMBC(0x113) CASEMBC(0x115) CASEMBC(0x117) CASEMBC(0x119)
965 CASEMBC(0x11b) CASEMBC(0x1ebb) CASEMBC(0x1ebd)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000966 regmbc('e'); regmbc('\350'); regmbc('\351');
967 regmbc('\352'); regmbc('\353');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200968 REGMBC(0x113) REGMBC(0x115) REGMBC(0x117)
969 REGMBC(0x119) REGMBC(0x11b) REGMBC(0x1ebb)
970 REGMBC(0x1ebd)
971 return;
972 case 'f': CASEMBC(0x1e1f)
973 regmbc('f'); REGMBC(0x1e1f)
974 return;
975 case 'g': CASEMBC(0x11d) CASEMBC(0x11f) CASEMBC(0x121)
976 CASEMBC(0x123) CASEMBC(0x1e5) CASEMBC(0x1e7) CASEMBC(0x1f5)
977 CASEMBC(0x1e21)
978 regmbc('g'); REGMBC(0x11d) REGMBC(0x11f)
979 REGMBC(0x121) REGMBC(0x123) REGMBC(0x1e5)
980 REGMBC(0x1e7) REGMBC(0x1f5) REGMBC(0x1e21)
981 return;
982 case 'h': CASEMBC(0x125) CASEMBC(0x127) CASEMBC(0x1e23)
983 CASEMBC(0x1e27) CASEMBC(0x1e29) CASEMBC(0x1e96)
984 regmbc('h'); REGMBC(0x125) REGMBC(0x127)
985 REGMBC(0x1e23) REGMBC(0x1e27) REGMBC(0x1e29)
986 REGMBC(0x1e96)
Bram Moolenaardf177f62005-02-22 08:39:57 +0000987 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000988 case 'i': case '\354': case '\355': case '\356': case '\357':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200989 CASEMBC(0x129) CASEMBC(0x12b) CASEMBC(0x12d) CASEMBC(0x12f)
990 CASEMBC(0x1d0) CASEMBC(0x1ec9)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000991 regmbc('i'); regmbc('\354'); regmbc('\355');
992 regmbc('\356'); regmbc('\357');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +0200993 REGMBC(0x129) REGMBC(0x12b) REGMBC(0x12d)
994 REGMBC(0x12f) REGMBC(0x1d0) REGMBC(0x1ec9)
995 return;
996 case 'j': CASEMBC(0x135) CASEMBC(0x1f0)
997 regmbc('j'); REGMBC(0x135) REGMBC(0x1f0)
998 return;
999 case 'k': CASEMBC(0x137) CASEMBC(0x1e9) CASEMBC(0x1e31)
1000 CASEMBC(0x1e35)
1001 regmbc('k'); REGMBC(0x137) REGMBC(0x1e9)
1002 REGMBC(0x1e31) REGMBC(0x1e35)
1003 return;
1004 case 'l': CASEMBC(0x13a) CASEMBC(0x13c) CASEMBC(0x13e)
1005 CASEMBC(0x140) CASEMBC(0x142) CASEMBC(0x1e3b)
1006 regmbc('l'); REGMBC(0x13a) REGMBC(0x13c)
1007 REGMBC(0x13e) REGMBC(0x140) REGMBC(0x142)
1008 REGMBC(0x1e3b)
1009 return;
1010 case 'm': CASEMBC(0x1e3f) CASEMBC(0x1e41)
1011 regmbc('m'); REGMBC(0x1e3f) REGMBC(0x1e41)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001012 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001013 case 'n': case '\361':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001014 CASEMBC(0x144) CASEMBC(0x146) CASEMBC(0x148) CASEMBC(0x149)
1015 CASEMBC(0x1e45) CASEMBC(0x1e49)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001016 regmbc('n'); regmbc('\361');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001017 REGMBC(0x144) REGMBC(0x146) REGMBC(0x148)
1018 REGMBC(0x149) REGMBC(0x1e45) REGMBC(0x1e49)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001019 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001020 case 'o': case '\362': case '\363': case '\364': case '\365':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001021 case '\366': case '\370':
1022 CASEMBC(0x14d) CASEMBC(0x14f) CASEMBC(0x151) CASEMBC(0x1a1)
1023 CASEMBC(0x1d2) CASEMBC(0x1eb) CASEMBC(0x1ed) CASEMBC(0x1ecf)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001024 regmbc('o'); regmbc('\362'); regmbc('\363');
1025 regmbc('\364'); regmbc('\365'); regmbc('\366');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001026 regmbc('\370');
1027 REGMBC(0x14d) REGMBC(0x14f) REGMBC(0x151)
1028 REGMBC(0x1a1) REGMBC(0x1d2) REGMBC(0x1eb)
1029 REGMBC(0x1ed) REGMBC(0x1ecf)
1030 return;
1031 case 'p': CASEMBC(0x1e55) CASEMBC(0x1e57)
1032 regmbc('p'); REGMBC(0x1e55) REGMBC(0x1e57)
1033 return;
1034 case 'r': CASEMBC(0x155) CASEMBC(0x157) CASEMBC(0x159)
1035 CASEMBC(0x1e59) CASEMBC(0x1e5f)
1036 regmbc('r'); REGMBC(0x155) REGMBC(0x157) REGMBC(0x159)
1037 REGMBC(0x1e59) REGMBC(0x1e5f)
1038 return;
1039 case 's': CASEMBC(0x15b) CASEMBC(0x15d) CASEMBC(0x15f)
1040 CASEMBC(0x161) CASEMBC(0x1e61)
1041 regmbc('s'); REGMBC(0x15b) REGMBC(0x15d)
1042 REGMBC(0x15f) REGMBC(0x161) REGMBC(0x1e61)
1043 return;
1044 case 't': CASEMBC(0x163) CASEMBC(0x165) CASEMBC(0x167)
1045 CASEMBC(0x1e6b) CASEMBC(0x1e6f) CASEMBC(0x1e97)
1046 regmbc('t'); REGMBC(0x163) REGMBC(0x165) REGMBC(0x167)
1047 REGMBC(0x1e6b) REGMBC(0x1e6f) REGMBC(0x1e97)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001048 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001049 case 'u': case '\371': case '\372': case '\373': case '\374':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001050 CASEMBC(0x169) CASEMBC(0x16b) CASEMBC(0x16d) CASEMBC(0x16f)
1051 CASEMBC(0x171) CASEMBC(0x173) CASEMBC(0x1b0) CASEMBC(0x1d4)
1052 CASEMBC(0x1ee7)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001053 regmbc('u'); regmbc('\371'); regmbc('\372');
1054 regmbc('\373'); regmbc('\374');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001055 REGMBC(0x169) REGMBC(0x16b) REGMBC(0x16d)
1056 REGMBC(0x16f) REGMBC(0x171) REGMBC(0x173)
1057 REGMBC(0x1b0) REGMBC(0x1d4) REGMBC(0x1ee7)
1058 return;
1059 case 'v': CASEMBC(0x1e7d)
1060 regmbc('v'); REGMBC(0x1e7d)
1061 return;
1062 case 'w': CASEMBC(0x175) CASEMBC(0x1e81) CASEMBC(0x1e83)
1063 CASEMBC(0x1e85) CASEMBC(0x1e87) CASEMBC(0x1e98)
1064 regmbc('w'); REGMBC(0x175) REGMBC(0x1e81)
1065 REGMBC(0x1e83) REGMBC(0x1e85) REGMBC(0x1e87)
1066 REGMBC(0x1e98)
1067 return;
1068 case 'x': CASEMBC(0x1e8b) CASEMBC(0x1e8d)
1069 regmbc('x'); REGMBC(0x1e8b) REGMBC(0x1e8d)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001070 return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001071 case 'y': case '\375': case '\377':
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001072 CASEMBC(0x177) CASEMBC(0x1e8f) CASEMBC(0x1e99)
1073 CASEMBC(0x1ef3) CASEMBC(0x1ef7) CASEMBC(0x1ef9)
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001074 regmbc('y'); regmbc('\375'); regmbc('\377');
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02001075 REGMBC(0x177) REGMBC(0x1e8f) REGMBC(0x1e99)
1076 REGMBC(0x1ef3) REGMBC(0x1ef7) REGMBC(0x1ef9)
1077 return;
1078 case 'z': CASEMBC(0x17a) CASEMBC(0x17c) CASEMBC(0x17e)
1079 CASEMBC(0x1b6) CASEMBC(0x1e91) CASEMBC(0x1e95)
1080 regmbc('z'); REGMBC(0x17a) REGMBC(0x17c)
1081 REGMBC(0x17e) REGMBC(0x1b6) REGMBC(0x1e91)
1082 REGMBC(0x1e95)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001083 return;
1084 }
Bram Moolenaar2c704a72010-06-03 21:17:25 +02001085#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00001086 }
1087 regmbc(c);
1088}
1089
1090/*
1091 * Check for a collating element "[.a.]". "pp" points to the '['.
1092 * Returns a character. Zero means that no item was recognized. Otherwise
1093 * "pp" is advanced to after the item.
1094 * Currently only single characters are recognized!
1095 */
1096 static int
1097get_coll_element(pp)
1098 char_u **pp;
1099{
1100 int c;
1101 int l = 1;
1102 char_u *p = *pp;
1103
1104 if (p[1] == '.')
1105 {
1106#ifdef FEAT_MBYTE
1107 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001108 l = (*mb_ptr2len)(p + 2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00001109#endif
1110 if (p[l + 2] == '.' && p[l + 3] == ']')
1111 {
1112#ifdef FEAT_MBYTE
1113 if (has_mbyte)
1114 c = mb_ptr2char(p + 2);
1115 else
1116#endif
1117 c = p[2];
1118 *pp += l + 4;
1119 return c;
1120 }
1121 }
1122 return 0;
1123}
1124
1125
1126/*
1127 * Skip over a "[]" range.
1128 * "p" must point to the character after the '['.
1129 * The returned pointer is on the matching ']', or the terminating NUL.
1130 */
1131 static char_u *
1132skip_anyof(p)
1133 char_u *p;
1134{
1135 int cpo_lit; /* 'cpoptions' contains 'l' flag */
1136 int cpo_bsl; /* 'cpoptions' contains '\' flag */
1137#ifdef FEAT_MBYTE
1138 int l;
1139#endif
1140
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00001141 cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL;
1142 cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001143
1144 if (*p == '^') /* Complement of range. */
1145 ++p;
1146 if (*p == ']' || *p == '-')
1147 ++p;
1148 while (*p != NUL && *p != ']')
1149 {
1150#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00001151 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001152 p += l;
1153 else
1154#endif
1155 if (*p == '-')
1156 {
1157 ++p;
1158 if (*p != ']' && *p != NUL)
1159 mb_ptr_adv(p);
1160 }
1161 else if (*p == '\\'
1162 && !cpo_bsl
1163 && (vim_strchr(REGEXP_INRANGE, p[1]) != NULL
1164 || (!cpo_lit && vim_strchr(REGEXP_ABBR, p[1]) != NULL)))
1165 p += 2;
1166 else if (*p == '[')
1167 {
1168 if (get_char_class(&p) == CLASS_NONE
1169 && get_equi_class(&p) == 0
1170 && get_coll_element(&p) == 0)
1171 ++p; /* It was not a class name */
1172 }
1173 else
1174 ++p;
1175 }
1176
1177 return p;
1178}
1179
1180/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 * Skip past regular expression.
Bram Moolenaar748bf032005-02-02 23:04:36 +00001182 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 * Take care of characters with a backslash in front of it.
1184 * Skip strings inside [ and ].
1185 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the
1186 * expression and change "\?" to "?". If "*newp" is not NULL the expression
1187 * is changed in-place.
1188 */
1189 char_u *
1190skip_regexp(startp, dirc, magic, newp)
1191 char_u *startp;
1192 int dirc;
1193 int magic;
1194 char_u **newp;
1195{
1196 int mymagic;
1197 char_u *p = startp;
1198
1199 if (magic)
1200 mymagic = MAGIC_ON;
1201 else
1202 mymagic = MAGIC_OFF;
1203
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001204 for (; p[0] != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 {
1206 if (p[0] == dirc) /* found end of regexp */
1207 break;
1208 if ((p[0] == '[' && mymagic >= MAGIC_ON)
1209 || (p[0] == '\\' && p[1] == '[' && mymagic <= MAGIC_OFF))
1210 {
1211 p = skip_anyof(p + 1);
1212 if (p[0] == NUL)
1213 break;
1214 }
1215 else if (p[0] == '\\' && p[1] != NUL)
1216 {
1217 if (dirc == '?' && newp != NULL && p[1] == '?')
1218 {
1219 /* change "\?" to "?", make a copy first. */
1220 if (*newp == NULL)
1221 {
1222 *newp = vim_strsave(startp);
1223 if (*newp != NULL)
1224 p = *newp + (p - startp);
1225 }
1226 if (*newp != NULL)
Bram Moolenaar446cb832008-06-24 21:56:24 +00001227 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 else
1229 ++p;
1230 }
1231 else
1232 ++p; /* skip next character */
1233 if (*p == 'v')
1234 mymagic = MAGIC_ALL;
1235 else if (*p == 'V')
1236 mymagic = MAGIC_NONE;
1237 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 }
1239 return p;
1240}
1241
1242/*
Bram Moolenaar86b68352004-12-27 21:59:20 +00001243 * vim_regcomp() - compile a regular expression into internal code
1244 * Returns the program in allocated space. Returns NULL for an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 *
1246 * We can't allocate space until we know how big the compiled form will be,
1247 * but we can't compile it (and thus know how big it is) until we've got a
1248 * place to put the code. So we cheat: we compile it twice, once with code
1249 * generation turned off and size counting turned on, and once "for real".
1250 * This also means that we don't allocate space until we are sure that the
1251 * thing really will compile successfully, and we never have to move the
1252 * code and thus invalidate pointers into it. (Note that it has to be in
1253 * one piece because vim_free() must be able to free it all.)
1254 *
1255 * Whether upper/lower case is to be ignored is decided when executing the
1256 * program, it does not matter here.
1257 *
1258 * Beware that the optimization-preparation code in here knows about some
1259 * of the structure of the compiled regexp.
1260 * "re_flags": RE_MAGIC and/or RE_STRING.
1261 */
1262 regprog_T *
1263vim_regcomp(expr, re_flags)
1264 char_u *expr;
1265 int re_flags;
1266{
1267 regprog_T *r;
1268 char_u *scan;
1269 char_u *longest;
1270 int len;
1271 int flags;
1272
1273 if (expr == NULL)
1274 EMSG_RET_NULL(_(e_null));
1275
1276 init_class_tab();
1277
1278 /*
1279 * First pass: determine size, legality.
1280 */
1281 regcomp_start(expr, re_flags);
1282 regcode = JUST_CALC_SIZE;
1283 regc(REGMAGIC);
1284 if (reg(REG_NOPAREN, &flags) == NULL)
1285 return NULL;
1286
1287 /* Small enough for pointer-storage convention? */
1288#ifdef SMALL_MALLOC /* 16 bit storage allocation */
1289 if (regsize >= 65536L - 256L)
1290 EMSG_RET_NULL(_("E339: Pattern too long"));
1291#endif
1292
1293 /* Allocate space. */
1294 r = (regprog_T *)lalloc(sizeof(regprog_T) + regsize, TRUE);
1295 if (r == NULL)
1296 return NULL;
1297
1298 /*
1299 * Second pass: emit code.
1300 */
1301 regcomp_start(expr, re_flags);
1302 regcode = r->program;
1303 regc(REGMAGIC);
Bram Moolenaard3005802009-11-25 17:21:32 +00001304 if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 {
1306 vim_free(r);
Bram Moolenaard3005802009-11-25 17:21:32 +00001307 if (reg_toolong)
1308 EMSG_RET_NULL(_("E339: Pattern too long"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 return NULL;
1310 }
1311
1312 /* Dig out information for optimizations. */
1313 r->regstart = NUL; /* Worst-case defaults. */
1314 r->reganch = 0;
1315 r->regmust = NULL;
1316 r->regmlen = 0;
1317 r->regflags = regflags;
1318 if (flags & HASNL)
1319 r->regflags |= RF_HASNL;
1320 if (flags & HASLOOKBH)
1321 r->regflags |= RF_LOOKBH;
1322#ifdef FEAT_SYN_HL
1323 /* Remember whether this pattern has any \z specials in it. */
1324 r->reghasz = re_has_z;
1325#endif
1326 scan = r->program + 1; /* First BRANCH. */
1327 if (OP(regnext(scan)) == END) /* Only one top-level choice. */
1328 {
1329 scan = OPERAND(scan);
1330
1331 /* Starting-point info. */
1332 if (OP(scan) == BOL || OP(scan) == RE_BOF)
1333 {
1334 r->reganch++;
1335 scan = regnext(scan);
1336 }
1337
1338 if (OP(scan) == EXACTLY)
1339 {
1340#ifdef FEAT_MBYTE
1341 if (has_mbyte)
1342 r->regstart = (*mb_ptr2char)(OPERAND(scan));
1343 else
1344#endif
1345 r->regstart = *OPERAND(scan);
1346 }
1347 else if ((OP(scan) == BOW
1348 || OP(scan) == EOW
1349 || OP(scan) == NOTHING
1350 || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN
1351 || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE)
1352 && OP(regnext(scan)) == EXACTLY)
1353 {
1354#ifdef FEAT_MBYTE
1355 if (has_mbyte)
1356 r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan)));
1357 else
1358#endif
1359 r->regstart = *OPERAND(regnext(scan));
1360 }
1361
1362 /*
1363 * If there's something expensive in the r.e., find the longest
1364 * literal string that must appear and make it the regmust. Resolve
1365 * ties in favor of later strings, since the regstart check works
1366 * with the beginning of the r.e. and avoiding duplication
1367 * strengthens checking. Not a strong reason, but sufficient in the
1368 * absence of others.
1369 */
1370 /*
1371 * When the r.e. starts with BOW, it is faster to look for a regmust
1372 * first. Used a lot for "#" and "*" commands. (Added by mool).
1373 */
1374 if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW)
1375 && !(flags & HASNL))
1376 {
1377 longest = NULL;
1378 len = 0;
1379 for (; scan != NULL; scan = regnext(scan))
1380 if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len)
1381 {
1382 longest = OPERAND(scan);
1383 len = (int)STRLEN(OPERAND(scan));
1384 }
1385 r->regmust = longest;
1386 r->regmlen = len;
1387 }
1388 }
1389#ifdef DEBUG
1390 regdump(expr, r);
1391#endif
1392 return r;
1393}
1394
1395/*
1396 * Setup to parse the regexp. Used once to get the length and once to do it.
1397 */
1398 static void
1399regcomp_start(expr, re_flags)
1400 char_u *expr;
1401 int re_flags; /* see vim_regcomp() */
1402{
1403 initchr(expr);
1404 if (re_flags & RE_MAGIC)
1405 reg_magic = MAGIC_ON;
1406 else
1407 reg_magic = MAGIC_OFF;
1408 reg_string = (re_flags & RE_STRING);
Bram Moolenaarae5bce12005-08-15 21:41:48 +00001409 reg_strict = (re_flags & RE_STRICT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410
1411 num_complex_braces = 0;
1412 regnpar = 1;
1413 vim_memset(had_endbrace, 0, sizeof(had_endbrace));
1414#ifdef FEAT_SYN_HL
1415 regnzpar = 1;
1416 re_has_z = 0;
1417#endif
1418 regsize = 0L;
Bram Moolenaard3005802009-11-25 17:21:32 +00001419 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 regflags = 0;
1421#if defined(FEAT_SYN_HL) || defined(PROTO)
1422 had_eol = FALSE;
1423#endif
1424}
1425
1426#if defined(FEAT_SYN_HL) || defined(PROTO)
1427/*
1428 * Check if during the previous call to vim_regcomp the EOL item "$" has been
1429 * found. This is messy, but it works fine.
1430 */
1431 int
1432vim_regcomp_had_eol()
1433{
1434 return had_eol;
1435}
1436#endif
1437
1438/*
1439 * reg - regular expression, i.e. main body or parenthesized thing
1440 *
1441 * Caller must absorb opening parenthesis.
1442 *
1443 * Combining parenthesis handling with the base level of regular expression
1444 * is a trifle forced, but the need to tie the tails of the branches to what
1445 * follows makes it hard to avoid.
1446 */
1447 static char_u *
1448reg(paren, flagp)
1449 int paren; /* REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN */
1450 int *flagp;
1451{
1452 char_u *ret;
1453 char_u *br;
1454 char_u *ender;
1455 int parno = 0;
1456 int flags;
1457
1458 *flagp = HASWIDTH; /* Tentatively. */
1459
1460#ifdef FEAT_SYN_HL
1461 if (paren == REG_ZPAREN)
1462 {
1463 /* Make a ZOPEN node. */
1464 if (regnzpar >= NSUBEXP)
1465 EMSG_RET_NULL(_("E50: Too many \\z("));
1466 parno = regnzpar;
1467 regnzpar++;
1468 ret = regnode(ZOPEN + parno);
1469 }
1470 else
1471#endif
1472 if (paren == REG_PAREN)
1473 {
1474 /* Make a MOPEN node. */
1475 if (regnpar >= NSUBEXP)
1476 EMSG_M_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL);
1477 parno = regnpar;
1478 ++regnpar;
1479 ret = regnode(MOPEN + parno);
1480 }
1481 else if (paren == REG_NPAREN)
1482 {
1483 /* Make a NOPEN node. */
1484 ret = regnode(NOPEN);
1485 }
1486 else
1487 ret = NULL;
1488
1489 /* Pick up the branches, linking them together. */
1490 br = regbranch(&flags);
1491 if (br == NULL)
1492 return NULL;
1493 if (ret != NULL)
1494 regtail(ret, br); /* [MZ]OPEN -> first. */
1495 else
1496 ret = br;
1497 /* If one of the branches can be zero-width, the whole thing can.
1498 * If one of the branches has * at start or matches a line-break, the
1499 * whole thing can. */
1500 if (!(flags & HASWIDTH))
1501 *flagp &= ~HASWIDTH;
1502 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH);
1503 while (peekchr() == Magic('|'))
1504 {
1505 skipchr();
1506 br = regbranch(&flags);
Bram Moolenaard3005802009-11-25 17:21:32 +00001507 if (br == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 return NULL;
1509 regtail(ret, br); /* BRANCH -> BRANCH. */
1510 if (!(flags & HASWIDTH))
1511 *flagp &= ~HASWIDTH;
1512 *flagp |= flags & (SPSTART | HASNL | HASLOOKBH);
1513 }
1514
1515 /* Make a closing node, and hook it on the end. */
1516 ender = regnode(
1517#ifdef FEAT_SYN_HL
1518 paren == REG_ZPAREN ? ZCLOSE + parno :
1519#endif
1520 paren == REG_PAREN ? MCLOSE + parno :
1521 paren == REG_NPAREN ? NCLOSE : END);
1522 regtail(ret, ender);
1523
1524 /* Hook the tails of the branches to the closing node. */
1525 for (br = ret; br != NULL; br = regnext(br))
1526 regoptail(br, ender);
1527
1528 /* Check for proper termination. */
1529 if (paren != REG_NOPAREN && getchr() != Magic(')'))
1530 {
1531#ifdef FEAT_SYN_HL
1532 if (paren == REG_ZPAREN)
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001533 EMSG_RET_NULL(_("E52: Unmatched \\z("));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 else
1535#endif
1536 if (paren == REG_NPAREN)
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001537 EMSG_M_RET_NULL(_("E53: Unmatched %s%%("), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 else
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001539 EMSG_M_RET_NULL(_("E54: Unmatched %s("), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 }
1541 else if (paren == REG_NOPAREN && peekchr() != NUL)
1542 {
1543 if (curchr == Magic(')'))
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001544 EMSG_M_RET_NULL(_("E55: Unmatched %s)"), reg_magic == MAGIC_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 else
Bram Moolenaar45eeb132005-06-06 21:59:07 +00001546 EMSG_RET_NULL(_(e_trailing)); /* "Can't happen". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 /* NOTREACHED */
1548 }
1549 /*
1550 * Here we set the flag allowing back references to this set of
1551 * parentheses.
1552 */
1553 if (paren == REG_PAREN)
1554 had_endbrace[parno] = TRUE; /* have seen the close paren */
1555 return ret;
1556}
1557
1558/*
Bram Moolenaard4210772008-01-02 14:35:30 +00001559 * Handle one alternative of an | operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 * Implements the & operator.
1561 */
1562 static char_u *
1563regbranch(flagp)
1564 int *flagp;
1565{
1566 char_u *ret;
1567 char_u *chain = NULL;
1568 char_u *latest;
1569 int flags;
1570
1571 *flagp = WORST | HASNL; /* Tentatively. */
1572
1573 ret = regnode(BRANCH);
1574 for (;;)
1575 {
1576 latest = regconcat(&flags);
1577 if (latest == NULL)
1578 return NULL;
1579 /* If one of the branches has width, the whole thing has. If one of
1580 * the branches anchors at start-of-line, the whole thing does.
1581 * If one of the branches uses look-behind, the whole thing does. */
1582 *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH);
1583 /* If one of the branches doesn't match a line-break, the whole thing
1584 * doesn't. */
1585 *flagp &= ~HASNL | (flags & HASNL);
1586 if (chain != NULL)
1587 regtail(chain, latest);
1588 if (peekchr() != Magic('&'))
1589 break;
1590 skipchr();
1591 regtail(latest, regnode(END)); /* operand ends */
Bram Moolenaard3005802009-11-25 17:21:32 +00001592 if (reg_toolong)
1593 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 reginsert(MATCH, latest);
1595 chain = latest;
1596 }
1597
1598 return ret;
1599}
1600
1601/*
Bram Moolenaard4210772008-01-02 14:35:30 +00001602 * Handle one alternative of an | or & operator.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 * Implements the concatenation operator.
1604 */
1605 static char_u *
1606regconcat(flagp)
1607 int *flagp;
1608{
1609 char_u *first = NULL;
1610 char_u *chain = NULL;
1611 char_u *latest;
1612 int flags;
1613 int cont = TRUE;
1614
1615 *flagp = WORST; /* Tentatively. */
1616
1617 while (cont)
1618 {
1619 switch (peekchr())
1620 {
1621 case NUL:
1622 case Magic('|'):
1623 case Magic('&'):
1624 case Magic(')'):
1625 cont = FALSE;
1626 break;
1627 case Magic('Z'):
1628#ifdef FEAT_MBYTE
1629 regflags |= RF_ICOMBINE;
1630#endif
1631 skipchr_keepstart();
1632 break;
1633 case Magic('c'):
1634 regflags |= RF_ICASE;
1635 skipchr_keepstart();
1636 break;
1637 case Magic('C'):
1638 regflags |= RF_NOICASE;
1639 skipchr_keepstart();
1640 break;
1641 case Magic('v'):
1642 reg_magic = MAGIC_ALL;
1643 skipchr_keepstart();
1644 curchr = -1;
1645 break;
1646 case Magic('m'):
1647 reg_magic = MAGIC_ON;
1648 skipchr_keepstart();
1649 curchr = -1;
1650 break;
1651 case Magic('M'):
1652 reg_magic = MAGIC_OFF;
1653 skipchr_keepstart();
1654 curchr = -1;
1655 break;
1656 case Magic('V'):
1657 reg_magic = MAGIC_NONE;
1658 skipchr_keepstart();
1659 curchr = -1;
1660 break;
1661 default:
1662 latest = regpiece(&flags);
Bram Moolenaard3005802009-11-25 17:21:32 +00001663 if (latest == NULL || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664 return NULL;
1665 *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH);
1666 if (chain == NULL) /* First piece. */
1667 *flagp |= flags & SPSTART;
1668 else
1669 regtail(chain, latest);
1670 chain = latest;
1671 if (first == NULL)
1672 first = latest;
1673 break;
1674 }
1675 }
1676 if (first == NULL) /* Loop ran zero times. */
1677 first = regnode(NOTHING);
1678 return first;
1679}
1680
1681/*
1682 * regpiece - something followed by possible [*+=]
1683 *
1684 * Note that the branching code sequences used for = and the general cases
1685 * of * and + are somewhat optimized: they use the same NOTHING node as
1686 * both the endmarker for their branch list and the body of the last branch.
1687 * It might seem that this node could be dispensed with entirely, but the
1688 * endmarker role is not redundant.
1689 */
1690 static char_u *
1691regpiece(flagp)
1692 int *flagp;
1693{
1694 char_u *ret;
1695 int op;
1696 char_u *next;
1697 int flags;
1698 long minval;
1699 long maxval;
1700
1701 ret = regatom(&flags);
1702 if (ret == NULL)
1703 return NULL;
1704
1705 op = peekchr();
1706 if (re_multi_type(op) == NOT_MULTI)
1707 {
1708 *flagp = flags;
1709 return ret;
1710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 /* default flags */
1712 *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH)));
1713
1714 skipchr();
1715 switch (op)
1716 {
1717 case Magic('*'):
1718 if (flags & SIMPLE)
1719 reginsert(STAR, ret);
1720 else
1721 {
1722 /* Emit x* as (x&|), where & means "self". */
1723 reginsert(BRANCH, ret); /* Either x */
1724 regoptail(ret, regnode(BACK)); /* and loop */
1725 regoptail(ret, ret); /* back */
1726 regtail(ret, regnode(BRANCH)); /* or */
1727 regtail(ret, regnode(NOTHING)); /* null. */
1728 }
1729 break;
1730
1731 case Magic('+'):
1732 if (flags & SIMPLE)
1733 reginsert(PLUS, ret);
1734 else
1735 {
1736 /* Emit x+ as x(&|), where & means "self". */
1737 next = regnode(BRANCH); /* Either */
1738 regtail(ret, next);
Bram Moolenaar582fd852005-03-28 20:58:01 +00001739 regtail(regnode(BACK), ret); /* loop back */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 regtail(next, regnode(BRANCH)); /* or */
1741 regtail(ret, regnode(NOTHING)); /* null. */
1742 }
1743 *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH)));
1744 break;
1745
1746 case Magic('@'):
1747 {
1748 int lop = END;
1749
1750 switch (no_Magic(getchr()))
1751 {
1752 case '=': lop = MATCH; break; /* \@= */
1753 case '!': lop = NOMATCH; break; /* \@! */
1754 case '>': lop = SUBPAT; break; /* \@> */
1755 case '<': switch (no_Magic(getchr()))
1756 {
1757 case '=': lop = BEHIND; break; /* \@<= */
1758 case '!': lop = NOBEHIND; break; /* \@<! */
1759 }
1760 }
1761 if (lop == END)
1762 EMSG_M_RET_NULL(_("E59: invalid character after %s@"),
1763 reg_magic == MAGIC_ALL);
1764 /* Look behind must match with behind_pos. */
1765 if (lop == BEHIND || lop == NOBEHIND)
1766 {
1767 regtail(ret, regnode(BHPOS));
1768 *flagp |= HASLOOKBH;
1769 }
1770 regtail(ret, regnode(END)); /* operand ends */
1771 reginsert(lop, ret);
1772 break;
1773 }
1774
1775 case Magic('?'):
1776 case Magic('='):
1777 /* Emit x= as (x|) */
1778 reginsert(BRANCH, ret); /* Either x */
1779 regtail(ret, regnode(BRANCH)); /* or */
1780 next = regnode(NOTHING); /* null. */
1781 regtail(ret, next);
1782 regoptail(ret, next);
1783 break;
1784
1785 case Magic('{'):
1786 if (!read_limits(&minval, &maxval))
1787 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 if (flags & SIMPLE)
1789 {
1790 reginsert(BRACE_SIMPLE, ret);
1791 reginsert_limits(BRACE_LIMITS, minval, maxval, ret);
1792 }
1793 else
1794 {
1795 if (num_complex_braces >= 10)
1796 EMSG_M_RET_NULL(_("E60: Too many complex %s{...}s"),
1797 reg_magic == MAGIC_ALL);
1798 reginsert(BRACE_COMPLEX + num_complex_braces, ret);
1799 regoptail(ret, regnode(BACK));
1800 regoptail(ret, ret);
1801 reginsert_limits(BRACE_LIMITS, minval, maxval, ret);
1802 ++num_complex_braces;
1803 }
1804 if (minval > 0 && maxval > 0)
1805 *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH)));
1806 break;
1807 }
1808 if (re_multi_type(peekchr()) != NOT_MULTI)
1809 {
1810 /* Can't have a multi follow a multi. */
1811 if (peekchr() == Magic('*'))
1812 sprintf((char *)IObuff, _("E61: Nested %s*"),
1813 reg_magic >= MAGIC_ON ? "" : "\\");
1814 else
1815 sprintf((char *)IObuff, _("E62: Nested %s%c"),
1816 reg_magic == MAGIC_ALL ? "" : "\\", no_Magic(peekchr()));
1817 EMSG_RET_NULL(IObuff);
1818 }
1819
1820 return ret;
1821}
1822
1823/*
1824 * regatom - the lowest level
1825 *
1826 * Optimization: gobbles an entire sequence of ordinary characters so that
1827 * it can turn them into a single node, which is smaller to store and
1828 * faster to run. Don't do this when one_exactly is set.
1829 */
1830 static char_u *
1831regatom(flagp)
1832 int *flagp;
1833{
1834 char_u *ret;
1835 int flags;
1836 int cpo_lit; /* 'cpoptions' contains 'l' flag */
Bram Moolenaardf177f62005-02-22 08:39:57 +00001837 int cpo_bsl; /* 'cpoptions' contains '\' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 int c;
1839 static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU";
1840 static int classcodes[] = {ANY, IDENT, SIDENT, KWORD, SKWORD,
1841 FNAME, SFNAME, PRINT, SPRINT,
1842 WHITE, NWHITE, DIGIT, NDIGIT,
1843 HEX, NHEX, OCTAL, NOCTAL,
1844 WORD, NWORD, HEAD, NHEAD,
1845 ALPHA, NALPHA, LOWER, NLOWER,
1846 UPPER, NUPPER
1847 };
1848 char_u *p;
1849 int extra = 0;
1850
1851 *flagp = WORST; /* Tentatively. */
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00001852 cpo_lit = vim_strchr(p_cpo, CPO_LITERAL) != NULL;
1853 cpo_bsl = vim_strchr(p_cpo, CPO_BACKSL) != NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854
1855 c = getchr();
1856 switch (c)
1857 {
1858 case Magic('^'):
1859 ret = regnode(BOL);
1860 break;
1861
1862 case Magic('$'):
1863 ret = regnode(EOL);
1864#if defined(FEAT_SYN_HL) || defined(PROTO)
1865 had_eol = TRUE;
1866#endif
1867 break;
1868
1869 case Magic('<'):
1870 ret = regnode(BOW);
1871 break;
1872
1873 case Magic('>'):
1874 ret = regnode(EOW);
1875 break;
1876
1877 case Magic('_'):
1878 c = no_Magic(getchr());
1879 if (c == '^') /* "\_^" is start-of-line */
1880 {
1881 ret = regnode(BOL);
1882 break;
1883 }
1884 if (c == '$') /* "\_$" is end-of-line */
1885 {
1886 ret = regnode(EOL);
1887#if defined(FEAT_SYN_HL) || defined(PROTO)
1888 had_eol = TRUE;
1889#endif
1890 break;
1891 }
1892
1893 extra = ADD_NL;
1894 *flagp |= HASNL;
1895
1896 /* "\_[" is character range plus newline */
1897 if (c == '[')
1898 goto collection;
1899
1900 /* "\_x" is character class plus newline */
1901 /*FALLTHROUGH*/
1902
1903 /*
1904 * Character classes.
1905 */
1906 case Magic('.'):
1907 case Magic('i'):
1908 case Magic('I'):
1909 case Magic('k'):
1910 case Magic('K'):
1911 case Magic('f'):
1912 case Magic('F'):
1913 case Magic('p'):
1914 case Magic('P'):
1915 case Magic('s'):
1916 case Magic('S'):
1917 case Magic('d'):
1918 case Magic('D'):
1919 case Magic('x'):
1920 case Magic('X'):
1921 case Magic('o'):
1922 case Magic('O'):
1923 case Magic('w'):
1924 case Magic('W'):
1925 case Magic('h'):
1926 case Magic('H'):
1927 case Magic('a'):
1928 case Magic('A'):
1929 case Magic('l'):
1930 case Magic('L'):
1931 case Magic('u'):
1932 case Magic('U'):
1933 p = vim_strchr(classchars, no_Magic(c));
1934 if (p == NULL)
1935 EMSG_RET_NULL(_("E63: invalid use of \\_"));
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001936#ifdef FEAT_MBYTE
1937 /* When '.' is followed by a composing char ignore the dot, so that
1938 * the composing char is matched here. */
1939 if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr()))
1940 {
1941 c = getchr();
1942 goto do_multibyte;
1943 }
1944#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 ret = regnode(classcodes[p - classchars] + extra);
1946 *flagp |= HASWIDTH | SIMPLE;
1947 break;
1948
1949 case Magic('n'):
1950 if (reg_string)
1951 {
1952 /* In a string "\n" matches a newline character. */
1953 ret = regnode(EXACTLY);
1954 regc(NL);
1955 regc(NUL);
1956 *flagp |= HASWIDTH | SIMPLE;
1957 }
1958 else
1959 {
1960 /* In buffer text "\n" matches the end of a line. */
1961 ret = regnode(NEWL);
1962 *flagp |= HASWIDTH | HASNL;
1963 }
1964 break;
1965
1966 case Magic('('):
1967 if (one_exactly)
1968 EMSG_ONE_RET_NULL;
1969 ret = reg(REG_PAREN, &flags);
1970 if (ret == NULL)
1971 return NULL;
1972 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH);
1973 break;
1974
1975 case NUL:
1976 case Magic('|'):
1977 case Magic('&'):
1978 case Magic(')'):
Bram Moolenaard4210772008-01-02 14:35:30 +00001979 if (one_exactly)
1980 EMSG_ONE_RET_NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 EMSG_RET_NULL(_(e_internal)); /* Supposed to be caught earlier. */
1982 /* NOTREACHED */
1983
1984 case Magic('='):
1985 case Magic('?'):
1986 case Magic('+'):
1987 case Magic('@'):
1988 case Magic('{'):
1989 case Magic('*'):
1990 c = no_Magic(c);
1991 sprintf((char *)IObuff, _("E64: %s%c follows nothing"),
1992 (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL)
1993 ? "" : "\\", c);
1994 EMSG_RET_NULL(IObuff);
1995 /* NOTREACHED */
1996
1997 case Magic('~'): /* previous substitute pattern */
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00001998 if (reg_prev_sub != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 {
2000 char_u *lp;
2001
2002 ret = regnode(EXACTLY);
2003 lp = reg_prev_sub;
2004 while (*lp != NUL)
2005 regc(*lp++);
2006 regc(NUL);
2007 if (*reg_prev_sub != NUL)
2008 {
2009 *flagp |= HASWIDTH;
2010 if ((lp - reg_prev_sub) == 1)
2011 *flagp |= SIMPLE;
2012 }
2013 }
2014 else
2015 EMSG_RET_NULL(_(e_nopresub));
2016 break;
2017
2018 case Magic('1'):
2019 case Magic('2'):
2020 case Magic('3'):
2021 case Magic('4'):
2022 case Magic('5'):
2023 case Magic('6'):
2024 case Magic('7'):
2025 case Magic('8'):
2026 case Magic('9'):
2027 {
2028 int refnum;
2029
2030 refnum = c - Magic('0');
2031 /*
2032 * Check if the back reference is legal. We must have seen the
2033 * close brace.
2034 * TODO: Should also check that we don't refer to something
2035 * that is repeated (+*=): what instance of the repetition
2036 * should we match?
2037 */
2038 if (!had_endbrace[refnum])
2039 {
2040 /* Trick: check if "@<=" or "@<!" follows, in which case
2041 * the \1 can appear before the referenced match. */
2042 for (p = regparse; *p != NUL; ++p)
2043 if (p[0] == '@' && p[1] == '<'
2044 && (p[2] == '!' || p[2] == '='))
2045 break;
2046 if (*p == NUL)
2047 EMSG_RET_NULL(_("E65: Illegal back reference"));
2048 }
2049 ret = regnode(BACKREF + refnum);
2050 }
2051 break;
2052
Bram Moolenaar071d4272004-06-13 20:20:40 +00002053 case Magic('z'):
2054 {
2055 c = no_Magic(getchr());
2056 switch (c)
2057 {
Bram Moolenaarc4956c82006-03-12 21:58:43 +00002058#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 case '(': if (reg_do_extmatch != REX_SET)
2060 EMSG_RET_NULL(_("E66: \\z( not allowed here"));
2061 if (one_exactly)
2062 EMSG_ONE_RET_NULL;
2063 ret = reg(REG_ZPAREN, &flags);
2064 if (ret == NULL)
2065 return NULL;
2066 *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH);
2067 re_has_z = REX_SET;
2068 break;
2069
2070 case '1':
2071 case '2':
2072 case '3':
2073 case '4':
2074 case '5':
2075 case '6':
2076 case '7':
2077 case '8':
2078 case '9': if (reg_do_extmatch != REX_USE)
2079 EMSG_RET_NULL(_("E67: \\z1 et al. not allowed here"));
2080 ret = regnode(ZREF + c - '0');
2081 re_has_z = REX_USE;
2082 break;
Bram Moolenaarc4956c82006-03-12 21:58:43 +00002083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084
2085 case 's': ret = regnode(MOPEN + 0);
2086 break;
2087
2088 case 'e': ret = regnode(MCLOSE + 0);
2089 break;
2090
2091 default: EMSG_RET_NULL(_("E68: Invalid character after \\z"));
2092 }
2093 }
2094 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095
2096 case Magic('%'):
2097 {
2098 c = no_Magic(getchr());
2099 switch (c)
2100 {
2101 /* () without a back reference */
2102 case '(':
2103 if (one_exactly)
2104 EMSG_ONE_RET_NULL;
2105 ret = reg(REG_NPAREN, &flags);
2106 if (ret == NULL)
2107 return NULL;
2108 *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH);
2109 break;
2110
2111 /* Catch \%^ and \%$ regardless of where they appear in the
2112 * pattern -- regardless of whether or not it makes sense. */
2113 case '^':
2114 ret = regnode(RE_BOF);
2115 break;
2116
2117 case '$':
2118 ret = regnode(RE_EOF);
2119 break;
2120
2121 case '#':
2122 ret = regnode(CURSOR);
2123 break;
2124
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002125 case 'V':
2126 ret = regnode(RE_VISUAL);
2127 break;
2128
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 /* \%[abc]: Emit as a list of branches, all ending at the last
2130 * branch which matches nothing. */
2131 case '[':
2132 if (one_exactly) /* doesn't nest */
2133 EMSG_ONE_RET_NULL;
2134 {
2135 char_u *lastbranch;
2136 char_u *lastnode = NULL;
2137 char_u *br;
2138
2139 ret = NULL;
2140 while ((c = getchr()) != ']')
2141 {
2142 if (c == NUL)
2143 EMSG_M_RET_NULL(_("E69: Missing ] after %s%%["),
2144 reg_magic == MAGIC_ALL);
2145 br = regnode(BRANCH);
2146 if (ret == NULL)
2147 ret = br;
2148 else
2149 regtail(lastnode, br);
2150
2151 ungetchr();
2152 one_exactly = TRUE;
2153 lastnode = regatom(flagp);
2154 one_exactly = FALSE;
2155 if (lastnode == NULL)
2156 return NULL;
2157 }
2158 if (ret == NULL)
2159 EMSG_M_RET_NULL(_("E70: Empty %s%%[]"),
2160 reg_magic == MAGIC_ALL);
2161 lastbranch = regnode(BRANCH);
2162 br = regnode(NOTHING);
2163 if (ret != JUST_CALC_SIZE)
2164 {
2165 regtail(lastnode, br);
2166 regtail(lastbranch, br);
2167 /* connect all branches to the NOTHING
2168 * branch at the end */
2169 for (br = ret; br != lastnode; )
2170 {
2171 if (OP(br) == BRANCH)
2172 {
2173 regtail(br, lastbranch);
2174 br = OPERAND(br);
2175 }
2176 else
2177 br = regnext(br);
2178 }
2179 }
Bram Moolenaara6404a42008-08-08 11:45:39 +00002180 *flagp &= ~(HASWIDTH | SIMPLE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181 break;
2182 }
2183
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002184 case 'd': /* %d123 decimal */
2185 case 'o': /* %o123 octal */
2186 case 'x': /* %xab hex 2 */
2187 case 'u': /* %uabcd hex 4 */
2188 case 'U': /* %U1234abcd hex 8 */
2189 {
2190 int i;
2191
2192 switch (c)
2193 {
2194 case 'd': i = getdecchrs(); break;
2195 case 'o': i = getoctchrs(); break;
2196 case 'x': i = gethexchrs(2); break;
2197 case 'u': i = gethexchrs(4); break;
2198 case 'U': i = gethexchrs(8); break;
2199 default: i = -1; break;
2200 }
2201
2202 if (i < 0)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00002203 EMSG_M_RET_NULL(
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002204 _("E678: Invalid character after %s%%[dxouU]"),
2205 reg_magic == MAGIC_ALL);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002206#ifdef FEAT_MBYTE
2207 if (use_multibytecode(i))
2208 ret = regnode(MULTIBYTECODE);
2209 else
2210#endif
2211 ret = regnode(EXACTLY);
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002212 if (i == 0)
2213 regc(0x0a);
2214 else
2215#ifdef FEAT_MBYTE
2216 regmbc(i);
2217#else
2218 regc(i);
2219#endif
2220 regc(NUL);
2221 *flagp |= HASWIDTH;
2222 break;
2223 }
2224
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 default:
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002226 if (VIM_ISDIGIT(c) || c == '<' || c == '>'
2227 || c == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 {
2229 long_u n = 0;
2230 int cmp;
2231
2232 cmp = c;
2233 if (cmp == '<' || cmp == '>')
2234 c = getchr();
2235 while (VIM_ISDIGIT(c))
2236 {
2237 n = n * 10 + (c - '0');
2238 c = getchr();
2239 }
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00002240 if (c == '\'' && n == 0)
2241 {
2242 /* "\%'m", "\%<'m" and "\%>'m": Mark */
2243 c = getchr();
2244 ret = regnode(RE_MARK);
2245 if (ret == JUST_CALC_SIZE)
2246 regsize += 2;
2247 else
2248 {
2249 *regcode++ = c;
2250 *regcode++ = cmp;
2251 }
2252 break;
2253 }
2254 else if (c == 'l' || c == 'c' || c == 'v')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 {
2256 if (c == 'l')
2257 ret = regnode(RE_LNUM);
2258 else if (c == 'c')
2259 ret = regnode(RE_COL);
2260 else
2261 ret = regnode(RE_VCOL);
2262 if (ret == JUST_CALC_SIZE)
2263 regsize += 5;
2264 else
2265 {
2266 /* put the number and the optional
2267 * comparator after the opcode */
2268 regcode = re_put_long(regcode, n);
2269 *regcode++ = cmp;
2270 }
2271 break;
2272 }
2273 }
2274
2275 EMSG_M_RET_NULL(_("E71: Invalid character after %s%%"),
2276 reg_magic == MAGIC_ALL);
2277 }
2278 }
2279 break;
2280
2281 case Magic('['):
2282collection:
2283 {
2284 char_u *lp;
2285
2286 /*
2287 * If there is no matching ']', we assume the '[' is a normal
2288 * character. This makes 'incsearch' and ":help [" work.
2289 */
2290 lp = skip_anyof(regparse);
2291 if (*lp == ']') /* there is a matching ']' */
2292 {
2293 int startc = -1; /* > 0 when next '-' is a range */
2294 int endc;
2295
2296 /*
2297 * In a character class, different parsing rules apply.
2298 * Not even \ is special anymore, nothing is.
2299 */
2300 if (*regparse == '^') /* Complement of range. */
2301 {
2302 ret = regnode(ANYBUT + extra);
2303 regparse++;
2304 }
2305 else
2306 ret = regnode(ANYOF + extra);
2307
2308 /* At the start ']' and '-' mean the literal character. */
2309 if (*regparse == ']' || *regparse == '-')
Bram Moolenaardf177f62005-02-22 08:39:57 +00002310 {
2311 startc = *regparse;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 regc(*regparse++);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314
2315 while (*regparse != NUL && *regparse != ']')
2316 {
2317 if (*regparse == '-')
2318 {
2319 ++regparse;
2320 /* The '-' is not used for a range at the end and
2321 * after or before a '\n'. */
2322 if (*regparse == ']' || *regparse == NUL
2323 || startc == -1
2324 || (regparse[0] == '\\' && regparse[1] == 'n'))
2325 {
2326 regc('-');
2327 startc = '-'; /* [--x] is a range */
2328 }
2329 else
2330 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00002331 /* Also accept "a-[.z.]" */
2332 endc = 0;
2333 if (*regparse == '[')
2334 endc = get_coll_element(&regparse);
2335 if (endc == 0)
2336 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337#ifdef FEAT_MBYTE
Bram Moolenaardf177f62005-02-22 08:39:57 +00002338 if (has_mbyte)
2339 endc = mb_ptr2char_adv(&regparse);
2340 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00002342 endc = *regparse++;
2343 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002344
2345 /* Handle \o40, \x20 and \u20AC style sequences */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002346 if (endc == '\\' && !cpo_lit && !cpo_bsl)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002347 endc = coll_get_char();
2348
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 if (startc > endc)
2350 EMSG_RET_NULL(_(e_invrange));
2351#ifdef FEAT_MBYTE
2352 if (has_mbyte && ((*mb_char2len)(startc) > 1
2353 || (*mb_char2len)(endc) > 1))
2354 {
2355 /* Limit to a range of 256 chars */
2356 if (endc > startc + 256)
2357 EMSG_RET_NULL(_(e_invrange));
2358 while (++startc <= endc)
2359 regmbc(startc);
2360 }
2361 else
2362#endif
2363 {
2364#ifdef EBCDIC
2365 int alpha_only = FALSE;
2366
2367 /* for alphabetical range skip the gaps
2368 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */
2369 if (isalpha(startc) && isalpha(endc))
2370 alpha_only = TRUE;
2371#endif
2372 while (++startc <= endc)
2373#ifdef EBCDIC
2374 if (!alpha_only || isalpha(startc))
2375#endif
2376 regc(startc);
2377 }
2378 startc = -1;
2379 }
2380 }
2381 /*
2382 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim
2383 * accepts "\t", "\e", etc., but only when the 'l' flag in
2384 * 'cpoptions' is not included.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002385 * Posix doesn't recognize backslash at all.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 */
2387 else if (*regparse == '\\'
Bram Moolenaardf177f62005-02-22 08:39:57 +00002388 && !cpo_bsl
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL
2390 || (!cpo_lit
2391 && vim_strchr(REGEXP_ABBR,
2392 regparse[1]) != NULL)))
2393 {
2394 regparse++;
2395 if (*regparse == 'n')
2396 {
2397 /* '\n' in range: also match NL */
2398 if (ret != JUST_CALC_SIZE)
2399 {
2400 if (*ret == ANYBUT)
2401 *ret = ANYBUT + ADD_NL;
2402 else if (*ret == ANYOF)
2403 *ret = ANYOF + ADD_NL;
2404 /* else: must have had a \n already */
2405 }
2406 *flagp |= HASNL;
2407 regparse++;
2408 startc = -1;
2409 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +00002410 else if (*regparse == 'd'
2411 || *regparse == 'o'
2412 || *regparse == 'x'
2413 || *regparse == 'u'
2414 || *regparse == 'U')
2415 {
2416 startc = coll_get_char();
2417 if (startc == 0)
2418 regc(0x0a);
2419 else
2420#ifdef FEAT_MBYTE
2421 regmbc(startc);
2422#else
2423 regc(startc);
2424#endif
2425 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 else
2427 {
2428 startc = backslash_trans(*regparse++);
2429 regc(startc);
2430 }
2431 }
2432 else if (*regparse == '[')
2433 {
2434 int c_class;
2435 int cu;
2436
Bram Moolenaardf177f62005-02-22 08:39:57 +00002437 c_class = get_char_class(&regparse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 startc = -1;
2439 /* Characters assumed to be 8 bits! */
2440 switch (c_class)
2441 {
2442 case CLASS_NONE:
Bram Moolenaardf177f62005-02-22 08:39:57 +00002443 c_class = get_equi_class(&regparse);
2444 if (c_class != 0)
2445 {
2446 /* produce equivalence class */
2447 reg_equi_class(c_class);
2448 }
2449 else if ((c_class =
2450 get_coll_element(&regparse)) != 0)
2451 {
2452 /* produce a collating element */
2453 regmbc(c_class);
2454 }
2455 else
2456 {
2457 /* literal '[', allow [[-x] as a range */
2458 startc = *regparse++;
2459 regc(startc);
2460 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 break;
2462 case CLASS_ALNUM:
2463 for (cu = 1; cu <= 255; cu++)
2464 if (isalnum(cu))
2465 regc(cu);
2466 break;
2467 case CLASS_ALPHA:
2468 for (cu = 1; cu <= 255; cu++)
2469 if (isalpha(cu))
2470 regc(cu);
2471 break;
2472 case CLASS_BLANK:
2473 regc(' ');
2474 regc('\t');
2475 break;
2476 case CLASS_CNTRL:
2477 for (cu = 1; cu <= 255; cu++)
2478 if (iscntrl(cu))
2479 regc(cu);
2480 break;
2481 case CLASS_DIGIT:
2482 for (cu = 1; cu <= 255; cu++)
2483 if (VIM_ISDIGIT(cu))
2484 regc(cu);
2485 break;
2486 case CLASS_GRAPH:
2487 for (cu = 1; cu <= 255; cu++)
2488 if (isgraph(cu))
2489 regc(cu);
2490 break;
2491 case CLASS_LOWER:
2492 for (cu = 1; cu <= 255; cu++)
Bram Moolenaara245a5b2007-08-11 11:58:23 +00002493 if (MB_ISLOWER(cu))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 regc(cu);
2495 break;
2496 case CLASS_PRINT:
2497 for (cu = 1; cu <= 255; cu++)
2498 if (vim_isprintc(cu))
2499 regc(cu);
2500 break;
2501 case CLASS_PUNCT:
2502 for (cu = 1; cu <= 255; cu++)
2503 if (ispunct(cu))
2504 regc(cu);
2505 break;
2506 case CLASS_SPACE:
2507 for (cu = 9; cu <= 13; cu++)
2508 regc(cu);
2509 regc(' ');
2510 break;
2511 case CLASS_UPPER:
2512 for (cu = 1; cu <= 255; cu++)
Bram Moolenaara245a5b2007-08-11 11:58:23 +00002513 if (MB_ISUPPER(cu))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 regc(cu);
2515 break;
2516 case CLASS_XDIGIT:
2517 for (cu = 1; cu <= 255; cu++)
2518 if (vim_isxdigit(cu))
2519 regc(cu);
2520 break;
2521 case CLASS_TAB:
2522 regc('\t');
2523 break;
2524 case CLASS_RETURN:
2525 regc('\r');
2526 break;
2527 case CLASS_BACKSPACE:
2528 regc('\b');
2529 break;
2530 case CLASS_ESCAPE:
2531 regc('\033');
2532 break;
2533 }
2534 }
2535 else
2536 {
2537#ifdef FEAT_MBYTE
2538 if (has_mbyte)
2539 {
2540 int len;
2541
2542 /* produce a multibyte character, including any
2543 * following composing characters */
2544 startc = mb_ptr2char(regparse);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00002545 len = (*mb_ptr2len)(regparse);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 if (enc_utf8 && utf_char2len(startc) != len)
2547 startc = -1; /* composing chars */
2548 while (--len >= 0)
2549 regc(*regparse++);
2550 }
2551 else
2552#endif
2553 {
2554 startc = *regparse++;
2555 regc(startc);
2556 }
2557 }
2558 }
2559 regc(NUL);
2560 prevchr_len = 1; /* last char was the ']' */
2561 if (*regparse != ']')
2562 EMSG_RET_NULL(_(e_toomsbra)); /* Cannot happen? */
2563 skipchr(); /* let's be friends with the lexer again */
2564 *flagp |= HASWIDTH | SIMPLE;
2565 break;
2566 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +00002567 else if (reg_strict)
2568 EMSG_M_RET_NULL(_("E769: Missing ] after %s["),
2569 reg_magic > MAGIC_OFF);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 }
2571 /* FALLTHROUGH */
2572
2573 default:
2574 {
2575 int len;
2576
2577#ifdef FEAT_MBYTE
2578 /* A multi-byte character is handled as a separate atom if it's
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002579 * before a multi and when it's a composing char. */
2580 if (use_multibytecode(c))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002582do_multibyte:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 ret = regnode(MULTIBYTECODE);
2584 regmbc(c);
2585 *flagp |= HASWIDTH | SIMPLE;
2586 break;
2587 }
2588#endif
2589
2590 ret = regnode(EXACTLY);
2591
2592 /*
2593 * Append characters as long as:
2594 * - there is no following multi, we then need the character in
2595 * front of it as a single character operand
2596 * - not running into a Magic character
2597 * - "one_exactly" is not set
2598 * But always emit at least one character. Might be a Multi,
2599 * e.g., a "[" without matching "]".
2600 */
2601 for (len = 0; c != NUL && (len == 0
2602 || (re_multi_type(peekchr()) == NOT_MULTI
2603 && !one_exactly
2604 && !is_Magic(c))); ++len)
2605 {
2606 c = no_Magic(c);
2607#ifdef FEAT_MBYTE
2608 if (has_mbyte)
2609 {
2610 regmbc(c);
2611 if (enc_utf8)
2612 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 int l;
2614
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002615 /* Need to get composing character too. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 for (;;)
2617 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002618 l = utf_ptr2len(regparse);
2619 if (!UTF_COMPOSINGLIKE(regparse, regparse + l))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002620 break;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002621 regmbc(utf_ptr2char(regparse));
2622 skipchr();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624 }
2625 }
2626 else
2627#endif
2628 regc(c);
2629 c = getchr();
2630 }
2631 ungetchr();
2632
2633 regc(NUL);
2634 *flagp |= HASWIDTH;
2635 if (len == 1)
2636 *flagp |= SIMPLE;
2637 }
2638 break;
2639 }
2640
2641 return ret;
2642}
2643
Bram Moolenaar362e1a32006-03-06 23:29:24 +00002644#ifdef FEAT_MBYTE
2645/*
2646 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for
2647 * character "c".
2648 */
2649 static int
2650use_multibytecode(c)
2651 int c;
2652{
2653 return has_mbyte && (*mb_char2len)(c) > 1
2654 && (re_multi_type(peekchr()) != NOT_MULTI
2655 || (enc_utf8 && utf_iscomposing(c)));
2656}
2657#endif
2658
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659/*
2660 * emit a node
2661 * Return pointer to generated code.
2662 */
2663 static char_u *
2664regnode(op)
2665 int op;
2666{
2667 char_u *ret;
2668
2669 ret = regcode;
2670 if (ret == JUST_CALC_SIZE)
2671 regsize += 3;
2672 else
2673 {
2674 *regcode++ = op;
2675 *regcode++ = NUL; /* Null "next" pointer. */
2676 *regcode++ = NUL;
2677 }
2678 return ret;
2679}
2680
2681/*
2682 * Emit (if appropriate) a byte of code
2683 */
2684 static void
2685regc(b)
2686 int b;
2687{
2688 if (regcode == JUST_CALC_SIZE)
2689 regsize++;
2690 else
2691 *regcode++ = b;
2692}
2693
2694#ifdef FEAT_MBYTE
2695/*
2696 * Emit (if appropriate) a multi-byte character of code
2697 */
2698 static void
2699regmbc(c)
2700 int c;
2701{
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02002702 if (!has_mbyte && c > 0xff)
2703 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 if (regcode == JUST_CALC_SIZE)
2705 regsize += (*mb_char2len)(c);
2706 else
2707 regcode += (*mb_char2bytes)(c, regcode);
2708}
2709#endif
2710
2711/*
2712 * reginsert - insert an operator in front of already-emitted operand
2713 *
2714 * Means relocating the operand.
2715 */
2716 static void
2717reginsert(op, opnd)
2718 int op;
2719 char_u *opnd;
2720{
2721 char_u *src;
2722 char_u *dst;
2723 char_u *place;
2724
2725 if (regcode == JUST_CALC_SIZE)
2726 {
2727 regsize += 3;
2728 return;
2729 }
2730 src = regcode;
2731 regcode += 3;
2732 dst = regcode;
2733 while (src > opnd)
2734 *--dst = *--src;
2735
2736 place = opnd; /* Op node, where operand used to be. */
2737 *place++ = op;
2738 *place++ = NUL;
2739 *place = NUL;
2740}
2741
2742/*
2743 * reginsert_limits - insert an operator in front of already-emitted operand.
2744 * The operator has the given limit values as operands. Also set next pointer.
2745 *
2746 * Means relocating the operand.
2747 */
2748 static void
2749reginsert_limits(op, minval, maxval, opnd)
2750 int op;
2751 long minval;
2752 long maxval;
2753 char_u *opnd;
2754{
2755 char_u *src;
2756 char_u *dst;
2757 char_u *place;
2758
2759 if (regcode == JUST_CALC_SIZE)
2760 {
2761 regsize += 11;
2762 return;
2763 }
2764 src = regcode;
2765 regcode += 11;
2766 dst = regcode;
2767 while (src > opnd)
2768 *--dst = *--src;
2769
2770 place = opnd; /* Op node, where operand used to be. */
2771 *place++ = op;
2772 *place++ = NUL;
2773 *place++ = NUL;
2774 place = re_put_long(place, (long_u)minval);
2775 place = re_put_long(place, (long_u)maxval);
2776 regtail(opnd, place);
2777}
2778
2779/*
2780 * Write a long as four bytes at "p" and return pointer to the next char.
2781 */
2782 static char_u *
2783re_put_long(p, val)
2784 char_u *p;
2785 long_u val;
2786{
2787 *p++ = (char_u) ((val >> 24) & 0377);
2788 *p++ = (char_u) ((val >> 16) & 0377);
2789 *p++ = (char_u) ((val >> 8) & 0377);
2790 *p++ = (char_u) (val & 0377);
2791 return p;
2792}
2793
2794/*
2795 * regtail - set the next-pointer at the end of a node chain
2796 */
2797 static void
2798regtail(p, val)
2799 char_u *p;
2800 char_u *val;
2801{
2802 char_u *scan;
2803 char_u *temp;
2804 int offset;
2805
2806 if (p == JUST_CALC_SIZE)
2807 return;
2808
2809 /* Find last node. */
2810 scan = p;
2811 for (;;)
2812 {
2813 temp = regnext(scan);
2814 if (temp == NULL)
2815 break;
2816 scan = temp;
2817 }
2818
Bram Moolenaar582fd852005-03-28 20:58:01 +00002819 if (OP(scan) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 offset = (int)(scan - val);
2821 else
2822 offset = (int)(val - scan);
Bram Moolenaard3005802009-11-25 17:21:32 +00002823 /* When the offset uses more than 16 bits it can no longer fit in the two
Bram Moolenaar522f9ae2011-07-20 17:58:20 +02002824 * bytes available. Use a global flag to avoid having to check return
Bram Moolenaard3005802009-11-25 17:21:32 +00002825 * values in too many places. */
2826 if (offset > 0xffff)
2827 reg_toolong = TRUE;
2828 else
2829 {
2830 *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377);
2831 *(scan + 2) = (char_u) (offset & 0377);
2832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833}
2834
2835/*
2836 * regoptail - regtail on item after a BRANCH; nop if none
2837 */
2838 static void
2839regoptail(p, val)
2840 char_u *p;
2841 char_u *val;
2842{
2843 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */
2844 if (p == NULL || p == JUST_CALC_SIZE
2845 || (OP(p) != BRANCH
2846 && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9)))
2847 return;
2848 regtail(OPERAND(p), val);
2849}
2850
2851/*
2852 * getchr() - get the next character from the pattern. We know about
2853 * magic and such, so therefore we need a lexical analyzer.
2854 */
2855
2856/* static int curchr; */
2857static int prevprevchr;
2858static int prevchr;
2859static int nextchr; /* used for ungetchr() */
2860/*
2861 * Note: prevchr is sometimes -1 when we are not at the start,
2862 * eg in /[ ^I]^ the pattern was never found even if it existed, because ^ was
2863 * taken to be magic -- webb
2864 */
2865static int at_start; /* True when on the first character */
2866static int prev_at_start; /* True when on the second character */
2867
2868 static void
2869initchr(str)
2870 char_u *str;
2871{
2872 regparse = str;
2873 prevchr_len = 0;
2874 curchr = prevprevchr = prevchr = nextchr = -1;
2875 at_start = TRUE;
2876 prev_at_start = FALSE;
2877}
2878
2879 static int
2880peekchr()
2881{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002882 static int after_slash = FALSE;
2883
Bram Moolenaar071d4272004-06-13 20:20:40 +00002884 if (curchr == -1)
2885 {
2886 switch (curchr = regparse[0])
2887 {
2888 case '.':
2889 case '[':
2890 case '~':
2891 /* magic when 'magic' is on */
2892 if (reg_magic >= MAGIC_ON)
2893 curchr = Magic(curchr);
2894 break;
2895 case '(':
2896 case ')':
2897 case '{':
2898 case '%':
2899 case '+':
2900 case '=':
2901 case '?':
2902 case '@':
2903 case '!':
2904 case '&':
2905 case '|':
2906 case '<':
2907 case '>':
2908 case '#': /* future ext. */
2909 case '"': /* future ext. */
2910 case '\'': /* future ext. */
2911 case ',': /* future ext. */
2912 case '-': /* future ext. */
2913 case ':': /* future ext. */
2914 case ';': /* future ext. */
2915 case '`': /* future ext. */
2916 case '/': /* Can't be used in / command */
2917 /* magic only after "\v" */
2918 if (reg_magic == MAGIC_ALL)
2919 curchr = Magic(curchr);
2920 break;
2921 case '*':
Bram Moolenaardf177f62005-02-22 08:39:57 +00002922 /* * is not magic as the very first character, eg "?*ptr", when
2923 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But
2924 * "\(\*" is not magic, thus must be magic if "after_slash" */
2925 if (reg_magic >= MAGIC_ON
2926 && !at_start
2927 && !(prev_at_start && prevchr == Magic('^'))
2928 && (after_slash
2929 || (prevchr != Magic('(')
2930 && prevchr != Magic('&')
2931 && prevchr != Magic('|'))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932 curchr = Magic('*');
2933 break;
2934 case '^':
2935 /* '^' is only magic as the very first character and if it's after
2936 * "\(", "\|", "\&' or "\n" */
2937 if (reg_magic >= MAGIC_OFF
2938 && (at_start
2939 || reg_magic == MAGIC_ALL
2940 || prevchr == Magic('(')
2941 || prevchr == Magic('|')
2942 || prevchr == Magic('&')
2943 || prevchr == Magic('n')
2944 || (no_Magic(prevchr) == '('
2945 && prevprevchr == Magic('%'))))
2946 {
2947 curchr = Magic('^');
2948 at_start = TRUE;
2949 prev_at_start = FALSE;
2950 }
2951 break;
2952 case '$':
2953 /* '$' is only magic as the very last char and if it's in front of
2954 * either "\|", "\)", "\&", or "\n" */
2955 if (reg_magic >= MAGIC_OFF)
2956 {
2957 char_u *p = regparse + 1;
2958
2959 /* ignore \c \C \m and \M after '$' */
2960 while (p[0] == '\\' && (p[1] == 'c' || p[1] == 'C'
2961 || p[1] == 'm' || p[1] == 'M' || p[1] == 'Z'))
2962 p += 2;
2963 if (p[0] == NUL
2964 || (p[0] == '\\'
2965 && (p[1] == '|' || p[1] == '&' || p[1] == ')'
2966 || p[1] == 'n'))
2967 || reg_magic == MAGIC_ALL)
2968 curchr = Magic('$');
2969 }
2970 break;
2971 case '\\':
2972 {
2973 int c = regparse[1];
2974
2975 if (c == NUL)
2976 curchr = '\\'; /* trailing '\' */
2977 else if (
2978#ifdef EBCDIC
2979 vim_strchr(META, c)
2980#else
2981 c <= '~' && META_flags[c]
2982#endif
2983 )
2984 {
2985 /*
2986 * META contains everything that may be magic sometimes,
2987 * except ^ and $ ("\^" and "\$" are only magic after
2988 * "\v"). We now fetch the next character and toggle its
2989 * magicness. Therefore, \ is so meta-magic that it is
2990 * not in META.
2991 */
2992 curchr = -1;
2993 prev_at_start = at_start;
2994 at_start = FALSE; /* be able to say "/\*ptr" */
2995 ++regparse;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002996 ++after_slash;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 peekchr();
2998 --regparse;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002999 --after_slash;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 curchr = toggle_Magic(curchr);
3001 }
3002 else if (vim_strchr(REGEXP_ABBR, c))
3003 {
3004 /*
3005 * Handle abbreviations, like "\t" for TAB -- webb
3006 */
3007 curchr = backslash_trans(c);
3008 }
3009 else if (reg_magic == MAGIC_NONE && (c == '$' || c == '^'))
3010 curchr = toggle_Magic(c);
3011 else
3012 {
3013 /*
3014 * Next character can never be (made) magic?
3015 * Then backslashing it won't do anything.
3016 */
3017#ifdef FEAT_MBYTE
3018 if (has_mbyte)
3019 curchr = (*mb_ptr2char)(regparse + 1);
3020 else
3021#endif
3022 curchr = c;
3023 }
3024 break;
3025 }
3026
3027#ifdef FEAT_MBYTE
3028 default:
3029 if (has_mbyte)
3030 curchr = (*mb_ptr2char)(regparse);
3031#endif
3032 }
3033 }
3034
3035 return curchr;
3036}
3037
3038/*
3039 * Eat one lexed character. Do this in a way that we can undo it.
3040 */
3041 static void
3042skipchr()
3043{
3044 /* peekchr() eats a backslash, do the same here */
3045 if (*regparse == '\\')
3046 prevchr_len = 1;
3047 else
3048 prevchr_len = 0;
3049 if (regparse[prevchr_len] != NUL)
3050 {
3051#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003052 if (enc_utf8)
Bram Moolenaar8f5c5782007-11-29 20:27:21 +00003053 /* exclude composing chars that mb_ptr2len does include */
3054 prevchr_len += utf_ptr2len(regparse + prevchr_len);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003055 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003056 prevchr_len += (*mb_ptr2len)(regparse + prevchr_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 else
3058#endif
3059 ++prevchr_len;
3060 }
3061 regparse += prevchr_len;
3062 prev_at_start = at_start;
3063 at_start = FALSE;
3064 prevprevchr = prevchr;
3065 prevchr = curchr;
3066 curchr = nextchr; /* use previously unget char, or -1 */
3067 nextchr = -1;
3068}
3069
3070/*
3071 * Skip a character while keeping the value of prev_at_start for at_start.
3072 * prevchr and prevprevchr are also kept.
3073 */
3074 static void
3075skipchr_keepstart()
3076{
3077 int as = prev_at_start;
3078 int pr = prevchr;
3079 int prpr = prevprevchr;
3080
3081 skipchr();
3082 at_start = as;
3083 prevchr = pr;
3084 prevprevchr = prpr;
3085}
3086
3087 static int
3088getchr()
3089{
3090 int chr = peekchr();
3091
3092 skipchr();
3093 return chr;
3094}
3095
3096/*
3097 * put character back. Works only once!
3098 */
3099 static void
3100ungetchr()
3101{
3102 nextchr = curchr;
3103 curchr = prevchr;
3104 prevchr = prevprevchr;
3105 at_start = prev_at_start;
3106 prev_at_start = FALSE;
3107
3108 /* Backup regparse, so that it's at the same position as before the
3109 * getchr(). */
3110 regparse -= prevchr_len;
3111}
3112
3113/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003114 * Get and return the value of the hex string at the current position.
3115 * Return -1 if there is no valid hex number.
3116 * The position is updated:
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003117 * blahblah\%x20asdf
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003118 * before-^ ^-after
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003119 * The parameter controls the maximum number of input characters. This will be
3120 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence.
3121 */
3122 static int
3123gethexchrs(maxinputlen)
3124 int maxinputlen;
3125{
3126 int nr = 0;
3127 int c;
3128 int i;
3129
3130 for (i = 0; i < maxinputlen; ++i)
3131 {
3132 c = regparse[0];
3133 if (!vim_isxdigit(c))
3134 break;
3135 nr <<= 4;
3136 nr |= hex2nr(c);
3137 ++regparse;
3138 }
3139
3140 if (i == 0)
3141 return -1;
3142 return nr;
3143}
3144
3145/*
3146 * get and return the value of the decimal string immediately after the
3147 * current position. Return -1 for invalid. Consumes all digits.
3148 */
3149 static int
3150getdecchrs()
3151{
3152 int nr = 0;
3153 int c;
3154 int i;
3155
3156 for (i = 0; ; ++i)
3157 {
3158 c = regparse[0];
3159 if (c < '0' || c > '9')
3160 break;
3161 nr *= 10;
3162 nr += c - '0';
3163 ++regparse;
3164 }
3165
3166 if (i == 0)
3167 return -1;
3168 return nr;
3169}
3170
3171/*
3172 * get and return the value of the octal string immediately after the current
3173 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle
3174 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't
3175 * treat 8 or 9 as recognised characters. Position is updated:
3176 * blahblah\%o210asdf
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00003177 * before-^ ^-after
Bram Moolenaarc0197e22004-09-13 20:26:32 +00003178 */
3179 static int
3180getoctchrs()
3181{
3182 int nr = 0;
3183 int c;
3184 int i;
3185
3186 for (i = 0; i < 3 && nr < 040; ++i)
3187 {
3188 c = regparse[0];
3189 if (c < '0' || c > '7')
3190 break;
3191 nr <<= 3;
3192 nr |= hex2nr(c);
3193 ++regparse;
3194 }
3195
3196 if (i == 0)
3197 return -1;
3198 return nr;
3199}
3200
3201/*
3202 * Get a number after a backslash that is inside [].
3203 * When nothing is recognized return a backslash.
3204 */
3205 static int
3206coll_get_char()
3207{
3208 int nr = -1;
3209
3210 switch (*regparse++)
3211 {
3212 case 'd': nr = getdecchrs(); break;
3213 case 'o': nr = getoctchrs(); break;
3214 case 'x': nr = gethexchrs(2); break;
3215 case 'u': nr = gethexchrs(4); break;
3216 case 'U': nr = gethexchrs(8); break;
3217 }
3218 if (nr < 0)
3219 {
3220 /* If getting the number fails be backwards compatible: the character
3221 * is a backslash. */
3222 --regparse;
3223 nr = '\\';
3224 }
3225 return nr;
3226}
3227
3228/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 * read_limits - Read two integers to be taken as a minimum and maximum.
3230 * If the first character is '-', then the range is reversed.
3231 * Should end with 'end'. If minval is missing, zero is default, if maxval is
3232 * missing, a very big number is the default.
3233 */
3234 static int
3235read_limits(minval, maxval)
3236 long *minval;
3237 long *maxval;
3238{
3239 int reverse = FALSE;
3240 char_u *first_char;
3241 long tmp;
3242
3243 if (*regparse == '-')
3244 {
3245 /* Starts with '-', so reverse the range later */
3246 regparse++;
3247 reverse = TRUE;
3248 }
3249 first_char = regparse;
3250 *minval = getdigits(&regparse);
3251 if (*regparse == ',') /* There is a comma */
3252 {
3253 if (vim_isdigit(*++regparse))
3254 *maxval = getdigits(&regparse);
3255 else
3256 *maxval = MAX_LIMIT;
3257 }
3258 else if (VIM_ISDIGIT(*first_char))
3259 *maxval = *minval; /* It was \{n} or \{-n} */
3260 else
3261 *maxval = MAX_LIMIT; /* It was \{} or \{-} */
3262 if (*regparse == '\\')
3263 regparse++; /* Allow either \{...} or \{...\} */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003264 if (*regparse != '}')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 {
3266 sprintf((char *)IObuff, _("E554: Syntax error in %s{...}"),
3267 reg_magic == MAGIC_ALL ? "" : "\\");
3268 EMSG_RET_FAIL(IObuff);
3269 }
3270
3271 /*
3272 * Reverse the range if there was a '-', or make sure it is in the right
3273 * order otherwise.
3274 */
3275 if ((!reverse && *minval > *maxval) || (reverse && *minval < *maxval))
3276 {
3277 tmp = *minval;
3278 *minval = *maxval;
3279 *maxval = tmp;
3280 }
3281 skipchr(); /* let's be friends with the lexer again */
3282 return OK;
3283}
3284
3285/*
3286 * vim_regexec and friends
3287 */
3288
3289/*
3290 * Global work variables for vim_regexec().
3291 */
3292
3293/* The current match-position is remembered with these variables: */
3294static linenr_T reglnum; /* line number, relative to first line */
3295static char_u *regline; /* start of current line */
3296static char_u *reginput; /* current input, points into "regline" */
3297
3298static int need_clear_subexpr; /* subexpressions still need to be
3299 * cleared */
3300#ifdef FEAT_SYN_HL
3301static int need_clear_zsubexpr = FALSE; /* extmatch subexpressions
3302 * still need to be cleared */
3303#endif
3304
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305/*
3306 * Structure used to save the current input state, when it needs to be
3307 * restored after trying a match. Used by reg_save() and reg_restore().
Bram Moolenaar582fd852005-03-28 20:58:01 +00003308 * Also stores the length of "backpos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 */
3310typedef struct
3311{
3312 union
3313 {
3314 char_u *ptr; /* reginput pointer, for single-line regexp */
3315 lpos_T pos; /* reginput pos, for multi-line regexp */
3316 } rs_u;
Bram Moolenaar582fd852005-03-28 20:58:01 +00003317 int rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318} regsave_T;
3319
3320/* struct to save start/end pointer/position in for \(\) */
3321typedef struct
3322{
3323 union
3324 {
3325 char_u *ptr;
3326 lpos_T pos;
3327 } se_u;
3328} save_se_T;
3329
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003330/* used for BEHIND and NOBEHIND matching */
3331typedef struct regbehind_S
3332{
3333 regsave_T save_after;
3334 regsave_T save_behind;
Bram Moolenaarfde483c2008-06-15 12:21:50 +00003335 int save_need_clear_subexpr;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003336 save_se_T save_start[NSUBEXP];
3337 save_se_T save_end[NSUBEXP];
3338} regbehind_T;
3339
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340static char_u *reg_getline __ARGS((linenr_T lnum));
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003341static long vim_regexec_both __ARGS((char_u *line, colnr_T col, proftime_T *tm));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003342static long regtry __ARGS((regprog_T *prog, colnr_T col));
3343static void cleanup_subexpr __ARGS((void));
3344#ifdef FEAT_SYN_HL
3345static void cleanup_zsubexpr __ARGS((void));
3346#endif
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003347static void save_subexpr __ARGS((regbehind_T *bp));
3348static void restore_subexpr __ARGS((regbehind_T *bp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349static void reg_nextline __ARGS((void));
Bram Moolenaar582fd852005-03-28 20:58:01 +00003350static void reg_save __ARGS((regsave_T *save, garray_T *gap));
3351static void reg_restore __ARGS((regsave_T *save, garray_T *gap));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352static int reg_save_equal __ARGS((regsave_T *save));
3353static void save_se_multi __ARGS((save_se_T *savep, lpos_T *posp));
3354static void save_se_one __ARGS((save_se_T *savep, char_u **pp));
3355
3356/* Save the sub-expressions before attempting a match. */
3357#define save_se(savep, posp, pp) \
3358 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp))
3359
3360/* After a failed match restore the sub-expressions. */
3361#define restore_se(savep, posp, pp) { \
3362 if (REG_MULTI) \
3363 *(posp) = (savep)->se_u.pos; \
3364 else \
3365 *(pp) = (savep)->se_u.ptr; }
3366
3367static int re_num_cmp __ARGS((long_u val, char_u *scan));
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003368static int regmatch __ARGS((char_u *prog));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369static int regrepeat __ARGS((char_u *p, long maxcount));
3370
3371#ifdef DEBUG
3372int regnarrate = 0;
3373#endif
3374
3375/*
3376 * Internal copy of 'ignorecase'. It is set at each call to vim_regexec().
3377 * Normally it gets the value of "rm_ic" or "rmm_ic", but when the pattern
3378 * contains '\c' or '\C' the value is overruled.
3379 */
3380static int ireg_ic;
3381
3382#ifdef FEAT_MBYTE
3383/*
3384 * Similar to ireg_ic, but only for 'combining' characters. Set with \Z flag
3385 * in the regexp. Defaults to false, always.
3386 */
3387static int ireg_icombine;
3388#endif
3389
3390/*
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003391 * Copy of "rmm_maxcol": maximum column to search for a match. Zero when
3392 * there is no maximum.
3393 */
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003394static colnr_T ireg_maxcol;
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003395
3396/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 * Sometimes need to save a copy of a line. Since alloc()/free() is very
3398 * slow, we keep one allocated piece of memory and only re-allocate it when
3399 * it's too small. It's freed in vim_regexec_both() when finished.
3400 */
Bram Moolenaard4210772008-01-02 14:35:30 +00003401static char_u *reg_tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402static unsigned reg_tofreelen;
3403
3404/*
3405 * These variables are set when executing a regexp to speed up the execution.
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00003406 * Which ones are set depends on whether a single-line or multi-line match is
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 * done:
3408 * single-line multi-line
3409 * reg_match &regmatch_T NULL
3410 * reg_mmatch NULL &regmmatch_T
3411 * reg_startp reg_match->startp <invalid>
3412 * reg_endp reg_match->endp <invalid>
3413 * reg_startpos <invalid> reg_mmatch->startpos
3414 * reg_endpos <invalid> reg_mmatch->endpos
3415 * reg_win NULL window in which to search
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01003416 * reg_buf curbuf buffer in which to search
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 * reg_firstlnum <invalid> first line in which to search
3418 * reg_maxline 0 last line nr
3419 * reg_line_lbr FALSE or TRUE FALSE
3420 */
3421static regmatch_T *reg_match;
3422static regmmatch_T *reg_mmatch;
3423static char_u **reg_startp = NULL;
3424static char_u **reg_endp = NULL;
3425static lpos_T *reg_startpos = NULL;
3426static lpos_T *reg_endpos = NULL;
3427static win_T *reg_win;
3428static buf_T *reg_buf;
3429static linenr_T reg_firstlnum;
3430static linenr_T reg_maxline;
3431static int reg_line_lbr; /* "\n" in string is line break */
3432
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003433/* Values for rs_state in regitem_T. */
3434typedef enum regstate_E
3435{
3436 RS_NOPEN = 0 /* NOPEN and NCLOSE */
3437 , RS_MOPEN /* MOPEN + [0-9] */
3438 , RS_MCLOSE /* MCLOSE + [0-9] */
3439#ifdef FEAT_SYN_HL
3440 , RS_ZOPEN /* ZOPEN + [0-9] */
3441 , RS_ZCLOSE /* ZCLOSE + [0-9] */
3442#endif
3443 , RS_BRANCH /* BRANCH */
3444 , RS_BRCPLX_MORE /* BRACE_COMPLEX and trying one more match */
3445 , RS_BRCPLX_LONG /* BRACE_COMPLEX and trying longest match */
3446 , RS_BRCPLX_SHORT /* BRACE_COMPLEX and trying shortest match */
3447 , RS_NOMATCH /* NOMATCH */
3448 , RS_BEHIND1 /* BEHIND / NOBEHIND matching rest */
3449 , RS_BEHIND2 /* BEHIND / NOBEHIND matching behind part */
3450 , RS_STAR_LONG /* STAR/PLUS/BRACE_SIMPLE longest match */
3451 , RS_STAR_SHORT /* STAR/PLUS/BRACE_SIMPLE shortest match */
3452} regstate_T;
3453
3454/*
3455 * When there are alternatives a regstate_T is put on the regstack to remember
3456 * what we are doing.
3457 * Before it may be another type of item, depending on rs_state, to remember
3458 * more things.
3459 */
3460typedef struct regitem_S
3461{
3462 regstate_T rs_state; /* what we are doing, one of RS_ above */
3463 char_u *rs_scan; /* current node in program */
3464 union
3465 {
3466 save_se_T sesave;
3467 regsave_T regsave;
3468 } rs_un; /* room for saving reginput */
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00003469 short rs_no; /* submatch nr or BEHIND/NOBEHIND */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003470} regitem_T;
3471
3472static regitem_T *regstack_push __ARGS((regstate_T state, char_u *scan));
3473static void regstack_pop __ARGS((char_u **scan));
3474
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003475/* used for STAR, PLUS and BRACE_SIMPLE matching */
3476typedef struct regstar_S
3477{
3478 int nextb; /* next byte */
3479 int nextb_ic; /* next byte reverse case */
3480 long count;
3481 long minval;
3482 long maxval;
3483} regstar_T;
3484
3485/* used to store input position when a BACK was encountered, so that we now if
3486 * we made any progress since the last time. */
3487typedef struct backpos_S
3488{
3489 char_u *bp_scan; /* "scan" where BACK was encountered */
3490 regsave_T bp_pos; /* last input position */
3491} backpos_T;
3492
3493/*
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003494 * "regstack" and "backpos" are used by regmatch(). They are kept over calls
3495 * to avoid invoking malloc() and free() often.
3496 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T
3497 * or regbehind_T.
3498 * "backpos_T" is a table with backpos_T for BACK
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003499 */
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003500static garray_T regstack = {0, 0, 0, 0, NULL};
3501static garray_T backpos = {0, 0, 0, 0, NULL};
3502
3503/*
3504 * Both for regstack and backpos tables we use the following strategy of
3505 * allocation (to reduce malloc/free calls):
3506 * - Initial size is fairly small.
3507 * - When needed, the tables are grown bigger (8 times at first, double after
3508 * that).
3509 * - After executing the match we free the memory only if the array has grown.
3510 * Thus the memory is kept allocated when it's at the initial size.
3511 * This makes it fast while not keeping a lot of memory allocated.
3512 * A three times speed increase was observed when using many simple patterns.
3513 */
3514#define REGSTACK_INITIAL 2048
3515#define BACKPOS_INITIAL 64
3516
3517#if defined(EXITFREE) || defined(PROTO)
3518 void
3519free_regexp_stuff()
3520{
3521 ga_clear(&regstack);
3522 ga_clear(&backpos);
3523 vim_free(reg_tofree);
3524 vim_free(reg_prev_sub);
3525}
3526#endif
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003527
Bram Moolenaar071d4272004-06-13 20:20:40 +00003528/*
3529 * Get pointer to the line "lnum", which is relative to "reg_firstlnum".
3530 */
3531 static char_u *
3532reg_getline(lnum)
3533 linenr_T lnum;
3534{
3535 /* when looking behind for a match/no-match lnum is negative. But we
3536 * can't go before line 1 */
3537 if (reg_firstlnum + lnum < 1)
3538 return NULL;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00003539 if (lnum > reg_maxline)
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003540 /* Must have matched the "\n" in the last line. */
3541 return (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 return ml_get_buf(reg_buf, reg_firstlnum + lnum, FALSE);
3543}
3544
3545static regsave_T behind_pos;
3546
3547#ifdef FEAT_SYN_HL
3548static char_u *reg_startzp[NSUBEXP]; /* Workspace to mark beginning */
3549static char_u *reg_endzp[NSUBEXP]; /* and end of \z(...\) matches */
3550static lpos_T reg_startzpos[NSUBEXP]; /* idem, beginning pos */
3551static lpos_T reg_endzpos[NSUBEXP]; /* idem, end pos */
3552#endif
3553
3554/* TRUE if using multi-line regexp. */
3555#define REG_MULTI (reg_match == NULL)
3556
3557/*
3558 * Match a regexp against a string.
3559 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3560 * Uses curbuf for line count and 'iskeyword'.
3561 *
3562 * Return TRUE if there is a match, FALSE if not.
3563 */
3564 int
3565vim_regexec(rmp, line, col)
3566 regmatch_T *rmp;
3567 char_u *line; /* string to match against */
3568 colnr_T col; /* column to start looking for match */
3569{
3570 reg_match = rmp;
3571 reg_mmatch = NULL;
3572 reg_maxline = 0;
3573 reg_line_lbr = FALSE;
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01003574 reg_buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575 reg_win = NULL;
3576 ireg_ic = rmp->rm_ic;
3577#ifdef FEAT_MBYTE
3578 ireg_icombine = FALSE;
3579#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003580 ireg_maxcol = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003581 return (vim_regexec_both(line, col, NULL) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582}
3583
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003584#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
3585 || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586/*
3587 * Like vim_regexec(), but consider a "\n" in "line" to be a line break.
3588 */
3589 int
3590vim_regexec_nl(rmp, line, col)
3591 regmatch_T *rmp;
3592 char_u *line; /* string to match against */
3593 colnr_T col; /* column to start looking for match */
3594{
3595 reg_match = rmp;
3596 reg_mmatch = NULL;
3597 reg_maxline = 0;
3598 reg_line_lbr = TRUE;
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01003599 reg_buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600 reg_win = NULL;
3601 ireg_ic = rmp->rm_ic;
3602#ifdef FEAT_MBYTE
3603 ireg_icombine = FALSE;
3604#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003605 ireg_maxcol = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003606 return (vim_regexec_both(line, col, NULL) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607}
3608#endif
3609
3610/*
3611 * Match a regexp against multiple lines.
3612 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3613 * Uses curbuf for line count and 'iskeyword'.
3614 *
3615 * Return zero if there is no match. Return number of lines contained in the
3616 * match otherwise.
3617 */
3618 long
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003619vim_regexec_multi(rmp, win, buf, lnum, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003620 regmmatch_T *rmp;
3621 win_T *win; /* window in which to search or NULL */
3622 buf_T *buf; /* buffer in which to search */
3623 linenr_T lnum; /* nr of line to start looking for match */
3624 colnr_T col; /* column to start looking for match */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003625 proftime_T *tm; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626{
3627 long r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628
3629 reg_match = NULL;
3630 reg_mmatch = rmp;
3631 reg_buf = buf;
3632 reg_win = win;
3633 reg_firstlnum = lnum;
3634 reg_maxline = reg_buf->b_ml.ml_line_count - lnum;
3635 reg_line_lbr = FALSE;
3636 ireg_ic = rmp->rmm_ic;
3637#ifdef FEAT_MBYTE
3638 ireg_icombine = FALSE;
3639#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003640 ireg_maxcol = rmp->rmm_maxcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003642 r = vim_regexec_both(NULL, col, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003643
3644 return r;
3645}
3646
3647/*
3648 * Match a regexp against a string ("line" points to the string) or multiple
3649 * lines ("line" is NULL, use reg_getline()).
3650 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 static long
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003652vim_regexec_both(line, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 char_u *line;
3654 colnr_T col; /* column to start looking for match */
Bram Moolenaar78a15312009-05-15 19:33:18 +00003655 proftime_T *tm UNUSED; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656{
3657 regprog_T *prog;
3658 char_u *s;
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003659 long retval = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003661 /* Create "regstack" and "backpos" if they are not allocated yet.
3662 * We allocate *_INITIAL amount of bytes first and then set the grow size
3663 * to much bigger value to avoid many malloc calls in case of deep regular
3664 * expressions. */
3665 if (regstack.ga_data == NULL)
3666 {
3667 /* Use an item size of 1 byte, since we push different things
3668 * onto the regstack. */
3669 ga_init2(&regstack, 1, REGSTACK_INITIAL);
3670 ga_grow(&regstack, REGSTACK_INITIAL);
3671 regstack.ga_growsize = REGSTACK_INITIAL * 8;
3672 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003674 if (backpos.ga_data == NULL)
3675 {
3676 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL);
3677 ga_grow(&backpos, BACKPOS_INITIAL);
3678 backpos.ga_growsize = BACKPOS_INITIAL * 8;
3679 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003680
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 if (REG_MULTI)
3682 {
3683 prog = reg_mmatch->regprog;
3684 line = reg_getline((linenr_T)0);
3685 reg_startpos = reg_mmatch->startpos;
3686 reg_endpos = reg_mmatch->endpos;
3687 }
3688 else
3689 {
3690 prog = reg_match->regprog;
3691 reg_startp = reg_match->startp;
3692 reg_endp = reg_match->endp;
3693 }
3694
3695 /* Be paranoid... */
3696 if (prog == NULL || line == NULL)
3697 {
3698 EMSG(_(e_null));
3699 goto theend;
3700 }
3701
3702 /* Check validity of program. */
3703 if (prog_magic_wrong())
3704 goto theend;
3705
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003706 /* If the start column is past the maximum column: no need to try. */
3707 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3708 goto theend;
3709
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 /* If pattern contains "\c" or "\C": overrule value of ireg_ic */
3711 if (prog->regflags & RF_ICASE)
3712 ireg_ic = TRUE;
3713 else if (prog->regflags & RF_NOICASE)
3714 ireg_ic = FALSE;
3715
3716#ifdef FEAT_MBYTE
3717 /* If pattern contains "\Z" overrule value of ireg_icombine */
3718 if (prog->regflags & RF_ICOMBINE)
3719 ireg_icombine = TRUE;
3720#endif
3721
3722 /* If there is a "must appear" string, look for it. */
3723 if (prog->regmust != NULL)
3724 {
3725 int c;
3726
3727#ifdef FEAT_MBYTE
3728 if (has_mbyte)
3729 c = (*mb_ptr2char)(prog->regmust);
3730 else
3731#endif
3732 c = *prog->regmust;
3733 s = line + col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003734
3735 /*
3736 * This is used very often, esp. for ":global". Use three versions of
3737 * the loop to avoid overhead of conditions.
3738 */
3739 if (!ireg_ic
3740#ifdef FEAT_MBYTE
3741 && !has_mbyte
3742#endif
3743 )
3744 while ((s = vim_strbyte(s, c)) != NULL)
3745 {
3746 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3747 break; /* Found it. */
3748 ++s;
3749 }
3750#ifdef FEAT_MBYTE
3751 else if (!ireg_ic || (!enc_utf8 && mb_char2len(c) > 1))
3752 while ((s = vim_strchr(s, c)) != NULL)
3753 {
3754 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3755 break; /* Found it. */
3756 mb_ptr_adv(s);
3757 }
3758#endif
3759 else
3760 while ((s = cstrchr(s, c)) != NULL)
3761 {
3762 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3763 break; /* Found it. */
3764 mb_ptr_adv(s);
3765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 if (s == NULL) /* Not present. */
3767 goto theend;
3768 }
3769
3770 regline = line;
3771 reglnum = 0;
Bram Moolenaar73a92fe2010-09-14 10:55:47 +02003772 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773
3774 /* Simplest case: Anchored match need be tried only once. */
3775 if (prog->reganch)
3776 {
3777 int c;
3778
3779#ifdef FEAT_MBYTE
3780 if (has_mbyte)
3781 c = (*mb_ptr2char)(regline + col);
3782 else
3783#endif
3784 c = regline[col];
3785 if (prog->regstart == NUL
3786 || prog->regstart == c
3787 || (ireg_ic && ((
3788#ifdef FEAT_MBYTE
3789 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c)))
3790 || (c < 255 && prog->regstart < 255 &&
3791#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003792 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003793 retval = regtry(prog, col);
3794 else
3795 retval = 0;
3796 }
3797 else
3798 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003799#ifdef FEAT_RELTIME
3800 int tm_count = 0;
3801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 /* Messy cases: unanchored match. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003803 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 {
3805 if (prog->regstart != NUL)
3806 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003807 /* Skip until the char we know it must start with.
3808 * Used often, do some work to avoid call overhead. */
3809 if (!ireg_ic
3810#ifdef FEAT_MBYTE
3811 && !has_mbyte
3812#endif
3813 )
3814 s = vim_strbyte(regline + col, prog->regstart);
3815 else
3816 s = cstrchr(regline + col, prog->regstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003817 if (s == NULL)
3818 {
3819 retval = 0;
3820 break;
3821 }
3822 col = (int)(s - regline);
3823 }
3824
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003825 /* Check for maximum column to try. */
3826 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3827 {
3828 retval = 0;
3829 break;
3830 }
3831
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 retval = regtry(prog, col);
3833 if (retval > 0)
3834 break;
3835
3836 /* if not currently on the first line, get it again */
3837 if (reglnum != 0)
3838 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 reglnum = 0;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003840 regline = reg_getline((linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 }
3842 if (regline[col] == NUL)
3843 break;
3844#ifdef FEAT_MBYTE
3845 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003846 col += (*mb_ptr2len)(regline + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 else
3848#endif
3849 ++col;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003850#ifdef FEAT_RELTIME
3851 /* Check for timeout once in a twenty times to avoid overhead. */
3852 if (tm != NULL && ++tm_count == 20)
3853 {
3854 tm_count = 0;
3855 if (profile_passed_limit(tm))
3856 break;
3857 }
3858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 }
3860 }
3861
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862theend:
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003863 /* Free "reg_tofree" when it's a bit big.
3864 * Free regstack and backpos if they are bigger than their initial size. */
3865 if (reg_tofreelen > 400)
3866 {
3867 vim_free(reg_tofree);
3868 reg_tofree = NULL;
3869 }
3870 if (regstack.ga_maxlen > REGSTACK_INITIAL)
3871 ga_clear(&regstack);
3872 if (backpos.ga_maxlen > BACKPOS_INITIAL)
3873 ga_clear(&backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003874
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 return retval;
3876}
3877
3878#ifdef FEAT_SYN_HL
3879static reg_extmatch_T *make_extmatch __ARGS((void));
3880
3881/*
3882 * Create a new extmatch and mark it as referenced once.
3883 */
3884 static reg_extmatch_T *
3885make_extmatch()
3886{
3887 reg_extmatch_T *em;
3888
3889 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T));
3890 if (em != NULL)
3891 em->refcnt = 1;
3892 return em;
3893}
3894
3895/*
3896 * Add a reference to an extmatch.
3897 */
3898 reg_extmatch_T *
3899ref_extmatch(em)
3900 reg_extmatch_T *em;
3901{
3902 if (em != NULL)
3903 em->refcnt++;
3904 return em;
3905}
3906
3907/*
3908 * Remove a reference to an extmatch. If there are no references left, free
3909 * the info.
3910 */
3911 void
3912unref_extmatch(em)
3913 reg_extmatch_T *em;
3914{
3915 int i;
3916
3917 if (em != NULL && --em->refcnt <= 0)
3918 {
3919 for (i = 0; i < NSUBEXP; ++i)
3920 vim_free(em->matches[i]);
3921 vim_free(em);
3922 }
3923}
3924#endif
3925
3926/*
3927 * regtry - try match of "prog" with at regline["col"].
3928 * Returns 0 for failure, number of lines contained in the match otherwise.
3929 */
3930 static long
3931regtry(prog, col)
3932 regprog_T *prog;
3933 colnr_T col;
3934{
3935 reginput = regline + col;
3936 need_clear_subexpr = TRUE;
3937#ifdef FEAT_SYN_HL
3938 /* Clear the external match subpointers if necessary. */
3939 if (prog->reghasz == REX_SET)
3940 need_clear_zsubexpr = TRUE;
3941#endif
3942
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003943 if (regmatch(prog->program + 1) == 0)
3944 return 0;
3945
3946 cleanup_subexpr();
3947 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003949 if (reg_startpos[0].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003951 reg_startpos[0].lnum = 0;
3952 reg_startpos[0].col = col;
3953 }
3954 if (reg_endpos[0].lnum < 0)
3955 {
3956 reg_endpos[0].lnum = reglnum;
3957 reg_endpos[0].col = (int)(reginput - regline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 }
3959 else
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003960 /* Use line number of "\ze". */
3961 reglnum = reg_endpos[0].lnum;
3962 }
3963 else
3964 {
3965 if (reg_startp[0] == NULL)
3966 reg_startp[0] = regline + col;
3967 if (reg_endp[0] == NULL)
3968 reg_endp[0] = reginput;
3969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970#ifdef FEAT_SYN_HL
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003971 /* Package any found \z(...\) matches for export. Default is none. */
3972 unref_extmatch(re_extmatch_out);
3973 re_extmatch_out = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003975 if (prog->reghasz == REX_SET)
3976 {
3977 int i;
3978
3979 cleanup_zsubexpr();
3980 re_extmatch_out = make_extmatch();
3981 for (i = 0; i < NSUBEXP; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003983 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003985 /* Only accept single line matches. */
3986 if (reg_startzpos[i].lnum >= 0
3987 && reg_endzpos[i].lnum == reg_startzpos[i].lnum)
3988 re_extmatch_out->matches[i] =
3989 vim_strnsave(reg_getline(reg_startzpos[i].lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 + reg_startzpos[i].col,
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003991 reg_endzpos[i].col - reg_startzpos[i].col);
3992 }
3993 else
3994 {
3995 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL)
3996 re_extmatch_out->matches[i] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 vim_strnsave(reg_startzp[i],
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003998 (int)(reg_endzp[i] - reg_startzp[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 }
4000 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004002#endif
4003 return 1 + reglnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004}
4005
4006#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007static int reg_prev_class __ARGS((void));
4008
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009/*
4010 * Get class of previous character.
4011 */
4012 static int
4013reg_prev_class()
4014{
4015 if (reginput > regline)
Bram Moolenaarf813a182013-01-30 13:59:37 +01004016 return mb_get_class_buf(reginput - 1
4017 - (*mb_head_off)(regline, reginput - 1), reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 return -1;
4019}
4020
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004022#define ADVANCE_REGINPUT() mb_ptr_adv(reginput)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023
4024/*
4025 * The arguments from BRACE_LIMITS are stored here. They are actually local
4026 * to regmatch(), but they are here to reduce the amount of stack space used
4027 * (it can be called recursively many times).
4028 */
4029static long bl_minval;
4030static long bl_maxval;
4031
4032/*
4033 * regmatch - main matching routine
4034 *
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004035 * Conceptually the strategy is simple: Check to see whether the current node
4036 * matches, push an item onto the regstack and loop to see whether the rest
4037 * matches, and then act accordingly. In practice we make some effort to
4038 * avoid using the regstack, in particular by going through "ordinary" nodes
4039 * (that don't need to know whether the rest of the match failed) by a nested
4040 * loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 *
4042 * Returns TRUE when there is a match. Leaves reginput and reglnum just after
4043 * the last matched character.
4044 * Returns FALSE when there is no match. Leaves reginput and reglnum in an
4045 * undefined state!
4046 */
4047 static int
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004048regmatch(scan)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004049 char_u *scan; /* Current node. */
4050{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004051 char_u *next; /* Next node. */
4052 int op;
4053 int c;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004054 regitem_T *rp;
4055 int no;
4056 int status; /* one of the RA_ values: */
4057#define RA_FAIL 1 /* something failed, abort */
4058#define RA_CONT 2 /* continue in inner loop */
4059#define RA_BREAK 3 /* break inner loop */
4060#define RA_MATCH 4 /* successful match */
4061#define RA_NOMATCH 5 /* didn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004063 /* Make "regstack" and "backpos" empty. They are allocated and freed in
4064 * vim_regexec_both() to reduce malloc()/free() calls. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004065 regstack.ga_len = 0;
4066 backpos.ga_len = 0;
Bram Moolenaar582fd852005-03-28 20:58:01 +00004067
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004068 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004069 * Repeat until "regstack" is empty.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004070 */
4071 for (;;)
4072 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 /* Some patterns my cause a long time to match, even though they are not
4074 * illegal. E.g., "\([a-z]\+\)\+Q". Allow breaking them with CTRL-C. */
4075 fast_breakcheck();
4076
4077#ifdef DEBUG
4078 if (scan != NULL && regnarrate)
4079 {
4080 mch_errmsg(regprop(scan));
4081 mch_errmsg("(\n");
4082 }
4083#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004084
4085 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004086 * Repeat for items that can be matched sequentially, without using the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004087 * regstack.
4088 */
4089 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004091 if (got_int || scan == NULL)
4092 {
4093 status = RA_FAIL;
4094 break;
4095 }
4096 status = RA_CONT;
4097
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098#ifdef DEBUG
4099 if (regnarrate)
4100 {
4101 mch_errmsg(regprop(scan));
4102 mch_errmsg("...\n");
4103# ifdef FEAT_SYN_HL
4104 if (re_extmatch_in != NULL)
4105 {
4106 int i;
4107
4108 mch_errmsg(_("External submatches:\n"));
4109 for (i = 0; i < NSUBEXP; i++)
4110 {
4111 mch_errmsg(" \"");
4112 if (re_extmatch_in->matches[i] != NULL)
4113 mch_errmsg(re_extmatch_in->matches[i]);
4114 mch_errmsg("\"\n");
4115 }
4116 }
4117# endif
4118 }
4119#endif
4120 next = regnext(scan);
4121
4122 op = OP(scan);
4123 /* Check for character class with NL added. */
Bram Moolenaar640009d2006-10-17 16:48:26 +00004124 if (!reg_line_lbr && WITH_NL(op) && REG_MULTI
4125 && *reginput == NUL && reglnum <= reg_maxline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 {
4127 reg_nextline();
4128 }
4129 else if (reg_line_lbr && WITH_NL(op) && *reginput == '\n')
4130 {
4131 ADVANCE_REGINPUT();
4132 }
4133 else
4134 {
4135 if (WITH_NL(op))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004136 op -= ADD_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137#ifdef FEAT_MBYTE
4138 if (has_mbyte)
4139 c = (*mb_ptr2char)(reginput);
4140 else
4141#endif
4142 c = *reginput;
4143 switch (op)
4144 {
4145 case BOL:
4146 if (reginput != regline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004147 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 break;
4149
4150 case EOL:
4151 if (c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004152 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 break;
4154
4155 case RE_BOF:
Bram Moolenaara7139332007-12-09 18:26:22 +00004156 /* We're not at the beginning of the file when below the first
4157 * line where we started, not at the start of the line or we
4158 * didn't start at the first line of the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004159 if (reglnum != 0 || reginput != regline
Bram Moolenaara7139332007-12-09 18:26:22 +00004160 || (REG_MULTI && reg_firstlnum > 1))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004161 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 break;
4163
4164 case RE_EOF:
4165 if (reglnum != reg_maxline || c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004166 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 break;
4168
4169 case CURSOR:
4170 /* Check if the buffer is in a window and compare the
4171 * reg_win->w_cursor position to the match position. */
4172 if (reg_win == NULL
4173 || (reglnum + reg_firstlnum != reg_win->w_cursor.lnum)
4174 || ((colnr_T)(reginput - regline) != reg_win->w_cursor.col))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004175 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 break;
4177
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004178 case RE_MARK:
4179 /* Compare the mark position to the match position. NOTE: Always
4180 * uses the current buffer. */
4181 {
4182 int mark = OPERAND(scan)[0];
4183 int cmp = OPERAND(scan)[1];
4184 pos_T *pos;
4185
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004186 pos = getmark_buf(reg_buf, mark, FALSE);
Bram Moolenaare9400a42007-05-06 13:04:32 +00004187 if (pos == NULL /* mark doesn't exist */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004188 || pos->lnum <= 0 /* mark isn't set (in curbuf) */
4189 || (pos->lnum == reglnum + reg_firstlnum
4190 ? (pos->col == (colnr_T)(reginput - regline)
4191 ? (cmp == '<' || cmp == '>')
4192 : (pos->col < (colnr_T)(reginput - regline)
4193 ? cmp != '>'
4194 : cmp != '<'))
4195 : (pos->lnum < reglnum + reg_firstlnum
4196 ? cmp != '>'
4197 : cmp != '<')))
4198 status = RA_NOMATCH;
4199 }
4200 break;
4201
4202 case RE_VISUAL:
4203#ifdef FEAT_VISUAL
4204 /* Check if the buffer is the current buffer. and whether the
4205 * position is inside the Visual area. */
4206 if (reg_buf != curbuf || VIsual.lnum == 0)
4207 status = RA_NOMATCH;
4208 else
4209 {
4210 pos_T top, bot;
4211 linenr_T lnum;
4212 colnr_T col;
4213 win_T *wp = reg_win == NULL ? curwin : reg_win;
4214 int mode;
4215
4216 if (VIsual_active)
4217 {
4218 if (lt(VIsual, wp->w_cursor))
4219 {
4220 top = VIsual;
4221 bot = wp->w_cursor;
4222 }
4223 else
4224 {
4225 top = wp->w_cursor;
4226 bot = VIsual;
4227 }
4228 mode = VIsual_mode;
4229 }
4230 else
4231 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004232 if (lt(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004233 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004234 top = curbuf->b_visual.vi_start;
4235 bot = curbuf->b_visual.vi_end;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004236 }
4237 else
4238 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004239 top = curbuf->b_visual.vi_end;
4240 bot = curbuf->b_visual.vi_start;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004241 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004242 mode = curbuf->b_visual.vi_mode;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004243 }
4244 lnum = reglnum + reg_firstlnum;
4245 col = (colnr_T)(reginput - regline);
4246 if (lnum < top.lnum || lnum > bot.lnum)
4247 status = RA_NOMATCH;
4248 else if (mode == 'v')
4249 {
4250 if ((lnum == top.lnum && col < top.col)
4251 || (lnum == bot.lnum
4252 && col >= bot.col + (*p_sel != 'e')))
4253 status = RA_NOMATCH;
4254 }
4255 else if (mode == Ctrl_V)
4256 {
4257 colnr_T start, end;
4258 colnr_T start2, end2;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004259 colnr_T cols;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004260
4261 getvvcol(wp, &top, &start, NULL, &end);
4262 getvvcol(wp, &bot, &start2, NULL, &end2);
4263 if (start2 < start)
4264 start = start2;
4265 if (end2 > end)
4266 end = end2;
4267 if (top.col == MAXCOL || bot.col == MAXCOL)
4268 end = MAXCOL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004269 cols = win_linetabsize(wp,
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004270 regline, (colnr_T)(reginput - regline));
Bram Moolenaar89d40322006-08-29 15:30:07 +00004271 if (cols < start || cols > end - (*p_sel == 'e'))
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004272 status = RA_NOMATCH;
4273 }
4274 }
4275#else
4276 status = RA_NOMATCH;
4277#endif
4278 break;
4279
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 case RE_LNUM:
4281 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + reg_firstlnum),
4282 scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004283 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 break;
4285
4286 case RE_COL:
4287 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004288 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 break;
4290
4291 case RE_VCOL:
4292 if (!re_num_cmp((long_u)win_linetabsize(
4293 reg_win == NULL ? curwin : reg_win,
4294 regline, (colnr_T)(reginput - regline)) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004295 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 break;
4297
4298 case BOW: /* \<word; reginput points to w */
4299 if (c == NUL) /* Can't match at end of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004300 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004302 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 {
4304 int this_class;
4305
4306 /* Get class of current and previous char (if it exists). */
Bram Moolenaarf813a182013-01-30 13:59:37 +01004307 this_class = mb_get_class_buf(reginput, reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 if (this_class <= 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004309 status = RA_NOMATCH; /* not on a word at all */
4310 else if (reg_prev_class() == this_class)
4311 status = RA_NOMATCH; /* previous char is in same word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 }
4313#endif
4314 else
4315 {
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01004316 if (!vim_iswordc_buf(c, reg_buf) || (reginput > regline
4317 && vim_iswordc_buf(reginput[-1], reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004318 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 }
4320 break;
4321
4322 case EOW: /* word\>; reginput points after d */
4323 if (reginput == regline) /* Can't match at start of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004324 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004326 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 {
4328 int this_class, prev_class;
4329
4330 /* Get class of current and previous char (if it exists). */
Bram Moolenaarf813a182013-01-30 13:59:37 +01004331 this_class = mb_get_class_buf(reginput, reg_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004332 prev_class = reg_prev_class();
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004333 if (this_class == prev_class
4334 || prev_class == 0 || prev_class == 1)
4335 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004338 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 {
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004340 if (!vim_iswordc_buf(reginput[-1], reg_buf)
4341 || (reginput[0] != NUL && vim_iswordc_buf(c, reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004342 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 }
4344 break; /* Matched with EOW */
4345
4346 case ANY:
4347 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004348 status = RA_NOMATCH;
4349 else
4350 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 break;
4352
4353 case IDENT:
4354 if (!vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004355 status = RA_NOMATCH;
4356 else
4357 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 break;
4359
4360 case SIDENT:
4361 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004362 status = RA_NOMATCH;
4363 else
4364 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 break;
4366
4367 case KWORD:
Bram Moolenaarf813a182013-01-30 13:59:37 +01004368 if (!vim_iswordp_buf(reginput, reg_buf))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004369 status = RA_NOMATCH;
4370 else
4371 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004372 break;
4373
4374 case SKWORD:
Bram Moolenaarf813a182013-01-30 13:59:37 +01004375 if (VIM_ISDIGIT(*reginput) || !vim_iswordp_buf(reginput, reg_buf))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004376 status = RA_NOMATCH;
4377 else
4378 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 break;
4380
4381 case FNAME:
4382 if (!vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004383 status = RA_NOMATCH;
4384 else
4385 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 break;
4387
4388 case SFNAME:
4389 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004390 status = RA_NOMATCH;
4391 else
4392 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 break;
4394
4395 case PRINT:
4396 if (ptr2cells(reginput) != 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004397 status = RA_NOMATCH;
4398 else
4399 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004400 break;
4401
4402 case SPRINT:
4403 if (VIM_ISDIGIT(*reginput) || ptr2cells(reginput) != 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004404 status = RA_NOMATCH;
4405 else
4406 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 break;
4408
4409 case WHITE:
4410 if (!vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004411 status = RA_NOMATCH;
4412 else
4413 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 break;
4415
4416 case NWHITE:
4417 if (c == NUL || vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004418 status = RA_NOMATCH;
4419 else
4420 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 break;
4422
4423 case DIGIT:
4424 if (!ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004425 status = RA_NOMATCH;
4426 else
4427 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 break;
4429
4430 case NDIGIT:
4431 if (c == NUL || ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004432 status = RA_NOMATCH;
4433 else
4434 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 break;
4436
4437 case HEX:
4438 if (!ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004439 status = RA_NOMATCH;
4440 else
4441 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 break;
4443
4444 case NHEX:
4445 if (c == NUL || ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004446 status = RA_NOMATCH;
4447 else
4448 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 break;
4450
4451 case OCTAL:
4452 if (!ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004453 status = RA_NOMATCH;
4454 else
4455 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 break;
4457
4458 case NOCTAL:
4459 if (c == NUL || ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004460 status = RA_NOMATCH;
4461 else
4462 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 break;
4464
4465 case WORD:
4466 if (!ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004467 status = RA_NOMATCH;
4468 else
4469 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 break;
4471
4472 case NWORD:
4473 if (c == NUL || ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004474 status = RA_NOMATCH;
4475 else
4476 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 break;
4478
4479 case HEAD:
4480 if (!ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004481 status = RA_NOMATCH;
4482 else
4483 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 break;
4485
4486 case NHEAD:
4487 if (c == NUL || ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004488 status = RA_NOMATCH;
4489 else
4490 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 break;
4492
4493 case ALPHA:
4494 if (!ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004495 status = RA_NOMATCH;
4496 else
4497 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 break;
4499
4500 case NALPHA:
4501 if (c == NUL || ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004502 status = RA_NOMATCH;
4503 else
4504 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 break;
4506
4507 case LOWER:
4508 if (!ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004509 status = RA_NOMATCH;
4510 else
4511 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 break;
4513
4514 case NLOWER:
4515 if (c == NUL || ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004516 status = RA_NOMATCH;
4517 else
4518 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 break;
4520
4521 case UPPER:
4522 if (!ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004523 status = RA_NOMATCH;
4524 else
4525 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 break;
4527
4528 case NUPPER:
4529 if (c == NUL || ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004530 status = RA_NOMATCH;
4531 else
4532 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 break;
4534
4535 case EXACTLY:
4536 {
4537 int len;
4538 char_u *opnd;
4539
4540 opnd = OPERAND(scan);
4541 /* Inline the first byte, for speed. */
4542 if (*opnd != *reginput
4543 && (!ireg_ic || (
4544#ifdef FEAT_MBYTE
4545 !enc_utf8 &&
4546#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00004547 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput))))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004548 status = RA_NOMATCH;
4549 else if (*opnd == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 {
4551 /* match empty string always works; happens when "~" is
4552 * empty. */
4553 }
4554 else if (opnd[1] == NUL
4555#ifdef FEAT_MBYTE
4556 && !(enc_utf8 && ireg_ic)
4557#endif
4558 )
4559 ++reginput; /* matched a single char */
4560 else
4561 {
4562 len = (int)STRLEN(opnd);
4563 /* Need to match first byte again for multi-byte. */
4564 if (cstrncmp(opnd, reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004565 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566#ifdef FEAT_MBYTE
4567 /* Check for following composing character. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004568 else if (enc_utf8
4569 && UTF_COMPOSINGLIKE(reginput, reginput + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 {
4571 /* raaron: This code makes a composing character get
4572 * ignored, which is the correct behavior (sometimes)
4573 * for voweled Hebrew texts. */
4574 if (!ireg_icombine)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004575 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004578 else
4579 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 }
4581 }
4582 break;
4583
4584 case ANYOF:
4585 case ANYBUT:
4586 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004587 status = RA_NOMATCH;
4588 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF))
4589 status = RA_NOMATCH;
4590 else
4591 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 break;
4593
4594#ifdef FEAT_MBYTE
4595 case MULTIBYTECODE:
4596 if (has_mbyte)
4597 {
4598 int i, len;
4599 char_u *opnd;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004600 int opndc = 0, inpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601
4602 opnd = OPERAND(scan);
4603 /* Safety check (just in case 'encoding' was changed since
4604 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004605 if ((len = (*mb_ptr2len)(opnd)) < 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004606 {
4607 status = RA_NOMATCH;
4608 break;
4609 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004610 if (enc_utf8)
4611 opndc = mb_ptr2char(opnd);
4612 if (enc_utf8 && utf_iscomposing(opndc))
4613 {
4614 /* When only a composing char is given match at any
4615 * position where that composing char appears. */
4616 status = RA_NOMATCH;
4617 for (i = 0; reginput[i] != NUL; i += utf_char2len(inpc))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004618 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004619 inpc = mb_ptr2char(reginput + i);
4620 if (!utf_iscomposing(inpc))
4621 {
4622 if (i > 0)
4623 break;
4624 }
4625 else if (opndc == inpc)
4626 {
4627 /* Include all following composing chars. */
4628 len = i + mb_ptr2len(reginput + i);
4629 status = RA_MATCH;
4630 break;
4631 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004632 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004633 }
4634 else
4635 for (i = 0; i < len; ++i)
4636 if (opnd[i] != reginput[i])
4637 {
4638 status = RA_NOMATCH;
4639 break;
4640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 reginput += len;
4642 }
4643 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004644 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 break;
4646#endif
4647
4648 case NOTHING:
4649 break;
4650
4651 case BACK:
Bram Moolenaar582fd852005-03-28 20:58:01 +00004652 {
4653 int i;
4654 backpos_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655
Bram Moolenaar582fd852005-03-28 20:58:01 +00004656 /*
4657 * When we run into BACK we need to check if we don't keep
4658 * looping without matching any input. The second and later
4659 * times a BACK is encountered it fails if the input is still
4660 * at the same position as the previous time.
4661 * The positions are stored in "backpos" and found by the
4662 * current value of "scan", the position in the RE program.
4663 */
4664 bp = (backpos_T *)backpos.ga_data;
4665 for (i = 0; i < backpos.ga_len; ++i)
4666 if (bp[i].bp_scan == scan)
4667 break;
4668 if (i == backpos.ga_len)
4669 {
4670 /* First time at this BACK, make room to store the pos. */
4671 if (ga_grow(&backpos, 1) == FAIL)
4672 status = RA_FAIL;
4673 else
4674 {
4675 /* get "ga_data" again, it may have changed */
4676 bp = (backpos_T *)backpos.ga_data;
4677 bp[i].bp_scan = scan;
4678 ++backpos.ga_len;
4679 }
4680 }
4681 else if (reg_save_equal(&bp[i].bp_pos))
4682 /* Still at same position as last time, fail. */
4683 status = RA_NOMATCH;
4684
4685 if (status != RA_FAIL && status != RA_NOMATCH)
4686 reg_save(&bp[i].bp_pos, &backpos);
4687 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004688 break;
4689
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 case MOPEN + 0: /* Match start: \zs */
4691 case MOPEN + 1: /* \( */
4692 case MOPEN + 2:
4693 case MOPEN + 3:
4694 case MOPEN + 4:
4695 case MOPEN + 5:
4696 case MOPEN + 6:
4697 case MOPEN + 7:
4698 case MOPEN + 8:
4699 case MOPEN + 9:
4700 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 no = op - MOPEN;
4702 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004703 rp = regstack_push(RS_MOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004704 if (rp == NULL)
4705 status = RA_FAIL;
4706 else
4707 {
4708 rp->rs_no = no;
4709 save_se(&rp->rs_un.sesave, &reg_startpos[no],
4710 &reg_startp[no]);
4711 /* We simply continue and handle the result when done. */
4712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004714 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715
4716 case NOPEN: /* \%( */
4717 case NCLOSE: /* \) after \%( */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004718 if (regstack_push(RS_NOPEN, scan) == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004719 status = RA_FAIL;
4720 /* We simply continue and handle the result when done. */
4721 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722
4723#ifdef FEAT_SYN_HL
4724 case ZOPEN + 1:
4725 case ZOPEN + 2:
4726 case ZOPEN + 3:
4727 case ZOPEN + 4:
4728 case ZOPEN + 5:
4729 case ZOPEN + 6:
4730 case ZOPEN + 7:
4731 case ZOPEN + 8:
4732 case ZOPEN + 9:
4733 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 no = op - ZOPEN;
4735 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004736 rp = regstack_push(RS_ZOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004737 if (rp == NULL)
4738 status = RA_FAIL;
4739 else
4740 {
4741 rp->rs_no = no;
4742 save_se(&rp->rs_un.sesave, &reg_startzpos[no],
4743 &reg_startzp[no]);
4744 /* We simply continue and handle the result when done. */
4745 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004747 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748#endif
4749
4750 case MCLOSE + 0: /* Match end: \ze */
4751 case MCLOSE + 1: /* \) */
4752 case MCLOSE + 2:
4753 case MCLOSE + 3:
4754 case MCLOSE + 4:
4755 case MCLOSE + 5:
4756 case MCLOSE + 6:
4757 case MCLOSE + 7:
4758 case MCLOSE + 8:
4759 case MCLOSE + 9:
4760 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 no = op - MCLOSE;
4762 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004763 rp = regstack_push(RS_MCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004764 if (rp == NULL)
4765 status = RA_FAIL;
4766 else
4767 {
4768 rp->rs_no = no;
4769 save_se(&rp->rs_un.sesave, &reg_endpos[no], &reg_endp[no]);
4770 /* We simply continue and handle the result when done. */
4771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004773 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774
4775#ifdef FEAT_SYN_HL
4776 case ZCLOSE + 1: /* \) after \z( */
4777 case ZCLOSE + 2:
4778 case ZCLOSE + 3:
4779 case ZCLOSE + 4:
4780 case ZCLOSE + 5:
4781 case ZCLOSE + 6:
4782 case ZCLOSE + 7:
4783 case ZCLOSE + 8:
4784 case ZCLOSE + 9:
4785 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 no = op - ZCLOSE;
4787 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004788 rp = regstack_push(RS_ZCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004789 if (rp == NULL)
4790 status = RA_FAIL;
4791 else
4792 {
4793 rp->rs_no = no;
4794 save_se(&rp->rs_un.sesave, &reg_endzpos[no],
4795 &reg_endzp[no]);
4796 /* We simply continue and handle the result when done. */
4797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004799 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800#endif
4801
4802 case BACKREF + 1:
4803 case BACKREF + 2:
4804 case BACKREF + 3:
4805 case BACKREF + 4:
4806 case BACKREF + 5:
4807 case BACKREF + 6:
4808 case BACKREF + 7:
4809 case BACKREF + 8:
4810 case BACKREF + 9:
4811 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004812 int len;
4813 linenr_T clnum;
4814 colnr_T ccol;
4815 char_u *p;
4816
4817 no = op - BACKREF;
4818 cleanup_subexpr();
4819 if (!REG_MULTI) /* Single-line regexp */
4820 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004821 if (reg_startp[no] == NULL || reg_endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 {
4823 /* Backref was not set: Match an empty string. */
4824 len = 0;
4825 }
4826 else
4827 {
4828 /* Compare current input with back-ref in the same
4829 * line. */
4830 len = (int)(reg_endp[no] - reg_startp[no]);
4831 if (cstrncmp(reg_startp[no], reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004832 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 }
4834 }
4835 else /* Multi-line regexp */
4836 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004837 if (reg_startpos[no].lnum < 0 || reg_endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 {
4839 /* Backref was not set: Match an empty string. */
4840 len = 0;
4841 }
4842 else
4843 {
4844 if (reg_startpos[no].lnum == reglnum
4845 && reg_endpos[no].lnum == reglnum)
4846 {
4847 /* Compare back-ref within the current line. */
4848 len = reg_endpos[no].col - reg_startpos[no].col;
4849 if (cstrncmp(regline + reg_startpos[no].col,
4850 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004851 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 }
4853 else
4854 {
4855 /* Messy situation: Need to compare between two
4856 * lines. */
4857 ccol = reg_startpos[no].col;
4858 clnum = reg_startpos[no].lnum;
4859 for (;;)
4860 {
4861 /* Since getting one line may invalidate
4862 * the other, need to make copy. Slow! */
4863 if (regline != reg_tofree)
4864 {
4865 len = (int)STRLEN(regline);
4866 if (reg_tofree == NULL
4867 || len >= (int)reg_tofreelen)
4868 {
4869 len += 50; /* get some extra */
4870 vim_free(reg_tofree);
4871 reg_tofree = alloc(len);
4872 if (reg_tofree == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004873 {
4874 status = RA_FAIL; /* outof memory!*/
4875 break;
4876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 reg_tofreelen = len;
4878 }
4879 STRCPY(reg_tofree, regline);
4880 reginput = reg_tofree
4881 + (reginput - regline);
4882 regline = reg_tofree;
4883 }
4884
4885 /* Get the line to compare with. */
4886 p = reg_getline(clnum);
4887 if (clnum == reg_endpos[no].lnum)
4888 len = reg_endpos[no].col - ccol;
4889 else
4890 len = (int)STRLEN(p + ccol);
4891
4892 if (cstrncmp(p + ccol, reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004893 {
4894 status = RA_NOMATCH; /* doesn't match */
4895 break;
4896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 if (clnum == reg_endpos[no].lnum)
4898 break; /* match and at end! */
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004899 if (reglnum >= reg_maxline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004900 {
4901 status = RA_NOMATCH; /* text too short */
4902 break;
4903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904
4905 /* Advance to next line. */
4906 reg_nextline();
4907 ++clnum;
4908 ccol = 0;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004909 if (got_int)
4910 {
4911 status = RA_FAIL;
4912 break;
4913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 }
4915
4916 /* found a match! Note that regline may now point
4917 * to a copy of the line, that should not matter. */
4918 }
4919 }
4920 }
4921
4922 /* Matched the backref, skip over it. */
4923 reginput += len;
4924 }
4925 break;
4926
4927#ifdef FEAT_SYN_HL
4928 case ZREF + 1:
4929 case ZREF + 2:
4930 case ZREF + 3:
4931 case ZREF + 4:
4932 case ZREF + 5:
4933 case ZREF + 6:
4934 case ZREF + 7:
4935 case ZREF + 8:
4936 case ZREF + 9:
4937 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 int len;
4939
4940 cleanup_zsubexpr();
4941 no = op - ZREF;
4942 if (re_extmatch_in != NULL
4943 && re_extmatch_in->matches[no] != NULL)
4944 {
4945 len = (int)STRLEN(re_extmatch_in->matches[no]);
4946 if (cstrncmp(re_extmatch_in->matches[no],
4947 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004948 status = RA_NOMATCH;
4949 else
4950 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 }
4952 else
4953 {
4954 /* Backref was not set: Match an empty string. */
4955 }
4956 }
4957 break;
4958#endif
4959
4960 case BRANCH:
4961 {
4962 if (OP(next) != BRANCH) /* No choice. */
4963 next = OPERAND(scan); /* Avoid recursion. */
4964 else
4965 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004966 rp = regstack_push(RS_BRANCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004967 if (rp == NULL)
4968 status = RA_FAIL;
4969 else
4970 status = RA_BREAK; /* rest is below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
4972 }
4973 break;
4974
4975 case BRACE_LIMITS:
4976 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 if (OP(next) == BRACE_SIMPLE)
4978 {
4979 bl_minval = OPERAND_MIN(scan);
4980 bl_maxval = OPERAND_MAX(scan);
4981 }
4982 else if (OP(next) >= BRACE_COMPLEX
4983 && OP(next) < BRACE_COMPLEX + 10)
4984 {
4985 no = OP(next) - BRACE_COMPLEX;
4986 brace_min[no] = OPERAND_MIN(scan);
4987 brace_max[no] = OPERAND_MAX(scan);
4988 brace_count[no] = 0;
4989 }
4990 else
4991 {
4992 EMSG(_(e_internal)); /* Shouldn't happen */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004993 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 }
4995 }
4996 break;
4997
4998 case BRACE_COMPLEX + 0:
4999 case BRACE_COMPLEX + 1:
5000 case BRACE_COMPLEX + 2:
5001 case BRACE_COMPLEX + 3:
5002 case BRACE_COMPLEX + 4:
5003 case BRACE_COMPLEX + 5:
5004 case BRACE_COMPLEX + 6:
5005 case BRACE_COMPLEX + 7:
5006 case BRACE_COMPLEX + 8:
5007 case BRACE_COMPLEX + 9:
5008 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 no = op - BRACE_COMPLEX;
5010 ++brace_count[no];
5011
5012 /* If not matched enough times yet, try one more */
5013 if (brace_count[no] <= (brace_min[no] <= brace_max[no]
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005014 ? brace_min[no] : brace_max[no]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005016 rp = regstack_push(RS_BRCPLX_MORE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005017 if (rp == NULL)
5018 status = RA_FAIL;
5019 else
5020 {
5021 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005022 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005023 next = OPERAND(scan);
5024 /* We continue and handle the result when done. */
5025 }
5026 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 }
5028
5029 /* If matched enough times, may try matching some more */
5030 if (brace_min[no] <= brace_max[no])
5031 {
5032 /* Range is the normal way around, use longest match */
5033 if (brace_count[no] <= brace_max[no])
5034 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005035 rp = regstack_push(RS_BRCPLX_LONG, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005036 if (rp == NULL)
5037 status = RA_FAIL;
5038 else
5039 {
5040 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005041 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005042 next = OPERAND(scan);
5043 /* We continue and handle the result when done. */
5044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 }
5046 }
5047 else
5048 {
5049 /* Range is backwards, use shortest match first */
5050 if (brace_count[no] <= brace_min[no])
5051 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005052 rp = regstack_push(RS_BRCPLX_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005053 if (rp == NULL)
5054 status = RA_FAIL;
5055 else
5056 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005057 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005058 /* We continue and handle the result when done. */
5059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 }
5061 }
5062 }
5063 break;
5064
5065 case BRACE_SIMPLE:
5066 case STAR:
5067 case PLUS:
5068 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005069 regstar_T rst;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070
5071 /*
5072 * Lookahead to avoid useless match attempts when we know
5073 * what character comes next.
5074 */
5075 if (OP(next) == EXACTLY)
5076 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005077 rst.nextb = *OPERAND(next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 if (ireg_ic)
5079 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005080 if (MB_ISUPPER(rst.nextb))
5081 rst.nextb_ic = MB_TOLOWER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 else
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005083 rst.nextb_ic = MB_TOUPPER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 }
5085 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005086 rst.nextb_ic = rst.nextb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 }
5088 else
5089 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005090 rst.nextb = NUL;
5091 rst.nextb_ic = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 }
5093 if (op != BRACE_SIMPLE)
5094 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005095 rst.minval = (op == STAR) ? 0 : 1;
5096 rst.maxval = MAX_LIMIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 }
5098 else
5099 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005100 rst.minval = bl_minval;
5101 rst.maxval = bl_maxval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 }
5103
5104 /*
5105 * When maxval > minval, try matching as much as possible, up
5106 * to maxval. When maxval < minval, try matching at least the
5107 * minimal number (since the range is backwards, that's also
5108 * maxval!).
5109 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005110 rst.count = regrepeat(OPERAND(scan), rst.maxval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005113 status = RA_FAIL;
5114 break;
5115 }
5116 if (rst.minval <= rst.maxval
5117 ? rst.count >= rst.minval : rst.count >= rst.maxval)
5118 {
5119 /* It could match. Prepare for trying to match what
5120 * follows. The code is below. Parameters are stored in
5121 * a regstar_T on the regstack. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005122 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005123 {
5124 EMSG(_(e_maxmempat));
5125 status = RA_FAIL;
5126 }
5127 else if (ga_grow(&regstack, sizeof(regstar_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005128 status = RA_FAIL;
5129 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005131 regstack.ga_len += sizeof(regstar_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005132 rp = regstack_push(rst.minval <= rst.maxval
Bram Moolenaar582fd852005-03-28 20:58:01 +00005133 ? RS_STAR_LONG : RS_STAR_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005134 if (rp == NULL)
5135 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005137 {
5138 *(((regstar_T *)rp) - 1) = rst;
5139 status = RA_BREAK; /* skip the restore bits */
5140 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 }
5142 }
5143 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005144 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 }
5147 break;
5148
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005149 case NOMATCH:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 case MATCH:
5151 case SUBPAT:
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005152 rp = regstack_push(RS_NOMATCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005153 if (rp == NULL)
5154 status = RA_FAIL;
5155 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005157 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005158 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005159 next = OPERAND(scan);
5160 /* We continue and handle the result when done. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 }
5162 break;
5163
5164 case BEHIND:
5165 case NOBEHIND:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005166 /* Need a bit of room to store extra positions. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005167 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005168 {
5169 EMSG(_(e_maxmempat));
5170 status = RA_FAIL;
5171 }
5172 else if (ga_grow(&regstack, sizeof(regbehind_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005173 status = RA_FAIL;
5174 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005176 regstack.ga_len += sizeof(regbehind_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005177 rp = regstack_push(RS_BEHIND1, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005178 if (rp == NULL)
5179 status = RA_FAIL;
5180 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005182 /* Need to save the subexpr to be able to restore them
5183 * when there is a match but we don't use it. */
5184 save_subexpr(((regbehind_T *)rp) - 1);
5185
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005186 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005187 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005188 /* First try if what follows matches. If it does then we
5189 * check the behind match by looping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005192 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193
5194 case BHPOS:
5195 if (REG_MULTI)
5196 {
5197 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline)
5198 || behind_pos.rs_u.pos.lnum != reglnum)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005199 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200 }
5201 else if (behind_pos.rs_u.ptr != reginput)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005202 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005203 break;
5204
5205 case NEWL:
Bram Moolenaar640009d2006-10-17 16:48:26 +00005206 if ((c != NUL || !REG_MULTI || reglnum > reg_maxline
5207 || reg_line_lbr) && (c != '\n' || !reg_line_lbr))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005208 status = RA_NOMATCH;
5209 else if (reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 ADVANCE_REGINPUT();
5211 else
5212 reg_nextline();
5213 break;
5214
5215 case END:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005216 status = RA_MATCH; /* Success! */
5217 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218
5219 default:
5220 EMSG(_(e_re_corr));
5221#ifdef DEBUG
5222 printf("Illegal op code %d\n", op);
5223#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005224 status = RA_FAIL;
5225 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 }
5227 }
5228
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005229 /* If we can't continue sequentially, break the inner loop. */
5230 if (status != RA_CONT)
5231 break;
5232
5233 /* Continue in inner loop, advance to next item. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 scan = next;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005235
5236 } /* end of inner loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237
5238 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005239 * If there is something on the regstack execute the code for the state.
Bram Moolenaar582fd852005-03-28 20:58:01 +00005240 * If the state is popped then loop and use the older state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005242 while (regstack.ga_len > 0 && status != RA_FAIL)
5243 {
5244 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
5245 switch (rp->rs_state)
5246 {
5247 case RS_NOPEN:
5248 /* Result is passed on as-is, simply pop the state. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005249 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005250 break;
5251
5252 case RS_MOPEN:
5253 /* Pop the state. Restore pointers when there is no match. */
5254 if (status == RA_NOMATCH)
5255 restore_se(&rp->rs_un.sesave, &reg_startpos[rp->rs_no],
5256 &reg_startp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005257 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005258 break;
5259
5260#ifdef FEAT_SYN_HL
5261 case RS_ZOPEN:
5262 /* Pop the state. Restore pointers when there is no match. */
5263 if (status == RA_NOMATCH)
5264 restore_se(&rp->rs_un.sesave, &reg_startzpos[rp->rs_no],
5265 &reg_startzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005266 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005267 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005269
5270 case RS_MCLOSE:
5271 /* Pop the state. Restore pointers when there is no match. */
5272 if (status == RA_NOMATCH)
5273 restore_se(&rp->rs_un.sesave, &reg_endpos[rp->rs_no],
5274 &reg_endp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005275 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005276 break;
5277
5278#ifdef FEAT_SYN_HL
5279 case RS_ZCLOSE:
5280 /* Pop the state. Restore pointers when there is no match. */
5281 if (status == RA_NOMATCH)
5282 restore_se(&rp->rs_un.sesave, &reg_endzpos[rp->rs_no],
5283 &reg_endzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005284 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005285 break;
5286#endif
5287
5288 case RS_BRANCH:
5289 if (status == RA_MATCH)
5290 /* this branch matched, use it */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005291 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005292 else
5293 {
5294 if (status != RA_BREAK)
5295 {
5296 /* After a non-matching branch: try next one. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005297 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005298 scan = rp->rs_scan;
5299 }
5300 if (scan == NULL || OP(scan) != BRANCH)
5301 {
5302 /* no more branches, didn't find a match */
5303 status = RA_NOMATCH;
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005304 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005305 }
5306 else
5307 {
5308 /* Prepare to try a branch. */
5309 rp->rs_scan = regnext(scan);
Bram Moolenaar582fd852005-03-28 20:58:01 +00005310 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005311 scan = OPERAND(scan);
5312 }
5313 }
5314 break;
5315
5316 case RS_BRCPLX_MORE:
5317 /* Pop the state. Restore pointers when there is no match. */
5318 if (status == RA_NOMATCH)
5319 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005320 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005321 --brace_count[rp->rs_no]; /* decrement match count */
5322 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005323 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005324 break;
5325
5326 case RS_BRCPLX_LONG:
5327 /* Pop the state. Restore pointers when there is no match. */
5328 if (status == RA_NOMATCH)
5329 {
5330 /* There was no match, but we did find enough matches. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005331 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005332 --brace_count[rp->rs_no];
5333 /* continue with the items after "\{}" */
5334 status = RA_CONT;
5335 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005336 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005337 if (status == RA_CONT)
5338 scan = regnext(scan);
5339 break;
5340
5341 case RS_BRCPLX_SHORT:
5342 /* Pop the state. Restore pointers when there is no match. */
5343 if (status == RA_NOMATCH)
5344 /* There was no match, try to match one more item. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005345 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005346 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005347 if (status == RA_NOMATCH)
5348 {
5349 scan = OPERAND(scan);
5350 status = RA_CONT;
5351 }
5352 break;
5353
5354 case RS_NOMATCH:
5355 /* Pop the state. If the operand matches for NOMATCH or
5356 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup,
5357 * except for SUBPAT, and continue with the next item. */
5358 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH))
5359 status = RA_NOMATCH;
5360 else
5361 {
5362 status = RA_CONT;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005363 if (rp->rs_no != SUBPAT) /* zero-width */
5364 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005365 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005366 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005367 if (status == RA_CONT)
5368 scan = regnext(scan);
5369 break;
5370
5371 case RS_BEHIND1:
5372 if (status == RA_NOMATCH)
5373 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005374 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005375 regstack.ga_len -= sizeof(regbehind_T);
5376 }
5377 else
5378 {
5379 /* The stuff after BEHIND/NOBEHIND matches. Now try if
5380 * the behind part does (not) match before the current
5381 * position in the input. This must be done at every
5382 * position in the input and checking if the match ends at
5383 * the current position. */
5384
5385 /* save the position after the found match for next */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005386 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005387
5388 /* start looking for a match with operand at the current
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00005389 * position. Go back one character until we find the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005390 * result, hitting the start of the line or the previous
5391 * line (for multi-line matching).
5392 * Set behind_pos to where the match should end, BHPOS
5393 * will match it. Save the current value. */
5394 (((regbehind_T *)rp) - 1)->save_behind = behind_pos;
5395 behind_pos = rp->rs_un.regsave;
5396
5397 rp->rs_state = RS_BEHIND2;
5398
Bram Moolenaar582fd852005-03-28 20:58:01 +00005399 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005400 scan = OPERAND(rp->rs_scan);
5401 }
5402 break;
5403
5404 case RS_BEHIND2:
5405 /*
5406 * Looping for BEHIND / NOBEHIND match.
5407 */
5408 if (status == RA_MATCH && reg_save_equal(&behind_pos))
5409 {
5410 /* found a match that ends where "next" started */
5411 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5412 if (rp->rs_no == BEHIND)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005413 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5414 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005415 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005416 {
5417 /* But we didn't want a match. Need to restore the
5418 * subexpr, because what follows matched, so they have
5419 * been set. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005420 status = RA_NOMATCH;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005421 restore_subexpr(((regbehind_T *)rp) - 1);
5422 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005423 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005424 regstack.ga_len -= sizeof(regbehind_T);
5425 }
5426 else
5427 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005428 /* No match or a match that doesn't end where we want it: Go
5429 * back one character. May go to previous line once. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005430 no = OK;
5431 if (REG_MULTI)
5432 {
5433 if (rp->rs_un.regsave.rs_u.pos.col == 0)
5434 {
5435 if (rp->rs_un.regsave.rs_u.pos.lnum
5436 < behind_pos.rs_u.pos.lnum
5437 || reg_getline(
5438 --rp->rs_un.regsave.rs_u.pos.lnum)
5439 == NULL)
5440 no = FAIL;
5441 else
5442 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005443 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005444 rp->rs_un.regsave.rs_u.pos.col =
5445 (colnr_T)STRLEN(regline);
5446 }
5447 }
5448 else
5449 --rp->rs_un.regsave.rs_u.pos.col;
5450 }
5451 else
5452 {
5453 if (rp->rs_un.regsave.rs_u.ptr == regline)
5454 no = FAIL;
5455 else
5456 --rp->rs_un.regsave.rs_u.ptr;
5457 }
5458 if (no == OK)
5459 {
5460 /* Advanced, prepare for finding match again. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005461 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005462 scan = OPERAND(rp->rs_scan);
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005463 if (status == RA_MATCH)
5464 {
5465 /* We did match, so subexpr may have been changed,
5466 * need to restore them for the next try. */
5467 status = RA_NOMATCH;
5468 restore_subexpr(((regbehind_T *)rp) - 1);
5469 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005470 }
5471 else
5472 {
5473 /* Can't advance. For NOBEHIND that's a match. */
5474 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5475 if (rp->rs_no == NOBEHIND)
5476 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005477 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5478 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005479 status = RA_MATCH;
5480 }
5481 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005482 {
5483 /* We do want a proper match. Need to restore the
5484 * subexpr if we had a match, because they may have
5485 * been set. */
5486 if (status == RA_MATCH)
5487 {
5488 status = RA_NOMATCH;
5489 restore_subexpr(((regbehind_T *)rp) - 1);
5490 }
5491 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005492 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005493 regstack.ga_len -= sizeof(regbehind_T);
5494 }
5495 }
5496 break;
5497
5498 case RS_STAR_LONG:
5499 case RS_STAR_SHORT:
5500 {
5501 regstar_T *rst = ((regstar_T *)rp) - 1;
5502
5503 if (status == RA_MATCH)
5504 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005505 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005506 regstack.ga_len -= sizeof(regstar_T);
5507 break;
5508 }
5509
5510 /* Tried once already, restore input pointers. */
5511 if (status != RA_BREAK)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005512 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005513
5514 /* Repeat until we found a position where it could match. */
5515 for (;;)
5516 {
5517 if (status != RA_BREAK)
5518 {
5519 /* Tried first position already, advance. */
5520 if (rp->rs_state == RS_STAR_LONG)
5521 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005522 /* Trying for longest match, but couldn't or
5523 * didn't match -- back up one char. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005524 if (--rst->count < rst->minval)
5525 break;
5526 if (reginput == regline)
5527 {
5528 /* backup to last char of previous line */
5529 --reglnum;
5530 regline = reg_getline(reglnum);
5531 /* Just in case regrepeat() didn't count
5532 * right. */
5533 if (regline == NULL)
5534 break;
5535 reginput = regline + STRLEN(regline);
5536 fast_breakcheck();
5537 }
5538 else
5539 mb_ptr_back(regline, reginput);
5540 }
5541 else
5542 {
5543 /* Range is backwards, use shortest match first.
5544 * Careful: maxval and minval are exchanged!
5545 * Couldn't or didn't match: try advancing one
5546 * char. */
5547 if (rst->count == rst->minval
5548 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0)
5549 break;
5550 ++rst->count;
5551 }
5552 if (got_int)
5553 break;
5554 }
5555 else
5556 status = RA_NOMATCH;
5557
5558 /* If it could match, try it. */
5559 if (rst->nextb == NUL || *reginput == rst->nextb
5560 || *reginput == rst->nextb_ic)
5561 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005562 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005563 scan = regnext(rp->rs_scan);
5564 status = RA_CONT;
5565 break;
5566 }
5567 }
5568 if (status != RA_CONT)
5569 {
5570 /* Failed. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005571 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005572 regstack.ga_len -= sizeof(regstar_T);
5573 status = RA_NOMATCH;
5574 }
5575 }
5576 break;
5577 }
5578
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005579 /* If we want to continue the inner loop or didn't pop a state
5580 * continue matching loop */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005581 if (status == RA_CONT || rp == (regitem_T *)
5582 ((char *)regstack.ga_data + regstack.ga_len) - 1)
5583 break;
5584 }
5585
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005586 /* May need to continue with the inner loop, starting at "scan". */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005587 if (status == RA_CONT)
5588 continue;
5589
5590 /*
5591 * If the regstack is empty or something failed we are done.
5592 */
5593 if (regstack.ga_len == 0 || status == RA_FAIL)
5594 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005595 if (scan == NULL)
5596 {
5597 /*
5598 * We get here only if there's trouble -- normally "case END" is
5599 * the terminating point.
5600 */
5601 EMSG(_(e_re_corr));
5602#ifdef DEBUG
5603 printf("Premature EOL\n");
5604#endif
5605 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005606 if (status == RA_FAIL)
5607 got_int = TRUE;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005608 return (status == RA_MATCH);
5609 }
5610
5611 } /* End of loop until the regstack is empty. */
5612
5613 /* NOTREACHED */
5614}
5615
5616/*
5617 * Push an item onto the regstack.
5618 * Returns pointer to new item. Returns NULL when out of memory.
5619 */
5620 static regitem_T *
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005621regstack_push(state, scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005622 regstate_T state;
5623 char_u *scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005624{
5625 regitem_T *rp;
5626
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005627 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005628 {
5629 EMSG(_(e_maxmempat));
5630 return NULL;
5631 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005632 if (ga_grow(&regstack, sizeof(regitem_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005633 return NULL;
5634
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005635 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005636 rp->rs_state = state;
5637 rp->rs_scan = scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005638
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005639 regstack.ga_len += sizeof(regitem_T);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005640 return rp;
5641}
5642
5643/*
5644 * Pop an item from the regstack.
5645 */
5646 static void
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005647regstack_pop(scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005648 char_u **scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005649{
5650 regitem_T *rp;
5651
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005652 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005653 *scan = rp->rs_scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005654
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005655 regstack.ga_len -= sizeof(regitem_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656}
5657
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658/*
5659 * regrepeat - repeatedly match something simple, return how many.
5660 * Advances reginput (and reglnum) to just after the matched chars.
5661 */
5662 static int
5663regrepeat(p, maxcount)
5664 char_u *p;
5665 long maxcount; /* maximum number of matches allowed */
5666{
5667 long count = 0;
5668 char_u *scan;
5669 char_u *opnd;
5670 int mask;
5671 int testval = 0;
5672
5673 scan = reginput; /* Make local copy of reginput for speed. */
5674 opnd = OPERAND(p);
5675 switch (OP(p))
5676 {
5677 case ANY:
5678 case ANY + ADD_NL:
5679 while (count < maxcount)
5680 {
5681 /* Matching anything means we continue until end-of-line (or
5682 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5683 while (*scan != NUL && count < maxcount)
5684 {
5685 ++count;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005686 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 }
Bram Moolenaar640009d2006-10-17 16:48:26 +00005688 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5689 || reg_line_lbr || count == maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 break;
5691 ++count; /* count the line-break */
5692 reg_nextline();
5693 scan = reginput;
5694 if (got_int)
5695 break;
5696 }
5697 break;
5698
5699 case IDENT:
5700 case IDENT + ADD_NL:
5701 testval = TRUE;
5702 /*FALLTHROUGH*/
5703 case SIDENT:
5704 case SIDENT + ADD_NL:
5705 while (count < maxcount)
5706 {
5707 if (vim_isIDc(*scan) && (testval || !VIM_ISDIGIT(*scan)))
5708 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005709 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 }
5711 else if (*scan == NUL)
5712 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005713 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5714 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 break;
5716 reg_nextline();
5717 scan = reginput;
5718 if (got_int)
5719 break;
5720 }
5721 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5722 ++scan;
5723 else
5724 break;
5725 ++count;
5726 }
5727 break;
5728
5729 case KWORD:
5730 case KWORD + ADD_NL:
5731 testval = TRUE;
5732 /*FALLTHROUGH*/
5733 case SKWORD:
5734 case SKWORD + ADD_NL:
5735 while (count < maxcount)
5736 {
Bram Moolenaarf813a182013-01-30 13:59:37 +01005737 if (vim_iswordp_buf(scan, reg_buf)
5738 && (testval || !VIM_ISDIGIT(*scan)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005740 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 }
5742 else if (*scan == NUL)
5743 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005744 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5745 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 break;
5747 reg_nextline();
5748 scan = reginput;
5749 if (got_int)
5750 break;
5751 }
5752 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5753 ++scan;
5754 else
5755 break;
5756 ++count;
5757 }
5758 break;
5759
5760 case FNAME:
5761 case FNAME + ADD_NL:
5762 testval = TRUE;
5763 /*FALLTHROUGH*/
5764 case SFNAME:
5765 case SFNAME + ADD_NL:
5766 while (count < maxcount)
5767 {
5768 if (vim_isfilec(*scan) && (testval || !VIM_ISDIGIT(*scan)))
5769 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005770 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 }
5772 else if (*scan == NUL)
5773 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005774 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5775 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 break;
5777 reg_nextline();
5778 scan = reginput;
5779 if (got_int)
5780 break;
5781 }
5782 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5783 ++scan;
5784 else
5785 break;
5786 ++count;
5787 }
5788 break;
5789
5790 case PRINT:
5791 case PRINT + ADD_NL:
5792 testval = TRUE;
5793 /*FALLTHROUGH*/
5794 case SPRINT:
5795 case SPRINT + ADD_NL:
5796 while (count < maxcount)
5797 {
5798 if (*scan == NUL)
5799 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005800 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5801 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 break;
5803 reg_nextline();
5804 scan = reginput;
5805 if (got_int)
5806 break;
5807 }
5808 else if (ptr2cells(scan) == 1 && (testval || !VIM_ISDIGIT(*scan)))
5809 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005810 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 }
5812 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5813 ++scan;
5814 else
5815 break;
5816 ++count;
5817 }
5818 break;
5819
5820 case WHITE:
5821 case WHITE + ADD_NL:
5822 testval = mask = RI_WHITE;
5823do_class:
5824 while (count < maxcount)
5825 {
5826#ifdef FEAT_MBYTE
5827 int l;
5828#endif
5829 if (*scan == NUL)
5830 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005831 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5832 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833 break;
5834 reg_nextline();
5835 scan = reginput;
5836 if (got_int)
5837 break;
5838 }
5839#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005840 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 {
5842 if (testval != 0)
5843 break;
5844 scan += l;
5845 }
5846#endif
5847 else if ((class_tab[*scan] & mask) == testval)
5848 ++scan;
5849 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5850 ++scan;
5851 else
5852 break;
5853 ++count;
5854 }
5855 break;
5856
5857 case NWHITE:
5858 case NWHITE + ADD_NL:
5859 mask = RI_WHITE;
5860 goto do_class;
5861 case DIGIT:
5862 case DIGIT + ADD_NL:
5863 testval = mask = RI_DIGIT;
5864 goto do_class;
5865 case NDIGIT:
5866 case NDIGIT + ADD_NL:
5867 mask = RI_DIGIT;
5868 goto do_class;
5869 case HEX:
5870 case HEX + ADD_NL:
5871 testval = mask = RI_HEX;
5872 goto do_class;
5873 case NHEX:
5874 case NHEX + ADD_NL:
5875 mask = RI_HEX;
5876 goto do_class;
5877 case OCTAL:
5878 case OCTAL + ADD_NL:
5879 testval = mask = RI_OCTAL;
5880 goto do_class;
5881 case NOCTAL:
5882 case NOCTAL + ADD_NL:
5883 mask = RI_OCTAL;
5884 goto do_class;
5885 case WORD:
5886 case WORD + ADD_NL:
5887 testval = mask = RI_WORD;
5888 goto do_class;
5889 case NWORD:
5890 case NWORD + ADD_NL:
5891 mask = RI_WORD;
5892 goto do_class;
5893 case HEAD:
5894 case HEAD + ADD_NL:
5895 testval = mask = RI_HEAD;
5896 goto do_class;
5897 case NHEAD:
5898 case NHEAD + ADD_NL:
5899 mask = RI_HEAD;
5900 goto do_class;
5901 case ALPHA:
5902 case ALPHA + ADD_NL:
5903 testval = mask = RI_ALPHA;
5904 goto do_class;
5905 case NALPHA:
5906 case NALPHA + ADD_NL:
5907 mask = RI_ALPHA;
5908 goto do_class;
5909 case LOWER:
5910 case LOWER + ADD_NL:
5911 testval = mask = RI_LOWER;
5912 goto do_class;
5913 case NLOWER:
5914 case NLOWER + ADD_NL:
5915 mask = RI_LOWER;
5916 goto do_class;
5917 case UPPER:
5918 case UPPER + ADD_NL:
5919 testval = mask = RI_UPPER;
5920 goto do_class;
5921 case NUPPER:
5922 case NUPPER + ADD_NL:
5923 mask = RI_UPPER;
5924 goto do_class;
5925
5926 case EXACTLY:
5927 {
5928 int cu, cl;
5929
5930 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005931 * would have been used for it. It does handle single-byte
5932 * characters, such as latin1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (ireg_ic)
5934 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005935 cu = MB_TOUPPER(*opnd);
5936 cl = MB_TOLOWER(*opnd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937 while (count < maxcount && (*scan == cu || *scan == cl))
5938 {
5939 count++;
5940 scan++;
5941 }
5942 }
5943 else
5944 {
5945 cu = *opnd;
5946 while (count < maxcount && *scan == cu)
5947 {
5948 count++;
5949 scan++;
5950 }
5951 }
5952 break;
5953 }
5954
5955#ifdef FEAT_MBYTE
5956 case MULTIBYTECODE:
5957 {
5958 int i, len, cf = 0;
5959
5960 /* Safety check (just in case 'encoding' was changed since
5961 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005962 if ((len = (*mb_ptr2len)(opnd)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 {
5964 if (ireg_ic && enc_utf8)
5965 cf = utf_fold(utf_ptr2char(opnd));
5966 while (count < maxcount)
5967 {
5968 for (i = 0; i < len; ++i)
5969 if (opnd[i] != scan[i])
5970 break;
5971 if (i < len && (!ireg_ic || !enc_utf8
5972 || utf_fold(utf_ptr2char(scan)) != cf))
5973 break;
5974 scan += len;
5975 ++count;
5976 }
5977 }
5978 }
5979 break;
5980#endif
5981
5982 case ANYOF:
5983 case ANYOF + ADD_NL:
5984 testval = TRUE;
5985 /*FALLTHROUGH*/
5986
5987 case ANYBUT:
5988 case ANYBUT + ADD_NL:
5989 while (count < maxcount)
5990 {
5991#ifdef FEAT_MBYTE
5992 int len;
5993#endif
5994 if (*scan == NUL)
5995 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005996 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5997 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998 break;
5999 reg_nextline();
6000 scan = reginput;
6001 if (got_int)
6002 break;
6003 }
6004 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
6005 ++scan;
6006#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006007 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006008 {
6009 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval)
6010 break;
6011 scan += len;
6012 }
6013#endif
6014 else
6015 {
6016 if ((cstrchr(opnd, *scan) == NULL) == testval)
6017 break;
6018 ++scan;
6019 }
6020 ++count;
6021 }
6022 break;
6023
6024 case NEWL:
6025 while (count < maxcount
Bram Moolenaar640009d2006-10-17 16:48:26 +00006026 && ((*scan == NUL && reglnum <= reg_maxline && !reg_line_lbr
6027 && REG_MULTI) || (*scan == '\n' && reg_line_lbr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 {
6029 count++;
6030 if (reg_line_lbr)
6031 ADVANCE_REGINPUT();
6032 else
6033 reg_nextline();
6034 scan = reginput;
6035 if (got_int)
6036 break;
6037 }
6038 break;
6039
6040 default: /* Oh dear. Called inappropriately. */
6041 EMSG(_(e_re_corr));
6042#ifdef DEBUG
6043 printf("Called regrepeat with op code %d\n", OP(p));
6044#endif
6045 break;
6046 }
6047
6048 reginput = scan;
6049
6050 return (int)count;
6051}
6052
6053/*
6054 * regnext - dig the "next" pointer out of a node
Bram Moolenaard3005802009-11-25 17:21:32 +00006055 * Returns NULL when calculating size, when there is no next item and when
6056 * there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 */
6058 static char_u *
6059regnext(p)
6060 char_u *p;
6061{
6062 int offset;
6063
Bram Moolenaard3005802009-11-25 17:21:32 +00006064 if (p == JUST_CALC_SIZE || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 return NULL;
6066
6067 offset = NEXT(p);
6068 if (offset == 0)
6069 return NULL;
6070
Bram Moolenaar582fd852005-03-28 20:58:01 +00006071 if (OP(p) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 return p - offset;
6073 else
6074 return p + offset;
6075}
6076
6077/*
6078 * Check the regexp program for its magic number.
6079 * Return TRUE if it's wrong.
6080 */
6081 static int
6082prog_magic_wrong()
6083{
6084 if (UCHARAT(REG_MULTI
6085 ? reg_mmatch->regprog->program
6086 : reg_match->regprog->program) != REGMAGIC)
6087 {
6088 EMSG(_(e_re_corr));
6089 return TRUE;
6090 }
6091 return FALSE;
6092}
6093
6094/*
6095 * Cleanup the subexpressions, if this wasn't done yet.
6096 * This construction is used to clear the subexpressions only when they are
6097 * used (to increase speed).
6098 */
6099 static void
6100cleanup_subexpr()
6101{
6102 if (need_clear_subexpr)
6103 {
6104 if (REG_MULTI)
6105 {
6106 /* Use 0xff to set lnum to -1 */
6107 vim_memset(reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6108 vim_memset(reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6109 }
6110 else
6111 {
6112 vim_memset(reg_startp, 0, sizeof(char_u *) * NSUBEXP);
6113 vim_memset(reg_endp, 0, sizeof(char_u *) * NSUBEXP);
6114 }
6115 need_clear_subexpr = FALSE;
6116 }
6117}
6118
6119#ifdef FEAT_SYN_HL
6120 static void
6121cleanup_zsubexpr()
6122{
6123 if (need_clear_zsubexpr)
6124 {
6125 if (REG_MULTI)
6126 {
6127 /* Use 0xff to set lnum to -1 */
6128 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6129 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6130 }
6131 else
6132 {
6133 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP);
6134 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP);
6135 }
6136 need_clear_zsubexpr = FALSE;
6137 }
6138}
6139#endif
6140
6141/*
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006142 * Save the current subexpr to "bp", so that they can be restored
6143 * later by restore_subexpr().
6144 */
6145 static void
6146save_subexpr(bp)
6147 regbehind_T *bp;
6148{
6149 int i;
6150
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006151 /* When "need_clear_subexpr" is set we don't need to save the values, only
6152 * remember that this flag needs to be set again when restoring. */
6153 bp->save_need_clear_subexpr = need_clear_subexpr;
6154 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006155 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006156 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006157 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006158 if (REG_MULTI)
6159 {
6160 bp->save_start[i].se_u.pos = reg_startpos[i];
6161 bp->save_end[i].se_u.pos = reg_endpos[i];
6162 }
6163 else
6164 {
6165 bp->save_start[i].se_u.ptr = reg_startp[i];
6166 bp->save_end[i].se_u.ptr = reg_endp[i];
6167 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006168 }
6169 }
6170}
6171
6172/*
6173 * Restore the subexpr from "bp".
6174 */
6175 static void
6176restore_subexpr(bp)
6177 regbehind_T *bp;
6178{
6179 int i;
6180
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006181 /* Only need to restore saved values when they are not to be cleared. */
6182 need_clear_subexpr = bp->save_need_clear_subexpr;
6183 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006184 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006185 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006186 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006187 if (REG_MULTI)
6188 {
6189 reg_startpos[i] = bp->save_start[i].se_u.pos;
6190 reg_endpos[i] = bp->save_end[i].se_u.pos;
6191 }
6192 else
6193 {
6194 reg_startp[i] = bp->save_start[i].se_u.ptr;
6195 reg_endp[i] = bp->save_end[i].se_u.ptr;
6196 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006197 }
6198 }
6199}
6200
6201/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202 * Advance reglnum, regline and reginput to the next line.
6203 */
6204 static void
6205reg_nextline()
6206{
6207 regline = reg_getline(++reglnum);
6208 reginput = regline;
6209 fast_breakcheck();
6210}
6211
6212/*
6213 * Save the input line and position in a regsave_T.
6214 */
6215 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006216reg_save(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006218 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219{
6220 if (REG_MULTI)
6221 {
6222 save->rs_u.pos.col = (colnr_T)(reginput - regline);
6223 save->rs_u.pos.lnum = reglnum;
6224 }
6225 else
6226 save->rs_u.ptr = reginput;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006227 save->rs_len = gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228}
6229
6230/*
6231 * Restore the input line and position from a regsave_T.
6232 */
6233 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006234reg_restore(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006236 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006237{
6238 if (REG_MULTI)
6239 {
6240 if (reglnum != save->rs_u.pos.lnum)
6241 {
6242 /* only call reg_getline() when the line number changed to save
6243 * a bit of time */
6244 reglnum = save->rs_u.pos.lnum;
6245 regline = reg_getline(reglnum);
6246 }
6247 reginput = regline + save->rs_u.pos.col;
6248 }
6249 else
6250 reginput = save->rs_u.ptr;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006251 gap->ga_len = save->rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252}
6253
6254/*
6255 * Return TRUE if current position is equal to saved position.
6256 */
6257 static int
6258reg_save_equal(save)
6259 regsave_T *save;
6260{
6261 if (REG_MULTI)
6262 return reglnum == save->rs_u.pos.lnum
6263 && reginput == regline + save->rs_u.pos.col;
6264 return reginput == save->rs_u.ptr;
6265}
6266
6267/*
6268 * Tentatively set the sub-expression start to the current position (after
6269 * calling regmatch() they will have changed). Need to save the existing
6270 * values for when there is no match.
6271 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
6272 * depending on REG_MULTI.
6273 */
6274 static void
6275save_se_multi(savep, posp)
6276 save_se_T *savep;
6277 lpos_T *posp;
6278{
6279 savep->se_u.pos = *posp;
6280 posp->lnum = reglnum;
6281 posp->col = (colnr_T)(reginput - regline);
6282}
6283
6284 static void
6285save_se_one(savep, pp)
6286 save_se_T *savep;
6287 char_u **pp;
6288{
6289 savep->se_u.ptr = *pp;
6290 *pp = reginput;
6291}
6292
6293/*
6294 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6295 */
6296 static int
6297re_num_cmp(val, scan)
6298 long_u val;
6299 char_u *scan;
6300{
6301 long_u n = OPERAND_MIN(scan);
6302
6303 if (OPERAND_CMP(scan) == '>')
6304 return val > n;
6305 if (OPERAND_CMP(scan) == '<')
6306 return val < n;
6307 return val == n;
6308}
6309
6310
6311#ifdef DEBUG
6312
6313/*
6314 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6315 */
6316 static void
6317regdump(pattern, r)
6318 char_u *pattern;
6319 regprog_T *r;
6320{
6321 char_u *s;
6322 int op = EXACTLY; /* Arbitrary non-END op. */
6323 char_u *next;
6324 char_u *end = NULL;
6325
6326 printf("\r\nregcomp(%s):\r\n", pattern);
6327
6328 s = r->program + 1;
6329 /*
6330 * Loop until we find the END that isn't before a referred next (an END
6331 * can also appear in a NOMATCH operand).
6332 */
6333 while (op != END || s <= end)
6334 {
6335 op = OP(s);
6336 printf("%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */
6337 next = regnext(s);
6338 if (next == NULL) /* Next ptr. */
6339 printf("(0)");
6340 else
6341 printf("(%d)", (int)((s - r->program) + (next - s)));
6342 if (end < next)
6343 end = next;
6344 if (op == BRACE_LIMITS)
6345 {
6346 /* Two short ints */
6347 printf(" minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s));
6348 s += 8;
6349 }
6350 s += 3;
6351 if (op == ANYOF || op == ANYOF + ADD_NL
6352 || op == ANYBUT || op == ANYBUT + ADD_NL
6353 || op == EXACTLY)
6354 {
6355 /* Literal string, where present. */
6356 while (*s != NUL)
6357 printf("%c", *s++);
6358 s++;
6359 }
6360 printf("\r\n");
6361 }
6362
6363 /* Header fields of interest. */
6364 if (r->regstart != NUL)
6365 printf("start `%s' 0x%x; ", r->regstart < 256
6366 ? (char *)transchar(r->regstart)
6367 : "multibyte", r->regstart);
6368 if (r->reganch)
6369 printf("anchored; ");
6370 if (r->regmust != NULL)
6371 printf("must have \"%s\"", r->regmust);
6372 printf("\r\n");
6373}
6374
6375/*
6376 * regprop - printable representation of opcode
6377 */
6378 static char_u *
6379regprop(op)
6380 char_u *op;
6381{
6382 char_u *p;
6383 static char_u buf[50];
6384
6385 (void) strcpy(buf, ":");
6386
6387 switch (OP(op))
6388 {
6389 case BOL:
6390 p = "BOL";
6391 break;
6392 case EOL:
6393 p = "EOL";
6394 break;
6395 case RE_BOF:
6396 p = "BOF";
6397 break;
6398 case RE_EOF:
6399 p = "EOF";
6400 break;
6401 case CURSOR:
6402 p = "CURSOR";
6403 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006404 case RE_VISUAL:
6405 p = "RE_VISUAL";
6406 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 case RE_LNUM:
6408 p = "RE_LNUM";
6409 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006410 case RE_MARK:
6411 p = "RE_MARK";
6412 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413 case RE_COL:
6414 p = "RE_COL";
6415 break;
6416 case RE_VCOL:
6417 p = "RE_VCOL";
6418 break;
6419 case BOW:
6420 p = "BOW";
6421 break;
6422 case EOW:
6423 p = "EOW";
6424 break;
6425 case ANY:
6426 p = "ANY";
6427 break;
6428 case ANY + ADD_NL:
6429 p = "ANY+NL";
6430 break;
6431 case ANYOF:
6432 p = "ANYOF";
6433 break;
6434 case ANYOF + ADD_NL:
6435 p = "ANYOF+NL";
6436 break;
6437 case ANYBUT:
6438 p = "ANYBUT";
6439 break;
6440 case ANYBUT + ADD_NL:
6441 p = "ANYBUT+NL";
6442 break;
6443 case IDENT:
6444 p = "IDENT";
6445 break;
6446 case IDENT + ADD_NL:
6447 p = "IDENT+NL";
6448 break;
6449 case SIDENT:
6450 p = "SIDENT";
6451 break;
6452 case SIDENT + ADD_NL:
6453 p = "SIDENT+NL";
6454 break;
6455 case KWORD:
6456 p = "KWORD";
6457 break;
6458 case KWORD + ADD_NL:
6459 p = "KWORD+NL";
6460 break;
6461 case SKWORD:
6462 p = "SKWORD";
6463 break;
6464 case SKWORD + ADD_NL:
6465 p = "SKWORD+NL";
6466 break;
6467 case FNAME:
6468 p = "FNAME";
6469 break;
6470 case FNAME + ADD_NL:
6471 p = "FNAME+NL";
6472 break;
6473 case SFNAME:
6474 p = "SFNAME";
6475 break;
6476 case SFNAME + ADD_NL:
6477 p = "SFNAME+NL";
6478 break;
6479 case PRINT:
6480 p = "PRINT";
6481 break;
6482 case PRINT + ADD_NL:
6483 p = "PRINT+NL";
6484 break;
6485 case SPRINT:
6486 p = "SPRINT";
6487 break;
6488 case SPRINT + ADD_NL:
6489 p = "SPRINT+NL";
6490 break;
6491 case WHITE:
6492 p = "WHITE";
6493 break;
6494 case WHITE + ADD_NL:
6495 p = "WHITE+NL";
6496 break;
6497 case NWHITE:
6498 p = "NWHITE";
6499 break;
6500 case NWHITE + ADD_NL:
6501 p = "NWHITE+NL";
6502 break;
6503 case DIGIT:
6504 p = "DIGIT";
6505 break;
6506 case DIGIT + ADD_NL:
6507 p = "DIGIT+NL";
6508 break;
6509 case NDIGIT:
6510 p = "NDIGIT";
6511 break;
6512 case NDIGIT + ADD_NL:
6513 p = "NDIGIT+NL";
6514 break;
6515 case HEX:
6516 p = "HEX";
6517 break;
6518 case HEX + ADD_NL:
6519 p = "HEX+NL";
6520 break;
6521 case NHEX:
6522 p = "NHEX";
6523 break;
6524 case NHEX + ADD_NL:
6525 p = "NHEX+NL";
6526 break;
6527 case OCTAL:
6528 p = "OCTAL";
6529 break;
6530 case OCTAL + ADD_NL:
6531 p = "OCTAL+NL";
6532 break;
6533 case NOCTAL:
6534 p = "NOCTAL";
6535 break;
6536 case NOCTAL + ADD_NL:
6537 p = "NOCTAL+NL";
6538 break;
6539 case WORD:
6540 p = "WORD";
6541 break;
6542 case WORD + ADD_NL:
6543 p = "WORD+NL";
6544 break;
6545 case NWORD:
6546 p = "NWORD";
6547 break;
6548 case NWORD + ADD_NL:
6549 p = "NWORD+NL";
6550 break;
6551 case HEAD:
6552 p = "HEAD";
6553 break;
6554 case HEAD + ADD_NL:
6555 p = "HEAD+NL";
6556 break;
6557 case NHEAD:
6558 p = "NHEAD";
6559 break;
6560 case NHEAD + ADD_NL:
6561 p = "NHEAD+NL";
6562 break;
6563 case ALPHA:
6564 p = "ALPHA";
6565 break;
6566 case ALPHA + ADD_NL:
6567 p = "ALPHA+NL";
6568 break;
6569 case NALPHA:
6570 p = "NALPHA";
6571 break;
6572 case NALPHA + ADD_NL:
6573 p = "NALPHA+NL";
6574 break;
6575 case LOWER:
6576 p = "LOWER";
6577 break;
6578 case LOWER + ADD_NL:
6579 p = "LOWER+NL";
6580 break;
6581 case NLOWER:
6582 p = "NLOWER";
6583 break;
6584 case NLOWER + ADD_NL:
6585 p = "NLOWER+NL";
6586 break;
6587 case UPPER:
6588 p = "UPPER";
6589 break;
6590 case UPPER + ADD_NL:
6591 p = "UPPER+NL";
6592 break;
6593 case NUPPER:
6594 p = "NUPPER";
6595 break;
6596 case NUPPER + ADD_NL:
6597 p = "NUPPER+NL";
6598 break;
6599 case BRANCH:
6600 p = "BRANCH";
6601 break;
6602 case EXACTLY:
6603 p = "EXACTLY";
6604 break;
6605 case NOTHING:
6606 p = "NOTHING";
6607 break;
6608 case BACK:
6609 p = "BACK";
6610 break;
6611 case END:
6612 p = "END";
6613 break;
6614 case MOPEN + 0:
6615 p = "MATCH START";
6616 break;
6617 case MOPEN + 1:
6618 case MOPEN + 2:
6619 case MOPEN + 3:
6620 case MOPEN + 4:
6621 case MOPEN + 5:
6622 case MOPEN + 6:
6623 case MOPEN + 7:
6624 case MOPEN + 8:
6625 case MOPEN + 9:
6626 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN);
6627 p = NULL;
6628 break;
6629 case MCLOSE + 0:
6630 p = "MATCH END";
6631 break;
6632 case MCLOSE + 1:
6633 case MCLOSE + 2:
6634 case MCLOSE + 3:
6635 case MCLOSE + 4:
6636 case MCLOSE + 5:
6637 case MCLOSE + 6:
6638 case MCLOSE + 7:
6639 case MCLOSE + 8:
6640 case MCLOSE + 9:
6641 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE);
6642 p = NULL;
6643 break;
6644 case BACKREF + 1:
6645 case BACKREF + 2:
6646 case BACKREF + 3:
6647 case BACKREF + 4:
6648 case BACKREF + 5:
6649 case BACKREF + 6:
6650 case BACKREF + 7:
6651 case BACKREF + 8:
6652 case BACKREF + 9:
6653 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF);
6654 p = NULL;
6655 break;
6656 case NOPEN:
6657 p = "NOPEN";
6658 break;
6659 case NCLOSE:
6660 p = "NCLOSE";
6661 break;
6662#ifdef FEAT_SYN_HL
6663 case ZOPEN + 1:
6664 case ZOPEN + 2:
6665 case ZOPEN + 3:
6666 case ZOPEN + 4:
6667 case ZOPEN + 5:
6668 case ZOPEN + 6:
6669 case ZOPEN + 7:
6670 case ZOPEN + 8:
6671 case ZOPEN + 9:
6672 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN);
6673 p = NULL;
6674 break;
6675 case ZCLOSE + 1:
6676 case ZCLOSE + 2:
6677 case ZCLOSE + 3:
6678 case ZCLOSE + 4:
6679 case ZCLOSE + 5:
6680 case ZCLOSE + 6:
6681 case ZCLOSE + 7:
6682 case ZCLOSE + 8:
6683 case ZCLOSE + 9:
6684 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE);
6685 p = NULL;
6686 break;
6687 case ZREF + 1:
6688 case ZREF + 2:
6689 case ZREF + 3:
6690 case ZREF + 4:
6691 case ZREF + 5:
6692 case ZREF + 6:
6693 case ZREF + 7:
6694 case ZREF + 8:
6695 case ZREF + 9:
6696 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF);
6697 p = NULL;
6698 break;
6699#endif
6700 case STAR:
6701 p = "STAR";
6702 break;
6703 case PLUS:
6704 p = "PLUS";
6705 break;
6706 case NOMATCH:
6707 p = "NOMATCH";
6708 break;
6709 case MATCH:
6710 p = "MATCH";
6711 break;
6712 case BEHIND:
6713 p = "BEHIND";
6714 break;
6715 case NOBEHIND:
6716 p = "NOBEHIND";
6717 break;
6718 case SUBPAT:
6719 p = "SUBPAT";
6720 break;
6721 case BRACE_LIMITS:
6722 p = "BRACE_LIMITS";
6723 break;
6724 case BRACE_SIMPLE:
6725 p = "BRACE_SIMPLE";
6726 break;
6727 case BRACE_COMPLEX + 0:
6728 case BRACE_COMPLEX + 1:
6729 case BRACE_COMPLEX + 2:
6730 case BRACE_COMPLEX + 3:
6731 case BRACE_COMPLEX + 4:
6732 case BRACE_COMPLEX + 5:
6733 case BRACE_COMPLEX + 6:
6734 case BRACE_COMPLEX + 7:
6735 case BRACE_COMPLEX + 8:
6736 case BRACE_COMPLEX + 9:
6737 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX);
6738 p = NULL;
6739 break;
6740#ifdef FEAT_MBYTE
6741 case MULTIBYTECODE:
6742 p = "MULTIBYTECODE";
6743 break;
6744#endif
6745 case NEWL:
6746 p = "NEWL";
6747 break;
6748 default:
6749 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op));
6750 p = NULL;
6751 break;
6752 }
6753 if (p != NULL)
6754 (void) strcat(buf, p);
6755 return buf;
6756}
6757#endif
6758
6759#ifdef FEAT_MBYTE
6760static void mb_decompose __ARGS((int c, int *c1, int *c2, int *c3));
6761
6762typedef struct
6763{
6764 int a, b, c;
6765} decomp_T;
6766
6767
6768/* 0xfb20 - 0xfb4f */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00006769static decomp_T decomp_table[0xfb4f-0xfb20+1] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770{
6771 {0x5e2,0,0}, /* 0xfb20 alt ayin */
6772 {0x5d0,0,0}, /* 0xfb21 alt alef */
6773 {0x5d3,0,0}, /* 0xfb22 alt dalet */
6774 {0x5d4,0,0}, /* 0xfb23 alt he */
6775 {0x5db,0,0}, /* 0xfb24 alt kaf */
6776 {0x5dc,0,0}, /* 0xfb25 alt lamed */
6777 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
6778 {0x5e8,0,0}, /* 0xfb27 alt resh */
6779 {0x5ea,0,0}, /* 0xfb28 alt tav */
6780 {'+', 0, 0}, /* 0xfb29 alt plus */
6781 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
6782 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
6783 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
6784 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
6785 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
6786 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
6787 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
6788 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
6789 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
6790 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
6791 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
6792 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
6793 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
6794 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
6795 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
6796 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
6797 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
6798 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
6799 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
6800 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
6801 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
6802 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
6803 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
6804 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
6805 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
6806 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
6807 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
6808 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
6809 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
6810 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
6811 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
6812 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
6813 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
6814 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
6815 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
6816 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
6817 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
6818 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
6819};
6820
6821 static void
6822mb_decompose(c, c1, c2, c3)
6823 int c, *c1, *c2, *c3;
6824{
6825 decomp_T d;
6826
6827 if (c >= 0x4b20 && c <= 0xfb4f)
6828 {
6829 d = decomp_table[c - 0xfb20];
6830 *c1 = d.a;
6831 *c2 = d.b;
6832 *c3 = d.c;
6833 }
6834 else
6835 {
6836 *c1 = c;
6837 *c2 = *c3 = 0;
6838 }
6839}
6840#endif
6841
6842/*
6843 * Compare two strings, ignore case if ireg_ic set.
6844 * Return 0 if strings match, non-zero otherwise.
6845 * Correct the length "*n" when composing characters are ignored.
6846 */
6847 static int
6848cstrncmp(s1, s2, n)
6849 char_u *s1, *s2;
6850 int *n;
6851{
6852 int result;
6853
6854 if (!ireg_ic)
6855 result = STRNCMP(s1, s2, *n);
6856 else
6857 result = MB_STRNICMP(s1, s2, *n);
6858
6859#ifdef FEAT_MBYTE
6860 /* if it failed and it's utf8 and we want to combineignore: */
6861 if (result != 0 && enc_utf8 && ireg_icombine)
6862 {
6863 char_u *str1, *str2;
6864 int c1, c2, c11, c12;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865 int junk;
6866
6867 /* we have to handle the strcmp ourselves, since it is necessary to
6868 * deal with the composing characters by ignoring them: */
6869 str1 = s1;
6870 str2 = s2;
6871 c1 = c2 = 0;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00006872 while ((int)(str1 - s1) < *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 {
6874 c1 = mb_ptr2char_adv(&str1);
6875 c2 = mb_ptr2char_adv(&str2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876
6877 /* decompose the character if necessary, into 'base' characters
6878 * because I don't care about Arabic, I will hard-code the Hebrew
6879 * which I *do* care about! So sue me... */
6880 if (c1 != c2 && (!ireg_ic || utf_fold(c1) != utf_fold(c2)))
6881 {
6882 /* decomposition necessary? */
6883 mb_decompose(c1, &c11, &junk, &junk);
6884 mb_decompose(c2, &c12, &junk, &junk);
6885 c1 = c11;
6886 c2 = c12;
6887 if (c11 != c12 && (!ireg_ic || utf_fold(c11) != utf_fold(c12)))
6888 break;
6889 }
6890 }
6891 result = c2 - c1;
6892 if (result == 0)
6893 *n = (int)(str2 - s2);
6894 }
6895#endif
6896
6897 return result;
6898}
6899
6900/*
6901 * cstrchr: This function is used a lot for simple searches, keep it fast!
6902 */
6903 static char_u *
6904cstrchr(s, c)
6905 char_u *s;
6906 int c;
6907{
6908 char_u *p;
6909 int cc;
6910
6911 if (!ireg_ic
6912#ifdef FEAT_MBYTE
6913 || (!enc_utf8 && mb_char2len(c) > 1)
6914#endif
6915 )
6916 return vim_strchr(s, c);
6917
6918 /* tolower() and toupper() can be slow, comparing twice should be a lot
6919 * faster (esp. when using MS Visual C++!).
6920 * For UTF-8 need to use folded case. */
6921#ifdef FEAT_MBYTE
6922 if (enc_utf8 && c > 0x80)
6923 cc = utf_fold(c);
6924 else
6925#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006926 if (MB_ISUPPER(c))
6927 cc = MB_TOLOWER(c);
6928 else if (MB_ISLOWER(c))
6929 cc = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 else
6931 return vim_strchr(s, c);
6932
6933#ifdef FEAT_MBYTE
6934 if (has_mbyte)
6935 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006936 for (p = s; *p != NUL; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 {
6938 if (enc_utf8 && c > 0x80)
6939 {
6940 if (utf_fold(utf_ptr2char(p)) == cc)
6941 return p;
6942 }
6943 else if (*p == c || *p == cc)
6944 return p;
6945 }
6946 }
6947 else
6948#endif
6949 /* Faster version for when there are no multi-byte characters. */
6950 for (p = s; *p != NUL; ++p)
6951 if (*p == c || *p == cc)
6952 return p;
6953
6954 return NULL;
6955}
6956
6957/***************************************************************
6958 * regsub stuff *
6959 ***************************************************************/
6960
6961/* This stuff below really confuses cc on an SGI -- webb */
6962#ifdef __sgi
6963# undef __ARGS
6964# define __ARGS(x) ()
6965#endif
6966
6967/*
6968 * We should define ftpr as a pointer to a function returning a pointer to
6969 * a function returning a pointer to a function ...
6970 * This is impossible, so we declare a pointer to a function returning a
6971 * pointer to a function returning void. This should work for all compilers.
6972 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006973typedef void (*(*fptr_T) __ARGS((int *, int)))();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006975static fptr_T do_upper __ARGS((int *, int));
6976static fptr_T do_Upper __ARGS((int *, int));
6977static fptr_T do_lower __ARGS((int *, int));
6978static fptr_T do_Lower __ARGS((int *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979
6980static int vim_regsub_both __ARGS((char_u *source, char_u *dest, int copy, int magic, int backslash));
6981
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006982 static fptr_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983do_upper(d, c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006984 int *d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985 int c;
6986{
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006987 *d = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006989 return (fptr_T)NULL;
6990}
6991
6992 static fptr_T
6993do_Upper(d, c)
6994 int *d;
6995 int c;
6996{
6997 *d = MB_TOUPPER(c);
6998
6999 return (fptr_T)do_Upper;
7000}
7001
7002 static fptr_T
7003do_lower(d, c)
7004 int *d;
7005 int c;
7006{
7007 *d = MB_TOLOWER(c);
7008
7009 return (fptr_T)NULL;
7010}
7011
7012 static fptr_T
7013do_Lower(d, c)
7014 int *d;
7015 int c;
7016{
7017 *d = MB_TOLOWER(c);
7018
7019 return (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020}
7021
7022/*
7023 * regtilde(): Replace tildes in the pattern by the old pattern.
7024 *
7025 * Short explanation of the tilde: It stands for the previous replacement
7026 * pattern. If that previous pattern also contains a ~ we should go back a
7027 * step further... But we insert the previous pattern into the current one
7028 * and remember that.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007029 * This still does not handle the case where "magic" changes. So require the
7030 * user to keep his hands off of "magic".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 *
7032 * The tildes are parsed once before the first call to vim_regsub().
7033 */
7034 char_u *
7035regtilde(source, magic)
7036 char_u *source;
7037 int magic;
7038{
7039 char_u *newsub = source;
7040 char_u *tmpsub;
7041 char_u *p;
7042 int len;
7043 int prevlen;
7044
7045 for (p = newsub; *p; ++p)
7046 {
7047 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic))
7048 {
7049 if (reg_prev_sub != NULL)
7050 {
7051 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
7052 prevlen = (int)STRLEN(reg_prev_sub);
7053 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen));
7054 if (tmpsub != NULL)
7055 {
7056 /* copy prefix */
7057 len = (int)(p - newsub); /* not including ~ */
7058 mch_memmove(tmpsub, newsub, (size_t)len);
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007059 /* interpret tilde */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen);
7061 /* copy postfix */
7062 if (!magic)
7063 ++p; /* back off \ */
7064 STRCPY(tmpsub + len + prevlen, p + 1);
7065
7066 if (newsub != source) /* already allocated newsub */
7067 vim_free(newsub);
7068 newsub = tmpsub;
7069 p = newsub + len + prevlen;
7070 }
7071 }
7072 else if (magic)
Bram Moolenaar446cb832008-06-24 21:56:24 +00007073 STRMOVE(p, p + 1); /* remove '~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 else
Bram Moolenaar446cb832008-06-24 21:56:24 +00007075 STRMOVE(p, p + 2); /* remove '\~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 --p;
7077 }
7078 else
7079 {
7080 if (*p == '\\' && p[1]) /* skip escaped characters */
7081 ++p;
7082#ifdef FEAT_MBYTE
7083 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007084 p += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085#endif
7086 }
7087 }
7088
7089 vim_free(reg_prev_sub);
7090 if (newsub != source) /* newsub was allocated, just keep it */
7091 reg_prev_sub = newsub;
7092 else /* no ~ found, need to save newsub */
7093 reg_prev_sub = vim_strsave(newsub);
7094 return newsub;
7095}
7096
7097#ifdef FEAT_EVAL
7098static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */
7099
7100/* These pointers are used instead of reg_match and reg_mmatch for
7101 * reg_submatch(). Needed for when the substitution string is an expression
7102 * that contains a call to substitute() and submatch(). */
7103static regmatch_T *submatch_match;
7104static regmmatch_T *submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007105static linenr_T submatch_firstlnum;
7106static linenr_T submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007107static int submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108#endif
7109
7110#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
7111/*
7112 * vim_regsub() - perform substitutions after a vim_regexec() or
7113 * vim_regexec_multi() match.
7114 *
7115 * If "copy" is TRUE really copy into "dest".
7116 * If "copy" is FALSE nothing is copied, this is just to find out the length
7117 * of the result.
7118 *
7119 * If "backslash" is TRUE, a backslash will be removed later, need to double
7120 * them to keep them, and insert a backslash before a CR to avoid it being
7121 * replaced with a line break later.
7122 *
7123 * Note: The matched text must not change between the call of
7124 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
7125 * references invalid!
7126 *
7127 * Returns the size of the replacement, including terminating NUL.
7128 */
7129 int
7130vim_regsub(rmp, source, dest, copy, magic, backslash)
7131 regmatch_T *rmp;
7132 char_u *source;
7133 char_u *dest;
7134 int copy;
7135 int magic;
7136 int backslash;
7137{
7138 reg_match = rmp;
7139 reg_mmatch = NULL;
7140 reg_maxline = 0;
Bram Moolenaar2f315ab2013-01-25 20:11:01 +01007141 reg_buf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142 return vim_regsub_both(source, dest, copy, magic, backslash);
7143}
7144#endif
7145
7146 int
7147vim_regsub_multi(rmp, lnum, source, dest, copy, magic, backslash)
7148 regmmatch_T *rmp;
7149 linenr_T lnum;
7150 char_u *source;
7151 char_u *dest;
7152 int copy;
7153 int magic;
7154 int backslash;
7155{
7156 reg_match = NULL;
7157 reg_mmatch = rmp;
7158 reg_buf = curbuf; /* always works on the current buffer! */
7159 reg_firstlnum = lnum;
7160 reg_maxline = curbuf->b_ml.ml_line_count - lnum;
7161 return vim_regsub_both(source, dest, copy, magic, backslash);
7162}
7163
7164 static int
7165vim_regsub_both(source, dest, copy, magic, backslash)
7166 char_u *source;
7167 char_u *dest;
7168 int copy;
7169 int magic;
7170 int backslash;
7171{
7172 char_u *src;
7173 char_u *dst;
7174 char_u *s;
7175 int c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007176 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007177 int no = -1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007178 fptr_T func = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 linenr_T clnum = 0; /* init for GCC */
7180 int len = 0; /* init for GCC */
7181#ifdef FEAT_EVAL
7182 static char_u *eval_result = NULL;
7183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184
7185 /* Be paranoid... */
7186 if (source == NULL || dest == NULL)
7187 {
7188 EMSG(_(e_null));
7189 return 0;
7190 }
7191 if (prog_magic_wrong())
7192 return 0;
7193 src = source;
7194 dst = dest;
7195
7196 /*
7197 * When the substitute part starts with "\=" evaluate it as an expression.
7198 */
7199 if (source[0] == '\\' && source[1] == '='
7200#ifdef FEAT_EVAL
7201 && !can_f_submatch /* can't do this recursively */
7202#endif
7203 )
7204 {
7205#ifdef FEAT_EVAL
7206 /* To make sure that the length doesn't change between checking the
7207 * length and copying the string, and to speed up things, the
7208 * resulting string is saved from the call with "copy" == FALSE to the
7209 * call with "copy" == TRUE. */
7210 if (copy)
7211 {
7212 if (eval_result != NULL)
7213 {
7214 STRCPY(dest, eval_result);
7215 dst += STRLEN(eval_result);
7216 vim_free(eval_result);
7217 eval_result = NULL;
7218 }
7219 }
7220 else
7221 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222 win_T *save_reg_win;
7223 int save_ireg_ic;
7224
7225 vim_free(eval_result);
7226
7227 /* The expression may contain substitute(), which calls us
7228 * recursively. Make sure submatch() gets the text from the first
7229 * level. Don't need to save "reg_buf", because
7230 * vim_regexec_multi() can't be called recursively. */
7231 submatch_match = reg_match;
7232 submatch_mmatch = reg_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007233 submatch_firstlnum = reg_firstlnum;
7234 submatch_maxline = reg_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007235 submatch_line_lbr = reg_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007236 save_reg_win = reg_win;
7237 save_ireg_ic = ireg_ic;
7238 can_f_submatch = TRUE;
7239
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007240 eval_result = eval_to_string(source + 2, NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 if (eval_result != NULL)
7242 {
Bram Moolenaar06975a42010-03-23 16:27:22 +01007243 int had_backslash = FALSE;
7244
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00007245 for (s = eval_result; *s != NUL; mb_ptr_adv(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007246 {
Bram Moolenaar978287b2011-06-19 04:32:15 +02007247 /* Change NL to CR, so that it becomes a line break,
7248 * unless called from vim_regexec_nl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007249 * Skip over a backslashed character. */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007250 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 *s = CAR;
7252 else if (*s == '\\' && s[1] != NUL)
Bram Moolenaar06975a42010-03-23 16:27:22 +01007253 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254 ++s;
Bram Moolenaar60190782010-05-21 13:08:58 +02007255 /* Change NL to CR here too, so that this works:
7256 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text:
7257 * abc\
7258 * def
Bram Moolenaar978287b2011-06-19 04:32:15 +02007259 * Not when called from vim_regexec_nl().
Bram Moolenaar60190782010-05-21 13:08:58 +02007260 */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007261 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar60190782010-05-21 13:08:58 +02007262 *s = CAR;
Bram Moolenaar06975a42010-03-23 16:27:22 +01007263 had_backslash = TRUE;
7264 }
7265 }
7266 if (had_backslash && backslash)
7267 {
7268 /* Backslashes will be consumed, need to double them. */
7269 s = vim_strsave_escaped(eval_result, (char_u *)"\\");
7270 if (s != NULL)
7271 {
7272 vim_free(eval_result);
7273 eval_result = s;
7274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 }
7276
7277 dst += STRLEN(eval_result);
7278 }
7279
7280 reg_match = submatch_match;
7281 reg_mmatch = submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007282 reg_firstlnum = submatch_firstlnum;
7283 reg_maxline = submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007284 reg_line_lbr = submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285 reg_win = save_reg_win;
7286 ireg_ic = save_ireg_ic;
7287 can_f_submatch = FALSE;
7288 }
7289#endif
7290 }
7291 else
7292 while ((c = *src++) != NUL)
7293 {
7294 if (c == '&' && magic)
7295 no = 0;
7296 else if (c == '\\' && *src != NUL)
7297 {
7298 if (*src == '&' && !magic)
7299 {
7300 ++src;
7301 no = 0;
7302 }
7303 else if ('0' <= *src && *src <= '9')
7304 {
7305 no = *src++ - '0';
7306 }
7307 else if (vim_strchr((char_u *)"uUlLeE", *src))
7308 {
7309 switch (*src++)
7310 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007311 case 'u': func = (fptr_T)do_upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312 continue;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007313 case 'U': func = (fptr_T)do_Upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 continue;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007315 case 'l': func = (fptr_T)do_lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 continue;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007317 case 'L': func = (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318 continue;
7319 case 'e':
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007320 case 'E': func = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 continue;
7322 }
7323 }
7324 }
7325 if (no < 0) /* Ordinary character. */
7326 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00007327 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL)
7328 {
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007329 /* Copy a special key as-is. */
Bram Moolenaardb552d602006-03-23 22:59:57 +00007330 if (copy)
7331 {
7332 *dst++ = c;
7333 *dst++ = *src++;
7334 *dst++ = *src++;
7335 }
7336 else
7337 {
7338 dst += 3;
7339 src += 2;
7340 }
7341 continue;
7342 }
7343
Bram Moolenaar071d4272004-06-13 20:20:40 +00007344 if (c == '\\' && *src != NUL)
7345 {
7346 /* Check for abbreviations -- webb */
7347 switch (*src)
7348 {
7349 case 'r': c = CAR; ++src; break;
7350 case 'n': c = NL; ++src; break;
7351 case 't': c = TAB; ++src; break;
7352 /* Oh no! \e already has meaning in subst pat :-( */
7353 /* case 'e': c = ESC; ++src; break; */
7354 case 'b': c = Ctrl_H; ++src; break;
7355
7356 /* If "backslash" is TRUE the backslash will be removed
7357 * later. Used to insert a literal CR. */
7358 default: if (backslash)
7359 {
7360 if (copy)
7361 *dst = '\\';
7362 ++dst;
7363 }
7364 c = *src++;
7365 }
7366 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367#ifdef FEAT_MBYTE
Bram Moolenaardb552d602006-03-23 22:59:57 +00007368 else if (has_mbyte)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007369 c = mb_ptr2char(src - 1);
7370#endif
7371
Bram Moolenaardb552d602006-03-23 22:59:57 +00007372 /* Write to buffer, if copy is set. */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007373 if (func == (fptr_T)NULL) /* just copy */
7374 cc = c;
7375 else
7376 /* Turbo C complains without the typecast */
7377 func = (fptr_T)(func(&cc, c));
7378
7379#ifdef FEAT_MBYTE
7380 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007381 {
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007382 int totlen = mb_ptr2len(src - 1);
7383
Bram Moolenaar071d4272004-06-13 20:20:40 +00007384 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007385 mb_char2bytes(cc, dst);
7386 dst += mb_char2len(cc) - 1;
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007387 if (enc_utf8)
7388 {
7389 int clen = utf_ptr2len(src - 1);
7390
7391 /* If the character length is shorter than "totlen", there
7392 * are composing characters; copy them as-is. */
7393 if (clen < totlen)
7394 {
7395 if (copy)
7396 mch_memmove(dst + 1, src - 1 + clen,
7397 (size_t)(totlen - clen));
7398 dst += totlen - clen;
7399 }
7400 }
7401 src += totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 }
7403 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404#endif
7405 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007406 *dst = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 dst++;
7408 }
7409 else
7410 {
7411 if (REG_MULTI)
7412 {
7413 clnum = reg_mmatch->startpos[no].lnum;
7414 if (clnum < 0 || reg_mmatch->endpos[no].lnum < 0)
7415 s = NULL;
7416 else
7417 {
7418 s = reg_getline(clnum) + reg_mmatch->startpos[no].col;
7419 if (reg_mmatch->endpos[no].lnum == clnum)
7420 len = reg_mmatch->endpos[no].col
7421 - reg_mmatch->startpos[no].col;
7422 else
7423 len = (int)STRLEN(s);
7424 }
7425 }
7426 else
7427 {
7428 s = reg_match->startp[no];
7429 if (reg_match->endp[no] == NULL)
7430 s = NULL;
7431 else
7432 len = (int)(reg_match->endp[no] - s);
7433 }
7434 if (s != NULL)
7435 {
7436 for (;;)
7437 {
7438 if (len == 0)
7439 {
7440 if (REG_MULTI)
7441 {
7442 if (reg_mmatch->endpos[no].lnum == clnum)
7443 break;
7444 if (copy)
7445 *dst = CAR;
7446 ++dst;
7447 s = reg_getline(++clnum);
7448 if (reg_mmatch->endpos[no].lnum == clnum)
7449 len = reg_mmatch->endpos[no].col;
7450 else
7451 len = (int)STRLEN(s);
7452 }
7453 else
7454 break;
7455 }
7456 else if (*s == NUL) /* we hit NUL. */
7457 {
7458 if (copy)
7459 EMSG(_(e_re_damg));
7460 goto exit;
7461 }
7462 else
7463 {
7464 if (backslash && (*s == CAR || *s == '\\'))
7465 {
7466 /*
7467 * Insert a backslash in front of a CR, otherwise
7468 * it will be replaced by a line break.
7469 * Number of backslashes will be halved later,
7470 * double them here.
7471 */
7472 if (copy)
7473 {
7474 dst[0] = '\\';
7475 dst[1] = *s;
7476 }
7477 dst += 2;
7478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 else
7480 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007481#ifdef FEAT_MBYTE
7482 if (has_mbyte)
7483 c = mb_ptr2char(s);
7484 else
7485#endif
7486 c = *s;
7487
7488 if (func == (fptr_T)NULL) /* just copy */
7489 cc = c;
7490 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007491 /* Turbo C complains without the typecast */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007492 func = (fptr_T)(func(&cc, c));
7493
7494#ifdef FEAT_MBYTE
7495 if (has_mbyte)
7496 {
Bram Moolenaar9225efb2007-07-30 20:32:53 +00007497 int l;
7498
7499 /* Copy composing characters separately, one
7500 * at a time. */
7501 if (enc_utf8)
7502 l = utf_ptr2len(s) - 1;
7503 else
7504 l = mb_ptr2len(s) - 1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007505
7506 s += l;
7507 len -= l;
7508 if (copy)
7509 mb_char2bytes(cc, dst);
7510 dst += mb_char2len(cc) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007512 else
7513#endif
7514 if (copy)
7515 *dst = cc;
7516 dst++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007518
Bram Moolenaar071d4272004-06-13 20:20:40 +00007519 ++s;
7520 --len;
7521 }
7522 }
7523 }
7524 no = -1;
7525 }
7526 }
7527 if (copy)
7528 *dst = NUL;
7529
7530exit:
7531 return (int)((dst - dest) + 1);
7532}
7533
7534#ifdef FEAT_EVAL
Bram Moolenaard32a3192009-11-26 19:40:49 +00007535static char_u *reg_getline_submatch __ARGS((linenr_T lnum));
7536
Bram Moolenaar071d4272004-06-13 20:20:40 +00007537/*
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007538 * Call reg_getline() with the line numbers from the submatch. If a
7539 * substitute() was used the reg_maxline and other values have been
7540 * overwritten.
7541 */
7542 static char_u *
7543reg_getline_submatch(lnum)
7544 linenr_T lnum;
7545{
7546 char_u *s;
7547 linenr_T save_first = reg_firstlnum;
7548 linenr_T save_max = reg_maxline;
7549
7550 reg_firstlnum = submatch_firstlnum;
7551 reg_maxline = submatch_maxline;
7552
7553 s = reg_getline(lnum);
7554
7555 reg_firstlnum = save_first;
7556 reg_maxline = save_max;
7557 return s;
7558}
7559
7560/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007561 * Used for the submatch() function: get the string from the n'th submatch in
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 * allocated memory.
7563 * Returns NULL when not in a ":s" command and for a non-existing submatch.
7564 */
7565 char_u *
7566reg_submatch(no)
7567 int no;
7568{
7569 char_u *retval = NULL;
7570 char_u *s;
7571 int len;
7572 int round;
7573 linenr_T lnum;
7574
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007575 if (!can_f_submatch || no < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007576 return NULL;
7577
7578 if (submatch_match == NULL)
7579 {
7580 /*
7581 * First round: compute the length and allocate memory.
7582 * Second round: copy the text.
7583 */
7584 for (round = 1; round <= 2; ++round)
7585 {
7586 lnum = submatch_mmatch->startpos[no].lnum;
7587 if (lnum < 0 || submatch_mmatch->endpos[no].lnum < 0)
7588 return NULL;
7589
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007590 s = reg_getline_submatch(lnum) + submatch_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007591 if (s == NULL) /* anti-crash check, cannot happen? */
7592 break;
7593 if (submatch_mmatch->endpos[no].lnum == lnum)
7594 {
7595 /* Within one line: take form start to end col. */
7596 len = submatch_mmatch->endpos[no].col
7597 - submatch_mmatch->startpos[no].col;
7598 if (round == 2)
Bram Moolenaarbbebc852005-07-18 21:47:53 +00007599 vim_strncpy(retval, s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600 ++len;
7601 }
7602 else
7603 {
7604 /* Multiple lines: take start line from start col, middle
7605 * lines completely and end line up to end col. */
7606 len = (int)STRLEN(s);
7607 if (round == 2)
7608 {
7609 STRCPY(retval, s);
7610 retval[len] = '\n';
7611 }
7612 ++len;
7613 ++lnum;
7614 while (lnum < submatch_mmatch->endpos[no].lnum)
7615 {
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007616 s = reg_getline_submatch(lnum++);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007617 if (round == 2)
7618 STRCPY(retval + len, s);
7619 len += (int)STRLEN(s);
7620 if (round == 2)
7621 retval[len] = '\n';
7622 ++len;
7623 }
7624 if (round == 2)
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007625 STRNCPY(retval + len, reg_getline_submatch(lnum),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 submatch_mmatch->endpos[no].col);
7627 len += submatch_mmatch->endpos[no].col;
7628 if (round == 2)
7629 retval[len] = NUL;
7630 ++len;
7631 }
7632
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007633 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007634 {
7635 retval = lalloc((long_u)len, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007636 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 return NULL;
7638 }
7639 }
7640 }
7641 else
7642 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00007643 s = submatch_match->startp[no];
7644 if (s == NULL || submatch_match->endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 retval = NULL;
7646 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007647 retval = vim_strnsave(s, (int)(submatch_match->endp[no] - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007648 }
7649
7650 return retval;
7651}
7652#endif