1 /* vi:set ts=8 sts=4 sw=4:
3 * Handling of regular expressions: vim_regcomp(), vim_regexec(), vim_regsub()
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.
15 * Copyright (c) 1986 by University of Toronto.
16 * Written by Henry Spencer. Not derived from licensed software.
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:
22 * 1. The author is not responsible for the consequences of use of
23 * this software, no matter how awful, even if they arise
26 * 2. The origin of this software must not be misrepresented, either
27 * by explicit claim or by omission.
29 * 3. Altered versions must be plainly marked as such, and must not
30 * be misrepresented as being the original software.
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.
36 * Changes have been made by Tony Andrews, Olaf 'Rhialto' Seibert, Robert
37 * Webb, Ciaran McCreesh and Bram Moolenaar.
38 * Named character class support added by Walter Briscoe (1998 Jul 01)
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:
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
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.
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
77 * 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.)
84 * pattern is coded like:
88 * <aa>\|<bb> BRANCH <aa> BRANCH <bb> --> END
90 * +------+ +----------+
93 * +------------------+
95 * <aa>* BRANCH BRANCH <aa> --> BACK BRANCH --> NOTHING --> END
97 * | +---------------+ |
98 * +---------------------------------------------+
101 * +----------------------+
103 * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END
106 * +--------------------------------------------------+
109 * +-------------------------+
111 * <aa>\{} BRANCH BRACE_LIMITS --> BRACE_COMPLEX <aa> --> BACK END
113 * | +----------------+
114 * +-----------------------------------------------+
117 * <aa>\@!<bb> BRANCH NOMATCH <aa> --> END <bb> --> END
119 * | +----------------+ |
120 * +--------------------------------+
124 * \z[abc] BRANCH BRANCH a BRANCH b BRANCH c BRANCH NOTHING --> END
127 * | | +----------------+ |
128 * | +---------------------------+ |
129 * +------------------------------------------------------+
131 * They all start with a BRANCH for "\|" alternatives, even when there is only
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
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
150 #define PLUS 8 /* node Match this (simple) thing 1 or more
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 */
167 /* character classes: 20-48 normal, 50-78 include a line-break */
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
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)
203 #define MOPEN 80 /* -89 Mark this point in input as start of
204 * \( subexpr. MOPEN + 0 marks start of
206 #define MCLOSE 90 /* -99 Analogous to MOPEN. MCLOSE + 0 marks
208 #define BACKREF 100 /* -109 node Match same string again \1-\9 */
211 # define ZOPEN 110 /* -119 Mark this point in input as start of
213 # define ZCLOSE 120 /* -129 Analogous to ZOPEN. */
214 # define ZREF 130 /* -139 node Match external submatch \z1-\z9 */
217 #define BRACE_COMPLEX 140 /* -149 node Match nodes between m & n times */
219 #define NOPEN 150 /* Mark this point in input as start of
221 #define NCLOSE 151 /* Analogous to NOPEN. */
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. */
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 */
232 #define RE_MARK 207 /* mark cmp Match mark position */
233 #define RE_VISUAL 208 /* Match Visual area */
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.
240 #define Magic(x) ((int)(x) - 256)
241 #define un_Magic(x) ((x) + 256)
242 #define is_Magic(x) ((x) < 0)
244 static int no_Magic
__ARGS((int x
));
245 static int toggle_Magic
__ARGS((int x
));
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.
271 #define REGMAGIC 0234
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.
284 * BACK Normal "next" pointers all implicitly point forward; BACK
285 * exists to make loop structures possible.
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.
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
296 * MOPEN,MCLOSE ...are numbered at compile time.
297 * ZOPEN,ZCLOSE ...ditto
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.)
307 * Using two bytes for the "next" pointer is vast overkill for most things,
308 * but allows patterns to get big without disasters.
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]
322 * Utility definitions.
324 #define UCHARAT(p) ((int)*(char_u *)(p))
326 /* Used for an error (down from) vim_regcomp(): give the error message, set
327 * rc_did_emsg and return NULL */
328 #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)
330 #define EMSG_RET_FAIL(m) return (EMSG(m), rc_did_emsg = TRUE, FAIL)
331 #define EMSG_ONE_RET_NULL EMSG_M_RET_NULL(_("E369: invalid item in %s%%[]"), reg_magic == MAGIC_ALL)
333 #define MAX_LIMIT (32767L << 16L)
335 static int re_multi_type
__ARGS((int));
336 static int cstrncmp
__ARGS((char_u
*s1
, char_u
*s2
, int *n
));
337 static char_u
*cstrchr
__ARGS((char_u
*, int));
340 static void regdump
__ARGS((char_u
*, regprog_T
*));
341 static char_u
*regprop
__ARGS((char_u
*));
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.
356 if (c
== Magic('@') || c
== Magic('=') || c
== Magic('?'))
358 if (c
== Magic('*') || c
== Magic('+') || c
== Magic('{'))
364 * Flags to be passed up and down.
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. */
374 * When regcode is set to this value, code is not emitted and size is computed
377 #define JUST_CALC_SIZE ((char_u *) -1)
379 static char_u
*reg_prev_sub
= NULL
;
382 * REGEXP_INRANGE contains all characters which are always special in a []
384 * REGEXP_ABBR contains all characters which act as abbreviations after '\'.
386 * \n - New line (NL).
387 * \r - Carriage Return (CR).
390 * \b - Backspace (Ctrl_H).
391 * \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
397 static char_u REGEXP_INRANGE
[] = "]^-n\\";
398 static char_u REGEXP_ABBR
[] = "nrtebdoxuU";
400 static int backslash_trans
__ARGS((int c
));
401 static int get_char_class
__ARGS((char_u
**pp
));
402 static int get_equi_class
__ARGS((char_u
**pp
));
403 static void reg_equi_class
__ARGS((int c
));
404 static int get_coll_element
__ARGS((char_u
**pp
));
405 static char_u
*skip_anyof
__ARGS((char_u
*p
));
406 static void init_class_tab
__ARGS((void));
409 * Translate '\x' to its control character, except "\n", which is Magic.
417 case 'r': return CAR
;
418 case 't': return TAB
;
419 case 'e': return ESC
;
426 * Check for a character class name "[:name:]". "pp" points to the '['.
427 * Returns one of the CLASS_ items. CLASS_NONE means that no item was
428 * recognized. Otherwise "pp" is advanced to after the item.
434 static const char *(class_names
[]) =
437 #define CLASS_ALNUM 0
439 #define CLASS_ALPHA 1
441 #define CLASS_BLANK 2
443 #define CLASS_CNTRL 3
445 #define CLASS_DIGIT 4
447 #define CLASS_GRAPH 5
449 #define CLASS_LOWER 6
451 #define CLASS_PRINT 7
453 #define CLASS_PUNCT 8
455 #define CLASS_SPACE 9
457 #define CLASS_UPPER 10
459 #define CLASS_XDIGIT 11
463 #define CLASS_RETURN 13
465 #define CLASS_BACKSPACE 14
467 #define CLASS_ESCAPE 15
469 #define CLASS_NONE 99
474 for (i
= 0; i
< (int)(sizeof(class_names
) / sizeof(*class_names
)); ++i
)
475 if (STRNCMP(*pp
+ 2, class_names
[i
], STRLEN(class_names
[i
])) == 0)
477 *pp
+= STRLEN(class_names
[i
]) + 2;
485 * Specific version of character class functions.
486 * Using a table to keep this fast.
488 static short class_tab
[256];
490 #define RI_DIGIT 0x01
492 #define RI_OCTAL 0x04
495 #define RI_ALPHA 0x20
496 #define RI_LOWER 0x40
497 #define RI_UPPER 0x80
498 #define RI_WHITE 0x100
504 static int done
= FALSE
;
509 for (i
= 0; i
< 256; ++i
)
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
;
518 else if ((i
>= 'g' && i
<= 'i') || (i
>= 'j' && i
<= 'r')
519 || (i
>= 's' && i
<= 'z'))
521 else if (i
>= 'g' && i
<= 'z')
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
;
527 else if ((i
>= 'G' && i
<= 'I') || ( i
>= 'J' && i
<= 'R')
528 || (i
>= 'S' && i
<= 'Z'))
530 else if (i
>= 'G' && i
<= 'Z')
532 class_tab
[i
] = RI_WORD
+ RI_HEAD
+ RI_ALPHA
+ RI_UPPER
;
534 class_tab
[i
] = RI_WORD
+ RI_HEAD
;
538 class_tab
[' '] |= RI_WHITE
;
539 class_tab
['\t'] |= RI_WHITE
;
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))
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)
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 "\@<!" */
573 * Global work variables for vim_regcomp().
576 static char_u
*regparse
; /* Input-scan pointer. */
577 static int prevchr_len
; /* byte length of previous char */
578 static int num_complex_braces
; /* Complex \{...} count */
579 static int regnpar
; /* () count. */
581 static int regnzpar
; /* \z() count. */
582 static int re_has_z
; /* \z item detected */
584 static char_u
*regcode
; /* Code-emit pointer, or JUST_CALC_SIZE */
585 static long regsize
; /* Code size. */
586 static int reg_toolong
; /* TRUE when offset out of range */
587 static char_u had_endbrace
[NSUBEXP
]; /* flags, TRUE if end of () found */
588 static unsigned regflags
; /* RF_ flags for prog */
589 static long brace_min
[10]; /* Minimums for complex brace repeats */
590 static long brace_max
[10]; /* Maximums for complex brace repeats */
591 static int brace_count
[10]; /* Current counts for complex brace repeats */
592 #if defined(FEAT_SYN_HL) || defined(PROTO)
593 static int had_eol
; /* TRUE when EOL found by vim_regcomp() */
595 static int one_exactly
= FALSE
; /* only do one char for EXACTLY */
597 static 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 */
603 static int reg_string
; /* matching with a string instead of a buffer
605 static int reg_strict
; /* "[abc" is illegal */
608 * META contains all characters that may be magic, except '^' and '$'.
612 static char_u META
[] = "%&()*+.123456789<=>?@ACDFHIKLMOPSUVWX[_acdfhiklmnopsuvwxz{|~";
614 /* META[] is used often enough to justify turning it into a table. */
615 static 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,
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
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 /* \%(\) */
642 * Forward declarations for vim_regcomp()'s friends.
644 static void initchr
__ARGS((char_u
*));
645 static int getchr
__ARGS((void));
646 static void skipchr_keepstart
__ARGS((void));
647 static int peekchr
__ARGS((void));
648 static void skipchr
__ARGS((void));
649 static void ungetchr
__ARGS((void));
650 static int gethexchrs
__ARGS((int maxinputlen
));
651 static int getoctchrs
__ARGS((void));
652 static int getdecchrs
__ARGS((void));
653 static int coll_get_char
__ARGS((void));
654 static void regcomp_start
__ARGS((char_u
*expr
, int flags
));
655 static char_u
*reg
__ARGS((int, int *));
656 static char_u
*regbranch
__ARGS((int *flagp
));
657 static char_u
*regconcat
__ARGS((int *flagp
));
658 static char_u
*regpiece
__ARGS((int *));
659 static char_u
*regatom
__ARGS((int *));
660 static char_u
*regnode
__ARGS((int));
662 static int use_multibytecode
__ARGS((int c
));
664 static int prog_magic_wrong
__ARGS((void));
665 static char_u
*regnext
__ARGS((char_u
*));
666 static void regc
__ARGS((int b
));
668 static void regmbc
__ARGS((int c
));
670 # define regmbc(c) regc(c)
672 static void reginsert
__ARGS((int, char_u
*));
673 static void reginsert_limits
__ARGS((int, long, long, char_u
*));
674 static char_u
*re_put_long
__ARGS((char_u
*pr
, long_u val
));
675 static int read_limits
__ARGS((long *, long *));
676 static void regtail
__ARGS((char_u
*, char_u
*));
677 static void regoptail
__ARGS((char_u
*, char_u
*));
680 * Return TRUE if compiled regular expression "prog" can match a line break.
686 return (prog
->regflags
& RF_HASNL
);
690 * Return TRUE if compiled regular expression "prog" looks before the start
691 * position (pattern contains "\@<=" or "\@<!").
697 return (prog
->regflags
& RF_LOOKBH
);
701 * Check for an equivalence class name "[=a=]". "pp" points to the '['.
702 * Returns a character representing the class. Zero means that no item was
703 * recognized. Otherwise "pp" is advanced to after the item.
717 l
= (*mb_ptr2len
)(p
+ 2);
719 if (p
[l
+ 2] == '=' && p
[l
+ 3] == ']')
723 c
= mb_ptr2char(p
+ 2);
735 * Produce the bytes for equivalence class "c".
736 * Currently only handles latin1, latin9 and utf-8.
743 if (enc_utf8
|| STRCMP(p_enc
, "latin1") == 0
744 || STRCMP(p_enc
, "iso-8859-15") == 0)
749 case 'A': case '\300': case '\301': case '\302':
750 case '\303': case '\304': case '\305':
751 regmbc('A'); regmbc('\300'); regmbc('\301');
752 regmbc('\302'); regmbc('\303'); regmbc('\304');
755 case 'C': case '\307':
756 regmbc('C'); regmbc('\307');
758 case 'E': case '\310': case '\311': case '\312': case '\313':
759 regmbc('E'); regmbc('\310'); regmbc('\311');
760 regmbc('\312'); regmbc('\313');
762 case 'I': case '\314': case '\315': case '\316': case '\317':
763 regmbc('I'); regmbc('\314'); regmbc('\315');
764 regmbc('\316'); regmbc('\317');
766 case 'N': case '\321':
767 regmbc('N'); regmbc('\321');
769 case 'O': case '\322': case '\323': case '\324': case '\325':
771 regmbc('O'); regmbc('\322'); regmbc('\323');
772 regmbc('\324'); regmbc('\325'); regmbc('\326');
774 case 'U': case '\331': case '\332': case '\333': case '\334':
775 regmbc('U'); regmbc('\331'); regmbc('\332');
776 regmbc('\333'); regmbc('\334');
778 case 'Y': case '\335':
779 regmbc('Y'); regmbc('\335');
781 case 'a': case '\340': case '\341': case '\342':
782 case '\343': case '\344': case '\345':
783 regmbc('a'); regmbc('\340'); regmbc('\341');
784 regmbc('\342'); regmbc('\343'); regmbc('\344');
787 case 'c': case '\347':
788 regmbc('c'); regmbc('\347');
790 case 'e': case '\350': case '\351': case '\352': case '\353':
791 regmbc('e'); regmbc('\350'); regmbc('\351');
792 regmbc('\352'); regmbc('\353');
794 case 'i': case '\354': case '\355': case '\356': case '\357':
795 regmbc('i'); regmbc('\354'); regmbc('\355');
796 regmbc('\356'); regmbc('\357');
798 case 'n': case '\361':
799 regmbc('n'); regmbc('\361');
801 case 'o': case '\362': case '\363': case '\364': case '\365':
803 regmbc('o'); regmbc('\362'); regmbc('\363');
804 regmbc('\364'); regmbc('\365'); regmbc('\366');
806 case 'u': case '\371': case '\372': case '\373': case '\374':
807 regmbc('u'); regmbc('\371'); regmbc('\372');
808 regmbc('\373'); regmbc('\374');
810 case 'y': case '\375': case '\377':
811 regmbc('y'); regmbc('\375'); regmbc('\377');
819 * Check for a collating element "[.a.]". "pp" points to the '['.
820 * Returns a character. Zero means that no item was recognized. Otherwise
821 * "pp" is advanced to after the item.
822 * Currently only single characters are recognized!
836 l
= (*mb_ptr2len
)(p
+ 2);
838 if (p
[l
+ 2] == '.' && p
[l
+ 3] == ']')
842 c
= mb_ptr2char(p
+ 2);
855 * Skip over a "[]" range.
856 * "p" must point to the character after the '['.
857 * The returned pointer is on the matching ']', or the terminating NUL.
863 int cpo_lit
; /* 'cpoptions' contains 'l' flag */
864 int cpo_bsl
; /* 'cpoptions' contains '\' flag */
869 cpo_lit
= vim_strchr(p_cpo
, CPO_LITERAL
) != NULL
;
870 cpo_bsl
= vim_strchr(p_cpo
, CPO_BACKSL
) != NULL
;
872 if (*p
== '^') /* Complement of range. */
874 if (*p
== ']' || *p
== '-')
876 while (*p
!= NUL
&& *p
!= ']')
879 if (has_mbyte
&& (l
= (*mb_ptr2len
)(p
)) > 1)
886 if (*p
!= ']' && *p
!= NUL
)
891 && (vim_strchr(REGEXP_INRANGE
, p
[1]) != NULL
892 || (!cpo_lit
&& vim_strchr(REGEXP_ABBR
, p
[1]) != NULL
)))
896 if (get_char_class(&p
) == CLASS_NONE
897 && get_equi_class(&p
) == 0
898 && get_coll_element(&p
) == 0)
899 ++p
; /* It was not a class name */
909 * Skip past regular expression.
910 * Stop at end of "startp" or where "dirc" is found ('/', '?', etc).
911 * Take care of characters with a backslash in front of it.
912 * Skip strings inside [ and ].
913 * When "newp" is not NULL and "dirc" is '?', make an allocated copy of the
914 * expression and change "\?" to "?". If "*newp" is not NULL the expression
915 * is changed in-place.
918 skip_regexp(startp
, dirc
, magic
, newp
)
932 for (; p
[0] != NUL
; mb_ptr_adv(p
))
934 if (p
[0] == dirc
) /* found end of regexp */
936 if ((p
[0] == '[' && mymagic
>= MAGIC_ON
)
937 || (p
[0] == '\\' && p
[1] == '[' && mymagic
<= MAGIC_OFF
))
939 p
= skip_anyof(p
+ 1);
943 else if (p
[0] == '\\' && p
[1] != NUL
)
945 if (dirc
== '?' && newp
!= NULL
&& p
[1] == '?')
947 /* change "\?" to "?", make a copy first. */
950 *newp
= vim_strsave(startp
);
952 p
= *newp
+ (p
- startp
);
960 ++p
; /* skip next character */
964 mymagic
= MAGIC_NONE
;
971 * vim_regcomp() - compile a regular expression into internal code
972 * Returns the program in allocated space. Returns NULL for an error.
974 * We can't allocate space until we know how big the compiled form will be,
975 * but we can't compile it (and thus know how big it is) until we've got a
976 * place to put the code. So we cheat: we compile it twice, once with code
977 * generation turned off and size counting turned on, and once "for real".
978 * This also means that we don't allocate space until we are sure that the
979 * thing really will compile successfully, and we never have to move the
980 * code and thus invalidate pointers into it. (Note that it has to be in
981 * one piece because vim_free() must be able to free it all.)
983 * Whether upper/lower case is to be ignored is decided when executing the
984 * program, it does not matter here.
986 * Beware that the optimization-preparation code in here knows about some
987 * of the structure of the compiled regexp.
988 * "re_flags": RE_MAGIC and/or RE_STRING.
991 vim_regcomp(expr
, re_flags
)
1002 EMSG_RET_NULL(_(e_null
));
1007 * First pass: determine size, legality.
1009 regcomp_start(expr
, re_flags
);
1010 regcode
= JUST_CALC_SIZE
;
1012 if (reg(REG_NOPAREN
, &flags
) == NULL
)
1015 /* Small enough for pointer-storage convention? */
1016 #ifdef SMALL_MALLOC /* 16 bit storage allocation */
1017 if (regsize
>= 65536L - 256L)
1018 EMSG_RET_NULL(_("E339: Pattern too long"));
1021 /* Allocate space. */
1022 r
= (regprog_T
*)lalloc(sizeof(regprog_T
) + regsize
, TRUE
);
1027 * Second pass: emit code.
1029 regcomp_start(expr
, re_flags
);
1030 regcode
= r
->program
;
1032 if (reg(REG_NOPAREN
, &flags
) == NULL
|| reg_toolong
)
1036 EMSG_RET_NULL(_("E339: Pattern too long"));
1040 /* Dig out information for optimizations. */
1041 r
->regstart
= NUL
; /* Worst-case defaults. */
1045 r
->regflags
= regflags
;
1047 r
->regflags
|= RF_HASNL
;
1048 if (flags
& HASLOOKBH
)
1049 r
->regflags
|= RF_LOOKBH
;
1051 /* Remember whether this pattern has any \z specials in it. */
1052 r
->reghasz
= re_has_z
;
1054 scan
= r
->program
+ 1; /* First BRANCH. */
1055 if (OP(regnext(scan
)) == END
) /* Only one top-level choice. */
1057 scan
= OPERAND(scan
);
1059 /* Starting-point info. */
1060 if (OP(scan
) == BOL
|| OP(scan
) == RE_BOF
)
1063 scan
= regnext(scan
);
1066 if (OP(scan
) == EXACTLY
)
1070 r
->regstart
= (*mb_ptr2char
)(OPERAND(scan
));
1073 r
->regstart
= *OPERAND(scan
);
1075 else if ((OP(scan
) == BOW
1077 || OP(scan
) == NOTHING
1078 || OP(scan
) == MOPEN
+ 0 || OP(scan
) == NOPEN
1079 || OP(scan
) == MCLOSE
+ 0 || OP(scan
) == NCLOSE
)
1080 && OP(regnext(scan
)) == EXACTLY
)
1084 r
->regstart
= (*mb_ptr2char
)(OPERAND(regnext(scan
)));
1087 r
->regstart
= *OPERAND(regnext(scan
));
1091 * If there's something expensive in the r.e., find the longest
1092 * literal string that must appear and make it the regmust. Resolve
1093 * ties in favor of later strings, since the regstart check works
1094 * with the beginning of the r.e. and avoiding duplication
1095 * strengthens checking. Not a strong reason, but sufficient in the
1096 * absence of others.
1099 * When the r.e. starts with BOW, it is faster to look for a regmust
1100 * first. Used a lot for "#" and "*" commands. (Added by mool).
1102 if ((flags
& SPSTART
|| OP(scan
) == BOW
|| OP(scan
) == EOW
)
1103 && !(flags
& HASNL
))
1107 for (; scan
!= NULL
; scan
= regnext(scan
))
1108 if (OP(scan
) == EXACTLY
&& STRLEN(OPERAND(scan
)) >= (size_t)len
)
1110 longest
= OPERAND(scan
);
1111 len
= (int)STRLEN(OPERAND(scan
));
1113 r
->regmust
= longest
;
1124 * Setup to parse the regexp. Used once to get the length and once to do it.
1127 regcomp_start(expr
, re_flags
)
1129 int re_flags
; /* see vim_regcomp() */
1132 if (re_flags
& RE_MAGIC
)
1133 reg_magic
= MAGIC_ON
;
1135 reg_magic
= MAGIC_OFF
;
1136 reg_string
= (re_flags
& RE_STRING
);
1137 reg_strict
= (re_flags
& RE_STRICT
);
1139 num_complex_braces
= 0;
1141 vim_memset(had_endbrace
, 0, sizeof(had_endbrace
));
1147 reg_toolong
= FALSE
;
1149 #if defined(FEAT_SYN_HL) || defined(PROTO)
1154 #if defined(FEAT_SYN_HL) || defined(PROTO)
1156 * Check if during the previous call to vim_regcomp the EOL item "$" has been
1157 * found. This is messy, but it works fine.
1160 vim_regcomp_had_eol()
1167 * reg - regular expression, i.e. main body or parenthesized thing
1169 * Caller must absorb opening parenthesis.
1171 * Combining parenthesis handling with the base level of regular expression
1172 * is a trifle forced, but the need to tie the tails of the branches to what
1173 * follows makes it hard to avoid.
1177 int paren
; /* REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN */
1186 *flagp
= HASWIDTH
; /* Tentatively. */
1189 if (paren
== REG_ZPAREN
)
1191 /* Make a ZOPEN node. */
1192 if (regnzpar
>= NSUBEXP
)
1193 EMSG_RET_NULL(_("E50: Too many \\z("));
1196 ret
= regnode(ZOPEN
+ parno
);
1200 if (paren
== REG_PAREN
)
1202 /* Make a MOPEN node. */
1203 if (regnpar
>= NSUBEXP
)
1204 EMSG_M_RET_NULL(_("E51: Too many %s("), reg_magic
== MAGIC_ALL
);
1207 ret
= regnode(MOPEN
+ parno
);
1209 else if (paren
== REG_NPAREN
)
1211 /* Make a NOPEN node. */
1212 ret
= regnode(NOPEN
);
1217 /* Pick up the branches, linking them together. */
1218 br
= regbranch(&flags
);
1222 regtail(ret
, br
); /* [MZ]OPEN -> first. */
1225 /* If one of the branches can be zero-width, the whole thing can.
1226 * If one of the branches has * at start or matches a line-break, the
1227 * whole thing can. */
1228 if (!(flags
& HASWIDTH
))
1229 *flagp
&= ~HASWIDTH
;
1230 *flagp
|= flags
& (SPSTART
| HASNL
| HASLOOKBH
);
1231 while (peekchr() == Magic('|'))
1234 br
= regbranch(&flags
);
1235 if (br
== NULL
|| reg_toolong
)
1237 regtail(ret
, br
); /* BRANCH -> BRANCH. */
1238 if (!(flags
& HASWIDTH
))
1239 *flagp
&= ~HASWIDTH
;
1240 *flagp
|= flags
& (SPSTART
| HASNL
| HASLOOKBH
);
1243 /* Make a closing node, and hook it on the end. */
1246 paren
== REG_ZPAREN
? ZCLOSE
+ parno
:
1248 paren
== REG_PAREN
? MCLOSE
+ parno
:
1249 paren
== REG_NPAREN
? NCLOSE
: END
);
1250 regtail(ret
, ender
);
1252 /* Hook the tails of the branches to the closing node. */
1253 for (br
= ret
; br
!= NULL
; br
= regnext(br
))
1254 regoptail(br
, ender
);
1256 /* Check for proper termination. */
1257 if (paren
!= REG_NOPAREN
&& getchr() != Magic(')'))
1260 if (paren
== REG_ZPAREN
)
1261 EMSG_RET_NULL(_("E52: Unmatched \\z("));
1264 if (paren
== REG_NPAREN
)
1265 EMSG_M_RET_NULL(_("E53: Unmatched %s%%("), reg_magic
== MAGIC_ALL
);
1267 EMSG_M_RET_NULL(_("E54: Unmatched %s("), reg_magic
== MAGIC_ALL
);
1269 else if (paren
== REG_NOPAREN
&& peekchr() != NUL
)
1271 if (curchr
== Magic(')'))
1272 EMSG_M_RET_NULL(_("E55: Unmatched %s)"), reg_magic
== MAGIC_ALL
);
1274 EMSG_RET_NULL(_(e_trailing
)); /* "Can't happen". */
1278 * Here we set the flag allowing back references to this set of
1281 if (paren
== REG_PAREN
)
1282 had_endbrace
[parno
] = TRUE
; /* have seen the close paren */
1287 * Handle one alternative of an | operator.
1288 * Implements the & operator.
1295 char_u
*chain
= NULL
;
1299 *flagp
= WORST
| HASNL
; /* Tentatively. */
1301 ret
= regnode(BRANCH
);
1304 latest
= regconcat(&flags
);
1307 /* If one of the branches has width, the whole thing has. If one of
1308 * the branches anchors at start-of-line, the whole thing does.
1309 * If one of the branches uses look-behind, the whole thing does. */
1310 *flagp
|= flags
& (HASWIDTH
| SPSTART
| HASLOOKBH
);
1311 /* If one of the branches doesn't match a line-break, the whole thing
1313 *flagp
&= ~HASNL
| (flags
& HASNL
);
1315 regtail(chain
, latest
);
1316 if (peekchr() != Magic('&'))
1319 regtail(latest
, regnode(END
)); /* operand ends */
1322 reginsert(MATCH
, latest
);
1330 * Handle one alternative of an | or & operator.
1331 * Implements the concatenation operator.
1337 char_u
*first
= NULL
;
1338 char_u
*chain
= NULL
;
1343 *flagp
= WORST
; /* Tentatively. */
1357 regflags
|= RF_ICOMBINE
;
1359 skipchr_keepstart();
1362 regflags
|= RF_ICASE
;
1363 skipchr_keepstart();
1366 regflags
|= RF_NOICASE
;
1367 skipchr_keepstart();
1370 reg_magic
= MAGIC_ALL
;
1371 skipchr_keepstart();
1375 reg_magic
= MAGIC_ON
;
1376 skipchr_keepstart();
1380 reg_magic
= MAGIC_OFF
;
1381 skipchr_keepstart();
1385 reg_magic
= MAGIC_NONE
;
1386 skipchr_keepstart();
1390 latest
= regpiece(&flags
);
1391 if (latest
== NULL
|| reg_toolong
)
1393 *flagp
|= flags
& (HASWIDTH
| HASNL
| HASLOOKBH
);
1394 if (chain
== NULL
) /* First piece. */
1395 *flagp
|= flags
& SPSTART
;
1397 regtail(chain
, latest
);
1404 if (first
== NULL
) /* Loop ran zero times. */
1405 first
= regnode(NOTHING
);
1410 * regpiece - something followed by possible [*+=]
1412 * Note that the branching code sequences used for = and the general cases
1413 * of * and + are somewhat optimized: they use the same NOTHING node as
1414 * both the endmarker for their branch list and the body of the last branch.
1415 * It might seem that this node could be dispensed with entirely, but the
1416 * endmarker role is not redundant.
1429 ret
= regatom(&flags
);
1434 if (re_multi_type(op
) == NOT_MULTI
)
1440 *flagp
= (WORST
| SPSTART
| (flags
& (HASNL
| HASLOOKBH
)));
1447 reginsert(STAR
, ret
);
1450 /* Emit x* as (x&|), where & means "self". */
1451 reginsert(BRANCH
, ret
); /* Either x */
1452 regoptail(ret
, regnode(BACK
)); /* and loop */
1453 regoptail(ret
, ret
); /* back */
1454 regtail(ret
, regnode(BRANCH
)); /* or */
1455 regtail(ret
, regnode(NOTHING
)); /* null. */
1461 reginsert(PLUS
, ret
);
1464 /* Emit x+ as x(&|), where & means "self". */
1465 next
= regnode(BRANCH
); /* Either */
1467 regtail(regnode(BACK
), ret
); /* loop back */
1468 regtail(next
, regnode(BRANCH
)); /* or */
1469 regtail(ret
, regnode(NOTHING
)); /* null. */
1471 *flagp
= (WORST
| HASWIDTH
| (flags
& (HASNL
| HASLOOKBH
)));
1478 switch (no_Magic(getchr()))
1480 case '=': lop
= MATCH
; break; /* \@= */
1481 case '!': lop
= NOMATCH
; break; /* \@! */
1482 case '>': lop
= SUBPAT
; break; /* \@> */
1483 case '<': switch (no_Magic(getchr()))
1485 case '=': lop
= BEHIND
; break; /* \@<= */
1486 case '!': lop
= NOBEHIND
; break; /* \@<! */
1490 EMSG_M_RET_NULL(_("E59: invalid character after %s@"),
1491 reg_magic
== MAGIC_ALL
);
1492 /* Look behind must match with behind_pos. */
1493 if (lop
== BEHIND
|| lop
== NOBEHIND
)
1495 regtail(ret
, regnode(BHPOS
));
1496 *flagp
|= HASLOOKBH
;
1498 regtail(ret
, regnode(END
)); /* operand ends */
1499 reginsert(lop
, ret
);
1505 /* Emit x= as (x|) */
1506 reginsert(BRANCH
, ret
); /* Either x */
1507 regtail(ret
, regnode(BRANCH
)); /* or */
1508 next
= regnode(NOTHING
); /* null. */
1510 regoptail(ret
, next
);
1514 if (!read_limits(&minval
, &maxval
))
1518 reginsert(BRACE_SIMPLE
, ret
);
1519 reginsert_limits(BRACE_LIMITS
, minval
, maxval
, ret
);
1523 if (num_complex_braces
>= 10)
1524 EMSG_M_RET_NULL(_("E60: Too many complex %s{...}s"),
1525 reg_magic
== MAGIC_ALL
);
1526 reginsert(BRACE_COMPLEX
+ num_complex_braces
, ret
);
1527 regoptail(ret
, regnode(BACK
));
1528 regoptail(ret
, ret
);
1529 reginsert_limits(BRACE_LIMITS
, minval
, maxval
, ret
);
1530 ++num_complex_braces
;
1532 if (minval
> 0 && maxval
> 0)
1533 *flagp
= (HASWIDTH
| (flags
& (HASNL
| HASLOOKBH
)));
1536 if (re_multi_type(peekchr()) != NOT_MULTI
)
1538 /* Can't have a multi follow a multi. */
1539 if (peekchr() == Magic('*'))
1540 sprintf((char *)IObuff
, _("E61: Nested %s*"),
1541 reg_magic
>= MAGIC_ON
? "" : "\\");
1543 sprintf((char *)IObuff
, _("E62: Nested %s%c"),
1544 reg_magic
== MAGIC_ALL
? "" : "\\", no_Magic(peekchr()));
1545 EMSG_RET_NULL(IObuff
);
1552 * regatom - the lowest level
1554 * Optimization: gobbles an entire sequence of ordinary characters so that
1555 * it can turn them into a single node, which is smaller to store and
1556 * faster to run. Don't do this when one_exactly is set.
1564 int cpo_lit
; /* 'cpoptions' contains 'l' flag */
1565 int cpo_bsl
; /* 'cpoptions' contains '\' flag */
1567 static char_u
*classchars
= (char_u
*)".iIkKfFpPsSdDxXoOwWhHaAlLuU";
1568 static int classcodes
[] = {ANY
, IDENT
, SIDENT
, KWORD
, SKWORD
,
1569 FNAME
, SFNAME
, PRINT
, SPRINT
,
1570 WHITE
, NWHITE
, DIGIT
, NDIGIT
,
1571 HEX
, NHEX
, OCTAL
, NOCTAL
,
1572 WORD
, NWORD
, HEAD
, NHEAD
,
1573 ALPHA
, NALPHA
, LOWER
, NLOWER
,
1579 *flagp
= WORST
; /* Tentatively. */
1580 cpo_lit
= vim_strchr(p_cpo
, CPO_LITERAL
) != NULL
;
1581 cpo_bsl
= vim_strchr(p_cpo
, CPO_BACKSL
) != NULL
;
1592 #if defined(FEAT_SYN_HL) || defined(PROTO)
1606 c
= no_Magic(getchr());
1607 if (c
== '^') /* "\_^" is start-of-line */
1612 if (c
== '$') /* "\_$" is end-of-line */
1615 #if defined(FEAT_SYN_HL) || defined(PROTO)
1624 /* "\_[" is character range plus newline */
1628 /* "\_x" is character class plus newline */
1632 * Character classes.
1661 p
= vim_strchr(classchars
, no_Magic(c
));
1663 EMSG_RET_NULL(_("E63: invalid use of \\_"));
1665 /* When '.' is followed by a composing char ignore the dot, so that
1666 * the composing char is matched here. */
1667 if (enc_utf8
&& c
== Magic('.') && utf_iscomposing(peekchr()))
1673 ret
= regnode(classcodes
[p
- classchars
] + extra
);
1674 *flagp
|= HASWIDTH
| SIMPLE
;
1680 /* In a string "\n" matches a newline character. */
1681 ret
= regnode(EXACTLY
);
1684 *flagp
|= HASWIDTH
| SIMPLE
;
1688 /* In buffer text "\n" matches the end of a line. */
1689 ret
= regnode(NEWL
);
1690 *flagp
|= HASWIDTH
| HASNL
;
1697 ret
= reg(REG_PAREN
, &flags
);
1700 *flagp
|= flags
& (HASWIDTH
| SPSTART
| HASNL
| HASLOOKBH
);
1709 EMSG_RET_NULL(_(e_internal
)); /* Supposed to be caught earlier. */
1719 sprintf((char *)IObuff
, _("E64: %s%c follows nothing"),
1720 (c
== '*' ? reg_magic
>= MAGIC_ON
: reg_magic
== MAGIC_ALL
)
1722 EMSG_RET_NULL(IObuff
);
1725 case Magic('~'): /* previous substitute pattern */
1726 if (reg_prev_sub
!= NULL
)
1730 ret
= regnode(EXACTLY
);
1735 if (*reg_prev_sub
!= NUL
)
1738 if ((lp
- reg_prev_sub
) == 1)
1743 EMSG_RET_NULL(_(e_nopresub
));
1758 refnum
= c
- Magic('0');
1760 * Check if the back reference is legal. We must have seen the
1762 * TODO: Should also check that we don't refer to something
1763 * that is repeated (+*=): what instance of the repetition
1766 if (!had_endbrace
[refnum
])
1768 /* Trick: check if "@<=" or "@<!" follows, in which case
1769 * the \1 can appear before the referenced match. */
1770 for (p
= regparse
; *p
!= NUL
; ++p
)
1771 if (p
[0] == '@' && p
[1] == '<'
1772 && (p
[2] == '!' || p
[2] == '='))
1775 EMSG_RET_NULL(_("E65: Illegal back reference"));
1777 ret
= regnode(BACKREF
+ refnum
);
1783 c
= no_Magic(getchr());
1787 case '(': if (reg_do_extmatch
!= REX_SET
)
1788 EMSG_RET_NULL(_("E66: \\z( not allowed here"));
1791 ret
= reg(REG_ZPAREN
, &flags
);
1794 *flagp
|= flags
& (HASWIDTH
|SPSTART
|HASNL
|HASLOOKBH
);
1806 case '9': if (reg_do_extmatch
!= REX_USE
)
1807 EMSG_RET_NULL(_("E67: \\z1 et al. not allowed here"));
1808 ret
= regnode(ZREF
+ c
- '0');
1813 case 's': ret
= regnode(MOPEN
+ 0);
1816 case 'e': ret
= regnode(MCLOSE
+ 0);
1819 default: EMSG_RET_NULL(_("E68: Invalid character after \\z"));
1826 c
= no_Magic(getchr());
1829 /* () without a back reference */
1833 ret
= reg(REG_NPAREN
, &flags
);
1836 *flagp
|= flags
& (HASWIDTH
| SPSTART
| HASNL
| HASLOOKBH
);
1839 /* Catch \%^ and \%$ regardless of where they appear in the
1840 * pattern -- regardless of whether or not it makes sense. */
1842 ret
= regnode(RE_BOF
);
1846 ret
= regnode(RE_EOF
);
1850 ret
= regnode(CURSOR
);
1854 ret
= regnode(RE_VISUAL
);
1857 /* \%[abc]: Emit as a list of branches, all ending at the last
1858 * branch which matches nothing. */
1860 if (one_exactly
) /* doesn't nest */
1864 char_u
*lastnode
= NULL
;
1868 while ((c
= getchr()) != ']')
1871 EMSG_M_RET_NULL(_("E69: Missing ] after %s%%["),
1872 reg_magic
== MAGIC_ALL
);
1873 br
= regnode(BRANCH
);
1877 regtail(lastnode
, br
);
1881 lastnode
= regatom(flagp
);
1882 one_exactly
= FALSE
;
1883 if (lastnode
== NULL
)
1887 EMSG_M_RET_NULL(_("E70: Empty %s%%[]"),
1888 reg_magic
== MAGIC_ALL
);
1889 lastbranch
= regnode(BRANCH
);
1890 br
= regnode(NOTHING
);
1891 if (ret
!= JUST_CALC_SIZE
)
1893 regtail(lastnode
, br
);
1894 regtail(lastbranch
, br
);
1895 /* connect all branches to the NOTHING
1896 * branch at the end */
1897 for (br
= ret
; br
!= lastnode
; )
1899 if (OP(br
) == BRANCH
)
1901 regtail(br
, lastbranch
);
1908 *flagp
&= ~(HASWIDTH
| SIMPLE
);
1912 case 'd': /* %d123 decimal */
1913 case 'o': /* %o123 octal */
1914 case 'x': /* %xab hex 2 */
1915 case 'u': /* %uabcd hex 4 */
1916 case 'U': /* %U1234abcd hex 8 */
1922 case 'd': i
= getdecchrs(); break;
1923 case 'o': i
= getoctchrs(); break;
1924 case 'x': i
= gethexchrs(2); break;
1925 case 'u': i
= gethexchrs(4); break;
1926 case 'U': i
= gethexchrs(8); break;
1927 default: i
= -1; break;
1932 _("E678: Invalid character after %s%%[dxouU]"),
1933 reg_magic
== MAGIC_ALL
);
1935 if (use_multibytecode(i
))
1936 ret
= regnode(MULTIBYTECODE
);
1939 ret
= regnode(EXACTLY
);
1954 if (VIM_ISDIGIT(c
) || c
== '<' || c
== '>'
1961 if (cmp
== '<' || cmp
== '>')
1963 while (VIM_ISDIGIT(c
))
1965 n
= n
* 10 + (c
- '0');
1968 if (c
== '\'' && n
== 0)
1970 /* "\%'m", "\%<'m" and "\%>'m": Mark */
1972 ret
= regnode(RE_MARK
);
1973 if (ret
== JUST_CALC_SIZE
)
1982 else if (c
== 'l' || c
== 'c' || c
== 'v')
1985 ret
= regnode(RE_LNUM
);
1987 ret
= regnode(RE_COL
);
1989 ret
= regnode(RE_VCOL
);
1990 if (ret
== JUST_CALC_SIZE
)
1994 /* put the number and the optional
1995 * comparator after the opcode */
1996 regcode
= re_put_long(regcode
, n
);
2003 EMSG_M_RET_NULL(_("E71: Invalid character after %s%%"),
2004 reg_magic
== MAGIC_ALL
);
2015 * If there is no matching ']', we assume the '[' is a normal
2016 * character. This makes 'incsearch' and ":help [" work.
2018 lp
= skip_anyof(regparse
);
2019 if (*lp
== ']') /* there is a matching ']' */
2021 int startc
= -1; /* > 0 when next '-' is a range */
2025 * In a character class, different parsing rules apply.
2026 * Not even \ is special anymore, nothing is.
2028 if (*regparse
== '^') /* Complement of range. */
2030 ret
= regnode(ANYBUT
+ extra
);
2034 ret
= regnode(ANYOF
+ extra
);
2036 /* At the start ']' and '-' mean the literal character. */
2037 if (*regparse
== ']' || *regparse
== '-')
2043 while (*regparse
!= NUL
&& *regparse
!= ']')
2045 if (*regparse
== '-')
2048 /* The '-' is not used for a range at the end and
2049 * after or before a '\n'. */
2050 if (*regparse
== ']' || *regparse
== NUL
2052 || (regparse
[0] == '\\' && regparse
[1] == 'n'))
2055 startc
= '-'; /* [--x] is a range */
2059 /* Also accept "a-[.z.]" */
2061 if (*regparse
== '[')
2062 endc
= get_coll_element(®parse
);
2067 endc
= mb_ptr2char_adv(®parse
);
2073 /* Handle \o40, \x20 and \u20AC style sequences */
2074 if (endc
== '\\' && !cpo_lit
&& !cpo_bsl
)
2075 endc
= coll_get_char();
2078 EMSG_RET_NULL(_(e_invrange
));
2080 if (has_mbyte
&& ((*mb_char2len
)(startc
) > 1
2081 || (*mb_char2len
)(endc
) > 1))
2083 /* Limit to a range of 256 chars */
2084 if (endc
> startc
+ 256)
2085 EMSG_RET_NULL(_(e_invrange
));
2086 while (++startc
<= endc
)
2093 int alpha_only
= FALSE
;
2095 /* for alphabetical range skip the gaps
2096 * 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. */
2097 if (isalpha(startc
) && isalpha(endc
))
2100 while (++startc
<= endc
)
2102 if (!alpha_only
|| isalpha(startc
))
2110 * Only "\]", "\^", "\]" and "\\" are special in Vi. Vim
2111 * accepts "\t", "\e", etc., but only when the 'l' flag in
2112 * 'cpoptions' is not included.
2113 * Posix doesn't recognize backslash at all.
2115 else if (*regparse
== '\\'
2117 && (vim_strchr(REGEXP_INRANGE
, regparse
[1]) != NULL
2119 && vim_strchr(REGEXP_ABBR
,
2120 regparse
[1]) != NULL
)))
2123 if (*regparse
== 'n')
2125 /* '\n' in range: also match NL */
2126 if (ret
!= JUST_CALC_SIZE
)
2129 *ret
= ANYBUT
+ ADD_NL
;
2130 else if (*ret
== ANYOF
)
2131 *ret
= ANYOF
+ ADD_NL
;
2132 /* else: must have had a \n already */
2138 else if (*regparse
== 'd'
2142 || *regparse
== 'U')
2144 startc
= coll_get_char();
2156 startc
= backslash_trans(*regparse
++);
2160 else if (*regparse
== '[')
2165 c_class
= get_char_class(®parse
);
2167 /* Characters assumed to be 8 bits! */
2171 c_class
= get_equi_class(®parse
);
2174 /* produce equivalence class */
2175 reg_equi_class(c_class
);
2178 get_coll_element(®parse
)) != 0)
2180 /* produce a collating element */
2185 /* literal '[', allow [[-x] as a range */
2186 startc
= *regparse
++;
2191 for (cu
= 1; cu
<= 255; cu
++)
2196 for (cu
= 1; cu
<= 255; cu
++)
2205 for (cu
= 1; cu
<= 255; cu
++)
2210 for (cu
= 1; cu
<= 255; cu
++)
2211 if (VIM_ISDIGIT(cu
))
2215 for (cu
= 1; cu
<= 255; cu
++)
2220 for (cu
= 1; cu
<= 255; cu
++)
2225 for (cu
= 1; cu
<= 255; cu
++)
2226 if (vim_isprintc(cu
))
2230 for (cu
= 1; cu
<= 255; cu
++)
2235 for (cu
= 9; cu
<= 13; cu
++)
2240 for (cu
= 1; cu
<= 255; cu
++)
2245 for (cu
= 1; cu
<= 255; cu
++)
2246 if (vim_isxdigit(cu
))
2255 case CLASS_BACKSPACE
:
2270 /* produce a multibyte character, including any
2271 * following composing characters */
2272 startc
= mb_ptr2char(regparse
);
2273 len
= (*mb_ptr2len
)(regparse
);
2274 if (enc_utf8
&& utf_char2len(startc
) != len
)
2275 startc
= -1; /* composing chars */
2282 startc
= *regparse
++;
2288 prevchr_len
= 1; /* last char was the ']' */
2289 if (*regparse
!= ']')
2290 EMSG_RET_NULL(_(e_toomsbra
)); /* Cannot happen? */
2291 skipchr(); /* let's be friends with the lexer again */
2292 *flagp
|= HASWIDTH
| SIMPLE
;
2295 else if (reg_strict
)
2296 EMSG_M_RET_NULL(_("E769: Missing ] after %s["),
2297 reg_magic
> MAGIC_OFF
);
2306 /* A multi-byte character is handled as a separate atom if it's
2307 * before a multi and when it's a composing char. */
2308 if (use_multibytecode(c
))
2311 ret
= regnode(MULTIBYTECODE
);
2313 *flagp
|= HASWIDTH
| SIMPLE
;
2318 ret
= regnode(EXACTLY
);
2321 * Append characters as long as:
2322 * - there is no following multi, we then need the character in
2323 * front of it as a single character operand
2324 * - not running into a Magic character
2325 * - "one_exactly" is not set
2326 * But always emit at least one character. Might be a Multi,
2327 * e.g., a "[" without matching "]".
2329 for (len
= 0; c
!= NUL
&& (len
== 0
2330 || (re_multi_type(peekchr()) == NOT_MULTI
2332 && !is_Magic(c
))); ++len
)
2343 /* Need to get composing character too. */
2346 l
= utf_ptr2len(regparse
);
2347 if (!UTF_COMPOSINGLIKE(regparse
, regparse
+ l
))
2349 regmbc(utf_ptr2char(regparse
));
2374 * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for
2378 use_multibytecode(c
)
2381 return has_mbyte
&& (*mb_char2len
)(c
) > 1
2382 && (re_multi_type(peekchr()) != NOT_MULTI
2383 || (enc_utf8
&& utf_iscomposing(c
)));
2389 * Return pointer to generated code.
2398 if (ret
== JUST_CALC_SIZE
)
2403 *regcode
++ = NUL
; /* Null "next" pointer. */
2410 * Emit (if appropriate) a byte of code
2416 if (regcode
== JUST_CALC_SIZE
)
2424 * Emit (if appropriate) a multi-byte character of code
2430 if (regcode
== JUST_CALC_SIZE
)
2431 regsize
+= (*mb_char2len
)(c
);
2433 regcode
+= (*mb_char2bytes
)(c
, regcode
);
2438 * reginsert - insert an operator in front of already-emitted operand
2440 * Means relocating the operand.
2451 if (regcode
== JUST_CALC_SIZE
)
2462 place
= opnd
; /* Op node, where operand used to be. */
2469 * reginsert_limits - insert an operator in front of already-emitted operand.
2470 * The operator has the given limit values as operands. Also set next pointer.
2472 * Means relocating the operand.
2475 reginsert_limits(op
, minval
, maxval
, opnd
)
2485 if (regcode
== JUST_CALC_SIZE
)
2496 place
= opnd
; /* Op node, where operand used to be. */
2500 place
= re_put_long(place
, (long_u
)minval
);
2501 place
= re_put_long(place
, (long_u
)maxval
);
2502 regtail(opnd
, place
);
2506 * Write a long as four bytes at "p" and return pointer to the next char.
2513 *p
++ = (char_u
) ((val
>> 24) & 0377);
2514 *p
++ = (char_u
) ((val
>> 16) & 0377);
2515 *p
++ = (char_u
) ((val
>> 8) & 0377);
2516 *p
++ = (char_u
) (val
& 0377);
2521 * regtail - set the next-pointer at the end of a node chain
2532 if (p
== JUST_CALC_SIZE
)
2535 /* Find last node. */
2539 temp
= regnext(scan
);
2545 if (OP(scan
) == BACK
)
2546 offset
= (int)(scan
- val
);
2548 offset
= (int)(val
- scan
);
2549 /* When the offset uses more than 16 bits it can no longer fit in the two
2550 * bytes avaliable. Use a global flag to avoid having to check return
2551 * values in too many places. */
2552 if (offset
> 0xffff)
2556 *(scan
+ 1) = (char_u
) (((unsigned)offset
>> 8) & 0377);
2557 *(scan
+ 2) = (char_u
) (offset
& 0377);
2562 * regoptail - regtail on item after a BRANCH; nop if none
2569 /* When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" */
2570 if (p
== NULL
|| p
== JUST_CALC_SIZE
2572 && (OP(p
) < BRACE_COMPLEX
|| OP(p
) > BRACE_COMPLEX
+ 9)))
2574 regtail(OPERAND(p
), val
);
2578 * getchr() - get the next character from the pattern. We know about
2579 * magic and such, so therefore we need a lexical analyzer.
2582 /* static int curchr; */
2583 static int prevprevchr
;
2585 static int nextchr
; /* used for ungetchr() */
2587 * Note: prevchr is sometimes -1 when we are not at the start,
2588 * eg in /[ ^I]^ the pattern was never found even if it existed, because ^ was
2589 * taken to be magic -- webb
2591 static int at_start
; /* True when on the first character */
2592 static int prev_at_start
; /* True when on the second character */
2600 curchr
= prevprevchr
= prevchr
= nextchr
= -1;
2602 prev_at_start
= FALSE
;
2608 static int after_slash
= FALSE
;
2612 switch (curchr
= regparse
[0])
2617 /* magic when 'magic' is on */
2618 if (reg_magic
>= MAGIC_ON
)
2619 curchr
= Magic(curchr
);
2634 case '#': /* future ext. */
2635 case '"': /* future ext. */
2636 case '\'': /* future ext. */
2637 case ',': /* future ext. */
2638 case '-': /* future ext. */
2639 case ':': /* future ext. */
2640 case ';': /* future ext. */
2641 case '`': /* future ext. */
2642 case '/': /* Can't be used in / command */
2643 /* magic only after "\v" */
2644 if (reg_magic
== MAGIC_ALL
)
2645 curchr
= Magic(curchr
);
2648 /* * is not magic as the very first character, eg "?*ptr", when
2649 * after '^', eg "/^*ptr" and when after "\(", "\|", "\&". But
2650 * "\(\*" is not magic, thus must be magic if "after_slash" */
2651 if (reg_magic
>= MAGIC_ON
2653 && !(prev_at_start
&& prevchr
== Magic('^'))
2655 || (prevchr
!= Magic('(')
2656 && prevchr
!= Magic('&')
2657 && prevchr
!= Magic('|'))))
2658 curchr
= Magic('*');
2661 /* '^' is only magic as the very first character and if it's after
2662 * "\(", "\|", "\&' or "\n" */
2663 if (reg_magic
>= MAGIC_OFF
2665 || reg_magic
== MAGIC_ALL
2666 || prevchr
== Magic('(')
2667 || prevchr
== Magic('|')
2668 || prevchr
== Magic('&')
2669 || prevchr
== Magic('n')
2670 || (no_Magic(prevchr
) == '('
2671 && prevprevchr
== Magic('%'))))
2673 curchr
= Magic('^');
2675 prev_at_start
= FALSE
;
2679 /* '$' is only magic as the very last char and if it's in front of
2680 * either "\|", "\)", "\&", or "\n" */
2681 if (reg_magic
>= MAGIC_OFF
)
2683 char_u
*p
= regparse
+ 1;
2685 /* ignore \c \C \m and \M after '$' */
2686 while (p
[0] == '\\' && (p
[1] == 'c' || p
[1] == 'C'
2687 || p
[1] == 'm' || p
[1] == 'M' || p
[1] == 'Z'))
2691 && (p
[1] == '|' || p
[1] == '&' || p
[1] == ')'
2693 || reg_magic
== MAGIC_ALL
)
2694 curchr
= Magic('$');
2699 int c
= regparse
[1];
2702 curchr
= '\\'; /* trailing '\' */
2707 c
<= '~' && META_flags
[c
]
2712 * META contains everything that may be magic sometimes,
2713 * except ^ and $ ("\^" and "\$" are only magic after
2714 * "\v"). We now fetch the next character and toggle its
2715 * magicness. Therefore, \ is so meta-magic that it is
2719 prev_at_start
= at_start
;
2720 at_start
= FALSE
; /* be able to say "/\*ptr" */
2726 curchr
= toggle_Magic(curchr
);
2728 else if (vim_strchr(REGEXP_ABBR
, c
))
2731 * Handle abbreviations, like "\t" for TAB -- webb
2733 curchr
= backslash_trans(c
);
2735 else if (reg_magic
== MAGIC_NONE
&& (c
== '$' || c
== '^'))
2736 curchr
= toggle_Magic(c
);
2740 * Next character can never be (made) magic?
2741 * Then backslashing it won't do anything.
2745 curchr
= (*mb_ptr2char
)(regparse
+ 1);
2756 curchr
= (*mb_ptr2char
)(regparse
);
2765 * Eat one lexed character. Do this in a way that we can undo it.
2770 /* peekchr() eats a backslash, do the same here */
2771 if (*regparse
== '\\')
2775 if (regparse
[prevchr_len
] != NUL
)
2779 /* exclude composing chars that mb_ptr2len does include */
2780 prevchr_len
+= utf_ptr2len(regparse
+ prevchr_len
);
2782 prevchr_len
+= (*mb_ptr2len
)(regparse
+ prevchr_len
);
2787 regparse
+= prevchr_len
;
2788 prev_at_start
= at_start
;
2790 prevprevchr
= prevchr
;
2792 curchr
= nextchr
; /* use previously unget char, or -1 */
2797 * Skip a character while keeping the value of prev_at_start for at_start.
2798 * prevchr and prevprevchr are also kept.
2803 int as
= prev_at_start
;
2805 int prpr
= prevprevchr
;
2816 int chr
= peekchr();
2823 * put character back. Works only once!
2830 prevchr
= prevprevchr
;
2831 at_start
= prev_at_start
;
2832 prev_at_start
= FALSE
;
2834 /* Backup regparse, so that it's at the same position as before the
2836 regparse
-= prevchr_len
;
2840 * Get and return the value of the hex string at the current position.
2841 * Return -1 if there is no valid hex number.
2842 * The position is updated:
2845 * The parameter controls the maximum number of input characters. This will be
2846 * 2 when reading a \%x20 sequence and 4 when reading a \%u20AC sequence.
2849 gethexchrs(maxinputlen
)
2856 for (i
= 0; i
< maxinputlen
; ++i
)
2859 if (!vim_isxdigit(c
))
2872 * get and return the value of the decimal string immediately after the
2873 * current position. Return -1 for invalid. Consumes all digits.
2885 if (c
< '0' || c
> '9')
2898 * get and return the value of the octal string immediately after the current
2899 * position. Return -1 for invalid, or 0-255 for valid. Smart enough to handle
2900 * numbers > 377 correctly (for example, 400 is treated as 40) and doesn't
2901 * treat 8 or 9 as recognised characters. Position is updated:
2902 * blahblah\%o210asdf
2912 for (i
= 0; i
< 3 && nr
< 040; ++i
)
2915 if (c
< '0' || c
> '7')
2928 * Get a number after a backslash that is inside [].
2929 * When nothing is recognized return a backslash.
2936 switch (*regparse
++)
2938 case 'd': nr
= getdecchrs(); break;
2939 case 'o': nr
= getoctchrs(); break;
2940 case 'x': nr
= gethexchrs(2); break;
2941 case 'u': nr
= gethexchrs(4); break;
2942 case 'U': nr
= gethexchrs(8); break;
2946 /* If getting the number fails be backwards compatible: the character
2947 * is a backslash. */
2955 * read_limits - Read two integers to be taken as a minimum and maximum.
2956 * If the first character is '-', then the range is reversed.
2957 * Should end with 'end'. If minval is missing, zero is default, if maxval is
2958 * missing, a very big number is the default.
2961 read_limits(minval
, maxval
)
2965 int reverse
= FALSE
;
2969 if (*regparse
== '-')
2971 /* Starts with '-', so reverse the range later */
2975 first_char
= regparse
;
2976 *minval
= getdigits(®parse
);
2977 if (*regparse
== ',') /* There is a comma */
2979 if (vim_isdigit(*++regparse
))
2980 *maxval
= getdigits(®parse
);
2982 *maxval
= MAX_LIMIT
;
2984 else if (VIM_ISDIGIT(*first_char
))
2985 *maxval
= *minval
; /* It was \{n} or \{-n} */
2987 *maxval
= MAX_LIMIT
; /* It was \{} or \{-} */
2988 if (*regparse
== '\\')
2989 regparse
++; /* Allow either \{...} or \{...\} */
2990 if (*regparse
!= '}')
2992 sprintf((char *)IObuff
, _("E554: Syntax error in %s{...}"),
2993 reg_magic
== MAGIC_ALL
? "" : "\\");
2994 EMSG_RET_FAIL(IObuff
);
2998 * Reverse the range if there was a '-', or make sure it is in the right
3001 if ((!reverse
&& *minval
> *maxval
) || (reverse
&& *minval
< *maxval
))
3007 skipchr(); /* let's be friends with the lexer again */
3012 * vim_regexec and friends
3016 * Global work variables for vim_regexec().
3019 /* The current match-position is remembered with these variables: */
3020 static linenr_T reglnum
; /* line number, relative to first line */
3021 static char_u
*regline
; /* start of current line */
3022 static char_u
*reginput
; /* current input, points into "regline" */
3024 static int need_clear_subexpr
; /* subexpressions still need to be
3027 static int need_clear_zsubexpr
= FALSE
; /* extmatch subexpressions
3028 * still need to be cleared */
3032 * Structure used to save the current input state, when it needs to be
3033 * restored after trying a match. Used by reg_save() and reg_restore().
3034 * Also stores the length of "backpos".
3040 char_u
*ptr
; /* reginput pointer, for single-line regexp */
3041 lpos_T pos
; /* reginput pos, for multi-line regexp */
3046 /* struct to save start/end pointer/position in for \(\) */
3056 /* used for BEHIND and NOBEHIND matching */
3057 typedef struct regbehind_S
3059 regsave_T save_after
;
3060 regsave_T save_behind
;
3061 int save_need_clear_subexpr
;
3062 save_se_T save_start
[NSUBEXP
];
3063 save_se_T save_end
[NSUBEXP
];
3066 static char_u
*reg_getline
__ARGS((linenr_T lnum
));
3067 static long vim_regexec_both
__ARGS((char_u
*line
, colnr_T col
, proftime_T
*tm
));
3068 static long regtry
__ARGS((regprog_T
*prog
, colnr_T col
));
3069 static void cleanup_subexpr
__ARGS((void));
3071 static void cleanup_zsubexpr
__ARGS((void));
3073 static void save_subexpr
__ARGS((regbehind_T
*bp
));
3074 static void restore_subexpr
__ARGS((regbehind_T
*bp
));
3075 static void reg_nextline
__ARGS((void));
3076 static void reg_save
__ARGS((regsave_T
*save
, garray_T
*gap
));
3077 static void reg_restore
__ARGS((regsave_T
*save
, garray_T
*gap
));
3078 static int reg_save_equal
__ARGS((regsave_T
*save
));
3079 static void save_se_multi
__ARGS((save_se_T
*savep
, lpos_T
*posp
));
3080 static void save_se_one
__ARGS((save_se_T
*savep
, char_u
**pp
));
3082 /* Save the sub-expressions before attempting a match. */
3083 #define save_se(savep, posp, pp) \
3084 REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp))
3086 /* After a failed match restore the sub-expressions. */
3087 #define restore_se(savep, posp, pp) { \
3089 *(posp) = (savep)->se_u.pos; \
3091 *(pp) = (savep)->se_u.ptr; }
3093 static int re_num_cmp
__ARGS((long_u val
, char_u
*scan
));
3094 static int regmatch
__ARGS((char_u
*prog
));
3095 static int regrepeat
__ARGS((char_u
*p
, long maxcount
));
3102 * Internal copy of 'ignorecase'. It is set at each call to vim_regexec().
3103 * Normally it gets the value of "rm_ic" or "rmm_ic", but when the pattern
3104 * contains '\c' or '\C' the value is overruled.
3110 * Similar to ireg_ic, but only for 'combining' characters. Set with \Z flag
3111 * in the regexp. Defaults to false, always.
3113 static int ireg_icombine
;
3117 * Copy of "rmm_maxcol": maximum column to search for a match. Zero when
3118 * there is no maximum.
3120 static colnr_T ireg_maxcol
;
3123 * Sometimes need to save a copy of a line. Since alloc()/free() is very
3124 * slow, we keep one allocated piece of memory and only re-allocate it when
3125 * it's too small. It's freed in vim_regexec_both() when finished.
3127 static char_u
*reg_tofree
= NULL
;
3128 static unsigned reg_tofreelen
;
3131 * These variables are set when executing a regexp to speed up the execution.
3132 * Which ones are set depends on whether a single-line or multi-line match is
3134 * single-line multi-line
3135 * reg_match ®match_T NULL
3136 * reg_mmatch NULL ®mmatch_T
3137 * reg_startp reg_match->startp <invalid>
3138 * reg_endp reg_match->endp <invalid>
3139 * reg_startpos <invalid> reg_mmatch->startpos
3140 * reg_endpos <invalid> reg_mmatch->endpos
3141 * reg_win NULL window in which to search
3142 * reg_buf <invalid> buffer in which to search
3143 * reg_firstlnum <invalid> first line in which to search
3144 * reg_maxline 0 last line nr
3145 * reg_line_lbr FALSE or TRUE FALSE
3147 static regmatch_T
*reg_match
;
3148 static regmmatch_T
*reg_mmatch
;
3149 static char_u
**reg_startp
= NULL
;
3150 static char_u
**reg_endp
= NULL
;
3151 static lpos_T
*reg_startpos
= NULL
;
3152 static lpos_T
*reg_endpos
= NULL
;
3153 static win_T
*reg_win
;
3154 static buf_T
*reg_buf
;
3155 static linenr_T reg_firstlnum
;
3156 static linenr_T reg_maxline
;
3157 static int reg_line_lbr
; /* "\n" in string is line break */
3159 /* Values for rs_state in regitem_T. */
3160 typedef enum regstate_E
3162 RS_NOPEN
= 0 /* NOPEN and NCLOSE */
3163 , RS_MOPEN
/* MOPEN + [0-9] */
3164 , RS_MCLOSE
/* MCLOSE + [0-9] */
3166 , RS_ZOPEN
/* ZOPEN + [0-9] */
3167 , RS_ZCLOSE
/* ZCLOSE + [0-9] */
3169 , RS_BRANCH
/* BRANCH */
3170 , RS_BRCPLX_MORE
/* BRACE_COMPLEX and trying one more match */
3171 , RS_BRCPLX_LONG
/* BRACE_COMPLEX and trying longest match */
3172 , RS_BRCPLX_SHORT
/* BRACE_COMPLEX and trying shortest match */
3173 , RS_NOMATCH
/* NOMATCH */
3174 , RS_BEHIND1
/* BEHIND / NOBEHIND matching rest */
3175 , RS_BEHIND2
/* BEHIND / NOBEHIND matching behind part */
3176 , RS_STAR_LONG
/* STAR/PLUS/BRACE_SIMPLE longest match */
3177 , RS_STAR_SHORT
/* STAR/PLUS/BRACE_SIMPLE shortest match */
3181 * When there are alternatives a regstate_T is put on the regstack to remember
3182 * what we are doing.
3183 * Before it may be another type of item, depending on rs_state, to remember
3186 typedef struct regitem_S
3188 regstate_T rs_state
; /* what we are doing, one of RS_ above */
3189 char_u
*rs_scan
; /* current node in program */
3194 } rs_un
; /* room for saving reginput */
3195 short rs_no
; /* submatch nr or BEHIND/NOBEHIND */
3198 static regitem_T
*regstack_push
__ARGS((regstate_T state
, char_u
*scan
));
3199 static void regstack_pop
__ARGS((char_u
**scan
));
3201 /* used for STAR, PLUS and BRACE_SIMPLE matching */
3202 typedef struct regstar_S
3204 int nextb
; /* next byte */
3205 int nextb_ic
; /* next byte reverse case */
3211 /* used to store input position when a BACK was encountered, so that we now if
3212 * we made any progress since the last time. */
3213 typedef struct backpos_S
3215 char_u
*bp_scan
; /* "scan" where BACK was encountered */
3216 regsave_T bp_pos
; /* last input position */
3220 * "regstack" and "backpos" are used by regmatch(). They are kept over calls
3221 * to avoid invoking malloc() and free() often.
3222 * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T
3224 * "backpos_T" is a table with backpos_T for BACK
3226 static garray_T regstack
= {0, 0, 0, 0, NULL
};
3227 static garray_T backpos
= {0, 0, 0, 0, NULL
};
3230 * Both for regstack and backpos tables we use the following strategy of
3231 * allocation (to reduce malloc/free calls):
3232 * - Initial size is fairly small.
3233 * - When needed, the tables are grown bigger (8 times at first, double after
3235 * - After executing the match we free the memory only if the array has grown.
3236 * Thus the memory is kept allocated when it's at the initial size.
3237 * This makes it fast while not keeping a lot of memory allocated.
3238 * A three times speed increase was observed when using many simple patterns.
3240 #define REGSTACK_INITIAL 2048
3241 #define BACKPOS_INITIAL 64
3243 #if defined(EXITFREE) || defined(PROTO)
3247 ga_clear(®stack
);
3249 vim_free(reg_tofree
);
3250 vim_free(reg_prev_sub
);
3255 * Get pointer to the line "lnum", which is relative to "reg_firstlnum".
3261 /* when looking behind for a match/no-match lnum is negative. But we
3262 * can't go before line 1 */
3263 if (reg_firstlnum
+ lnum
< 1)
3265 if (lnum
> reg_maxline
)
3266 /* Must have matched the "\n" in the last line. */
3267 return (char_u
*)"";
3268 return ml_get_buf(reg_buf
, reg_firstlnum
+ lnum
, FALSE
);
3271 static regsave_T behind_pos
;
3274 static char_u
*reg_startzp
[NSUBEXP
]; /* Workspace to mark beginning */
3275 static char_u
*reg_endzp
[NSUBEXP
]; /* and end of \z(...\) matches */
3276 static lpos_T reg_startzpos
[NSUBEXP
]; /* idem, beginning pos */
3277 static lpos_T reg_endzpos
[NSUBEXP
]; /* idem, end pos */
3280 /* TRUE if using multi-line regexp. */
3281 #define REG_MULTI (reg_match == NULL)
3284 * Match a regexp against a string.
3285 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3286 * Uses curbuf for line count and 'iskeyword'.
3288 * Return TRUE if there is a match, FALSE if not.
3291 vim_regexec(rmp
, line
, col
)
3293 char_u
*line
; /* string to match against */
3294 colnr_T col
; /* column to start looking for match */
3299 reg_line_lbr
= FALSE
;
3301 ireg_ic
= rmp
->rm_ic
;
3303 ireg_icombine
= FALSE
;
3306 return (vim_regexec_both(line
, col
, NULL
) != 0);
3309 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
3310 || defined(FIND_REPLACE_DIALOG) || defined(PROTO)
3312 * Like vim_regexec(), but consider a "\n" in "line" to be a line break.
3315 vim_regexec_nl(rmp
, line
, col
)
3317 char_u
*line
; /* string to match against */
3318 colnr_T col
; /* column to start looking for match */
3323 reg_line_lbr
= TRUE
;
3325 ireg_ic
= rmp
->rm_ic
;
3327 ireg_icombine
= FALSE
;
3330 return (vim_regexec_both(line
, col
, NULL
) != 0);
3335 * Match a regexp against multiple lines.
3336 * "rmp->regprog" is a compiled regexp as returned by vim_regcomp().
3337 * Uses curbuf for line count and 'iskeyword'.
3339 * Return zero if there is no match. Return number of lines contained in the
3343 vim_regexec_multi(rmp
, win
, buf
, lnum
, col
, tm
)
3345 win_T
*win
; /* window in which to search or NULL */
3346 buf_T
*buf
; /* buffer in which to search */
3347 linenr_T lnum
; /* nr of line to start looking for match */
3348 colnr_T col
; /* column to start looking for match */
3349 proftime_T
*tm
; /* timeout limit or NULL */
3352 buf_T
*save_curbuf
= curbuf
;
3358 reg_firstlnum
= lnum
;
3359 reg_maxline
= reg_buf
->b_ml
.ml_line_count
- lnum
;
3360 reg_line_lbr
= FALSE
;
3361 ireg_ic
= rmp
->rmm_ic
;
3363 ireg_icombine
= FALSE
;
3365 ireg_maxcol
= rmp
->rmm_maxcol
;
3367 /* Need to switch to buffer "buf" to make vim_iswordc() work. */
3369 r
= vim_regexec_both(NULL
, col
, tm
);
3370 curbuf
= save_curbuf
;
3376 * Match a regexp against a string ("line" points to the string) or multiple
3377 * lines ("line" is NULL, use reg_getline()).
3380 vim_regexec_both(line
, col
, tm
)
3382 colnr_T col
; /* column to start looking for match */
3383 proftime_T
*tm UNUSED
; /* timeout limit or NULL */
3389 /* Create "regstack" and "backpos" if they are not allocated yet.
3390 * We allocate *_INITIAL amount of bytes first and then set the grow size
3391 * to much bigger value to avoid many malloc calls in case of deep regular
3393 if (regstack
.ga_data
== NULL
)
3395 /* Use an item size of 1 byte, since we push different things
3396 * onto the regstack. */
3397 ga_init2(®stack
, 1, REGSTACK_INITIAL
);
3398 ga_grow(®stack
, REGSTACK_INITIAL
);
3399 regstack
.ga_growsize
= REGSTACK_INITIAL
* 8;
3402 if (backpos
.ga_data
== NULL
)
3404 ga_init2(&backpos
, sizeof(backpos_T
), BACKPOS_INITIAL
);
3405 ga_grow(&backpos
, BACKPOS_INITIAL
);
3406 backpos
.ga_growsize
= BACKPOS_INITIAL
* 8;
3411 prog
= reg_mmatch
->regprog
;
3412 line
= reg_getline((linenr_T
)0);
3413 reg_startpos
= reg_mmatch
->startpos
;
3414 reg_endpos
= reg_mmatch
->endpos
;
3418 prog
= reg_match
->regprog
;
3419 reg_startp
= reg_match
->startp
;
3420 reg_endp
= reg_match
->endp
;
3423 /* Be paranoid... */
3424 if (prog
== NULL
|| line
== NULL
)
3430 /* Check validity of program. */
3431 if (prog_magic_wrong())
3434 /* If the start column is past the maximum column: no need to try. */
3435 if (ireg_maxcol
> 0 && col
>= ireg_maxcol
)
3438 /* If pattern contains "\c" or "\C": overrule value of ireg_ic */
3439 if (prog
->regflags
& RF_ICASE
)
3441 else if (prog
->regflags
& RF_NOICASE
)
3445 /* If pattern contains "\Z" overrule value of ireg_icombine */
3446 if (prog
->regflags
& RF_ICOMBINE
)
3447 ireg_icombine
= TRUE
;
3450 /* If there is a "must appear" string, look for it. */
3451 if (prog
->regmust
!= NULL
)
3457 c
= (*mb_ptr2char
)(prog
->regmust
);
3464 * This is used very often, esp. for ":global". Use three versions of
3465 * the loop to avoid overhead of conditions.
3472 while ((s
= vim_strbyte(s
, c
)) != NULL
)
3474 if (cstrncmp(s
, prog
->regmust
, &prog
->regmlen
) == 0)
3475 break; /* Found it. */
3479 else if (!ireg_ic
|| (!enc_utf8
&& mb_char2len(c
) > 1))
3480 while ((s
= vim_strchr(s
, c
)) != NULL
)
3482 if (cstrncmp(s
, prog
->regmust
, &prog
->regmlen
) == 0)
3483 break; /* Found it. */
3488 while ((s
= cstrchr(s
, c
)) != NULL
)
3490 if (cstrncmp(s
, prog
->regmust
, &prog
->regmlen
) == 0)
3491 break; /* Found it. */
3494 if (s
== NULL
) /* Not present. */
3501 /* Simplest case: Anchored match need be tried only once. */
3508 c
= (*mb_ptr2char
)(regline
+ col
);
3512 if (prog
->regstart
== NUL
3513 || prog
->regstart
== c
3516 (enc_utf8
&& utf_fold(prog
->regstart
) == utf_fold(c
)))
3517 || (c
< 255 && prog
->regstart
< 255 &&
3519 MB_TOLOWER(prog
->regstart
) == MB_TOLOWER(c
)))))
3520 retval
= regtry(prog
, col
);
3529 /* Messy cases: unanchored match. */
3532 if (prog
->regstart
!= NUL
)
3534 /* Skip until the char we know it must start with.
3535 * Used often, do some work to avoid call overhead. */
3541 s
= vim_strbyte(regline
+ col
, prog
->regstart
);
3543 s
= cstrchr(regline
+ col
, prog
->regstart
);
3549 col
= (int)(s
- regline
);
3552 /* Check for maximum column to try. */
3553 if (ireg_maxcol
> 0 && col
>= ireg_maxcol
)
3559 retval
= regtry(prog
, col
);
3563 /* if not currently on the first line, get it again */
3567 regline
= reg_getline((linenr_T
)0);
3569 if (regline
[col
] == NUL
)
3573 col
+= (*mb_ptr2len
)(regline
+ col
);
3578 /* Check for timeout once in a twenty times to avoid overhead. */
3579 if (tm
!= NULL
&& ++tm_count
== 20)
3582 if (profile_passed_limit(tm
))
3590 /* Free "reg_tofree" when it's a bit big.
3591 * Free regstack and backpos if they are bigger than their initial size. */
3592 if (reg_tofreelen
> 400)
3594 vim_free(reg_tofree
);
3597 if (regstack
.ga_maxlen
> REGSTACK_INITIAL
)
3598 ga_clear(®stack
);
3599 if (backpos
.ga_maxlen
> BACKPOS_INITIAL
)
3606 static reg_extmatch_T
*make_extmatch
__ARGS((void));
3609 * Create a new extmatch and mark it as referenced once.
3611 static reg_extmatch_T
*
3616 em
= (reg_extmatch_T
*)alloc_clear((unsigned)sizeof(reg_extmatch_T
));
3623 * Add a reference to an extmatch.
3635 * Remove a reference to an extmatch. If there are no references left, free
3644 if (em
!= NULL
&& --em
->refcnt
<= 0)
3646 for (i
= 0; i
< NSUBEXP
; ++i
)
3647 vim_free(em
->matches
[i
]);
3654 * regtry - try match of "prog" with at regline["col"].
3655 * Returns 0 for failure, number of lines contained in the match otherwise.
3662 reginput
= regline
+ col
;
3663 need_clear_subexpr
= TRUE
;
3665 /* Clear the external match subpointers if necessary. */
3666 if (prog
->reghasz
== REX_SET
)
3667 need_clear_zsubexpr
= TRUE
;
3670 if (regmatch(prog
->program
+ 1) == 0)
3676 if (reg_startpos
[0].lnum
< 0)
3678 reg_startpos
[0].lnum
= 0;
3679 reg_startpos
[0].col
= col
;
3681 if (reg_endpos
[0].lnum
< 0)
3683 reg_endpos
[0].lnum
= reglnum
;
3684 reg_endpos
[0].col
= (int)(reginput
- regline
);
3687 /* Use line number of "\ze". */
3688 reglnum
= reg_endpos
[0].lnum
;
3692 if (reg_startp
[0] == NULL
)
3693 reg_startp
[0] = regline
+ col
;
3694 if (reg_endp
[0] == NULL
)
3695 reg_endp
[0] = reginput
;
3698 /* Package any found \z(...\) matches for export. Default is none. */
3699 unref_extmatch(re_extmatch_out
);
3700 re_extmatch_out
= NULL
;
3702 if (prog
->reghasz
== REX_SET
)
3707 re_extmatch_out
= make_extmatch();
3708 for (i
= 0; i
< NSUBEXP
; i
++)
3712 /* Only accept single line matches. */
3713 if (reg_startzpos
[i
].lnum
>= 0
3714 && reg_endzpos
[i
].lnum
== reg_startzpos
[i
].lnum
)
3715 re_extmatch_out
->matches
[i
] =
3716 vim_strnsave(reg_getline(reg_startzpos
[i
].lnum
)
3717 + reg_startzpos
[i
].col
,
3718 reg_endzpos
[i
].col
- reg_startzpos
[i
].col
);
3722 if (reg_startzp
[i
] != NULL
&& reg_endzp
[i
] != NULL
)
3723 re_extmatch_out
->matches
[i
] =
3724 vim_strnsave(reg_startzp
[i
],
3725 (int)(reg_endzp
[i
] - reg_startzp
[i
]));
3734 static int reg_prev_class
__ARGS((void));
3737 * Get class of previous character.
3742 if (reginput
> regline
)
3743 return mb_get_class(reginput
- 1
3744 - (*mb_head_off
)(regline
, reginput
- 1));
3749 #define ADVANCE_REGINPUT() mb_ptr_adv(reginput)
3752 * The arguments from BRACE_LIMITS are stored here. They are actually local
3753 * to regmatch(), but they are here to reduce the amount of stack space used
3754 * (it can be called recursively many times).
3756 static long bl_minval
;
3757 static long bl_maxval
;
3760 * regmatch - main matching routine
3762 * Conceptually the strategy is simple: Check to see whether the current node
3763 * matches, push an item onto the regstack and loop to see whether the rest
3764 * matches, and then act accordingly. In practice we make some effort to
3765 * avoid using the regstack, in particular by going through "ordinary" nodes
3766 * (that don't need to know whether the rest of the match failed) by a nested
3769 * Returns TRUE when there is a match. Leaves reginput and reglnum just after
3770 * the last matched character.
3771 * Returns FALSE when there is no match. Leaves reginput and reglnum in an
3776 char_u
*scan
; /* Current node. */
3778 char_u
*next
; /* Next node. */
3783 int status
; /* one of the RA_ values: */
3784 #define RA_FAIL 1 /* something failed, abort */
3785 #define RA_CONT 2 /* continue in inner loop */
3786 #define RA_BREAK 3 /* break inner loop */
3787 #define RA_MATCH 4 /* successful match */
3788 #define RA_NOMATCH 5 /* didn't match */
3790 /* Make "regstack" and "backpos" empty. They are allocated and freed in
3791 * vim_regexec_both() to reduce malloc()/free() calls. */
3792 regstack
.ga_len
= 0;
3796 * Repeat until "regstack" is empty.
3800 /* Some patterns my cause a long time to match, even though they are not
3801 * illegal. E.g., "\([a-z]\+\)\+Q". Allow breaking them with CTRL-C. */
3805 if (scan
!= NULL
&& regnarrate
)
3807 mch_errmsg(regprop(scan
));
3813 * Repeat for items that can be matched sequentially, without using the
3818 if (got_int
|| scan
== NULL
)
3828 mch_errmsg(regprop(scan
));
3829 mch_errmsg("...\n");
3831 if (re_extmatch_in
!= NULL
)
3835 mch_errmsg(_("External submatches:\n"));
3836 for (i
= 0; i
< NSUBEXP
; i
++)
3839 if (re_extmatch_in
->matches
[i
] != NULL
)
3840 mch_errmsg(re_extmatch_in
->matches
[i
]);
3847 next
= regnext(scan
);
3850 /* Check for character class with NL added. */
3851 if (!reg_line_lbr
&& WITH_NL(op
) && REG_MULTI
3852 && *reginput
== NUL
&& reglnum
<= reg_maxline
)
3856 else if (reg_line_lbr
&& WITH_NL(op
) && *reginput
== '\n')
3866 c
= (*mb_ptr2char
)(reginput
);
3873 if (reginput
!= regline
)
3874 status
= RA_NOMATCH
;
3879 status
= RA_NOMATCH
;
3883 /* We're not at the beginning of the file when below the first
3884 * line where we started, not at the start of the line or we
3885 * didn't start at the first line of the buffer. */
3886 if (reglnum
!= 0 || reginput
!= regline
3887 || (REG_MULTI
&& reg_firstlnum
> 1))
3888 status
= RA_NOMATCH
;
3892 if (reglnum
!= reg_maxline
|| c
!= NUL
)
3893 status
= RA_NOMATCH
;
3897 /* Check if the buffer is in a window and compare the
3898 * reg_win->w_cursor position to the match position. */
3900 || (reglnum
+ reg_firstlnum
!= reg_win
->w_cursor
.lnum
)
3901 || ((colnr_T
)(reginput
- regline
) != reg_win
->w_cursor
.col
))
3902 status
= RA_NOMATCH
;
3906 /* Compare the mark position to the match position. NOTE: Always
3907 * uses the current buffer. */
3909 int mark
= OPERAND(scan
)[0];
3910 int cmp
= OPERAND(scan
)[1];
3913 pos
= getmark(mark
, FALSE
);
3914 if (pos
== NULL
/* mark doesn't exist */
3915 || pos
->lnum
<= 0 /* mark isn't set (in curbuf) */
3916 || (pos
->lnum
== reglnum
+ reg_firstlnum
3917 ? (pos
->col
== (colnr_T
)(reginput
- regline
)
3918 ? (cmp
== '<' || cmp
== '>')
3919 : (pos
->col
< (colnr_T
)(reginput
- regline
)
3922 : (pos
->lnum
< reglnum
+ reg_firstlnum
3925 status
= RA_NOMATCH
;
3931 /* Check if the buffer is the current buffer. and whether the
3932 * position is inside the Visual area. */
3933 if (reg_buf
!= curbuf
|| VIsual
.lnum
== 0)
3934 status
= RA_NOMATCH
;
3940 win_T
*wp
= reg_win
== NULL
? curwin
: reg_win
;
3945 if (lt(VIsual
, wp
->w_cursor
))
3959 if (lt(curbuf
->b_visual
.vi_start
, curbuf
->b_visual
.vi_end
))
3961 top
= curbuf
->b_visual
.vi_start
;
3962 bot
= curbuf
->b_visual
.vi_end
;
3966 top
= curbuf
->b_visual
.vi_end
;
3967 bot
= curbuf
->b_visual
.vi_start
;
3969 mode
= curbuf
->b_visual
.vi_mode
;
3971 lnum
= reglnum
+ reg_firstlnum
;
3972 col
= (colnr_T
)(reginput
- regline
);
3973 if (lnum
< top
.lnum
|| lnum
> bot
.lnum
)
3974 status
= RA_NOMATCH
;
3975 else if (mode
== 'v')
3977 if ((lnum
== top
.lnum
&& col
< top
.col
)
3978 || (lnum
== bot
.lnum
3979 && col
>= bot
.col
+ (*p_sel
!= 'e')))
3980 status
= RA_NOMATCH
;
3982 else if (mode
== Ctrl_V
)
3985 colnr_T start2
, end2
;
3988 getvvcol(wp
, &top
, &start
, NULL
, &end
);
3989 getvvcol(wp
, &bot
, &start2
, NULL
, &end2
);
3994 if (top
.col
== MAXCOL
|| bot
.col
== MAXCOL
)
3996 cols
= win_linetabsize(wp
,
3997 regline
, (colnr_T
)(reginput
- regline
));
3998 if (cols
< start
|| cols
> end
- (*p_sel
== 'e'))
3999 status
= RA_NOMATCH
;
4003 status
= RA_NOMATCH
;
4008 if (!REG_MULTI
|| !re_num_cmp((long_u
)(reglnum
+ reg_firstlnum
),
4010 status
= RA_NOMATCH
;
4014 if (!re_num_cmp((long_u
)(reginput
- regline
) + 1, scan
))
4015 status
= RA_NOMATCH
;
4019 if (!re_num_cmp((long_u
)win_linetabsize(
4020 reg_win
== NULL
? curwin
: reg_win
,
4021 regline
, (colnr_T
)(reginput
- regline
)) + 1, scan
))
4022 status
= RA_NOMATCH
;
4025 case BOW
: /* \<word; reginput points to w */
4026 if (c
== NUL
) /* Can't match at end of line */
4027 status
= RA_NOMATCH
;
4033 /* Get class of current and previous char (if it exists). */
4034 this_class
= mb_get_class(reginput
);
4035 if (this_class
<= 1)
4036 status
= RA_NOMATCH
; /* not on a word at all */
4037 else if (reg_prev_class() == this_class
)
4038 status
= RA_NOMATCH
; /* previous char is in same word */
4044 || (reginput
> regline
&& vim_iswordc(reginput
[-1])))
4045 status
= RA_NOMATCH
;
4049 case EOW
: /* word\>; reginput points after d */
4050 if (reginput
== regline
) /* Can't match at start of line */
4051 status
= RA_NOMATCH
;
4055 int this_class
, prev_class
;
4057 /* Get class of current and previous char (if it exists). */
4058 this_class
= mb_get_class(reginput
);
4059 prev_class
= reg_prev_class();
4060 if (this_class
== prev_class
4061 || prev_class
== 0 || prev_class
== 1)
4062 status
= RA_NOMATCH
;
4067 if (!vim_iswordc(reginput
[-1])
4068 || (reginput
[0] != NUL
&& vim_iswordc(c
)))
4069 status
= RA_NOMATCH
;
4071 break; /* Matched with EOW */
4075 status
= RA_NOMATCH
;
4082 status
= RA_NOMATCH
;
4088 if (VIM_ISDIGIT(*reginput
) || !vim_isIDc(c
))
4089 status
= RA_NOMATCH
;
4095 if (!vim_iswordp(reginput
))
4096 status
= RA_NOMATCH
;
4102 if (VIM_ISDIGIT(*reginput
) || !vim_iswordp(reginput
))
4103 status
= RA_NOMATCH
;
4109 if (!vim_isfilec(c
))
4110 status
= RA_NOMATCH
;
4116 if (VIM_ISDIGIT(*reginput
) || !vim_isfilec(c
))
4117 status
= RA_NOMATCH
;
4123 if (ptr2cells(reginput
) != 1)
4124 status
= RA_NOMATCH
;
4130 if (VIM_ISDIGIT(*reginput
) || ptr2cells(reginput
) != 1)
4131 status
= RA_NOMATCH
;
4137 if (!vim_iswhite(c
))
4138 status
= RA_NOMATCH
;
4144 if (c
== NUL
|| vim_iswhite(c
))
4145 status
= RA_NOMATCH
;
4152 status
= RA_NOMATCH
;
4158 if (c
== NUL
|| ri_digit(c
))
4159 status
= RA_NOMATCH
;
4166 status
= RA_NOMATCH
;
4172 if (c
== NUL
|| ri_hex(c
))
4173 status
= RA_NOMATCH
;
4180 status
= RA_NOMATCH
;
4186 if (c
== NUL
|| ri_octal(c
))
4187 status
= RA_NOMATCH
;
4194 status
= RA_NOMATCH
;
4200 if (c
== NUL
|| ri_word(c
))
4201 status
= RA_NOMATCH
;
4208 status
= RA_NOMATCH
;
4214 if (c
== NUL
|| ri_head(c
))
4215 status
= RA_NOMATCH
;
4222 status
= RA_NOMATCH
;
4228 if (c
== NUL
|| ri_alpha(c
))
4229 status
= RA_NOMATCH
;
4236 status
= RA_NOMATCH
;
4242 if (c
== NUL
|| ri_lower(c
))
4243 status
= RA_NOMATCH
;
4250 status
= RA_NOMATCH
;
4256 if (c
== NUL
|| ri_upper(c
))
4257 status
= RA_NOMATCH
;
4267 opnd
= OPERAND(scan
);
4268 /* Inline the first byte, for speed. */
4269 if (*opnd
!= *reginput
4274 MB_TOLOWER(*opnd
) != MB_TOLOWER(*reginput
))))
4275 status
= RA_NOMATCH
;
4276 else if (*opnd
== NUL
)
4278 /* match empty string always works; happens when "~" is
4281 else if (opnd
[1] == NUL
4283 && !(enc_utf8
&& ireg_ic
)
4286 ++reginput
; /* matched a single char */
4289 len
= (int)STRLEN(opnd
);
4290 /* Need to match first byte again for multi-byte. */
4291 if (cstrncmp(opnd
, reginput
, &len
) != 0)
4292 status
= RA_NOMATCH
;
4294 /* Check for following composing character. */
4296 && UTF_COMPOSINGLIKE(reginput
, reginput
+ len
))
4298 /* raaron: This code makes a composing character get
4299 * ignored, which is the correct behavior (sometimes)
4300 * for voweled Hebrew texts. */
4302 status
= RA_NOMATCH
;
4314 status
= RA_NOMATCH
;
4315 else if ((cstrchr(OPERAND(scan
), c
) == NULL
) == (op
== ANYOF
))
4316 status
= RA_NOMATCH
;
4327 int opndc
= 0, inpc
;
4329 opnd
= OPERAND(scan
);
4330 /* Safety check (just in case 'encoding' was changed since
4331 * compiling the program). */
4332 if ((len
= (*mb_ptr2len
)(opnd
)) < 2)
4334 status
= RA_NOMATCH
;
4338 opndc
= mb_ptr2char(opnd
);
4339 if (enc_utf8
&& utf_iscomposing(opndc
))
4341 /* When only a composing char is given match at any
4342 * position where that composing char appears. */
4343 status
= RA_NOMATCH
;
4344 for (i
= 0; reginput
[i
] != NUL
; i
+= utf_char2len(inpc
))
4346 inpc
= mb_ptr2char(reginput
+ i
);
4347 if (!utf_iscomposing(inpc
))
4352 else if (opndc
== inpc
)
4354 /* Include all following composing chars. */
4355 len
= i
+ mb_ptr2len(reginput
+ i
);
4362 for (i
= 0; i
< len
; ++i
)
4363 if (opnd
[i
] != reginput
[i
])
4365 status
= RA_NOMATCH
;
4371 status
= RA_NOMATCH
;
4384 * When we run into BACK we need to check if we don't keep
4385 * looping without matching any input. The second and later
4386 * times a BACK is encountered it fails if the input is still
4387 * at the same position as the previous time.
4388 * The positions are stored in "backpos" and found by the
4389 * current value of "scan", the position in the RE program.
4391 bp
= (backpos_T
*)backpos
.ga_data
;
4392 for (i
= 0; i
< backpos
.ga_len
; ++i
)
4393 if (bp
[i
].bp_scan
== scan
)
4395 if (i
== backpos
.ga_len
)
4397 /* First time at this BACK, make room to store the pos. */
4398 if (ga_grow(&backpos
, 1) == FAIL
)
4402 /* get "ga_data" again, it may have changed */
4403 bp
= (backpos_T
*)backpos
.ga_data
;
4404 bp
[i
].bp_scan
= scan
;
4408 else if (reg_save_equal(&bp
[i
].bp_pos
))
4409 /* Still at same position as last time, fail. */
4410 status
= RA_NOMATCH
;
4412 if (status
!= RA_FAIL
&& status
!= RA_NOMATCH
)
4413 reg_save(&bp
[i
].bp_pos
, &backpos
);
4417 case MOPEN
+ 0: /* Match start: \zs */
4418 case MOPEN
+ 1: /* \( */
4430 rp
= regstack_push(RS_MOPEN
, scan
);
4436 save_se(&rp
->rs_un
.sesave
, ®_startpos
[no
],
4438 /* We simply continue and handle the result when done. */
4443 case NOPEN
: /* \%( */
4444 case NCLOSE
: /* \) after \%( */
4445 if (regstack_push(RS_NOPEN
, scan
) == NULL
)
4447 /* We simply continue and handle the result when done. */
4463 rp
= regstack_push(RS_ZOPEN
, scan
);
4469 save_se(&rp
->rs_un
.sesave
, ®_startzpos
[no
],
4471 /* We simply continue and handle the result when done. */
4477 case MCLOSE
+ 0: /* Match end: \ze */
4478 case MCLOSE
+ 1: /* \) */
4490 rp
= regstack_push(RS_MCLOSE
, scan
);
4496 save_se(&rp
->rs_un
.sesave
, ®_endpos
[no
], ®_endp
[no
]);
4497 /* We simply continue and handle the result when done. */
4503 case ZCLOSE
+ 1: /* \) after \z( */
4515 rp
= regstack_push(RS_ZCLOSE
, scan
);
4521 save_se(&rp
->rs_un
.sesave
, ®_endzpos
[no
],
4523 /* We simply continue and handle the result when done. */
4546 if (!REG_MULTI
) /* Single-line regexp */
4548 if (reg_startp
[no
] == NULL
|| reg_endp
[no
] == NULL
)
4550 /* Backref was not set: Match an empty string. */
4555 /* Compare current input with back-ref in the same
4557 len
= (int)(reg_endp
[no
] - reg_startp
[no
]);
4558 if (cstrncmp(reg_startp
[no
], reginput
, &len
) != 0)
4559 status
= RA_NOMATCH
;
4562 else /* Multi-line regexp */
4564 if (reg_startpos
[no
].lnum
< 0 || reg_endpos
[no
].lnum
< 0)
4566 /* Backref was not set: Match an empty string. */
4571 if (reg_startpos
[no
].lnum
== reglnum
4572 && reg_endpos
[no
].lnum
== reglnum
)
4574 /* Compare back-ref within the current line. */
4575 len
= reg_endpos
[no
].col
- reg_startpos
[no
].col
;
4576 if (cstrncmp(regline
+ reg_startpos
[no
].col
,
4577 reginput
, &len
) != 0)
4578 status
= RA_NOMATCH
;
4582 /* Messy situation: Need to compare between two
4584 ccol
= reg_startpos
[no
].col
;
4585 clnum
= reg_startpos
[no
].lnum
;
4588 /* Since getting one line may invalidate
4589 * the other, need to make copy. Slow! */
4590 if (regline
!= reg_tofree
)
4592 len
= (int)STRLEN(regline
);
4593 if (reg_tofree
== NULL
4594 || len
>= (int)reg_tofreelen
)
4596 len
+= 50; /* get some extra */
4597 vim_free(reg_tofree
);
4598 reg_tofree
= alloc(len
);
4599 if (reg_tofree
== NULL
)
4601 status
= RA_FAIL
; /* outof memory!*/
4604 reg_tofreelen
= len
;
4606 STRCPY(reg_tofree
, regline
);
4607 reginput
= reg_tofree
4608 + (reginput
- regline
);
4609 regline
= reg_tofree
;
4612 /* Get the line to compare with. */
4613 p
= reg_getline(clnum
);
4614 if (clnum
== reg_endpos
[no
].lnum
)
4615 len
= reg_endpos
[no
].col
- ccol
;
4617 len
= (int)STRLEN(p
+ ccol
);
4619 if (cstrncmp(p
+ ccol
, reginput
, &len
) != 0)
4621 status
= RA_NOMATCH
; /* doesn't match */
4624 if (clnum
== reg_endpos
[no
].lnum
)
4625 break; /* match and at end! */
4626 if (reglnum
>= reg_maxline
)
4628 status
= RA_NOMATCH
; /* text too short */
4632 /* Advance to next line. */
4643 /* found a match! Note that regline may now point
4644 * to a copy of the line, that should not matter. */
4649 /* Matched the backref, skip over it. */
4669 if (re_extmatch_in
!= NULL
4670 && re_extmatch_in
->matches
[no
] != NULL
)
4672 len
= (int)STRLEN(re_extmatch_in
->matches
[no
]);
4673 if (cstrncmp(re_extmatch_in
->matches
[no
],
4674 reginput
, &len
) != 0)
4675 status
= RA_NOMATCH
;
4681 /* Backref was not set: Match an empty string. */
4689 if (OP(next
) != BRANCH
) /* No choice. */
4690 next
= OPERAND(scan
); /* Avoid recursion. */
4693 rp
= regstack_push(RS_BRANCH
, scan
);
4697 status
= RA_BREAK
; /* rest is below */
4704 if (OP(next
) == BRACE_SIMPLE
)
4706 bl_minval
= OPERAND_MIN(scan
);
4707 bl_maxval
= OPERAND_MAX(scan
);
4709 else if (OP(next
) >= BRACE_COMPLEX
4710 && OP(next
) < BRACE_COMPLEX
+ 10)
4712 no
= OP(next
) - BRACE_COMPLEX
;
4713 brace_min
[no
] = OPERAND_MIN(scan
);
4714 brace_max
[no
] = OPERAND_MAX(scan
);
4715 brace_count
[no
] = 0;
4719 EMSG(_(e_internal
)); /* Shouldn't happen */
4725 case BRACE_COMPLEX
+ 0:
4726 case BRACE_COMPLEX
+ 1:
4727 case BRACE_COMPLEX
+ 2:
4728 case BRACE_COMPLEX
+ 3:
4729 case BRACE_COMPLEX
+ 4:
4730 case BRACE_COMPLEX
+ 5:
4731 case BRACE_COMPLEX
+ 6:
4732 case BRACE_COMPLEX
+ 7:
4733 case BRACE_COMPLEX
+ 8:
4734 case BRACE_COMPLEX
+ 9:
4736 no
= op
- BRACE_COMPLEX
;
4739 /* If not matched enough times yet, try one more */
4740 if (brace_count
[no
] <= (brace_min
[no
] <= brace_max
[no
]
4741 ? brace_min
[no
] : brace_max
[no
]))
4743 rp
= regstack_push(RS_BRCPLX_MORE
, scan
);
4749 reg_save(&rp
->rs_un
.regsave
, &backpos
);
4750 next
= OPERAND(scan
);
4751 /* We continue and handle the result when done. */
4756 /* If matched enough times, may try matching some more */
4757 if (brace_min
[no
] <= brace_max
[no
])
4759 /* Range is the normal way around, use longest match */
4760 if (brace_count
[no
] <= brace_max
[no
])
4762 rp
= regstack_push(RS_BRCPLX_LONG
, scan
);
4768 reg_save(&rp
->rs_un
.regsave
, &backpos
);
4769 next
= OPERAND(scan
);
4770 /* We continue and handle the result when done. */
4776 /* Range is backwards, use shortest match first */
4777 if (brace_count
[no
] <= brace_min
[no
])
4779 rp
= regstack_push(RS_BRCPLX_SHORT
, scan
);
4784 reg_save(&rp
->rs_un
.regsave
, &backpos
);
4785 /* We continue and handle the result when done. */
4799 * Lookahead to avoid useless match attempts when we know
4800 * what character comes next.
4802 if (OP(next
) == EXACTLY
)
4804 rst
.nextb
= *OPERAND(next
);
4807 if (MB_ISUPPER(rst
.nextb
))
4808 rst
.nextb_ic
= MB_TOLOWER(rst
.nextb
);
4810 rst
.nextb_ic
= MB_TOUPPER(rst
.nextb
);
4813 rst
.nextb_ic
= rst
.nextb
;
4820 if (op
!= BRACE_SIMPLE
)
4822 rst
.minval
= (op
== STAR
) ? 0 : 1;
4823 rst
.maxval
= MAX_LIMIT
;
4827 rst
.minval
= bl_minval
;
4828 rst
.maxval
= bl_maxval
;
4832 * When maxval > minval, try matching as much as possible, up
4833 * to maxval. When maxval < minval, try matching at least the
4834 * minimal number (since the range is backwards, that's also
4837 rst
.count
= regrepeat(OPERAND(scan
), rst
.maxval
);
4843 if (rst
.minval
<= rst
.maxval
4844 ? rst
.count
>= rst
.minval
: rst
.count
>= rst
.maxval
)
4846 /* It could match. Prepare for trying to match what
4847 * follows. The code is below. Parameters are stored in
4848 * a regstar_T on the regstack. */
4849 if ((long)((unsigned)regstack
.ga_len
>> 10) >= p_mmp
)
4851 EMSG(_(e_maxmempat
));
4854 else if (ga_grow(®stack
, sizeof(regstar_T
)) == FAIL
)
4858 regstack
.ga_len
+= sizeof(regstar_T
);
4859 rp
= regstack_push(rst
.minval
<= rst
.maxval
4860 ? RS_STAR_LONG
: RS_STAR_SHORT
, scan
);
4865 *(((regstar_T
*)rp
) - 1) = rst
;
4866 status
= RA_BREAK
; /* skip the restore bits */
4871 status
= RA_NOMATCH
;
4879 rp
= regstack_push(RS_NOMATCH
, scan
);
4885 reg_save(&rp
->rs_un
.regsave
, &backpos
);
4886 next
= OPERAND(scan
);
4887 /* We continue and handle the result when done. */
4893 /* Need a bit of room to store extra positions. */
4894 if ((long)((unsigned)regstack
.ga_len
>> 10) >= p_mmp
)
4896 EMSG(_(e_maxmempat
));
4899 else if (ga_grow(®stack
, sizeof(regbehind_T
)) == FAIL
)
4903 regstack
.ga_len
+= sizeof(regbehind_T
);
4904 rp
= regstack_push(RS_BEHIND1
, scan
);
4909 /* Need to save the subexpr to be able to restore them
4910 * when there is a match but we don't use it. */
4911 save_subexpr(((regbehind_T
*)rp
) - 1);
4914 reg_save(&rp
->rs_un
.regsave
, &backpos
);
4915 /* First try if what follows matches. If it does then we
4916 * check the behind match by looping. */
4924 if (behind_pos
.rs_u
.pos
.col
!= (colnr_T
)(reginput
- regline
)
4925 || behind_pos
.rs_u
.pos
.lnum
!= reglnum
)
4926 status
= RA_NOMATCH
;
4928 else if (behind_pos
.rs_u
.ptr
!= reginput
)
4929 status
= RA_NOMATCH
;
4933 if ((c
!= NUL
|| !REG_MULTI
|| reglnum
> reg_maxline
4934 || reg_line_lbr
) && (c
!= '\n' || !reg_line_lbr
))
4935 status
= RA_NOMATCH
;
4936 else if (reg_line_lbr
)
4943 status
= RA_MATCH
; /* Success! */
4949 printf("Illegal op code %d\n", op
);
4956 /* If we can't continue sequentially, break the inner loop. */
4957 if (status
!= RA_CONT
)
4960 /* Continue in inner loop, advance to next item. */
4963 } /* end of inner loop */
4966 * If there is something on the regstack execute the code for the state.
4967 * If the state is popped then loop and use the older state.
4969 while (regstack
.ga_len
> 0 && status
!= RA_FAIL
)
4971 rp
= (regitem_T
*)((char *)regstack
.ga_data
+ regstack
.ga_len
) - 1;
4972 switch (rp
->rs_state
)
4975 /* Result is passed on as-is, simply pop the state. */
4976 regstack_pop(&scan
);
4980 /* Pop the state. Restore pointers when there is no match. */
4981 if (status
== RA_NOMATCH
)
4982 restore_se(&rp
->rs_un
.sesave
, ®_startpos
[rp
->rs_no
],
4983 ®_startp
[rp
->rs_no
]);
4984 regstack_pop(&scan
);
4989 /* Pop the state. Restore pointers when there is no match. */
4990 if (status
== RA_NOMATCH
)
4991 restore_se(&rp
->rs_un
.sesave
, ®_startzpos
[rp
->rs_no
],
4992 ®_startzp
[rp
->rs_no
]);
4993 regstack_pop(&scan
);
4998 /* Pop the state. Restore pointers when there is no match. */
4999 if (status
== RA_NOMATCH
)
5000 restore_se(&rp
->rs_un
.sesave
, ®_endpos
[rp
->rs_no
],
5001 ®_endp
[rp
->rs_no
]);
5002 regstack_pop(&scan
);
5007 /* Pop the state. Restore pointers when there is no match. */
5008 if (status
== RA_NOMATCH
)
5009 restore_se(&rp
->rs_un
.sesave
, ®_endzpos
[rp
->rs_no
],
5010 ®_endzp
[rp
->rs_no
]);
5011 regstack_pop(&scan
);
5016 if (status
== RA_MATCH
)
5017 /* this branch matched, use it */
5018 regstack_pop(&scan
);
5021 if (status
!= RA_BREAK
)
5023 /* After a non-matching branch: try next one. */
5024 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5027 if (scan
== NULL
|| OP(scan
) != BRANCH
)
5029 /* no more branches, didn't find a match */
5030 status
= RA_NOMATCH
;
5031 regstack_pop(&scan
);
5035 /* Prepare to try a branch. */
5036 rp
->rs_scan
= regnext(scan
);
5037 reg_save(&rp
->rs_un
.regsave
, &backpos
);
5038 scan
= OPERAND(scan
);
5043 case RS_BRCPLX_MORE
:
5044 /* Pop the state. Restore pointers when there is no match. */
5045 if (status
== RA_NOMATCH
)
5047 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5048 --brace_count
[rp
->rs_no
]; /* decrement match count */
5050 regstack_pop(&scan
);
5053 case RS_BRCPLX_LONG
:
5054 /* Pop the state. Restore pointers when there is no match. */
5055 if (status
== RA_NOMATCH
)
5057 /* There was no match, but we did find enough matches. */
5058 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5059 --brace_count
[rp
->rs_no
];
5060 /* continue with the items after "\{}" */
5063 regstack_pop(&scan
);
5064 if (status
== RA_CONT
)
5065 scan
= regnext(scan
);
5068 case RS_BRCPLX_SHORT
:
5069 /* Pop the state. Restore pointers when there is no match. */
5070 if (status
== RA_NOMATCH
)
5071 /* There was no match, try to match one more item. */
5072 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5073 regstack_pop(&scan
);
5074 if (status
== RA_NOMATCH
)
5076 scan
= OPERAND(scan
);
5082 /* Pop the state. If the operand matches for NOMATCH or
5083 * doesn't match for MATCH/SUBPAT, we fail. Otherwise backup,
5084 * except for SUBPAT, and continue with the next item. */
5085 if (status
== (rp
->rs_no
== NOMATCH
? RA_MATCH
: RA_NOMATCH
))
5086 status
= RA_NOMATCH
;
5090 if (rp
->rs_no
!= SUBPAT
) /* zero-width */
5091 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5093 regstack_pop(&scan
);
5094 if (status
== RA_CONT
)
5095 scan
= regnext(scan
);
5099 if (status
== RA_NOMATCH
)
5101 regstack_pop(&scan
);
5102 regstack
.ga_len
-= sizeof(regbehind_T
);
5106 /* The stuff after BEHIND/NOBEHIND matches. Now try if
5107 * the behind part does (not) match before the current
5108 * position in the input. This must be done at every
5109 * position in the input and checking if the match ends at
5110 * the current position. */
5112 /* save the position after the found match for next */
5113 reg_save(&(((regbehind_T
*)rp
) - 1)->save_after
, &backpos
);
5115 /* start looking for a match with operand at the current
5116 * position. Go back one character until we find the
5117 * result, hitting the start of the line or the previous
5118 * line (for multi-line matching).
5119 * Set behind_pos to where the match should end, BHPOS
5120 * will match it. Save the current value. */
5121 (((regbehind_T
*)rp
) - 1)->save_behind
= behind_pos
;
5122 behind_pos
= rp
->rs_un
.regsave
;
5124 rp
->rs_state
= RS_BEHIND2
;
5126 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5127 scan
= OPERAND(rp
->rs_scan
);
5133 * Looping for BEHIND / NOBEHIND match.
5135 if (status
== RA_MATCH
&& reg_save_equal(&behind_pos
))
5137 /* found a match that ends where "next" started */
5138 behind_pos
= (((regbehind_T
*)rp
) - 1)->save_behind
;
5139 if (rp
->rs_no
== BEHIND
)
5140 reg_restore(&(((regbehind_T
*)rp
) - 1)->save_after
,
5144 /* But we didn't want a match. Need to restore the
5145 * subexpr, because what follows matched, so they have
5147 status
= RA_NOMATCH
;
5148 restore_subexpr(((regbehind_T
*)rp
) - 1);
5150 regstack_pop(&scan
);
5151 regstack
.ga_len
-= sizeof(regbehind_T
);
5155 /* No match or a match that doesn't end where we want it: Go
5156 * back one character. May go to previous line once. */
5160 if (rp
->rs_un
.regsave
.rs_u
.pos
.col
== 0)
5162 if (rp
->rs_un
.regsave
.rs_u
.pos
.lnum
5163 < behind_pos
.rs_u
.pos
.lnum
5165 --rp
->rs_un
.regsave
.rs_u
.pos
.lnum
)
5170 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5171 rp
->rs_un
.regsave
.rs_u
.pos
.col
=
5172 (colnr_T
)STRLEN(regline
);
5176 --rp
->rs_un
.regsave
.rs_u
.pos
.col
;
5180 if (rp
->rs_un
.regsave
.rs_u
.ptr
== regline
)
5183 --rp
->rs_un
.regsave
.rs_u
.ptr
;
5187 /* Advanced, prepare for finding match again. */
5188 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5189 scan
= OPERAND(rp
->rs_scan
);
5190 if (status
== RA_MATCH
)
5192 /* We did match, so subexpr may have been changed,
5193 * need to restore them for the next try. */
5194 status
= RA_NOMATCH
;
5195 restore_subexpr(((regbehind_T
*)rp
) - 1);
5200 /* Can't advance. For NOBEHIND that's a match. */
5201 behind_pos
= (((regbehind_T
*)rp
) - 1)->save_behind
;
5202 if (rp
->rs_no
== NOBEHIND
)
5204 reg_restore(&(((regbehind_T
*)rp
) - 1)->save_after
,
5210 /* We do want a proper match. Need to restore the
5211 * subexpr if we had a match, because they may have
5213 if (status
== RA_MATCH
)
5215 status
= RA_NOMATCH
;
5216 restore_subexpr(((regbehind_T
*)rp
) - 1);
5219 regstack_pop(&scan
);
5220 regstack
.ga_len
-= sizeof(regbehind_T
);
5228 regstar_T
*rst
= ((regstar_T
*)rp
) - 1;
5230 if (status
== RA_MATCH
)
5232 regstack_pop(&scan
);
5233 regstack
.ga_len
-= sizeof(regstar_T
);
5237 /* Tried once already, restore input pointers. */
5238 if (status
!= RA_BREAK
)
5239 reg_restore(&rp
->rs_un
.regsave
, &backpos
);
5241 /* Repeat until we found a position where it could match. */
5244 if (status
!= RA_BREAK
)
5246 /* Tried first position already, advance. */
5247 if (rp
->rs_state
== RS_STAR_LONG
)
5249 /* Trying for longest match, but couldn't or
5250 * didn't match -- back up one char. */
5251 if (--rst
->count
< rst
->minval
)
5253 if (reginput
== regline
)
5255 /* backup to last char of previous line */
5257 regline
= reg_getline(reglnum
);
5258 /* Just in case regrepeat() didn't count
5260 if (regline
== NULL
)
5262 reginput
= regline
+ STRLEN(regline
);
5266 mb_ptr_back(regline
, reginput
);
5270 /* Range is backwards, use shortest match first.
5271 * Careful: maxval and minval are exchanged!
5272 * Couldn't or didn't match: try advancing one
5274 if (rst
->count
== rst
->minval
5275 || regrepeat(OPERAND(rp
->rs_scan
), 1L) == 0)
5283 status
= RA_NOMATCH
;
5285 /* If it could match, try it. */
5286 if (rst
->nextb
== NUL
|| *reginput
== rst
->nextb
5287 || *reginput
== rst
->nextb_ic
)
5289 reg_save(&rp
->rs_un
.regsave
, &backpos
);
5290 scan
= regnext(rp
->rs_scan
);
5295 if (status
!= RA_CONT
)
5298 regstack_pop(&scan
);
5299 regstack
.ga_len
-= sizeof(regstar_T
);
5300 status
= RA_NOMATCH
;
5306 /* If we want to continue the inner loop or didn't pop a state
5307 * continue matching loop */
5308 if (status
== RA_CONT
|| rp
== (regitem_T
*)
5309 ((char *)regstack
.ga_data
+ regstack
.ga_len
) - 1)
5313 /* May need to continue with the inner loop, starting at "scan". */
5314 if (status
== RA_CONT
)
5318 * If the regstack is empty or something failed we are done.
5320 if (regstack
.ga_len
== 0 || status
== RA_FAIL
)
5325 * We get here only if there's trouble -- normally "case END" is
5326 * the terminating point.
5330 printf("Premature EOL\n");
5333 if (status
== RA_FAIL
)
5335 return (status
== RA_MATCH
);
5338 } /* End of loop until the regstack is empty. */
5344 * Push an item onto the regstack.
5345 * Returns pointer to new item. Returns NULL when out of memory.
5348 regstack_push(state
, scan
)
5354 if ((long)((unsigned)regstack
.ga_len
>> 10) >= p_mmp
)
5356 EMSG(_(e_maxmempat
));
5359 if (ga_grow(®stack
, sizeof(regitem_T
)) == FAIL
)
5362 rp
= (regitem_T
*)((char *)regstack
.ga_data
+ regstack
.ga_len
);
5363 rp
->rs_state
= state
;
5366 regstack
.ga_len
+= sizeof(regitem_T
);
5371 * Pop an item from the regstack.
5379 rp
= (regitem_T
*)((char *)regstack
.ga_data
+ regstack
.ga_len
) - 1;
5380 *scan
= rp
->rs_scan
;
5382 regstack
.ga_len
-= sizeof(regitem_T
);
5386 * regrepeat - repeatedly match something simple, return how many.
5387 * Advances reginput (and reglnum) to just after the matched chars.
5390 regrepeat(p
, maxcount
)
5392 long maxcount
; /* maximum number of matches allowed */
5400 scan
= reginput
; /* Make local copy of reginput for speed. */
5406 while (count
< maxcount
)
5408 /* Matching anything means we continue until end-of-line (or
5409 * end-of-file for ANY + ADD_NL), only limited by maxcount. */
5410 while (*scan
!= NUL
&& count
< maxcount
)
5415 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5416 || reg_line_lbr
|| count
== maxcount
)
5418 ++count
; /* count the line-break */
5427 case IDENT
+ ADD_NL
:
5431 case SIDENT
+ ADD_NL
:
5432 while (count
< maxcount
)
5434 if (vim_isIDc(*scan
) && (testval
|| !VIM_ISDIGIT(*scan
)))
5438 else if (*scan
== NUL
)
5440 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5448 else if (reg_line_lbr
&& *scan
== '\n' && WITH_NL(OP(p
)))
5457 case KWORD
+ ADD_NL
:
5461 case SKWORD
+ ADD_NL
:
5462 while (count
< maxcount
)
5464 if (vim_iswordp(scan
) && (testval
|| !VIM_ISDIGIT(*scan
)))
5468 else if (*scan
== NUL
)
5470 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5478 else if (reg_line_lbr
&& *scan
== '\n' && WITH_NL(OP(p
)))
5487 case FNAME
+ ADD_NL
:
5491 case SFNAME
+ ADD_NL
:
5492 while (count
< maxcount
)
5494 if (vim_isfilec(*scan
) && (testval
|| !VIM_ISDIGIT(*scan
)))
5498 else if (*scan
== NUL
)
5500 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5508 else if (reg_line_lbr
&& *scan
== '\n' && WITH_NL(OP(p
)))
5517 case PRINT
+ ADD_NL
:
5521 case SPRINT
+ ADD_NL
:
5522 while (count
< maxcount
)
5526 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5534 else if (ptr2cells(scan
) == 1 && (testval
|| !VIM_ISDIGIT(*scan
)))
5538 else if (reg_line_lbr
&& *scan
== '\n' && WITH_NL(OP(p
)))
5547 case WHITE
+ ADD_NL
:
5548 testval
= mask
= RI_WHITE
;
5550 while (count
< maxcount
)
5557 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5566 else if (has_mbyte
&& (l
= (*mb_ptr2len
)(scan
)) > 1)
5573 else if ((class_tab
[*scan
] & mask
) == testval
)
5575 else if (reg_line_lbr
&& *scan
== '\n' && WITH_NL(OP(p
)))
5584 case NWHITE
+ ADD_NL
:
5588 case DIGIT
+ ADD_NL
:
5589 testval
= mask
= RI_DIGIT
;
5592 case NDIGIT
+ ADD_NL
:
5597 testval
= mask
= RI_HEX
;
5604 case OCTAL
+ ADD_NL
:
5605 testval
= mask
= RI_OCTAL
;
5608 case NOCTAL
+ ADD_NL
:
5613 testval
= mask
= RI_WORD
;
5616 case NWORD
+ ADD_NL
:
5621 testval
= mask
= RI_HEAD
;
5624 case NHEAD
+ ADD_NL
:
5628 case ALPHA
+ ADD_NL
:
5629 testval
= mask
= RI_ALPHA
;
5632 case NALPHA
+ ADD_NL
:
5636 case LOWER
+ ADD_NL
:
5637 testval
= mask
= RI_LOWER
;
5640 case NLOWER
+ ADD_NL
:
5644 case UPPER
+ ADD_NL
:
5645 testval
= mask
= RI_UPPER
;
5648 case NUPPER
+ ADD_NL
:
5656 /* This doesn't do a multi-byte character, because a MULTIBYTECODE
5657 * would have been used for it. It does handle single-byte
5658 * characters, such as latin1. */
5661 cu
= MB_TOUPPER(*opnd
);
5662 cl
= MB_TOLOWER(*opnd
);
5663 while (count
< maxcount
&& (*scan
== cu
|| *scan
== cl
))
5672 while (count
< maxcount
&& *scan
== cu
)
5686 /* Safety check (just in case 'encoding' was changed since
5687 * compiling the program). */
5688 if ((len
= (*mb_ptr2len
)(opnd
)) > 1)
5690 if (ireg_ic
&& enc_utf8
)
5691 cf
= utf_fold(utf_ptr2char(opnd
));
5692 while (count
< maxcount
)
5694 for (i
= 0; i
< len
; ++i
)
5695 if (opnd
[i
] != scan
[i
])
5697 if (i
< len
&& (!ireg_ic
|| !enc_utf8
5698 || utf_fold(utf_ptr2char(scan
)) != cf
))
5709 case ANYOF
+ ADD_NL
:
5714 case ANYBUT
+ ADD_NL
:
5715 while (count
< maxcount
)
5722 if (!REG_MULTI
|| !WITH_NL(OP(p
)) || reglnum
> reg_maxline
5730 else if (reg_line_lbr
&& *scan
== '\n' && WITH_NL(OP(p
)))
5733 else if (has_mbyte
&& (len
= (*mb_ptr2len
)(scan
)) > 1)
5735 if ((cstrchr(opnd
, (*mb_ptr2char
)(scan
)) == NULL
) == testval
)
5742 if ((cstrchr(opnd
, *scan
) == NULL
) == testval
)
5751 while (count
< maxcount
5752 && ((*scan
== NUL
&& reglnum
<= reg_maxline
&& !reg_line_lbr
5753 && REG_MULTI
) || (*scan
== '\n' && reg_line_lbr
)))
5766 default: /* Oh dear. Called inappropriately. */
5769 printf("Called regrepeat with op code %d\n", OP(p
));
5780 * regnext - dig the "next" pointer out of a node
5781 * Returns NULL when calculating size, when there is no next item and when
5782 * there is an error.
5790 if (p
== JUST_CALC_SIZE
|| reg_toolong
)
5804 * Check the regexp program for its magic number.
5805 * Return TRUE if it's wrong.
5810 if (UCHARAT(REG_MULTI
5811 ? reg_mmatch
->regprog
->program
5812 : reg_match
->regprog
->program
) != REGMAGIC
)
5821 * Cleanup the subexpressions, if this wasn't done yet.
5822 * This construction is used to clear the subexpressions only when they are
5823 * used (to increase speed).
5828 if (need_clear_subexpr
)
5832 /* Use 0xff to set lnum to -1 */
5833 vim_memset(reg_startpos
, 0xff, sizeof(lpos_T
) * NSUBEXP
);
5834 vim_memset(reg_endpos
, 0xff, sizeof(lpos_T
) * NSUBEXP
);
5838 vim_memset(reg_startp
, 0, sizeof(char_u
*) * NSUBEXP
);
5839 vim_memset(reg_endp
, 0, sizeof(char_u
*) * NSUBEXP
);
5841 need_clear_subexpr
= FALSE
;
5849 if (need_clear_zsubexpr
)
5853 /* Use 0xff to set lnum to -1 */
5854 vim_memset(reg_startzpos
, 0xff, sizeof(lpos_T
) * NSUBEXP
);
5855 vim_memset(reg_endzpos
, 0xff, sizeof(lpos_T
) * NSUBEXP
);
5859 vim_memset(reg_startzp
, 0, sizeof(char_u
*) * NSUBEXP
);
5860 vim_memset(reg_endzp
, 0, sizeof(char_u
*) * NSUBEXP
);
5862 need_clear_zsubexpr
= FALSE
;
5868 * Save the current subexpr to "bp", so that they can be restored
5869 * later by restore_subexpr().
5877 /* When "need_clear_subexpr" is set we don't need to save the values, only
5878 * remember that this flag needs to be set again when restoring. */
5879 bp
->save_need_clear_subexpr
= need_clear_subexpr
;
5880 if (!need_clear_subexpr
)
5882 for (i
= 0; i
< NSUBEXP
; ++i
)
5886 bp
->save_start
[i
].se_u
.pos
= reg_startpos
[i
];
5887 bp
->save_end
[i
].se_u
.pos
= reg_endpos
[i
];
5891 bp
->save_start
[i
].se_u
.ptr
= reg_startp
[i
];
5892 bp
->save_end
[i
].se_u
.ptr
= reg_endp
[i
];
5899 * Restore the subexpr from "bp".
5907 /* Only need to restore saved values when they are not to be cleared. */
5908 need_clear_subexpr
= bp
->save_need_clear_subexpr
;
5909 if (!need_clear_subexpr
)
5911 for (i
= 0; i
< NSUBEXP
; ++i
)
5915 reg_startpos
[i
] = bp
->save_start
[i
].se_u
.pos
;
5916 reg_endpos
[i
] = bp
->save_end
[i
].se_u
.pos
;
5920 reg_startp
[i
] = bp
->save_start
[i
].se_u
.ptr
;
5921 reg_endp
[i
] = bp
->save_end
[i
].se_u
.ptr
;
5928 * Advance reglnum, regline and reginput to the next line.
5933 regline
= reg_getline(++reglnum
);
5939 * Save the input line and position in a regsave_T.
5948 save
->rs_u
.pos
.col
= (colnr_T
)(reginput
- regline
);
5949 save
->rs_u
.pos
.lnum
= reglnum
;
5952 save
->rs_u
.ptr
= reginput
;
5953 save
->rs_len
= gap
->ga_len
;
5957 * Restore the input line and position from a regsave_T.
5960 reg_restore(save
, gap
)
5966 if (reglnum
!= save
->rs_u
.pos
.lnum
)
5968 /* only call reg_getline() when the line number changed to save
5970 reglnum
= save
->rs_u
.pos
.lnum
;
5971 regline
= reg_getline(reglnum
);
5973 reginput
= regline
+ save
->rs_u
.pos
.col
;
5976 reginput
= save
->rs_u
.ptr
;
5977 gap
->ga_len
= save
->rs_len
;
5981 * Return TRUE if current position is equal to saved position.
5984 reg_save_equal(save
)
5988 return reglnum
== save
->rs_u
.pos
.lnum
5989 && reginput
== regline
+ save
->rs_u
.pos
.col
;
5990 return reginput
== save
->rs_u
.ptr
;
5994 * Tentatively set the sub-expression start to the current position (after
5995 * calling regmatch() they will have changed). Need to save the existing
5996 * values for when there is no match.
5997 * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()),
5998 * depending on REG_MULTI.
6001 save_se_multi(savep
, posp
)
6005 savep
->se_u
.pos
= *posp
;
6006 posp
->lnum
= reglnum
;
6007 posp
->col
= (colnr_T
)(reginput
- regline
);
6011 save_se_one(savep
, pp
)
6015 savep
->se_u
.ptr
= *pp
;
6020 * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL.
6023 re_num_cmp(val
, scan
)
6027 long_u n
= OPERAND_MIN(scan
);
6029 if (OPERAND_CMP(scan
) == '>')
6031 if (OPERAND_CMP(scan
) == '<')
6040 * regdump - dump a regexp onto stdout in vaguely comprehensible form
6048 int op
= EXACTLY
; /* Arbitrary non-END op. */
6052 printf("\r\nregcomp(%s):\r\n", pattern
);
6056 * Loop until we find the END that isn't before a referred next (an END
6057 * can also appear in a NOMATCH operand).
6059 while (op
!= END
|| s
<= end
)
6062 printf("%2d%s", (int)(s
- r
->program
), regprop(s
)); /* Where, what. */
6064 if (next
== NULL
) /* Next ptr. */
6067 printf("(%d)", (int)((s
- r
->program
) + (next
- s
)));
6070 if (op
== BRACE_LIMITS
)
6072 /* Two short ints */
6073 printf(" minval %ld, maxval %ld", OPERAND_MIN(s
), OPERAND_MAX(s
));
6077 if (op
== ANYOF
|| op
== ANYOF
+ ADD_NL
6078 || op
== ANYBUT
|| op
== ANYBUT
+ ADD_NL
6081 /* Literal string, where present. */
6089 /* Header fields of interest. */
6090 if (r
->regstart
!= NUL
)
6091 printf("start `%s' 0x%x; ", r
->regstart
< 256
6092 ? (char *)transchar(r
->regstart
)
6093 : "multibyte", r
->regstart
);
6095 printf("anchored; ");
6096 if (r
->regmust
!= NULL
)
6097 printf("must have \"%s\"", r
->regmust
);
6102 * regprop - printable representation of opcode
6109 static char_u buf
[50];
6111 (void) strcpy(buf
, ":");
6160 case ANYOF
+ ADD_NL
:
6166 case ANYBUT
+ ADD_NL
:
6172 case IDENT
+ ADD_NL
:
6178 case SIDENT
+ ADD_NL
:
6184 case KWORD
+ ADD_NL
:
6190 case SKWORD
+ ADD_NL
:
6196 case FNAME
+ ADD_NL
:
6202 case SFNAME
+ ADD_NL
:
6208 case PRINT
+ ADD_NL
:
6214 case SPRINT
+ ADD_NL
:
6220 case WHITE
+ ADD_NL
:
6226 case NWHITE
+ ADD_NL
:
6232 case DIGIT
+ ADD_NL
:
6238 case NDIGIT
+ ADD_NL
:
6256 case OCTAL
+ ADD_NL
:
6262 case NOCTAL
+ ADD_NL
:
6274 case NWORD
+ ADD_NL
:
6286 case NHEAD
+ ADD_NL
:
6292 case ALPHA
+ ADD_NL
:
6298 case NALPHA
+ ADD_NL
:
6304 case LOWER
+ ADD_NL
:
6310 case NLOWER
+ ADD_NL
:
6316 case UPPER
+ ADD_NL
:
6322 case NUPPER
+ ADD_NL
:
6352 sprintf(buf
+ STRLEN(buf
), "MOPEN%d", OP(op
) - MOPEN
);
6367 sprintf(buf
+ STRLEN(buf
), "MCLOSE%d", OP(op
) - MCLOSE
);
6379 sprintf(buf
+ STRLEN(buf
), "BACKREF%d", OP(op
) - BACKREF
);
6398 sprintf(buf
+ STRLEN(buf
), "ZOPEN%d", OP(op
) - ZOPEN
);
6410 sprintf(buf
+ STRLEN(buf
), "ZCLOSE%d", OP(op
) - ZCLOSE
);
6422 sprintf(buf
+ STRLEN(buf
), "ZREF%d", OP(op
) - ZREF
);
6453 case BRACE_COMPLEX
+ 0:
6454 case BRACE_COMPLEX
+ 1:
6455 case BRACE_COMPLEX
+ 2:
6456 case BRACE_COMPLEX
+ 3:
6457 case BRACE_COMPLEX
+ 4:
6458 case BRACE_COMPLEX
+ 5:
6459 case BRACE_COMPLEX
+ 6:
6460 case BRACE_COMPLEX
+ 7:
6461 case BRACE_COMPLEX
+ 8:
6462 case BRACE_COMPLEX
+ 9:
6463 sprintf(buf
+ STRLEN(buf
), "BRACE_COMPLEX%d", OP(op
) - BRACE_COMPLEX
);
6468 p
= "MULTIBYTECODE";
6475 sprintf(buf
+ STRLEN(buf
), "corrupt %d", OP(op
));
6480 (void) strcat(buf
, p
);
6486 static void mb_decompose
__ARGS((int c
, int *c1
, int *c2
, int *c3
));
6494 /* 0xfb20 - 0xfb4f */
6495 static decomp_T decomp_table
[0xfb4f-0xfb20+1] =
6497 {0x5e2,0,0}, /* 0xfb20 alt ayin */
6498 {0x5d0,0,0}, /* 0xfb21 alt alef */
6499 {0x5d3,0,0}, /* 0xfb22 alt dalet */
6500 {0x5d4,0,0}, /* 0xfb23 alt he */
6501 {0x5db,0,0}, /* 0xfb24 alt kaf */
6502 {0x5dc,0,0}, /* 0xfb25 alt lamed */
6503 {0x5dd,0,0}, /* 0xfb26 alt mem-sofit */
6504 {0x5e8,0,0}, /* 0xfb27 alt resh */
6505 {0x5ea,0,0}, /* 0xfb28 alt tav */
6506 {'+', 0, 0}, /* 0xfb29 alt plus */
6507 {0x5e9, 0x5c1, 0}, /* 0xfb2a shin+shin-dot */
6508 {0x5e9, 0x5c2, 0}, /* 0xfb2b shin+sin-dot */
6509 {0x5e9, 0x5c1, 0x5bc}, /* 0xfb2c shin+shin-dot+dagesh */
6510 {0x5e9, 0x5c2, 0x5bc}, /* 0xfb2d shin+sin-dot+dagesh */
6511 {0x5d0, 0x5b7, 0}, /* 0xfb2e alef+patah */
6512 {0x5d0, 0x5b8, 0}, /* 0xfb2f alef+qamats */
6513 {0x5d0, 0x5b4, 0}, /* 0xfb30 alef+hiriq */
6514 {0x5d1, 0x5bc, 0}, /* 0xfb31 bet+dagesh */
6515 {0x5d2, 0x5bc, 0}, /* 0xfb32 gimel+dagesh */
6516 {0x5d3, 0x5bc, 0}, /* 0xfb33 dalet+dagesh */
6517 {0x5d4, 0x5bc, 0}, /* 0xfb34 he+dagesh */
6518 {0x5d5, 0x5bc, 0}, /* 0xfb35 vav+dagesh */
6519 {0x5d6, 0x5bc, 0}, /* 0xfb36 zayin+dagesh */
6520 {0xfb37, 0, 0}, /* 0xfb37 -- UNUSED */
6521 {0x5d8, 0x5bc, 0}, /* 0xfb38 tet+dagesh */
6522 {0x5d9, 0x5bc, 0}, /* 0xfb39 yud+dagesh */
6523 {0x5da, 0x5bc, 0}, /* 0xfb3a kaf sofit+dagesh */
6524 {0x5db, 0x5bc, 0}, /* 0xfb3b kaf+dagesh */
6525 {0x5dc, 0x5bc, 0}, /* 0xfb3c lamed+dagesh */
6526 {0xfb3d, 0, 0}, /* 0xfb3d -- UNUSED */
6527 {0x5de, 0x5bc, 0}, /* 0xfb3e mem+dagesh */
6528 {0xfb3f, 0, 0}, /* 0xfb3f -- UNUSED */
6529 {0x5e0, 0x5bc, 0}, /* 0xfb40 nun+dagesh */
6530 {0x5e1, 0x5bc, 0}, /* 0xfb41 samech+dagesh */
6531 {0xfb42, 0, 0}, /* 0xfb42 -- UNUSED */
6532 {0x5e3, 0x5bc, 0}, /* 0xfb43 pe sofit+dagesh */
6533 {0x5e4, 0x5bc,0}, /* 0xfb44 pe+dagesh */
6534 {0xfb45, 0, 0}, /* 0xfb45 -- UNUSED */
6535 {0x5e6, 0x5bc, 0}, /* 0xfb46 tsadi+dagesh */
6536 {0x5e7, 0x5bc, 0}, /* 0xfb47 qof+dagesh */
6537 {0x5e8, 0x5bc, 0}, /* 0xfb48 resh+dagesh */
6538 {0x5e9, 0x5bc, 0}, /* 0xfb49 shin+dagesh */
6539 {0x5ea, 0x5bc, 0}, /* 0xfb4a tav+dagesh */
6540 {0x5d5, 0x5b9, 0}, /* 0xfb4b vav+holam */
6541 {0x5d1, 0x5bf, 0}, /* 0xfb4c bet+rafe */
6542 {0x5db, 0x5bf, 0}, /* 0xfb4d kaf+rafe */
6543 {0x5e4, 0x5bf, 0}, /* 0xfb4e pe+rafe */
6544 {0x5d0, 0x5dc, 0} /* 0xfb4f alef-lamed */
6548 mb_decompose(c
, c1
, c2
, c3
)
6549 int c
, *c1
, *c2
, *c3
;
6553 if (c
>= 0x4b20 && c
<= 0xfb4f)
6555 d
= decomp_table
[c
- 0xfb20];
6569 * Compare two strings, ignore case if ireg_ic set.
6570 * Return 0 if strings match, non-zero otherwise.
6571 * Correct the length "*n" when composing characters are ignored.
6581 result
= STRNCMP(s1
, s2
, *n
);
6583 result
= MB_STRNICMP(s1
, s2
, *n
);
6586 /* if it failed and it's utf8 and we want to combineignore: */
6587 if (result
!= 0 && enc_utf8
&& ireg_icombine
)
6589 char_u
*str1
, *str2
;
6590 int c1
, c2
, c11
, c12
;
6593 /* we have to handle the strcmp ourselves, since it is necessary to
6594 * deal with the composing characters by ignoring them: */
6598 while ((int)(str1
- s1
) < *n
)
6600 c1
= mb_ptr2char_adv(&str1
);
6601 c2
= mb_ptr2char_adv(&str2
);
6603 /* decompose the character if necessary, into 'base' characters
6604 * because I don't care about Arabic, I will hard-code the Hebrew
6605 * which I *do* care about! So sue me... */
6606 if (c1
!= c2
&& (!ireg_ic
|| utf_fold(c1
) != utf_fold(c2
)))
6608 /* decomposition necessary? */
6609 mb_decompose(c1
, &c11
, &junk
, &junk
);
6610 mb_decompose(c2
, &c12
, &junk
, &junk
);
6613 if (c11
!= c12
&& (!ireg_ic
|| utf_fold(c11
) != utf_fold(c12
)))
6619 *n
= (int)(str2
- s2
);
6627 * cstrchr: This function is used a lot for simple searches, keep it fast!
6639 || (!enc_utf8
&& mb_char2len(c
) > 1)
6642 return vim_strchr(s
, c
);
6644 /* tolower() and toupper() can be slow, comparing twice should be a lot
6645 * faster (esp. when using MS Visual C++!).
6646 * For UTF-8 need to use folded case. */
6648 if (enc_utf8
&& c
> 0x80)
6654 else if (MB_ISLOWER(c
))
6657 return vim_strchr(s
, c
);
6662 for (p
= s
; *p
!= NUL
; p
+= (*mb_ptr2len
)(p
))
6664 if (enc_utf8
&& c
> 0x80)
6666 if (utf_fold(utf_ptr2char(p
)) == cc
)
6669 else if (*p
== c
|| *p
== cc
)
6675 /* Faster version for when there are no multi-byte characters. */
6676 for (p
= s
; *p
!= NUL
; ++p
)
6677 if (*p
== c
|| *p
== cc
)
6683 /***************************************************************
6685 ***************************************************************/
6687 /* This stuff below really confuses cc on an SGI -- webb */
6690 # define __ARGS(x) ()
6694 * We should define ftpr as a pointer to a function returning a pointer to
6695 * a function returning a pointer to a function ...
6696 * This is impossible, so we declare a pointer to a function returning a
6697 * pointer to a function returning void. This should work for all compilers.
6699 typedef void (*(*fptr_T
) __ARGS((int *, int)))();
6701 static fptr_T do_upper
__ARGS((int *, int));
6702 static fptr_T do_Upper
__ARGS((int *, int));
6703 static fptr_T do_lower
__ARGS((int *, int));
6704 static fptr_T do_Lower
__ARGS((int *, int));
6706 static int vim_regsub_both
__ARGS((char_u
*source
, char_u
*dest
, int copy
, int magic
, int backslash
));
6715 return (fptr_T
)NULL
;
6725 return (fptr_T
)do_Upper
;
6735 return (fptr_T
)NULL
;
6745 return (fptr_T
)do_Lower
;
6749 * regtilde(): Replace tildes in the pattern by the old pattern.
6751 * Short explanation of the tilde: It stands for the previous replacement
6752 * pattern. If that previous pattern also contains a ~ we should go back a
6753 * step further... But we insert the previous pattern into the current one
6754 * and remember that.
6755 * This still does not handle the case where "magic" changes. So require the
6756 * user to keep his hands off of "magic".
6758 * The tildes are parsed once before the first call to vim_regsub().
6761 regtilde(source
, magic
)
6765 char_u
*newsub
= source
;
6771 for (p
= newsub
; *p
; ++p
)
6773 if ((*p
== '~' && magic
) || (*p
== '\\' && *(p
+ 1) == '~' && !magic
))
6775 if (reg_prev_sub
!= NULL
)
6777 /* length = len(newsub) - 1 + len(prev_sub) + 1 */
6778 prevlen
= (int)STRLEN(reg_prev_sub
);
6779 tmpsub
= alloc((unsigned)(STRLEN(newsub
) + prevlen
));
6783 len
= (int)(p
- newsub
); /* not including ~ */
6784 mch_memmove(tmpsub
, newsub
, (size_t)len
);
6785 /* interpret tilde */
6786 mch_memmove(tmpsub
+ len
, reg_prev_sub
, (size_t)prevlen
);
6789 ++p
; /* back off \ */
6790 STRCPY(tmpsub
+ len
+ prevlen
, p
+ 1);
6792 if (newsub
!= source
) /* already allocated newsub */
6795 p
= newsub
+ len
+ prevlen
;
6799 STRMOVE(p
, p
+ 1); /* remove '~' */
6801 STRMOVE(p
, p
+ 2); /* remove '\~' */
6806 if (*p
== '\\' && p
[1]) /* skip escaped characters */
6810 p
+= (*mb_ptr2len
)(p
) - 1;
6815 vim_free(reg_prev_sub
);
6816 if (newsub
!= source
) /* newsub was allocated, just keep it */
6817 reg_prev_sub
= newsub
;
6818 else /* no ~ found, need to save newsub */
6819 reg_prev_sub
= vim_strsave(newsub
);
6824 static int can_f_submatch
= FALSE
; /* TRUE when submatch() can be used */
6826 /* These pointers are used instead of reg_match and reg_mmatch for
6827 * reg_submatch(). Needed for when the substitution string is an expression
6828 * that contains a call to substitute() and submatch(). */
6829 static regmatch_T
*submatch_match
;
6830 static regmmatch_T
*submatch_mmatch
;
6831 static linenr_T submatch_firstlnum
;
6832 static linenr_T submatch_maxline
;
6835 #if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
6837 * vim_regsub() - perform substitutions after a vim_regexec() or
6838 * vim_regexec_multi() match.
6840 * If "copy" is TRUE really copy into "dest".
6841 * If "copy" is FALSE nothing is copied, this is just to find out the length
6844 * If "backslash" is TRUE, a backslash will be removed later, need to double
6845 * them to keep them, and insert a backslash before a CR to avoid it being
6846 * replaced with a line break later.
6848 * Note: The matched text must not change between the call of
6849 * vim_regexec()/vim_regexec_multi() and vim_regsub()! It would make the back
6850 * references invalid!
6852 * Returns the size of the replacement, including terminating NUL.
6855 vim_regsub(rmp
, source
, dest
, copy
, magic
, backslash
)
6866 return vim_regsub_both(source
, dest
, copy
, magic
, backslash
);
6871 vim_regsub_multi(rmp
, lnum
, source
, dest
, copy
, magic
, backslash
)
6882 reg_buf
= curbuf
; /* always works on the current buffer! */
6883 reg_firstlnum
= lnum
;
6884 reg_maxline
= curbuf
->b_ml
.ml_line_count
- lnum
;
6885 return vim_regsub_both(source
, dest
, copy
, magic
, backslash
);
6889 vim_regsub_both(source
, dest
, copy
, magic
, backslash
)
6902 fptr_T func
= (fptr_T
)NULL
;
6903 linenr_T clnum
= 0; /* init for GCC */
6904 int len
= 0; /* init for GCC */
6906 static char_u
*eval_result
= NULL
;
6909 /* Be paranoid... */
6910 if (source
== NULL
|| dest
== NULL
)
6915 if (prog_magic_wrong())
6921 * When the substitute part starts with "\=" evaluate it as an expression.
6923 if (source
[0] == '\\' && source
[1] == '='
6925 && !can_f_submatch
/* can't do this recursively */
6930 /* To make sure that the length doesn't change between checking the
6931 * length and copying the string, and to speed up things, the
6932 * resulting string is saved from the call with "copy" == FALSE to the
6933 * call with "copy" == TRUE. */
6936 if (eval_result
!= NULL
)
6938 STRCPY(dest
, eval_result
);
6939 dst
+= STRLEN(eval_result
);
6940 vim_free(eval_result
);
6946 win_T
*save_reg_win
;
6949 vim_free(eval_result
);
6951 /* The expression may contain substitute(), which calls us
6952 * recursively. Make sure submatch() gets the text from the first
6953 * level. Don't need to save "reg_buf", because
6954 * vim_regexec_multi() can't be called recursively. */
6955 submatch_match
= reg_match
;
6956 submatch_mmatch
= reg_mmatch
;
6957 submatch_firstlnum
= reg_firstlnum
;
6958 submatch_maxline
= reg_maxline
;
6959 save_reg_win
= reg_win
;
6960 save_ireg_ic
= ireg_ic
;
6961 can_f_submatch
= TRUE
;
6963 eval_result
= eval_to_string(source
+ 2, NULL
, TRUE
);
6964 if (eval_result
!= NULL
)
6966 for (s
= eval_result
; *s
!= NUL
; mb_ptr_adv(s
))
6968 /* Change NL to CR, so that it becomes a line break.
6969 * Skip over a backslashed character. */
6972 else if (*s
== '\\' && s
[1] != NUL
)
6976 dst
+= STRLEN(eval_result
);
6979 reg_match
= submatch_match
;
6980 reg_mmatch
= submatch_mmatch
;
6981 reg_firstlnum
= submatch_firstlnum
;
6982 reg_maxline
= submatch_maxline
;
6983 reg_win
= save_reg_win
;
6984 ireg_ic
= save_ireg_ic
;
6985 can_f_submatch
= FALSE
;
6990 while ((c
= *src
++) != NUL
)
6992 if (c
== '&' && magic
)
6994 else if (c
== '\\' && *src
!= NUL
)
6996 if (*src
== '&' && !magic
)
7001 else if ('0' <= *src
&& *src
<= '9')
7005 else if (vim_strchr((char_u
*)"uUlLeE", *src
))
7009 case 'u': func
= (fptr_T
)do_upper
;
7011 case 'U': func
= (fptr_T
)do_Upper
;
7013 case 'l': func
= (fptr_T
)do_lower
;
7015 case 'L': func
= (fptr_T
)do_Lower
;
7018 case 'E': func
= (fptr_T
)NULL
;
7023 if (no
< 0) /* Ordinary character. */
7025 if (c
== K_SPECIAL
&& src
[0] != NUL
&& src
[1] != NUL
)
7027 /* Copy a special key as-is. */
7042 if (c
== '\\' && *src
!= NUL
)
7044 /* Check for abbreviations -- webb */
7047 case 'r': c
= CAR
; ++src
; break;
7048 case 'n': c
= NL
; ++src
; break;
7049 case 't': c
= TAB
; ++src
; break;
7050 /* Oh no! \e already has meaning in subst pat :-( */
7051 /* case 'e': c = ESC; ++src; break; */
7052 case 'b': c
= Ctrl_H
; ++src
; break;
7054 /* If "backslash" is TRUE the backslash will be removed
7055 * later. Used to insert a literal CR. */
7056 default: if (backslash
)
7067 c
= mb_ptr2char(src
- 1);
7070 /* Write to buffer, if copy is set. */
7071 if (func
== (fptr_T
)NULL
) /* just copy */
7074 /* Turbo C complains without the typecast */
7075 func
= (fptr_T
)(func(&cc
, c
));
7080 src
+= mb_ptr2len(src
- 1) - 1;
7082 mb_char2bytes(cc
, dst
);
7083 dst
+= mb_char2len(cc
) - 1;
7095 clnum
= reg_mmatch
->startpos
[no
].lnum
;
7096 if (clnum
< 0 || reg_mmatch
->endpos
[no
].lnum
< 0)
7100 s
= reg_getline(clnum
) + reg_mmatch
->startpos
[no
].col
;
7101 if (reg_mmatch
->endpos
[no
].lnum
== clnum
)
7102 len
= reg_mmatch
->endpos
[no
].col
7103 - reg_mmatch
->startpos
[no
].col
;
7105 len
= (int)STRLEN(s
);
7110 s
= reg_match
->startp
[no
];
7111 if (reg_match
->endp
[no
] == NULL
)
7114 len
= (int)(reg_match
->endp
[no
] - s
);
7124 if (reg_mmatch
->endpos
[no
].lnum
== clnum
)
7129 s
= reg_getline(++clnum
);
7130 if (reg_mmatch
->endpos
[no
].lnum
== clnum
)
7131 len
= reg_mmatch
->endpos
[no
].col
;
7133 len
= (int)STRLEN(s
);
7138 else if (*s
== NUL
) /* we hit NUL. */
7146 if (backslash
&& (*s
== CAR
|| *s
== '\\'))
7149 * Insert a backslash in front of a CR, otherwise
7150 * it will be replaced by a line break.
7151 * Number of backslashes will be halved later,
7170 if (func
== (fptr_T
)NULL
) /* just copy */
7173 /* Turbo C complains without the typecast */
7174 func
= (fptr_T
)(func(&cc
, c
));
7181 /* Copy composing characters separately, one
7184 l
= utf_ptr2len(s
) - 1;
7186 l
= mb_ptr2len(s
) - 1;
7191 mb_char2bytes(cc
, dst
);
7192 dst
+= mb_char2len(cc
) - 1;
7213 return (int)((dst
- dest
) + 1);
7217 static char_u
*reg_getline_submatch
__ARGS((linenr_T lnum
));
7220 * Call reg_getline() with the line numbers from the submatch. If a
7221 * substitute() was used the reg_maxline and other values have been
7225 reg_getline_submatch(lnum
)
7229 linenr_T save_first
= reg_firstlnum
;
7230 linenr_T save_max
= reg_maxline
;
7232 reg_firstlnum
= submatch_firstlnum
;
7233 reg_maxline
= submatch_maxline
;
7235 s
= reg_getline(lnum
);
7237 reg_firstlnum
= save_first
;
7238 reg_maxline
= save_max
;
7243 * Used for the submatch() function: get the string from the n'th submatch in
7245 * Returns NULL when not in a ":s" command and for a non-existing submatch.
7251 char_u
*retval
= NULL
;
7257 if (!can_f_submatch
|| no
< 0)
7260 if (submatch_match
== NULL
)
7263 * First round: compute the length and allocate memory.
7264 * Second round: copy the text.
7266 for (round
= 1; round
<= 2; ++round
)
7268 lnum
= submatch_mmatch
->startpos
[no
].lnum
;
7269 if (lnum
< 0 || submatch_mmatch
->endpos
[no
].lnum
< 0)
7272 s
= reg_getline_submatch(lnum
) + submatch_mmatch
->startpos
[no
].col
;
7273 if (s
== NULL
) /* anti-crash check, cannot happen? */
7275 if (submatch_mmatch
->endpos
[no
].lnum
== lnum
)
7277 /* Within one line: take form start to end col. */
7278 len
= submatch_mmatch
->endpos
[no
].col
7279 - submatch_mmatch
->startpos
[no
].col
;
7281 vim_strncpy(retval
, s
, len
);
7286 /* Multiple lines: take start line from start col, middle
7287 * lines completely and end line up to end col. */
7288 len
= (int)STRLEN(s
);
7296 while (lnum
< submatch_mmatch
->endpos
[no
].lnum
)
7298 s
= reg_getline_submatch(lnum
++);
7300 STRCPY(retval
+ len
, s
);
7301 len
+= (int)STRLEN(s
);
7307 STRNCPY(retval
+ len
, reg_getline_submatch(lnum
),
7308 submatch_mmatch
->endpos
[no
].col
);
7309 len
+= submatch_mmatch
->endpos
[no
].col
;
7317 retval
= lalloc((long_u
)len
, TRUE
);
7325 s
= submatch_match
->startp
[no
];
7326 if (s
== NULL
|| submatch_match
->endp
[no
] == NULL
)
7329 retval
= vim_strnsave(s
, (int)(submatch_match
->endp
[no
] - s
));