blob: b078de385be34ddc9a0921b1fb79768dedefe9a6 [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
3416 * reg_buf <invalid> buffer in which to search
3417 * 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;
3574 reg_win = NULL;
3575 ireg_ic = rmp->rm_ic;
3576#ifdef FEAT_MBYTE
3577 ireg_icombine = FALSE;
3578#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003579 ireg_maxcol = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003580 return (vim_regexec_both(line, col, NULL) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581}
3582
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003583#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
3584 || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585/*
3586 * Like vim_regexec(), but consider a "\n" in "line" to be a line break.
3587 */
3588 int
3589vim_regexec_nl(rmp, line, col)
3590 regmatch_T *rmp;
3591 char_u *line; /* string to match against */
3592 colnr_T col; /* column to start looking for match */
3593{
3594 reg_match = rmp;
3595 reg_mmatch = NULL;
3596 reg_maxline = 0;
3597 reg_line_lbr = TRUE;
3598 reg_win = NULL;
3599 ireg_ic = rmp->rm_ic;
3600#ifdef FEAT_MBYTE
3601 ireg_icombine = FALSE;
3602#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003603 ireg_maxcol = 0;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003604 return (vim_regexec_both(line, col, NULL) != 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605}
3606#endif
3607
3608/*
3609 * Match a regexp against multiple lines.
3610 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3611 * Uses curbuf for line count and 'iskeyword'.
3612 *
3613 * Return zero if there is no match. Return number of lines contained in the
3614 * match otherwise.
3615 */
3616 long
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003617vim_regexec_multi(rmp, win, buf, lnum, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 regmmatch_T *rmp;
3619 win_T *win; /* window in which to search or NULL */
3620 buf_T *buf; /* buffer in which to search */
3621 linenr_T lnum; /* nr of line to start looking for match */
3622 colnr_T col; /* column to start looking for match */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003623 proftime_T *tm; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624{
3625 long r;
3626 buf_T *save_curbuf = curbuf;
3627
3628 reg_match = NULL;
3629 reg_mmatch = rmp;
3630 reg_buf = buf;
3631 reg_win = win;
3632 reg_firstlnum = lnum;
3633 reg_maxline = reg_buf->b_ml.ml_line_count - lnum;
3634 reg_line_lbr = FALSE;
3635 ireg_ic = rmp->rmm_ic;
3636#ifdef FEAT_MBYTE
3637 ireg_icombine = FALSE;
3638#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003639 ireg_maxcol = rmp->rmm_maxcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640
3641 /* Need to switch to buffer "buf" to make vim_iswordc() work. */
3642 curbuf = buf;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003643 r = vim_regexec_both(NULL, col, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 curbuf = save_curbuf;
3645
3646 return r;
3647}
3648
3649/*
3650 * Match a regexp against a string ("line" points to the string) or multiple
3651 * lines ("line" is NULL, use reg_getline()).
3652 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 static long
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003654vim_regexec_both(line, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 char_u *line;
3656 colnr_T col; /* column to start looking for match */
Bram Moolenaar78a15312009-05-15 19:33:18 +00003657 proftime_T *tm UNUSED; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658{
3659 regprog_T *prog;
3660 char_u *s;
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003661 long retval = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003663 /* Create "regstack" and "backpos" if they are not allocated yet.
3664 * We allocate *_INITIAL amount of bytes first and then set the grow size
3665 * to much bigger value to avoid many malloc calls in case of deep regular
3666 * expressions. */
3667 if (regstack.ga_data == NULL)
3668 {
3669 /* Use an item size of 1 byte, since we push different things
3670 * onto the regstack. */
3671 ga_init2(&regstack, 1, REGSTACK_INITIAL);
3672 ga_grow(&regstack, REGSTACK_INITIAL);
3673 regstack.ga_growsize = REGSTACK_INITIAL * 8;
3674 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003676 if (backpos.ga_data == NULL)
3677 {
3678 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL);
3679 ga_grow(&backpos, BACKPOS_INITIAL);
3680 backpos.ga_growsize = BACKPOS_INITIAL * 8;
3681 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003682
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 if (REG_MULTI)
3684 {
3685 prog = reg_mmatch->regprog;
3686 line = reg_getline((linenr_T)0);
3687 reg_startpos = reg_mmatch->startpos;
3688 reg_endpos = reg_mmatch->endpos;
3689 }
3690 else
3691 {
3692 prog = reg_match->regprog;
3693 reg_startp = reg_match->startp;
3694 reg_endp = reg_match->endp;
3695 }
3696
3697 /* Be paranoid... */
3698 if (prog == NULL || line == NULL)
3699 {
3700 EMSG(_(e_null));
3701 goto theend;
3702 }
3703
3704 /* Check validity of program. */
3705 if (prog_magic_wrong())
3706 goto theend;
3707
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003708 /* If the start column is past the maximum column: no need to try. */
3709 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3710 goto theend;
3711
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 /* If pattern contains "\c" or "\C": overrule value of ireg_ic */
3713 if (prog->regflags & RF_ICASE)
3714 ireg_ic = TRUE;
3715 else if (prog->regflags & RF_NOICASE)
3716 ireg_ic = FALSE;
3717
3718#ifdef FEAT_MBYTE
3719 /* If pattern contains "\Z" overrule value of ireg_icombine */
3720 if (prog->regflags & RF_ICOMBINE)
3721 ireg_icombine = TRUE;
3722#endif
3723
3724 /* If there is a "must appear" string, look for it. */
3725 if (prog->regmust != NULL)
3726 {
3727 int c;
3728
3729#ifdef FEAT_MBYTE
3730 if (has_mbyte)
3731 c = (*mb_ptr2char)(prog->regmust);
3732 else
3733#endif
3734 c = *prog->regmust;
3735 s = line + col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003736
3737 /*
3738 * This is used very often, esp. for ":global". Use three versions of
3739 * the loop to avoid overhead of conditions.
3740 */
3741 if (!ireg_ic
3742#ifdef FEAT_MBYTE
3743 && !has_mbyte
3744#endif
3745 )
3746 while ((s = vim_strbyte(s, c)) != NULL)
3747 {
3748 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3749 break; /* Found it. */
3750 ++s;
3751 }
3752#ifdef FEAT_MBYTE
3753 else if (!ireg_ic || (!enc_utf8 && mb_char2len(c) > 1))
3754 while ((s = vim_strchr(s, c)) != NULL)
3755 {
3756 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3757 break; /* Found it. */
3758 mb_ptr_adv(s);
3759 }
3760#endif
3761 else
3762 while ((s = cstrchr(s, c)) != NULL)
3763 {
3764 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3765 break; /* Found it. */
3766 mb_ptr_adv(s);
3767 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 if (s == NULL) /* Not present. */
3769 goto theend;
3770 }
3771
3772 regline = line;
3773 reglnum = 0;
Bram Moolenaar73a92fe2010-09-14 10:55:47 +02003774 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775
3776 /* Simplest case: Anchored match need be tried only once. */
3777 if (prog->reganch)
3778 {
3779 int c;
3780
3781#ifdef FEAT_MBYTE
3782 if (has_mbyte)
3783 c = (*mb_ptr2char)(regline + col);
3784 else
3785#endif
3786 c = regline[col];
3787 if (prog->regstart == NUL
3788 || prog->regstart == c
3789 || (ireg_ic && ((
3790#ifdef FEAT_MBYTE
3791 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c)))
3792 || (c < 255 && prog->regstart < 255 &&
3793#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003794 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 retval = regtry(prog, col);
3796 else
3797 retval = 0;
3798 }
3799 else
3800 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003801#ifdef FEAT_RELTIME
3802 int tm_count = 0;
3803#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 /* Messy cases: unanchored match. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003805 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 {
3807 if (prog->regstart != NUL)
3808 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003809 /* Skip until the char we know it must start with.
3810 * Used often, do some work to avoid call overhead. */
3811 if (!ireg_ic
3812#ifdef FEAT_MBYTE
3813 && !has_mbyte
3814#endif
3815 )
3816 s = vim_strbyte(regline + col, prog->regstart);
3817 else
3818 s = cstrchr(regline + col, prog->regstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 if (s == NULL)
3820 {
3821 retval = 0;
3822 break;
3823 }
3824 col = (int)(s - regline);
3825 }
3826
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003827 /* Check for maximum column to try. */
3828 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3829 {
3830 retval = 0;
3831 break;
3832 }
3833
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 retval = regtry(prog, col);
3835 if (retval > 0)
3836 break;
3837
3838 /* if not currently on the first line, get it again */
3839 if (reglnum != 0)
3840 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 reglnum = 0;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003842 regline = reg_getline((linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 }
3844 if (regline[col] == NUL)
3845 break;
3846#ifdef FEAT_MBYTE
3847 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003848 col += (*mb_ptr2len)(regline + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 else
3850#endif
3851 ++col;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003852#ifdef FEAT_RELTIME
3853 /* Check for timeout once in a twenty times to avoid overhead. */
3854 if (tm != NULL && ++tm_count == 20)
3855 {
3856 tm_count = 0;
3857 if (profile_passed_limit(tm))
3858 break;
3859 }
3860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 }
3862 }
3863
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864theend:
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003865 /* Free "reg_tofree" when it's a bit big.
3866 * Free regstack and backpos if they are bigger than their initial size. */
3867 if (reg_tofreelen > 400)
3868 {
3869 vim_free(reg_tofree);
3870 reg_tofree = NULL;
3871 }
3872 if (regstack.ga_maxlen > REGSTACK_INITIAL)
3873 ga_clear(&regstack);
3874 if (backpos.ga_maxlen > BACKPOS_INITIAL)
3875 ga_clear(&backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003876
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877 return retval;
3878}
3879
3880#ifdef FEAT_SYN_HL
3881static reg_extmatch_T *make_extmatch __ARGS((void));
3882
3883/*
3884 * Create a new extmatch and mark it as referenced once.
3885 */
3886 static reg_extmatch_T *
3887make_extmatch()
3888{
3889 reg_extmatch_T *em;
3890
3891 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T));
3892 if (em != NULL)
3893 em->refcnt = 1;
3894 return em;
3895}
3896
3897/*
3898 * Add a reference to an extmatch.
3899 */
3900 reg_extmatch_T *
3901ref_extmatch(em)
3902 reg_extmatch_T *em;
3903{
3904 if (em != NULL)
3905 em->refcnt++;
3906 return em;
3907}
3908
3909/*
3910 * Remove a reference to an extmatch. If there are no references left, free
3911 * the info.
3912 */
3913 void
3914unref_extmatch(em)
3915 reg_extmatch_T *em;
3916{
3917 int i;
3918
3919 if (em != NULL && --em->refcnt <= 0)
3920 {
3921 for (i = 0; i < NSUBEXP; ++i)
3922 vim_free(em->matches[i]);
3923 vim_free(em);
3924 }
3925}
3926#endif
3927
3928/*
3929 * regtry - try match of "prog" with at regline["col"].
3930 * Returns 0 for failure, number of lines contained in the match otherwise.
3931 */
3932 static long
3933regtry(prog, col)
3934 regprog_T *prog;
3935 colnr_T col;
3936{
3937 reginput = regline + col;
3938 need_clear_subexpr = TRUE;
3939#ifdef FEAT_SYN_HL
3940 /* Clear the external match subpointers if necessary. */
3941 if (prog->reghasz == REX_SET)
3942 need_clear_zsubexpr = TRUE;
3943#endif
3944
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003945 if (regmatch(prog->program + 1) == 0)
3946 return 0;
3947
3948 cleanup_subexpr();
3949 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003951 if (reg_startpos[0].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003953 reg_startpos[0].lnum = 0;
3954 reg_startpos[0].col = col;
3955 }
3956 if (reg_endpos[0].lnum < 0)
3957 {
3958 reg_endpos[0].lnum = reglnum;
3959 reg_endpos[0].col = (int)(reginput - regline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 }
3961 else
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003962 /* Use line number of "\ze". */
3963 reglnum = reg_endpos[0].lnum;
3964 }
3965 else
3966 {
3967 if (reg_startp[0] == NULL)
3968 reg_startp[0] = regline + col;
3969 if (reg_endp[0] == NULL)
3970 reg_endp[0] = reginput;
3971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972#ifdef FEAT_SYN_HL
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003973 /* Package any found \z(...\) matches for export. Default is none. */
3974 unref_extmatch(re_extmatch_out);
3975 re_extmatch_out = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003977 if (prog->reghasz == REX_SET)
3978 {
3979 int i;
3980
3981 cleanup_zsubexpr();
3982 re_extmatch_out = make_extmatch();
3983 for (i = 0; i < NSUBEXP; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003985 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003987 /* Only accept single line matches. */
3988 if (reg_startzpos[i].lnum >= 0
3989 && reg_endzpos[i].lnum == reg_startzpos[i].lnum)
3990 re_extmatch_out->matches[i] =
3991 vim_strnsave(reg_getline(reg_startzpos[i].lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 + reg_startzpos[i].col,
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003993 reg_endzpos[i].col - reg_startzpos[i].col);
3994 }
3995 else
3996 {
3997 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL)
3998 re_extmatch_out->matches[i] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 vim_strnsave(reg_startzp[i],
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004000 (int)(reg_endzp[i] - reg_startzp[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001 }
4002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004004#endif
4005 return 1 + reglnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006}
4007
4008#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009static int reg_prev_class __ARGS((void));
4010
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011/*
4012 * Get class of previous character.
4013 */
4014 static int
4015reg_prev_class()
4016{
4017 if (reginput > regline)
4018 return mb_get_class(reginput - 1
4019 - (*mb_head_off)(regline, reginput - 1));
4020 return -1;
4021}
4022
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004024#define ADVANCE_REGINPUT() mb_ptr_adv(reginput)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004025
4026/*
4027 * The arguments from BRACE_LIMITS are stored here. They are actually local
4028 * to regmatch(), but they are here to reduce the amount of stack space used
4029 * (it can be called recursively many times).
4030 */
4031static long bl_minval;
4032static long bl_maxval;
4033
4034/*
4035 * regmatch - main matching routine
4036 *
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004037 * Conceptually the strategy is simple: Check to see whether the current node
4038 * matches, push an item onto the regstack and loop to see whether the rest
4039 * matches, and then act accordingly. In practice we make some effort to
4040 * avoid using the regstack, in particular by going through "ordinary" nodes
4041 * (that don't need to know whether the rest of the match failed) by a nested
4042 * loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043 *
4044 * Returns TRUE when there is a match. Leaves reginput and reglnum just after
4045 * the last matched character.
4046 * Returns FALSE when there is no match. Leaves reginput and reglnum in an
4047 * undefined state!
4048 */
4049 static int
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004050regmatch(scan)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 char_u *scan; /* Current node. */
4052{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004053 char_u *next; /* Next node. */
4054 int op;
4055 int c;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004056 regitem_T *rp;
4057 int no;
4058 int status; /* one of the RA_ values: */
4059#define RA_FAIL 1 /* something failed, abort */
4060#define RA_CONT 2 /* continue in inner loop */
4061#define RA_BREAK 3 /* break inner loop */
4062#define RA_MATCH 4 /* successful match */
4063#define RA_NOMATCH 5 /* didn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004065 /* Make "regstack" and "backpos" empty. They are allocated and freed in
4066 * vim_regexec_both() to reduce malloc()/free() calls. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004067 regstack.ga_len = 0;
4068 backpos.ga_len = 0;
Bram Moolenaar582fd852005-03-28 20:58:01 +00004069
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004070 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004071 * Repeat until "regstack" is empty.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004072 */
4073 for (;;)
4074 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 /* Some patterns my cause a long time to match, even though they are not
4076 * illegal. E.g., "\([a-z]\+\)\+Q". Allow breaking them with CTRL-C. */
4077 fast_breakcheck();
4078
4079#ifdef DEBUG
4080 if (scan != NULL && regnarrate)
4081 {
4082 mch_errmsg(regprop(scan));
4083 mch_errmsg("(\n");
4084 }
4085#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004086
4087 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004088 * Repeat for items that can be matched sequentially, without using the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004089 * regstack.
4090 */
4091 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004093 if (got_int || scan == NULL)
4094 {
4095 status = RA_FAIL;
4096 break;
4097 }
4098 status = RA_CONT;
4099
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100#ifdef DEBUG
4101 if (regnarrate)
4102 {
4103 mch_errmsg(regprop(scan));
4104 mch_errmsg("...\n");
4105# ifdef FEAT_SYN_HL
4106 if (re_extmatch_in != NULL)
4107 {
4108 int i;
4109
4110 mch_errmsg(_("External submatches:\n"));
4111 for (i = 0; i < NSUBEXP; i++)
4112 {
4113 mch_errmsg(" \"");
4114 if (re_extmatch_in->matches[i] != NULL)
4115 mch_errmsg(re_extmatch_in->matches[i]);
4116 mch_errmsg("\"\n");
4117 }
4118 }
4119# endif
4120 }
4121#endif
4122 next = regnext(scan);
4123
4124 op = OP(scan);
4125 /* Check for character class with NL added. */
Bram Moolenaar640009d2006-10-17 16:48:26 +00004126 if (!reg_line_lbr && WITH_NL(op) && REG_MULTI
4127 && *reginput == NUL && reglnum <= reg_maxline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 {
4129 reg_nextline();
4130 }
4131 else if (reg_line_lbr && WITH_NL(op) && *reginput == '\n')
4132 {
4133 ADVANCE_REGINPUT();
4134 }
4135 else
4136 {
4137 if (WITH_NL(op))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004138 op -= ADD_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139#ifdef FEAT_MBYTE
4140 if (has_mbyte)
4141 c = (*mb_ptr2char)(reginput);
4142 else
4143#endif
4144 c = *reginput;
4145 switch (op)
4146 {
4147 case BOL:
4148 if (reginput != regline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004149 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 break;
4151
4152 case EOL:
4153 if (c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004154 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 break;
4156
4157 case RE_BOF:
Bram Moolenaara7139332007-12-09 18:26:22 +00004158 /* We're not at the beginning of the file when below the first
4159 * line where we started, not at the start of the line or we
4160 * didn't start at the first line of the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 if (reglnum != 0 || reginput != regline
Bram Moolenaara7139332007-12-09 18:26:22 +00004162 || (REG_MULTI && reg_firstlnum > 1))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004163 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 break;
4165
4166 case RE_EOF:
4167 if (reglnum != reg_maxline || c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004168 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 break;
4170
4171 case CURSOR:
4172 /* Check if the buffer is in a window and compare the
4173 * reg_win->w_cursor position to the match position. */
4174 if (reg_win == NULL
4175 || (reglnum + reg_firstlnum != reg_win->w_cursor.lnum)
4176 || ((colnr_T)(reginput - regline) != reg_win->w_cursor.col))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004177 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 break;
4179
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004180 case RE_MARK:
4181 /* Compare the mark position to the match position. NOTE: Always
4182 * uses the current buffer. */
4183 {
4184 int mark = OPERAND(scan)[0];
4185 int cmp = OPERAND(scan)[1];
4186 pos_T *pos;
4187
4188 pos = getmark(mark, FALSE);
Bram Moolenaare9400a42007-05-06 13:04:32 +00004189 if (pos == NULL /* mark doesn't exist */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004190 || pos->lnum <= 0 /* mark isn't set (in curbuf) */
4191 || (pos->lnum == reglnum + reg_firstlnum
4192 ? (pos->col == (colnr_T)(reginput - regline)
4193 ? (cmp == '<' || cmp == '>')
4194 : (pos->col < (colnr_T)(reginput - regline)
4195 ? cmp != '>'
4196 : cmp != '<'))
4197 : (pos->lnum < reglnum + reg_firstlnum
4198 ? cmp != '>'
4199 : cmp != '<')))
4200 status = RA_NOMATCH;
4201 }
4202 break;
4203
4204 case RE_VISUAL:
4205#ifdef FEAT_VISUAL
4206 /* Check if the buffer is the current buffer. and whether the
4207 * position is inside the Visual area. */
4208 if (reg_buf != curbuf || VIsual.lnum == 0)
4209 status = RA_NOMATCH;
4210 else
4211 {
4212 pos_T top, bot;
4213 linenr_T lnum;
4214 colnr_T col;
4215 win_T *wp = reg_win == NULL ? curwin : reg_win;
4216 int mode;
4217
4218 if (VIsual_active)
4219 {
4220 if (lt(VIsual, wp->w_cursor))
4221 {
4222 top = VIsual;
4223 bot = wp->w_cursor;
4224 }
4225 else
4226 {
4227 top = wp->w_cursor;
4228 bot = VIsual;
4229 }
4230 mode = VIsual_mode;
4231 }
4232 else
4233 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004234 if (lt(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004235 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004236 top = curbuf->b_visual.vi_start;
4237 bot = curbuf->b_visual.vi_end;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004238 }
4239 else
4240 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004241 top = curbuf->b_visual.vi_end;
4242 bot = curbuf->b_visual.vi_start;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004243 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004244 mode = curbuf->b_visual.vi_mode;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004245 }
4246 lnum = reglnum + reg_firstlnum;
4247 col = (colnr_T)(reginput - regline);
4248 if (lnum < top.lnum || lnum > bot.lnum)
4249 status = RA_NOMATCH;
4250 else if (mode == 'v')
4251 {
4252 if ((lnum == top.lnum && col < top.col)
4253 || (lnum == bot.lnum
4254 && col >= bot.col + (*p_sel != 'e')))
4255 status = RA_NOMATCH;
4256 }
4257 else if (mode == Ctrl_V)
4258 {
4259 colnr_T start, end;
4260 colnr_T start2, end2;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004261 colnr_T cols;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004262
4263 getvvcol(wp, &top, &start, NULL, &end);
4264 getvvcol(wp, &bot, &start2, NULL, &end2);
4265 if (start2 < start)
4266 start = start2;
4267 if (end2 > end)
4268 end = end2;
4269 if (top.col == MAXCOL || bot.col == MAXCOL)
4270 end = MAXCOL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004271 cols = win_linetabsize(wp,
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004272 regline, (colnr_T)(reginput - regline));
Bram Moolenaar89d40322006-08-29 15:30:07 +00004273 if (cols < start || cols > end - (*p_sel == 'e'))
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004274 status = RA_NOMATCH;
4275 }
4276 }
4277#else
4278 status = RA_NOMATCH;
4279#endif
4280 break;
4281
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 case RE_LNUM:
4283 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + reg_firstlnum),
4284 scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004285 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 break;
4287
4288 case RE_COL:
4289 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004290 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 break;
4292
4293 case RE_VCOL:
4294 if (!re_num_cmp((long_u)win_linetabsize(
4295 reg_win == NULL ? curwin : reg_win,
4296 regline, (colnr_T)(reginput - regline)) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004297 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 break;
4299
4300 case BOW: /* \<word; reginput points to w */
4301 if (c == NUL) /* Can't match at end of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004302 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004304 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 {
4306 int this_class;
4307
4308 /* Get class of current and previous char (if it exists). */
4309 this_class = mb_get_class(reginput);
4310 if (this_class <= 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004311 status = RA_NOMATCH; /* not on a word at all */
4312 else if (reg_prev_class() == this_class)
4313 status = RA_NOMATCH; /* previous char is in same word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 }
4315#endif
4316 else
4317 {
4318 if (!vim_iswordc(c)
4319 || (reginput > regline && vim_iswordc(reginput[-1])))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004320 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004321 }
4322 break;
4323
4324 case EOW: /* word\>; reginput points after d */
4325 if (reginput == regline) /* Can't match at start of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004326 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004328 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329 {
4330 int this_class, prev_class;
4331
4332 /* Get class of current and previous char (if it exists). */
4333 this_class = mb_get_class(reginput);
4334 prev_class = reg_prev_class();
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004335 if (this_class == prev_class
4336 || prev_class == 0 || prev_class == 1)
4337 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004340 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004342 if (!vim_iswordc(reginput[-1])
4343 || (reginput[0] != NUL && vim_iswordc(c)))
4344 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 }
4346 break; /* Matched with EOW */
4347
4348 case ANY:
4349 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004350 status = RA_NOMATCH;
4351 else
4352 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 break;
4354
4355 case IDENT:
4356 if (!vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004357 status = RA_NOMATCH;
4358 else
4359 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 break;
4361
4362 case SIDENT:
4363 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004364 status = RA_NOMATCH;
4365 else
4366 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 break;
4368
4369 case KWORD:
4370 if (!vim_iswordp(reginput))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004371 status = RA_NOMATCH;
4372 else
4373 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 break;
4375
4376 case SKWORD:
4377 if (VIM_ISDIGIT(*reginput) || !vim_iswordp(reginput))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004378 status = RA_NOMATCH;
4379 else
4380 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 break;
4382
4383 case FNAME:
4384 if (!vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004385 status = RA_NOMATCH;
4386 else
4387 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 break;
4389
4390 case SFNAME:
4391 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004392 status = RA_NOMATCH;
4393 else
4394 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 break;
4396
4397 case PRINT:
4398 if (ptr2cells(reginput) != 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004399 status = RA_NOMATCH;
4400 else
4401 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 break;
4403
4404 case SPRINT:
4405 if (VIM_ISDIGIT(*reginput) || ptr2cells(reginput) != 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004406 status = RA_NOMATCH;
4407 else
4408 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409 break;
4410
4411 case WHITE:
4412 if (!vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004413 status = RA_NOMATCH;
4414 else
4415 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 break;
4417
4418 case NWHITE:
4419 if (c == NUL || vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004420 status = RA_NOMATCH;
4421 else
4422 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 break;
4424
4425 case DIGIT:
4426 if (!ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004427 status = RA_NOMATCH;
4428 else
4429 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 break;
4431
4432 case NDIGIT:
4433 if (c == NUL || ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004434 status = RA_NOMATCH;
4435 else
4436 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 break;
4438
4439 case HEX:
4440 if (!ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004441 status = RA_NOMATCH;
4442 else
4443 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 break;
4445
4446 case NHEX:
4447 if (c == NUL || ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004448 status = RA_NOMATCH;
4449 else
4450 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 break;
4452
4453 case OCTAL:
4454 if (!ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004455 status = RA_NOMATCH;
4456 else
4457 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 break;
4459
4460 case NOCTAL:
4461 if (c == NUL || ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004462 status = RA_NOMATCH;
4463 else
4464 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 break;
4466
4467 case WORD:
4468 if (!ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004469 status = RA_NOMATCH;
4470 else
4471 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 break;
4473
4474 case NWORD:
4475 if (c == NUL || ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004476 status = RA_NOMATCH;
4477 else
4478 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 break;
4480
4481 case HEAD:
4482 if (!ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004483 status = RA_NOMATCH;
4484 else
4485 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 break;
4487
4488 case NHEAD:
4489 if (c == NUL || ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004490 status = RA_NOMATCH;
4491 else
4492 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 break;
4494
4495 case ALPHA:
4496 if (!ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004497 status = RA_NOMATCH;
4498 else
4499 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 break;
4501
4502 case NALPHA:
4503 if (c == NUL || ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004504 status = RA_NOMATCH;
4505 else
4506 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507 break;
4508
4509 case LOWER:
4510 if (!ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004511 status = RA_NOMATCH;
4512 else
4513 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 break;
4515
4516 case NLOWER:
4517 if (c == NUL || ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004518 status = RA_NOMATCH;
4519 else
4520 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 break;
4522
4523 case UPPER:
4524 if (!ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004525 status = RA_NOMATCH;
4526 else
4527 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 break;
4529
4530 case NUPPER:
4531 if (c == NUL || ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004532 status = RA_NOMATCH;
4533 else
4534 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 break;
4536
4537 case EXACTLY:
4538 {
4539 int len;
4540 char_u *opnd;
4541
4542 opnd = OPERAND(scan);
4543 /* Inline the first byte, for speed. */
4544 if (*opnd != *reginput
4545 && (!ireg_ic || (
4546#ifdef FEAT_MBYTE
4547 !enc_utf8 &&
4548#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00004549 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput))))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004550 status = RA_NOMATCH;
4551 else if (*opnd == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 {
4553 /* match empty string always works; happens when "~" is
4554 * empty. */
4555 }
4556 else if (opnd[1] == NUL
4557#ifdef FEAT_MBYTE
4558 && !(enc_utf8 && ireg_ic)
4559#endif
4560 )
4561 ++reginput; /* matched a single char */
4562 else
4563 {
4564 len = (int)STRLEN(opnd);
4565 /* Need to match first byte again for multi-byte. */
4566 if (cstrncmp(opnd, reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004567 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568#ifdef FEAT_MBYTE
4569 /* Check for following composing character. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004570 else if (enc_utf8
4571 && UTF_COMPOSINGLIKE(reginput, reginput + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 {
4573 /* raaron: This code makes a composing character get
4574 * ignored, which is the correct behavior (sometimes)
4575 * for voweled Hebrew texts. */
4576 if (!ireg_icombine)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004577 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004580 else
4581 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 }
4583 }
4584 break;
4585
4586 case ANYOF:
4587 case ANYBUT:
4588 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004589 status = RA_NOMATCH;
4590 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF))
4591 status = RA_NOMATCH;
4592 else
4593 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 break;
4595
4596#ifdef FEAT_MBYTE
4597 case MULTIBYTECODE:
4598 if (has_mbyte)
4599 {
4600 int i, len;
4601 char_u *opnd;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004602 int opndc = 0, inpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004603
4604 opnd = OPERAND(scan);
4605 /* Safety check (just in case 'encoding' was changed since
4606 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004607 if ((len = (*mb_ptr2len)(opnd)) < 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004608 {
4609 status = RA_NOMATCH;
4610 break;
4611 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004612 if (enc_utf8)
4613 opndc = mb_ptr2char(opnd);
4614 if (enc_utf8 && utf_iscomposing(opndc))
4615 {
4616 /* When only a composing char is given match at any
4617 * position where that composing char appears. */
4618 status = RA_NOMATCH;
4619 for (i = 0; reginput[i] != NUL; i += utf_char2len(inpc))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004620 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004621 inpc = mb_ptr2char(reginput + i);
4622 if (!utf_iscomposing(inpc))
4623 {
4624 if (i > 0)
4625 break;
4626 }
4627 else if (opndc == inpc)
4628 {
4629 /* Include all following composing chars. */
4630 len = i + mb_ptr2len(reginput + i);
4631 status = RA_MATCH;
4632 break;
4633 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004634 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004635 }
4636 else
4637 for (i = 0; i < len; ++i)
4638 if (opnd[i] != reginput[i])
4639 {
4640 status = RA_NOMATCH;
4641 break;
4642 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 reginput += len;
4644 }
4645 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004646 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 break;
4648#endif
4649
4650 case NOTHING:
4651 break;
4652
4653 case BACK:
Bram Moolenaar582fd852005-03-28 20:58:01 +00004654 {
4655 int i;
4656 backpos_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657
Bram Moolenaar582fd852005-03-28 20:58:01 +00004658 /*
4659 * When we run into BACK we need to check if we don't keep
4660 * looping without matching any input. The second and later
4661 * times a BACK is encountered it fails if the input is still
4662 * at the same position as the previous time.
4663 * The positions are stored in "backpos" and found by the
4664 * current value of "scan", the position in the RE program.
4665 */
4666 bp = (backpos_T *)backpos.ga_data;
4667 for (i = 0; i < backpos.ga_len; ++i)
4668 if (bp[i].bp_scan == scan)
4669 break;
4670 if (i == backpos.ga_len)
4671 {
4672 /* First time at this BACK, make room to store the pos. */
4673 if (ga_grow(&backpos, 1) == FAIL)
4674 status = RA_FAIL;
4675 else
4676 {
4677 /* get "ga_data" again, it may have changed */
4678 bp = (backpos_T *)backpos.ga_data;
4679 bp[i].bp_scan = scan;
4680 ++backpos.ga_len;
4681 }
4682 }
4683 else if (reg_save_equal(&bp[i].bp_pos))
4684 /* Still at same position as last time, fail. */
4685 status = RA_NOMATCH;
4686
4687 if (status != RA_FAIL && status != RA_NOMATCH)
4688 reg_save(&bp[i].bp_pos, &backpos);
4689 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004690 break;
4691
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 case MOPEN + 0: /* Match start: \zs */
4693 case MOPEN + 1: /* \( */
4694 case MOPEN + 2:
4695 case MOPEN + 3:
4696 case MOPEN + 4:
4697 case MOPEN + 5:
4698 case MOPEN + 6:
4699 case MOPEN + 7:
4700 case MOPEN + 8:
4701 case MOPEN + 9:
4702 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 no = op - MOPEN;
4704 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004705 rp = regstack_push(RS_MOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004706 if (rp == NULL)
4707 status = RA_FAIL;
4708 else
4709 {
4710 rp->rs_no = no;
4711 save_se(&rp->rs_un.sesave, &reg_startpos[no],
4712 &reg_startp[no]);
4713 /* We simply continue and handle the result when done. */
4714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004716 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717
4718 case NOPEN: /* \%( */
4719 case NCLOSE: /* \) after \%( */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004720 if (regstack_push(RS_NOPEN, scan) == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004721 status = RA_FAIL;
4722 /* We simply continue and handle the result when done. */
4723 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724
4725#ifdef FEAT_SYN_HL
4726 case ZOPEN + 1:
4727 case ZOPEN + 2:
4728 case ZOPEN + 3:
4729 case ZOPEN + 4:
4730 case ZOPEN + 5:
4731 case ZOPEN + 6:
4732 case ZOPEN + 7:
4733 case ZOPEN + 8:
4734 case ZOPEN + 9:
4735 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 no = op - ZOPEN;
4737 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004738 rp = regstack_push(RS_ZOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004739 if (rp == NULL)
4740 status = RA_FAIL;
4741 else
4742 {
4743 rp->rs_no = no;
4744 save_se(&rp->rs_un.sesave, &reg_startzpos[no],
4745 &reg_startzp[no]);
4746 /* We simply continue and handle the result when done. */
4747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004749 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750#endif
4751
4752 case MCLOSE + 0: /* Match end: \ze */
4753 case MCLOSE + 1: /* \) */
4754 case MCLOSE + 2:
4755 case MCLOSE + 3:
4756 case MCLOSE + 4:
4757 case MCLOSE + 5:
4758 case MCLOSE + 6:
4759 case MCLOSE + 7:
4760 case MCLOSE + 8:
4761 case MCLOSE + 9:
4762 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 no = op - MCLOSE;
4764 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004765 rp = regstack_push(RS_MCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004766 if (rp == NULL)
4767 status = RA_FAIL;
4768 else
4769 {
4770 rp->rs_no = no;
4771 save_se(&rp->rs_un.sesave, &reg_endpos[no], &reg_endp[no]);
4772 /* We simply continue and handle the result when done. */
4773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004775 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776
4777#ifdef FEAT_SYN_HL
4778 case ZCLOSE + 1: /* \) after \z( */
4779 case ZCLOSE + 2:
4780 case ZCLOSE + 3:
4781 case ZCLOSE + 4:
4782 case ZCLOSE + 5:
4783 case ZCLOSE + 6:
4784 case ZCLOSE + 7:
4785 case ZCLOSE + 8:
4786 case ZCLOSE + 9:
4787 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 no = op - ZCLOSE;
4789 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004790 rp = regstack_push(RS_ZCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004791 if (rp == NULL)
4792 status = RA_FAIL;
4793 else
4794 {
4795 rp->rs_no = no;
4796 save_se(&rp->rs_un.sesave, &reg_endzpos[no],
4797 &reg_endzp[no]);
4798 /* We simply continue and handle the result when done. */
4799 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004801 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802#endif
4803
4804 case BACKREF + 1:
4805 case BACKREF + 2:
4806 case BACKREF + 3:
4807 case BACKREF + 4:
4808 case BACKREF + 5:
4809 case BACKREF + 6:
4810 case BACKREF + 7:
4811 case BACKREF + 8:
4812 case BACKREF + 9:
4813 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004814 int len;
4815 linenr_T clnum;
4816 colnr_T ccol;
4817 char_u *p;
4818
4819 no = op - BACKREF;
4820 cleanup_subexpr();
4821 if (!REG_MULTI) /* Single-line regexp */
4822 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004823 if (reg_startp[no] == NULL || reg_endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 {
4825 /* Backref was not set: Match an empty string. */
4826 len = 0;
4827 }
4828 else
4829 {
4830 /* Compare current input with back-ref in the same
4831 * line. */
4832 len = (int)(reg_endp[no] - reg_startp[no]);
4833 if (cstrncmp(reg_startp[no], reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004834 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 }
4836 }
4837 else /* Multi-line regexp */
4838 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004839 if (reg_startpos[no].lnum < 0 || reg_endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 {
4841 /* Backref was not set: Match an empty string. */
4842 len = 0;
4843 }
4844 else
4845 {
4846 if (reg_startpos[no].lnum == reglnum
4847 && reg_endpos[no].lnum == reglnum)
4848 {
4849 /* Compare back-ref within the current line. */
4850 len = reg_endpos[no].col - reg_startpos[no].col;
4851 if (cstrncmp(regline + reg_startpos[no].col,
4852 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004853 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 }
4855 else
4856 {
4857 /* Messy situation: Need to compare between two
4858 * lines. */
4859 ccol = reg_startpos[no].col;
4860 clnum = reg_startpos[no].lnum;
4861 for (;;)
4862 {
4863 /* Since getting one line may invalidate
4864 * the other, need to make copy. Slow! */
4865 if (regline != reg_tofree)
4866 {
4867 len = (int)STRLEN(regline);
4868 if (reg_tofree == NULL
4869 || len >= (int)reg_tofreelen)
4870 {
4871 len += 50; /* get some extra */
4872 vim_free(reg_tofree);
4873 reg_tofree = alloc(len);
4874 if (reg_tofree == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004875 {
4876 status = RA_FAIL; /* outof memory!*/
4877 break;
4878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 reg_tofreelen = len;
4880 }
4881 STRCPY(reg_tofree, regline);
4882 reginput = reg_tofree
4883 + (reginput - regline);
4884 regline = reg_tofree;
4885 }
4886
4887 /* Get the line to compare with. */
4888 p = reg_getline(clnum);
4889 if (clnum == reg_endpos[no].lnum)
4890 len = reg_endpos[no].col - ccol;
4891 else
4892 len = (int)STRLEN(p + ccol);
4893
4894 if (cstrncmp(p + ccol, reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004895 {
4896 status = RA_NOMATCH; /* doesn't match */
4897 break;
4898 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 if (clnum == reg_endpos[no].lnum)
4900 break; /* match and at end! */
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004901 if (reglnum >= reg_maxline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004902 {
4903 status = RA_NOMATCH; /* text too short */
4904 break;
4905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906
4907 /* Advance to next line. */
4908 reg_nextline();
4909 ++clnum;
4910 ccol = 0;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004911 if (got_int)
4912 {
4913 status = RA_FAIL;
4914 break;
4915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 }
4917
4918 /* found a match! Note that regline may now point
4919 * to a copy of the line, that should not matter. */
4920 }
4921 }
4922 }
4923
4924 /* Matched the backref, skip over it. */
4925 reginput += len;
4926 }
4927 break;
4928
4929#ifdef FEAT_SYN_HL
4930 case ZREF + 1:
4931 case ZREF + 2:
4932 case ZREF + 3:
4933 case ZREF + 4:
4934 case ZREF + 5:
4935 case ZREF + 6:
4936 case ZREF + 7:
4937 case ZREF + 8:
4938 case ZREF + 9:
4939 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 int len;
4941
4942 cleanup_zsubexpr();
4943 no = op - ZREF;
4944 if (re_extmatch_in != NULL
4945 && re_extmatch_in->matches[no] != NULL)
4946 {
4947 len = (int)STRLEN(re_extmatch_in->matches[no]);
4948 if (cstrncmp(re_extmatch_in->matches[no],
4949 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004950 status = RA_NOMATCH;
4951 else
4952 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 }
4954 else
4955 {
4956 /* Backref was not set: Match an empty string. */
4957 }
4958 }
4959 break;
4960#endif
4961
4962 case BRANCH:
4963 {
4964 if (OP(next) != BRANCH) /* No choice. */
4965 next = OPERAND(scan); /* Avoid recursion. */
4966 else
4967 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004968 rp = regstack_push(RS_BRANCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004969 if (rp == NULL)
4970 status = RA_FAIL;
4971 else
4972 status = RA_BREAK; /* rest is below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 }
4974 }
4975 break;
4976
4977 case BRACE_LIMITS:
4978 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 if (OP(next) == BRACE_SIMPLE)
4980 {
4981 bl_minval = OPERAND_MIN(scan);
4982 bl_maxval = OPERAND_MAX(scan);
4983 }
4984 else if (OP(next) >= BRACE_COMPLEX
4985 && OP(next) < BRACE_COMPLEX + 10)
4986 {
4987 no = OP(next) - BRACE_COMPLEX;
4988 brace_min[no] = OPERAND_MIN(scan);
4989 brace_max[no] = OPERAND_MAX(scan);
4990 brace_count[no] = 0;
4991 }
4992 else
4993 {
4994 EMSG(_(e_internal)); /* Shouldn't happen */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004995 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 }
4997 }
4998 break;
4999
5000 case BRACE_COMPLEX + 0:
5001 case BRACE_COMPLEX + 1:
5002 case BRACE_COMPLEX + 2:
5003 case BRACE_COMPLEX + 3:
5004 case BRACE_COMPLEX + 4:
5005 case BRACE_COMPLEX + 5:
5006 case BRACE_COMPLEX + 6:
5007 case BRACE_COMPLEX + 7:
5008 case BRACE_COMPLEX + 8:
5009 case BRACE_COMPLEX + 9:
5010 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 no = op - BRACE_COMPLEX;
5012 ++brace_count[no];
5013
5014 /* If not matched enough times yet, try one more */
5015 if (brace_count[no] <= (brace_min[no] <= brace_max[no]
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005016 ? brace_min[no] : brace_max[no]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005018 rp = regstack_push(RS_BRCPLX_MORE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005019 if (rp == NULL)
5020 status = RA_FAIL;
5021 else
5022 {
5023 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005024 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005025 next = OPERAND(scan);
5026 /* We continue and handle the result when done. */
5027 }
5028 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 }
5030
5031 /* If matched enough times, may try matching some more */
5032 if (brace_min[no] <= brace_max[no])
5033 {
5034 /* Range is the normal way around, use longest match */
5035 if (brace_count[no] <= brace_max[no])
5036 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005037 rp = regstack_push(RS_BRCPLX_LONG, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005038 if (rp == NULL)
5039 status = RA_FAIL;
5040 else
5041 {
5042 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005043 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005044 next = OPERAND(scan);
5045 /* We continue and handle the result when done. */
5046 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 }
5048 }
5049 else
5050 {
5051 /* Range is backwards, use shortest match first */
5052 if (brace_count[no] <= brace_min[no])
5053 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005054 rp = regstack_push(RS_BRCPLX_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005055 if (rp == NULL)
5056 status = RA_FAIL;
5057 else
5058 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005059 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005060 /* We continue and handle the result when done. */
5061 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 }
5063 }
5064 }
5065 break;
5066
5067 case BRACE_SIMPLE:
5068 case STAR:
5069 case PLUS:
5070 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005071 regstar_T rst;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072
5073 /*
5074 * Lookahead to avoid useless match attempts when we know
5075 * what character comes next.
5076 */
5077 if (OP(next) == EXACTLY)
5078 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005079 rst.nextb = *OPERAND(next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 if (ireg_ic)
5081 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005082 if (MB_ISUPPER(rst.nextb))
5083 rst.nextb_ic = MB_TOLOWER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 else
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005085 rst.nextb_ic = MB_TOUPPER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 }
5087 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005088 rst.nextb_ic = rst.nextb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 }
5090 else
5091 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005092 rst.nextb = NUL;
5093 rst.nextb_ic = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 }
5095 if (op != BRACE_SIMPLE)
5096 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005097 rst.minval = (op == STAR) ? 0 : 1;
5098 rst.maxval = MAX_LIMIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 }
5100 else
5101 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005102 rst.minval = bl_minval;
5103 rst.maxval = bl_maxval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 }
5105
5106 /*
5107 * When maxval > minval, try matching as much as possible, up
5108 * to maxval. When maxval < minval, try matching at least the
5109 * minimal number (since the range is backwards, that's also
5110 * maxval!).
5111 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005112 rst.count = regrepeat(OPERAND(scan), rst.maxval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005115 status = RA_FAIL;
5116 break;
5117 }
5118 if (rst.minval <= rst.maxval
5119 ? rst.count >= rst.minval : rst.count >= rst.maxval)
5120 {
5121 /* It could match. Prepare for trying to match what
5122 * follows. The code is below. Parameters are stored in
5123 * a regstar_T on the regstack. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005124 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005125 {
5126 EMSG(_(e_maxmempat));
5127 status = RA_FAIL;
5128 }
5129 else if (ga_grow(&regstack, sizeof(regstar_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005130 status = RA_FAIL;
5131 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005133 regstack.ga_len += sizeof(regstar_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005134 rp = regstack_push(rst.minval <= rst.maxval
Bram Moolenaar582fd852005-03-28 20:58:01 +00005135 ? RS_STAR_LONG : RS_STAR_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005136 if (rp == NULL)
5137 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005139 {
5140 *(((regstar_T *)rp) - 1) = rst;
5141 status = RA_BREAK; /* skip the restore bits */
5142 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 }
5144 }
5145 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005146 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 }
5149 break;
5150
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005151 case NOMATCH:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 case MATCH:
5153 case SUBPAT:
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005154 rp = regstack_push(RS_NOMATCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005155 if (rp == NULL)
5156 status = RA_FAIL;
5157 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005159 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005160 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005161 next = OPERAND(scan);
5162 /* We continue and handle the result when done. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 }
5164 break;
5165
5166 case BEHIND:
5167 case NOBEHIND:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005168 /* Need a bit of room to store extra positions. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005169 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005170 {
5171 EMSG(_(e_maxmempat));
5172 status = RA_FAIL;
5173 }
5174 else if (ga_grow(&regstack, sizeof(regbehind_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005175 status = RA_FAIL;
5176 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005178 regstack.ga_len += sizeof(regbehind_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005179 rp = regstack_push(RS_BEHIND1, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005180 if (rp == NULL)
5181 status = RA_FAIL;
5182 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005184 /* Need to save the subexpr to be able to restore them
5185 * when there is a match but we don't use it. */
5186 save_subexpr(((regbehind_T *)rp) - 1);
5187
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005188 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005189 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005190 /* First try if what follows matches. If it does then we
5191 * check the behind match by looping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005192 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005193 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005194 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195
5196 case BHPOS:
5197 if (REG_MULTI)
5198 {
5199 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline)
5200 || behind_pos.rs_u.pos.lnum != reglnum)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005201 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 }
5203 else if (behind_pos.rs_u.ptr != reginput)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005204 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 break;
5206
5207 case NEWL:
Bram Moolenaar640009d2006-10-17 16:48:26 +00005208 if ((c != NUL || !REG_MULTI || reglnum > reg_maxline
5209 || reg_line_lbr) && (c != '\n' || !reg_line_lbr))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005210 status = RA_NOMATCH;
5211 else if (reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 ADVANCE_REGINPUT();
5213 else
5214 reg_nextline();
5215 break;
5216
5217 case END:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005218 status = RA_MATCH; /* Success! */
5219 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220
5221 default:
5222 EMSG(_(e_re_corr));
5223#ifdef DEBUG
5224 printf("Illegal op code %d\n", op);
5225#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005226 status = RA_FAIL;
5227 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 }
5229 }
5230
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005231 /* If we can't continue sequentially, break the inner loop. */
5232 if (status != RA_CONT)
5233 break;
5234
5235 /* Continue in inner loop, advance to next item. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 scan = next;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005237
5238 } /* end of inner loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239
5240 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005241 * If there is something on the regstack execute the code for the state.
Bram Moolenaar582fd852005-03-28 20:58:01 +00005242 * If the state is popped then loop and use the older state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005244 while (regstack.ga_len > 0 && status != RA_FAIL)
5245 {
5246 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
5247 switch (rp->rs_state)
5248 {
5249 case RS_NOPEN:
5250 /* Result is passed on as-is, simply pop the state. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005251 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005252 break;
5253
5254 case RS_MOPEN:
5255 /* Pop the state. Restore pointers when there is no match. */
5256 if (status == RA_NOMATCH)
5257 restore_se(&rp->rs_un.sesave, &reg_startpos[rp->rs_no],
5258 &reg_startp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005259 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005260 break;
5261
5262#ifdef FEAT_SYN_HL
5263 case RS_ZOPEN:
5264 /* Pop the state. Restore pointers when there is no match. */
5265 if (status == RA_NOMATCH)
5266 restore_se(&rp->rs_un.sesave, &reg_startzpos[rp->rs_no],
5267 &reg_startzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005268 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005269 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005271
5272 case RS_MCLOSE:
5273 /* Pop the state. Restore pointers when there is no match. */
5274 if (status == RA_NOMATCH)
5275 restore_se(&rp->rs_un.sesave, &reg_endpos[rp->rs_no],
5276 &reg_endp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005277 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005278 break;
5279
5280#ifdef FEAT_SYN_HL
5281 case RS_ZCLOSE:
5282 /* Pop the state. Restore pointers when there is no match. */
5283 if (status == RA_NOMATCH)
5284 restore_se(&rp->rs_un.sesave, &reg_endzpos[rp->rs_no],
5285 &reg_endzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005286 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005287 break;
5288#endif
5289
5290 case RS_BRANCH:
5291 if (status == RA_MATCH)
5292 /* this branch matched, use it */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005293 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005294 else
5295 {
5296 if (status != RA_BREAK)
5297 {
5298 /* After a non-matching branch: try next one. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005299 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005300 scan = rp->rs_scan;
5301 }
5302 if (scan == NULL || OP(scan) != BRANCH)
5303 {
5304 /* no more branches, didn't find a match */
5305 status = RA_NOMATCH;
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005306 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005307 }
5308 else
5309 {
5310 /* Prepare to try a branch. */
5311 rp->rs_scan = regnext(scan);
Bram Moolenaar582fd852005-03-28 20:58:01 +00005312 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005313 scan = OPERAND(scan);
5314 }
5315 }
5316 break;
5317
5318 case RS_BRCPLX_MORE:
5319 /* Pop the state. Restore pointers when there is no match. */
5320 if (status == RA_NOMATCH)
5321 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005322 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005323 --brace_count[rp->rs_no]; /* decrement match count */
5324 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005325 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005326 break;
5327
5328 case RS_BRCPLX_LONG:
5329 /* Pop the state. Restore pointers when there is no match. */
5330 if (status == RA_NOMATCH)
5331 {
5332 /* There was no match, but we did find enough matches. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005333 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005334 --brace_count[rp->rs_no];
5335 /* continue with the items after "\{}" */
5336 status = RA_CONT;
5337 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005338 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005339 if (status == RA_CONT)
5340 scan = regnext(scan);
5341 break;
5342
5343 case RS_BRCPLX_SHORT:
5344 /* Pop the state. Restore pointers when there is no match. */
5345 if (status == RA_NOMATCH)
5346 /* There was no match, try to match one more item. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005347 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005348 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005349 if (status == RA_NOMATCH)
5350 {
5351 scan = OPERAND(scan);
5352 status = RA_CONT;
5353 }
5354 break;
5355
5356 case RS_NOMATCH:
5357 /* Pop the state. If the operand matches for NOMATCH or
5358 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup,
5359 * except for SUBPAT, and continue with the next item. */
5360 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH))
5361 status = RA_NOMATCH;
5362 else
5363 {
5364 status = RA_CONT;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005365 if (rp->rs_no != SUBPAT) /* zero-width */
5366 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005367 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005368 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005369 if (status == RA_CONT)
5370 scan = regnext(scan);
5371 break;
5372
5373 case RS_BEHIND1:
5374 if (status == RA_NOMATCH)
5375 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005376 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005377 regstack.ga_len -= sizeof(regbehind_T);
5378 }
5379 else
5380 {
5381 /* The stuff after BEHIND/NOBEHIND matches. Now try if
5382 * the behind part does (not) match before the current
5383 * position in the input. This must be done at every
5384 * position in the input and checking if the match ends at
5385 * the current position. */
5386
5387 /* save the position after the found match for next */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005388 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005389
5390 /* start looking for a match with operand at the current
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00005391 * position. Go back one character until we find the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005392 * result, hitting the start of the line or the previous
5393 * line (for multi-line matching).
5394 * Set behind_pos to where the match should end, BHPOS
5395 * will match it. Save the current value. */
5396 (((regbehind_T *)rp) - 1)->save_behind = behind_pos;
5397 behind_pos = rp->rs_un.regsave;
5398
5399 rp->rs_state = RS_BEHIND2;
5400
Bram Moolenaar582fd852005-03-28 20:58:01 +00005401 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005402 scan = OPERAND(rp->rs_scan);
5403 }
5404 break;
5405
5406 case RS_BEHIND2:
5407 /*
5408 * Looping for BEHIND / NOBEHIND match.
5409 */
5410 if (status == RA_MATCH && reg_save_equal(&behind_pos))
5411 {
5412 /* found a match that ends where "next" started */
5413 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5414 if (rp->rs_no == BEHIND)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005415 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5416 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005417 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005418 {
5419 /* But we didn't want a match. Need to restore the
5420 * subexpr, because what follows matched, so they have
5421 * been set. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005422 status = RA_NOMATCH;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005423 restore_subexpr(((regbehind_T *)rp) - 1);
5424 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005425 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005426 regstack.ga_len -= sizeof(regbehind_T);
5427 }
5428 else
5429 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005430 /* No match or a match that doesn't end where we want it: Go
5431 * back one character. May go to previous line once. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005432 no = OK;
5433 if (REG_MULTI)
5434 {
5435 if (rp->rs_un.regsave.rs_u.pos.col == 0)
5436 {
5437 if (rp->rs_un.regsave.rs_u.pos.lnum
5438 < behind_pos.rs_u.pos.lnum
5439 || reg_getline(
5440 --rp->rs_un.regsave.rs_u.pos.lnum)
5441 == NULL)
5442 no = FAIL;
5443 else
5444 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005445 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005446 rp->rs_un.regsave.rs_u.pos.col =
5447 (colnr_T)STRLEN(regline);
5448 }
5449 }
5450 else
5451 --rp->rs_un.regsave.rs_u.pos.col;
5452 }
5453 else
5454 {
5455 if (rp->rs_un.regsave.rs_u.ptr == regline)
5456 no = FAIL;
5457 else
5458 --rp->rs_un.regsave.rs_u.ptr;
5459 }
5460 if (no == OK)
5461 {
5462 /* Advanced, prepare for finding match again. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005463 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005464 scan = OPERAND(rp->rs_scan);
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005465 if (status == RA_MATCH)
5466 {
5467 /* We did match, so subexpr may have been changed,
5468 * need to restore them for the next try. */
5469 status = RA_NOMATCH;
5470 restore_subexpr(((regbehind_T *)rp) - 1);
5471 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005472 }
5473 else
5474 {
5475 /* Can't advance. For NOBEHIND that's a match. */
5476 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5477 if (rp->rs_no == NOBEHIND)
5478 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005479 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5480 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005481 status = RA_MATCH;
5482 }
5483 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005484 {
5485 /* We do want a proper match. Need to restore the
5486 * subexpr if we had a match, because they may have
5487 * been set. */
5488 if (status == RA_MATCH)
5489 {
5490 status = RA_NOMATCH;
5491 restore_subexpr(((regbehind_T *)rp) - 1);
5492 }
5493 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005494 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005495 regstack.ga_len -= sizeof(regbehind_T);
5496 }
5497 }
5498 break;
5499
5500 case RS_STAR_LONG:
5501 case RS_STAR_SHORT:
5502 {
5503 regstar_T *rst = ((regstar_T *)rp) - 1;
5504
5505 if (status == RA_MATCH)
5506 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005507 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005508 regstack.ga_len -= sizeof(regstar_T);
5509 break;
5510 }
5511
5512 /* Tried once already, restore input pointers. */
5513 if (status != RA_BREAK)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005514 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005515
5516 /* Repeat until we found a position where it could match. */
5517 for (;;)
5518 {
5519 if (status != RA_BREAK)
5520 {
5521 /* Tried first position already, advance. */
5522 if (rp->rs_state == RS_STAR_LONG)
5523 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005524 /* Trying for longest match, but couldn't or
5525 * didn't match -- back up one char. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005526 if (--rst->count < rst->minval)
5527 break;
5528 if (reginput == regline)
5529 {
5530 /* backup to last char of previous line */
5531 --reglnum;
5532 regline = reg_getline(reglnum);
5533 /* Just in case regrepeat() didn't count
5534 * right. */
5535 if (regline == NULL)
5536 break;
5537 reginput = regline + STRLEN(regline);
5538 fast_breakcheck();
5539 }
5540 else
5541 mb_ptr_back(regline, reginput);
5542 }
5543 else
5544 {
5545 /* Range is backwards, use shortest match first.
5546 * Careful: maxval and minval are exchanged!
5547 * Couldn't or didn't match: try advancing one
5548 * char. */
5549 if (rst->count == rst->minval
5550 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0)
5551 break;
5552 ++rst->count;
5553 }
5554 if (got_int)
5555 break;
5556 }
5557 else
5558 status = RA_NOMATCH;
5559
5560 /* If it could match, try it. */
5561 if (rst->nextb == NUL || *reginput == rst->nextb
5562 || *reginput == rst->nextb_ic)
5563 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005564 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005565 scan = regnext(rp->rs_scan);
5566 status = RA_CONT;
5567 break;
5568 }
5569 }
5570 if (status != RA_CONT)
5571 {
5572 /* Failed. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005573 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005574 regstack.ga_len -= sizeof(regstar_T);
5575 status = RA_NOMATCH;
5576 }
5577 }
5578 break;
5579 }
5580
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005581 /* If we want to continue the inner loop or didn't pop a state
5582 * continue matching loop */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005583 if (status == RA_CONT || rp == (regitem_T *)
5584 ((char *)regstack.ga_data + regstack.ga_len) - 1)
5585 break;
5586 }
5587
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005588 /* May need to continue with the inner loop, starting at "scan". */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005589 if (status == RA_CONT)
5590 continue;
5591
5592 /*
5593 * If the regstack is empty or something failed we are done.
5594 */
5595 if (regstack.ga_len == 0 || status == RA_FAIL)
5596 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005597 if (scan == NULL)
5598 {
5599 /*
5600 * We get here only if there's trouble -- normally "case END" is
5601 * the terminating point.
5602 */
5603 EMSG(_(e_re_corr));
5604#ifdef DEBUG
5605 printf("Premature EOL\n");
5606#endif
5607 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005608 if (status == RA_FAIL)
5609 got_int = TRUE;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005610 return (status == RA_MATCH);
5611 }
5612
5613 } /* End of loop until the regstack is empty. */
5614
5615 /* NOTREACHED */
5616}
5617
5618/*
5619 * Push an item onto the regstack.
5620 * Returns pointer to new item. Returns NULL when out of memory.
5621 */
5622 static regitem_T *
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005623regstack_push(state, scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005624 regstate_T state;
5625 char_u *scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005626{
5627 regitem_T *rp;
5628
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005629 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005630 {
5631 EMSG(_(e_maxmempat));
5632 return NULL;
5633 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005634 if (ga_grow(&regstack, sizeof(regitem_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005635 return NULL;
5636
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005637 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005638 rp->rs_state = state;
5639 rp->rs_scan = scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005640
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005641 regstack.ga_len += sizeof(regitem_T);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005642 return rp;
5643}
5644
5645/*
5646 * Pop an item from the regstack.
5647 */
5648 static void
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005649regstack_pop(scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005650 char_u **scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005651{
5652 regitem_T *rp;
5653
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005654 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005655 *scan = rp->rs_scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005656
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005657 regstack.ga_len -= sizeof(regitem_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658}
5659
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660/*
5661 * regrepeat - repeatedly match something simple, return how many.
5662 * Advances reginput (and reglnum) to just after the matched chars.
5663 */
5664 static int
5665regrepeat(p, maxcount)
5666 char_u *p;
5667 long maxcount; /* maximum number of matches allowed */
5668{
5669 long count = 0;
5670 char_u *scan;
5671 char_u *opnd;
5672 int mask;
5673 int testval = 0;
5674
5675 scan = reginput; /* Make local copy of reginput for speed. */
5676 opnd = OPERAND(p);
5677 switch (OP(p))
5678 {
5679 case ANY:
5680 case ANY + ADD_NL:
5681 while (count < maxcount)
5682 {
5683 /* Matching anything means we continue until end-of-line (or
5684 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5685 while (*scan != NUL && count < maxcount)
5686 {
5687 ++count;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005688 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 }
Bram Moolenaar640009d2006-10-17 16:48:26 +00005690 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5691 || reg_line_lbr || count == maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 break;
5693 ++count; /* count the line-break */
5694 reg_nextline();
5695 scan = reginput;
5696 if (got_int)
5697 break;
5698 }
5699 break;
5700
5701 case IDENT:
5702 case IDENT + ADD_NL:
5703 testval = TRUE;
5704 /*FALLTHROUGH*/
5705 case SIDENT:
5706 case SIDENT + ADD_NL:
5707 while (count < maxcount)
5708 {
5709 if (vim_isIDc(*scan) && (testval || !VIM_ISDIGIT(*scan)))
5710 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005711 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 }
5713 else if (*scan == NUL)
5714 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005715 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5716 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 break;
5718 reg_nextline();
5719 scan = reginput;
5720 if (got_int)
5721 break;
5722 }
5723 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5724 ++scan;
5725 else
5726 break;
5727 ++count;
5728 }
5729 break;
5730
5731 case KWORD:
5732 case KWORD + ADD_NL:
5733 testval = TRUE;
5734 /*FALLTHROUGH*/
5735 case SKWORD:
5736 case SKWORD + ADD_NL:
5737 while (count < maxcount)
5738 {
5739 if (vim_iswordp(scan) && (testval || !VIM_ISDIGIT(*scan)))
5740 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005741 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742 }
5743 else if (*scan == NUL)
5744 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005745 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5746 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 break;
5748 reg_nextline();
5749 scan = reginput;
5750 if (got_int)
5751 break;
5752 }
5753 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5754 ++scan;
5755 else
5756 break;
5757 ++count;
5758 }
5759 break;
5760
5761 case FNAME:
5762 case FNAME + ADD_NL:
5763 testval = TRUE;
5764 /*FALLTHROUGH*/
5765 case SFNAME:
5766 case SFNAME + ADD_NL:
5767 while (count < maxcount)
5768 {
5769 if (vim_isfilec(*scan) && (testval || !VIM_ISDIGIT(*scan)))
5770 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005771 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 }
5773 else if (*scan == NUL)
5774 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005775 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5776 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 break;
5778 reg_nextline();
5779 scan = reginput;
5780 if (got_int)
5781 break;
5782 }
5783 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5784 ++scan;
5785 else
5786 break;
5787 ++count;
5788 }
5789 break;
5790
5791 case PRINT:
5792 case PRINT + ADD_NL:
5793 testval = TRUE;
5794 /*FALLTHROUGH*/
5795 case SPRINT:
5796 case SPRINT + ADD_NL:
5797 while (count < maxcount)
5798 {
5799 if (*scan == NUL)
5800 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005801 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5802 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 break;
5804 reg_nextline();
5805 scan = reginput;
5806 if (got_int)
5807 break;
5808 }
5809 else if (ptr2cells(scan) == 1 && (testval || !VIM_ISDIGIT(*scan)))
5810 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005811 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 }
5813 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5814 ++scan;
5815 else
5816 break;
5817 ++count;
5818 }
5819 break;
5820
5821 case WHITE:
5822 case WHITE + ADD_NL:
5823 testval = mask = RI_WHITE;
5824do_class:
5825 while (count < maxcount)
5826 {
5827#ifdef FEAT_MBYTE
5828 int l;
5829#endif
5830 if (*scan == NUL)
5831 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005832 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5833 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 break;
5835 reg_nextline();
5836 scan = reginput;
5837 if (got_int)
5838 break;
5839 }
5840#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005841 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 {
5843 if (testval != 0)
5844 break;
5845 scan += l;
5846 }
5847#endif
5848 else if ((class_tab[*scan] & mask) == testval)
5849 ++scan;
5850 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5851 ++scan;
5852 else
5853 break;
5854 ++count;
5855 }
5856 break;
5857
5858 case NWHITE:
5859 case NWHITE + ADD_NL:
5860 mask = RI_WHITE;
5861 goto do_class;
5862 case DIGIT:
5863 case DIGIT + ADD_NL:
5864 testval = mask = RI_DIGIT;
5865 goto do_class;
5866 case NDIGIT:
5867 case NDIGIT + ADD_NL:
5868 mask = RI_DIGIT;
5869 goto do_class;
5870 case HEX:
5871 case HEX + ADD_NL:
5872 testval = mask = RI_HEX;
5873 goto do_class;
5874 case NHEX:
5875 case NHEX + ADD_NL:
5876 mask = RI_HEX;
5877 goto do_class;
5878 case OCTAL:
5879 case OCTAL + ADD_NL:
5880 testval = mask = RI_OCTAL;
5881 goto do_class;
5882 case NOCTAL:
5883 case NOCTAL + ADD_NL:
5884 mask = RI_OCTAL;
5885 goto do_class;
5886 case WORD:
5887 case WORD + ADD_NL:
5888 testval = mask = RI_WORD;
5889 goto do_class;
5890 case NWORD:
5891 case NWORD + ADD_NL:
5892 mask = RI_WORD;
5893 goto do_class;
5894 case HEAD:
5895 case HEAD + ADD_NL:
5896 testval = mask = RI_HEAD;
5897 goto do_class;
5898 case NHEAD:
5899 case NHEAD + ADD_NL:
5900 mask = RI_HEAD;
5901 goto do_class;
5902 case ALPHA:
5903 case ALPHA + ADD_NL:
5904 testval = mask = RI_ALPHA;
5905 goto do_class;
5906 case NALPHA:
5907 case NALPHA + ADD_NL:
5908 mask = RI_ALPHA;
5909 goto do_class;
5910 case LOWER:
5911 case LOWER + ADD_NL:
5912 testval = mask = RI_LOWER;
5913 goto do_class;
5914 case NLOWER:
5915 case NLOWER + ADD_NL:
5916 mask = RI_LOWER;
5917 goto do_class;
5918 case UPPER:
5919 case UPPER + ADD_NL:
5920 testval = mask = RI_UPPER;
5921 goto do_class;
5922 case NUPPER:
5923 case NUPPER + ADD_NL:
5924 mask = RI_UPPER;
5925 goto do_class;
5926
5927 case EXACTLY:
5928 {
5929 int cu, cl;
5930
5931 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005932 * would have been used for it. It does handle single-byte
5933 * characters, such as latin1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 if (ireg_ic)
5935 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005936 cu = MB_TOUPPER(*opnd);
5937 cl = MB_TOLOWER(*opnd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 while (count < maxcount && (*scan == cu || *scan == cl))
5939 {
5940 count++;
5941 scan++;
5942 }
5943 }
5944 else
5945 {
5946 cu = *opnd;
5947 while (count < maxcount && *scan == cu)
5948 {
5949 count++;
5950 scan++;
5951 }
5952 }
5953 break;
5954 }
5955
5956#ifdef FEAT_MBYTE
5957 case MULTIBYTECODE:
5958 {
5959 int i, len, cf = 0;
5960
5961 /* Safety check (just in case 'encoding' was changed since
5962 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005963 if ((len = (*mb_ptr2len)(opnd)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964 {
5965 if (ireg_ic && enc_utf8)
5966 cf = utf_fold(utf_ptr2char(opnd));
5967 while (count < maxcount)
5968 {
5969 for (i = 0; i < len; ++i)
5970 if (opnd[i] != scan[i])
5971 break;
5972 if (i < len && (!ireg_ic || !enc_utf8
5973 || utf_fold(utf_ptr2char(scan)) != cf))
5974 break;
5975 scan += len;
5976 ++count;
5977 }
5978 }
5979 }
5980 break;
5981#endif
5982
5983 case ANYOF:
5984 case ANYOF + ADD_NL:
5985 testval = TRUE;
5986 /*FALLTHROUGH*/
5987
5988 case ANYBUT:
5989 case ANYBUT + ADD_NL:
5990 while (count < maxcount)
5991 {
5992#ifdef FEAT_MBYTE
5993 int len;
5994#endif
5995 if (*scan == NUL)
5996 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005997 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5998 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 break;
6000 reg_nextline();
6001 scan = reginput;
6002 if (got_int)
6003 break;
6004 }
6005 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
6006 ++scan;
6007#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006008 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009 {
6010 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval)
6011 break;
6012 scan += len;
6013 }
6014#endif
6015 else
6016 {
6017 if ((cstrchr(opnd, *scan) == NULL) == testval)
6018 break;
6019 ++scan;
6020 }
6021 ++count;
6022 }
6023 break;
6024
6025 case NEWL:
6026 while (count < maxcount
Bram Moolenaar640009d2006-10-17 16:48:26 +00006027 && ((*scan == NUL && reglnum <= reg_maxline && !reg_line_lbr
6028 && REG_MULTI) || (*scan == '\n' && reg_line_lbr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 {
6030 count++;
6031 if (reg_line_lbr)
6032 ADVANCE_REGINPUT();
6033 else
6034 reg_nextline();
6035 scan = reginput;
6036 if (got_int)
6037 break;
6038 }
6039 break;
6040
6041 default: /* Oh dear. Called inappropriately. */
6042 EMSG(_(e_re_corr));
6043#ifdef DEBUG
6044 printf("Called regrepeat with op code %d\n", OP(p));
6045#endif
6046 break;
6047 }
6048
6049 reginput = scan;
6050
6051 return (int)count;
6052}
6053
6054/*
6055 * regnext - dig the "next" pointer out of a node
Bram Moolenaard3005802009-11-25 17:21:32 +00006056 * Returns NULL when calculating size, when there is no next item and when
6057 * there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 */
6059 static char_u *
6060regnext(p)
6061 char_u *p;
6062{
6063 int offset;
6064
Bram Moolenaard3005802009-11-25 17:21:32 +00006065 if (p == JUST_CALC_SIZE || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066 return NULL;
6067
6068 offset = NEXT(p);
6069 if (offset == 0)
6070 return NULL;
6071
Bram Moolenaar582fd852005-03-28 20:58:01 +00006072 if (OP(p) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 return p - offset;
6074 else
6075 return p + offset;
6076}
6077
6078/*
6079 * Check the regexp program for its magic number.
6080 * Return TRUE if it's wrong.
6081 */
6082 static int
6083prog_magic_wrong()
6084{
6085 if (UCHARAT(REG_MULTI
6086 ? reg_mmatch->regprog->program
6087 : reg_match->regprog->program) != REGMAGIC)
6088 {
6089 EMSG(_(e_re_corr));
6090 return TRUE;
6091 }
6092 return FALSE;
6093}
6094
6095/*
6096 * Cleanup the subexpressions, if this wasn't done yet.
6097 * This construction is used to clear the subexpressions only when they are
6098 * used (to increase speed).
6099 */
6100 static void
6101cleanup_subexpr()
6102{
6103 if (need_clear_subexpr)
6104 {
6105 if (REG_MULTI)
6106 {
6107 /* Use 0xff to set lnum to -1 */
6108 vim_memset(reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6109 vim_memset(reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6110 }
6111 else
6112 {
6113 vim_memset(reg_startp, 0, sizeof(char_u *) * NSUBEXP);
6114 vim_memset(reg_endp, 0, sizeof(char_u *) * NSUBEXP);
6115 }
6116 need_clear_subexpr = FALSE;
6117 }
6118}
6119
6120#ifdef FEAT_SYN_HL
6121 static void
6122cleanup_zsubexpr()
6123{
6124 if (need_clear_zsubexpr)
6125 {
6126 if (REG_MULTI)
6127 {
6128 /* Use 0xff to set lnum to -1 */
6129 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6130 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6131 }
6132 else
6133 {
6134 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP);
6135 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP);
6136 }
6137 need_clear_zsubexpr = FALSE;
6138 }
6139}
6140#endif
6141
6142/*
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006143 * Save the current subexpr to "bp", so that they can be restored
6144 * later by restore_subexpr().
6145 */
6146 static void
6147save_subexpr(bp)
6148 regbehind_T *bp;
6149{
6150 int i;
6151
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006152 /* When "need_clear_subexpr" is set we don't need to save the values, only
6153 * remember that this flag needs to be set again when restoring. */
6154 bp->save_need_clear_subexpr = need_clear_subexpr;
6155 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006156 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006157 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006158 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006159 if (REG_MULTI)
6160 {
6161 bp->save_start[i].se_u.pos = reg_startpos[i];
6162 bp->save_end[i].se_u.pos = reg_endpos[i];
6163 }
6164 else
6165 {
6166 bp->save_start[i].se_u.ptr = reg_startp[i];
6167 bp->save_end[i].se_u.ptr = reg_endp[i];
6168 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006169 }
6170 }
6171}
6172
6173/*
6174 * Restore the subexpr from "bp".
6175 */
6176 static void
6177restore_subexpr(bp)
6178 regbehind_T *bp;
6179{
6180 int i;
6181
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006182 /* Only need to restore saved values when they are not to be cleared. */
6183 need_clear_subexpr = bp->save_need_clear_subexpr;
6184 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006185 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006186 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006187 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006188 if (REG_MULTI)
6189 {
6190 reg_startpos[i] = bp->save_start[i].se_u.pos;
6191 reg_endpos[i] = bp->save_end[i].se_u.pos;
6192 }
6193 else
6194 {
6195 reg_startp[i] = bp->save_start[i].se_u.ptr;
6196 reg_endp[i] = bp->save_end[i].se_u.ptr;
6197 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006198 }
6199 }
6200}
6201
6202/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 * Advance reglnum, regline and reginput to the next line.
6204 */
6205 static void
6206reg_nextline()
6207{
6208 regline = reg_getline(++reglnum);
6209 reginput = regline;
6210 fast_breakcheck();
6211}
6212
6213/*
6214 * Save the input line and position in a regsave_T.
6215 */
6216 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006217reg_save(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006219 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006220{
6221 if (REG_MULTI)
6222 {
6223 save->rs_u.pos.col = (colnr_T)(reginput - regline);
6224 save->rs_u.pos.lnum = reglnum;
6225 }
6226 else
6227 save->rs_u.ptr = reginput;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006228 save->rs_len = gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229}
6230
6231/*
6232 * Restore the input line and position from a regsave_T.
6233 */
6234 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006235reg_restore(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006237 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238{
6239 if (REG_MULTI)
6240 {
6241 if (reglnum != save->rs_u.pos.lnum)
6242 {
6243 /* only call reg_getline() when the line number changed to save
6244 * a bit of time */
6245 reglnum = save->rs_u.pos.lnum;
6246 regline = reg_getline(reglnum);
6247 }
6248 reginput = regline + save->rs_u.pos.col;
6249 }
6250 else
6251 reginput = save->rs_u.ptr;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006252 gap->ga_len = save->rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253}
6254
6255/*
6256 * Return TRUE if current position is equal to saved position.
6257 */
6258 static int
6259reg_save_equal(save)
6260 regsave_T *save;
6261{
6262 if (REG_MULTI)
6263 return reglnum == save->rs_u.pos.lnum
6264 && reginput == regline + save->rs_u.pos.col;
6265 return reginput == save->rs_u.ptr;
6266}
6267
6268/*
6269 * Tentatively set the sub-expression start to the current position (after
6270 * calling regmatch() they will have changed). Need to save the existing
6271 * values for when there is no match.
6272 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
6273 * depending on REG_MULTI.
6274 */
6275 static void
6276save_se_multi(savep, posp)
6277 save_se_T *savep;
6278 lpos_T *posp;
6279{
6280 savep->se_u.pos = *posp;
6281 posp->lnum = reglnum;
6282 posp->col = (colnr_T)(reginput - regline);
6283}
6284
6285 static void
6286save_se_one(savep, pp)
6287 save_se_T *savep;
6288 char_u **pp;
6289{
6290 savep->se_u.ptr = *pp;
6291 *pp = reginput;
6292}
6293
6294/*
6295 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6296 */
6297 static int
6298re_num_cmp(val, scan)
6299 long_u val;
6300 char_u *scan;
6301{
6302 long_u n = OPERAND_MIN(scan);
6303
6304 if (OPERAND_CMP(scan) == '>')
6305 return val > n;
6306 if (OPERAND_CMP(scan) == '<')
6307 return val < n;
6308 return val == n;
6309}
6310
6311
6312#ifdef DEBUG
6313
6314/*
6315 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6316 */
6317 static void
6318regdump(pattern, r)
6319 char_u *pattern;
6320 regprog_T *r;
6321{
6322 char_u *s;
6323 int op = EXACTLY; /* Arbitrary non-END op. */
6324 char_u *next;
6325 char_u *end = NULL;
6326
6327 printf("\r\nregcomp(%s):\r\n", pattern);
6328
6329 s = r->program + 1;
6330 /*
6331 * Loop until we find the END that isn't before a referred next (an END
6332 * can also appear in a NOMATCH operand).
6333 */
6334 while (op != END || s <= end)
6335 {
6336 op = OP(s);
6337 printf("%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */
6338 next = regnext(s);
6339 if (next == NULL) /* Next ptr. */
6340 printf("(0)");
6341 else
6342 printf("(%d)", (int)((s - r->program) + (next - s)));
6343 if (end < next)
6344 end = next;
6345 if (op == BRACE_LIMITS)
6346 {
6347 /* Two short ints */
6348 printf(" minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s));
6349 s += 8;
6350 }
6351 s += 3;
6352 if (op == ANYOF || op == ANYOF + ADD_NL
6353 || op == ANYBUT || op == ANYBUT + ADD_NL
6354 || op == EXACTLY)
6355 {
6356 /* Literal string, where present. */
6357 while (*s != NUL)
6358 printf("%c", *s++);
6359 s++;
6360 }
6361 printf("\r\n");
6362 }
6363
6364 /* Header fields of interest. */
6365 if (r->regstart != NUL)
6366 printf("start `%s' 0x%x; ", r->regstart < 256
6367 ? (char *)transchar(r->regstart)
6368 : "multibyte", r->regstart);
6369 if (r->reganch)
6370 printf("anchored; ");
6371 if (r->regmust != NULL)
6372 printf("must have \"%s\"", r->regmust);
6373 printf("\r\n");
6374}
6375
6376/*
6377 * regprop - printable representation of opcode
6378 */
6379 static char_u *
6380regprop(op)
6381 char_u *op;
6382{
6383 char_u *p;
6384 static char_u buf[50];
6385
6386 (void) strcpy(buf, ":");
6387
6388 switch (OP(op))
6389 {
6390 case BOL:
6391 p = "BOL";
6392 break;
6393 case EOL:
6394 p = "EOL";
6395 break;
6396 case RE_BOF:
6397 p = "BOF";
6398 break;
6399 case RE_EOF:
6400 p = "EOF";
6401 break;
6402 case CURSOR:
6403 p = "CURSOR";
6404 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006405 case RE_VISUAL:
6406 p = "RE_VISUAL";
6407 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 case RE_LNUM:
6409 p = "RE_LNUM";
6410 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006411 case RE_MARK:
6412 p = "RE_MARK";
6413 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006414 case RE_COL:
6415 p = "RE_COL";
6416 break;
6417 case RE_VCOL:
6418 p = "RE_VCOL";
6419 break;
6420 case BOW:
6421 p = "BOW";
6422 break;
6423 case EOW:
6424 p = "EOW";
6425 break;
6426 case ANY:
6427 p = "ANY";
6428 break;
6429 case ANY + ADD_NL:
6430 p = "ANY+NL";
6431 break;
6432 case ANYOF:
6433 p = "ANYOF";
6434 break;
6435 case ANYOF + ADD_NL:
6436 p = "ANYOF+NL";
6437 break;
6438 case ANYBUT:
6439 p = "ANYBUT";
6440 break;
6441 case ANYBUT + ADD_NL:
6442 p = "ANYBUT+NL";
6443 break;
6444 case IDENT:
6445 p = "IDENT";
6446 break;
6447 case IDENT + ADD_NL:
6448 p = "IDENT+NL";
6449 break;
6450 case SIDENT:
6451 p = "SIDENT";
6452 break;
6453 case SIDENT + ADD_NL:
6454 p = "SIDENT+NL";
6455 break;
6456 case KWORD:
6457 p = "KWORD";
6458 break;
6459 case KWORD + ADD_NL:
6460 p = "KWORD+NL";
6461 break;
6462 case SKWORD:
6463 p = "SKWORD";
6464 break;
6465 case SKWORD + ADD_NL:
6466 p = "SKWORD+NL";
6467 break;
6468 case FNAME:
6469 p = "FNAME";
6470 break;
6471 case FNAME + ADD_NL:
6472 p = "FNAME+NL";
6473 break;
6474 case SFNAME:
6475 p = "SFNAME";
6476 break;
6477 case SFNAME + ADD_NL:
6478 p = "SFNAME+NL";
6479 break;
6480 case PRINT:
6481 p = "PRINT";
6482 break;
6483 case PRINT + ADD_NL:
6484 p = "PRINT+NL";
6485 break;
6486 case SPRINT:
6487 p = "SPRINT";
6488 break;
6489 case SPRINT + ADD_NL:
6490 p = "SPRINT+NL";
6491 break;
6492 case WHITE:
6493 p = "WHITE";
6494 break;
6495 case WHITE + ADD_NL:
6496 p = "WHITE+NL";
6497 break;
6498 case NWHITE:
6499 p = "NWHITE";
6500 break;
6501 case NWHITE + ADD_NL:
6502 p = "NWHITE+NL";
6503 break;
6504 case DIGIT:
6505 p = "DIGIT";
6506 break;
6507 case DIGIT + ADD_NL:
6508 p = "DIGIT+NL";
6509 break;
6510 case NDIGIT:
6511 p = "NDIGIT";
6512 break;
6513 case NDIGIT + ADD_NL:
6514 p = "NDIGIT+NL";
6515 break;
6516 case HEX:
6517 p = "HEX";
6518 break;
6519 case HEX + ADD_NL:
6520 p = "HEX+NL";
6521 break;
6522 case NHEX:
6523 p = "NHEX";
6524 break;
6525 case NHEX + ADD_NL:
6526 p = "NHEX+NL";
6527 break;
6528 case OCTAL:
6529 p = "OCTAL";
6530 break;
6531 case OCTAL + ADD_NL:
6532 p = "OCTAL+NL";
6533 break;
6534 case NOCTAL:
6535 p = "NOCTAL";
6536 break;
6537 case NOCTAL + ADD_NL:
6538 p = "NOCTAL+NL";
6539 break;
6540 case WORD:
6541 p = "WORD";
6542 break;
6543 case WORD + ADD_NL:
6544 p = "WORD+NL";
6545 break;
6546 case NWORD:
6547 p = "NWORD";
6548 break;
6549 case NWORD + ADD_NL:
6550 p = "NWORD+NL";
6551 break;
6552 case HEAD:
6553 p = "HEAD";
6554 break;
6555 case HEAD + ADD_NL:
6556 p = "HEAD+NL";
6557 break;
6558 case NHEAD:
6559 p = "NHEAD";
6560 break;
6561 case NHEAD + ADD_NL:
6562 p = "NHEAD+NL";
6563 break;
6564 case ALPHA:
6565 p = "ALPHA";
6566 break;
6567 case ALPHA + ADD_NL:
6568 p = "ALPHA+NL";
6569 break;
6570 case NALPHA:
6571 p = "NALPHA";
6572 break;
6573 case NALPHA + ADD_NL:
6574 p = "NALPHA+NL";
6575 break;
6576 case LOWER:
6577 p = "LOWER";
6578 break;
6579 case LOWER + ADD_NL:
6580 p = "LOWER+NL";
6581 break;
6582 case NLOWER:
6583 p = "NLOWER";
6584 break;
6585 case NLOWER + ADD_NL:
6586 p = "NLOWER+NL";
6587 break;
6588 case UPPER:
6589 p = "UPPER";
6590 break;
6591 case UPPER + ADD_NL:
6592 p = "UPPER+NL";
6593 break;
6594 case NUPPER:
6595 p = "NUPPER";
6596 break;
6597 case NUPPER + ADD_NL:
6598 p = "NUPPER+NL";
6599 break;
6600 case BRANCH:
6601 p = "BRANCH";
6602 break;
6603 case EXACTLY:
6604 p = "EXACTLY";
6605 break;
6606 case NOTHING:
6607 p = "NOTHING";
6608 break;
6609 case BACK:
6610 p = "BACK";
6611 break;
6612 case END:
6613 p = "END";
6614 break;
6615 case MOPEN + 0:
6616 p = "MATCH START";
6617 break;
6618 case MOPEN + 1:
6619 case MOPEN + 2:
6620 case MOPEN + 3:
6621 case MOPEN + 4:
6622 case MOPEN + 5:
6623 case MOPEN + 6:
6624 case MOPEN + 7:
6625 case MOPEN + 8:
6626 case MOPEN + 9:
6627 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN);
6628 p = NULL;
6629 break;
6630 case MCLOSE + 0:
6631 p = "MATCH END";
6632 break;
6633 case MCLOSE + 1:
6634 case MCLOSE + 2:
6635 case MCLOSE + 3:
6636 case MCLOSE + 4:
6637 case MCLOSE + 5:
6638 case MCLOSE + 6:
6639 case MCLOSE + 7:
6640 case MCLOSE + 8:
6641 case MCLOSE + 9:
6642 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE);
6643 p = NULL;
6644 break;
6645 case BACKREF + 1:
6646 case BACKREF + 2:
6647 case BACKREF + 3:
6648 case BACKREF + 4:
6649 case BACKREF + 5:
6650 case BACKREF + 6:
6651 case BACKREF + 7:
6652 case BACKREF + 8:
6653 case BACKREF + 9:
6654 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF);
6655 p = NULL;
6656 break;
6657 case NOPEN:
6658 p = "NOPEN";
6659 break;
6660 case NCLOSE:
6661 p = "NCLOSE";
6662 break;
6663#ifdef FEAT_SYN_HL
6664 case ZOPEN + 1:
6665 case ZOPEN + 2:
6666 case ZOPEN + 3:
6667 case ZOPEN + 4:
6668 case ZOPEN + 5:
6669 case ZOPEN + 6:
6670 case ZOPEN + 7:
6671 case ZOPEN + 8:
6672 case ZOPEN + 9:
6673 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN);
6674 p = NULL;
6675 break;
6676 case ZCLOSE + 1:
6677 case ZCLOSE + 2:
6678 case ZCLOSE + 3:
6679 case ZCLOSE + 4:
6680 case ZCLOSE + 5:
6681 case ZCLOSE + 6:
6682 case ZCLOSE + 7:
6683 case ZCLOSE + 8:
6684 case ZCLOSE + 9:
6685 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE);
6686 p = NULL;
6687 break;
6688 case ZREF + 1:
6689 case ZREF + 2:
6690 case ZREF + 3:
6691 case ZREF + 4:
6692 case ZREF + 5:
6693 case ZREF + 6:
6694 case ZREF + 7:
6695 case ZREF + 8:
6696 case ZREF + 9:
6697 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF);
6698 p = NULL;
6699 break;
6700#endif
6701 case STAR:
6702 p = "STAR";
6703 break;
6704 case PLUS:
6705 p = "PLUS";
6706 break;
6707 case NOMATCH:
6708 p = "NOMATCH";
6709 break;
6710 case MATCH:
6711 p = "MATCH";
6712 break;
6713 case BEHIND:
6714 p = "BEHIND";
6715 break;
6716 case NOBEHIND:
6717 p = "NOBEHIND";
6718 break;
6719 case SUBPAT:
6720 p = "SUBPAT";
6721 break;
6722 case BRACE_LIMITS:
6723 p = "BRACE_LIMITS";
6724 break;
6725 case BRACE_SIMPLE:
6726 p = "BRACE_SIMPLE";
6727 break;
6728 case BRACE_COMPLEX + 0:
6729 case BRACE_COMPLEX + 1:
6730 case BRACE_COMPLEX + 2:
6731 case BRACE_COMPLEX + 3:
6732 case BRACE_COMPLEX + 4:
6733 case BRACE_COMPLEX + 5:
6734 case BRACE_COMPLEX + 6:
6735 case BRACE_COMPLEX + 7:
6736 case BRACE_COMPLEX + 8:
6737 case BRACE_COMPLEX + 9:
6738 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX);
6739 p = NULL;
6740 break;
6741#ifdef FEAT_MBYTE
6742 case MULTIBYTECODE:
6743 p = "MULTIBYTECODE";
6744 break;
6745#endif
6746 case NEWL:
6747 p = "NEWL";
6748 break;
6749 default:
6750 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op));
6751 p = NULL;
6752 break;
6753 }
6754 if (p != NULL)
6755 (void) strcat(buf, p);
6756 return buf;
6757}
6758#endif
6759
6760#ifdef FEAT_MBYTE
6761static void mb_decompose __ARGS((int c, int *c1, int *c2, int *c3));
6762
6763typedef struct
6764{
6765 int a, b, c;
6766} decomp_T;
6767
6768
6769/* 0xfb20 - 0xfb4f */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00006770static decomp_T decomp_table[0xfb4f-0xfb20+1] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771{
6772 {0x5e2,0,0}, /* 0xfb20 alt ayin */
6773 {0x5d0,0,0}, /* 0xfb21 alt alef */
6774 {0x5d3,0,0}, /* 0xfb22 alt dalet */
6775 {0x5d4,0,0}, /* 0xfb23 alt he */
6776 {0x5db,0,0}, /* 0xfb24 alt kaf */
6777 {0x5dc,0,0}, /* 0xfb25 alt lamed */
6778 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
6779 {0x5e8,0,0}, /* 0xfb27 alt resh */
6780 {0x5ea,0,0}, /* 0xfb28 alt tav */
6781 {'+', 0, 0}, /* 0xfb29 alt plus */
6782 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
6783 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
6784 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
6785 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
6786 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
6787 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
6788 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
6789 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
6790 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
6791 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
6792 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
6793 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
6794 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
6795 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
6796 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
6797 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
6798 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
6799 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
6800 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
6801 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
6802 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
6803 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
6804 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
6805 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
6806 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
6807 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
6808 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
6809 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
6810 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
6811 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
6812 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
6813 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
6814 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
6815 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
6816 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
6817 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
6818 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
6819 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
6820};
6821
6822 static void
6823mb_decompose(c, c1, c2, c3)
6824 int c, *c1, *c2, *c3;
6825{
6826 decomp_T d;
6827
6828 if (c >= 0x4b20 && c <= 0xfb4f)
6829 {
6830 d = decomp_table[c - 0xfb20];
6831 *c1 = d.a;
6832 *c2 = d.b;
6833 *c3 = d.c;
6834 }
6835 else
6836 {
6837 *c1 = c;
6838 *c2 = *c3 = 0;
6839 }
6840}
6841#endif
6842
6843/*
6844 * Compare two strings, ignore case if ireg_ic set.
6845 * Return 0 if strings match, non-zero otherwise.
6846 * Correct the length "*n" when composing characters are ignored.
6847 */
6848 static int
6849cstrncmp(s1, s2, n)
6850 char_u *s1, *s2;
6851 int *n;
6852{
6853 int result;
6854
6855 if (!ireg_ic)
6856 result = STRNCMP(s1, s2, *n);
6857 else
6858 result = MB_STRNICMP(s1, s2, *n);
6859
6860#ifdef FEAT_MBYTE
6861 /* if it failed and it's utf8 and we want to combineignore: */
6862 if (result != 0 && enc_utf8 && ireg_icombine)
6863 {
6864 char_u *str1, *str2;
6865 int c1, c2, c11, c12;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 int junk;
6867
6868 /* we have to handle the strcmp ourselves, since it is necessary to
6869 * deal with the composing characters by ignoring them: */
6870 str1 = s1;
6871 str2 = s2;
6872 c1 = c2 = 0;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00006873 while ((int)(str1 - s1) < *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874 {
6875 c1 = mb_ptr2char_adv(&str1);
6876 c2 = mb_ptr2char_adv(&str2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006877
6878 /* decompose the character if necessary, into 'base' characters
6879 * because I don't care about Arabic, I will hard-code the Hebrew
6880 * which I *do* care about! So sue me... */
6881 if (c1 != c2 && (!ireg_ic || utf_fold(c1) != utf_fold(c2)))
6882 {
6883 /* decomposition necessary? */
6884 mb_decompose(c1, &c11, &junk, &junk);
6885 mb_decompose(c2, &c12, &junk, &junk);
6886 c1 = c11;
6887 c2 = c12;
6888 if (c11 != c12 && (!ireg_ic || utf_fold(c11) != utf_fold(c12)))
6889 break;
6890 }
6891 }
6892 result = c2 - c1;
6893 if (result == 0)
6894 *n = (int)(str2 - s2);
6895 }
6896#endif
6897
6898 return result;
6899}
6900
6901/*
6902 * cstrchr: This function is used a lot for simple searches, keep it fast!
6903 */
6904 static char_u *
6905cstrchr(s, c)
6906 char_u *s;
6907 int c;
6908{
6909 char_u *p;
6910 int cc;
6911
6912 if (!ireg_ic
6913#ifdef FEAT_MBYTE
6914 || (!enc_utf8 && mb_char2len(c) > 1)
6915#endif
6916 )
6917 return vim_strchr(s, c);
6918
6919 /* tolower() and toupper() can be slow, comparing twice should be a lot
6920 * faster (esp. when using MS Visual C++!).
6921 * For UTF-8 need to use folded case. */
6922#ifdef FEAT_MBYTE
6923 if (enc_utf8 && c > 0x80)
6924 cc = utf_fold(c);
6925 else
6926#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006927 if (MB_ISUPPER(c))
6928 cc = MB_TOLOWER(c);
6929 else if (MB_ISLOWER(c))
6930 cc = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931 else
6932 return vim_strchr(s, c);
6933
6934#ifdef FEAT_MBYTE
6935 if (has_mbyte)
6936 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006937 for (p = s; *p != NUL; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006938 {
6939 if (enc_utf8 && c > 0x80)
6940 {
6941 if (utf_fold(utf_ptr2char(p)) == cc)
6942 return p;
6943 }
6944 else if (*p == c || *p == cc)
6945 return p;
6946 }
6947 }
6948 else
6949#endif
6950 /* Faster version for when there are no multi-byte characters. */
6951 for (p = s; *p != NUL; ++p)
6952 if (*p == c || *p == cc)
6953 return p;
6954
6955 return NULL;
6956}
6957
6958/***************************************************************
6959 * regsub stuff *
6960 ***************************************************************/
6961
6962/* This stuff below really confuses cc on an SGI -- webb */
6963#ifdef __sgi
6964# undef __ARGS
6965# define __ARGS(x) ()
6966#endif
6967
6968/*
6969 * We should define ftpr as a pointer to a function returning a pointer to
6970 * a function returning a pointer to a function ...
6971 * This is impossible, so we declare a pointer to a function returning a
6972 * pointer to a function returning void. This should work for all compilers.
6973 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006974typedef void (*(*fptr_T) __ARGS((int *, int)))();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006976static fptr_T do_upper __ARGS((int *, int));
6977static fptr_T do_Upper __ARGS((int *, int));
6978static fptr_T do_lower __ARGS((int *, int));
6979static fptr_T do_Lower __ARGS((int *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980
6981static int vim_regsub_both __ARGS((char_u *source, char_u *dest, int copy, int magic, int backslash));
6982
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006983 static fptr_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984do_upper(d, c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006985 int *d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 int c;
6987{
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006988 *d = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006990 return (fptr_T)NULL;
6991}
6992
6993 static fptr_T
6994do_Upper(d, c)
6995 int *d;
6996 int c;
6997{
6998 *d = MB_TOUPPER(c);
6999
7000 return (fptr_T)do_Upper;
7001}
7002
7003 static fptr_T
7004do_lower(d, c)
7005 int *d;
7006 int c;
7007{
7008 *d = MB_TOLOWER(c);
7009
7010 return (fptr_T)NULL;
7011}
7012
7013 static fptr_T
7014do_Lower(d, c)
7015 int *d;
7016 int c;
7017{
7018 *d = MB_TOLOWER(c);
7019
7020 return (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021}
7022
7023/*
7024 * regtilde(): Replace tildes in the pattern by the old pattern.
7025 *
7026 * Short explanation of the tilde: It stands for the previous replacement
7027 * pattern. If that previous pattern also contains a ~ we should go back a
7028 * step further... But we insert the previous pattern into the current one
7029 * and remember that.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007030 * This still does not handle the case where "magic" changes. So require the
7031 * user to keep his hands off of "magic".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 *
7033 * The tildes are parsed once before the first call to vim_regsub().
7034 */
7035 char_u *
7036regtilde(source, magic)
7037 char_u *source;
7038 int magic;
7039{
7040 char_u *newsub = source;
7041 char_u *tmpsub;
7042 char_u *p;
7043 int len;
7044 int prevlen;
7045
7046 for (p = newsub; *p; ++p)
7047 {
7048 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic))
7049 {
7050 if (reg_prev_sub != NULL)
7051 {
7052 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
7053 prevlen = (int)STRLEN(reg_prev_sub);
7054 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen));
7055 if (tmpsub != NULL)
7056 {
7057 /* copy prefix */
7058 len = (int)(p - newsub); /* not including ~ */
7059 mch_memmove(tmpsub, newsub, (size_t)len);
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007060 /* interpret tilde */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen);
7062 /* copy postfix */
7063 if (!magic)
7064 ++p; /* back off \ */
7065 STRCPY(tmpsub + len + prevlen, p + 1);
7066
7067 if (newsub != source) /* already allocated newsub */
7068 vim_free(newsub);
7069 newsub = tmpsub;
7070 p = newsub + len + prevlen;
7071 }
7072 }
7073 else if (magic)
Bram Moolenaar446cb832008-06-24 21:56:24 +00007074 STRMOVE(p, p + 1); /* remove '~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 else
Bram Moolenaar446cb832008-06-24 21:56:24 +00007076 STRMOVE(p, p + 2); /* remove '\~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077 --p;
7078 }
7079 else
7080 {
7081 if (*p == '\\' && p[1]) /* skip escaped characters */
7082 ++p;
7083#ifdef FEAT_MBYTE
7084 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007085 p += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086#endif
7087 }
7088 }
7089
7090 vim_free(reg_prev_sub);
7091 if (newsub != source) /* newsub was allocated, just keep it */
7092 reg_prev_sub = newsub;
7093 else /* no ~ found, need to save newsub */
7094 reg_prev_sub = vim_strsave(newsub);
7095 return newsub;
7096}
7097
7098#ifdef FEAT_EVAL
7099static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */
7100
7101/* These pointers are used instead of reg_match and reg_mmatch for
7102 * reg_submatch(). Needed for when the substitution string is an expression
7103 * that contains a call to substitute() and submatch(). */
7104static regmatch_T *submatch_match;
7105static regmmatch_T *submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007106static linenr_T submatch_firstlnum;
7107static linenr_T submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007108static int submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109#endif
7110
7111#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
7112/*
7113 * vim_regsub() - perform substitutions after a vim_regexec() or
7114 * vim_regexec_multi() match.
7115 *
7116 * If "copy" is TRUE really copy into "dest".
7117 * If "copy" is FALSE nothing is copied, this is just to find out the length
7118 * of the result.
7119 *
7120 * If "backslash" is TRUE, a backslash will be removed later, need to double
7121 * them to keep them, and insert a backslash before a CR to avoid it being
7122 * replaced with a line break later.
7123 *
7124 * Note: The matched text must not change between the call of
7125 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
7126 * references invalid!
7127 *
7128 * Returns the size of the replacement, including terminating NUL.
7129 */
7130 int
7131vim_regsub(rmp, source, dest, copy, magic, backslash)
7132 regmatch_T *rmp;
7133 char_u *source;
7134 char_u *dest;
7135 int copy;
7136 int magic;
7137 int backslash;
7138{
7139 reg_match = rmp;
7140 reg_mmatch = NULL;
7141 reg_maxline = 0;
7142 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