blob: bb63c942f0df17d654a6980ab49fdfc3a487e1aa [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;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626
3627 reg_match = NULL;
3628 reg_mmatch = rmp;
3629 reg_buf = buf;
3630 reg_win = win;
3631 reg_firstlnum = lnum;
3632 reg_maxline = reg_buf->b_ml.ml_line_count - lnum;
3633 reg_line_lbr = FALSE;
3634 ireg_ic = rmp->rmm_ic;
3635#ifdef FEAT_MBYTE
3636 ireg_icombine = FALSE;
3637#endif
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003638 ireg_maxcol = rmp->rmm_maxcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003640 r = vim_regexec_both(NULL, col, tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641
3642 return r;
3643}
3644
3645/*
3646 * Match a regexp against a string ("line" points to the string) or multiple
3647 * lines ("line" is NULL, use reg_getline()).
3648 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003649 static long
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003650vim_regexec_both(line, col, tm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 char_u *line;
3652 colnr_T col; /* column to start looking for match */
Bram Moolenaar78a15312009-05-15 19:33:18 +00003653 proftime_T *tm UNUSED; /* timeout limit or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654{
3655 regprog_T *prog;
3656 char_u *s;
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003657 long retval = 0L;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003659 /* Create "regstack" and "backpos" if they are not allocated yet.
3660 * We allocate *_INITIAL amount of bytes first and then set the grow size
3661 * to much bigger value to avoid many malloc calls in case of deep regular
3662 * expressions. */
3663 if (regstack.ga_data == NULL)
3664 {
3665 /* Use an item size of 1 byte, since we push different things
3666 * onto the regstack. */
3667 ga_init2(&regstack, 1, REGSTACK_INITIAL);
3668 ga_grow(&regstack, REGSTACK_INITIAL);
3669 regstack.ga_growsize = REGSTACK_INITIAL * 8;
3670 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003672 if (backpos.ga_data == NULL)
3673 {
3674 ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL);
3675 ga_grow(&backpos, BACKPOS_INITIAL);
3676 backpos.ga_growsize = BACKPOS_INITIAL * 8;
3677 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003678
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 if (REG_MULTI)
3680 {
3681 prog = reg_mmatch->regprog;
3682 line = reg_getline((linenr_T)0);
3683 reg_startpos = reg_mmatch->startpos;
3684 reg_endpos = reg_mmatch->endpos;
3685 }
3686 else
3687 {
3688 prog = reg_match->regprog;
3689 reg_startp = reg_match->startp;
3690 reg_endp = reg_match->endp;
3691 }
3692
3693 /* Be paranoid... */
3694 if (prog == NULL || line == NULL)
3695 {
3696 EMSG(_(e_null));
3697 goto theend;
3698 }
3699
3700 /* Check validity of program. */
3701 if (prog_magic_wrong())
3702 goto theend;
3703
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003704 /* If the start column is past the maximum column: no need to try. */
3705 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3706 goto theend;
3707
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 /* If pattern contains "\c" or "\C": overrule value of ireg_ic */
3709 if (prog->regflags & RF_ICASE)
3710 ireg_ic = TRUE;
3711 else if (prog->regflags & RF_NOICASE)
3712 ireg_ic = FALSE;
3713
3714#ifdef FEAT_MBYTE
3715 /* If pattern contains "\Z" overrule value of ireg_icombine */
3716 if (prog->regflags & RF_ICOMBINE)
3717 ireg_icombine = TRUE;
3718#endif
3719
3720 /* If there is a "must appear" string, look for it. */
3721 if (prog->regmust != NULL)
3722 {
3723 int c;
3724
3725#ifdef FEAT_MBYTE
3726 if (has_mbyte)
3727 c = (*mb_ptr2char)(prog->regmust);
3728 else
3729#endif
3730 c = *prog->regmust;
3731 s = line + col;
Bram Moolenaar05159a02005-02-26 23:04:13 +00003732
3733 /*
3734 * This is used very often, esp. for ":global". Use three versions of
3735 * the loop to avoid overhead of conditions.
3736 */
3737 if (!ireg_ic
3738#ifdef FEAT_MBYTE
3739 && !has_mbyte
3740#endif
3741 )
3742 while ((s = vim_strbyte(s, c)) != NULL)
3743 {
3744 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3745 break; /* Found it. */
3746 ++s;
3747 }
3748#ifdef FEAT_MBYTE
3749 else if (!ireg_ic || (!enc_utf8 && mb_char2len(c) > 1))
3750 while ((s = vim_strchr(s, c)) != NULL)
3751 {
3752 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3753 break; /* Found it. */
3754 mb_ptr_adv(s);
3755 }
3756#endif
3757 else
3758 while ((s = cstrchr(s, c)) != NULL)
3759 {
3760 if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0)
3761 break; /* Found it. */
3762 mb_ptr_adv(s);
3763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 if (s == NULL) /* Not present. */
3765 goto theend;
3766 }
3767
3768 regline = line;
3769 reglnum = 0;
Bram Moolenaar73a92fe2010-09-14 10:55:47 +02003770 reg_toolong = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771
3772 /* Simplest case: Anchored match need be tried only once. */
3773 if (prog->reganch)
3774 {
3775 int c;
3776
3777#ifdef FEAT_MBYTE
3778 if (has_mbyte)
3779 c = (*mb_ptr2char)(regline + col);
3780 else
3781#endif
3782 c = regline[col];
3783 if (prog->regstart == NUL
3784 || prog->regstart == c
3785 || (ireg_ic && ((
3786#ifdef FEAT_MBYTE
3787 (enc_utf8 && utf_fold(prog->regstart) == utf_fold(c)))
3788 || (c < 255 && prog->regstart < 255 &&
3789#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00003790 MB_TOLOWER(prog->regstart) == MB_TOLOWER(c)))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 retval = regtry(prog, col);
3792 else
3793 retval = 0;
3794 }
3795 else
3796 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003797#ifdef FEAT_RELTIME
3798 int tm_count = 0;
3799#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 /* Messy cases: unanchored match. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003801 while (!got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 {
3803 if (prog->regstart != NUL)
3804 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003805 /* Skip until the char we know it must start with.
3806 * Used often, do some work to avoid call overhead. */
3807 if (!ireg_ic
3808#ifdef FEAT_MBYTE
3809 && !has_mbyte
3810#endif
3811 )
3812 s = vim_strbyte(regline + col, prog->regstart);
3813 else
3814 s = cstrchr(regline + col, prog->regstart);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 if (s == NULL)
3816 {
3817 retval = 0;
3818 break;
3819 }
3820 col = (int)(s - regline);
3821 }
3822
Bram Moolenaar3b56eb32005-07-11 22:40:32 +00003823 /* Check for maximum column to try. */
3824 if (ireg_maxcol > 0 && col >= ireg_maxcol)
3825 {
3826 retval = 0;
3827 break;
3828 }
3829
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 retval = regtry(prog, col);
3831 if (retval > 0)
3832 break;
3833
3834 /* if not currently on the first line, get it again */
3835 if (reglnum != 0)
3836 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 reglnum = 0;
Bram Moolenaarae5bce12005-08-15 21:41:48 +00003838 regline = reg_getline((linenr_T)0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 }
3840 if (regline[col] == NUL)
3841 break;
3842#ifdef FEAT_MBYTE
3843 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00003844 col += (*mb_ptr2len)(regline + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 else
3846#endif
3847 ++col;
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003848#ifdef FEAT_RELTIME
3849 /* Check for timeout once in a twenty times to avoid overhead. */
3850 if (tm != NULL && ++tm_count == 20)
3851 {
3852 tm_count = 0;
3853 if (profile_passed_limit(tm))
3854 break;
3855 }
3856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 }
3858 }
3859
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860theend:
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00003861 /* Free "reg_tofree" when it's a bit big.
3862 * Free regstack and backpos if they are bigger than their initial size. */
3863 if (reg_tofreelen > 400)
3864 {
3865 vim_free(reg_tofree);
3866 reg_tofree = NULL;
3867 }
3868 if (regstack.ga_maxlen > REGSTACK_INITIAL)
3869 ga_clear(&regstack);
3870 if (backpos.ga_maxlen > BACKPOS_INITIAL)
3871 ga_clear(&backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00003872
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 return retval;
3874}
3875
3876#ifdef FEAT_SYN_HL
3877static reg_extmatch_T *make_extmatch __ARGS((void));
3878
3879/*
3880 * Create a new extmatch and mark it as referenced once.
3881 */
3882 static reg_extmatch_T *
3883make_extmatch()
3884{
3885 reg_extmatch_T *em;
3886
3887 em = (reg_extmatch_T *)alloc_clear((unsigned)sizeof(reg_extmatch_T));
3888 if (em != NULL)
3889 em->refcnt = 1;
3890 return em;
3891}
3892
3893/*
3894 * Add a reference to an extmatch.
3895 */
3896 reg_extmatch_T *
3897ref_extmatch(em)
3898 reg_extmatch_T *em;
3899{
3900 if (em != NULL)
3901 em->refcnt++;
3902 return em;
3903}
3904
3905/*
3906 * Remove a reference to an extmatch. If there are no references left, free
3907 * the info.
3908 */
3909 void
3910unref_extmatch(em)
3911 reg_extmatch_T *em;
3912{
3913 int i;
3914
3915 if (em != NULL && --em->refcnt <= 0)
3916 {
3917 for (i = 0; i < NSUBEXP; ++i)
3918 vim_free(em->matches[i]);
3919 vim_free(em);
3920 }
3921}
3922#endif
3923
3924/*
3925 * regtry - try match of "prog" with at regline["col"].
3926 * Returns 0 for failure, number of lines contained in the match otherwise.
3927 */
3928 static long
3929regtry(prog, col)
3930 regprog_T *prog;
3931 colnr_T col;
3932{
3933 reginput = regline + col;
3934 need_clear_subexpr = TRUE;
3935#ifdef FEAT_SYN_HL
3936 /* Clear the external match subpointers if necessary. */
3937 if (prog->reghasz == REX_SET)
3938 need_clear_zsubexpr = TRUE;
3939#endif
3940
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003941 if (regmatch(prog->program + 1) == 0)
3942 return 0;
3943
3944 cleanup_subexpr();
3945 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003947 if (reg_startpos[0].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003949 reg_startpos[0].lnum = 0;
3950 reg_startpos[0].col = col;
3951 }
3952 if (reg_endpos[0].lnum < 0)
3953 {
3954 reg_endpos[0].lnum = reglnum;
3955 reg_endpos[0].col = (int)(reginput - regline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 }
3957 else
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003958 /* Use line number of "\ze". */
3959 reglnum = reg_endpos[0].lnum;
3960 }
3961 else
3962 {
3963 if (reg_startp[0] == NULL)
3964 reg_startp[0] = regline + col;
3965 if (reg_endp[0] == NULL)
3966 reg_endp[0] = reginput;
3967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968#ifdef FEAT_SYN_HL
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003969 /* Package any found \z(...\) matches for export. Default is none. */
3970 unref_extmatch(re_extmatch_out);
3971 re_extmatch_out = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003973 if (prog->reghasz == REX_SET)
3974 {
3975 int i;
3976
3977 cleanup_zsubexpr();
3978 re_extmatch_out = make_extmatch();
3979 for (i = 0; i < NSUBEXP; i++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003981 if (REG_MULTI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 {
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003983 /* Only accept single line matches. */
3984 if (reg_startzpos[i].lnum >= 0
3985 && reg_endzpos[i].lnum == reg_startzpos[i].lnum)
3986 re_extmatch_out->matches[i] =
3987 vim_strnsave(reg_getline(reg_startzpos[i].lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003988 + reg_startzpos[i].col,
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003989 reg_endzpos[i].col - reg_startzpos[i].col);
3990 }
3991 else
3992 {
3993 if (reg_startzp[i] != NULL && reg_endzp[i] != NULL)
3994 re_extmatch_out->matches[i] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 vim_strnsave(reg_startzp[i],
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00003996 (int)(reg_endzp[i] - reg_startzp[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 }
3998 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00004000#endif
4001 return 1 + reglnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002}
4003
4004#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005static int reg_prev_class __ARGS((void));
4006
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007/*
4008 * Get class of previous character.
4009 */
4010 static int
4011reg_prev_class()
4012{
4013 if (reginput > regline)
4014 return mb_get_class(reginput - 1
4015 - (*mb_head_off)(regline, reginput - 1));
4016 return -1;
4017}
4018
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004020#define ADVANCE_REGINPUT() mb_ptr_adv(reginput)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021
4022/*
4023 * The arguments from BRACE_LIMITS are stored here. They are actually local
4024 * to regmatch(), but they are here to reduce the amount of stack space used
4025 * (it can be called recursively many times).
4026 */
4027static long bl_minval;
4028static long bl_maxval;
4029
4030/*
4031 * regmatch - main matching routine
4032 *
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004033 * Conceptually the strategy is simple: Check to see whether the current node
4034 * matches, push an item onto the regstack and loop to see whether the rest
4035 * matches, and then act accordingly. In practice we make some effort to
4036 * avoid using the regstack, in particular by going through "ordinary" nodes
4037 * (that don't need to know whether the rest of the match failed) by a nested
4038 * loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 *
4040 * Returns TRUE when there is a match. Leaves reginput and reglnum just after
4041 * the last matched character.
4042 * Returns FALSE when there is no match. Leaves reginput and reglnum in an
4043 * undefined state!
4044 */
4045 static int
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004046regmatch(scan)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 char_u *scan; /* Current node. */
4048{
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004049 char_u *next; /* Next node. */
4050 int op;
4051 int c;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004052 regitem_T *rp;
4053 int no;
4054 int status; /* one of the RA_ values: */
4055#define RA_FAIL 1 /* something failed, abort */
4056#define RA_CONT 2 /* continue in inner loop */
4057#define RA_BREAK 3 /* break inner loop */
4058#define RA_MATCH 4 /* successful match */
4059#define RA_NOMATCH 5 /* didn't match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060
Bram Moolenaar4bad6c82008-01-18 19:37:23 +00004061 /* Make "regstack" and "backpos" empty. They are allocated and freed in
4062 * vim_regexec_both() to reduce malloc()/free() calls. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004063 regstack.ga_len = 0;
4064 backpos.ga_len = 0;
Bram Moolenaar582fd852005-03-28 20:58:01 +00004065
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004066 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004067 * Repeat until "regstack" is empty.
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004068 */
4069 for (;;)
4070 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 /* Some patterns my cause a long time to match, even though they are not
4072 * illegal. E.g., "\([a-z]\+\)\+Q". Allow breaking them with CTRL-C. */
4073 fast_breakcheck();
4074
4075#ifdef DEBUG
4076 if (scan != NULL && regnarrate)
4077 {
4078 mch_errmsg(regprop(scan));
4079 mch_errmsg("(\n");
4080 }
4081#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004082
4083 /*
Bram Moolenaar582fd852005-03-28 20:58:01 +00004084 * Repeat for items that can be matched sequentially, without using the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004085 * regstack.
4086 */
4087 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004089 if (got_int || scan == NULL)
4090 {
4091 status = RA_FAIL;
4092 break;
4093 }
4094 status = RA_CONT;
4095
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096#ifdef DEBUG
4097 if (regnarrate)
4098 {
4099 mch_errmsg(regprop(scan));
4100 mch_errmsg("...\n");
4101# ifdef FEAT_SYN_HL
4102 if (re_extmatch_in != NULL)
4103 {
4104 int i;
4105
4106 mch_errmsg(_("External submatches:\n"));
4107 for (i = 0; i < NSUBEXP; i++)
4108 {
4109 mch_errmsg(" \"");
4110 if (re_extmatch_in->matches[i] != NULL)
4111 mch_errmsg(re_extmatch_in->matches[i]);
4112 mch_errmsg("\"\n");
4113 }
4114 }
4115# endif
4116 }
4117#endif
4118 next = regnext(scan);
4119
4120 op = OP(scan);
4121 /* Check for character class with NL added. */
Bram Moolenaar640009d2006-10-17 16:48:26 +00004122 if (!reg_line_lbr && WITH_NL(op) && REG_MULTI
4123 && *reginput == NUL && reglnum <= reg_maxline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 {
4125 reg_nextline();
4126 }
4127 else if (reg_line_lbr && WITH_NL(op) && *reginput == '\n')
4128 {
4129 ADVANCE_REGINPUT();
4130 }
4131 else
4132 {
4133 if (WITH_NL(op))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004134 op -= ADD_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004135#ifdef FEAT_MBYTE
4136 if (has_mbyte)
4137 c = (*mb_ptr2char)(reginput);
4138 else
4139#endif
4140 c = *reginput;
4141 switch (op)
4142 {
4143 case BOL:
4144 if (reginput != regline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004145 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 break;
4147
4148 case EOL:
4149 if (c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004150 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 break;
4152
4153 case RE_BOF:
Bram Moolenaara7139332007-12-09 18:26:22 +00004154 /* We're not at the beginning of the file when below the first
4155 * line where we started, not at the start of the line or we
4156 * didn't start at the first line of the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004157 if (reglnum != 0 || reginput != regline
Bram Moolenaara7139332007-12-09 18:26:22 +00004158 || (REG_MULTI && reg_firstlnum > 1))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004159 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 break;
4161
4162 case RE_EOF:
4163 if (reglnum != reg_maxline || c != NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004164 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 break;
4166
4167 case CURSOR:
4168 /* Check if the buffer is in a window and compare the
4169 * reg_win->w_cursor position to the match position. */
4170 if (reg_win == NULL
4171 || (reglnum + reg_firstlnum != reg_win->w_cursor.lnum)
4172 || ((colnr_T)(reginput - regline) != reg_win->w_cursor.col))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004173 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 break;
4175
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004176 case RE_MARK:
4177 /* Compare the mark position to the match position. NOTE: Always
4178 * uses the current buffer. */
4179 {
4180 int mark = OPERAND(scan)[0];
4181 int cmp = OPERAND(scan)[1];
4182 pos_T *pos;
4183
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004184 pos = getmark_buf(reg_buf, mark, FALSE);
Bram Moolenaare9400a42007-05-06 13:04:32 +00004185 if (pos == NULL /* mark doesn't exist */
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004186 || pos->lnum <= 0 /* mark isn't set (in curbuf) */
4187 || (pos->lnum == reglnum + reg_firstlnum
4188 ? (pos->col == (colnr_T)(reginput - regline)
4189 ? (cmp == '<' || cmp == '>')
4190 : (pos->col < (colnr_T)(reginput - regline)
4191 ? cmp != '>'
4192 : cmp != '<'))
4193 : (pos->lnum < reglnum + reg_firstlnum
4194 ? cmp != '>'
4195 : cmp != '<')))
4196 status = RA_NOMATCH;
4197 }
4198 break;
4199
4200 case RE_VISUAL:
4201#ifdef FEAT_VISUAL
4202 /* Check if the buffer is the current buffer. and whether the
4203 * position is inside the Visual area. */
4204 if (reg_buf != curbuf || VIsual.lnum == 0)
4205 status = RA_NOMATCH;
4206 else
4207 {
4208 pos_T top, bot;
4209 linenr_T lnum;
4210 colnr_T col;
4211 win_T *wp = reg_win == NULL ? curwin : reg_win;
4212 int mode;
4213
4214 if (VIsual_active)
4215 {
4216 if (lt(VIsual, wp->w_cursor))
4217 {
4218 top = VIsual;
4219 bot = wp->w_cursor;
4220 }
4221 else
4222 {
4223 top = wp->w_cursor;
4224 bot = VIsual;
4225 }
4226 mode = VIsual_mode;
4227 }
4228 else
4229 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004230 if (lt(curbuf->b_visual.vi_start, curbuf->b_visual.vi_end))
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004231 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004232 top = curbuf->b_visual.vi_start;
4233 bot = curbuf->b_visual.vi_end;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004234 }
4235 else
4236 {
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004237 top = curbuf->b_visual.vi_end;
4238 bot = curbuf->b_visual.vi_start;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00004239 }
Bram Moolenaara23ccb82006-02-27 00:08:02 +00004240 mode = curbuf->b_visual.vi_mode;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004241 }
4242 lnum = reglnum + reg_firstlnum;
4243 col = (colnr_T)(reginput - regline);
4244 if (lnum < top.lnum || lnum > bot.lnum)
4245 status = RA_NOMATCH;
4246 else if (mode == 'v')
4247 {
4248 if ((lnum == top.lnum && col < top.col)
4249 || (lnum == bot.lnum
4250 && col >= bot.col + (*p_sel != 'e')))
4251 status = RA_NOMATCH;
4252 }
4253 else if (mode == Ctrl_V)
4254 {
4255 colnr_T start, end;
4256 colnr_T start2, end2;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004257 colnr_T cols;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004258
4259 getvvcol(wp, &top, &start, NULL, &end);
4260 getvvcol(wp, &bot, &start2, NULL, &end2);
4261 if (start2 < start)
4262 start = start2;
4263 if (end2 > end)
4264 end = end2;
4265 if (top.col == MAXCOL || bot.col == MAXCOL)
4266 end = MAXCOL;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004267 cols = win_linetabsize(wp,
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004268 regline, (colnr_T)(reginput - regline));
Bram Moolenaar89d40322006-08-29 15:30:07 +00004269 if (cols < start || cols > end - (*p_sel == 'e'))
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00004270 status = RA_NOMATCH;
4271 }
4272 }
4273#else
4274 status = RA_NOMATCH;
4275#endif
4276 break;
4277
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 case RE_LNUM:
4279 if (!REG_MULTI || !re_num_cmp((long_u)(reglnum + reg_firstlnum),
4280 scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004281 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 break;
4283
4284 case RE_COL:
4285 if (!re_num_cmp((long_u)(reginput - regline) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004286 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 break;
4288
4289 case RE_VCOL:
4290 if (!re_num_cmp((long_u)win_linetabsize(
4291 reg_win == NULL ? curwin : reg_win,
4292 regline, (colnr_T)(reginput - regline)) + 1, scan))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004293 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 break;
4295
4296 case BOW: /* \<word; reginput points to w */
4297 if (c == NUL) /* Can't match at end of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004298 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004300 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 {
4302 int this_class;
4303
4304 /* Get class of current and previous char (if it exists). */
4305 this_class = mb_get_class(reginput);
4306 if (this_class <= 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004307 status = RA_NOMATCH; /* not on a word at all */
4308 else if (reg_prev_class() == this_class)
4309 status = RA_NOMATCH; /* previous char is in same word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 }
4311#endif
4312 else
4313 {
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004314 if (!vim_iswordc_buf(c, reg_buf)
4315 || (reginput > regline && vim_iswordc_buf(reginput[-1], reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004316 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 }
4318 break;
4319
4320 case EOW: /* word\>; reginput points after d */
4321 if (reginput == regline) /* Can't match at start of line */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004322 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323#ifdef FEAT_MBYTE
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004324 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 {
4326 int this_class, prev_class;
4327
4328 /* Get class of current and previous char (if it exists). */
4329 this_class = mb_get_class(reginput);
4330 prev_class = reg_prev_class();
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004331 if (this_class == prev_class
4332 || prev_class == 0 || prev_class == 1)
4333 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004335#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004336 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 {
Bram Moolenaar9d182dd2013-01-23 15:53:15 +01004338 if (!vim_iswordc_buf(reginput[-1], reg_buf)
4339 || (reginput[0] != NUL && vim_iswordc_buf(c, reg_buf)))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004340 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 }
4342 break; /* Matched with EOW */
4343
4344 case ANY:
4345 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004346 status = RA_NOMATCH;
4347 else
4348 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 break;
4350
4351 case IDENT:
4352 if (!vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004353 status = RA_NOMATCH;
4354 else
4355 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004356 break;
4357
4358 case SIDENT:
4359 if (VIM_ISDIGIT(*reginput) || !vim_isIDc(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004360 status = RA_NOMATCH;
4361 else
4362 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 break;
4364
4365 case KWORD:
4366 if (!vim_iswordp(reginput))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004367 status = RA_NOMATCH;
4368 else
4369 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 break;
4371
4372 case SKWORD:
4373 if (VIM_ISDIGIT(*reginput) || !vim_iswordp(reginput))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004374 status = RA_NOMATCH;
4375 else
4376 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 break;
4378
4379 case FNAME:
4380 if (!vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004381 status = RA_NOMATCH;
4382 else
4383 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 break;
4385
4386 case SFNAME:
4387 if (VIM_ISDIGIT(*reginput) || !vim_isfilec(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004388 status = RA_NOMATCH;
4389 else
4390 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 break;
4392
4393 case PRINT:
4394 if (ptr2cells(reginput) != 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004395 status = RA_NOMATCH;
4396 else
4397 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 break;
4399
4400 case SPRINT:
4401 if (VIM_ISDIGIT(*reginput) || ptr2cells(reginput) != 1)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004402 status = RA_NOMATCH;
4403 else
4404 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 break;
4406
4407 case WHITE:
4408 if (!vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004409 status = RA_NOMATCH;
4410 else
4411 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 break;
4413
4414 case NWHITE:
4415 if (c == NUL || vim_iswhite(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004416 status = RA_NOMATCH;
4417 else
4418 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 break;
4420
4421 case DIGIT:
4422 if (!ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004423 status = RA_NOMATCH;
4424 else
4425 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 break;
4427
4428 case NDIGIT:
4429 if (c == NUL || ri_digit(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004430 status = RA_NOMATCH;
4431 else
4432 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 break;
4434
4435 case HEX:
4436 if (!ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004437 status = RA_NOMATCH;
4438 else
4439 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 break;
4441
4442 case NHEX:
4443 if (c == NUL || ri_hex(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004444 status = RA_NOMATCH;
4445 else
4446 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 break;
4448
4449 case OCTAL:
4450 if (!ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004451 status = RA_NOMATCH;
4452 else
4453 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 break;
4455
4456 case NOCTAL:
4457 if (c == NUL || ri_octal(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004458 status = RA_NOMATCH;
4459 else
4460 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 break;
4462
4463 case WORD:
4464 if (!ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004465 status = RA_NOMATCH;
4466 else
4467 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 break;
4469
4470 case NWORD:
4471 if (c == NUL || ri_word(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004472 status = RA_NOMATCH;
4473 else
4474 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 break;
4476
4477 case HEAD:
4478 if (!ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004479 status = RA_NOMATCH;
4480 else
4481 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 break;
4483
4484 case NHEAD:
4485 if (c == NUL || ri_head(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004486 status = RA_NOMATCH;
4487 else
4488 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 break;
4490
4491 case ALPHA:
4492 if (!ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004493 status = RA_NOMATCH;
4494 else
4495 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 break;
4497
4498 case NALPHA:
4499 if (c == NUL || ri_alpha(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004500 status = RA_NOMATCH;
4501 else
4502 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 break;
4504
4505 case LOWER:
4506 if (!ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004507 status = RA_NOMATCH;
4508 else
4509 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 break;
4511
4512 case NLOWER:
4513 if (c == NUL || ri_lower(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004514 status = RA_NOMATCH;
4515 else
4516 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 break;
4518
4519 case UPPER:
4520 if (!ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004521 status = RA_NOMATCH;
4522 else
4523 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 break;
4525
4526 case NUPPER:
4527 if (c == NUL || ri_upper(c))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004528 status = RA_NOMATCH;
4529 else
4530 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 break;
4532
4533 case EXACTLY:
4534 {
4535 int len;
4536 char_u *opnd;
4537
4538 opnd = OPERAND(scan);
4539 /* Inline the first byte, for speed. */
4540 if (*opnd != *reginput
4541 && (!ireg_ic || (
4542#ifdef FEAT_MBYTE
4543 !enc_utf8 &&
4544#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00004545 MB_TOLOWER(*opnd) != MB_TOLOWER(*reginput))))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004546 status = RA_NOMATCH;
4547 else if (*opnd == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 {
4549 /* match empty string always works; happens when "~" is
4550 * empty. */
4551 }
4552 else if (opnd[1] == NUL
4553#ifdef FEAT_MBYTE
4554 && !(enc_utf8 && ireg_ic)
4555#endif
4556 )
4557 ++reginput; /* matched a single char */
4558 else
4559 {
4560 len = (int)STRLEN(opnd);
4561 /* Need to match first byte again for multi-byte. */
4562 if (cstrncmp(opnd, reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004563 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564#ifdef FEAT_MBYTE
4565 /* Check for following composing character. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004566 else if (enc_utf8
4567 && UTF_COMPOSINGLIKE(reginput, reginput + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 {
4569 /* raaron: This code makes a composing character get
4570 * ignored, which is the correct behavior (sometimes)
4571 * for voweled Hebrew texts. */
4572 if (!ireg_icombine)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004573 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004576 else
4577 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578 }
4579 }
4580 break;
4581
4582 case ANYOF:
4583 case ANYBUT:
4584 if (c == NUL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004585 status = RA_NOMATCH;
4586 else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF))
4587 status = RA_NOMATCH;
4588 else
4589 ADVANCE_REGINPUT();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 break;
4591
4592#ifdef FEAT_MBYTE
4593 case MULTIBYTECODE:
4594 if (has_mbyte)
4595 {
4596 int i, len;
4597 char_u *opnd;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004598 int opndc = 0, inpc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599
4600 opnd = OPERAND(scan);
4601 /* Safety check (just in case 'encoding' was changed since
4602 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004603 if ((len = (*mb_ptr2len)(opnd)) < 2)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004604 {
4605 status = RA_NOMATCH;
4606 break;
4607 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004608 if (enc_utf8)
4609 opndc = mb_ptr2char(opnd);
4610 if (enc_utf8 && utf_iscomposing(opndc))
4611 {
4612 /* When only a composing char is given match at any
4613 * position where that composing char appears. */
4614 status = RA_NOMATCH;
4615 for (i = 0; reginput[i] != NUL; i += utf_char2len(inpc))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004616 {
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004617 inpc = mb_ptr2char(reginput + i);
4618 if (!utf_iscomposing(inpc))
4619 {
4620 if (i > 0)
4621 break;
4622 }
4623 else if (opndc == inpc)
4624 {
4625 /* Include all following composing chars. */
4626 len = i + mb_ptr2len(reginput + i);
4627 status = RA_MATCH;
4628 break;
4629 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004630 }
Bram Moolenaar362e1a32006-03-06 23:29:24 +00004631 }
4632 else
4633 for (i = 0; i < len; ++i)
4634 if (opnd[i] != reginput[i])
4635 {
4636 status = RA_NOMATCH;
4637 break;
4638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 reginput += len;
4640 }
4641 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004642 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 break;
4644#endif
4645
4646 case NOTHING:
4647 break;
4648
4649 case BACK:
Bram Moolenaar582fd852005-03-28 20:58:01 +00004650 {
4651 int i;
4652 backpos_T *bp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653
Bram Moolenaar582fd852005-03-28 20:58:01 +00004654 /*
4655 * When we run into BACK we need to check if we don't keep
4656 * looping without matching any input. The second and later
4657 * times a BACK is encountered it fails if the input is still
4658 * at the same position as the previous time.
4659 * The positions are stored in "backpos" and found by the
4660 * current value of "scan", the position in the RE program.
4661 */
4662 bp = (backpos_T *)backpos.ga_data;
4663 for (i = 0; i < backpos.ga_len; ++i)
4664 if (bp[i].bp_scan == scan)
4665 break;
4666 if (i == backpos.ga_len)
4667 {
4668 /* First time at this BACK, make room to store the pos. */
4669 if (ga_grow(&backpos, 1) == FAIL)
4670 status = RA_FAIL;
4671 else
4672 {
4673 /* get "ga_data" again, it may have changed */
4674 bp = (backpos_T *)backpos.ga_data;
4675 bp[i].bp_scan = scan;
4676 ++backpos.ga_len;
4677 }
4678 }
4679 else if (reg_save_equal(&bp[i].bp_pos))
4680 /* Still at same position as last time, fail. */
4681 status = RA_NOMATCH;
4682
4683 if (status != RA_FAIL && status != RA_NOMATCH)
4684 reg_save(&bp[i].bp_pos, &backpos);
4685 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00004686 break;
4687
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 case MOPEN + 0: /* Match start: \zs */
4689 case MOPEN + 1: /* \( */
4690 case MOPEN + 2:
4691 case MOPEN + 3:
4692 case MOPEN + 4:
4693 case MOPEN + 5:
4694 case MOPEN + 6:
4695 case MOPEN + 7:
4696 case MOPEN + 8:
4697 case MOPEN + 9:
4698 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 no = op - MOPEN;
4700 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004701 rp = regstack_push(RS_MOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004702 if (rp == NULL)
4703 status = RA_FAIL;
4704 else
4705 {
4706 rp->rs_no = no;
4707 save_se(&rp->rs_un.sesave, &reg_startpos[no],
4708 &reg_startp[no]);
4709 /* We simply continue and handle the result when done. */
4710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004712 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713
4714 case NOPEN: /* \%( */
4715 case NCLOSE: /* \) after \%( */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004716 if (regstack_push(RS_NOPEN, scan) == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004717 status = RA_FAIL;
4718 /* We simply continue and handle the result when done. */
4719 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720
4721#ifdef FEAT_SYN_HL
4722 case ZOPEN + 1:
4723 case ZOPEN + 2:
4724 case ZOPEN + 3:
4725 case ZOPEN + 4:
4726 case ZOPEN + 5:
4727 case ZOPEN + 6:
4728 case ZOPEN + 7:
4729 case ZOPEN + 8:
4730 case ZOPEN + 9:
4731 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 no = op - ZOPEN;
4733 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004734 rp = regstack_push(RS_ZOPEN, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004735 if (rp == NULL)
4736 status = RA_FAIL;
4737 else
4738 {
4739 rp->rs_no = no;
4740 save_se(&rp->rs_un.sesave, &reg_startzpos[no],
4741 &reg_startzp[no]);
4742 /* We simply continue and handle the result when done. */
4743 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004745 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746#endif
4747
4748 case MCLOSE + 0: /* Match end: \ze */
4749 case MCLOSE + 1: /* \) */
4750 case MCLOSE + 2:
4751 case MCLOSE + 3:
4752 case MCLOSE + 4:
4753 case MCLOSE + 5:
4754 case MCLOSE + 6:
4755 case MCLOSE + 7:
4756 case MCLOSE + 8:
4757 case MCLOSE + 9:
4758 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 no = op - MCLOSE;
4760 cleanup_subexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004761 rp = regstack_push(RS_MCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004762 if (rp == NULL)
4763 status = RA_FAIL;
4764 else
4765 {
4766 rp->rs_no = no;
4767 save_se(&rp->rs_un.sesave, &reg_endpos[no], &reg_endp[no]);
4768 /* We simply continue and handle the result when done. */
4769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004771 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772
4773#ifdef FEAT_SYN_HL
4774 case ZCLOSE + 1: /* \) after \z( */
4775 case ZCLOSE + 2:
4776 case ZCLOSE + 3:
4777 case ZCLOSE + 4:
4778 case ZCLOSE + 5:
4779 case ZCLOSE + 6:
4780 case ZCLOSE + 7:
4781 case ZCLOSE + 8:
4782 case ZCLOSE + 9:
4783 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 no = op - ZCLOSE;
4785 cleanup_zsubexpr();
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004786 rp = regstack_push(RS_ZCLOSE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004787 if (rp == NULL)
4788 status = RA_FAIL;
4789 else
4790 {
4791 rp->rs_no = no;
4792 save_se(&rp->rs_un.sesave, &reg_endzpos[no],
4793 &reg_endzp[no]);
4794 /* We simply continue and handle the result when done. */
4795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004797 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798#endif
4799
4800 case BACKREF + 1:
4801 case BACKREF + 2:
4802 case BACKREF + 3:
4803 case BACKREF + 4:
4804 case BACKREF + 5:
4805 case BACKREF + 6:
4806 case BACKREF + 7:
4807 case BACKREF + 8:
4808 case BACKREF + 9:
4809 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 int len;
4811 linenr_T clnum;
4812 colnr_T ccol;
4813 char_u *p;
4814
4815 no = op - BACKREF;
4816 cleanup_subexpr();
4817 if (!REG_MULTI) /* Single-line regexp */
4818 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004819 if (reg_startp[no] == NULL || reg_endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 {
4821 /* Backref was not set: Match an empty string. */
4822 len = 0;
4823 }
4824 else
4825 {
4826 /* Compare current input with back-ref in the same
4827 * line. */
4828 len = (int)(reg_endp[no] - reg_startp[no]);
4829 if (cstrncmp(reg_startp[no], reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004830 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 }
4832 }
4833 else /* Multi-line regexp */
4834 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00004835 if (reg_startpos[no].lnum < 0 || reg_endpos[no].lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 {
4837 /* Backref was not set: Match an empty string. */
4838 len = 0;
4839 }
4840 else
4841 {
4842 if (reg_startpos[no].lnum == reglnum
4843 && reg_endpos[no].lnum == reglnum)
4844 {
4845 /* Compare back-ref within the current line. */
4846 len = reg_endpos[no].col - reg_startpos[no].col;
4847 if (cstrncmp(regline + reg_startpos[no].col,
4848 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004849 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850 }
4851 else
4852 {
4853 /* Messy situation: Need to compare between two
4854 * lines. */
4855 ccol = reg_startpos[no].col;
4856 clnum = reg_startpos[no].lnum;
4857 for (;;)
4858 {
4859 /* Since getting one line may invalidate
4860 * the other, need to make copy. Slow! */
4861 if (regline != reg_tofree)
4862 {
4863 len = (int)STRLEN(regline);
4864 if (reg_tofree == NULL
4865 || len >= (int)reg_tofreelen)
4866 {
4867 len += 50; /* get some extra */
4868 vim_free(reg_tofree);
4869 reg_tofree = alloc(len);
4870 if (reg_tofree == NULL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004871 {
4872 status = RA_FAIL; /* outof memory!*/
4873 break;
4874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 reg_tofreelen = len;
4876 }
4877 STRCPY(reg_tofree, regline);
4878 reginput = reg_tofree
4879 + (reginput - regline);
4880 regline = reg_tofree;
4881 }
4882
4883 /* Get the line to compare with. */
4884 p = reg_getline(clnum);
4885 if (clnum == reg_endpos[no].lnum)
4886 len = reg_endpos[no].col - ccol;
4887 else
4888 len = (int)STRLEN(p + ccol);
4889
4890 if (cstrncmp(p + ccol, reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004891 {
4892 status = RA_NOMATCH; /* doesn't match */
4893 break;
4894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895 if (clnum == reg_endpos[no].lnum)
4896 break; /* match and at end! */
Bram Moolenaarae5bce12005-08-15 21:41:48 +00004897 if (reglnum >= reg_maxline)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004898 {
4899 status = RA_NOMATCH; /* text too short */
4900 break;
4901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902
4903 /* Advance to next line. */
4904 reg_nextline();
4905 ++clnum;
4906 ccol = 0;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004907 if (got_int)
4908 {
4909 status = RA_FAIL;
4910 break;
4911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 }
4913
4914 /* found a match! Note that regline may now point
4915 * to a copy of the line, that should not matter. */
4916 }
4917 }
4918 }
4919
4920 /* Matched the backref, skip over it. */
4921 reginput += len;
4922 }
4923 break;
4924
4925#ifdef FEAT_SYN_HL
4926 case ZREF + 1:
4927 case ZREF + 2:
4928 case ZREF + 3:
4929 case ZREF + 4:
4930 case ZREF + 5:
4931 case ZREF + 6:
4932 case ZREF + 7:
4933 case ZREF + 8:
4934 case ZREF + 9:
4935 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 int len;
4937
4938 cleanup_zsubexpr();
4939 no = op - ZREF;
4940 if (re_extmatch_in != NULL
4941 && re_extmatch_in->matches[no] != NULL)
4942 {
4943 len = (int)STRLEN(re_extmatch_in->matches[no]);
4944 if (cstrncmp(re_extmatch_in->matches[no],
4945 reginput, &len) != 0)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004946 status = RA_NOMATCH;
4947 else
4948 reginput += len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 }
4950 else
4951 {
4952 /* Backref was not set: Match an empty string. */
4953 }
4954 }
4955 break;
4956#endif
4957
4958 case BRANCH:
4959 {
4960 if (OP(next) != BRANCH) /* No choice. */
4961 next = OPERAND(scan); /* Avoid recursion. */
4962 else
4963 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00004964 rp = regstack_push(RS_BRANCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004965 if (rp == NULL)
4966 status = RA_FAIL;
4967 else
4968 status = RA_BREAK; /* rest is below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 }
4970 }
4971 break;
4972
4973 case BRACE_LIMITS:
4974 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 if (OP(next) == BRACE_SIMPLE)
4976 {
4977 bl_minval = OPERAND_MIN(scan);
4978 bl_maxval = OPERAND_MAX(scan);
4979 }
4980 else if (OP(next) >= BRACE_COMPLEX
4981 && OP(next) < BRACE_COMPLEX + 10)
4982 {
4983 no = OP(next) - BRACE_COMPLEX;
4984 brace_min[no] = OPERAND_MIN(scan);
4985 brace_max[no] = OPERAND_MAX(scan);
4986 brace_count[no] = 0;
4987 }
4988 else
4989 {
4990 EMSG(_(e_internal)); /* Shouldn't happen */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00004991 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 }
4993 }
4994 break;
4995
4996 case BRACE_COMPLEX + 0:
4997 case BRACE_COMPLEX + 1:
4998 case BRACE_COMPLEX + 2:
4999 case BRACE_COMPLEX + 3:
5000 case BRACE_COMPLEX + 4:
5001 case BRACE_COMPLEX + 5:
5002 case BRACE_COMPLEX + 6:
5003 case BRACE_COMPLEX + 7:
5004 case BRACE_COMPLEX + 8:
5005 case BRACE_COMPLEX + 9:
5006 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005007 no = op - BRACE_COMPLEX;
5008 ++brace_count[no];
5009
5010 /* If not matched enough times yet, try one more */
5011 if (brace_count[no] <= (brace_min[no] <= brace_max[no]
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005012 ? brace_min[no] : brace_max[no]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005014 rp = regstack_push(RS_BRCPLX_MORE, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005015 if (rp == NULL)
5016 status = RA_FAIL;
5017 else
5018 {
5019 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005020 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005021 next = OPERAND(scan);
5022 /* We continue and handle the result when done. */
5023 }
5024 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 }
5026
5027 /* If matched enough times, may try matching some more */
5028 if (brace_min[no] <= brace_max[no])
5029 {
5030 /* Range is the normal way around, use longest match */
5031 if (brace_count[no] <= brace_max[no])
5032 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005033 rp = regstack_push(RS_BRCPLX_LONG, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005034 if (rp == NULL)
5035 status = RA_FAIL;
5036 else
5037 {
5038 rp->rs_no = no;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005039 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005040 next = OPERAND(scan);
5041 /* We continue and handle the result when done. */
5042 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 }
5044 }
5045 else
5046 {
5047 /* Range is backwards, use shortest match first */
5048 if (brace_count[no] <= brace_min[no])
5049 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005050 rp = regstack_push(RS_BRCPLX_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005051 if (rp == NULL)
5052 status = RA_FAIL;
5053 else
5054 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005055 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005056 /* We continue and handle the result when done. */
5057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 }
5059 }
5060 }
5061 break;
5062
5063 case BRACE_SIMPLE:
5064 case STAR:
5065 case PLUS:
5066 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005067 regstar_T rst;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
5069 /*
5070 * Lookahead to avoid useless match attempts when we know
5071 * what character comes next.
5072 */
5073 if (OP(next) == EXACTLY)
5074 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005075 rst.nextb = *OPERAND(next);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 if (ireg_ic)
5077 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005078 if (MB_ISUPPER(rst.nextb))
5079 rst.nextb_ic = MB_TOLOWER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 else
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005081 rst.nextb_ic = MB_TOUPPER(rst.nextb);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 }
5083 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005084 rst.nextb_ic = rst.nextb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 }
5086 else
5087 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005088 rst.nextb = NUL;
5089 rst.nextb_ic = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 }
5091 if (op != BRACE_SIMPLE)
5092 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005093 rst.minval = (op == STAR) ? 0 : 1;
5094 rst.maxval = MAX_LIMIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 }
5096 else
5097 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005098 rst.minval = bl_minval;
5099 rst.maxval = bl_maxval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 }
5101
5102 /*
5103 * When maxval > minval, try matching as much as possible, up
5104 * to maxval. When maxval < minval, try matching at least the
5105 * minimal number (since the range is backwards, that's also
5106 * maxval!).
5107 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005108 rst.count = regrepeat(OPERAND(scan), rst.maxval);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 if (got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005111 status = RA_FAIL;
5112 break;
5113 }
5114 if (rst.minval <= rst.maxval
5115 ? rst.count >= rst.minval : rst.count >= rst.maxval)
5116 {
5117 /* It could match. Prepare for trying to match what
5118 * follows. The code is below. Parameters are stored in
5119 * a regstar_T on the regstack. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005120 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005121 {
5122 EMSG(_(e_maxmempat));
5123 status = RA_FAIL;
5124 }
5125 else if (ga_grow(&regstack, sizeof(regstar_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005126 status = RA_FAIL;
5127 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005129 regstack.ga_len += sizeof(regstar_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005130 rp = regstack_push(rst.minval <= rst.maxval
Bram Moolenaar582fd852005-03-28 20:58:01 +00005131 ? RS_STAR_LONG : RS_STAR_SHORT, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005132 if (rp == NULL)
5133 status = RA_FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005135 {
5136 *(((regstar_T *)rp) - 1) = rst;
5137 status = RA_BREAK; /* skip the restore bits */
5138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 }
5140 }
5141 else
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005142 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 }
5145 break;
5146
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005147 case NOMATCH:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 case MATCH:
5149 case SUBPAT:
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005150 rp = regstack_push(RS_NOMATCH, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005151 if (rp == NULL)
5152 status = RA_FAIL;
5153 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005155 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005156 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005157 next = OPERAND(scan);
5158 /* We continue and handle the result when done. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 }
5160 break;
5161
5162 case BEHIND:
5163 case NOBEHIND:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005164 /* Need a bit of room to store extra positions. */
Bram Moolenaar916b7af2005-03-16 09:52:38 +00005165 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005166 {
5167 EMSG(_(e_maxmempat));
5168 status = RA_FAIL;
5169 }
5170 else if (ga_grow(&regstack, sizeof(regbehind_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005171 status = RA_FAIL;
5172 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005174 regstack.ga_len += sizeof(regbehind_T);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005175 rp = regstack_push(RS_BEHIND1, scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005176 if (rp == NULL)
5177 status = RA_FAIL;
5178 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005180 /* Need to save the subexpr to be able to restore them
5181 * when there is a match but we don't use it. */
5182 save_subexpr(((regbehind_T *)rp) - 1);
5183
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005184 rp->rs_no = op;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005185 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005186 /* First try if what follows matches. If it does then we
5187 * check the behind match by looping. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005190 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191
5192 case BHPOS:
5193 if (REG_MULTI)
5194 {
5195 if (behind_pos.rs_u.pos.col != (colnr_T)(reginput - regline)
5196 || behind_pos.rs_u.pos.lnum != reglnum)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005197 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198 }
5199 else if (behind_pos.rs_u.ptr != reginput)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005200 status = RA_NOMATCH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 break;
5202
5203 case NEWL:
Bram Moolenaar640009d2006-10-17 16:48:26 +00005204 if ((c != NUL || !REG_MULTI || reglnum > reg_maxline
5205 || reg_line_lbr) && (c != '\n' || !reg_line_lbr))
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005206 status = RA_NOMATCH;
5207 else if (reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208 ADVANCE_REGINPUT();
5209 else
5210 reg_nextline();
5211 break;
5212
5213 case END:
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005214 status = RA_MATCH; /* Success! */
5215 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216
5217 default:
5218 EMSG(_(e_re_corr));
5219#ifdef DEBUG
5220 printf("Illegal op code %d\n", op);
5221#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005222 status = RA_FAIL;
5223 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 }
5225 }
5226
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005227 /* If we can't continue sequentially, break the inner loop. */
5228 if (status != RA_CONT)
5229 break;
5230
5231 /* Continue in inner loop, advance to next item. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 scan = next;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005233
5234 } /* end of inner loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235
5236 /*
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005237 * If there is something on the regstack execute the code for the state.
Bram Moolenaar582fd852005-03-28 20:58:01 +00005238 * If the state is popped then loop and use the older state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005240 while (regstack.ga_len > 0 && status != RA_FAIL)
5241 {
5242 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
5243 switch (rp->rs_state)
5244 {
5245 case RS_NOPEN:
5246 /* Result is passed on as-is, simply pop the state. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005247 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005248 break;
5249
5250 case RS_MOPEN:
5251 /* Pop the state. Restore pointers when there is no match. */
5252 if (status == RA_NOMATCH)
5253 restore_se(&rp->rs_un.sesave, &reg_startpos[rp->rs_no],
5254 &reg_startp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005255 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005256 break;
5257
5258#ifdef FEAT_SYN_HL
5259 case RS_ZOPEN:
5260 /* Pop the state. Restore pointers when there is no match. */
5261 if (status == RA_NOMATCH)
5262 restore_se(&rp->rs_un.sesave, &reg_startzpos[rp->rs_no],
5263 &reg_startzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005264 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005265 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266#endif
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005267
5268 case RS_MCLOSE:
5269 /* Pop the state. Restore pointers when there is no match. */
5270 if (status == RA_NOMATCH)
5271 restore_se(&rp->rs_un.sesave, &reg_endpos[rp->rs_no],
5272 &reg_endp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005273 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005274 break;
5275
5276#ifdef FEAT_SYN_HL
5277 case RS_ZCLOSE:
5278 /* Pop the state. Restore pointers when there is no match. */
5279 if (status == RA_NOMATCH)
5280 restore_se(&rp->rs_un.sesave, &reg_endzpos[rp->rs_no],
5281 &reg_endzp[rp->rs_no]);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005282 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005283 break;
5284#endif
5285
5286 case RS_BRANCH:
5287 if (status == RA_MATCH)
5288 /* this branch matched, use it */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005289 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005290 else
5291 {
5292 if (status != RA_BREAK)
5293 {
5294 /* After a non-matching branch: try next one. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005295 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005296 scan = rp->rs_scan;
5297 }
5298 if (scan == NULL || OP(scan) != BRANCH)
5299 {
5300 /* no more branches, didn't find a match */
5301 status = RA_NOMATCH;
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005302 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005303 }
5304 else
5305 {
5306 /* Prepare to try a branch. */
5307 rp->rs_scan = regnext(scan);
Bram Moolenaar582fd852005-03-28 20:58:01 +00005308 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005309 scan = OPERAND(scan);
5310 }
5311 }
5312 break;
5313
5314 case RS_BRCPLX_MORE:
5315 /* Pop the state. Restore pointers when there is no match. */
5316 if (status == RA_NOMATCH)
5317 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005318 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005319 --brace_count[rp->rs_no]; /* decrement match count */
5320 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005321 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005322 break;
5323
5324 case RS_BRCPLX_LONG:
5325 /* Pop the state. Restore pointers when there is no match. */
5326 if (status == RA_NOMATCH)
5327 {
5328 /* There was no match, but we did find enough matches. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005329 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005330 --brace_count[rp->rs_no];
5331 /* continue with the items after "\{}" */
5332 status = RA_CONT;
5333 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005334 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005335 if (status == RA_CONT)
5336 scan = regnext(scan);
5337 break;
5338
5339 case RS_BRCPLX_SHORT:
5340 /* Pop the state. Restore pointers when there is no match. */
5341 if (status == RA_NOMATCH)
5342 /* There was no match, try to match one more item. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005343 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005344 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005345 if (status == RA_NOMATCH)
5346 {
5347 scan = OPERAND(scan);
5348 status = RA_CONT;
5349 }
5350 break;
5351
5352 case RS_NOMATCH:
5353 /* Pop the state. If the operand matches for NOMATCH or
5354 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup,
5355 * except for SUBPAT, and continue with the next item. */
5356 if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH))
5357 status = RA_NOMATCH;
5358 else
5359 {
5360 status = RA_CONT;
Bram Moolenaar582fd852005-03-28 20:58:01 +00005361 if (rp->rs_no != SUBPAT) /* zero-width */
5362 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005363 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005364 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005365 if (status == RA_CONT)
5366 scan = regnext(scan);
5367 break;
5368
5369 case RS_BEHIND1:
5370 if (status == RA_NOMATCH)
5371 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005372 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005373 regstack.ga_len -= sizeof(regbehind_T);
5374 }
5375 else
5376 {
5377 /* The stuff after BEHIND/NOBEHIND matches. Now try if
5378 * the behind part does (not) match before the current
5379 * position in the input. This must be done at every
5380 * position in the input and checking if the match ends at
5381 * the current position. */
5382
5383 /* save the position after the found match for next */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005384 reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005385
5386 /* start looking for a match with operand at the current
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00005387 * position. Go back one character until we find the
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005388 * result, hitting the start of the line or the previous
5389 * line (for multi-line matching).
5390 * Set behind_pos to where the match should end, BHPOS
5391 * will match it. Save the current value. */
5392 (((regbehind_T *)rp) - 1)->save_behind = behind_pos;
5393 behind_pos = rp->rs_un.regsave;
5394
5395 rp->rs_state = RS_BEHIND2;
5396
Bram Moolenaar582fd852005-03-28 20:58:01 +00005397 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005398 scan = OPERAND(rp->rs_scan);
5399 }
5400 break;
5401
5402 case RS_BEHIND2:
5403 /*
5404 * Looping for BEHIND / NOBEHIND match.
5405 */
5406 if (status == RA_MATCH && reg_save_equal(&behind_pos))
5407 {
5408 /* found a match that ends where "next" started */
5409 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5410 if (rp->rs_no == BEHIND)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005411 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5412 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005413 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005414 {
5415 /* But we didn't want a match. Need to restore the
5416 * subexpr, because what follows matched, so they have
5417 * been set. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005418 status = RA_NOMATCH;
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005419 restore_subexpr(((regbehind_T *)rp) - 1);
5420 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005421 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005422 regstack.ga_len -= sizeof(regbehind_T);
5423 }
5424 else
5425 {
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005426 /* No match or a match that doesn't end where we want it: Go
5427 * back one character. May go to previous line once. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005428 no = OK;
5429 if (REG_MULTI)
5430 {
5431 if (rp->rs_un.regsave.rs_u.pos.col == 0)
5432 {
5433 if (rp->rs_un.regsave.rs_u.pos.lnum
5434 < behind_pos.rs_u.pos.lnum
5435 || reg_getline(
5436 --rp->rs_un.regsave.rs_u.pos.lnum)
5437 == NULL)
5438 no = FAIL;
5439 else
5440 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005441 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005442 rp->rs_un.regsave.rs_u.pos.col =
5443 (colnr_T)STRLEN(regline);
5444 }
5445 }
5446 else
5447 --rp->rs_un.regsave.rs_u.pos.col;
5448 }
5449 else
5450 {
5451 if (rp->rs_un.regsave.rs_u.ptr == regline)
5452 no = FAIL;
5453 else
5454 --rp->rs_un.regsave.rs_u.ptr;
5455 }
5456 if (no == OK)
5457 {
5458 /* Advanced, prepare for finding match again. */
Bram Moolenaar582fd852005-03-28 20:58:01 +00005459 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005460 scan = OPERAND(rp->rs_scan);
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005461 if (status == RA_MATCH)
5462 {
5463 /* We did match, so subexpr may have been changed,
5464 * need to restore them for the next try. */
5465 status = RA_NOMATCH;
5466 restore_subexpr(((regbehind_T *)rp) - 1);
5467 }
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005468 }
5469 else
5470 {
5471 /* Can't advance. For NOBEHIND that's a match. */
5472 behind_pos = (((regbehind_T *)rp) - 1)->save_behind;
5473 if (rp->rs_no == NOBEHIND)
5474 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005475 reg_restore(&(((regbehind_T *)rp) - 1)->save_after,
5476 &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005477 status = RA_MATCH;
5478 }
5479 else
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00005480 {
5481 /* We do want a proper match. Need to restore the
5482 * subexpr if we had a match, because they may have
5483 * been set. */
5484 if (status == RA_MATCH)
5485 {
5486 status = RA_NOMATCH;
5487 restore_subexpr(((regbehind_T *)rp) - 1);
5488 }
5489 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005490 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005491 regstack.ga_len -= sizeof(regbehind_T);
5492 }
5493 }
5494 break;
5495
5496 case RS_STAR_LONG:
5497 case RS_STAR_SHORT:
5498 {
5499 regstar_T *rst = ((regstar_T *)rp) - 1;
5500
5501 if (status == RA_MATCH)
5502 {
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005503 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005504 regstack.ga_len -= sizeof(regstar_T);
5505 break;
5506 }
5507
5508 /* Tried once already, restore input pointers. */
5509 if (status != RA_BREAK)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005510 reg_restore(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005511
5512 /* Repeat until we found a position where it could match. */
5513 for (;;)
5514 {
5515 if (status != RA_BREAK)
5516 {
5517 /* Tried first position already, advance. */
5518 if (rp->rs_state == RS_STAR_LONG)
5519 {
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005520 /* Trying for longest match, but couldn't or
5521 * didn't match -- back up one char. */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005522 if (--rst->count < rst->minval)
5523 break;
5524 if (reginput == regline)
5525 {
5526 /* backup to last char of previous line */
5527 --reglnum;
5528 regline = reg_getline(reglnum);
5529 /* Just in case regrepeat() didn't count
5530 * right. */
5531 if (regline == NULL)
5532 break;
5533 reginput = regline + STRLEN(regline);
5534 fast_breakcheck();
5535 }
5536 else
5537 mb_ptr_back(regline, reginput);
5538 }
5539 else
5540 {
5541 /* Range is backwards, use shortest match first.
5542 * Careful: maxval and minval are exchanged!
5543 * Couldn't or didn't match: try advancing one
5544 * char. */
5545 if (rst->count == rst->minval
5546 || regrepeat(OPERAND(rp->rs_scan), 1L) == 0)
5547 break;
5548 ++rst->count;
5549 }
5550 if (got_int)
5551 break;
5552 }
5553 else
5554 status = RA_NOMATCH;
5555
5556 /* If it could match, try it. */
5557 if (rst->nextb == NUL || *reginput == rst->nextb
5558 || *reginput == rst->nextb_ic)
5559 {
Bram Moolenaar582fd852005-03-28 20:58:01 +00005560 reg_save(&rp->rs_un.regsave, &backpos);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005561 scan = regnext(rp->rs_scan);
5562 status = RA_CONT;
5563 break;
5564 }
5565 }
5566 if (status != RA_CONT)
5567 {
5568 /* Failed. */
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005569 regstack_pop(&scan);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005570 regstack.ga_len -= sizeof(regstar_T);
5571 status = RA_NOMATCH;
5572 }
5573 }
5574 break;
5575 }
5576
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005577 /* If we want to continue the inner loop or didn't pop a state
5578 * continue matching loop */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005579 if (status == RA_CONT || rp == (regitem_T *)
5580 ((char *)regstack.ga_data + regstack.ga_len) - 1)
5581 break;
5582 }
5583
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005584 /* May need to continue with the inner loop, starting at "scan". */
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005585 if (status == RA_CONT)
5586 continue;
5587
5588 /*
5589 * If the regstack is empty or something failed we are done.
5590 */
5591 if (regstack.ga_len == 0 || status == RA_FAIL)
5592 {
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005593 if (scan == NULL)
5594 {
5595 /*
5596 * We get here only if there's trouble -- normally "case END" is
5597 * the terminating point.
5598 */
5599 EMSG(_(e_re_corr));
5600#ifdef DEBUG
5601 printf("Premature EOL\n");
5602#endif
5603 }
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005604 if (status == RA_FAIL)
5605 got_int = TRUE;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005606 return (status == RA_MATCH);
5607 }
5608
5609 } /* End of loop until the regstack is empty. */
5610
5611 /* NOTREACHED */
5612}
5613
5614/*
5615 * Push an item onto the regstack.
5616 * Returns pointer to new item. Returns NULL when out of memory.
5617 */
5618 static regitem_T *
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005619regstack_push(state, scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005620 regstate_T state;
5621 char_u *scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005622{
5623 regitem_T *rp;
5624
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005625 if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp)
Bram Moolenaare4efc3b2005-03-07 23:16:51 +00005626 {
5627 EMSG(_(e_maxmempat));
5628 return NULL;
5629 }
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005630 if (ga_grow(&regstack, sizeof(regitem_T)) == FAIL)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005631 return NULL;
5632
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005633 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005634 rp->rs_state = state;
5635 rp->rs_scan = scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005636
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005637 regstack.ga_len += sizeof(regitem_T);
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005638 return rp;
5639}
5640
5641/*
5642 * Pop an item from the regstack.
5643 */
5644 static void
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005645regstack_pop(scan)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005646 char_u **scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005647{
5648 regitem_T *rp;
5649
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005650 rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005651 *scan = rp->rs_scan;
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00005652
Bram Moolenaara7fc0102005-05-18 22:17:12 +00005653 regstack.ga_len -= sizeof(regitem_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654}
5655
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656/*
5657 * regrepeat - repeatedly match something simple, return how many.
5658 * Advances reginput (and reglnum) to just after the matched chars.
5659 */
5660 static int
5661regrepeat(p, maxcount)
5662 char_u *p;
5663 long maxcount; /* maximum number of matches allowed */
5664{
5665 long count = 0;
5666 char_u *scan;
5667 char_u *opnd;
5668 int mask;
5669 int testval = 0;
5670
5671 scan = reginput; /* Make local copy of reginput for speed. */
5672 opnd = OPERAND(p);
5673 switch (OP(p))
5674 {
5675 case ANY:
5676 case ANY + ADD_NL:
5677 while (count < maxcount)
5678 {
5679 /* Matching anything means we continue until end-of-line (or
5680 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5681 while (*scan != NUL && count < maxcount)
5682 {
5683 ++count;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005684 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 }
Bram Moolenaar640009d2006-10-17 16:48:26 +00005686 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5687 || reg_line_lbr || count == maxcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 break;
5689 ++count; /* count the line-break */
5690 reg_nextline();
5691 scan = reginput;
5692 if (got_int)
5693 break;
5694 }
5695 break;
5696
5697 case IDENT:
5698 case IDENT + ADD_NL:
5699 testval = TRUE;
5700 /*FALLTHROUGH*/
5701 case SIDENT:
5702 case SIDENT + ADD_NL:
5703 while (count < maxcount)
5704 {
5705 if (vim_isIDc(*scan) && (testval || !VIM_ISDIGIT(*scan)))
5706 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005707 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 }
5709 else if (*scan == NUL)
5710 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005711 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5712 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 break;
5714 reg_nextline();
5715 scan = reginput;
5716 if (got_int)
5717 break;
5718 }
5719 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5720 ++scan;
5721 else
5722 break;
5723 ++count;
5724 }
5725 break;
5726
5727 case KWORD:
5728 case KWORD + ADD_NL:
5729 testval = TRUE;
5730 /*FALLTHROUGH*/
5731 case SKWORD:
5732 case SKWORD + ADD_NL:
5733 while (count < maxcount)
5734 {
5735 if (vim_iswordp(scan) && (testval || !VIM_ISDIGIT(*scan)))
5736 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005737 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 }
5739 else if (*scan == NUL)
5740 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005741 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5742 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 break;
5744 reg_nextline();
5745 scan = reginput;
5746 if (got_int)
5747 break;
5748 }
5749 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5750 ++scan;
5751 else
5752 break;
5753 ++count;
5754 }
5755 break;
5756
5757 case FNAME:
5758 case FNAME + ADD_NL:
5759 testval = TRUE;
5760 /*FALLTHROUGH*/
5761 case SFNAME:
5762 case SFNAME + ADD_NL:
5763 while (count < maxcount)
5764 {
5765 if (vim_isfilec(*scan) && (testval || !VIM_ISDIGIT(*scan)))
5766 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005767 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005768 }
5769 else if (*scan == NUL)
5770 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005771 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5772 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 break;
5774 reg_nextline();
5775 scan = reginput;
5776 if (got_int)
5777 break;
5778 }
5779 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5780 ++scan;
5781 else
5782 break;
5783 ++count;
5784 }
5785 break;
5786
5787 case PRINT:
5788 case PRINT + ADD_NL:
5789 testval = TRUE;
5790 /*FALLTHROUGH*/
5791 case SPRINT:
5792 case SPRINT + ADD_NL:
5793 while (count < maxcount)
5794 {
5795 if (*scan == NUL)
5796 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005797 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5798 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 break;
5800 reg_nextline();
5801 scan = reginput;
5802 if (got_int)
5803 break;
5804 }
5805 else if (ptr2cells(scan) == 1 && (testval || !VIM_ISDIGIT(*scan)))
5806 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005807 mb_ptr_adv(scan);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 }
5809 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5810 ++scan;
5811 else
5812 break;
5813 ++count;
5814 }
5815 break;
5816
5817 case WHITE:
5818 case WHITE + ADD_NL:
5819 testval = mask = RI_WHITE;
5820do_class:
5821 while (count < maxcount)
5822 {
5823#ifdef FEAT_MBYTE
5824 int l;
5825#endif
5826 if (*scan == NUL)
5827 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005828 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5829 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 break;
5831 reg_nextline();
5832 scan = reginput;
5833 if (got_int)
5834 break;
5835 }
5836#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005837 else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838 {
5839 if (testval != 0)
5840 break;
5841 scan += l;
5842 }
5843#endif
5844 else if ((class_tab[*scan] & mask) == testval)
5845 ++scan;
5846 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
5847 ++scan;
5848 else
5849 break;
5850 ++count;
5851 }
5852 break;
5853
5854 case NWHITE:
5855 case NWHITE + ADD_NL:
5856 mask = RI_WHITE;
5857 goto do_class;
5858 case DIGIT:
5859 case DIGIT + ADD_NL:
5860 testval = mask = RI_DIGIT;
5861 goto do_class;
5862 case NDIGIT:
5863 case NDIGIT + ADD_NL:
5864 mask = RI_DIGIT;
5865 goto do_class;
5866 case HEX:
5867 case HEX + ADD_NL:
5868 testval = mask = RI_HEX;
5869 goto do_class;
5870 case NHEX:
5871 case NHEX + ADD_NL:
5872 mask = RI_HEX;
5873 goto do_class;
5874 case OCTAL:
5875 case OCTAL + ADD_NL:
5876 testval = mask = RI_OCTAL;
5877 goto do_class;
5878 case NOCTAL:
5879 case NOCTAL + ADD_NL:
5880 mask = RI_OCTAL;
5881 goto do_class;
5882 case WORD:
5883 case WORD + ADD_NL:
5884 testval = mask = RI_WORD;
5885 goto do_class;
5886 case NWORD:
5887 case NWORD + ADD_NL:
5888 mask = RI_WORD;
5889 goto do_class;
5890 case HEAD:
5891 case HEAD + ADD_NL:
5892 testval = mask = RI_HEAD;
5893 goto do_class;
5894 case NHEAD:
5895 case NHEAD + ADD_NL:
5896 mask = RI_HEAD;
5897 goto do_class;
5898 case ALPHA:
5899 case ALPHA + ADD_NL:
5900 testval = mask = RI_ALPHA;
5901 goto do_class;
5902 case NALPHA:
5903 case NALPHA + ADD_NL:
5904 mask = RI_ALPHA;
5905 goto do_class;
5906 case LOWER:
5907 case LOWER + ADD_NL:
5908 testval = mask = RI_LOWER;
5909 goto do_class;
5910 case NLOWER:
5911 case NLOWER + ADD_NL:
5912 mask = RI_LOWER;
5913 goto do_class;
5914 case UPPER:
5915 case UPPER + ADD_NL:
5916 testval = mask = RI_UPPER;
5917 goto do_class;
5918 case NUPPER:
5919 case NUPPER + ADD_NL:
5920 mask = RI_UPPER;
5921 goto do_class;
5922
5923 case EXACTLY:
5924 {
5925 int cu, cl;
5926
5927 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005928 * would have been used for it. It does handle single-byte
5929 * characters, such as latin1. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 if (ireg_ic)
5931 {
Bram Moolenaara245a5b2007-08-11 11:58:23 +00005932 cu = MB_TOUPPER(*opnd);
5933 cl = MB_TOLOWER(*opnd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 while (count < maxcount && (*scan == cu || *scan == cl))
5935 {
5936 count++;
5937 scan++;
5938 }
5939 }
5940 else
5941 {
5942 cu = *opnd;
5943 while (count < maxcount && *scan == cu)
5944 {
5945 count++;
5946 scan++;
5947 }
5948 }
5949 break;
5950 }
5951
5952#ifdef FEAT_MBYTE
5953 case MULTIBYTECODE:
5954 {
5955 int i, len, cf = 0;
5956
5957 /* Safety check (just in case 'encoding' was changed since
5958 * compiling the program). */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005959 if ((len = (*mb_ptr2len)(opnd)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960 {
5961 if (ireg_ic && enc_utf8)
5962 cf = utf_fold(utf_ptr2char(opnd));
5963 while (count < maxcount)
5964 {
5965 for (i = 0; i < len; ++i)
5966 if (opnd[i] != scan[i])
5967 break;
5968 if (i < len && (!ireg_ic || !enc_utf8
5969 || utf_fold(utf_ptr2char(scan)) != cf))
5970 break;
5971 scan += len;
5972 ++count;
5973 }
5974 }
5975 }
5976 break;
5977#endif
5978
5979 case ANYOF:
5980 case ANYOF + ADD_NL:
5981 testval = TRUE;
5982 /*FALLTHROUGH*/
5983
5984 case ANYBUT:
5985 case ANYBUT + ADD_NL:
5986 while (count < maxcount)
5987 {
5988#ifdef FEAT_MBYTE
5989 int len;
5990#endif
5991 if (*scan == NUL)
5992 {
Bram Moolenaar640009d2006-10-17 16:48:26 +00005993 if (!REG_MULTI || !WITH_NL(OP(p)) || reglnum > reg_maxline
5994 || reg_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 break;
5996 reg_nextline();
5997 scan = reginput;
5998 if (got_int)
5999 break;
6000 }
6001 else if (reg_line_lbr && *scan == '\n' && WITH_NL(OP(p)))
6002 ++scan;
6003#ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006004 else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005 {
6006 if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval)
6007 break;
6008 scan += len;
6009 }
6010#endif
6011 else
6012 {
6013 if ((cstrchr(opnd, *scan) == NULL) == testval)
6014 break;
6015 ++scan;
6016 }
6017 ++count;
6018 }
6019 break;
6020
6021 case NEWL:
6022 while (count < maxcount
Bram Moolenaar640009d2006-10-17 16:48:26 +00006023 && ((*scan == NUL && reglnum <= reg_maxline && !reg_line_lbr
6024 && REG_MULTI) || (*scan == '\n' && reg_line_lbr)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 {
6026 count++;
6027 if (reg_line_lbr)
6028 ADVANCE_REGINPUT();
6029 else
6030 reg_nextline();
6031 scan = reginput;
6032 if (got_int)
6033 break;
6034 }
6035 break;
6036
6037 default: /* Oh dear. Called inappropriately. */
6038 EMSG(_(e_re_corr));
6039#ifdef DEBUG
6040 printf("Called regrepeat with op code %d\n", OP(p));
6041#endif
6042 break;
6043 }
6044
6045 reginput = scan;
6046
6047 return (int)count;
6048}
6049
6050/*
6051 * regnext - dig the "next" pointer out of a node
Bram Moolenaard3005802009-11-25 17:21:32 +00006052 * Returns NULL when calculating size, when there is no next item and when
6053 * there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054 */
6055 static char_u *
6056regnext(p)
6057 char_u *p;
6058{
6059 int offset;
6060
Bram Moolenaard3005802009-11-25 17:21:32 +00006061 if (p == JUST_CALC_SIZE || reg_toolong)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 return NULL;
6063
6064 offset = NEXT(p);
6065 if (offset == 0)
6066 return NULL;
6067
Bram Moolenaar582fd852005-03-28 20:58:01 +00006068 if (OP(p) == BACK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069 return p - offset;
6070 else
6071 return p + offset;
6072}
6073
6074/*
6075 * Check the regexp program for its magic number.
6076 * Return TRUE if it's wrong.
6077 */
6078 static int
6079prog_magic_wrong()
6080{
6081 if (UCHARAT(REG_MULTI
6082 ? reg_mmatch->regprog->program
6083 : reg_match->regprog->program) != REGMAGIC)
6084 {
6085 EMSG(_(e_re_corr));
6086 return TRUE;
6087 }
6088 return FALSE;
6089}
6090
6091/*
6092 * Cleanup the subexpressions, if this wasn't done yet.
6093 * This construction is used to clear the subexpressions only when they are
6094 * used (to increase speed).
6095 */
6096 static void
6097cleanup_subexpr()
6098{
6099 if (need_clear_subexpr)
6100 {
6101 if (REG_MULTI)
6102 {
6103 /* Use 0xff to set lnum to -1 */
6104 vim_memset(reg_startpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6105 vim_memset(reg_endpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6106 }
6107 else
6108 {
6109 vim_memset(reg_startp, 0, sizeof(char_u *) * NSUBEXP);
6110 vim_memset(reg_endp, 0, sizeof(char_u *) * NSUBEXP);
6111 }
6112 need_clear_subexpr = FALSE;
6113 }
6114}
6115
6116#ifdef FEAT_SYN_HL
6117 static void
6118cleanup_zsubexpr()
6119{
6120 if (need_clear_zsubexpr)
6121 {
6122 if (REG_MULTI)
6123 {
6124 /* Use 0xff to set lnum to -1 */
6125 vim_memset(reg_startzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6126 vim_memset(reg_endzpos, 0xff, sizeof(lpos_T) * NSUBEXP);
6127 }
6128 else
6129 {
6130 vim_memset(reg_startzp, 0, sizeof(char_u *) * NSUBEXP);
6131 vim_memset(reg_endzp, 0, sizeof(char_u *) * NSUBEXP);
6132 }
6133 need_clear_zsubexpr = FALSE;
6134 }
6135}
6136#endif
6137
6138/*
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006139 * Save the current subexpr to "bp", so that they can be restored
6140 * later by restore_subexpr().
6141 */
6142 static void
6143save_subexpr(bp)
6144 regbehind_T *bp;
6145{
6146 int i;
6147
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006148 /* When "need_clear_subexpr" is set we don't need to save the values, only
6149 * remember that this flag needs to be set again when restoring. */
6150 bp->save_need_clear_subexpr = need_clear_subexpr;
6151 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006152 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006153 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006154 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006155 if (REG_MULTI)
6156 {
6157 bp->save_start[i].se_u.pos = reg_startpos[i];
6158 bp->save_end[i].se_u.pos = reg_endpos[i];
6159 }
6160 else
6161 {
6162 bp->save_start[i].se_u.ptr = reg_startp[i];
6163 bp->save_end[i].se_u.ptr = reg_endp[i];
6164 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006165 }
6166 }
6167}
6168
6169/*
6170 * Restore the subexpr from "bp".
6171 */
6172 static void
6173restore_subexpr(bp)
6174 regbehind_T *bp;
6175{
6176 int i;
6177
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006178 /* Only need to restore saved values when they are not to be cleared. */
6179 need_clear_subexpr = bp->save_need_clear_subexpr;
6180 if (!need_clear_subexpr)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006181 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006182 for (i = 0; i < NSUBEXP; ++i)
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006183 {
Bram Moolenaarfde483c2008-06-15 12:21:50 +00006184 if (REG_MULTI)
6185 {
6186 reg_startpos[i] = bp->save_start[i].se_u.pos;
6187 reg_endpos[i] = bp->save_end[i].se_u.pos;
6188 }
6189 else
6190 {
6191 reg_startp[i] = bp->save_start[i].se_u.ptr;
6192 reg_endp[i] = bp->save_end[i].se_u.ptr;
6193 }
Bram Moolenaar34cbfdf2008-04-09 10:16:02 +00006194 }
6195 }
6196}
6197
6198/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 * Advance reglnum, regline and reginput to the next line.
6200 */
6201 static void
6202reg_nextline()
6203{
6204 regline = reg_getline(++reglnum);
6205 reginput = regline;
6206 fast_breakcheck();
6207}
6208
6209/*
6210 * Save the input line and position in a regsave_T.
6211 */
6212 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006213reg_save(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006215 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216{
6217 if (REG_MULTI)
6218 {
6219 save->rs_u.pos.col = (colnr_T)(reginput - regline);
6220 save->rs_u.pos.lnum = reglnum;
6221 }
6222 else
6223 save->rs_u.ptr = reginput;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006224 save->rs_len = gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225}
6226
6227/*
6228 * Restore the input line and position from a regsave_T.
6229 */
6230 static void
Bram Moolenaar582fd852005-03-28 20:58:01 +00006231reg_restore(save, gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 regsave_T *save;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006233 garray_T *gap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006234{
6235 if (REG_MULTI)
6236 {
6237 if (reglnum != save->rs_u.pos.lnum)
6238 {
6239 /* only call reg_getline() when the line number changed to save
6240 * a bit of time */
6241 reglnum = save->rs_u.pos.lnum;
6242 regline = reg_getline(reglnum);
6243 }
6244 reginput = regline + save->rs_u.pos.col;
6245 }
6246 else
6247 reginput = save->rs_u.ptr;
Bram Moolenaar582fd852005-03-28 20:58:01 +00006248 gap->ga_len = save->rs_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249}
6250
6251/*
6252 * Return TRUE if current position is equal to saved position.
6253 */
6254 static int
6255reg_save_equal(save)
6256 regsave_T *save;
6257{
6258 if (REG_MULTI)
6259 return reglnum == save->rs_u.pos.lnum
6260 && reginput == regline + save->rs_u.pos.col;
6261 return reginput == save->rs_u.ptr;
6262}
6263
6264/*
6265 * Tentatively set the sub-expression start to the current position (after
6266 * calling regmatch() they will have changed). Need to save the existing
6267 * values for when there is no match.
6268 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
6269 * depending on REG_MULTI.
6270 */
6271 static void
6272save_se_multi(savep, posp)
6273 save_se_T *savep;
6274 lpos_T *posp;
6275{
6276 savep->se_u.pos = *posp;
6277 posp->lnum = reglnum;
6278 posp->col = (colnr_T)(reginput - regline);
6279}
6280
6281 static void
6282save_se_one(savep, pp)
6283 save_se_T *savep;
6284 char_u **pp;
6285{
6286 savep->se_u.ptr = *pp;
6287 *pp = reginput;
6288}
6289
6290/*
6291 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6292 */
6293 static int
6294re_num_cmp(val, scan)
6295 long_u val;
6296 char_u *scan;
6297{
6298 long_u n = OPERAND_MIN(scan);
6299
6300 if (OPERAND_CMP(scan) == '>')
6301 return val > n;
6302 if (OPERAND_CMP(scan) == '<')
6303 return val < n;
6304 return val == n;
6305}
6306
6307
6308#ifdef DEBUG
6309
6310/*
6311 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6312 */
6313 static void
6314regdump(pattern, r)
6315 char_u *pattern;
6316 regprog_T *r;
6317{
6318 char_u *s;
6319 int op = EXACTLY; /* Arbitrary non-END op. */
6320 char_u *next;
6321 char_u *end = NULL;
6322
6323 printf("\r\nregcomp(%s):\r\n", pattern);
6324
6325 s = r->program + 1;
6326 /*
6327 * Loop until we find the END that isn't before a referred next (an END
6328 * can also appear in a NOMATCH operand).
6329 */
6330 while (op != END || s <= end)
6331 {
6332 op = OP(s);
6333 printf("%2d%s", (int)(s - r->program), regprop(s)); /* Where, what. */
6334 next = regnext(s);
6335 if (next == NULL) /* Next ptr. */
6336 printf("(0)");
6337 else
6338 printf("(%d)", (int)((s - r->program) + (next - s)));
6339 if (end < next)
6340 end = next;
6341 if (op == BRACE_LIMITS)
6342 {
6343 /* Two short ints */
6344 printf(" minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s));
6345 s += 8;
6346 }
6347 s += 3;
6348 if (op == ANYOF || op == ANYOF + ADD_NL
6349 || op == ANYBUT || op == ANYBUT + ADD_NL
6350 || op == EXACTLY)
6351 {
6352 /* Literal string, where present. */
6353 while (*s != NUL)
6354 printf("%c", *s++);
6355 s++;
6356 }
6357 printf("\r\n");
6358 }
6359
6360 /* Header fields of interest. */
6361 if (r->regstart != NUL)
6362 printf("start `%s' 0x%x; ", r->regstart < 256
6363 ? (char *)transchar(r->regstart)
6364 : "multibyte", r->regstart);
6365 if (r->reganch)
6366 printf("anchored; ");
6367 if (r->regmust != NULL)
6368 printf("must have \"%s\"", r->regmust);
6369 printf("\r\n");
6370}
6371
6372/*
6373 * regprop - printable representation of opcode
6374 */
6375 static char_u *
6376regprop(op)
6377 char_u *op;
6378{
6379 char_u *p;
6380 static char_u buf[50];
6381
6382 (void) strcpy(buf, ":");
6383
6384 switch (OP(op))
6385 {
6386 case BOL:
6387 p = "BOL";
6388 break;
6389 case EOL:
6390 p = "EOL";
6391 break;
6392 case RE_BOF:
6393 p = "BOF";
6394 break;
6395 case RE_EOF:
6396 p = "EOF";
6397 break;
6398 case CURSOR:
6399 p = "CURSOR";
6400 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006401 case RE_VISUAL:
6402 p = "RE_VISUAL";
6403 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 case RE_LNUM:
6405 p = "RE_LNUM";
6406 break;
Bram Moolenaar71fe80d2006-01-22 23:25:56 +00006407 case RE_MARK:
6408 p = "RE_MARK";
6409 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 case RE_COL:
6411 p = "RE_COL";
6412 break;
6413 case RE_VCOL:
6414 p = "RE_VCOL";
6415 break;
6416 case BOW:
6417 p = "BOW";
6418 break;
6419 case EOW:
6420 p = "EOW";
6421 break;
6422 case ANY:
6423 p = "ANY";
6424 break;
6425 case ANY + ADD_NL:
6426 p = "ANY+NL";
6427 break;
6428 case ANYOF:
6429 p = "ANYOF";
6430 break;
6431 case ANYOF + ADD_NL:
6432 p = "ANYOF+NL";
6433 break;
6434 case ANYBUT:
6435 p = "ANYBUT";
6436 break;
6437 case ANYBUT + ADD_NL:
6438 p = "ANYBUT+NL";
6439 break;
6440 case IDENT:
6441 p = "IDENT";
6442 break;
6443 case IDENT + ADD_NL:
6444 p = "IDENT+NL";
6445 break;
6446 case SIDENT:
6447 p = "SIDENT";
6448 break;
6449 case SIDENT + ADD_NL:
6450 p = "SIDENT+NL";
6451 break;
6452 case KWORD:
6453 p = "KWORD";
6454 break;
6455 case KWORD + ADD_NL:
6456 p = "KWORD+NL";
6457 break;
6458 case SKWORD:
6459 p = "SKWORD";
6460 break;
6461 case SKWORD + ADD_NL:
6462 p = "SKWORD+NL";
6463 break;
6464 case FNAME:
6465 p = "FNAME";
6466 break;
6467 case FNAME + ADD_NL:
6468 p = "FNAME+NL";
6469 break;
6470 case SFNAME:
6471 p = "SFNAME";
6472 break;
6473 case SFNAME + ADD_NL:
6474 p = "SFNAME+NL";
6475 break;
6476 case PRINT:
6477 p = "PRINT";
6478 break;
6479 case PRINT + ADD_NL:
6480 p = "PRINT+NL";
6481 break;
6482 case SPRINT:
6483 p = "SPRINT";
6484 break;
6485 case SPRINT + ADD_NL:
6486 p = "SPRINT+NL";
6487 break;
6488 case WHITE:
6489 p = "WHITE";
6490 break;
6491 case WHITE + ADD_NL:
6492 p = "WHITE+NL";
6493 break;
6494 case NWHITE:
6495 p = "NWHITE";
6496 break;
6497 case NWHITE + ADD_NL:
6498 p = "NWHITE+NL";
6499 break;
6500 case DIGIT:
6501 p = "DIGIT";
6502 break;
6503 case DIGIT + ADD_NL:
6504 p = "DIGIT+NL";
6505 break;
6506 case NDIGIT:
6507 p = "NDIGIT";
6508 break;
6509 case NDIGIT + ADD_NL:
6510 p = "NDIGIT+NL";
6511 break;
6512 case HEX:
6513 p = "HEX";
6514 break;
6515 case HEX + ADD_NL:
6516 p = "HEX+NL";
6517 break;
6518 case NHEX:
6519 p = "NHEX";
6520 break;
6521 case NHEX + ADD_NL:
6522 p = "NHEX+NL";
6523 break;
6524 case OCTAL:
6525 p = "OCTAL";
6526 break;
6527 case OCTAL + ADD_NL:
6528 p = "OCTAL+NL";
6529 break;
6530 case NOCTAL:
6531 p = "NOCTAL";
6532 break;
6533 case NOCTAL + ADD_NL:
6534 p = "NOCTAL+NL";
6535 break;
6536 case WORD:
6537 p = "WORD";
6538 break;
6539 case WORD + ADD_NL:
6540 p = "WORD+NL";
6541 break;
6542 case NWORD:
6543 p = "NWORD";
6544 break;
6545 case NWORD + ADD_NL:
6546 p = "NWORD+NL";
6547 break;
6548 case HEAD:
6549 p = "HEAD";
6550 break;
6551 case HEAD + ADD_NL:
6552 p = "HEAD+NL";
6553 break;
6554 case NHEAD:
6555 p = "NHEAD";
6556 break;
6557 case NHEAD + ADD_NL:
6558 p = "NHEAD+NL";
6559 break;
6560 case ALPHA:
6561 p = "ALPHA";
6562 break;
6563 case ALPHA + ADD_NL:
6564 p = "ALPHA+NL";
6565 break;
6566 case NALPHA:
6567 p = "NALPHA";
6568 break;
6569 case NALPHA + ADD_NL:
6570 p = "NALPHA+NL";
6571 break;
6572 case LOWER:
6573 p = "LOWER";
6574 break;
6575 case LOWER + ADD_NL:
6576 p = "LOWER+NL";
6577 break;
6578 case NLOWER:
6579 p = "NLOWER";
6580 break;
6581 case NLOWER + ADD_NL:
6582 p = "NLOWER+NL";
6583 break;
6584 case UPPER:
6585 p = "UPPER";
6586 break;
6587 case UPPER + ADD_NL:
6588 p = "UPPER+NL";
6589 break;
6590 case NUPPER:
6591 p = "NUPPER";
6592 break;
6593 case NUPPER + ADD_NL:
6594 p = "NUPPER+NL";
6595 break;
6596 case BRANCH:
6597 p = "BRANCH";
6598 break;
6599 case EXACTLY:
6600 p = "EXACTLY";
6601 break;
6602 case NOTHING:
6603 p = "NOTHING";
6604 break;
6605 case BACK:
6606 p = "BACK";
6607 break;
6608 case END:
6609 p = "END";
6610 break;
6611 case MOPEN + 0:
6612 p = "MATCH START";
6613 break;
6614 case MOPEN + 1:
6615 case MOPEN + 2:
6616 case MOPEN + 3:
6617 case MOPEN + 4:
6618 case MOPEN + 5:
6619 case MOPEN + 6:
6620 case MOPEN + 7:
6621 case MOPEN + 8:
6622 case MOPEN + 9:
6623 sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN);
6624 p = NULL;
6625 break;
6626 case MCLOSE + 0:
6627 p = "MATCH END";
6628 break;
6629 case MCLOSE + 1:
6630 case MCLOSE + 2:
6631 case MCLOSE + 3:
6632 case MCLOSE + 4:
6633 case MCLOSE + 5:
6634 case MCLOSE + 6:
6635 case MCLOSE + 7:
6636 case MCLOSE + 8:
6637 case MCLOSE + 9:
6638 sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE);
6639 p = NULL;
6640 break;
6641 case BACKREF + 1:
6642 case BACKREF + 2:
6643 case BACKREF + 3:
6644 case BACKREF + 4:
6645 case BACKREF + 5:
6646 case BACKREF + 6:
6647 case BACKREF + 7:
6648 case BACKREF + 8:
6649 case BACKREF + 9:
6650 sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF);
6651 p = NULL;
6652 break;
6653 case NOPEN:
6654 p = "NOPEN";
6655 break;
6656 case NCLOSE:
6657 p = "NCLOSE";
6658 break;
6659#ifdef FEAT_SYN_HL
6660 case ZOPEN + 1:
6661 case ZOPEN + 2:
6662 case ZOPEN + 3:
6663 case ZOPEN + 4:
6664 case ZOPEN + 5:
6665 case ZOPEN + 6:
6666 case ZOPEN + 7:
6667 case ZOPEN + 8:
6668 case ZOPEN + 9:
6669 sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN);
6670 p = NULL;
6671 break;
6672 case ZCLOSE + 1:
6673 case ZCLOSE + 2:
6674 case ZCLOSE + 3:
6675 case ZCLOSE + 4:
6676 case ZCLOSE + 5:
6677 case ZCLOSE + 6:
6678 case ZCLOSE + 7:
6679 case ZCLOSE + 8:
6680 case ZCLOSE + 9:
6681 sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE);
6682 p = NULL;
6683 break;
6684 case ZREF + 1:
6685 case ZREF + 2:
6686 case ZREF + 3:
6687 case ZREF + 4:
6688 case ZREF + 5:
6689 case ZREF + 6:
6690 case ZREF + 7:
6691 case ZREF + 8:
6692 case ZREF + 9:
6693 sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF);
6694 p = NULL;
6695 break;
6696#endif
6697 case STAR:
6698 p = "STAR";
6699 break;
6700 case PLUS:
6701 p = "PLUS";
6702 break;
6703 case NOMATCH:
6704 p = "NOMATCH";
6705 break;
6706 case MATCH:
6707 p = "MATCH";
6708 break;
6709 case BEHIND:
6710 p = "BEHIND";
6711 break;
6712 case NOBEHIND:
6713 p = "NOBEHIND";
6714 break;
6715 case SUBPAT:
6716 p = "SUBPAT";
6717 break;
6718 case BRACE_LIMITS:
6719 p = "BRACE_LIMITS";
6720 break;
6721 case BRACE_SIMPLE:
6722 p = "BRACE_SIMPLE";
6723 break;
6724 case BRACE_COMPLEX + 0:
6725 case BRACE_COMPLEX + 1:
6726 case BRACE_COMPLEX + 2:
6727 case BRACE_COMPLEX + 3:
6728 case BRACE_COMPLEX + 4:
6729 case BRACE_COMPLEX + 5:
6730 case BRACE_COMPLEX + 6:
6731 case BRACE_COMPLEX + 7:
6732 case BRACE_COMPLEX + 8:
6733 case BRACE_COMPLEX + 9:
6734 sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX);
6735 p = NULL;
6736 break;
6737#ifdef FEAT_MBYTE
6738 case MULTIBYTECODE:
6739 p = "MULTIBYTECODE";
6740 break;
6741#endif
6742 case NEWL:
6743 p = "NEWL";
6744 break;
6745 default:
6746 sprintf(buf + STRLEN(buf), "corrupt %d", OP(op));
6747 p = NULL;
6748 break;
6749 }
6750 if (p != NULL)
6751 (void) strcat(buf, p);
6752 return buf;
6753}
6754#endif
6755
6756#ifdef FEAT_MBYTE
6757static void mb_decompose __ARGS((int c, int *c1, int *c2, int *c3));
6758
6759typedef struct
6760{
6761 int a, b, c;
6762} decomp_T;
6763
6764
6765/* 0xfb20 - 0xfb4f */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00006766static decomp_T decomp_table[0xfb4f-0xfb20+1] =
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767{
6768 {0x5e2,0,0}, /* 0xfb20 alt ayin */
6769 {0x5d0,0,0}, /* 0xfb21 alt alef */
6770 {0x5d3,0,0}, /* 0xfb22 alt dalet */
6771 {0x5d4,0,0}, /* 0xfb23 alt he */
6772 {0x5db,0,0}, /* 0xfb24 alt kaf */
6773 {0x5dc,0,0}, /* 0xfb25 alt lamed */
6774 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
6775 {0x5e8,0,0}, /* 0xfb27 alt resh */
6776 {0x5ea,0,0}, /* 0xfb28 alt tav */
6777 {'+', 0, 0}, /* 0xfb29 alt plus */
6778 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
6779 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
6780 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
6781 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
6782 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
6783 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
6784 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
6785 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
6786 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
6787 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
6788 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
6789 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
6790 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
6791 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
6792 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
6793 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
6794 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
6795 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
6796 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
6797 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
6798 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
6799 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
6800 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
6801 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
6802 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
6803 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
6804 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
6805 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
6806 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
6807 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
6808 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
6809 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
6810 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
6811 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
6812 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
6813 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
6814 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
6815 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
6816};
6817
6818 static void
6819mb_decompose(c, c1, c2, c3)
6820 int c, *c1, *c2, *c3;
6821{
6822 decomp_T d;
6823
6824 if (c >= 0x4b20 && c <= 0xfb4f)
6825 {
6826 d = decomp_table[c - 0xfb20];
6827 *c1 = d.a;
6828 *c2 = d.b;
6829 *c3 = d.c;
6830 }
6831 else
6832 {
6833 *c1 = c;
6834 *c2 = *c3 = 0;
6835 }
6836}
6837#endif
6838
6839/*
6840 * Compare two strings, ignore case if ireg_ic set.
6841 * Return 0 if strings match, non-zero otherwise.
6842 * Correct the length "*n" when composing characters are ignored.
6843 */
6844 static int
6845cstrncmp(s1, s2, n)
6846 char_u *s1, *s2;
6847 int *n;
6848{
6849 int result;
6850
6851 if (!ireg_ic)
6852 result = STRNCMP(s1, s2, *n);
6853 else
6854 result = MB_STRNICMP(s1, s2, *n);
6855
6856#ifdef FEAT_MBYTE
6857 /* if it failed and it's utf8 and we want to combineignore: */
6858 if (result != 0 && enc_utf8 && ireg_icombine)
6859 {
6860 char_u *str1, *str2;
6861 int c1, c2, c11, c12;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 int junk;
6863
6864 /* we have to handle the strcmp ourselves, since it is necessary to
6865 * deal with the composing characters by ignoring them: */
6866 str1 = s1;
6867 str2 = s2;
6868 c1 = c2 = 0;
Bram Moolenaarcafda4f2005-09-06 19:25:11 +00006869 while ((int)(str1 - s1) < *n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870 {
6871 c1 = mb_ptr2char_adv(&str1);
6872 c2 = mb_ptr2char_adv(&str2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873
6874 /* decompose the character if necessary, into 'base' characters
6875 * because I don't care about Arabic, I will hard-code the Hebrew
6876 * which I *do* care about! So sue me... */
6877 if (c1 != c2 && (!ireg_ic || utf_fold(c1) != utf_fold(c2)))
6878 {
6879 /* decomposition necessary? */
6880 mb_decompose(c1, &c11, &junk, &junk);
6881 mb_decompose(c2, &c12, &junk, &junk);
6882 c1 = c11;
6883 c2 = c12;
6884 if (c11 != c12 && (!ireg_ic || utf_fold(c11) != utf_fold(c12)))
6885 break;
6886 }
6887 }
6888 result = c2 - c1;
6889 if (result == 0)
6890 *n = (int)(str2 - s2);
6891 }
6892#endif
6893
6894 return result;
6895}
6896
6897/*
6898 * cstrchr: This function is used a lot for simple searches, keep it fast!
6899 */
6900 static char_u *
6901cstrchr(s, c)
6902 char_u *s;
6903 int c;
6904{
6905 char_u *p;
6906 int cc;
6907
6908 if (!ireg_ic
6909#ifdef FEAT_MBYTE
6910 || (!enc_utf8 && mb_char2len(c) > 1)
6911#endif
6912 )
6913 return vim_strchr(s, c);
6914
6915 /* tolower() and toupper() can be slow, comparing twice should be a lot
6916 * faster (esp. when using MS Visual C++!).
6917 * For UTF-8 need to use folded case. */
6918#ifdef FEAT_MBYTE
6919 if (enc_utf8 && c > 0x80)
6920 cc = utf_fold(c);
6921 else
6922#endif
Bram Moolenaara245a5b2007-08-11 11:58:23 +00006923 if (MB_ISUPPER(c))
6924 cc = MB_TOLOWER(c);
6925 else if (MB_ISLOWER(c))
6926 cc = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 else
6928 return vim_strchr(s, c);
6929
6930#ifdef FEAT_MBYTE
6931 if (has_mbyte)
6932 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006933 for (p = s; *p != NUL; p += (*mb_ptr2len)(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 {
6935 if (enc_utf8 && c > 0x80)
6936 {
6937 if (utf_fold(utf_ptr2char(p)) == cc)
6938 return p;
6939 }
6940 else if (*p == c || *p == cc)
6941 return p;
6942 }
6943 }
6944 else
6945#endif
6946 /* Faster version for when there are no multi-byte characters. */
6947 for (p = s; *p != NUL; ++p)
6948 if (*p == c || *p == cc)
6949 return p;
6950
6951 return NULL;
6952}
6953
6954/***************************************************************
6955 * regsub stuff *
6956 ***************************************************************/
6957
6958/* This stuff below really confuses cc on an SGI -- webb */
6959#ifdef __sgi
6960# undef __ARGS
6961# define __ARGS(x) ()
6962#endif
6963
6964/*
6965 * We should define ftpr as a pointer to a function returning a pointer to
6966 * a function returning a pointer to a function ...
6967 * This is impossible, so we declare a pointer to a function returning a
6968 * pointer to a function returning void. This should work for all compilers.
6969 */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006970typedef void (*(*fptr_T) __ARGS((int *, int)))();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006972static fptr_T do_upper __ARGS((int *, int));
6973static fptr_T do_Upper __ARGS((int *, int));
6974static fptr_T do_lower __ARGS((int *, int));
6975static fptr_T do_Lower __ARGS((int *, int));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976
6977static int vim_regsub_both __ARGS((char_u *source, char_u *dest, int copy, int magic, int backslash));
6978
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006979 static fptr_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980do_upper(d, c)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006981 int *d;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982 int c;
6983{
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006984 *d = MB_TOUPPER(c);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006985
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00006986 return (fptr_T)NULL;
6987}
6988
6989 static fptr_T
6990do_Upper(d, c)
6991 int *d;
6992 int c;
6993{
6994 *d = MB_TOUPPER(c);
6995
6996 return (fptr_T)do_Upper;
6997}
6998
6999 static fptr_T
7000do_lower(d, c)
7001 int *d;
7002 int c;
7003{
7004 *d = MB_TOLOWER(c);
7005
7006 return (fptr_T)NULL;
7007}
7008
7009 static fptr_T
7010do_Lower(d, c)
7011 int *d;
7012 int c;
7013{
7014 *d = MB_TOLOWER(c);
7015
7016 return (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017}
7018
7019/*
7020 * regtilde(): Replace tildes in the pattern by the old pattern.
7021 *
7022 * Short explanation of the tilde: It stands for the previous replacement
7023 * pattern. If that previous pattern also contains a ~ we should go back a
7024 * step further... But we insert the previous pattern into the current one
7025 * and remember that.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007026 * This still does not handle the case where "magic" changes. So require the
7027 * user to keep his hands off of "magic".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 *
7029 * The tildes are parsed once before the first call to vim_regsub().
7030 */
7031 char_u *
7032regtilde(source, magic)
7033 char_u *source;
7034 int magic;
7035{
7036 char_u *newsub = source;
7037 char_u *tmpsub;
7038 char_u *p;
7039 int len;
7040 int prevlen;
7041
7042 for (p = newsub; *p; ++p)
7043 {
7044 if ((*p == '~' && magic) || (*p == '\\' && *(p + 1) == '~' && !magic))
7045 {
7046 if (reg_prev_sub != NULL)
7047 {
7048 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
7049 prevlen = (int)STRLEN(reg_prev_sub);
7050 tmpsub = alloc((unsigned)(STRLEN(newsub) + prevlen));
7051 if (tmpsub != NULL)
7052 {
7053 /* copy prefix */
7054 len = (int)(p - newsub); /* not including ~ */
7055 mch_memmove(tmpsub, newsub, (size_t)len);
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007056 /* interpret tilde */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 mch_memmove(tmpsub + len, reg_prev_sub, (size_t)prevlen);
7058 /* copy postfix */
7059 if (!magic)
7060 ++p; /* back off \ */
7061 STRCPY(tmpsub + len + prevlen, p + 1);
7062
7063 if (newsub != source) /* already allocated newsub */
7064 vim_free(newsub);
7065 newsub = tmpsub;
7066 p = newsub + len + prevlen;
7067 }
7068 }
7069 else if (magic)
Bram Moolenaar446cb832008-06-24 21:56:24 +00007070 STRMOVE(p, p + 1); /* remove '~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071 else
Bram Moolenaar446cb832008-06-24 21:56:24 +00007072 STRMOVE(p, p + 2); /* remove '\~' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073 --p;
7074 }
7075 else
7076 {
7077 if (*p == '\\' && p[1]) /* skip escaped characters */
7078 ++p;
7079#ifdef FEAT_MBYTE
7080 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007081 p += (*mb_ptr2len)(p) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082#endif
7083 }
7084 }
7085
7086 vim_free(reg_prev_sub);
7087 if (newsub != source) /* newsub was allocated, just keep it */
7088 reg_prev_sub = newsub;
7089 else /* no ~ found, need to save newsub */
7090 reg_prev_sub = vim_strsave(newsub);
7091 return newsub;
7092}
7093
7094#ifdef FEAT_EVAL
7095static int can_f_submatch = FALSE; /* TRUE when submatch() can be used */
7096
7097/* These pointers are used instead of reg_match and reg_mmatch for
7098 * reg_submatch(). Needed for when the substitution string is an expression
7099 * that contains a call to substitute() and submatch(). */
7100static regmatch_T *submatch_match;
7101static regmmatch_T *submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007102static linenr_T submatch_firstlnum;
7103static linenr_T submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007104static int submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105#endif
7106
7107#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
7108/*
7109 * vim_regsub() - perform substitutions after a vim_regexec() or
7110 * vim_regexec_multi() match.
7111 *
7112 * If "copy" is TRUE really copy into "dest".
7113 * If "copy" is FALSE nothing is copied, this is just to find out the length
7114 * of the result.
7115 *
7116 * If "backslash" is TRUE, a backslash will be removed later, need to double
7117 * them to keep them, and insert a backslash before a CR to avoid it being
7118 * replaced with a line break later.
7119 *
7120 * Note: The matched text must not change between the call of
7121 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
7122 * references invalid!
7123 *
7124 * Returns the size of the replacement, including terminating NUL.
7125 */
7126 int
7127vim_regsub(rmp, source, dest, copy, magic, backslash)
7128 regmatch_T *rmp;
7129 char_u *source;
7130 char_u *dest;
7131 int copy;
7132 int magic;
7133 int backslash;
7134{
7135 reg_match = rmp;
7136 reg_mmatch = NULL;
7137 reg_maxline = 0;
7138 return vim_regsub_both(source, dest, copy, magic, backslash);
7139}
7140#endif
7141
7142 int
7143vim_regsub_multi(rmp, lnum, source, dest, copy, magic, backslash)
7144 regmmatch_T *rmp;
7145 linenr_T lnum;
7146 char_u *source;
7147 char_u *dest;
7148 int copy;
7149 int magic;
7150 int backslash;
7151{
7152 reg_match = NULL;
7153 reg_mmatch = rmp;
7154 reg_buf = curbuf; /* always works on the current buffer! */
7155 reg_firstlnum = lnum;
7156 reg_maxline = curbuf->b_ml.ml_line_count - lnum;
7157 return vim_regsub_both(source, dest, copy, magic, backslash);
7158}
7159
7160 static int
7161vim_regsub_both(source, dest, copy, magic, backslash)
7162 char_u *source;
7163 char_u *dest;
7164 int copy;
7165 int magic;
7166 int backslash;
7167{
7168 char_u *src;
7169 char_u *dst;
7170 char_u *s;
7171 int c;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007172 int cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173 int no = -1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007174 fptr_T func = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 linenr_T clnum = 0; /* init for GCC */
7176 int len = 0; /* init for GCC */
7177#ifdef FEAT_EVAL
7178 static char_u *eval_result = NULL;
7179#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007180
7181 /* Be paranoid... */
7182 if (source == NULL || dest == NULL)
7183 {
7184 EMSG(_(e_null));
7185 return 0;
7186 }
7187 if (prog_magic_wrong())
7188 return 0;
7189 src = source;
7190 dst = dest;
7191
7192 /*
7193 * When the substitute part starts with "\=" evaluate it as an expression.
7194 */
7195 if (source[0] == '\\' && source[1] == '='
7196#ifdef FEAT_EVAL
7197 && !can_f_submatch /* can't do this recursively */
7198#endif
7199 )
7200 {
7201#ifdef FEAT_EVAL
7202 /* To make sure that the length doesn't change between checking the
7203 * length and copying the string, and to speed up things, the
7204 * resulting string is saved from the call with "copy" == FALSE to the
7205 * call with "copy" == TRUE. */
7206 if (copy)
7207 {
7208 if (eval_result != NULL)
7209 {
7210 STRCPY(dest, eval_result);
7211 dst += STRLEN(eval_result);
7212 vim_free(eval_result);
7213 eval_result = NULL;
7214 }
7215 }
7216 else
7217 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218 win_T *save_reg_win;
7219 int save_ireg_ic;
7220
7221 vim_free(eval_result);
7222
7223 /* The expression may contain substitute(), which calls us
7224 * recursively. Make sure submatch() gets the text from the first
7225 * level. Don't need to save "reg_buf", because
7226 * vim_regexec_multi() can't be called recursively. */
7227 submatch_match = reg_match;
7228 submatch_mmatch = reg_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007229 submatch_firstlnum = reg_firstlnum;
7230 submatch_maxline = reg_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007231 submatch_line_lbr = reg_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232 save_reg_win = reg_win;
7233 save_ireg_ic = ireg_ic;
7234 can_f_submatch = TRUE;
7235
Bram Moolenaar362e1a32006-03-06 23:29:24 +00007236 eval_result = eval_to_string(source + 2, NULL, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 if (eval_result != NULL)
7238 {
Bram Moolenaar06975a42010-03-23 16:27:22 +01007239 int had_backslash = FALSE;
7240
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00007241 for (s = eval_result; *s != NUL; mb_ptr_adv(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242 {
Bram Moolenaar978287b2011-06-19 04:32:15 +02007243 /* Change NL to CR, so that it becomes a line break,
7244 * unless called from vim_regexec_nl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245 * Skip over a backslashed character. */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007246 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247 *s = CAR;
7248 else if (*s == '\\' && s[1] != NUL)
Bram Moolenaar06975a42010-03-23 16:27:22 +01007249 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 ++s;
Bram Moolenaar60190782010-05-21 13:08:58 +02007251 /* Change NL to CR here too, so that this works:
7252 * :s/abc\\\ndef/\="aaa\\\nbbb"/ on text:
7253 * abc\
7254 * def
Bram Moolenaar978287b2011-06-19 04:32:15 +02007255 * Not when called from vim_regexec_nl().
Bram Moolenaar60190782010-05-21 13:08:58 +02007256 */
Bram Moolenaar978287b2011-06-19 04:32:15 +02007257 if (*s == NL && !submatch_line_lbr)
Bram Moolenaar60190782010-05-21 13:08:58 +02007258 *s = CAR;
Bram Moolenaar06975a42010-03-23 16:27:22 +01007259 had_backslash = TRUE;
7260 }
7261 }
7262 if (had_backslash && backslash)
7263 {
7264 /* Backslashes will be consumed, need to double them. */
7265 s = vim_strsave_escaped(eval_result, (char_u *)"\\");
7266 if (s != NULL)
7267 {
7268 vim_free(eval_result);
7269 eval_result = s;
7270 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271 }
7272
7273 dst += STRLEN(eval_result);
7274 }
7275
7276 reg_match = submatch_match;
7277 reg_mmatch = submatch_mmatch;
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007278 reg_firstlnum = submatch_firstlnum;
7279 reg_maxline = submatch_maxline;
Bram Moolenaar978287b2011-06-19 04:32:15 +02007280 reg_line_lbr = submatch_line_lbr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281 reg_win = save_reg_win;
7282 ireg_ic = save_ireg_ic;
7283 can_f_submatch = FALSE;
7284 }
7285#endif
7286 }
7287 else
7288 while ((c = *src++) != NUL)
7289 {
7290 if (c == '&' && magic)
7291 no = 0;
7292 else if (c == '\\' && *src != NUL)
7293 {
7294 if (*src == '&' && !magic)
7295 {
7296 ++src;
7297 no = 0;
7298 }
7299 else if ('0' <= *src && *src <= '9')
7300 {
7301 no = *src++ - '0';
7302 }
7303 else if (vim_strchr((char_u *)"uUlLeE", *src))
7304 {
7305 switch (*src++)
7306 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007307 case 'u': func = (fptr_T)do_upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007308 continue;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007309 case 'U': func = (fptr_T)do_Upper;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310 continue;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007311 case 'l': func = (fptr_T)do_lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312 continue;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007313 case 'L': func = (fptr_T)do_Lower;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 continue;
7315 case 'e':
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007316 case 'E': func = (fptr_T)NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007317 continue;
7318 }
7319 }
7320 }
7321 if (no < 0) /* Ordinary character. */
7322 {
Bram Moolenaardb552d602006-03-23 22:59:57 +00007323 if (c == K_SPECIAL && src[0] != NUL && src[1] != NUL)
7324 {
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007325 /* Copy a special key as-is. */
Bram Moolenaardb552d602006-03-23 22:59:57 +00007326 if (copy)
7327 {
7328 *dst++ = c;
7329 *dst++ = *src++;
7330 *dst++ = *src++;
7331 }
7332 else
7333 {
7334 dst += 3;
7335 src += 2;
7336 }
7337 continue;
7338 }
7339
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 if (c == '\\' && *src != NUL)
7341 {
7342 /* Check for abbreviations -- webb */
7343 switch (*src)
7344 {
7345 case 'r': c = CAR; ++src; break;
7346 case 'n': c = NL; ++src; break;
7347 case 't': c = TAB; ++src; break;
7348 /* Oh no! \e already has meaning in subst pat :-( */
7349 /* case 'e': c = ESC; ++src; break; */
7350 case 'b': c = Ctrl_H; ++src; break;
7351
7352 /* If "backslash" is TRUE the backslash will be removed
7353 * later. Used to insert a literal CR. */
7354 default: if (backslash)
7355 {
7356 if (copy)
7357 *dst = '\\';
7358 ++dst;
7359 }
7360 c = *src++;
7361 }
7362 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363#ifdef FEAT_MBYTE
Bram Moolenaardb552d602006-03-23 22:59:57 +00007364 else if (has_mbyte)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007365 c = mb_ptr2char(src - 1);
7366#endif
7367
Bram Moolenaardb552d602006-03-23 22:59:57 +00007368 /* Write to buffer, if copy is set. */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007369 if (func == (fptr_T)NULL) /* just copy */
7370 cc = c;
7371 else
7372 /* Turbo C complains without the typecast */
7373 func = (fptr_T)(func(&cc, c));
7374
7375#ifdef FEAT_MBYTE
7376 if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377 {
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007378 int totlen = mb_ptr2len(src - 1);
7379
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007381 mb_char2bytes(cc, dst);
7382 dst += mb_char2len(cc) - 1;
Bram Moolenaar0c56c602010-07-12 22:42:33 +02007383 if (enc_utf8)
7384 {
7385 int clen = utf_ptr2len(src - 1);
7386
7387 /* If the character length is shorter than "totlen", there
7388 * are composing characters; copy them as-is. */
7389 if (clen < totlen)
7390 {
7391 if (copy)
7392 mch_memmove(dst + 1, src - 1 + clen,
7393 (size_t)(totlen - clen));
7394 dst += totlen - clen;
7395 }
7396 }
7397 src += totlen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007398 }
7399 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400#endif
7401 if (copy)
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007402 *dst = cc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 dst++;
7404 }
7405 else
7406 {
7407 if (REG_MULTI)
7408 {
7409 clnum = reg_mmatch->startpos[no].lnum;
7410 if (clnum < 0 || reg_mmatch->endpos[no].lnum < 0)
7411 s = NULL;
7412 else
7413 {
7414 s = reg_getline(clnum) + reg_mmatch->startpos[no].col;
7415 if (reg_mmatch->endpos[no].lnum == clnum)
7416 len = reg_mmatch->endpos[no].col
7417 - reg_mmatch->startpos[no].col;
7418 else
7419 len = (int)STRLEN(s);
7420 }
7421 }
7422 else
7423 {
7424 s = reg_match->startp[no];
7425 if (reg_match->endp[no] == NULL)
7426 s = NULL;
7427 else
7428 len = (int)(reg_match->endp[no] - s);
7429 }
7430 if (s != NULL)
7431 {
7432 for (;;)
7433 {
7434 if (len == 0)
7435 {
7436 if (REG_MULTI)
7437 {
7438 if (reg_mmatch->endpos[no].lnum == clnum)
7439 break;
7440 if (copy)
7441 *dst = CAR;
7442 ++dst;
7443 s = reg_getline(++clnum);
7444 if (reg_mmatch->endpos[no].lnum == clnum)
7445 len = reg_mmatch->endpos[no].col;
7446 else
7447 len = (int)STRLEN(s);
7448 }
7449 else
7450 break;
7451 }
7452 else if (*s == NUL) /* we hit NUL. */
7453 {
7454 if (copy)
7455 EMSG(_(e_re_damg));
7456 goto exit;
7457 }
7458 else
7459 {
7460 if (backslash && (*s == CAR || *s == '\\'))
7461 {
7462 /*
7463 * Insert a backslash in front of a CR, otherwise
7464 * it will be replaced by a line break.
7465 * Number of backslashes will be halved later,
7466 * double them here.
7467 */
7468 if (copy)
7469 {
7470 dst[0] = '\\';
7471 dst[1] = *s;
7472 }
7473 dst += 2;
7474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475 else
7476 {
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007477#ifdef FEAT_MBYTE
7478 if (has_mbyte)
7479 c = mb_ptr2char(s);
7480 else
7481#endif
7482 c = *s;
7483
7484 if (func == (fptr_T)NULL) /* just copy */
7485 cc = c;
7486 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007487 /* Turbo C complains without the typecast */
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007488 func = (fptr_T)(func(&cc, c));
7489
7490#ifdef FEAT_MBYTE
7491 if (has_mbyte)
7492 {
Bram Moolenaar9225efb2007-07-30 20:32:53 +00007493 int l;
7494
7495 /* Copy composing characters separately, one
7496 * at a time. */
7497 if (enc_utf8)
7498 l = utf_ptr2len(s) - 1;
7499 else
7500 l = mb_ptr2len(s) - 1;
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007501
7502 s += l;
7503 len -= l;
7504 if (copy)
7505 mb_char2bytes(cc, dst);
7506 dst += mb_char2len(cc) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007507 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007508 else
7509#endif
7510 if (copy)
7511 *dst = cc;
7512 dst++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513 }
Bram Moolenaarefd2bf12006-03-16 21:41:35 +00007514
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515 ++s;
7516 --len;
7517 }
7518 }
7519 }
7520 no = -1;
7521 }
7522 }
7523 if (copy)
7524 *dst = NUL;
7525
7526exit:
7527 return (int)((dst - dest) + 1);
7528}
7529
7530#ifdef FEAT_EVAL
Bram Moolenaard32a3192009-11-26 19:40:49 +00007531static char_u *reg_getline_submatch __ARGS((linenr_T lnum));
7532
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533/*
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007534 * Call reg_getline() with the line numbers from the submatch. If a
7535 * substitute() was used the reg_maxline and other values have been
7536 * overwritten.
7537 */
7538 static char_u *
7539reg_getline_submatch(lnum)
7540 linenr_T lnum;
7541{
7542 char_u *s;
7543 linenr_T save_first = reg_firstlnum;
7544 linenr_T save_max = reg_maxline;
7545
7546 reg_firstlnum = submatch_firstlnum;
7547 reg_maxline = submatch_maxline;
7548
7549 s = reg_getline(lnum);
7550
7551 reg_firstlnum = save_first;
7552 reg_maxline = save_max;
7553 return s;
7554}
7555
7556/*
Bram Moolenaar7aa9f6a2007-05-10 18:00:30 +00007557 * Used for the submatch() function: get the string from the n'th submatch in
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558 * allocated memory.
7559 * Returns NULL when not in a ":s" command and for a non-existing submatch.
7560 */
7561 char_u *
7562reg_submatch(no)
7563 int no;
7564{
7565 char_u *retval = NULL;
7566 char_u *s;
7567 int len;
7568 int round;
7569 linenr_T lnum;
7570
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007571 if (!can_f_submatch || no < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007572 return NULL;
7573
7574 if (submatch_match == NULL)
7575 {
7576 /*
7577 * First round: compute the length and allocate memory.
7578 * Second round: copy the text.
7579 */
7580 for (round = 1; round <= 2; ++round)
7581 {
7582 lnum = submatch_mmatch->startpos[no].lnum;
7583 if (lnum < 0 || submatch_mmatch->endpos[no].lnum < 0)
7584 return NULL;
7585
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007586 s = reg_getline_submatch(lnum) + submatch_mmatch->startpos[no].col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007587 if (s == NULL) /* anti-crash check, cannot happen? */
7588 break;
7589 if (submatch_mmatch->endpos[no].lnum == lnum)
7590 {
7591 /* Within one line: take form start to end col. */
7592 len = submatch_mmatch->endpos[no].col
7593 - submatch_mmatch->startpos[no].col;
7594 if (round == 2)
Bram Moolenaarbbebc852005-07-18 21:47:53 +00007595 vim_strncpy(retval, s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007596 ++len;
7597 }
7598 else
7599 {
7600 /* Multiple lines: take start line from start col, middle
7601 * lines completely and end line up to end col. */
7602 len = (int)STRLEN(s);
7603 if (round == 2)
7604 {
7605 STRCPY(retval, s);
7606 retval[len] = '\n';
7607 }
7608 ++len;
7609 ++lnum;
7610 while (lnum < submatch_mmatch->endpos[no].lnum)
7611 {
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007612 s = reg_getline_submatch(lnum++);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613 if (round == 2)
7614 STRCPY(retval + len, s);
7615 len += (int)STRLEN(s);
7616 if (round == 2)
7617 retval[len] = '\n';
7618 ++len;
7619 }
7620 if (round == 2)
Bram Moolenaar5ea08a82009-11-25 18:51:24 +00007621 STRNCPY(retval + len, reg_getline_submatch(lnum),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622 submatch_mmatch->endpos[no].col);
7623 len += submatch_mmatch->endpos[no].col;
7624 if (round == 2)
7625 retval[len] = NUL;
7626 ++len;
7627 }
7628
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007629 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 {
7631 retval = lalloc((long_u)len, TRUE);
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007632 if (retval == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007633 return NULL;
7634 }
7635 }
7636 }
7637 else
7638 {
Bram Moolenaar7670fa02009-02-21 21:04:20 +00007639 s = submatch_match->startp[no];
7640 if (s == NULL || submatch_match->endp[no] == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 retval = NULL;
7642 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643 retval = vim_strnsave(s, (int)(submatch_match->endp[no] - s));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007644 }
7645
7646 return retval;
7647}
7648#endif