Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
| 2 | * |
| 3 | * Backtracking regular expression implementation. |
| 4 | * |
| 5 | * This file is included in "regexp.c". |
| 6 | * |
| 7 | * NOTICE: |
| 8 | * |
| 9 | * This is NOT the original regular expression code as written by Henry |
| 10 | * Spencer. This code has been modified specifically for use with the VIM |
| 11 | * editor, and should not be used separately from Vim. If you want a good |
| 12 | * regular expression library, get the original code. The copyright notice |
| 13 | * that follows is from the original. |
| 14 | * |
| 15 | * END NOTICE |
| 16 | * |
| 17 | * Copyright (c) 1986 by University of Toronto. |
| 18 | * Written by Henry Spencer. Not derived from licensed software. |
| 19 | * |
| 20 | * Permission is granted to anyone to use this software for any |
| 21 | * purpose on any computer system, and to redistribute it freely, |
| 22 | * subject to the following restrictions: |
| 23 | * |
| 24 | * 1. The author is not responsible for the consequences of use of |
| 25 | * this software, no matter how awful, even if they arise |
| 26 | * from defects in it. |
| 27 | * |
| 28 | * 2. The origin of this software must not be misrepresented, either |
| 29 | * by explicit claim or by omission. |
| 30 | * |
| 31 | * 3. Altered versions must be plainly marked as such, and must not |
| 32 | * be misrepresented as being the original software. |
| 33 | * |
| 34 | * Beware that some of this code is subtly aware of the way operator |
| 35 | * precedence is structured in regular expressions. Serious changes in |
| 36 | * regular-expression syntax might require a total rethink. |
| 37 | * |
| 38 | * Changes have been made by Tony Andrews, Olaf 'Rhialto' Seibert, Robert |
| 39 | * Webb, Ciaran McCreesh and Bram Moolenaar. |
| 40 | * Named character class support added by Walter Briscoe (1998 Jul 01) |
| 41 | */ |
| 42 | |
| 43 | /* |
| 44 | * The "internal use only" fields in regexp.h are present to pass info from |
| 45 | * compile to execute that permits the execute phase to run lots faster on |
| 46 | * simple cases. They are: |
| 47 | * |
| 48 | * regstart char that must begin a match; NUL if none obvious; Can be a |
| 49 | * multi-byte character. |
| 50 | * reganch is the match anchored (at beginning-of-line only)? |
| 51 | * regmust string (pointer into program) that match must include, or NULL |
| 52 | * regmlen length of regmust string |
| 53 | * regflags RF_ values or'ed together |
| 54 | * |
| 55 | * Regstart and reganch permit very fast decisions on suitable starting points |
| 56 | * for a match, cutting down the work a lot. Regmust permits fast rejection |
| 57 | * of lines that cannot possibly match. The regmust tests are costly enough |
| 58 | * that vim_regcomp() supplies a regmust only if the r.e. contains something |
| 59 | * potentially expensive (at present, the only such thing detected is * or + |
| 60 | * at the start of the r.e., which can involve a lot of backup). Regmlen is |
| 61 | * supplied because the test in vim_regexec() needs it and vim_regcomp() is |
| 62 | * computing it anyway. |
| 63 | */ |
| 64 | |
| 65 | /* |
| 66 | * Structure for regexp "program". This is essentially a linear encoding |
| 67 | * of a nondeterministic finite-state machine (aka syntax charts or |
| 68 | * "railroad normal form" in parsing technology). Each node is an opcode |
| 69 | * plus a "next" pointer, possibly plus an operand. "Next" pointers of |
| 70 | * all nodes except BRANCH and BRACES_COMPLEX implement concatenation; a "next" |
| 71 | * pointer with a BRANCH on both ends of it is connecting two alternatives. |
| 72 | * (Here we have one of the subtle syntax dependencies: an individual BRANCH |
| 73 | * (as opposed to a collection of them) is never concatenated with anything |
| 74 | * because of operator precedence). The "next" pointer of a BRACES_COMPLEX |
| 75 | * node points to the node after the stuff to be repeated. |
| 76 | * The operand of some types of node is a literal string; for others, it is a |
| 77 | * node leading into a sub-FSM. In particular, the operand of a BRANCH node |
| 78 | * is the first node of the branch. |
| 79 | * (NB this is *not* a tree structure: the tail of the branch connects to the |
| 80 | * thing following the set of BRANCHes.) |
| 81 | * |
| 82 | * pattern is coded like: |
| 83 | * |
| 84 | * +-----------------+ |
| 85 | * | V |
| 86 | * <aa>\|<bb> BRANCH <aa> BRANCH <bb> --> END |
| 87 | * | ^ | ^ |
| 88 | * +------+ +----------+ |
| 89 | * |
| 90 | * |
| 91 | * +------------------+ |
| 92 | * V | |
| 93 | * <aa>* BRANCH BRANCH <aa> --> BACK BRANCH --> NOTHING --> END |
| 94 | * | | ^ ^ |
| 95 | * | +---------------+ | |
| 96 | * +---------------------------------------------+ |
| 97 | * |
| 98 | * |
| 99 | * +----------------------+ |
| 100 | * V | |
| 101 | * <aa>\+ BRANCH <aa> --> BRANCH --> BACK BRANCH --> NOTHING --> END |
| 102 | * | | ^ ^ |
| 103 | * | +-----------+ | |
| 104 | * +--------------------------------------------------+ |
| 105 | * |
| 106 | * |
| 107 | * +-------------------------+ |
| 108 | * V | |
| 109 | * <aa>\{} BRANCH BRACE_LIMITS --> BRACE_COMPLEX <aa> --> BACK END |
| 110 | * | | ^ |
| 111 | * | +----------------+ |
| 112 | * +-----------------------------------------------+ |
| 113 | * |
| 114 | * |
| 115 | * <aa>\@!<bb> BRANCH NOMATCH <aa> --> END <bb> --> END |
| 116 | * | | ^ ^ |
| 117 | * | +----------------+ | |
| 118 | * +--------------------------------+ |
| 119 | * |
| 120 | * +---------+ |
| 121 | * | V |
| 122 | * \z[abc] BRANCH BRANCH a BRANCH b BRANCH c BRANCH NOTHING --> END |
| 123 | * | | | | ^ ^ |
| 124 | * | | | +-----+ | |
| 125 | * | | +----------------+ | |
| 126 | * | +---------------------------+ | |
| 127 | * +------------------------------------------------------+ |
| 128 | * |
| 129 | * They all start with a BRANCH for "\|" alternatives, even when there is only |
| 130 | * one alternative. |
| 131 | */ |
| 132 | |
| 133 | /* |
| 134 | * The opcodes are: |
| 135 | */ |
| 136 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 137 | // definition number opnd? meaning |
| 138 | #define END 0 // End of program or NOMATCH operand. |
| 139 | #define BOL 1 // Match "" at beginning of line. |
| 140 | #define EOL 2 // Match "" at end of line. |
| 141 | #define BRANCH 3 // node Match this alternative, or the |
| 142 | // next... |
| 143 | #define BACK 4 // Match "", "next" ptr points backward. |
| 144 | #define EXACTLY 5 // str Match this string. |
| 145 | #define NOTHING 6 // Match empty string. |
| 146 | #define STAR 7 // node Match this (simple) thing 0 or more |
| 147 | // times. |
| 148 | #define PLUS 8 // node Match this (simple) thing 1 or more |
| 149 | // times. |
| 150 | #define MATCH 9 // node match the operand zero-width |
| 151 | #define NOMATCH 10 // node check for no match with operand |
| 152 | #define BEHIND 11 // node look behind for a match with operand |
| 153 | #define NOBEHIND 12 // node look behind for no match with operand |
| 154 | #define SUBPAT 13 // node match the operand here |
| 155 | #define BRACE_SIMPLE 14 // node Match this (simple) thing between m and |
| 156 | // n times (\{m,n\}). |
| 157 | #define BOW 15 // Match "" after [^a-zA-Z0-9_] |
| 158 | #define EOW 16 // Match "" at [^a-zA-Z0-9_] |
| 159 | #define BRACE_LIMITS 17 // nr nr define the min & max for BRACE_SIMPLE |
| 160 | // and BRACE_COMPLEX. |
| 161 | #define NEWL 18 // Match line-break |
| 162 | #define BHPOS 19 // End position for BEHIND or NOBEHIND |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 163 | |
| 164 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 165 | // character classes: 20-48 normal, 50-78 include a line-break |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 166 | #define ADD_NL 30 |
| 167 | #define FIRST_NL ANY + ADD_NL |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 168 | #define ANY 20 // Match any one character. |
| 169 | #define ANYOF 21 // str Match any character in this string. |
| 170 | #define ANYBUT 22 // str Match any character not in this |
| 171 | // string. |
| 172 | #define IDENT 23 // Match identifier char |
| 173 | #define SIDENT 24 // Match identifier char but no digit |
| 174 | #define KWORD 25 // Match keyword char |
| 175 | #define SKWORD 26 // Match word char but no digit |
| 176 | #define FNAME 27 // Match file name char |
| 177 | #define SFNAME 28 // Match file name char but no digit |
| 178 | #define PRINT 29 // Match printable char |
| 179 | #define SPRINT 30 // Match printable char but no digit |
| 180 | #define WHITE 31 // Match whitespace char |
| 181 | #define NWHITE 32 // Match non-whitespace char |
| 182 | #define DIGIT 33 // Match digit char |
| 183 | #define NDIGIT 34 // Match non-digit char |
| 184 | #define HEX 35 // Match hex char |
| 185 | #define NHEX 36 // Match non-hex char |
| 186 | #define OCTAL 37 // Match octal char |
| 187 | #define NOCTAL 38 // Match non-octal char |
| 188 | #define WORD 39 // Match word char |
| 189 | #define NWORD 40 // Match non-word char |
| 190 | #define HEAD 41 // Match head char |
| 191 | #define NHEAD 42 // Match non-head char |
| 192 | #define ALPHA 43 // Match alpha char |
| 193 | #define NALPHA 44 // Match non-alpha char |
| 194 | #define LOWER 45 // Match lowercase char |
| 195 | #define NLOWER 46 // Match non-lowercase char |
| 196 | #define UPPER 47 // Match uppercase char |
| 197 | #define NUPPER 48 // Match non-uppercase char |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 198 | #define LAST_NL NUPPER + ADD_NL |
| 199 | #define WITH_NL(op) ((op) >= FIRST_NL && (op) <= LAST_NL) |
| 200 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 201 | #define MOPEN 80 // -89 Mark this point in input as start of |
| 202 | // \( subexpr. MOPEN + 0 marks start of |
| 203 | // match. |
| 204 | #define MCLOSE 90 // -99 Analogous to MOPEN. MCLOSE + 0 marks |
| 205 | // end of match. |
| 206 | #define BACKREF 100 // -109 node Match same string again \1-\9 |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 207 | |
| 208 | #ifdef FEAT_SYN_HL |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 209 | # define ZOPEN 110 // -119 Mark this point in input as start of |
| 210 | // \z( subexpr. |
| 211 | # define ZCLOSE 120 // -129 Analogous to ZOPEN. |
| 212 | # define ZREF 130 // -139 node Match external submatch \z1-\z9 |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 213 | #endif |
| 214 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 215 | #define BRACE_COMPLEX 140 // -149 node Match nodes between m & n times |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 216 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 217 | #define NOPEN 150 // Mark this point in input as start of |
| 218 | // \%( subexpr. |
| 219 | #define NCLOSE 151 // Analogous to NOPEN. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 220 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 221 | #define MULTIBYTECODE 200 // mbc Match one multi-byte character |
| 222 | #define RE_BOF 201 // Match "" at beginning of file. |
| 223 | #define RE_EOF 202 // Match "" at end of file. |
| 224 | #define CURSOR 203 // Match location of cursor. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 225 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 226 | #define RE_LNUM 204 // nr cmp Match line number |
| 227 | #define RE_COL 205 // nr cmp Match column number |
| 228 | #define RE_VCOL 206 // nr cmp Match virtual column number |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 229 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 230 | #define RE_MARK 207 // mark cmp Match mark position |
| 231 | #define RE_VISUAL 208 // Match Visual area |
| 232 | #define RE_COMPOSING 209 // any composing characters |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 233 | |
| 234 | /* |
| 235 | * Flags to be passed up and down. |
| 236 | */ |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 237 | #define HASWIDTH 0x1 // Known never to match null string. |
| 238 | #define SIMPLE 0x2 // Simple enough to be STAR/PLUS operand. |
| 239 | #define SPSTART 0x4 // Starts with * or +. |
| 240 | #define HASNL 0x8 // Contains some \n. |
| 241 | #define HASLOOKBH 0x10 // Contains "\@<=" or "\@<!". |
| 242 | #define WORST 0 // Worst case. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 243 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 244 | static int num_complex_braces; // Complex \{...} count |
| 245 | static char_u *regcode; // Code-emit pointer, or JUST_CALC_SIZE |
| 246 | static long regsize; // Code size. |
| 247 | static int reg_toolong; // TRUE when offset out of range |
| 248 | static char_u had_endbrace[NSUBEXP]; // flags, TRUE if end of () found |
| 249 | static long brace_min[10]; // Minimums for complex brace repeats |
| 250 | static long brace_max[10]; // Maximums for complex brace repeats |
| 251 | static int brace_count[10]; // Current counts for complex brace repeats |
| 252 | static int one_exactly = FALSE; // only do one char for EXACTLY |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 253 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 254 | // When making changes to classchars also change nfa_classcodes. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 255 | static char_u *classchars = (char_u *)".iIkKfFpPsSdDxXoOwWhHaAlLuU"; |
| 256 | static int classcodes[] = { |
| 257 | ANY, IDENT, SIDENT, KWORD, SKWORD, |
| 258 | FNAME, SFNAME, PRINT, SPRINT, |
| 259 | WHITE, NWHITE, DIGIT, NDIGIT, |
| 260 | HEX, NHEX, OCTAL, NOCTAL, |
| 261 | WORD, NWORD, HEAD, NHEAD, |
| 262 | ALPHA, NALPHA, LOWER, NLOWER, |
| 263 | UPPER, NUPPER |
| 264 | }; |
| 265 | |
| 266 | /* |
| 267 | * When regcode is set to this value, code is not emitted and size is computed |
| 268 | * instead. |
| 269 | */ |
| 270 | #define JUST_CALC_SIZE ((char_u *) -1) |
| 271 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 272 | // Values for rs_state in regitem_T. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 273 | typedef enum regstate_E |
| 274 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 275 | RS_NOPEN = 0 // NOPEN and NCLOSE |
| 276 | , RS_MOPEN // MOPEN + [0-9] |
| 277 | , RS_MCLOSE // MCLOSE + [0-9] |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 278 | #ifdef FEAT_SYN_HL |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 279 | , RS_ZOPEN // ZOPEN + [0-9] |
| 280 | , RS_ZCLOSE // ZCLOSE + [0-9] |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 281 | #endif |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 282 | , RS_BRANCH // BRANCH |
| 283 | , RS_BRCPLX_MORE // BRACE_COMPLEX and trying one more match |
| 284 | , RS_BRCPLX_LONG // BRACE_COMPLEX and trying longest match |
| 285 | , RS_BRCPLX_SHORT // BRACE_COMPLEX and trying shortest match |
| 286 | , RS_NOMATCH // NOMATCH |
| 287 | , RS_BEHIND1 // BEHIND / NOBEHIND matching rest |
| 288 | , RS_BEHIND2 // BEHIND / NOBEHIND matching behind part |
| 289 | , RS_STAR_LONG // STAR/PLUS/BRACE_SIMPLE longest match |
| 290 | , RS_STAR_SHORT // STAR/PLUS/BRACE_SIMPLE shortest match |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 291 | } regstate_T; |
| 292 | |
| 293 | /* |
| 294 | * Structure used to save the current input state, when it needs to be |
| 295 | * restored after trying a match. Used by reg_save() and reg_restore(). |
| 296 | * Also stores the length of "backpos". |
| 297 | */ |
| 298 | typedef struct |
| 299 | { |
| 300 | union |
| 301 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 302 | char_u *ptr; // rex.input pointer, for single-line regexp |
| 303 | lpos_T pos; // rex.input pos, for multi-line regexp |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 304 | } rs_u; |
| 305 | int rs_len; |
| 306 | } regsave_T; |
| 307 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 308 | // struct to save start/end pointer/position in for \(\) |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 309 | typedef struct |
| 310 | { |
| 311 | union |
| 312 | { |
| 313 | char_u *ptr; |
| 314 | lpos_T pos; |
| 315 | } se_u; |
| 316 | } save_se_T; |
| 317 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 318 | // used for BEHIND and NOBEHIND matching |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 319 | typedef struct regbehind_S |
| 320 | { |
| 321 | regsave_T save_after; |
| 322 | regsave_T save_behind; |
| 323 | int save_need_clear_subexpr; |
| 324 | save_se_T save_start[NSUBEXP]; |
| 325 | save_se_T save_end[NSUBEXP]; |
| 326 | } regbehind_T; |
| 327 | |
| 328 | /* |
| 329 | * When there are alternatives a regstate_T is put on the regstack to remember |
| 330 | * what we are doing. |
| 331 | * Before it may be another type of item, depending on rs_state, to remember |
| 332 | * more things. |
| 333 | */ |
| 334 | typedef struct regitem_S |
| 335 | { |
| 336 | regstate_T rs_state; // what we are doing, one of RS_ above |
| 337 | short rs_no; // submatch nr or BEHIND/NOBEHIND |
| 338 | char_u *rs_scan; // current node in program |
| 339 | union |
| 340 | { |
| 341 | save_se_T sesave; |
| 342 | regsave_T regsave; |
| 343 | } rs_un; // room for saving rex.input |
| 344 | } regitem_T; |
| 345 | |
| 346 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 347 | // used for STAR, PLUS and BRACE_SIMPLE matching |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 348 | typedef struct regstar_S |
| 349 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 350 | int nextb; // next byte |
| 351 | int nextb_ic; // next byte reverse case |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 352 | long count; |
| 353 | long minval; |
| 354 | long maxval; |
| 355 | } regstar_T; |
| 356 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 357 | // used to store input position when a BACK was encountered, so that we now if |
| 358 | // we made any progress since the last time. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 359 | typedef struct backpos_S |
| 360 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 361 | char_u *bp_scan; // "scan" where BACK was encountered |
| 362 | regsave_T bp_pos; // last input position |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 363 | } backpos_T; |
| 364 | |
| 365 | /* |
| 366 | * "regstack" and "backpos" are used by regmatch(). They are kept over calls |
| 367 | * to avoid invoking malloc() and free() often. |
| 368 | * "regstack" is a stack with regitem_T items, sometimes preceded by regstar_T |
| 369 | * or regbehind_T. |
| 370 | * "backpos_T" is a table with backpos_T for BACK |
| 371 | */ |
| 372 | static garray_T regstack = {0, 0, 0, 0, NULL}; |
| 373 | static garray_T backpos = {0, 0, 0, 0, NULL}; |
| 374 | |
| 375 | static regsave_T behind_pos; |
| 376 | |
| 377 | /* |
| 378 | * Both for regstack and backpos tables we use the following strategy of |
| 379 | * allocation (to reduce malloc/free calls): |
| 380 | * - Initial size is fairly small. |
| 381 | * - When needed, the tables are grown bigger (8 times at first, double after |
| 382 | * that). |
| 383 | * - After executing the match we free the memory only if the array has grown. |
| 384 | * Thus the memory is kept allocated when it's at the initial size. |
| 385 | * This makes it fast while not keeping a lot of memory allocated. |
| 386 | * A three times speed increase was observed when using many simple patterns. |
| 387 | */ |
| 388 | #define REGSTACK_INITIAL 2048 |
| 389 | #define BACKPOS_INITIAL 64 |
| 390 | |
| 391 | /* |
| 392 | * Opcode notes: |
| 393 | * |
| 394 | * BRANCH The set of branches constituting a single choice are hooked |
| 395 | * together with their "next" pointers, since precedence prevents |
| 396 | * anything being concatenated to any individual branch. The |
| 397 | * "next" pointer of the last BRANCH in a choice points to the |
| 398 | * thing following the whole choice. This is also where the |
| 399 | * final "next" pointer of each individual branch points; each |
| 400 | * branch starts with the operand node of a BRANCH node. |
| 401 | * |
| 402 | * BACK Normal "next" pointers all implicitly point forward; BACK |
| 403 | * exists to make loop structures possible. |
| 404 | * |
| 405 | * STAR,PLUS '=', and complex '*' and '+', are implemented as circular |
| 406 | * BRANCH structures using BACK. Simple cases (one character |
| 407 | * per match) are implemented with STAR and PLUS for speed |
| 408 | * and to minimize recursive plunges. |
| 409 | * |
| 410 | * BRACE_LIMITS This is always followed by a BRACE_SIMPLE or BRACE_COMPLEX |
| 411 | * node, and defines the min and max limits to be used for that |
| 412 | * node. |
| 413 | * |
| 414 | * MOPEN,MCLOSE ...are numbered at compile time. |
| 415 | * ZOPEN,ZCLOSE ...ditto |
| 416 | */ |
| 417 | |
| 418 | /* |
| 419 | * A node is one char of opcode followed by two chars of "next" pointer. |
| 420 | * "Next" pointers are stored as two 8-bit bytes, high order first. The |
| 421 | * value is a positive offset from the opcode of the node containing it. |
| 422 | * An operand, if any, simply follows the node. (Note that much of the |
| 423 | * code generation knows about this implicit relationship.) |
| 424 | * |
| 425 | * Using two bytes for the "next" pointer is vast overkill for most things, |
| 426 | * but allows patterns to get big without disasters. |
| 427 | */ |
| 428 | #define OP(p) ((int)*(p)) |
| 429 | #define NEXT(p) (((*((p) + 1) & 0377) << 8) + (*((p) + 2) & 0377)) |
| 430 | #define OPERAND(p) ((p) + 3) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 431 | // Obtain an operand that was stored as four bytes, MSB first. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 432 | #define OPERAND_MIN(p) (((long)(p)[3] << 24) + ((long)(p)[4] << 16) \ |
| 433 | + ((long)(p)[5] << 8) + (long)(p)[6]) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 434 | // Obtain a second operand stored as four bytes. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 435 | #define OPERAND_MAX(p) OPERAND_MIN((p) + 4) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 436 | // Obtain a second single-byte operand stored after a four bytes operand. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 437 | #define OPERAND_CMP(p) (p)[7] |
| 438 | |
| 439 | static char_u *reg(int paren, int *flagp); |
| 440 | |
| 441 | #ifdef BT_REGEXP_DUMP |
| 442 | static void regdump(char_u *, bt_regprog_T *); |
| 443 | #endif |
| 444 | |
| 445 | static int re_num_cmp(long_u val, char_u *scan); |
| 446 | |
| 447 | #ifdef DEBUG |
| 448 | static char_u *regprop(char_u *); |
| 449 | |
| 450 | static int regnarrate = 0; |
| 451 | #endif |
| 452 | |
| 453 | |
| 454 | /* |
| 455 | * Setup to parse the regexp. Used once to get the length and once to do it. |
| 456 | */ |
| 457 | static void |
| 458 | regcomp_start( |
| 459 | char_u *expr, |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 460 | int re_flags) // see vim_regcomp() |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 461 | { |
| 462 | initchr(expr); |
| 463 | if (re_flags & RE_MAGIC) |
| 464 | reg_magic = MAGIC_ON; |
| 465 | else |
| 466 | reg_magic = MAGIC_OFF; |
| 467 | reg_string = (re_flags & RE_STRING); |
| 468 | reg_strict = (re_flags & RE_STRICT); |
| 469 | get_cpo_flags(); |
| 470 | |
| 471 | num_complex_braces = 0; |
| 472 | regnpar = 1; |
Bram Moolenaar | a80faa8 | 2020-04-12 19:37:17 +0200 | [diff] [blame] | 473 | CLEAR_FIELD(had_endbrace); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 474 | #ifdef FEAT_SYN_HL |
| 475 | regnzpar = 1; |
| 476 | re_has_z = 0; |
| 477 | #endif |
| 478 | regsize = 0L; |
| 479 | reg_toolong = FALSE; |
| 480 | regflags = 0; |
| 481 | #if defined(FEAT_SYN_HL) || defined(PROTO) |
| 482 | had_eol = FALSE; |
| 483 | #endif |
| 484 | } |
| 485 | |
| 486 | /* |
| 487 | * Return TRUE if MULTIBYTECODE should be used instead of EXACTLY for |
| 488 | * character "c". |
| 489 | */ |
| 490 | static int |
| 491 | use_multibytecode(int c) |
| 492 | { |
| 493 | return has_mbyte && (*mb_char2len)(c) > 1 |
| 494 | && (re_multi_type(peekchr()) != NOT_MULTI |
| 495 | || (enc_utf8 && utf_iscomposing(c))); |
| 496 | } |
| 497 | |
| 498 | /* |
| 499 | * Emit (if appropriate) a byte of code |
| 500 | */ |
| 501 | static void |
| 502 | regc(int b) |
| 503 | { |
| 504 | if (regcode == JUST_CALC_SIZE) |
| 505 | regsize++; |
| 506 | else |
| 507 | *regcode++ = b; |
| 508 | } |
| 509 | |
| 510 | /* |
| 511 | * Emit (if appropriate) a multi-byte character of code |
| 512 | */ |
| 513 | static void |
| 514 | regmbc(int c) |
| 515 | { |
| 516 | if (!has_mbyte && c > 0xff) |
| 517 | return; |
| 518 | if (regcode == JUST_CALC_SIZE) |
| 519 | regsize += (*mb_char2len)(c); |
| 520 | else |
| 521 | regcode += (*mb_char2bytes)(c, regcode); |
| 522 | } |
| 523 | |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 524 | |
| 525 | /* |
| 526 | * Produce the bytes for equivalence class "c". |
| 527 | * Currently only handles latin1, latin9 and utf-8. |
| 528 | * NOTE: When changing this function, also change nfa_emit_equi_class() |
| 529 | */ |
| 530 | static void |
| 531 | reg_equi_class(int c) |
| 532 | { |
| 533 | if (enc_utf8 || STRCMP(p_enc, "latin1") == 0 |
| 534 | || STRCMP(p_enc, "iso-8859-15") == 0) |
| 535 | { |
| 536 | #ifdef EBCDIC |
| 537 | int i; |
| 538 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 539 | // This might be slower than switch/case below. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 540 | for (i = 0; i < 16; i++) |
| 541 | { |
| 542 | if (vim_strchr(EQUIVAL_CLASS_C[i], c) != NULL) |
| 543 | { |
| 544 | char *p = EQUIVAL_CLASS_C[i]; |
| 545 | |
| 546 | while (*p != 0) |
| 547 | regmbc(*p++); |
| 548 | return; |
| 549 | } |
| 550 | } |
| 551 | #else |
| 552 | switch (c) |
| 553 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 554 | // Do not use '\300' style, it results in a negative number. |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 555 | case 'A': case 0xc0: case 0xc1: case 0xc2: case 0xc3: case 0xc4: |
| 556 | case 0xc5: case 0x100: case 0x102: case 0x104: case 0x1cd: |
| 557 | case 0x1de: case 0x1e0: case 0x1fa: case 0x202: case 0x226: |
| 558 | case 0x23a: case 0x1e00: case 0x1ea0: case 0x1ea2: case 0x1ea4: |
| 559 | case 0x1ea6: case 0x1ea8: case 0x1eaa: case 0x1eac: case 0x1eae: |
| 560 | case 0x1eb0: case 0x1eb2: case 0x1eb4: case 0x1eb6: |
| 561 | regmbc('A'); regmbc(0xc0); regmbc(0xc1); regmbc(0xc2); |
| 562 | regmbc(0xc3); regmbc(0xc4); regmbc(0xc5); |
| 563 | regmbc(0x100); regmbc(0x102); regmbc(0x104); |
| 564 | regmbc(0x1cd); regmbc(0x1de); regmbc(0x1e0); |
| 565 | regmbc(0x1fa); regmbc(0x202); regmbc(0x226); |
| 566 | regmbc(0x23a); regmbc(0x1e00); regmbc(0x1ea0); |
| 567 | regmbc(0x1ea2); regmbc(0x1ea4); regmbc(0x1ea6); |
| 568 | regmbc(0x1ea8); regmbc(0x1eaa); regmbc(0x1eac); |
| 569 | regmbc(0x1eae); regmbc(0x1eb0); regmbc(0x1eb2); |
| 570 | regmbc(0x1eb4); regmbc(0x1eb6); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 571 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 572 | case 'B': case 0x181: case 0x243: case 0x1e02: |
| 573 | case 0x1e04: case 0x1e06: |
| 574 | regmbc('B'); |
| 575 | regmbc(0x181); regmbc(0x243); regmbc(0x1e02); |
| 576 | regmbc(0x1e04); regmbc(0x1e06); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 577 | return; |
| 578 | case 'C': case 0xc7: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 579 | case 0x106: case 0x108: case 0x10a: case 0x10c: case 0x187: |
| 580 | case 0x23b: case 0x1e08: case 0xa792: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 581 | regmbc('C'); regmbc(0xc7); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 582 | regmbc(0x106); regmbc(0x108); regmbc(0x10a); |
| 583 | regmbc(0x10c); regmbc(0x187); regmbc(0x23b); |
| 584 | regmbc(0x1e08); regmbc(0xa792); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 585 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 586 | case 'D': case 0x10e: case 0x110: case 0x18a: |
| 587 | case 0x1e0a: case 0x1e0c: case 0x1e0e: case 0x1e10: |
| 588 | case 0x1e12: |
| 589 | regmbc('D'); regmbc(0x10e); regmbc(0x110); |
| 590 | regmbc(0x18a); regmbc(0x1e0a); regmbc(0x1e0c); |
| 591 | regmbc(0x1e0e); regmbc(0x1e10); regmbc(0x1e12); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 592 | return; |
| 593 | case 'E': case 0xc8: case 0xc9: case 0xca: case 0xcb: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 594 | case 0x112: case 0x114: case 0x116: case 0x118: case 0x11a: |
| 595 | case 0x204: case 0x206: case 0x228: case 0x246: case 0x1e14: |
| 596 | case 0x1e16: case 0x1e18: case 0x1e1a: case 0x1e1c: |
| 597 | case 0x1eb8: case 0x1eba: case 0x1ebc: case 0x1ebe: |
| 598 | case 0x1ec0: case 0x1ec2: case 0x1ec4: case 0x1ec6: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 599 | regmbc('E'); regmbc(0xc8); regmbc(0xc9); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 600 | regmbc(0xca); regmbc(0xcb); regmbc(0x112); |
| 601 | regmbc(0x114); regmbc(0x116); regmbc(0x118); |
| 602 | regmbc(0x11a); regmbc(0x204); regmbc(0x206); |
| 603 | regmbc(0x228); regmbc(0x246); regmbc(0x1e14); |
| 604 | regmbc(0x1e16); regmbc(0x1e18); regmbc(0x1e1a); |
| 605 | regmbc(0x1e1c); regmbc(0x1eb8); regmbc(0x1eba); |
| 606 | regmbc(0x1ebc); regmbc(0x1ebe); regmbc(0x1ec0); |
| 607 | regmbc(0x1ec2); regmbc(0x1ec4); regmbc(0x1ec6); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 608 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 609 | case 'F': case 0x191: case 0x1e1e: case 0xa798: |
| 610 | regmbc('F'); regmbc(0x191); regmbc(0x1e1e); |
| 611 | regmbc(0xa798); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 612 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 613 | case 'G': case 0x11c: case 0x11e: case 0x120: |
| 614 | case 0x122: case 0x193: case 0x1e4: case 0x1e6: |
| 615 | case 0x1f4: case 0x1e20: case 0xa7a0: |
| 616 | regmbc('G'); regmbc(0x11c); regmbc(0x11e); |
| 617 | regmbc(0x120); regmbc(0x122); regmbc(0x193); |
| 618 | regmbc(0x1e4); regmbc(0x1e6); regmbc(0x1f4); |
| 619 | regmbc(0x1e20); regmbc(0xa7a0); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 620 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 621 | case 'H': case 0x124: case 0x126: case 0x21e: |
| 622 | case 0x1e22: case 0x1e24: case 0x1e26: |
| 623 | case 0x1e28: case 0x1e2a: case 0x2c67: |
| 624 | regmbc('H'); regmbc(0x124); regmbc(0x126); |
| 625 | regmbc(0x21e); regmbc(0x1e22); regmbc(0x1e24); |
| 626 | regmbc(0x1e26); regmbc(0x1e28); regmbc(0x1e2a); |
| 627 | regmbc(0x2c67); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 628 | return; |
| 629 | case 'I': case 0xcc: case 0xcd: case 0xce: case 0xcf: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 630 | case 0x128: case 0x12a: case 0x12c: case 0x12e: |
| 631 | case 0x130: case 0x197: case 0x1cf: case 0x208: |
| 632 | case 0x20a: case 0x1e2c: case 0x1e2e: case 0x1ec8: |
| 633 | case 0x1eca: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 634 | regmbc('I'); regmbc(0xcc); regmbc(0xcd); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 635 | regmbc(0xce); regmbc(0xcf); regmbc(0x128); |
| 636 | regmbc(0x12a); regmbc(0x12c); regmbc(0x12e); |
| 637 | regmbc(0x130); regmbc(0x197); regmbc(0x1cf); |
| 638 | regmbc(0x208); regmbc(0x20a); regmbc(0x1e2c); |
| 639 | regmbc(0x1e2e); regmbc(0x1ec8); regmbc(0x1eca); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 640 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 641 | case 'J': case 0x134: case 0x248: |
| 642 | regmbc('J'); regmbc(0x134); regmbc(0x248); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 643 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 644 | case 'K': case 0x136: case 0x198: case 0x1e8: case 0x1e30: |
| 645 | case 0x1e32: case 0x1e34: case 0x2c69: case 0xa740: |
| 646 | regmbc('K'); regmbc(0x136); regmbc(0x198); |
| 647 | regmbc(0x1e8); regmbc(0x1e30); regmbc(0x1e32); |
| 648 | regmbc(0x1e34); regmbc(0x2c69); regmbc(0xa740); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 649 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 650 | case 'L': case 0x139: case 0x13b: case 0x13d: case 0x13f: |
| 651 | case 0x141: case 0x23d: case 0x1e36: case 0x1e38: |
| 652 | case 0x1e3a: case 0x1e3c: case 0x2c60: |
| 653 | regmbc('L'); regmbc(0x139); regmbc(0x13b); |
| 654 | regmbc(0x13d); regmbc(0x13f); regmbc(0x141); |
| 655 | regmbc(0x23d); regmbc(0x1e36); regmbc(0x1e38); |
| 656 | regmbc(0x1e3a); regmbc(0x1e3c); regmbc(0x2c60); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 657 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 658 | case 'M': case 0x1e3e: case 0x1e40: case 0x1e42: |
| 659 | regmbc('M'); regmbc(0x1e3e); regmbc(0x1e40); |
| 660 | regmbc(0x1e42); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 661 | return; |
| 662 | case 'N': case 0xd1: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 663 | case 0x143: case 0x145: case 0x147: case 0x1f8: |
| 664 | case 0x1e44: case 0x1e46: case 0x1e48: case 0x1e4a: |
| 665 | case 0xa7a4: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 666 | regmbc('N'); regmbc(0xd1); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 667 | regmbc(0x143); regmbc(0x145); regmbc(0x147); |
| 668 | regmbc(0x1f8); regmbc(0x1e44); regmbc(0x1e46); |
| 669 | regmbc(0x1e48); regmbc(0x1e4a); regmbc(0xa7a4); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 670 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 671 | case 'O': case 0xd2: case 0xd3: case 0xd4: case 0xd5: case 0xd6: |
| 672 | case 0xd8: case 0x14c: case 0x14e: case 0x150: case 0x19f: |
| 673 | case 0x1a0: case 0x1d1: case 0x1ea: case 0x1ec: case 0x1fe: |
| 674 | case 0x20c: case 0x20e: case 0x22a: case 0x22c: case 0x22e: |
| 675 | case 0x230: case 0x1e4c: case 0x1e4e: case 0x1e50: case 0x1e52: |
| 676 | case 0x1ecc: case 0x1ece: case 0x1ed0: case 0x1ed2: case 0x1ed4: |
| 677 | case 0x1ed6: case 0x1ed8: case 0x1eda: case 0x1edc: case 0x1ede: |
| 678 | case 0x1ee0: case 0x1ee2: |
| 679 | regmbc('O'); regmbc(0xd2); regmbc(0xd3); regmbc(0xd4); |
| 680 | regmbc(0xd5); regmbc(0xd6); regmbc(0xd8); |
| 681 | regmbc(0x14c); regmbc(0x14e); regmbc(0x150); |
| 682 | regmbc(0x19f); regmbc(0x1a0); regmbc(0x1d1); |
| 683 | regmbc(0x1ea); regmbc(0x1ec); regmbc(0x1fe); |
| 684 | regmbc(0x20c); regmbc(0x20e); regmbc(0x22a); |
| 685 | regmbc(0x22c); regmbc(0x22e); regmbc(0x230); |
| 686 | regmbc(0x1e4c); regmbc(0x1e4e); regmbc(0x1e50); |
| 687 | regmbc(0x1e52); regmbc(0x1ecc); regmbc(0x1ece); |
| 688 | regmbc(0x1ed0); regmbc(0x1ed2); regmbc(0x1ed4); |
| 689 | regmbc(0x1ed6); regmbc(0x1ed8); regmbc(0x1eda); |
| 690 | regmbc(0x1edc); regmbc(0x1ede); regmbc(0x1ee0); |
| 691 | regmbc(0x1ee2); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 692 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 693 | case 'P': case 0x1a4: case 0x1e54: case 0x1e56: case 0x2c63: |
| 694 | regmbc('P'); regmbc(0x1a4); regmbc(0x1e54); |
| 695 | regmbc(0x1e56); regmbc(0x2c63); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 696 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 697 | case 'Q': case 0x24a: |
| 698 | regmbc('Q'); regmbc(0x24a); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 699 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 700 | case 'R': case 0x154: case 0x156: case 0x158: case 0x210: |
| 701 | case 0x212: case 0x24c: case 0x1e58: case 0x1e5a: |
| 702 | case 0x1e5c: case 0x1e5e: case 0x2c64: case 0xa7a6: |
| 703 | regmbc('R'); regmbc(0x154); regmbc(0x156); |
| 704 | regmbc(0x210); regmbc(0x212); regmbc(0x158); |
| 705 | regmbc(0x24c); regmbc(0x1e58); regmbc(0x1e5a); |
| 706 | regmbc(0x1e5c); regmbc(0x1e5e); regmbc(0x2c64); |
| 707 | regmbc(0xa7a6); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 708 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 709 | case 'S': case 0x15a: case 0x15c: case 0x15e: case 0x160: |
| 710 | case 0x218: case 0x1e60: case 0x1e62: case 0x1e64: |
| 711 | case 0x1e66: case 0x1e68: case 0x2c7e: case 0xa7a8: |
| 712 | regmbc('S'); regmbc(0x15a); regmbc(0x15c); |
| 713 | regmbc(0x15e); regmbc(0x160); regmbc(0x218); |
| 714 | regmbc(0x1e60); regmbc(0x1e62); regmbc(0x1e64); |
| 715 | regmbc(0x1e66); regmbc(0x1e68); regmbc(0x2c7e); |
| 716 | regmbc(0xa7a8); |
| 717 | return; |
| 718 | case 'T': case 0x162: case 0x164: case 0x166: case 0x1ac: |
| 719 | case 0x1ae: case 0x21a: case 0x23e: case 0x1e6a: case 0x1e6c: |
| 720 | case 0x1e6e: case 0x1e70: |
| 721 | regmbc('T'); regmbc(0x162); regmbc(0x164); |
| 722 | regmbc(0x166); regmbc(0x1ac); regmbc(0x23e); |
| 723 | regmbc(0x1ae); regmbc(0x21a); regmbc(0x1e6a); |
| 724 | regmbc(0x1e6c); regmbc(0x1e6e); regmbc(0x1e70); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 725 | return; |
| 726 | case 'U': case 0xd9: case 0xda: case 0xdb: case 0xdc: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 727 | case 0x168: case 0x16a: case 0x16c: case 0x16e: |
| 728 | case 0x170: case 0x172: case 0x1af: case 0x1d3: |
| 729 | case 0x1d5: case 0x1d7: case 0x1d9: case 0x1db: |
| 730 | case 0x214: case 0x216: case 0x244: case 0x1e72: |
| 731 | case 0x1e74: case 0x1e76: case 0x1e78: case 0x1e7a: |
| 732 | case 0x1ee4: case 0x1ee6: case 0x1ee8: case 0x1eea: |
| 733 | case 0x1eec: case 0x1eee: case 0x1ef0: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 734 | regmbc('U'); regmbc(0xd9); regmbc(0xda); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 735 | regmbc(0xdb); regmbc(0xdc); regmbc(0x168); |
| 736 | regmbc(0x16a); regmbc(0x16c); regmbc(0x16e); |
| 737 | regmbc(0x170); regmbc(0x172); regmbc(0x1af); |
| 738 | regmbc(0x1d3); regmbc(0x1d5); regmbc(0x1d7); |
| 739 | regmbc(0x1d9); regmbc(0x1db); regmbc(0x214); |
| 740 | regmbc(0x216); regmbc(0x244); regmbc(0x1e72); |
| 741 | regmbc(0x1e74); regmbc(0x1e76); regmbc(0x1e78); |
| 742 | regmbc(0x1e7a); regmbc(0x1ee4); regmbc(0x1ee6); |
| 743 | regmbc(0x1ee8); regmbc(0x1eea); regmbc(0x1eec); |
| 744 | regmbc(0x1eee); regmbc(0x1ef0); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 745 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 746 | case 'V': case 0x1b2: case 0x1e7c: case 0x1e7e: |
| 747 | regmbc('V'); regmbc(0x1b2); regmbc(0x1e7c); |
| 748 | regmbc(0x1e7e); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 749 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 750 | case 'W': case 0x174: case 0x1e80: case 0x1e82: |
| 751 | case 0x1e84: case 0x1e86: case 0x1e88: |
| 752 | regmbc('W'); regmbc(0x174); regmbc(0x1e80); |
| 753 | regmbc(0x1e82); regmbc(0x1e84); regmbc(0x1e86); |
| 754 | regmbc(0x1e88); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 755 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 756 | case 'X': case 0x1e8a: case 0x1e8c: |
| 757 | regmbc('X'); regmbc(0x1e8a); regmbc(0x1e8c); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 758 | return; |
| 759 | case 'Y': case 0xdd: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 760 | case 0x176: case 0x178: case 0x1b3: case 0x232: case 0x24e: |
| 761 | case 0x1e8e: case 0x1ef2: case 0x1ef6: case 0x1ef4: case 0x1ef8: |
| 762 | regmbc('Y'); regmbc(0xdd); regmbc(0x176); |
| 763 | regmbc(0x178); regmbc(0x1b3); regmbc(0x232); |
| 764 | regmbc(0x24e); regmbc(0x1e8e); regmbc(0x1ef2); |
| 765 | regmbc(0x1ef4); regmbc(0x1ef6); regmbc(0x1ef8); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 766 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 767 | case 'Z': case 0x179: case 0x17b: case 0x17d: case 0x1b5: |
| 768 | case 0x1e90: case 0x1e92: case 0x1e94: case 0x2c6b: |
| 769 | regmbc('Z'); regmbc(0x179); regmbc(0x17b); |
| 770 | regmbc(0x17d); regmbc(0x1b5); regmbc(0x1e90); |
| 771 | regmbc(0x1e92); regmbc(0x1e94); regmbc(0x2c6b); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 772 | return; |
| 773 | case 'a': case 0xe0: case 0xe1: case 0xe2: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 774 | case 0xe3: case 0xe4: case 0xe5: case 0x101: case 0x103: |
| 775 | case 0x105: case 0x1ce: case 0x1df: case 0x1e1: case 0x1fb: |
| 776 | case 0x201: case 0x203: case 0x227: case 0x1d8f: case 0x1e01: |
| 777 | case 0x1e9a: case 0x1ea1: case 0x1ea3: case 0x1ea5: |
| 778 | case 0x1ea7: case 0x1ea9: case 0x1eab: case 0x1ead: |
| 779 | case 0x1eaf: case 0x1eb1: case 0x1eb3: case 0x1eb5: |
| 780 | case 0x1eb7: case 0x2c65: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 781 | regmbc('a'); regmbc(0xe0); regmbc(0xe1); |
| 782 | regmbc(0xe2); regmbc(0xe3); regmbc(0xe4); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 783 | regmbc(0xe5); regmbc(0x101); regmbc(0x103); |
| 784 | regmbc(0x105); regmbc(0x1ce); regmbc(0x1df); |
| 785 | regmbc(0x1e1); regmbc(0x1fb); regmbc(0x201); |
| 786 | regmbc(0x203); regmbc(0x227); regmbc(0x1d8f); |
| 787 | regmbc(0x1e01); regmbc(0x1e9a); regmbc(0x1ea1); |
| 788 | regmbc(0x1ea3); regmbc(0x1ea5); regmbc(0x1ea7); |
| 789 | regmbc(0x1ea9); regmbc(0x1eab); regmbc(0x1ead); |
| 790 | regmbc(0x1eaf); regmbc(0x1eb1); regmbc(0x1eb3); |
| 791 | regmbc(0x1eb5); regmbc(0x1eb7); regmbc(0x2c65); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 792 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 793 | case 'b': case 0x180: case 0x253: case 0x1d6c: case 0x1d80: |
| 794 | case 0x1e03: case 0x1e05: case 0x1e07: |
| 795 | regmbc('b'); |
| 796 | regmbc(0x180); regmbc(0x253); regmbc(0x1d6c); |
| 797 | regmbc(0x1d80); regmbc(0x1e03); regmbc(0x1e05); |
| 798 | regmbc(0x1e07); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 799 | return; |
| 800 | case 'c': case 0xe7: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 801 | case 0x107: case 0x109: case 0x10b: case 0x10d: case 0x188: |
| 802 | case 0x23c: case 0x1e09: case 0xa793: case 0xa794: |
| 803 | regmbc('c'); regmbc(0xe7); regmbc(0x107); |
| 804 | regmbc(0x109); regmbc(0x10b); regmbc(0x10d); |
| 805 | regmbc(0x188); regmbc(0x23c); regmbc(0x1e09); |
| 806 | regmbc(0xa793); regmbc(0xa794); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 807 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 808 | case 'd': case 0x10f: case 0x111: case 0x257: case 0x1d6d: |
| 809 | case 0x1d81: case 0x1d91: case 0x1e0b: case 0x1e0d: |
| 810 | case 0x1e0f: case 0x1e11: case 0x1e13: |
| 811 | regmbc('d'); regmbc(0x10f); regmbc(0x111); |
| 812 | regmbc(0x257); regmbc(0x1d6d); regmbc(0x1d81); |
| 813 | regmbc(0x1d91); regmbc(0x1e0b); regmbc(0x1e0d); |
| 814 | regmbc(0x1e0f); regmbc(0x1e11); regmbc(0x1e13); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 815 | return; |
| 816 | case 'e': case 0xe8: case 0xe9: case 0xea: case 0xeb: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 817 | case 0x113: case 0x115: case 0x117: case 0x119: |
| 818 | case 0x11b: case 0x205: case 0x207: case 0x229: |
| 819 | case 0x247: case 0x1d92: case 0x1e15: case 0x1e17: |
| 820 | case 0x1e19: case 0x1e1b: case 0x1eb9: case 0x1ebb: |
| 821 | case 0x1e1d: case 0x1ebd: case 0x1ebf: case 0x1ec1: |
| 822 | case 0x1ec3: case 0x1ec5: case 0x1ec7: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 823 | regmbc('e'); regmbc(0xe8); regmbc(0xe9); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 824 | regmbc(0xea); regmbc(0xeb); regmbc(0x113); |
| 825 | regmbc(0x115); regmbc(0x117); regmbc(0x119); |
| 826 | regmbc(0x11b); regmbc(0x205); regmbc(0x207); |
| 827 | regmbc(0x229); regmbc(0x247); regmbc(0x1d92); |
| 828 | regmbc(0x1e15); regmbc(0x1e17); regmbc(0x1e19); |
| 829 | regmbc(0x1e1b); regmbc(0x1e1d); regmbc(0x1eb9); |
| 830 | regmbc(0x1ebb); regmbc(0x1ebd); regmbc(0x1ebf); |
| 831 | regmbc(0x1ec1); regmbc(0x1ec3); regmbc(0x1ec5); |
| 832 | regmbc(0x1ec7); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 833 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 834 | case 'f': case 0x192: case 0x1d6e: case 0x1d82: |
| 835 | case 0x1e1f: case 0xa799: |
| 836 | regmbc('f'); regmbc(0x192); regmbc(0x1d6e); |
| 837 | regmbc(0x1d82); regmbc(0x1e1f); regmbc(0xa799); |
| 838 | return; |
| 839 | case 'g': case 0x11d: case 0x11f: case 0x121: case 0x123: |
| 840 | case 0x1e5: case 0x1e7: case 0x260: case 0x1f5: case 0x1d83: |
| 841 | case 0x1e21: case 0xa7a1: |
| 842 | regmbc('g'); regmbc(0x11d); regmbc(0x11f); |
| 843 | regmbc(0x121); regmbc(0x123); regmbc(0x1e5); |
| 844 | regmbc(0x1e7); regmbc(0x1f5); regmbc(0x260); |
| 845 | regmbc(0x1d83); regmbc(0x1e21); regmbc(0xa7a1); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 846 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 847 | case 'h': case 0x125: case 0x127: case 0x21f: case 0x1e23: |
| 848 | case 0x1e25: case 0x1e27: case 0x1e29: case 0x1e2b: |
| 849 | case 0x1e96: case 0x2c68: case 0xa795: |
| 850 | regmbc('h'); regmbc(0x125); regmbc(0x127); |
| 851 | regmbc(0x21f); regmbc(0x1e23); regmbc(0x1e25); |
| 852 | regmbc(0x1e27); regmbc(0x1e29); regmbc(0x1e2b); |
| 853 | regmbc(0x1e96); regmbc(0x2c68); regmbc(0xa795); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 854 | return; |
| 855 | case 'i': case 0xec: case 0xed: case 0xee: case 0xef: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 856 | case 0x129: case 0x12b: case 0x12d: case 0x12f: |
| 857 | case 0x1d0: case 0x209: case 0x20b: case 0x268: |
| 858 | case 0x1d96: case 0x1e2d: case 0x1e2f: case 0x1ec9: |
| 859 | case 0x1ecb: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 860 | regmbc('i'); regmbc(0xec); regmbc(0xed); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 861 | regmbc(0xee); regmbc(0xef); regmbc(0x129); |
| 862 | regmbc(0x12b); regmbc(0x12d); regmbc(0x12f); |
| 863 | regmbc(0x1d0); regmbc(0x209); regmbc(0x20b); |
| 864 | regmbc(0x268); regmbc(0x1d96); regmbc(0x1e2d); |
| 865 | regmbc(0x1e2f); regmbc(0x1ec9); regmbc(0x1ecb); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 866 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 867 | case 'j': case 0x135: case 0x1f0: case 0x249: |
| 868 | regmbc('j'); regmbc(0x135); regmbc(0x1f0); |
| 869 | regmbc(0x249); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 870 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 871 | case 'k': case 0x137: case 0x199: case 0x1e9: |
| 872 | case 0x1d84: case 0x1e31: case 0x1e33: case 0x1e35: |
| 873 | case 0x2c6a: case 0xa741: |
| 874 | regmbc('k'); regmbc(0x137); regmbc(0x199); |
| 875 | regmbc(0x1e9); regmbc(0x1d84); regmbc(0x1e31); |
| 876 | regmbc(0x1e33); regmbc(0x1e35); regmbc(0x2c6a); |
| 877 | regmbc(0xa741); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 878 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 879 | case 'l': case 0x13a: case 0x13c: case 0x13e: |
| 880 | case 0x140: case 0x142: case 0x19a: case 0x1e37: |
| 881 | case 0x1e39: case 0x1e3b: case 0x1e3d: case 0x2c61: |
| 882 | regmbc('l'); regmbc(0x13a); regmbc(0x13c); |
| 883 | regmbc(0x13e); regmbc(0x140); regmbc(0x142); |
| 884 | regmbc(0x19a); regmbc(0x1e37); regmbc(0x1e39); |
| 885 | regmbc(0x1e3b); regmbc(0x1e3d); regmbc(0x2c61); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 886 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 887 | case 'm': case 0x1d6f: case 0x1e3f: case 0x1e41: case 0x1e43: |
| 888 | regmbc('m'); regmbc(0x1d6f); regmbc(0x1e3f); |
| 889 | regmbc(0x1e41); regmbc(0x1e43); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 890 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 891 | case 'n': case 0xf1: case 0x144: case 0x146: case 0x148: |
| 892 | case 0x149: case 0x1f9: case 0x1d70: case 0x1d87: |
| 893 | case 0x1e45: case 0x1e47: case 0x1e49: case 0x1e4b: |
| 894 | case 0xa7a5: |
| 895 | regmbc('n'); regmbc(0xf1); regmbc(0x144); |
| 896 | regmbc(0x146); regmbc(0x148); regmbc(0x149); |
| 897 | regmbc(0x1f9); regmbc(0x1d70); regmbc(0x1d87); |
| 898 | regmbc(0x1e45); regmbc(0x1e47); regmbc(0x1e49); |
| 899 | regmbc(0x1e4b); regmbc(0xa7a5); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 900 | return; |
| 901 | case 'o': case 0xf2: case 0xf3: case 0xf4: case 0xf5: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 902 | case 0xf6: case 0xf8: case 0x14d: case 0x14f: case 0x151: |
| 903 | case 0x1a1: case 0x1d2: case 0x1eb: case 0x1ed: case 0x1ff: |
| 904 | case 0x20d: case 0x20f: case 0x22b: case 0x22d: case 0x22f: |
| 905 | case 0x231: case 0x275: case 0x1e4d: case 0x1e4f: |
| 906 | case 0x1e51: case 0x1e53: case 0x1ecd: case 0x1ecf: |
| 907 | case 0x1ed1: case 0x1ed3: case 0x1ed5: case 0x1ed7: |
| 908 | case 0x1ed9: case 0x1edb: case 0x1edd: case 0x1edf: |
| 909 | case 0x1ee1: case 0x1ee3: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 910 | regmbc('o'); regmbc(0xf2); regmbc(0xf3); |
| 911 | regmbc(0xf4); regmbc(0xf5); regmbc(0xf6); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 912 | regmbc(0xf8); regmbc(0x14d); regmbc(0x14f); |
| 913 | regmbc(0x151); regmbc(0x1a1); regmbc(0x1d2); |
| 914 | regmbc(0x1eb); regmbc(0x1ed); regmbc(0x1ff); |
| 915 | regmbc(0x20d); regmbc(0x20f); regmbc(0x22b); |
| 916 | regmbc(0x22d); regmbc(0x22f); regmbc(0x231); |
| 917 | regmbc(0x275); regmbc(0x1e4d); regmbc(0x1e4f); |
| 918 | regmbc(0x1e51); regmbc(0x1e53); regmbc(0x1ecd); |
| 919 | regmbc(0x1ecf); regmbc(0x1ed1); regmbc(0x1ed3); |
| 920 | regmbc(0x1ed5); regmbc(0x1ed7); regmbc(0x1ed9); |
| 921 | regmbc(0x1edb); regmbc(0x1edd); regmbc(0x1edf); |
| 922 | regmbc(0x1ee1); regmbc(0x1ee3); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 923 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 924 | case 'p': case 0x1a5: case 0x1d71: case 0x1d88: case 0x1d7d: |
| 925 | case 0x1e55: case 0x1e57: |
| 926 | regmbc('p'); regmbc(0x1a5); regmbc(0x1d71); |
| 927 | regmbc(0x1d7d); regmbc(0x1d88); regmbc(0x1e55); |
| 928 | regmbc(0x1e57); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 929 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 930 | case 'q': case 0x24b: case 0x2a0: |
| 931 | regmbc('q'); regmbc(0x24b); regmbc(0x2a0); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 932 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 933 | case 'r': case 0x155: case 0x157: case 0x159: case 0x211: |
| 934 | case 0x213: case 0x24d: case 0x27d: case 0x1d72: case 0x1d73: |
| 935 | case 0x1d89: case 0x1e59: case 0x1e5b: case 0x1e5d: case 0x1e5f: |
| 936 | case 0xa7a7: |
| 937 | regmbc('r'); regmbc(0x155); regmbc(0x157); |
| 938 | regmbc(0x159); regmbc(0x211); regmbc(0x213); |
| 939 | regmbc(0x24d); regmbc(0x1d72); regmbc(0x1d73); |
| 940 | regmbc(0x1d89); regmbc(0x1e59); regmbc(0x27d); |
| 941 | regmbc(0x1e5b); regmbc(0x1e5d); regmbc(0x1e5f); |
| 942 | regmbc(0xa7a7); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 943 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 944 | case 's': case 0x15b: case 0x15d: case 0x15f: case 0x161: |
| 945 | case 0x1e61: case 0x219: case 0x23f: case 0x1d74: case 0x1d8a: |
| 946 | case 0x1e63: case 0x1e65: case 0x1e67: case 0x1e69: case 0xa7a9: |
| 947 | regmbc('s'); regmbc(0x15b); regmbc(0x15d); |
| 948 | regmbc(0x15f); regmbc(0x161); regmbc(0x23f); |
| 949 | regmbc(0x219); regmbc(0x1d74); regmbc(0x1d8a); |
| 950 | regmbc(0x1e61); regmbc(0x1e63); regmbc(0x1e65); |
| 951 | regmbc(0x1e67); regmbc(0x1e69); regmbc(0xa7a9); |
| 952 | return; |
| 953 | case 't': case 0x163: case 0x165: case 0x167: case 0x1ab: |
| 954 | case 0x1ad: case 0x21b: case 0x288: case 0x1d75: case 0x1e6b: |
| 955 | case 0x1e6d: case 0x1e6f: case 0x1e71: case 0x1e97: case 0x2c66: |
| 956 | regmbc('t'); regmbc(0x163); regmbc(0x165); |
| 957 | regmbc(0x167); regmbc(0x1ab); regmbc(0x21b); |
| 958 | regmbc(0x1ad); regmbc(0x288); regmbc(0x1d75); |
| 959 | regmbc(0x1e6b); regmbc(0x1e6d); regmbc(0x1e6f); |
| 960 | regmbc(0x1e71); regmbc(0x1e97); regmbc(0x2c66); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 961 | return; |
| 962 | case 'u': case 0xf9: case 0xfa: case 0xfb: case 0xfc: |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 963 | case 0x169: case 0x16b: case 0x16d: case 0x16f: |
| 964 | case 0x171: case 0x173: case 0x1b0: case 0x1d4: |
| 965 | case 0x1d6: case 0x1d8: case 0x1da: case 0x1dc: |
| 966 | case 0x215: case 0x217: case 0x289: case 0x1e73: |
| 967 | case 0x1d7e: case 0x1d99: case 0x1e75: case 0x1e77: |
| 968 | case 0x1e79: case 0x1e7b: case 0x1ee5: case 0x1ee7: |
| 969 | case 0x1ee9: case 0x1eeb: case 0x1eed: case 0x1eef: |
| 970 | case 0x1ef1: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 971 | regmbc('u'); regmbc(0xf9); regmbc(0xfa); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 972 | regmbc(0xfb); regmbc(0xfc); regmbc(0x169); |
| 973 | regmbc(0x16b); regmbc(0x16d); regmbc(0x16f); |
| 974 | regmbc(0x171); regmbc(0x173); regmbc(0x1d6); |
| 975 | regmbc(0x1d8); regmbc(0x1da); regmbc(0x1dc); |
| 976 | regmbc(0x215); regmbc(0x217); regmbc(0x1b0); |
| 977 | regmbc(0x1d4); regmbc(0x289); regmbc(0x1d7e); |
| 978 | regmbc(0x1d99); regmbc(0x1e73); regmbc(0x1e75); |
| 979 | regmbc(0x1e77); regmbc(0x1e79); regmbc(0x1e7b); |
| 980 | regmbc(0x1ee5); regmbc(0x1ee7); regmbc(0x1ee9); |
| 981 | regmbc(0x1eeb); regmbc(0x1eed); regmbc(0x1eef); |
| 982 | regmbc(0x1ef1); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 983 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 984 | case 'v': case 0x28b: case 0x1d8c: case 0x1e7d: case 0x1e7f: |
| 985 | regmbc('v'); regmbc(0x28b); regmbc(0x1d8c); |
| 986 | regmbc(0x1e7d); regmbc(0x1e7f); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 987 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 988 | case 'w': case 0x175: case 0x1e81: case 0x1e83: |
| 989 | case 0x1e85: case 0x1e87: case 0x1e89: case 0x1e98: |
| 990 | regmbc('w'); regmbc(0x175); regmbc(0x1e81); |
| 991 | regmbc(0x1e83); regmbc(0x1e85); regmbc(0x1e87); |
| 992 | regmbc(0x1e89); regmbc(0x1e98); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 993 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 994 | case 'x': case 0x1e8b: case 0x1e8d: |
| 995 | regmbc('x'); regmbc(0x1e8b); regmbc(0x1e8d); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 996 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 997 | case 'y': case 0xfd: case 0xff: case 0x177: case 0x1b4: |
| 998 | case 0x233: case 0x24f: case 0x1e8f: case 0x1e99: case 0x1ef3: |
| 999 | case 0x1ef5: case 0x1ef7: case 0x1ef9: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1000 | regmbc('y'); regmbc(0xfd); regmbc(0xff); |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 1001 | regmbc(0x177); regmbc(0x1b4); regmbc(0x233); |
| 1002 | regmbc(0x24f); regmbc(0x1e8f); regmbc(0x1e99); |
| 1003 | regmbc(0x1ef3); regmbc(0x1ef5); regmbc(0x1ef7); |
| 1004 | regmbc(0x1ef9); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1005 | return; |
Bram Moolenaar | 0b94e29 | 2021-04-05 13:59:53 +0200 | [diff] [blame] | 1006 | case 'z': case 0x17a: case 0x17c: case 0x17e: case 0x1b6: |
| 1007 | case 0x1d76: case 0x1d8e: case 0x1e91: case 0x1e93: |
| 1008 | case 0x1e95: case 0x2c6c: |
| 1009 | regmbc('z'); regmbc(0x17a); regmbc(0x17c); |
| 1010 | regmbc(0x17e); regmbc(0x1b6); regmbc(0x1d76); |
| 1011 | regmbc(0x1d8e); regmbc(0x1e91); regmbc(0x1e93); |
| 1012 | regmbc(0x1e95); regmbc(0x2c6c); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1013 | return; |
| 1014 | } |
| 1015 | #endif |
| 1016 | } |
| 1017 | regmbc(c); |
| 1018 | } |
| 1019 | |
| 1020 | /* |
| 1021 | * Emit a node. |
| 1022 | * Return pointer to generated code. |
| 1023 | */ |
| 1024 | static char_u * |
| 1025 | regnode(int op) |
| 1026 | { |
| 1027 | char_u *ret; |
| 1028 | |
| 1029 | ret = regcode; |
| 1030 | if (ret == JUST_CALC_SIZE) |
| 1031 | regsize += 3; |
| 1032 | else |
| 1033 | { |
| 1034 | *regcode++ = op; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1035 | *regcode++ = NUL; // Null "next" pointer. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1036 | *regcode++ = NUL; |
| 1037 | } |
| 1038 | return ret; |
| 1039 | } |
| 1040 | |
| 1041 | /* |
| 1042 | * Write a long as four bytes at "p" and return pointer to the next char. |
| 1043 | */ |
| 1044 | static char_u * |
| 1045 | re_put_long(char_u *p, long_u val) |
| 1046 | { |
| 1047 | *p++ = (char_u) ((val >> 24) & 0377); |
| 1048 | *p++ = (char_u) ((val >> 16) & 0377); |
| 1049 | *p++ = (char_u) ((val >> 8) & 0377); |
| 1050 | *p++ = (char_u) (val & 0377); |
| 1051 | return p; |
| 1052 | } |
| 1053 | |
| 1054 | /* |
| 1055 | * regnext - dig the "next" pointer out of a node |
| 1056 | * Returns NULL when calculating size, when there is no next item and when |
| 1057 | * there is an error. |
| 1058 | */ |
| 1059 | static char_u * |
| 1060 | regnext(char_u *p) |
| 1061 | { |
| 1062 | int offset; |
| 1063 | |
| 1064 | if (p == JUST_CALC_SIZE || reg_toolong) |
| 1065 | return NULL; |
| 1066 | |
| 1067 | offset = NEXT(p); |
| 1068 | if (offset == 0) |
| 1069 | return NULL; |
| 1070 | |
| 1071 | if (OP(p) == BACK) |
| 1072 | return p - offset; |
| 1073 | else |
| 1074 | return p + offset; |
| 1075 | } |
| 1076 | |
| 1077 | /* |
| 1078 | * Set the next-pointer at the end of a node chain. |
| 1079 | */ |
| 1080 | static void |
| 1081 | regtail(char_u *p, char_u *val) |
| 1082 | { |
| 1083 | char_u *scan; |
| 1084 | char_u *temp; |
| 1085 | int offset; |
| 1086 | |
| 1087 | if (p == JUST_CALC_SIZE) |
| 1088 | return; |
| 1089 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1090 | // Find last node. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1091 | scan = p; |
| 1092 | for (;;) |
| 1093 | { |
| 1094 | temp = regnext(scan); |
| 1095 | if (temp == NULL) |
| 1096 | break; |
| 1097 | scan = temp; |
| 1098 | } |
| 1099 | |
| 1100 | if (OP(scan) == BACK) |
| 1101 | offset = (int)(scan - val); |
| 1102 | else |
| 1103 | offset = (int)(val - scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1104 | // When the offset uses more than 16 bits it can no longer fit in the two |
| 1105 | // bytes available. Use a global flag to avoid having to check return |
| 1106 | // values in too many places. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1107 | if (offset > 0xffff) |
| 1108 | reg_toolong = TRUE; |
| 1109 | else |
| 1110 | { |
| 1111 | *(scan + 1) = (char_u) (((unsigned)offset >> 8) & 0377); |
| 1112 | *(scan + 2) = (char_u) (offset & 0377); |
| 1113 | } |
| 1114 | } |
| 1115 | |
| 1116 | /* |
| 1117 | * Like regtail, on item after a BRANCH; nop if none. |
| 1118 | */ |
| 1119 | static void |
| 1120 | regoptail(char_u *p, char_u *val) |
| 1121 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1122 | // When op is neither BRANCH nor BRACE_COMPLEX0-9, it is "operandless" |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1123 | if (p == NULL || p == JUST_CALC_SIZE |
| 1124 | || (OP(p) != BRANCH |
| 1125 | && (OP(p) < BRACE_COMPLEX || OP(p) > BRACE_COMPLEX + 9))) |
| 1126 | return; |
| 1127 | regtail(OPERAND(p), val); |
| 1128 | } |
| 1129 | |
| 1130 | /* |
| 1131 | * Insert an operator in front of already-emitted operand |
| 1132 | * |
| 1133 | * Means relocating the operand. |
| 1134 | */ |
| 1135 | static void |
| 1136 | reginsert(int op, char_u *opnd) |
| 1137 | { |
| 1138 | char_u *src; |
| 1139 | char_u *dst; |
| 1140 | char_u *place; |
| 1141 | |
| 1142 | if (regcode == JUST_CALC_SIZE) |
| 1143 | { |
| 1144 | regsize += 3; |
| 1145 | return; |
| 1146 | } |
| 1147 | src = regcode; |
| 1148 | regcode += 3; |
| 1149 | dst = regcode; |
| 1150 | while (src > opnd) |
| 1151 | *--dst = *--src; |
| 1152 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1153 | place = opnd; // Op node, where operand used to be. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1154 | *place++ = op; |
| 1155 | *place++ = NUL; |
| 1156 | *place = NUL; |
| 1157 | } |
| 1158 | |
| 1159 | /* |
| 1160 | * Insert an operator in front of already-emitted operand. |
| 1161 | * Add a number to the operator. |
| 1162 | */ |
| 1163 | static void |
| 1164 | reginsert_nr(int op, long val, char_u *opnd) |
| 1165 | { |
| 1166 | char_u *src; |
| 1167 | char_u *dst; |
| 1168 | char_u *place; |
| 1169 | |
| 1170 | if (regcode == JUST_CALC_SIZE) |
| 1171 | { |
| 1172 | regsize += 7; |
| 1173 | return; |
| 1174 | } |
| 1175 | src = regcode; |
| 1176 | regcode += 7; |
| 1177 | dst = regcode; |
| 1178 | while (src > opnd) |
| 1179 | *--dst = *--src; |
| 1180 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1181 | place = opnd; // Op node, where operand used to be. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1182 | *place++ = op; |
| 1183 | *place++ = NUL; |
| 1184 | *place++ = NUL; |
| 1185 | re_put_long(place, (long_u)val); |
| 1186 | } |
| 1187 | |
| 1188 | /* |
| 1189 | * Insert an operator in front of already-emitted operand. |
| 1190 | * The operator has the given limit values as operands. Also set next pointer. |
| 1191 | * |
| 1192 | * Means relocating the operand. |
| 1193 | */ |
| 1194 | static void |
| 1195 | reginsert_limits( |
| 1196 | int op, |
| 1197 | long minval, |
| 1198 | long maxval, |
| 1199 | char_u *opnd) |
| 1200 | { |
| 1201 | char_u *src; |
| 1202 | char_u *dst; |
| 1203 | char_u *place; |
| 1204 | |
| 1205 | if (regcode == JUST_CALC_SIZE) |
| 1206 | { |
| 1207 | regsize += 11; |
| 1208 | return; |
| 1209 | } |
| 1210 | src = regcode; |
| 1211 | regcode += 11; |
| 1212 | dst = regcode; |
| 1213 | while (src > opnd) |
| 1214 | *--dst = *--src; |
| 1215 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1216 | place = opnd; // Op node, where operand used to be. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1217 | *place++ = op; |
| 1218 | *place++ = NUL; |
| 1219 | *place++ = NUL; |
| 1220 | place = re_put_long(place, (long_u)minval); |
| 1221 | place = re_put_long(place, (long_u)maxval); |
| 1222 | regtail(opnd, place); |
| 1223 | } |
| 1224 | |
| 1225 | /* |
| 1226 | * Return TRUE if the back reference is legal. We must have seen the close |
| 1227 | * brace. |
| 1228 | * TODO: Should also check that we don't refer to something that is repeated |
| 1229 | * (+*=): what instance of the repetition should we match? |
| 1230 | */ |
| 1231 | static int |
| 1232 | seen_endbrace(int refnum) |
| 1233 | { |
| 1234 | if (!had_endbrace[refnum]) |
| 1235 | { |
| 1236 | char_u *p; |
| 1237 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1238 | // Trick: check if "@<=" or "@<!" follows, in which case |
| 1239 | // the \1 can appear before the referenced match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1240 | for (p = regparse; *p != NUL; ++p) |
| 1241 | if (p[0] == '@' && p[1] == '<' && (p[2] == '!' || p[2] == '=')) |
| 1242 | break; |
| 1243 | if (*p == NUL) |
| 1244 | { |
| 1245 | emsg(_("E65: Illegal back reference")); |
| 1246 | rc_did_emsg = TRUE; |
| 1247 | return FALSE; |
| 1248 | } |
| 1249 | } |
| 1250 | return TRUE; |
| 1251 | } |
| 1252 | |
| 1253 | /* |
| 1254 | * Parse the lowest level. |
| 1255 | * |
| 1256 | * Optimization: gobbles an entire sequence of ordinary characters so that |
| 1257 | * it can turn them into a single node, which is smaller to store and |
| 1258 | * faster to run. Don't do this when one_exactly is set. |
| 1259 | */ |
| 1260 | static char_u * |
| 1261 | regatom(int *flagp) |
| 1262 | { |
| 1263 | char_u *ret; |
| 1264 | int flags; |
| 1265 | int c; |
| 1266 | char_u *p; |
| 1267 | int extra = 0; |
| 1268 | int save_prev_at_start = prev_at_start; |
| 1269 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1270 | *flagp = WORST; // Tentatively. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1271 | |
| 1272 | c = getchr(); |
| 1273 | switch (c) |
| 1274 | { |
| 1275 | case Magic('^'): |
| 1276 | ret = regnode(BOL); |
| 1277 | break; |
| 1278 | |
| 1279 | case Magic('$'): |
| 1280 | ret = regnode(EOL); |
| 1281 | #if defined(FEAT_SYN_HL) || defined(PROTO) |
| 1282 | had_eol = TRUE; |
| 1283 | #endif |
| 1284 | break; |
| 1285 | |
| 1286 | case Magic('<'): |
| 1287 | ret = regnode(BOW); |
| 1288 | break; |
| 1289 | |
| 1290 | case Magic('>'): |
| 1291 | ret = regnode(EOW); |
| 1292 | break; |
| 1293 | |
| 1294 | case Magic('_'): |
| 1295 | c = no_Magic(getchr()); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1296 | if (c == '^') // "\_^" is start-of-line |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1297 | { |
| 1298 | ret = regnode(BOL); |
| 1299 | break; |
| 1300 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1301 | if (c == '$') // "\_$" is end-of-line |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1302 | { |
| 1303 | ret = regnode(EOL); |
| 1304 | #if defined(FEAT_SYN_HL) || defined(PROTO) |
| 1305 | had_eol = TRUE; |
| 1306 | #endif |
| 1307 | break; |
| 1308 | } |
| 1309 | |
| 1310 | extra = ADD_NL; |
| 1311 | *flagp |= HASNL; |
| 1312 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1313 | // "\_[" is character range plus newline |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1314 | if (c == '[') |
| 1315 | goto collection; |
| 1316 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1317 | // "\_x" is character class plus newline |
| 1318 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1319 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1320 | // Character classes. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1321 | case Magic('.'): |
| 1322 | case Magic('i'): |
| 1323 | case Magic('I'): |
| 1324 | case Magic('k'): |
| 1325 | case Magic('K'): |
| 1326 | case Magic('f'): |
| 1327 | case Magic('F'): |
| 1328 | case Magic('p'): |
| 1329 | case Magic('P'): |
| 1330 | case Magic('s'): |
| 1331 | case Magic('S'): |
| 1332 | case Magic('d'): |
| 1333 | case Magic('D'): |
| 1334 | case Magic('x'): |
| 1335 | case Magic('X'): |
| 1336 | case Magic('o'): |
| 1337 | case Magic('O'): |
| 1338 | case Magic('w'): |
| 1339 | case Magic('W'): |
| 1340 | case Magic('h'): |
| 1341 | case Magic('H'): |
| 1342 | case Magic('a'): |
| 1343 | case Magic('A'): |
| 1344 | case Magic('l'): |
| 1345 | case Magic('L'): |
| 1346 | case Magic('u'): |
| 1347 | case Magic('U'): |
| 1348 | p = vim_strchr(classchars, no_Magic(c)); |
| 1349 | if (p == NULL) |
| 1350 | EMSG_RET_NULL(_("E63: invalid use of \\_")); |
| 1351 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1352 | // When '.' is followed by a composing char ignore the dot, so that |
| 1353 | // the composing char is matched here. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1354 | if (enc_utf8 && c == Magic('.') && utf_iscomposing(peekchr())) |
| 1355 | { |
| 1356 | c = getchr(); |
| 1357 | goto do_multibyte; |
| 1358 | } |
| 1359 | ret = regnode(classcodes[p - classchars] + extra); |
| 1360 | *flagp |= HASWIDTH | SIMPLE; |
| 1361 | break; |
| 1362 | |
| 1363 | case Magic('n'): |
| 1364 | if (reg_string) |
| 1365 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1366 | // In a string "\n" matches a newline character. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1367 | ret = regnode(EXACTLY); |
| 1368 | regc(NL); |
| 1369 | regc(NUL); |
| 1370 | *flagp |= HASWIDTH | SIMPLE; |
| 1371 | } |
| 1372 | else |
| 1373 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1374 | // In buffer text "\n" matches the end of a line. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1375 | ret = regnode(NEWL); |
| 1376 | *flagp |= HASWIDTH | HASNL; |
| 1377 | } |
| 1378 | break; |
| 1379 | |
| 1380 | case Magic('('): |
| 1381 | if (one_exactly) |
| 1382 | EMSG_ONE_RET_NULL; |
| 1383 | ret = reg(REG_PAREN, &flags); |
| 1384 | if (ret == NULL) |
| 1385 | return NULL; |
| 1386 | *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); |
| 1387 | break; |
| 1388 | |
| 1389 | case NUL: |
| 1390 | case Magic('|'): |
| 1391 | case Magic('&'): |
| 1392 | case Magic(')'): |
| 1393 | if (one_exactly) |
| 1394 | EMSG_ONE_RET_NULL; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1395 | IEMSG_RET_NULL(_(e_internal)); // Supposed to be caught earlier. |
| 1396 | // NOTREACHED |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1397 | |
| 1398 | case Magic('='): |
| 1399 | case Magic('?'): |
| 1400 | case Magic('+'): |
| 1401 | case Magic('@'): |
| 1402 | case Magic('{'): |
| 1403 | case Magic('*'): |
| 1404 | c = no_Magic(c); |
| 1405 | EMSG3_RET_NULL(_("E64: %s%c follows nothing"), |
| 1406 | (c == '*' ? reg_magic >= MAGIC_ON : reg_magic == MAGIC_ALL), c); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1407 | // NOTREACHED |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1408 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1409 | case Magic('~'): // previous substitute pattern |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1410 | if (reg_prev_sub != NULL) |
| 1411 | { |
| 1412 | char_u *lp; |
| 1413 | |
| 1414 | ret = regnode(EXACTLY); |
| 1415 | lp = reg_prev_sub; |
| 1416 | while (*lp != NUL) |
| 1417 | regc(*lp++); |
| 1418 | regc(NUL); |
| 1419 | if (*reg_prev_sub != NUL) |
| 1420 | { |
| 1421 | *flagp |= HASWIDTH; |
| 1422 | if ((lp - reg_prev_sub) == 1) |
| 1423 | *flagp |= SIMPLE; |
| 1424 | } |
| 1425 | } |
| 1426 | else |
| 1427 | EMSG_RET_NULL(_(e_nopresub)); |
| 1428 | break; |
| 1429 | |
| 1430 | case Magic('1'): |
| 1431 | case Magic('2'): |
| 1432 | case Magic('3'): |
| 1433 | case Magic('4'): |
| 1434 | case Magic('5'): |
| 1435 | case Magic('6'): |
| 1436 | case Magic('7'): |
| 1437 | case Magic('8'): |
| 1438 | case Magic('9'): |
| 1439 | { |
| 1440 | int refnum; |
| 1441 | |
| 1442 | refnum = c - Magic('0'); |
| 1443 | if (!seen_endbrace(refnum)) |
| 1444 | return NULL; |
| 1445 | ret = regnode(BACKREF + refnum); |
| 1446 | } |
| 1447 | break; |
| 1448 | |
| 1449 | case Magic('z'): |
| 1450 | { |
| 1451 | c = no_Magic(getchr()); |
| 1452 | switch (c) |
| 1453 | { |
| 1454 | #ifdef FEAT_SYN_HL |
| 1455 | case '(': if ((reg_do_extmatch & REX_SET) == 0) |
| 1456 | EMSG_RET_NULL(_(e_z_not_allowed)); |
| 1457 | if (one_exactly) |
| 1458 | EMSG_ONE_RET_NULL; |
| 1459 | ret = reg(REG_ZPAREN, &flags); |
| 1460 | if (ret == NULL) |
| 1461 | return NULL; |
| 1462 | *flagp |= flags & (HASWIDTH|SPSTART|HASNL|HASLOOKBH); |
| 1463 | re_has_z = REX_SET; |
| 1464 | break; |
| 1465 | |
| 1466 | case '1': |
| 1467 | case '2': |
| 1468 | case '3': |
| 1469 | case '4': |
| 1470 | case '5': |
| 1471 | case '6': |
| 1472 | case '7': |
| 1473 | case '8': |
| 1474 | case '9': if ((reg_do_extmatch & REX_USE) == 0) |
| 1475 | EMSG_RET_NULL(_(e_z1_not_allowed)); |
| 1476 | ret = regnode(ZREF + c - '0'); |
| 1477 | re_has_z = REX_USE; |
| 1478 | break; |
| 1479 | #endif |
| 1480 | |
| 1481 | case 's': ret = regnode(MOPEN + 0); |
| 1482 | if (re_mult_next("\\zs") == FAIL) |
| 1483 | return NULL; |
| 1484 | break; |
| 1485 | |
| 1486 | case 'e': ret = regnode(MCLOSE + 0); |
| 1487 | if (re_mult_next("\\ze") == FAIL) |
| 1488 | return NULL; |
| 1489 | break; |
| 1490 | |
| 1491 | default: EMSG_RET_NULL(_("E68: Invalid character after \\z")); |
| 1492 | } |
| 1493 | } |
| 1494 | break; |
| 1495 | |
| 1496 | case Magic('%'): |
| 1497 | { |
| 1498 | c = no_Magic(getchr()); |
| 1499 | switch (c) |
| 1500 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1501 | // () without a back reference |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1502 | case '(': |
| 1503 | if (one_exactly) |
| 1504 | EMSG_ONE_RET_NULL; |
| 1505 | ret = reg(REG_NPAREN, &flags); |
| 1506 | if (ret == NULL) |
| 1507 | return NULL; |
| 1508 | *flagp |= flags & (HASWIDTH | SPSTART | HASNL | HASLOOKBH); |
| 1509 | break; |
| 1510 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1511 | // Catch \%^ and \%$ regardless of where they appear in the |
| 1512 | // pattern -- regardless of whether or not it makes sense. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1513 | case '^': |
| 1514 | ret = regnode(RE_BOF); |
| 1515 | break; |
| 1516 | |
| 1517 | case '$': |
| 1518 | ret = regnode(RE_EOF); |
| 1519 | break; |
| 1520 | |
| 1521 | case '#': |
| 1522 | ret = regnode(CURSOR); |
| 1523 | break; |
| 1524 | |
| 1525 | case 'V': |
| 1526 | ret = regnode(RE_VISUAL); |
| 1527 | break; |
| 1528 | |
| 1529 | case 'C': |
| 1530 | ret = regnode(RE_COMPOSING); |
| 1531 | break; |
| 1532 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1533 | // \%[abc]: Emit as a list of branches, all ending at the last |
| 1534 | // branch which matches nothing. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1535 | case '[': |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1536 | if (one_exactly) // doesn't nest |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1537 | EMSG_ONE_RET_NULL; |
| 1538 | { |
| 1539 | char_u *lastbranch; |
| 1540 | char_u *lastnode = NULL; |
| 1541 | char_u *br; |
| 1542 | |
| 1543 | ret = NULL; |
| 1544 | while ((c = getchr()) != ']') |
| 1545 | { |
| 1546 | if (c == NUL) |
| 1547 | EMSG2_RET_NULL(_(e_missing_sb), |
| 1548 | reg_magic == MAGIC_ALL); |
| 1549 | br = regnode(BRANCH); |
| 1550 | if (ret == NULL) |
| 1551 | ret = br; |
| 1552 | else |
| 1553 | { |
| 1554 | regtail(lastnode, br); |
| 1555 | if (reg_toolong) |
| 1556 | return NULL; |
| 1557 | } |
| 1558 | |
| 1559 | ungetchr(); |
| 1560 | one_exactly = TRUE; |
| 1561 | lastnode = regatom(flagp); |
| 1562 | one_exactly = FALSE; |
| 1563 | if (lastnode == NULL) |
| 1564 | return NULL; |
| 1565 | } |
| 1566 | if (ret == NULL) |
| 1567 | EMSG2_RET_NULL(_(e_empty_sb), |
| 1568 | reg_magic == MAGIC_ALL); |
| 1569 | lastbranch = regnode(BRANCH); |
| 1570 | br = regnode(NOTHING); |
| 1571 | if (ret != JUST_CALC_SIZE) |
| 1572 | { |
| 1573 | regtail(lastnode, br); |
| 1574 | regtail(lastbranch, br); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1575 | // connect all branches to the NOTHING |
| 1576 | // branch at the end |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1577 | for (br = ret; br != lastnode; ) |
| 1578 | { |
| 1579 | if (OP(br) == BRANCH) |
| 1580 | { |
| 1581 | regtail(br, lastbranch); |
| 1582 | if (reg_toolong) |
| 1583 | return NULL; |
| 1584 | br = OPERAND(br); |
| 1585 | } |
| 1586 | else |
| 1587 | br = regnext(br); |
| 1588 | } |
| 1589 | } |
| 1590 | *flagp &= ~(HASWIDTH | SIMPLE); |
| 1591 | break; |
| 1592 | } |
| 1593 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1594 | case 'd': // %d123 decimal |
| 1595 | case 'o': // %o123 octal |
| 1596 | case 'x': // %xab hex 2 |
| 1597 | case 'u': // %uabcd hex 4 |
| 1598 | case 'U': // %U1234abcd hex 8 |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1599 | { |
| 1600 | long i; |
| 1601 | |
| 1602 | switch (c) |
| 1603 | { |
| 1604 | case 'd': i = getdecchrs(); break; |
| 1605 | case 'o': i = getoctchrs(); break; |
| 1606 | case 'x': i = gethexchrs(2); break; |
| 1607 | case 'u': i = gethexchrs(4); break; |
| 1608 | case 'U': i = gethexchrs(8); break; |
| 1609 | default: i = -1; break; |
| 1610 | } |
| 1611 | |
| 1612 | if (i < 0 || i > INT_MAX) |
| 1613 | EMSG2_RET_NULL( |
| 1614 | _("E678: Invalid character after %s%%[dxouU]"), |
| 1615 | reg_magic == MAGIC_ALL); |
| 1616 | if (use_multibytecode(i)) |
| 1617 | ret = regnode(MULTIBYTECODE); |
| 1618 | else |
| 1619 | ret = regnode(EXACTLY); |
| 1620 | if (i == 0) |
| 1621 | regc(0x0a); |
| 1622 | else |
| 1623 | regmbc(i); |
| 1624 | regc(NUL); |
| 1625 | *flagp |= HASWIDTH; |
| 1626 | break; |
| 1627 | } |
| 1628 | |
| 1629 | default: |
| 1630 | if (VIM_ISDIGIT(c) || c == '<' || c == '>' |
| 1631 | || c == '\'') |
| 1632 | { |
| 1633 | long_u n = 0; |
| 1634 | int cmp; |
| 1635 | |
| 1636 | cmp = c; |
| 1637 | if (cmp == '<' || cmp == '>') |
| 1638 | c = getchr(); |
| 1639 | while (VIM_ISDIGIT(c)) |
| 1640 | { |
| 1641 | n = n * 10 + (c - '0'); |
| 1642 | c = getchr(); |
| 1643 | } |
| 1644 | if (c == '\'' && n == 0) |
| 1645 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1646 | // "\%'m", "\%<'m" and "\%>'m": Mark |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1647 | c = getchr(); |
| 1648 | ret = regnode(RE_MARK); |
| 1649 | if (ret == JUST_CALC_SIZE) |
| 1650 | regsize += 2; |
| 1651 | else |
| 1652 | { |
| 1653 | *regcode++ = c; |
| 1654 | *regcode++ = cmp; |
| 1655 | } |
| 1656 | break; |
| 1657 | } |
| 1658 | else if (c == 'l' || c == 'c' || c == 'v') |
| 1659 | { |
| 1660 | if (c == 'l') |
| 1661 | { |
| 1662 | ret = regnode(RE_LNUM); |
| 1663 | if (save_prev_at_start) |
| 1664 | at_start = TRUE; |
| 1665 | } |
| 1666 | else if (c == 'c') |
| 1667 | ret = regnode(RE_COL); |
| 1668 | else |
| 1669 | ret = regnode(RE_VCOL); |
| 1670 | if (ret == JUST_CALC_SIZE) |
| 1671 | regsize += 5; |
| 1672 | else |
| 1673 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1674 | // put the number and the optional |
| 1675 | // comparator after the opcode |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1676 | regcode = re_put_long(regcode, n); |
| 1677 | *regcode++ = cmp; |
| 1678 | } |
| 1679 | break; |
| 1680 | } |
| 1681 | } |
| 1682 | |
| 1683 | EMSG2_RET_NULL(_("E71: Invalid character after %s%%"), |
| 1684 | reg_magic == MAGIC_ALL); |
| 1685 | } |
| 1686 | } |
| 1687 | break; |
| 1688 | |
| 1689 | case Magic('['): |
| 1690 | collection: |
| 1691 | { |
| 1692 | char_u *lp; |
| 1693 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1694 | // If there is no matching ']', we assume the '[' is a normal |
| 1695 | // character. This makes 'incsearch' and ":help [" work. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1696 | lp = skip_anyof(regparse); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1697 | if (*lp == ']') // there is a matching ']' |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1698 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1699 | int startc = -1; // > 0 when next '-' is a range |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1700 | int endc; |
| 1701 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1702 | // In a character class, different parsing rules apply. |
| 1703 | // Not even \ is special anymore, nothing is. |
| 1704 | if (*regparse == '^') // Complement of range. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1705 | { |
| 1706 | ret = regnode(ANYBUT + extra); |
| 1707 | regparse++; |
| 1708 | } |
| 1709 | else |
| 1710 | ret = regnode(ANYOF + extra); |
| 1711 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1712 | // At the start ']' and '-' mean the literal character. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1713 | if (*regparse == ']' || *regparse == '-') |
| 1714 | { |
| 1715 | startc = *regparse; |
| 1716 | regc(*regparse++); |
| 1717 | } |
| 1718 | |
| 1719 | while (*regparse != NUL && *regparse != ']') |
| 1720 | { |
| 1721 | if (*regparse == '-') |
| 1722 | { |
| 1723 | ++regparse; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1724 | // The '-' is not used for a range at the end and |
| 1725 | // after or before a '\n'. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1726 | if (*regparse == ']' || *regparse == NUL |
| 1727 | || startc == -1 |
| 1728 | || (regparse[0] == '\\' && regparse[1] == 'n')) |
| 1729 | { |
| 1730 | regc('-'); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1731 | startc = '-'; // [--x] is a range |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1732 | } |
| 1733 | else |
| 1734 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1735 | // Also accept "a-[.z.]" |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1736 | endc = 0; |
| 1737 | if (*regparse == '[') |
| 1738 | endc = get_coll_element(®parse); |
| 1739 | if (endc == 0) |
| 1740 | { |
| 1741 | if (has_mbyte) |
| 1742 | endc = mb_ptr2char_adv(®parse); |
| 1743 | else |
| 1744 | endc = *regparse++; |
| 1745 | } |
| 1746 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1747 | // Handle \o40, \x20 and \u20AC style sequences |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1748 | if (endc == '\\' && !reg_cpo_lit && !reg_cpo_bsl) |
| 1749 | endc = coll_get_char(); |
| 1750 | |
| 1751 | if (startc > endc) |
| 1752 | EMSG_RET_NULL(_(e_reverse_range)); |
| 1753 | if (has_mbyte && ((*mb_char2len)(startc) > 1 |
| 1754 | || (*mb_char2len)(endc) > 1)) |
| 1755 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1756 | // Limit to a range of 256 chars. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1757 | if (endc > startc + 256) |
| 1758 | EMSG_RET_NULL(_(e_large_class)); |
| 1759 | while (++startc <= endc) |
| 1760 | regmbc(startc); |
| 1761 | } |
| 1762 | else |
| 1763 | { |
| 1764 | #ifdef EBCDIC |
| 1765 | int alpha_only = FALSE; |
| 1766 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1767 | // for alphabetical range skip the gaps |
| 1768 | // 'i'-'j', 'r'-'s', 'I'-'J' and 'R'-'S'. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1769 | if (isalpha(startc) && isalpha(endc)) |
| 1770 | alpha_only = TRUE; |
| 1771 | #endif |
| 1772 | while (++startc <= endc) |
| 1773 | #ifdef EBCDIC |
| 1774 | if (!alpha_only || isalpha(startc)) |
| 1775 | #endif |
| 1776 | regc(startc); |
| 1777 | } |
| 1778 | startc = -1; |
| 1779 | } |
| 1780 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1781 | // Only "\]", "\^", "\]" and "\\" are special in Vi. Vim |
| 1782 | // accepts "\t", "\e", etc., but only when the 'l' flag in |
| 1783 | // 'cpoptions' is not included. |
| 1784 | // Posix doesn't recognize backslash at all. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1785 | else if (*regparse == '\\' |
| 1786 | && !reg_cpo_bsl |
| 1787 | && (vim_strchr(REGEXP_INRANGE, regparse[1]) != NULL |
| 1788 | || (!reg_cpo_lit |
| 1789 | && vim_strchr(REGEXP_ABBR, |
| 1790 | regparse[1]) != NULL))) |
| 1791 | { |
| 1792 | regparse++; |
| 1793 | if (*regparse == 'n') |
| 1794 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1795 | // '\n' in range: also match NL |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1796 | if (ret != JUST_CALC_SIZE) |
| 1797 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1798 | // Using \n inside [^] does not change what |
| 1799 | // matches. "[^\n]" is the same as ".". |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1800 | if (*ret == ANYOF) |
| 1801 | { |
| 1802 | *ret = ANYOF + ADD_NL; |
| 1803 | *flagp |= HASNL; |
| 1804 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1805 | // else: must have had a \n already |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1806 | } |
| 1807 | regparse++; |
| 1808 | startc = -1; |
| 1809 | } |
| 1810 | else if (*regparse == 'd' |
| 1811 | || *regparse == 'o' |
| 1812 | || *regparse == 'x' |
| 1813 | || *regparse == 'u' |
| 1814 | || *regparse == 'U') |
| 1815 | { |
| 1816 | startc = coll_get_char(); |
| 1817 | if (startc == 0) |
| 1818 | regc(0x0a); |
| 1819 | else |
| 1820 | regmbc(startc); |
| 1821 | } |
| 1822 | else |
| 1823 | { |
| 1824 | startc = backslash_trans(*regparse++); |
| 1825 | regc(startc); |
| 1826 | } |
| 1827 | } |
| 1828 | else if (*regparse == '[') |
| 1829 | { |
| 1830 | int c_class; |
| 1831 | int cu; |
| 1832 | |
| 1833 | c_class = get_char_class(®parse); |
| 1834 | startc = -1; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1835 | // Characters assumed to be 8 bits! |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1836 | switch (c_class) |
| 1837 | { |
| 1838 | case CLASS_NONE: |
| 1839 | c_class = get_equi_class(®parse); |
| 1840 | if (c_class != 0) |
| 1841 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1842 | // produce equivalence class |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1843 | reg_equi_class(c_class); |
| 1844 | } |
| 1845 | else if ((c_class = |
| 1846 | get_coll_element(®parse)) != 0) |
| 1847 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1848 | // produce a collating element |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1849 | regmbc(c_class); |
| 1850 | } |
| 1851 | else |
| 1852 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1853 | // literal '[', allow [[-x] as a range |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1854 | startc = *regparse++; |
| 1855 | regc(startc); |
| 1856 | } |
| 1857 | break; |
| 1858 | case CLASS_ALNUM: |
| 1859 | for (cu = 1; cu < 128; cu++) |
| 1860 | if (isalnum(cu)) |
| 1861 | regmbc(cu); |
| 1862 | break; |
| 1863 | case CLASS_ALPHA: |
| 1864 | for (cu = 1; cu < 128; cu++) |
| 1865 | if (isalpha(cu)) |
| 1866 | regmbc(cu); |
| 1867 | break; |
| 1868 | case CLASS_BLANK: |
| 1869 | regc(' '); |
| 1870 | regc('\t'); |
| 1871 | break; |
| 1872 | case CLASS_CNTRL: |
| 1873 | for (cu = 1; cu <= 127; cu++) |
| 1874 | if (iscntrl(cu)) |
| 1875 | regmbc(cu); |
| 1876 | break; |
| 1877 | case CLASS_DIGIT: |
| 1878 | for (cu = 1; cu <= 127; cu++) |
| 1879 | if (VIM_ISDIGIT(cu)) |
| 1880 | regmbc(cu); |
| 1881 | break; |
| 1882 | case CLASS_GRAPH: |
| 1883 | for (cu = 1; cu <= 127; cu++) |
| 1884 | if (isgraph(cu)) |
| 1885 | regmbc(cu); |
| 1886 | break; |
| 1887 | case CLASS_LOWER: |
| 1888 | for (cu = 1; cu <= 255; cu++) |
| 1889 | if (MB_ISLOWER(cu) && cu != 170 |
| 1890 | && cu != 186) |
| 1891 | regmbc(cu); |
| 1892 | break; |
| 1893 | case CLASS_PRINT: |
| 1894 | for (cu = 1; cu <= 255; cu++) |
| 1895 | if (vim_isprintc(cu)) |
| 1896 | regmbc(cu); |
| 1897 | break; |
| 1898 | case CLASS_PUNCT: |
| 1899 | for (cu = 1; cu < 128; cu++) |
| 1900 | if (ispunct(cu)) |
| 1901 | regmbc(cu); |
| 1902 | break; |
| 1903 | case CLASS_SPACE: |
| 1904 | for (cu = 9; cu <= 13; cu++) |
| 1905 | regc(cu); |
| 1906 | regc(' '); |
| 1907 | break; |
| 1908 | case CLASS_UPPER: |
| 1909 | for (cu = 1; cu <= 255; cu++) |
| 1910 | if (MB_ISUPPER(cu)) |
| 1911 | regmbc(cu); |
| 1912 | break; |
| 1913 | case CLASS_XDIGIT: |
| 1914 | for (cu = 1; cu <= 255; cu++) |
| 1915 | if (vim_isxdigit(cu)) |
| 1916 | regmbc(cu); |
| 1917 | break; |
| 1918 | case CLASS_TAB: |
| 1919 | regc('\t'); |
| 1920 | break; |
| 1921 | case CLASS_RETURN: |
| 1922 | regc('\r'); |
| 1923 | break; |
| 1924 | case CLASS_BACKSPACE: |
| 1925 | regc('\b'); |
| 1926 | break; |
| 1927 | case CLASS_ESCAPE: |
| 1928 | regc('\033'); |
| 1929 | break; |
| 1930 | case CLASS_IDENT: |
| 1931 | for (cu = 1; cu <= 255; cu++) |
| 1932 | if (vim_isIDc(cu)) |
| 1933 | regmbc(cu); |
| 1934 | break; |
| 1935 | case CLASS_KEYWORD: |
| 1936 | for (cu = 1; cu <= 255; cu++) |
| 1937 | if (reg_iswordc(cu)) |
| 1938 | regmbc(cu); |
| 1939 | break; |
| 1940 | case CLASS_FNAME: |
| 1941 | for (cu = 1; cu <= 255; cu++) |
| 1942 | if (vim_isfilec(cu)) |
| 1943 | regmbc(cu); |
| 1944 | break; |
| 1945 | } |
| 1946 | } |
| 1947 | else |
| 1948 | { |
| 1949 | if (has_mbyte) |
| 1950 | { |
| 1951 | int len; |
| 1952 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1953 | // produce a multibyte character, including any |
| 1954 | // following composing characters |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1955 | startc = mb_ptr2char(regparse); |
| 1956 | len = (*mb_ptr2len)(regparse); |
| 1957 | if (enc_utf8 && utf_char2len(startc) != len) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1958 | startc = -1; // composing chars |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1959 | while (--len >= 0) |
| 1960 | regc(*regparse++); |
| 1961 | } |
| 1962 | else |
| 1963 | { |
| 1964 | startc = *regparse++; |
| 1965 | regc(startc); |
| 1966 | } |
| 1967 | } |
| 1968 | } |
| 1969 | regc(NUL); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1970 | prevchr_len = 1; // last char was the ']' |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1971 | if (*regparse != ']') |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1972 | EMSG_RET_NULL(_(e_toomsbra)); // Cannot happen? |
| 1973 | skipchr(); // let's be friends with the lexer again |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1974 | *flagp |= HASWIDTH | SIMPLE; |
| 1975 | break; |
| 1976 | } |
| 1977 | else if (reg_strict) |
| 1978 | EMSG2_RET_NULL(_(e_missingbracket), reg_magic > MAGIC_OFF); |
| 1979 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1980 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1981 | |
| 1982 | default: |
| 1983 | { |
| 1984 | int len; |
| 1985 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1986 | // A multi-byte character is handled as a separate atom if it's |
| 1987 | // before a multi and when it's a composing char. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 1988 | if (use_multibytecode(c)) |
| 1989 | { |
| 1990 | do_multibyte: |
| 1991 | ret = regnode(MULTIBYTECODE); |
| 1992 | regmbc(c); |
| 1993 | *flagp |= HASWIDTH | SIMPLE; |
| 1994 | break; |
| 1995 | } |
| 1996 | |
| 1997 | ret = regnode(EXACTLY); |
| 1998 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 1999 | // Append characters as long as: |
| 2000 | // - there is no following multi, we then need the character in |
| 2001 | // front of it as a single character operand |
| 2002 | // - not running into a Magic character |
| 2003 | // - "one_exactly" is not set |
| 2004 | // But always emit at least one character. Might be a Multi, |
| 2005 | // e.g., a "[" without matching "]". |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2006 | for (len = 0; c != NUL && (len == 0 |
| 2007 | || (re_multi_type(peekchr()) == NOT_MULTI |
| 2008 | && !one_exactly |
| 2009 | && !is_Magic(c))); ++len) |
| 2010 | { |
| 2011 | c = no_Magic(c); |
| 2012 | if (has_mbyte) |
| 2013 | { |
| 2014 | regmbc(c); |
| 2015 | if (enc_utf8) |
| 2016 | { |
| 2017 | int l; |
| 2018 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2019 | // Need to get composing character too. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2020 | for (;;) |
| 2021 | { |
| 2022 | l = utf_ptr2len(regparse); |
| 2023 | if (!UTF_COMPOSINGLIKE(regparse, regparse + l)) |
| 2024 | break; |
| 2025 | regmbc(utf_ptr2char(regparse)); |
| 2026 | skipchr(); |
| 2027 | } |
| 2028 | } |
| 2029 | } |
| 2030 | else |
| 2031 | regc(c); |
| 2032 | c = getchr(); |
| 2033 | } |
| 2034 | ungetchr(); |
| 2035 | |
| 2036 | regc(NUL); |
| 2037 | *flagp |= HASWIDTH; |
| 2038 | if (len == 1) |
| 2039 | *flagp |= SIMPLE; |
| 2040 | } |
| 2041 | break; |
| 2042 | } |
| 2043 | |
| 2044 | return ret; |
| 2045 | } |
| 2046 | |
| 2047 | /* |
| 2048 | * Parse something followed by possible [*+=]. |
| 2049 | * |
| 2050 | * Note that the branching code sequences used for = and the general cases |
| 2051 | * of * and + are somewhat optimized: they use the same NOTHING node as |
| 2052 | * both the endmarker for their branch list and the body of the last branch. |
| 2053 | * It might seem that this node could be dispensed with entirely, but the |
| 2054 | * endmarker role is not redundant. |
| 2055 | */ |
| 2056 | static char_u * |
| 2057 | regpiece(int *flagp) |
| 2058 | { |
| 2059 | char_u *ret; |
| 2060 | int op; |
| 2061 | char_u *next; |
| 2062 | int flags; |
| 2063 | long minval; |
| 2064 | long maxval; |
| 2065 | |
| 2066 | ret = regatom(&flags); |
| 2067 | if (ret == NULL) |
| 2068 | return NULL; |
| 2069 | |
| 2070 | op = peekchr(); |
| 2071 | if (re_multi_type(op) == NOT_MULTI) |
| 2072 | { |
| 2073 | *flagp = flags; |
| 2074 | return ret; |
| 2075 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2076 | // default flags |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2077 | *flagp = (WORST | SPSTART | (flags & (HASNL | HASLOOKBH))); |
| 2078 | |
| 2079 | skipchr(); |
| 2080 | switch (op) |
| 2081 | { |
| 2082 | case Magic('*'): |
| 2083 | if (flags & SIMPLE) |
| 2084 | reginsert(STAR, ret); |
| 2085 | else |
| 2086 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2087 | // Emit x* as (x&|), where & means "self". |
| 2088 | reginsert(BRANCH, ret); // Either x |
| 2089 | regoptail(ret, regnode(BACK)); // and loop |
| 2090 | regoptail(ret, ret); // back |
| 2091 | regtail(ret, regnode(BRANCH)); // or |
| 2092 | regtail(ret, regnode(NOTHING)); // null. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2093 | } |
| 2094 | break; |
| 2095 | |
| 2096 | case Magic('+'): |
| 2097 | if (flags & SIMPLE) |
| 2098 | reginsert(PLUS, ret); |
| 2099 | else |
| 2100 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2101 | // Emit x+ as x(&|), where & means "self". |
| 2102 | next = regnode(BRANCH); // Either |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2103 | regtail(ret, next); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2104 | regtail(regnode(BACK), ret); // loop back |
| 2105 | regtail(next, regnode(BRANCH)); // or |
| 2106 | regtail(ret, regnode(NOTHING)); // null. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2107 | } |
| 2108 | *flagp = (WORST | HASWIDTH | (flags & (HASNL | HASLOOKBH))); |
| 2109 | break; |
| 2110 | |
| 2111 | case Magic('@'): |
| 2112 | { |
| 2113 | int lop = END; |
| 2114 | long nr; |
| 2115 | |
| 2116 | nr = getdecchrs(); |
| 2117 | switch (no_Magic(getchr())) |
| 2118 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2119 | case '=': lop = MATCH; break; // \@= |
| 2120 | case '!': lop = NOMATCH; break; // \@! |
| 2121 | case '>': lop = SUBPAT; break; // \@> |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2122 | case '<': switch (no_Magic(getchr())) |
| 2123 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2124 | case '=': lop = BEHIND; break; // \@<= |
| 2125 | case '!': lop = NOBEHIND; break; // \@<! |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2126 | } |
| 2127 | } |
| 2128 | if (lop == END) |
| 2129 | EMSG2_RET_NULL(_("E59: invalid character after %s@"), |
| 2130 | reg_magic == MAGIC_ALL); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2131 | // Look behind must match with behind_pos. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2132 | if (lop == BEHIND || lop == NOBEHIND) |
| 2133 | { |
| 2134 | regtail(ret, regnode(BHPOS)); |
| 2135 | *flagp |= HASLOOKBH; |
| 2136 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2137 | regtail(ret, regnode(END)); // operand ends |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2138 | if (lop == BEHIND || lop == NOBEHIND) |
| 2139 | { |
| 2140 | if (nr < 0) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2141 | nr = 0; // no limit is same as zero limit |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2142 | reginsert_nr(lop, nr, ret); |
| 2143 | } |
| 2144 | else |
| 2145 | reginsert(lop, ret); |
| 2146 | break; |
| 2147 | } |
| 2148 | |
| 2149 | case Magic('?'): |
| 2150 | case Magic('='): |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2151 | // Emit x= as (x|) |
| 2152 | reginsert(BRANCH, ret); // Either x |
| 2153 | regtail(ret, regnode(BRANCH)); // or |
| 2154 | next = regnode(NOTHING); // null. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2155 | regtail(ret, next); |
| 2156 | regoptail(ret, next); |
| 2157 | break; |
| 2158 | |
| 2159 | case Magic('{'): |
| 2160 | if (!read_limits(&minval, &maxval)) |
| 2161 | return NULL; |
| 2162 | if (flags & SIMPLE) |
| 2163 | { |
| 2164 | reginsert(BRACE_SIMPLE, ret); |
| 2165 | reginsert_limits(BRACE_LIMITS, minval, maxval, ret); |
| 2166 | } |
| 2167 | else |
| 2168 | { |
| 2169 | if (num_complex_braces >= 10) |
| 2170 | EMSG2_RET_NULL(_("E60: Too many complex %s{...}s"), |
| 2171 | reg_magic == MAGIC_ALL); |
| 2172 | reginsert(BRACE_COMPLEX + num_complex_braces, ret); |
| 2173 | regoptail(ret, regnode(BACK)); |
| 2174 | regoptail(ret, ret); |
| 2175 | reginsert_limits(BRACE_LIMITS, minval, maxval, ret); |
| 2176 | ++num_complex_braces; |
| 2177 | } |
| 2178 | if (minval > 0 && maxval > 0) |
| 2179 | *flagp = (HASWIDTH | (flags & (HASNL | HASLOOKBH))); |
| 2180 | break; |
| 2181 | } |
| 2182 | if (re_multi_type(peekchr()) != NOT_MULTI) |
| 2183 | { |
| 2184 | // Can't have a multi follow a multi. |
| 2185 | if (peekchr() == Magic('*')) |
| 2186 | EMSG2_RET_NULL(_("E61: Nested %s*"), reg_magic >= MAGIC_ON); |
| 2187 | EMSG3_RET_NULL(_("E62: Nested %s%c"), reg_magic == MAGIC_ALL, |
| 2188 | no_Magic(peekchr())); |
| 2189 | } |
| 2190 | |
| 2191 | return ret; |
| 2192 | } |
| 2193 | |
| 2194 | /* |
| 2195 | * Parse one alternative of an | or & operator. |
| 2196 | * Implements the concatenation operator. |
| 2197 | */ |
| 2198 | static char_u * |
| 2199 | regconcat(int *flagp) |
| 2200 | { |
| 2201 | char_u *first = NULL; |
| 2202 | char_u *chain = NULL; |
| 2203 | char_u *latest; |
| 2204 | int flags; |
| 2205 | int cont = TRUE; |
| 2206 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2207 | *flagp = WORST; // Tentatively. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2208 | |
| 2209 | while (cont) |
| 2210 | { |
| 2211 | switch (peekchr()) |
| 2212 | { |
| 2213 | case NUL: |
| 2214 | case Magic('|'): |
| 2215 | case Magic('&'): |
| 2216 | case Magic(')'): |
| 2217 | cont = FALSE; |
| 2218 | break; |
| 2219 | case Magic('Z'): |
| 2220 | regflags |= RF_ICOMBINE; |
| 2221 | skipchr_keepstart(); |
| 2222 | break; |
| 2223 | case Magic('c'): |
| 2224 | regflags |= RF_ICASE; |
| 2225 | skipchr_keepstart(); |
| 2226 | break; |
| 2227 | case Magic('C'): |
| 2228 | regflags |= RF_NOICASE; |
| 2229 | skipchr_keepstart(); |
| 2230 | break; |
| 2231 | case Magic('v'): |
| 2232 | reg_magic = MAGIC_ALL; |
| 2233 | skipchr_keepstart(); |
| 2234 | curchr = -1; |
| 2235 | break; |
| 2236 | case Magic('m'): |
| 2237 | reg_magic = MAGIC_ON; |
| 2238 | skipchr_keepstart(); |
| 2239 | curchr = -1; |
| 2240 | break; |
| 2241 | case Magic('M'): |
| 2242 | reg_magic = MAGIC_OFF; |
| 2243 | skipchr_keepstart(); |
| 2244 | curchr = -1; |
| 2245 | break; |
| 2246 | case Magic('V'): |
| 2247 | reg_magic = MAGIC_NONE; |
| 2248 | skipchr_keepstart(); |
| 2249 | curchr = -1; |
| 2250 | break; |
| 2251 | default: |
| 2252 | latest = regpiece(&flags); |
| 2253 | if (latest == NULL || reg_toolong) |
| 2254 | return NULL; |
| 2255 | *flagp |= flags & (HASWIDTH | HASNL | HASLOOKBH); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2256 | if (chain == NULL) // First piece. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2257 | *flagp |= flags & SPSTART; |
| 2258 | else |
| 2259 | regtail(chain, latest); |
| 2260 | chain = latest; |
| 2261 | if (first == NULL) |
| 2262 | first = latest; |
| 2263 | break; |
| 2264 | } |
| 2265 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2266 | if (first == NULL) // Loop ran zero times. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2267 | first = regnode(NOTHING); |
| 2268 | return first; |
| 2269 | } |
| 2270 | |
| 2271 | /* |
| 2272 | * Parse one alternative of an | operator. |
| 2273 | * Implements the & operator. |
| 2274 | */ |
| 2275 | static char_u * |
| 2276 | regbranch(int *flagp) |
| 2277 | { |
| 2278 | char_u *ret; |
| 2279 | char_u *chain = NULL; |
| 2280 | char_u *latest; |
| 2281 | int flags; |
| 2282 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2283 | *flagp = WORST | HASNL; // Tentatively. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2284 | |
| 2285 | ret = regnode(BRANCH); |
| 2286 | for (;;) |
| 2287 | { |
| 2288 | latest = regconcat(&flags); |
| 2289 | if (latest == NULL) |
| 2290 | return NULL; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2291 | // If one of the branches has width, the whole thing has. If one of |
| 2292 | // the branches anchors at start-of-line, the whole thing does. |
| 2293 | // If one of the branches uses look-behind, the whole thing does. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2294 | *flagp |= flags & (HASWIDTH | SPSTART | HASLOOKBH); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2295 | // If one of the branches doesn't match a line-break, the whole thing |
| 2296 | // doesn't. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2297 | *flagp &= ~HASNL | (flags & HASNL); |
| 2298 | if (chain != NULL) |
| 2299 | regtail(chain, latest); |
| 2300 | if (peekchr() != Magic('&')) |
| 2301 | break; |
| 2302 | skipchr(); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2303 | regtail(latest, regnode(END)); // operand ends |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2304 | if (reg_toolong) |
| 2305 | break; |
| 2306 | reginsert(MATCH, latest); |
| 2307 | chain = latest; |
| 2308 | } |
| 2309 | |
| 2310 | return ret; |
| 2311 | } |
| 2312 | |
| 2313 | /* |
| 2314 | * Parse regular expression, i.e. main body or parenthesized thing. |
| 2315 | * |
| 2316 | * Caller must absorb opening parenthesis. |
| 2317 | * |
| 2318 | * Combining parenthesis handling with the base level of regular expression |
| 2319 | * is a trifle forced, but the need to tie the tails of the branches to what |
| 2320 | * follows makes it hard to avoid. |
| 2321 | */ |
| 2322 | static char_u * |
| 2323 | reg( |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2324 | int paren, // REG_NOPAREN, REG_PAREN, REG_NPAREN or REG_ZPAREN |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2325 | int *flagp) |
| 2326 | { |
| 2327 | char_u *ret; |
| 2328 | char_u *br; |
| 2329 | char_u *ender; |
| 2330 | int parno = 0; |
| 2331 | int flags; |
| 2332 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2333 | *flagp = HASWIDTH; // Tentatively. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2334 | |
| 2335 | #ifdef FEAT_SYN_HL |
| 2336 | if (paren == REG_ZPAREN) |
| 2337 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2338 | // Make a ZOPEN node. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2339 | if (regnzpar >= NSUBEXP) |
| 2340 | EMSG_RET_NULL(_("E50: Too many \\z(")); |
| 2341 | parno = regnzpar; |
| 2342 | regnzpar++; |
| 2343 | ret = regnode(ZOPEN + parno); |
| 2344 | } |
| 2345 | else |
| 2346 | #endif |
| 2347 | if (paren == REG_PAREN) |
| 2348 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2349 | // Make a MOPEN node. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2350 | if (regnpar >= NSUBEXP) |
| 2351 | EMSG2_RET_NULL(_("E51: Too many %s("), reg_magic == MAGIC_ALL); |
| 2352 | parno = regnpar; |
| 2353 | ++regnpar; |
| 2354 | ret = regnode(MOPEN + parno); |
| 2355 | } |
| 2356 | else if (paren == REG_NPAREN) |
| 2357 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2358 | // Make a NOPEN node. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2359 | ret = regnode(NOPEN); |
| 2360 | } |
| 2361 | else |
| 2362 | ret = NULL; |
| 2363 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2364 | // Pick up the branches, linking them together. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2365 | br = regbranch(&flags); |
| 2366 | if (br == NULL) |
| 2367 | return NULL; |
| 2368 | if (ret != NULL) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2369 | regtail(ret, br); // [MZ]OPEN -> first. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2370 | else |
| 2371 | ret = br; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2372 | // If one of the branches can be zero-width, the whole thing can. |
| 2373 | // If one of the branches has * at start or matches a line-break, the |
| 2374 | // whole thing can. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2375 | if (!(flags & HASWIDTH)) |
| 2376 | *flagp &= ~HASWIDTH; |
| 2377 | *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); |
| 2378 | while (peekchr() == Magic('|')) |
| 2379 | { |
| 2380 | skipchr(); |
| 2381 | br = regbranch(&flags); |
| 2382 | if (br == NULL || reg_toolong) |
| 2383 | return NULL; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2384 | regtail(ret, br); // BRANCH -> BRANCH. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2385 | if (!(flags & HASWIDTH)) |
| 2386 | *flagp &= ~HASWIDTH; |
| 2387 | *flagp |= flags & (SPSTART | HASNL | HASLOOKBH); |
| 2388 | } |
| 2389 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2390 | // Make a closing node, and hook it on the end. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2391 | ender = regnode( |
| 2392 | #ifdef FEAT_SYN_HL |
| 2393 | paren == REG_ZPAREN ? ZCLOSE + parno : |
| 2394 | #endif |
| 2395 | paren == REG_PAREN ? MCLOSE + parno : |
| 2396 | paren == REG_NPAREN ? NCLOSE : END); |
| 2397 | regtail(ret, ender); |
| 2398 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2399 | // Hook the tails of the branches to the closing node. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2400 | for (br = ret; br != NULL; br = regnext(br)) |
| 2401 | regoptail(br, ender); |
| 2402 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2403 | // Check for proper termination. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2404 | if (paren != REG_NOPAREN && getchr() != Magic(')')) |
| 2405 | { |
| 2406 | #ifdef FEAT_SYN_HL |
| 2407 | if (paren == REG_ZPAREN) |
| 2408 | EMSG_RET_NULL(_("E52: Unmatched \\z(")); |
| 2409 | else |
| 2410 | #endif |
| 2411 | if (paren == REG_NPAREN) |
| 2412 | EMSG2_RET_NULL(_(e_unmatchedpp), reg_magic == MAGIC_ALL); |
| 2413 | else |
| 2414 | EMSG2_RET_NULL(_(e_unmatchedp), reg_magic == MAGIC_ALL); |
| 2415 | } |
| 2416 | else if (paren == REG_NOPAREN && peekchr() != NUL) |
| 2417 | { |
| 2418 | if (curchr == Magic(')')) |
| 2419 | EMSG2_RET_NULL(_(e_unmatchedpar), reg_magic == MAGIC_ALL); |
| 2420 | else |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2421 | EMSG_RET_NULL(_(e_trailing)); // "Can't happen". |
| 2422 | // NOTREACHED |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2423 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2424 | // Here we set the flag allowing back references to this set of |
| 2425 | // parentheses. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2426 | if (paren == REG_PAREN) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2427 | had_endbrace[parno] = TRUE; // have seen the close paren |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2428 | return ret; |
| 2429 | } |
| 2430 | |
| 2431 | /* |
| 2432 | * bt_regcomp() - compile a regular expression into internal code for the |
| 2433 | * traditional back track matcher. |
| 2434 | * Returns the program in allocated space. Returns NULL for an error. |
| 2435 | * |
| 2436 | * We can't allocate space until we know how big the compiled form will be, |
| 2437 | * but we can't compile it (and thus know how big it is) until we've got a |
| 2438 | * place to put the code. So we cheat: we compile it twice, once with code |
| 2439 | * generation turned off and size counting turned on, and once "for real". |
| 2440 | * This also means that we don't allocate space until we are sure that the |
| 2441 | * thing really will compile successfully, and we never have to move the |
| 2442 | * code and thus invalidate pointers into it. (Note that it has to be in |
| 2443 | * one piece because vim_free() must be able to free it all.) |
| 2444 | * |
| 2445 | * Whether upper/lower case is to be ignored is decided when executing the |
| 2446 | * program, it does not matter here. |
| 2447 | * |
| 2448 | * Beware that the optimization-preparation code in here knows about some |
| 2449 | * of the structure of the compiled regexp. |
| 2450 | * "re_flags": RE_MAGIC and/or RE_STRING. |
| 2451 | */ |
| 2452 | static regprog_T * |
| 2453 | bt_regcomp(char_u *expr, int re_flags) |
| 2454 | { |
| 2455 | bt_regprog_T *r; |
| 2456 | char_u *scan; |
| 2457 | char_u *longest; |
| 2458 | int len; |
| 2459 | int flags; |
| 2460 | |
| 2461 | if (expr == NULL) |
Bram Moolenaar | e83cca2 | 2020-09-07 18:53:21 +0200 | [diff] [blame] | 2462 | IEMSG_RET_NULL(_(e_null)); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2463 | |
| 2464 | init_class_tab(); |
| 2465 | |
| 2466 | // First pass: determine size, legality. |
| 2467 | regcomp_start(expr, re_flags); |
| 2468 | regcode = JUST_CALC_SIZE; |
| 2469 | regc(REGMAGIC); |
| 2470 | if (reg(REG_NOPAREN, &flags) == NULL) |
| 2471 | return NULL; |
| 2472 | |
| 2473 | // Allocate space. |
| 2474 | r = alloc(offsetof(bt_regprog_T, program) + regsize); |
| 2475 | if (r == NULL) |
| 2476 | return NULL; |
| 2477 | r->re_in_use = FALSE; |
| 2478 | |
| 2479 | // Second pass: emit code. |
| 2480 | regcomp_start(expr, re_flags); |
| 2481 | regcode = r->program; |
| 2482 | regc(REGMAGIC); |
| 2483 | if (reg(REG_NOPAREN, &flags) == NULL || reg_toolong) |
| 2484 | { |
| 2485 | vim_free(r); |
| 2486 | if (reg_toolong) |
| 2487 | EMSG_RET_NULL(_("E339: Pattern too long")); |
| 2488 | return NULL; |
| 2489 | } |
| 2490 | |
| 2491 | // Dig out information for optimizations. |
| 2492 | r->regstart = NUL; // Worst-case defaults. |
| 2493 | r->reganch = 0; |
| 2494 | r->regmust = NULL; |
| 2495 | r->regmlen = 0; |
| 2496 | r->regflags = regflags; |
| 2497 | if (flags & HASNL) |
| 2498 | r->regflags |= RF_HASNL; |
| 2499 | if (flags & HASLOOKBH) |
| 2500 | r->regflags |= RF_LOOKBH; |
| 2501 | #ifdef FEAT_SYN_HL |
| 2502 | // Remember whether this pattern has any \z specials in it. |
| 2503 | r->reghasz = re_has_z; |
| 2504 | #endif |
| 2505 | scan = r->program + 1; // First BRANCH. |
| 2506 | if (OP(regnext(scan)) == END) // Only one top-level choice. |
| 2507 | { |
| 2508 | scan = OPERAND(scan); |
| 2509 | |
| 2510 | // Starting-point info. |
| 2511 | if (OP(scan) == BOL || OP(scan) == RE_BOF) |
| 2512 | { |
| 2513 | r->reganch++; |
| 2514 | scan = regnext(scan); |
| 2515 | } |
| 2516 | |
| 2517 | if (OP(scan) == EXACTLY) |
| 2518 | { |
| 2519 | if (has_mbyte) |
| 2520 | r->regstart = (*mb_ptr2char)(OPERAND(scan)); |
| 2521 | else |
| 2522 | r->regstart = *OPERAND(scan); |
| 2523 | } |
| 2524 | else if ((OP(scan) == BOW |
| 2525 | || OP(scan) == EOW |
| 2526 | || OP(scan) == NOTHING |
| 2527 | || OP(scan) == MOPEN + 0 || OP(scan) == NOPEN |
| 2528 | || OP(scan) == MCLOSE + 0 || OP(scan) == NCLOSE) |
| 2529 | && OP(regnext(scan)) == EXACTLY) |
| 2530 | { |
| 2531 | if (has_mbyte) |
| 2532 | r->regstart = (*mb_ptr2char)(OPERAND(regnext(scan))); |
| 2533 | else |
| 2534 | r->regstart = *OPERAND(regnext(scan)); |
| 2535 | } |
| 2536 | |
| 2537 | // If there's something expensive in the r.e., find the longest |
| 2538 | // literal string that must appear and make it the regmust. Resolve |
| 2539 | // ties in favor of later strings, since the regstart check works |
| 2540 | // with the beginning of the r.e. and avoiding duplication |
| 2541 | // strengthens checking. Not a strong reason, but sufficient in the |
| 2542 | // absence of others. |
| 2543 | |
| 2544 | // When the r.e. starts with BOW, it is faster to look for a regmust |
| 2545 | // first. Used a lot for "#" and "*" commands. (Added by mool). |
| 2546 | if ((flags & SPSTART || OP(scan) == BOW || OP(scan) == EOW) |
| 2547 | && !(flags & HASNL)) |
| 2548 | { |
| 2549 | longest = NULL; |
| 2550 | len = 0; |
| 2551 | for (; scan != NULL; scan = regnext(scan)) |
| 2552 | if (OP(scan) == EXACTLY && STRLEN(OPERAND(scan)) >= (size_t)len) |
| 2553 | { |
| 2554 | longest = OPERAND(scan); |
| 2555 | len = (int)STRLEN(OPERAND(scan)); |
| 2556 | } |
| 2557 | r->regmust = longest; |
| 2558 | r->regmlen = len; |
| 2559 | } |
| 2560 | } |
| 2561 | #ifdef BT_REGEXP_DUMP |
| 2562 | regdump(expr, r); |
| 2563 | #endif |
| 2564 | r->engine = &bt_regengine; |
| 2565 | return (regprog_T *)r; |
| 2566 | } |
| 2567 | |
| 2568 | #if defined(FEAT_SYN_HL) || defined(PROTO) |
| 2569 | /* |
| 2570 | * Check if during the previous call to vim_regcomp the EOL item "$" has been |
| 2571 | * found. This is messy, but it works fine. |
| 2572 | */ |
| 2573 | int |
| 2574 | vim_regcomp_had_eol(void) |
| 2575 | { |
| 2576 | return had_eol; |
| 2577 | } |
| 2578 | #endif |
| 2579 | |
| 2580 | /* |
| 2581 | * Get a number after a backslash that is inside []. |
| 2582 | * When nothing is recognized return a backslash. |
| 2583 | */ |
| 2584 | static int |
| 2585 | coll_get_char(void) |
| 2586 | { |
| 2587 | long nr = -1; |
| 2588 | |
| 2589 | switch (*regparse++) |
| 2590 | { |
| 2591 | case 'd': nr = getdecchrs(); break; |
| 2592 | case 'o': nr = getoctchrs(); break; |
| 2593 | case 'x': nr = gethexchrs(2); break; |
| 2594 | case 'u': nr = gethexchrs(4); break; |
| 2595 | case 'U': nr = gethexchrs(8); break; |
| 2596 | } |
| 2597 | if (nr < 0 || nr > INT_MAX) |
| 2598 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2599 | // If getting the number fails be backwards compatible: the character |
| 2600 | // is a backslash. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2601 | --regparse; |
| 2602 | nr = '\\'; |
| 2603 | } |
| 2604 | return nr; |
| 2605 | } |
| 2606 | |
| 2607 | /* |
| 2608 | * Free a compiled regexp program, returned by bt_regcomp(). |
| 2609 | */ |
| 2610 | static void |
| 2611 | bt_regfree(regprog_T *prog) |
| 2612 | { |
| 2613 | vim_free(prog); |
| 2614 | } |
| 2615 | |
| 2616 | #define ADVANCE_REGINPUT() MB_PTR_ADV(rex.input) |
| 2617 | |
| 2618 | /* |
| 2619 | * The arguments from BRACE_LIMITS are stored here. They are actually local |
| 2620 | * to regmatch(), but they are here to reduce the amount of stack space used |
| 2621 | * (it can be called recursively many times). |
| 2622 | */ |
| 2623 | static long bl_minval; |
| 2624 | static long bl_maxval; |
| 2625 | |
| 2626 | /* |
| 2627 | * Save the input line and position in a regsave_T. |
| 2628 | */ |
| 2629 | static void |
| 2630 | reg_save(regsave_T *save, garray_T *gap) |
| 2631 | { |
| 2632 | if (REG_MULTI) |
| 2633 | { |
| 2634 | save->rs_u.pos.col = (colnr_T)(rex.input - rex.line); |
| 2635 | save->rs_u.pos.lnum = rex.lnum; |
| 2636 | } |
| 2637 | else |
| 2638 | save->rs_u.ptr = rex.input; |
| 2639 | save->rs_len = gap->ga_len; |
| 2640 | } |
| 2641 | |
| 2642 | /* |
| 2643 | * Restore the input line and position from a regsave_T. |
| 2644 | */ |
| 2645 | static void |
| 2646 | reg_restore(regsave_T *save, garray_T *gap) |
| 2647 | { |
| 2648 | if (REG_MULTI) |
| 2649 | { |
| 2650 | if (rex.lnum != save->rs_u.pos.lnum) |
| 2651 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2652 | // only call reg_getline() when the line number changed to save |
| 2653 | // a bit of time |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2654 | rex.lnum = save->rs_u.pos.lnum; |
| 2655 | rex.line = reg_getline(rex.lnum); |
| 2656 | } |
| 2657 | rex.input = rex.line + save->rs_u.pos.col; |
| 2658 | } |
| 2659 | else |
| 2660 | rex.input = save->rs_u.ptr; |
| 2661 | gap->ga_len = save->rs_len; |
| 2662 | } |
| 2663 | |
| 2664 | /* |
| 2665 | * Return TRUE if current position is equal to saved position. |
| 2666 | */ |
| 2667 | static int |
| 2668 | reg_save_equal(regsave_T *save) |
| 2669 | { |
| 2670 | if (REG_MULTI) |
| 2671 | return rex.lnum == save->rs_u.pos.lnum |
| 2672 | && rex.input == rex.line + save->rs_u.pos.col; |
| 2673 | return rex.input == save->rs_u.ptr; |
| 2674 | } |
| 2675 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2676 | // Save the sub-expressions before attempting a match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2677 | #define save_se(savep, posp, pp) \ |
| 2678 | REG_MULTI ? save_se_multi((savep), (posp)) : save_se_one((savep), (pp)) |
| 2679 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2680 | // After a failed match restore the sub-expressions. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2681 | #define restore_se(savep, posp, pp) { \ |
| 2682 | if (REG_MULTI) \ |
| 2683 | *(posp) = (savep)->se_u.pos; \ |
| 2684 | else \ |
| 2685 | *(pp) = (savep)->se_u.ptr; } |
| 2686 | |
| 2687 | /* |
| 2688 | * Tentatively set the sub-expression start to the current position (after |
| 2689 | * calling regmatch() they will have changed). Need to save the existing |
| 2690 | * values for when there is no match. |
| 2691 | * Use se_save() to use pointer (save_se_multi()) or position (save_se_one()), |
| 2692 | * depending on REG_MULTI. |
| 2693 | */ |
| 2694 | static void |
| 2695 | save_se_multi(save_se_T *savep, lpos_T *posp) |
| 2696 | { |
| 2697 | savep->se_u.pos = *posp; |
| 2698 | posp->lnum = rex.lnum; |
| 2699 | posp->col = (colnr_T)(rex.input - rex.line); |
| 2700 | } |
| 2701 | |
| 2702 | static void |
| 2703 | save_se_one(save_se_T *savep, char_u **pp) |
| 2704 | { |
| 2705 | savep->se_u.ptr = *pp; |
| 2706 | *pp = rex.input; |
| 2707 | } |
| 2708 | |
| 2709 | /* |
| 2710 | * regrepeat - repeatedly match something simple, return how many. |
| 2711 | * Advances rex.input (and rex.lnum) to just after the matched chars. |
| 2712 | */ |
| 2713 | static int |
| 2714 | regrepeat( |
| 2715 | char_u *p, |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2716 | long maxcount) // maximum number of matches allowed |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2717 | { |
| 2718 | long count = 0; |
| 2719 | char_u *scan; |
| 2720 | char_u *opnd; |
| 2721 | int mask; |
| 2722 | int testval = 0; |
| 2723 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2724 | scan = rex.input; // Make local copy of rex.input for speed. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2725 | opnd = OPERAND(p); |
| 2726 | switch (OP(p)) |
| 2727 | { |
| 2728 | case ANY: |
| 2729 | case ANY + ADD_NL: |
| 2730 | while (count < maxcount) |
| 2731 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2732 | // Matching anything means we continue until end-of-line (or |
| 2733 | // end-of-file for ANY + ADD_NL), only limited by maxcount. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2734 | while (*scan != NUL && count < maxcount) |
| 2735 | { |
| 2736 | ++count; |
| 2737 | MB_PTR_ADV(scan); |
| 2738 | } |
| 2739 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 2740 | || rex.reg_line_lbr || count == maxcount) |
| 2741 | break; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2742 | ++count; // count the line-break |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2743 | reg_nextline(); |
| 2744 | scan = rex.input; |
| 2745 | if (got_int) |
| 2746 | break; |
| 2747 | } |
| 2748 | break; |
| 2749 | |
| 2750 | case IDENT: |
| 2751 | case IDENT + ADD_NL: |
| 2752 | testval = TRUE; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2753 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2754 | case SIDENT: |
| 2755 | case SIDENT + ADD_NL: |
| 2756 | while (count < maxcount) |
| 2757 | { |
| 2758 | if (vim_isIDc(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
| 2759 | { |
| 2760 | MB_PTR_ADV(scan); |
| 2761 | } |
| 2762 | else if (*scan == NUL) |
| 2763 | { |
| 2764 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 2765 | || rex.reg_line_lbr) |
| 2766 | break; |
| 2767 | reg_nextline(); |
| 2768 | scan = rex.input; |
| 2769 | if (got_int) |
| 2770 | break; |
| 2771 | } |
| 2772 | else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
| 2773 | ++scan; |
| 2774 | else |
| 2775 | break; |
| 2776 | ++count; |
| 2777 | } |
| 2778 | break; |
| 2779 | |
| 2780 | case KWORD: |
| 2781 | case KWORD + ADD_NL: |
| 2782 | testval = TRUE; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2783 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2784 | case SKWORD: |
| 2785 | case SKWORD + ADD_NL: |
| 2786 | while (count < maxcount) |
| 2787 | { |
| 2788 | if (vim_iswordp_buf(scan, rex.reg_buf) |
| 2789 | && (testval || !VIM_ISDIGIT(*scan))) |
| 2790 | { |
| 2791 | MB_PTR_ADV(scan); |
| 2792 | } |
| 2793 | else if (*scan == NUL) |
| 2794 | { |
| 2795 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 2796 | || rex.reg_line_lbr) |
| 2797 | break; |
| 2798 | reg_nextline(); |
| 2799 | scan = rex.input; |
| 2800 | if (got_int) |
| 2801 | break; |
| 2802 | } |
| 2803 | else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
| 2804 | ++scan; |
| 2805 | else |
| 2806 | break; |
| 2807 | ++count; |
| 2808 | } |
| 2809 | break; |
| 2810 | |
| 2811 | case FNAME: |
| 2812 | case FNAME + ADD_NL: |
| 2813 | testval = TRUE; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2814 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2815 | case SFNAME: |
| 2816 | case SFNAME + ADD_NL: |
| 2817 | while (count < maxcount) |
| 2818 | { |
| 2819 | if (vim_isfilec(PTR2CHAR(scan)) && (testval || !VIM_ISDIGIT(*scan))) |
| 2820 | { |
| 2821 | MB_PTR_ADV(scan); |
| 2822 | } |
| 2823 | else if (*scan == NUL) |
| 2824 | { |
| 2825 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 2826 | || rex.reg_line_lbr) |
| 2827 | break; |
| 2828 | reg_nextline(); |
| 2829 | scan = rex.input; |
| 2830 | if (got_int) |
| 2831 | break; |
| 2832 | } |
| 2833 | else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
| 2834 | ++scan; |
| 2835 | else |
| 2836 | break; |
| 2837 | ++count; |
| 2838 | } |
| 2839 | break; |
| 2840 | |
| 2841 | case PRINT: |
| 2842 | case PRINT + ADD_NL: |
| 2843 | testval = TRUE; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2844 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2845 | case SPRINT: |
| 2846 | case SPRINT + ADD_NL: |
| 2847 | while (count < maxcount) |
| 2848 | { |
| 2849 | if (*scan == NUL) |
| 2850 | { |
| 2851 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 2852 | || rex.reg_line_lbr) |
| 2853 | break; |
| 2854 | reg_nextline(); |
| 2855 | scan = rex.input; |
| 2856 | if (got_int) |
| 2857 | break; |
| 2858 | } |
| 2859 | else if (vim_isprintc(PTR2CHAR(scan)) == 1 |
| 2860 | && (testval || !VIM_ISDIGIT(*scan))) |
| 2861 | { |
| 2862 | MB_PTR_ADV(scan); |
| 2863 | } |
| 2864 | else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
| 2865 | ++scan; |
| 2866 | else |
| 2867 | break; |
| 2868 | ++count; |
| 2869 | } |
| 2870 | break; |
| 2871 | |
| 2872 | case WHITE: |
| 2873 | case WHITE + ADD_NL: |
| 2874 | testval = mask = RI_WHITE; |
| 2875 | do_class: |
| 2876 | while (count < maxcount) |
| 2877 | { |
| 2878 | int l; |
| 2879 | |
| 2880 | if (*scan == NUL) |
| 2881 | { |
| 2882 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 2883 | || rex.reg_line_lbr) |
| 2884 | break; |
| 2885 | reg_nextline(); |
| 2886 | scan = rex.input; |
| 2887 | if (got_int) |
| 2888 | break; |
| 2889 | } |
| 2890 | else if (has_mbyte && (l = (*mb_ptr2len)(scan)) > 1) |
| 2891 | { |
| 2892 | if (testval != 0) |
| 2893 | break; |
| 2894 | scan += l; |
| 2895 | } |
| 2896 | else if ((class_tab[*scan] & mask) == testval) |
| 2897 | ++scan; |
| 2898 | else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
| 2899 | ++scan; |
| 2900 | else |
| 2901 | break; |
| 2902 | ++count; |
| 2903 | } |
| 2904 | break; |
| 2905 | |
| 2906 | case NWHITE: |
| 2907 | case NWHITE + ADD_NL: |
| 2908 | mask = RI_WHITE; |
| 2909 | goto do_class; |
| 2910 | case DIGIT: |
| 2911 | case DIGIT + ADD_NL: |
| 2912 | testval = mask = RI_DIGIT; |
| 2913 | goto do_class; |
| 2914 | case NDIGIT: |
| 2915 | case NDIGIT + ADD_NL: |
| 2916 | mask = RI_DIGIT; |
| 2917 | goto do_class; |
| 2918 | case HEX: |
| 2919 | case HEX + ADD_NL: |
| 2920 | testval = mask = RI_HEX; |
| 2921 | goto do_class; |
| 2922 | case NHEX: |
| 2923 | case NHEX + ADD_NL: |
| 2924 | mask = RI_HEX; |
| 2925 | goto do_class; |
| 2926 | case OCTAL: |
| 2927 | case OCTAL + ADD_NL: |
| 2928 | testval = mask = RI_OCTAL; |
| 2929 | goto do_class; |
| 2930 | case NOCTAL: |
| 2931 | case NOCTAL + ADD_NL: |
| 2932 | mask = RI_OCTAL; |
| 2933 | goto do_class; |
| 2934 | case WORD: |
| 2935 | case WORD + ADD_NL: |
| 2936 | testval = mask = RI_WORD; |
| 2937 | goto do_class; |
| 2938 | case NWORD: |
| 2939 | case NWORD + ADD_NL: |
| 2940 | mask = RI_WORD; |
| 2941 | goto do_class; |
| 2942 | case HEAD: |
| 2943 | case HEAD + ADD_NL: |
| 2944 | testval = mask = RI_HEAD; |
| 2945 | goto do_class; |
| 2946 | case NHEAD: |
| 2947 | case NHEAD + ADD_NL: |
| 2948 | mask = RI_HEAD; |
| 2949 | goto do_class; |
| 2950 | case ALPHA: |
| 2951 | case ALPHA + ADD_NL: |
| 2952 | testval = mask = RI_ALPHA; |
| 2953 | goto do_class; |
| 2954 | case NALPHA: |
| 2955 | case NALPHA + ADD_NL: |
| 2956 | mask = RI_ALPHA; |
| 2957 | goto do_class; |
| 2958 | case LOWER: |
| 2959 | case LOWER + ADD_NL: |
| 2960 | testval = mask = RI_LOWER; |
| 2961 | goto do_class; |
| 2962 | case NLOWER: |
| 2963 | case NLOWER + ADD_NL: |
| 2964 | mask = RI_LOWER; |
| 2965 | goto do_class; |
| 2966 | case UPPER: |
| 2967 | case UPPER + ADD_NL: |
| 2968 | testval = mask = RI_UPPER; |
| 2969 | goto do_class; |
| 2970 | case NUPPER: |
| 2971 | case NUPPER + ADD_NL: |
| 2972 | mask = RI_UPPER; |
| 2973 | goto do_class; |
| 2974 | |
| 2975 | case EXACTLY: |
| 2976 | { |
| 2977 | int cu, cl; |
| 2978 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 2979 | // This doesn't do a multi-byte character, because a MULTIBYTECODE |
| 2980 | // would have been used for it. It does handle single-byte |
| 2981 | // characters, such as latin1. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 2982 | if (rex.reg_ic) |
| 2983 | { |
| 2984 | cu = MB_TOUPPER(*opnd); |
| 2985 | cl = MB_TOLOWER(*opnd); |
| 2986 | while (count < maxcount && (*scan == cu || *scan == cl)) |
| 2987 | { |
| 2988 | count++; |
| 2989 | scan++; |
| 2990 | } |
| 2991 | } |
| 2992 | else |
| 2993 | { |
| 2994 | cu = *opnd; |
| 2995 | while (count < maxcount && *scan == cu) |
| 2996 | { |
| 2997 | count++; |
| 2998 | scan++; |
| 2999 | } |
| 3000 | } |
| 3001 | break; |
| 3002 | } |
| 3003 | |
| 3004 | case MULTIBYTECODE: |
| 3005 | { |
| 3006 | int i, len, cf = 0; |
| 3007 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3008 | // Safety check (just in case 'encoding' was changed since |
| 3009 | // compiling the program). |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3010 | if ((len = (*mb_ptr2len)(opnd)) > 1) |
| 3011 | { |
| 3012 | if (rex.reg_ic && enc_utf8) |
| 3013 | cf = utf_fold(utf_ptr2char(opnd)); |
| 3014 | while (count < maxcount && (*mb_ptr2len)(scan) >= len) |
| 3015 | { |
| 3016 | for (i = 0; i < len; ++i) |
| 3017 | if (opnd[i] != scan[i]) |
| 3018 | break; |
| 3019 | if (i < len && (!rex.reg_ic || !enc_utf8 |
| 3020 | || utf_fold(utf_ptr2char(scan)) != cf)) |
| 3021 | break; |
| 3022 | scan += len; |
| 3023 | ++count; |
| 3024 | } |
| 3025 | } |
| 3026 | } |
| 3027 | break; |
| 3028 | |
| 3029 | case ANYOF: |
| 3030 | case ANYOF + ADD_NL: |
| 3031 | testval = TRUE; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3032 | // FALLTHROUGH |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3033 | |
| 3034 | case ANYBUT: |
| 3035 | case ANYBUT + ADD_NL: |
| 3036 | while (count < maxcount) |
| 3037 | { |
| 3038 | int len; |
| 3039 | |
| 3040 | if (*scan == NUL) |
| 3041 | { |
| 3042 | if (!REG_MULTI || !WITH_NL(OP(p)) || rex.lnum > rex.reg_maxline |
| 3043 | || rex.reg_line_lbr) |
| 3044 | break; |
| 3045 | reg_nextline(); |
| 3046 | scan = rex.input; |
| 3047 | if (got_int) |
| 3048 | break; |
| 3049 | } |
| 3050 | else if (rex.reg_line_lbr && *scan == '\n' && WITH_NL(OP(p))) |
| 3051 | ++scan; |
| 3052 | else if (has_mbyte && (len = (*mb_ptr2len)(scan)) > 1) |
| 3053 | { |
| 3054 | if ((cstrchr(opnd, (*mb_ptr2char)(scan)) == NULL) == testval) |
| 3055 | break; |
| 3056 | scan += len; |
| 3057 | } |
| 3058 | else |
| 3059 | { |
| 3060 | if ((cstrchr(opnd, *scan) == NULL) == testval) |
| 3061 | break; |
| 3062 | ++scan; |
| 3063 | } |
| 3064 | ++count; |
| 3065 | } |
| 3066 | break; |
| 3067 | |
| 3068 | case NEWL: |
| 3069 | while (count < maxcount |
| 3070 | && ((*scan == NUL && rex.lnum <= rex.reg_maxline |
| 3071 | && !rex.reg_line_lbr && REG_MULTI) |
| 3072 | || (*scan == '\n' && rex.reg_line_lbr))) |
| 3073 | { |
| 3074 | count++; |
| 3075 | if (rex.reg_line_lbr) |
| 3076 | ADVANCE_REGINPUT(); |
| 3077 | else |
| 3078 | reg_nextline(); |
| 3079 | scan = rex.input; |
| 3080 | if (got_int) |
| 3081 | break; |
| 3082 | } |
| 3083 | break; |
| 3084 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3085 | default: // Oh dear. Called inappropriately. |
Bram Moolenaar | e83cca2 | 2020-09-07 18:53:21 +0200 | [diff] [blame] | 3086 | iemsg(_(e_re_corr)); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3087 | #ifdef DEBUG |
| 3088 | printf("Called regrepeat with op code %d\n", OP(p)); |
| 3089 | #endif |
| 3090 | break; |
| 3091 | } |
| 3092 | |
| 3093 | rex.input = scan; |
| 3094 | |
| 3095 | return (int)count; |
| 3096 | } |
| 3097 | |
| 3098 | /* |
| 3099 | * Push an item onto the regstack. |
| 3100 | * Returns pointer to new item. Returns NULL when out of memory. |
| 3101 | */ |
| 3102 | static regitem_T * |
| 3103 | regstack_push(regstate_T state, char_u *scan) |
| 3104 | { |
| 3105 | regitem_T *rp; |
| 3106 | |
| 3107 | if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
| 3108 | { |
| 3109 | emsg(_(e_maxmempat)); |
| 3110 | return NULL; |
| 3111 | } |
| 3112 | if (ga_grow(®stack, sizeof(regitem_T)) == FAIL) |
| 3113 | return NULL; |
| 3114 | |
| 3115 | rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len); |
| 3116 | rp->rs_state = state; |
| 3117 | rp->rs_scan = scan; |
| 3118 | |
| 3119 | regstack.ga_len += sizeof(regitem_T); |
| 3120 | return rp; |
| 3121 | } |
| 3122 | |
| 3123 | /* |
| 3124 | * Pop an item from the regstack. |
| 3125 | */ |
| 3126 | static void |
| 3127 | regstack_pop(char_u **scan) |
| 3128 | { |
| 3129 | regitem_T *rp; |
| 3130 | |
| 3131 | rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; |
| 3132 | *scan = rp->rs_scan; |
| 3133 | |
| 3134 | regstack.ga_len -= sizeof(regitem_T); |
| 3135 | } |
| 3136 | |
| 3137 | /* |
| 3138 | * Save the current subexpr to "bp", so that they can be restored |
| 3139 | * later by restore_subexpr(). |
| 3140 | */ |
| 3141 | static void |
| 3142 | save_subexpr(regbehind_T *bp) |
| 3143 | { |
| 3144 | int i; |
| 3145 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3146 | // When "rex.need_clear_subexpr" is set we don't need to save the values, |
| 3147 | // only remember that this flag needs to be set again when restoring. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3148 | bp->save_need_clear_subexpr = rex.need_clear_subexpr; |
| 3149 | if (!rex.need_clear_subexpr) |
| 3150 | { |
| 3151 | for (i = 0; i < NSUBEXP; ++i) |
| 3152 | { |
| 3153 | if (REG_MULTI) |
| 3154 | { |
| 3155 | bp->save_start[i].se_u.pos = rex.reg_startpos[i]; |
| 3156 | bp->save_end[i].se_u.pos = rex.reg_endpos[i]; |
| 3157 | } |
| 3158 | else |
| 3159 | { |
| 3160 | bp->save_start[i].se_u.ptr = rex.reg_startp[i]; |
| 3161 | bp->save_end[i].se_u.ptr = rex.reg_endp[i]; |
| 3162 | } |
| 3163 | } |
| 3164 | } |
| 3165 | } |
| 3166 | |
| 3167 | /* |
| 3168 | * Restore the subexpr from "bp". |
| 3169 | */ |
| 3170 | static void |
| 3171 | restore_subexpr(regbehind_T *bp) |
| 3172 | { |
| 3173 | int i; |
| 3174 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3175 | // Only need to restore saved values when they are not to be cleared. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3176 | rex.need_clear_subexpr = bp->save_need_clear_subexpr; |
| 3177 | if (!rex.need_clear_subexpr) |
| 3178 | { |
| 3179 | for (i = 0; i < NSUBEXP; ++i) |
| 3180 | { |
| 3181 | if (REG_MULTI) |
| 3182 | { |
| 3183 | rex.reg_startpos[i] = bp->save_start[i].se_u.pos; |
| 3184 | rex.reg_endpos[i] = bp->save_end[i].se_u.pos; |
| 3185 | } |
| 3186 | else |
| 3187 | { |
| 3188 | rex.reg_startp[i] = bp->save_start[i].se_u.ptr; |
| 3189 | rex.reg_endp[i] = bp->save_end[i].se_u.ptr; |
| 3190 | } |
| 3191 | } |
| 3192 | } |
| 3193 | } |
| 3194 | |
| 3195 | /* |
| 3196 | * regmatch - main matching routine |
| 3197 | * |
| 3198 | * Conceptually the strategy is simple: Check to see whether the current node |
| 3199 | * matches, push an item onto the regstack and loop to see whether the rest |
| 3200 | * matches, and then act accordingly. In practice we make some effort to |
| 3201 | * avoid using the regstack, in particular by going through "ordinary" nodes |
| 3202 | * (that don't need to know whether the rest of the match failed) by a nested |
| 3203 | * loop. |
| 3204 | * |
| 3205 | * Returns TRUE when there is a match. Leaves rex.input and rex.lnum just after |
| 3206 | * the last matched character. |
| 3207 | * Returns FALSE when there is no match. Leaves rex.input and rex.lnum in an |
| 3208 | * undefined state! |
| 3209 | */ |
| 3210 | static int |
| 3211 | regmatch( |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3212 | char_u *scan, // Current node. |
| 3213 | proftime_T *tm UNUSED, // timeout limit or NULL |
| 3214 | int *timed_out UNUSED) // flag set on timeout or NULL |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3215 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3216 | char_u *next; // Next node. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3217 | int op; |
| 3218 | int c; |
| 3219 | regitem_T *rp; |
| 3220 | int no; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3221 | int status; // one of the RA_ values: |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3222 | #ifdef FEAT_RELTIME |
| 3223 | int tm_count = 0; |
| 3224 | #endif |
| 3225 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3226 | // Make "regstack" and "backpos" empty. They are allocated and freed in |
| 3227 | // bt_regexec_both() to reduce malloc()/free() calls. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3228 | regstack.ga_len = 0; |
| 3229 | backpos.ga_len = 0; |
| 3230 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3231 | // Repeat until "regstack" is empty. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3232 | for (;;) |
| 3233 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3234 | // Some patterns may take a long time to match, e.g., "\([a-z]\+\)\+Q". |
| 3235 | // Allow interrupting them with CTRL-C. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3236 | fast_breakcheck(); |
| 3237 | |
| 3238 | #ifdef DEBUG |
| 3239 | if (scan != NULL && regnarrate) |
| 3240 | { |
| 3241 | mch_errmsg((char *)regprop(scan)); |
| 3242 | mch_errmsg("(\n"); |
| 3243 | } |
| 3244 | #endif |
| 3245 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3246 | // Repeat for items that can be matched sequentially, without using the |
| 3247 | // regstack. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3248 | for (;;) |
| 3249 | { |
| 3250 | if (got_int || scan == NULL) |
| 3251 | { |
| 3252 | status = RA_FAIL; |
| 3253 | break; |
| 3254 | } |
| 3255 | #ifdef FEAT_RELTIME |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3256 | // Check for timeout once in a 100 times to avoid overhead. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3257 | if (tm != NULL && ++tm_count == 100) |
| 3258 | { |
| 3259 | tm_count = 0; |
| 3260 | if (profile_passed_limit(tm)) |
| 3261 | { |
| 3262 | if (timed_out != NULL) |
| 3263 | *timed_out = TRUE; |
| 3264 | status = RA_FAIL; |
| 3265 | break; |
| 3266 | } |
| 3267 | } |
| 3268 | #endif |
| 3269 | status = RA_CONT; |
| 3270 | |
| 3271 | #ifdef DEBUG |
| 3272 | if (regnarrate) |
| 3273 | { |
| 3274 | mch_errmsg((char *)regprop(scan)); |
| 3275 | mch_errmsg("...\n"); |
| 3276 | # ifdef FEAT_SYN_HL |
| 3277 | if (re_extmatch_in != NULL) |
| 3278 | { |
| 3279 | int i; |
| 3280 | |
| 3281 | mch_errmsg(_("External submatches:\n")); |
| 3282 | for (i = 0; i < NSUBEXP; i++) |
| 3283 | { |
| 3284 | mch_errmsg(" \""); |
| 3285 | if (re_extmatch_in->matches[i] != NULL) |
| 3286 | mch_errmsg((char *)re_extmatch_in->matches[i]); |
| 3287 | mch_errmsg("\"\n"); |
| 3288 | } |
| 3289 | } |
| 3290 | # endif |
| 3291 | } |
| 3292 | #endif |
| 3293 | next = regnext(scan); |
| 3294 | |
| 3295 | op = OP(scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3296 | // Check for character class with NL added. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3297 | if (!rex.reg_line_lbr && WITH_NL(op) && REG_MULTI |
| 3298 | && *rex.input == NUL && rex.lnum <= rex.reg_maxline) |
| 3299 | { |
| 3300 | reg_nextline(); |
| 3301 | } |
| 3302 | else if (rex.reg_line_lbr && WITH_NL(op) && *rex.input == '\n') |
| 3303 | { |
| 3304 | ADVANCE_REGINPUT(); |
| 3305 | } |
| 3306 | else |
| 3307 | { |
| 3308 | if (WITH_NL(op)) |
| 3309 | op -= ADD_NL; |
| 3310 | if (has_mbyte) |
| 3311 | c = (*mb_ptr2char)(rex.input); |
| 3312 | else |
| 3313 | c = *rex.input; |
| 3314 | switch (op) |
| 3315 | { |
| 3316 | case BOL: |
| 3317 | if (rex.input != rex.line) |
| 3318 | status = RA_NOMATCH; |
| 3319 | break; |
| 3320 | |
| 3321 | case EOL: |
| 3322 | if (c != NUL) |
| 3323 | status = RA_NOMATCH; |
| 3324 | break; |
| 3325 | |
| 3326 | case RE_BOF: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3327 | // We're not at the beginning of the file when below the first |
| 3328 | // line where we started, not at the start of the line or we |
| 3329 | // didn't start at the first line of the buffer. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3330 | if (rex.lnum != 0 || rex.input != rex.line |
| 3331 | || (REG_MULTI && rex.reg_firstlnum > 1)) |
| 3332 | status = RA_NOMATCH; |
| 3333 | break; |
| 3334 | |
| 3335 | case RE_EOF: |
| 3336 | if (rex.lnum != rex.reg_maxline || c != NUL) |
| 3337 | status = RA_NOMATCH; |
| 3338 | break; |
| 3339 | |
| 3340 | case CURSOR: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3341 | // Check if the buffer is in a window and compare the |
| 3342 | // rex.reg_win->w_cursor position to the match position. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3343 | if (rex.reg_win == NULL |
| 3344 | || (rex.lnum + rex.reg_firstlnum |
| 3345 | != rex.reg_win->w_cursor.lnum) |
| 3346 | || ((colnr_T)(rex.input - rex.line) |
| 3347 | != rex.reg_win->w_cursor.col)) |
| 3348 | status = RA_NOMATCH; |
| 3349 | break; |
| 3350 | |
| 3351 | case RE_MARK: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3352 | // Compare the mark position to the match position. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3353 | { |
| 3354 | int mark = OPERAND(scan)[0]; |
| 3355 | int cmp = OPERAND(scan)[1]; |
| 3356 | pos_T *pos; |
| 3357 | |
| 3358 | pos = getmark_buf(rex.reg_buf, mark, FALSE); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3359 | if (pos == NULL // mark doesn't exist |
| 3360 | || pos->lnum <= 0 // mark isn't set in reg_buf |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3361 | || (pos->lnum == rex.lnum + rex.reg_firstlnum |
| 3362 | ? (pos->col == (colnr_T)(rex.input - rex.line) |
| 3363 | ? (cmp == '<' || cmp == '>') |
| 3364 | : (pos->col < (colnr_T)(rex.input - rex.line) |
| 3365 | ? cmp != '>' |
| 3366 | : cmp != '<')) |
| 3367 | : (pos->lnum < rex.lnum + rex.reg_firstlnum |
| 3368 | ? cmp != '>' |
| 3369 | : cmp != '<'))) |
| 3370 | status = RA_NOMATCH; |
| 3371 | } |
| 3372 | break; |
| 3373 | |
| 3374 | case RE_VISUAL: |
| 3375 | if (!reg_match_visual()) |
| 3376 | status = RA_NOMATCH; |
| 3377 | break; |
| 3378 | |
| 3379 | case RE_LNUM: |
| 3380 | if (!REG_MULTI || !re_num_cmp((long_u)(rex.lnum + rex.reg_firstlnum), |
| 3381 | scan)) |
| 3382 | status = RA_NOMATCH; |
| 3383 | break; |
| 3384 | |
| 3385 | case RE_COL: |
| 3386 | if (!re_num_cmp((long_u)(rex.input - rex.line) + 1, scan)) |
| 3387 | status = RA_NOMATCH; |
| 3388 | break; |
| 3389 | |
| 3390 | case RE_VCOL: |
| 3391 | if (!re_num_cmp((long_u)win_linetabsize( |
| 3392 | rex.reg_win == NULL ? curwin : rex.reg_win, |
| 3393 | rex.line, (colnr_T)(rex.input - rex.line)) + 1, scan)) |
| 3394 | status = RA_NOMATCH; |
| 3395 | break; |
| 3396 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3397 | case BOW: // \<word; rex.input points to w |
| 3398 | if (c == NUL) // Can't match at end of line |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3399 | status = RA_NOMATCH; |
| 3400 | else if (has_mbyte) |
| 3401 | { |
| 3402 | int this_class; |
| 3403 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3404 | // Get class of current and previous char (if it exists). |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3405 | this_class = mb_get_class_buf(rex.input, rex.reg_buf); |
| 3406 | if (this_class <= 1) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3407 | status = RA_NOMATCH; // not on a word at all |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3408 | else if (reg_prev_class() == this_class) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3409 | status = RA_NOMATCH; // previous char is in same word |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3410 | } |
| 3411 | else |
| 3412 | { |
| 3413 | if (!vim_iswordc_buf(c, rex.reg_buf) || (rex.input > rex.line |
| 3414 | && vim_iswordc_buf(rex.input[-1], rex.reg_buf))) |
| 3415 | status = RA_NOMATCH; |
| 3416 | } |
| 3417 | break; |
| 3418 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3419 | case EOW: // word\>; rex.input points after d |
| 3420 | if (rex.input == rex.line) // Can't match at start of line |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3421 | status = RA_NOMATCH; |
| 3422 | else if (has_mbyte) |
| 3423 | { |
| 3424 | int this_class, prev_class; |
| 3425 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3426 | // Get class of current and previous char (if it exists). |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3427 | this_class = mb_get_class_buf(rex.input, rex.reg_buf); |
| 3428 | prev_class = reg_prev_class(); |
| 3429 | if (this_class == prev_class |
| 3430 | || prev_class == 0 || prev_class == 1) |
| 3431 | status = RA_NOMATCH; |
| 3432 | } |
| 3433 | else |
| 3434 | { |
| 3435 | if (!vim_iswordc_buf(rex.input[-1], rex.reg_buf) |
| 3436 | || (rex.input[0] != NUL |
| 3437 | && vim_iswordc_buf(c, rex.reg_buf))) |
| 3438 | status = RA_NOMATCH; |
| 3439 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3440 | break; // Matched with EOW |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3441 | |
| 3442 | case ANY: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3443 | // ANY does not match new lines. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3444 | if (c == NUL) |
| 3445 | status = RA_NOMATCH; |
| 3446 | else |
| 3447 | ADVANCE_REGINPUT(); |
| 3448 | break; |
| 3449 | |
| 3450 | case IDENT: |
| 3451 | if (!vim_isIDc(c)) |
| 3452 | status = RA_NOMATCH; |
| 3453 | else |
| 3454 | ADVANCE_REGINPUT(); |
| 3455 | break; |
| 3456 | |
| 3457 | case SIDENT: |
| 3458 | if (VIM_ISDIGIT(*rex.input) || !vim_isIDc(c)) |
| 3459 | status = RA_NOMATCH; |
| 3460 | else |
| 3461 | ADVANCE_REGINPUT(); |
| 3462 | break; |
| 3463 | |
| 3464 | case KWORD: |
| 3465 | if (!vim_iswordp_buf(rex.input, rex.reg_buf)) |
| 3466 | status = RA_NOMATCH; |
| 3467 | else |
| 3468 | ADVANCE_REGINPUT(); |
| 3469 | break; |
| 3470 | |
| 3471 | case SKWORD: |
| 3472 | if (VIM_ISDIGIT(*rex.input) |
| 3473 | || !vim_iswordp_buf(rex.input, rex.reg_buf)) |
| 3474 | status = RA_NOMATCH; |
| 3475 | else |
| 3476 | ADVANCE_REGINPUT(); |
| 3477 | break; |
| 3478 | |
| 3479 | case FNAME: |
| 3480 | if (!vim_isfilec(c)) |
| 3481 | status = RA_NOMATCH; |
| 3482 | else |
| 3483 | ADVANCE_REGINPUT(); |
| 3484 | break; |
| 3485 | |
| 3486 | case SFNAME: |
| 3487 | if (VIM_ISDIGIT(*rex.input) || !vim_isfilec(c)) |
| 3488 | status = RA_NOMATCH; |
| 3489 | else |
| 3490 | ADVANCE_REGINPUT(); |
| 3491 | break; |
| 3492 | |
| 3493 | case PRINT: |
| 3494 | if (!vim_isprintc(PTR2CHAR(rex.input))) |
| 3495 | status = RA_NOMATCH; |
| 3496 | else |
| 3497 | ADVANCE_REGINPUT(); |
| 3498 | break; |
| 3499 | |
| 3500 | case SPRINT: |
| 3501 | if (VIM_ISDIGIT(*rex.input) || !vim_isprintc(PTR2CHAR(rex.input))) |
| 3502 | status = RA_NOMATCH; |
| 3503 | else |
| 3504 | ADVANCE_REGINPUT(); |
| 3505 | break; |
| 3506 | |
| 3507 | case WHITE: |
| 3508 | if (!VIM_ISWHITE(c)) |
| 3509 | status = RA_NOMATCH; |
| 3510 | else |
| 3511 | ADVANCE_REGINPUT(); |
| 3512 | break; |
| 3513 | |
| 3514 | case NWHITE: |
| 3515 | if (c == NUL || VIM_ISWHITE(c)) |
| 3516 | status = RA_NOMATCH; |
| 3517 | else |
| 3518 | ADVANCE_REGINPUT(); |
| 3519 | break; |
| 3520 | |
| 3521 | case DIGIT: |
| 3522 | if (!ri_digit(c)) |
| 3523 | status = RA_NOMATCH; |
| 3524 | else |
| 3525 | ADVANCE_REGINPUT(); |
| 3526 | break; |
| 3527 | |
| 3528 | case NDIGIT: |
| 3529 | if (c == NUL || ri_digit(c)) |
| 3530 | status = RA_NOMATCH; |
| 3531 | else |
| 3532 | ADVANCE_REGINPUT(); |
| 3533 | break; |
| 3534 | |
| 3535 | case HEX: |
| 3536 | if (!ri_hex(c)) |
| 3537 | status = RA_NOMATCH; |
| 3538 | else |
| 3539 | ADVANCE_REGINPUT(); |
| 3540 | break; |
| 3541 | |
| 3542 | case NHEX: |
| 3543 | if (c == NUL || ri_hex(c)) |
| 3544 | status = RA_NOMATCH; |
| 3545 | else |
| 3546 | ADVANCE_REGINPUT(); |
| 3547 | break; |
| 3548 | |
| 3549 | case OCTAL: |
| 3550 | if (!ri_octal(c)) |
| 3551 | status = RA_NOMATCH; |
| 3552 | else |
| 3553 | ADVANCE_REGINPUT(); |
| 3554 | break; |
| 3555 | |
| 3556 | case NOCTAL: |
| 3557 | if (c == NUL || ri_octal(c)) |
| 3558 | status = RA_NOMATCH; |
| 3559 | else |
| 3560 | ADVANCE_REGINPUT(); |
| 3561 | break; |
| 3562 | |
| 3563 | case WORD: |
| 3564 | if (!ri_word(c)) |
| 3565 | status = RA_NOMATCH; |
| 3566 | else |
| 3567 | ADVANCE_REGINPUT(); |
| 3568 | break; |
| 3569 | |
| 3570 | case NWORD: |
| 3571 | if (c == NUL || ri_word(c)) |
| 3572 | status = RA_NOMATCH; |
| 3573 | else |
| 3574 | ADVANCE_REGINPUT(); |
| 3575 | break; |
| 3576 | |
| 3577 | case HEAD: |
| 3578 | if (!ri_head(c)) |
| 3579 | status = RA_NOMATCH; |
| 3580 | else |
| 3581 | ADVANCE_REGINPUT(); |
| 3582 | break; |
| 3583 | |
| 3584 | case NHEAD: |
| 3585 | if (c == NUL || ri_head(c)) |
| 3586 | status = RA_NOMATCH; |
| 3587 | else |
| 3588 | ADVANCE_REGINPUT(); |
| 3589 | break; |
| 3590 | |
| 3591 | case ALPHA: |
| 3592 | if (!ri_alpha(c)) |
| 3593 | status = RA_NOMATCH; |
| 3594 | else |
| 3595 | ADVANCE_REGINPUT(); |
| 3596 | break; |
| 3597 | |
| 3598 | case NALPHA: |
| 3599 | if (c == NUL || ri_alpha(c)) |
| 3600 | status = RA_NOMATCH; |
| 3601 | else |
| 3602 | ADVANCE_REGINPUT(); |
| 3603 | break; |
| 3604 | |
| 3605 | case LOWER: |
| 3606 | if (!ri_lower(c)) |
| 3607 | status = RA_NOMATCH; |
| 3608 | else |
| 3609 | ADVANCE_REGINPUT(); |
| 3610 | break; |
| 3611 | |
| 3612 | case NLOWER: |
| 3613 | if (c == NUL || ri_lower(c)) |
| 3614 | status = RA_NOMATCH; |
| 3615 | else |
| 3616 | ADVANCE_REGINPUT(); |
| 3617 | break; |
| 3618 | |
| 3619 | case UPPER: |
| 3620 | if (!ri_upper(c)) |
| 3621 | status = RA_NOMATCH; |
| 3622 | else |
| 3623 | ADVANCE_REGINPUT(); |
| 3624 | break; |
| 3625 | |
| 3626 | case NUPPER: |
| 3627 | if (c == NUL || ri_upper(c)) |
| 3628 | status = RA_NOMATCH; |
| 3629 | else |
| 3630 | ADVANCE_REGINPUT(); |
| 3631 | break; |
| 3632 | |
| 3633 | case EXACTLY: |
| 3634 | { |
| 3635 | int len; |
| 3636 | char_u *opnd; |
| 3637 | |
| 3638 | opnd = OPERAND(scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3639 | // Inline the first byte, for speed. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3640 | if (*opnd != *rex.input |
| 3641 | && (!rex.reg_ic |
| 3642 | || (!enc_utf8 |
| 3643 | && MB_TOLOWER(*opnd) != MB_TOLOWER(*rex.input)))) |
| 3644 | status = RA_NOMATCH; |
| 3645 | else if (*opnd == NUL) |
| 3646 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3647 | // match empty string always works; happens when "~" is |
| 3648 | // empty. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3649 | } |
| 3650 | else |
| 3651 | { |
| 3652 | if (opnd[1] == NUL && !(enc_utf8 && rex.reg_ic)) |
| 3653 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3654 | len = 1; // matched a single byte above |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3655 | } |
| 3656 | else |
| 3657 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3658 | // Need to match first byte again for multi-byte. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3659 | len = (int)STRLEN(opnd); |
| 3660 | if (cstrncmp(opnd, rex.input, &len) != 0) |
| 3661 | status = RA_NOMATCH; |
| 3662 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3663 | // Check for following composing character, unless %C |
| 3664 | // follows (skips over all composing chars). |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3665 | if (status != RA_NOMATCH |
| 3666 | && enc_utf8 |
| 3667 | && UTF_COMPOSINGLIKE(rex.input, rex.input + len) |
| 3668 | && !rex.reg_icombine |
| 3669 | && OP(next) != RE_COMPOSING) |
| 3670 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3671 | // raaron: This code makes a composing character get |
| 3672 | // ignored, which is the correct behavior (sometimes) |
| 3673 | // for voweled Hebrew texts. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3674 | status = RA_NOMATCH; |
| 3675 | } |
| 3676 | if (status != RA_NOMATCH) |
| 3677 | rex.input += len; |
| 3678 | } |
| 3679 | } |
| 3680 | break; |
| 3681 | |
| 3682 | case ANYOF: |
| 3683 | case ANYBUT: |
| 3684 | if (c == NUL) |
| 3685 | status = RA_NOMATCH; |
| 3686 | else if ((cstrchr(OPERAND(scan), c) == NULL) == (op == ANYOF)) |
| 3687 | status = RA_NOMATCH; |
| 3688 | else |
| 3689 | ADVANCE_REGINPUT(); |
| 3690 | break; |
| 3691 | |
| 3692 | case MULTIBYTECODE: |
| 3693 | if (has_mbyte) |
| 3694 | { |
| 3695 | int i, len; |
| 3696 | char_u *opnd; |
| 3697 | int opndc = 0, inpc; |
| 3698 | |
| 3699 | opnd = OPERAND(scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3700 | // Safety check (just in case 'encoding' was changed since |
| 3701 | // compiling the program). |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3702 | if ((len = (*mb_ptr2len)(opnd)) < 2) |
| 3703 | { |
| 3704 | status = RA_NOMATCH; |
| 3705 | break; |
| 3706 | } |
| 3707 | if (enc_utf8) |
| 3708 | opndc = utf_ptr2char(opnd); |
| 3709 | if (enc_utf8 && utf_iscomposing(opndc)) |
| 3710 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3711 | // When only a composing char is given match at any |
| 3712 | // position where that composing char appears. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3713 | status = RA_NOMATCH; |
| 3714 | for (i = 0; rex.input[i] != NUL; |
| 3715 | i += utf_ptr2len(rex.input + i)) |
| 3716 | { |
| 3717 | inpc = utf_ptr2char(rex.input + i); |
| 3718 | if (!utf_iscomposing(inpc)) |
| 3719 | { |
| 3720 | if (i > 0) |
| 3721 | break; |
| 3722 | } |
| 3723 | else if (opndc == inpc) |
| 3724 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3725 | // Include all following composing chars. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3726 | len = i + utfc_ptr2len(rex.input + i); |
| 3727 | status = RA_MATCH; |
| 3728 | break; |
| 3729 | } |
| 3730 | } |
| 3731 | } |
| 3732 | else |
| 3733 | for (i = 0; i < len; ++i) |
| 3734 | if (opnd[i] != rex.input[i]) |
| 3735 | { |
| 3736 | status = RA_NOMATCH; |
| 3737 | break; |
| 3738 | } |
| 3739 | rex.input += len; |
| 3740 | } |
| 3741 | else |
| 3742 | status = RA_NOMATCH; |
| 3743 | break; |
| 3744 | case RE_COMPOSING: |
| 3745 | if (enc_utf8) |
| 3746 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3747 | // Skip composing characters. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3748 | while (utf_iscomposing(utf_ptr2char(rex.input))) |
| 3749 | MB_CPTR_ADV(rex.input); |
| 3750 | } |
| 3751 | break; |
| 3752 | |
| 3753 | case NOTHING: |
| 3754 | break; |
| 3755 | |
| 3756 | case BACK: |
| 3757 | { |
| 3758 | int i; |
| 3759 | backpos_T *bp; |
| 3760 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3761 | // When we run into BACK we need to check if we don't keep |
| 3762 | // looping without matching any input. The second and later |
| 3763 | // times a BACK is encountered it fails if the input is still |
| 3764 | // at the same position as the previous time. |
| 3765 | // The positions are stored in "backpos" and found by the |
| 3766 | // current value of "scan", the position in the RE program. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3767 | bp = (backpos_T *)backpos.ga_data; |
| 3768 | for (i = 0; i < backpos.ga_len; ++i) |
| 3769 | if (bp[i].bp_scan == scan) |
| 3770 | break; |
| 3771 | if (i == backpos.ga_len) |
| 3772 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3773 | // First time at this BACK, make room to store the pos. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3774 | if (ga_grow(&backpos, 1) == FAIL) |
| 3775 | status = RA_FAIL; |
| 3776 | else |
| 3777 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3778 | // get "ga_data" again, it may have changed |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3779 | bp = (backpos_T *)backpos.ga_data; |
| 3780 | bp[i].bp_scan = scan; |
| 3781 | ++backpos.ga_len; |
| 3782 | } |
| 3783 | } |
| 3784 | else if (reg_save_equal(&bp[i].bp_pos)) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3785 | // Still at same position as last time, fail. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3786 | status = RA_NOMATCH; |
| 3787 | |
| 3788 | if (status != RA_FAIL && status != RA_NOMATCH) |
| 3789 | reg_save(&bp[i].bp_pos, &backpos); |
| 3790 | } |
| 3791 | break; |
| 3792 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3793 | case MOPEN + 0: // Match start: \zs |
| 3794 | case MOPEN + 1: // \( |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3795 | case MOPEN + 2: |
| 3796 | case MOPEN + 3: |
| 3797 | case MOPEN + 4: |
| 3798 | case MOPEN + 5: |
| 3799 | case MOPEN + 6: |
| 3800 | case MOPEN + 7: |
| 3801 | case MOPEN + 8: |
| 3802 | case MOPEN + 9: |
| 3803 | { |
| 3804 | no = op - MOPEN; |
| 3805 | cleanup_subexpr(); |
| 3806 | rp = regstack_push(RS_MOPEN, scan); |
| 3807 | if (rp == NULL) |
| 3808 | status = RA_FAIL; |
| 3809 | else |
| 3810 | { |
| 3811 | rp->rs_no = no; |
| 3812 | save_se(&rp->rs_un.sesave, &rex.reg_startpos[no], |
| 3813 | &rex.reg_startp[no]); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3814 | // We simply continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3815 | } |
| 3816 | } |
| 3817 | break; |
| 3818 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3819 | case NOPEN: // \%( |
| 3820 | case NCLOSE: // \) after \%( |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3821 | if (regstack_push(RS_NOPEN, scan) == NULL) |
| 3822 | status = RA_FAIL; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3823 | // We simply continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3824 | break; |
| 3825 | |
| 3826 | #ifdef FEAT_SYN_HL |
| 3827 | case ZOPEN + 1: |
| 3828 | case ZOPEN + 2: |
| 3829 | case ZOPEN + 3: |
| 3830 | case ZOPEN + 4: |
| 3831 | case ZOPEN + 5: |
| 3832 | case ZOPEN + 6: |
| 3833 | case ZOPEN + 7: |
| 3834 | case ZOPEN + 8: |
| 3835 | case ZOPEN + 9: |
| 3836 | { |
| 3837 | no = op - ZOPEN; |
| 3838 | cleanup_zsubexpr(); |
| 3839 | rp = regstack_push(RS_ZOPEN, scan); |
| 3840 | if (rp == NULL) |
| 3841 | status = RA_FAIL; |
| 3842 | else |
| 3843 | { |
| 3844 | rp->rs_no = no; |
| 3845 | save_se(&rp->rs_un.sesave, ®_startzpos[no], |
| 3846 | ®_startzp[no]); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3847 | // We simply continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3848 | } |
| 3849 | } |
| 3850 | break; |
| 3851 | #endif |
| 3852 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3853 | case MCLOSE + 0: // Match end: \ze |
| 3854 | case MCLOSE + 1: // \) |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3855 | case MCLOSE + 2: |
| 3856 | case MCLOSE + 3: |
| 3857 | case MCLOSE + 4: |
| 3858 | case MCLOSE + 5: |
| 3859 | case MCLOSE + 6: |
| 3860 | case MCLOSE + 7: |
| 3861 | case MCLOSE + 8: |
| 3862 | case MCLOSE + 9: |
| 3863 | { |
| 3864 | no = op - MCLOSE; |
| 3865 | cleanup_subexpr(); |
| 3866 | rp = regstack_push(RS_MCLOSE, scan); |
| 3867 | if (rp == NULL) |
| 3868 | status = RA_FAIL; |
| 3869 | else |
| 3870 | { |
| 3871 | rp->rs_no = no; |
| 3872 | save_se(&rp->rs_un.sesave, &rex.reg_endpos[no], |
| 3873 | &rex.reg_endp[no]); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3874 | // We simply continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3875 | } |
| 3876 | } |
| 3877 | break; |
| 3878 | |
| 3879 | #ifdef FEAT_SYN_HL |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3880 | case ZCLOSE + 1: // \) after \z( |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3881 | case ZCLOSE + 2: |
| 3882 | case ZCLOSE + 3: |
| 3883 | case ZCLOSE + 4: |
| 3884 | case ZCLOSE + 5: |
| 3885 | case ZCLOSE + 6: |
| 3886 | case ZCLOSE + 7: |
| 3887 | case ZCLOSE + 8: |
| 3888 | case ZCLOSE + 9: |
| 3889 | { |
| 3890 | no = op - ZCLOSE; |
| 3891 | cleanup_zsubexpr(); |
| 3892 | rp = regstack_push(RS_ZCLOSE, scan); |
| 3893 | if (rp == NULL) |
| 3894 | status = RA_FAIL; |
| 3895 | else |
| 3896 | { |
| 3897 | rp->rs_no = no; |
| 3898 | save_se(&rp->rs_un.sesave, ®_endzpos[no], |
| 3899 | ®_endzp[no]); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3900 | // We simply continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3901 | } |
| 3902 | } |
| 3903 | break; |
| 3904 | #endif |
| 3905 | |
| 3906 | case BACKREF + 1: |
| 3907 | case BACKREF + 2: |
| 3908 | case BACKREF + 3: |
| 3909 | case BACKREF + 4: |
| 3910 | case BACKREF + 5: |
| 3911 | case BACKREF + 6: |
| 3912 | case BACKREF + 7: |
| 3913 | case BACKREF + 8: |
| 3914 | case BACKREF + 9: |
| 3915 | { |
| 3916 | int len; |
| 3917 | |
| 3918 | no = op - BACKREF; |
| 3919 | cleanup_subexpr(); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3920 | if (!REG_MULTI) // Single-line regexp |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3921 | { |
| 3922 | if (rex.reg_startp[no] == NULL || rex.reg_endp[no] == NULL) |
| 3923 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3924 | // Backref was not set: Match an empty string. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3925 | len = 0; |
| 3926 | } |
| 3927 | else |
| 3928 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3929 | // Compare current input with back-ref in the same |
| 3930 | // line. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3931 | len = (int)(rex.reg_endp[no] - rex.reg_startp[no]); |
| 3932 | if (cstrncmp(rex.reg_startp[no], rex.input, &len) != 0) |
| 3933 | status = RA_NOMATCH; |
| 3934 | } |
| 3935 | } |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3936 | else // Multi-line regexp |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3937 | { |
| 3938 | if (rex.reg_startpos[no].lnum < 0 |
| 3939 | || rex.reg_endpos[no].lnum < 0) |
| 3940 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3941 | // Backref was not set: Match an empty string. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3942 | len = 0; |
| 3943 | } |
| 3944 | else |
| 3945 | { |
| 3946 | if (rex.reg_startpos[no].lnum == rex.lnum |
| 3947 | && rex.reg_endpos[no].lnum == rex.lnum) |
| 3948 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3949 | // Compare back-ref within the current line. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3950 | len = rex.reg_endpos[no].col |
| 3951 | - rex.reg_startpos[no].col; |
| 3952 | if (cstrncmp(rex.line + rex.reg_startpos[no].col, |
| 3953 | rex.input, &len) != 0) |
| 3954 | status = RA_NOMATCH; |
| 3955 | } |
| 3956 | else |
| 3957 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3958 | // Messy situation: Need to compare between two |
| 3959 | // lines. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3960 | int r = match_with_backref( |
| 3961 | rex.reg_startpos[no].lnum, |
| 3962 | rex.reg_startpos[no].col, |
| 3963 | rex.reg_endpos[no].lnum, |
| 3964 | rex.reg_endpos[no].col, |
| 3965 | &len); |
| 3966 | |
| 3967 | if (r != RA_MATCH) |
| 3968 | status = r; |
| 3969 | } |
| 3970 | } |
| 3971 | } |
| 3972 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 3973 | // Matched the backref, skip over it. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 3974 | rex.input += len; |
| 3975 | } |
| 3976 | break; |
| 3977 | |
| 3978 | #ifdef FEAT_SYN_HL |
| 3979 | case ZREF + 1: |
| 3980 | case ZREF + 2: |
| 3981 | case ZREF + 3: |
| 3982 | case ZREF + 4: |
| 3983 | case ZREF + 5: |
| 3984 | case ZREF + 6: |
| 3985 | case ZREF + 7: |
| 3986 | case ZREF + 8: |
| 3987 | case ZREF + 9: |
| 3988 | { |
| 3989 | int len; |
| 3990 | |
| 3991 | cleanup_zsubexpr(); |
| 3992 | no = op - ZREF; |
| 3993 | if (re_extmatch_in != NULL |
| 3994 | && re_extmatch_in->matches[no] != NULL) |
| 3995 | { |
| 3996 | len = (int)STRLEN(re_extmatch_in->matches[no]); |
| 3997 | if (cstrncmp(re_extmatch_in->matches[no], |
| 3998 | rex.input, &len) != 0) |
| 3999 | status = RA_NOMATCH; |
| 4000 | else |
| 4001 | rex.input += len; |
| 4002 | } |
| 4003 | else |
| 4004 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4005 | // Backref was not set: Match an empty string. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4006 | } |
| 4007 | } |
| 4008 | break; |
| 4009 | #endif |
| 4010 | |
| 4011 | case BRANCH: |
| 4012 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4013 | if (OP(next) != BRANCH) // No choice. |
| 4014 | next = OPERAND(scan); // Avoid recursion. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4015 | else |
| 4016 | { |
| 4017 | rp = regstack_push(RS_BRANCH, scan); |
| 4018 | if (rp == NULL) |
| 4019 | status = RA_FAIL; |
| 4020 | else |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4021 | status = RA_BREAK; // rest is below |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4022 | } |
| 4023 | } |
| 4024 | break; |
| 4025 | |
| 4026 | case BRACE_LIMITS: |
| 4027 | { |
| 4028 | if (OP(next) == BRACE_SIMPLE) |
| 4029 | { |
| 4030 | bl_minval = OPERAND_MIN(scan); |
| 4031 | bl_maxval = OPERAND_MAX(scan); |
| 4032 | } |
| 4033 | else if (OP(next) >= BRACE_COMPLEX |
| 4034 | && OP(next) < BRACE_COMPLEX + 10) |
| 4035 | { |
| 4036 | no = OP(next) - BRACE_COMPLEX; |
| 4037 | brace_min[no] = OPERAND_MIN(scan); |
| 4038 | brace_max[no] = OPERAND_MAX(scan); |
| 4039 | brace_count[no] = 0; |
| 4040 | } |
| 4041 | else |
| 4042 | { |
| 4043 | internal_error("BRACE_LIMITS"); |
| 4044 | status = RA_FAIL; |
| 4045 | } |
| 4046 | } |
| 4047 | break; |
| 4048 | |
| 4049 | case BRACE_COMPLEX + 0: |
| 4050 | case BRACE_COMPLEX + 1: |
| 4051 | case BRACE_COMPLEX + 2: |
| 4052 | case BRACE_COMPLEX + 3: |
| 4053 | case BRACE_COMPLEX + 4: |
| 4054 | case BRACE_COMPLEX + 5: |
| 4055 | case BRACE_COMPLEX + 6: |
| 4056 | case BRACE_COMPLEX + 7: |
| 4057 | case BRACE_COMPLEX + 8: |
| 4058 | case BRACE_COMPLEX + 9: |
| 4059 | { |
| 4060 | no = op - BRACE_COMPLEX; |
| 4061 | ++brace_count[no]; |
| 4062 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4063 | // If not matched enough times yet, try one more |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4064 | if (brace_count[no] <= (brace_min[no] <= brace_max[no] |
| 4065 | ? brace_min[no] : brace_max[no])) |
| 4066 | { |
| 4067 | rp = regstack_push(RS_BRCPLX_MORE, scan); |
| 4068 | if (rp == NULL) |
| 4069 | status = RA_FAIL; |
| 4070 | else |
| 4071 | { |
| 4072 | rp->rs_no = no; |
| 4073 | reg_save(&rp->rs_un.regsave, &backpos); |
| 4074 | next = OPERAND(scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4075 | // We continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4076 | } |
| 4077 | break; |
| 4078 | } |
| 4079 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4080 | // If matched enough times, may try matching some more |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4081 | if (brace_min[no] <= brace_max[no]) |
| 4082 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4083 | // Range is the normal way around, use longest match |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4084 | if (brace_count[no] <= brace_max[no]) |
| 4085 | { |
| 4086 | rp = regstack_push(RS_BRCPLX_LONG, scan); |
| 4087 | if (rp == NULL) |
| 4088 | status = RA_FAIL; |
| 4089 | else |
| 4090 | { |
| 4091 | rp->rs_no = no; |
| 4092 | reg_save(&rp->rs_un.regsave, &backpos); |
| 4093 | next = OPERAND(scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4094 | // We continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4095 | } |
| 4096 | } |
| 4097 | } |
| 4098 | else |
| 4099 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4100 | // Range is backwards, use shortest match first |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4101 | if (brace_count[no] <= brace_min[no]) |
| 4102 | { |
| 4103 | rp = regstack_push(RS_BRCPLX_SHORT, scan); |
| 4104 | if (rp == NULL) |
| 4105 | status = RA_FAIL; |
| 4106 | else |
| 4107 | { |
| 4108 | reg_save(&rp->rs_un.regsave, &backpos); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4109 | // We continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4110 | } |
| 4111 | } |
| 4112 | } |
| 4113 | } |
| 4114 | break; |
| 4115 | |
| 4116 | case BRACE_SIMPLE: |
| 4117 | case STAR: |
| 4118 | case PLUS: |
| 4119 | { |
| 4120 | regstar_T rst; |
| 4121 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4122 | // Lookahead to avoid useless match attempts when we know |
| 4123 | // what character comes next. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4124 | if (OP(next) == EXACTLY) |
| 4125 | { |
| 4126 | rst.nextb = *OPERAND(next); |
| 4127 | if (rex.reg_ic) |
| 4128 | { |
| 4129 | if (MB_ISUPPER(rst.nextb)) |
| 4130 | rst.nextb_ic = MB_TOLOWER(rst.nextb); |
| 4131 | else |
| 4132 | rst.nextb_ic = MB_TOUPPER(rst.nextb); |
| 4133 | } |
| 4134 | else |
| 4135 | rst.nextb_ic = rst.nextb; |
| 4136 | } |
| 4137 | else |
| 4138 | { |
| 4139 | rst.nextb = NUL; |
| 4140 | rst.nextb_ic = NUL; |
| 4141 | } |
| 4142 | if (op != BRACE_SIMPLE) |
| 4143 | { |
| 4144 | rst.minval = (op == STAR) ? 0 : 1; |
| 4145 | rst.maxval = MAX_LIMIT; |
| 4146 | } |
| 4147 | else |
| 4148 | { |
| 4149 | rst.minval = bl_minval; |
| 4150 | rst.maxval = bl_maxval; |
| 4151 | } |
| 4152 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4153 | // When maxval > minval, try matching as much as possible, up |
| 4154 | // to maxval. When maxval < minval, try matching at least the |
| 4155 | // minimal number (since the range is backwards, that's also |
| 4156 | // maxval!). |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4157 | rst.count = regrepeat(OPERAND(scan), rst.maxval); |
| 4158 | if (got_int) |
| 4159 | { |
| 4160 | status = RA_FAIL; |
| 4161 | break; |
| 4162 | } |
| 4163 | if (rst.minval <= rst.maxval |
| 4164 | ? rst.count >= rst.minval : rst.count >= rst.maxval) |
| 4165 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4166 | // It could match. Prepare for trying to match what |
| 4167 | // follows. The code is below. Parameters are stored in |
| 4168 | // a regstar_T on the regstack. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4169 | if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
| 4170 | { |
| 4171 | emsg(_(e_maxmempat)); |
| 4172 | status = RA_FAIL; |
| 4173 | } |
| 4174 | else if (ga_grow(®stack, sizeof(regstar_T)) == FAIL) |
| 4175 | status = RA_FAIL; |
| 4176 | else |
| 4177 | { |
| 4178 | regstack.ga_len += sizeof(regstar_T); |
| 4179 | rp = regstack_push(rst.minval <= rst.maxval |
| 4180 | ? RS_STAR_LONG : RS_STAR_SHORT, scan); |
| 4181 | if (rp == NULL) |
| 4182 | status = RA_FAIL; |
| 4183 | else |
| 4184 | { |
| 4185 | *(((regstar_T *)rp) - 1) = rst; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4186 | status = RA_BREAK; // skip the restore bits |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4187 | } |
| 4188 | } |
| 4189 | } |
| 4190 | else |
| 4191 | status = RA_NOMATCH; |
| 4192 | |
| 4193 | } |
| 4194 | break; |
| 4195 | |
| 4196 | case NOMATCH: |
| 4197 | case MATCH: |
| 4198 | case SUBPAT: |
| 4199 | rp = regstack_push(RS_NOMATCH, scan); |
| 4200 | if (rp == NULL) |
| 4201 | status = RA_FAIL; |
| 4202 | else |
| 4203 | { |
| 4204 | rp->rs_no = op; |
| 4205 | reg_save(&rp->rs_un.regsave, &backpos); |
| 4206 | next = OPERAND(scan); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4207 | // We continue and handle the result when done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4208 | } |
| 4209 | break; |
| 4210 | |
| 4211 | case BEHIND: |
| 4212 | case NOBEHIND: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4213 | // Need a bit of room to store extra positions. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4214 | if ((long)((unsigned)regstack.ga_len >> 10) >= p_mmp) |
| 4215 | { |
| 4216 | emsg(_(e_maxmempat)); |
| 4217 | status = RA_FAIL; |
| 4218 | } |
| 4219 | else if (ga_grow(®stack, sizeof(regbehind_T)) == FAIL) |
| 4220 | status = RA_FAIL; |
| 4221 | else |
| 4222 | { |
| 4223 | regstack.ga_len += sizeof(regbehind_T); |
| 4224 | rp = regstack_push(RS_BEHIND1, scan); |
| 4225 | if (rp == NULL) |
| 4226 | status = RA_FAIL; |
| 4227 | else |
| 4228 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4229 | // Need to save the subexpr to be able to restore them |
| 4230 | // when there is a match but we don't use it. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4231 | save_subexpr(((regbehind_T *)rp) - 1); |
| 4232 | |
| 4233 | rp->rs_no = op; |
| 4234 | reg_save(&rp->rs_un.regsave, &backpos); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4235 | // First try if what follows matches. If it does then we |
| 4236 | // check the behind match by looping. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4237 | } |
| 4238 | } |
| 4239 | break; |
| 4240 | |
| 4241 | case BHPOS: |
| 4242 | if (REG_MULTI) |
| 4243 | { |
| 4244 | if (behind_pos.rs_u.pos.col != (colnr_T)(rex.input - rex.line) |
| 4245 | || behind_pos.rs_u.pos.lnum != rex.lnum) |
| 4246 | status = RA_NOMATCH; |
| 4247 | } |
| 4248 | else if (behind_pos.rs_u.ptr != rex.input) |
| 4249 | status = RA_NOMATCH; |
| 4250 | break; |
| 4251 | |
| 4252 | case NEWL: |
| 4253 | if ((c != NUL || !REG_MULTI || rex.lnum > rex.reg_maxline |
| 4254 | || rex.reg_line_lbr) |
| 4255 | && (c != '\n' || !rex.reg_line_lbr)) |
| 4256 | status = RA_NOMATCH; |
| 4257 | else if (rex.reg_line_lbr) |
| 4258 | ADVANCE_REGINPUT(); |
| 4259 | else |
| 4260 | reg_nextline(); |
| 4261 | break; |
| 4262 | |
| 4263 | case END: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4264 | status = RA_MATCH; // Success! |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4265 | break; |
| 4266 | |
| 4267 | default: |
Bram Moolenaar | e83cca2 | 2020-09-07 18:53:21 +0200 | [diff] [blame] | 4268 | iemsg(_(e_re_corr)); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4269 | #ifdef DEBUG |
| 4270 | printf("Illegal op code %d\n", op); |
| 4271 | #endif |
| 4272 | status = RA_FAIL; |
| 4273 | break; |
| 4274 | } |
| 4275 | } |
| 4276 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4277 | // If we can't continue sequentially, break the inner loop. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4278 | if (status != RA_CONT) |
| 4279 | break; |
| 4280 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4281 | // Continue in inner loop, advance to next item. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4282 | scan = next; |
| 4283 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4284 | } // end of inner loop |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4285 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4286 | // If there is something on the regstack execute the code for the state. |
| 4287 | // If the state is popped then loop and use the older state. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4288 | while (regstack.ga_len > 0 && status != RA_FAIL) |
| 4289 | { |
| 4290 | rp = (regitem_T *)((char *)regstack.ga_data + regstack.ga_len) - 1; |
| 4291 | switch (rp->rs_state) |
| 4292 | { |
| 4293 | case RS_NOPEN: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4294 | // Result is passed on as-is, simply pop the state. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4295 | regstack_pop(&scan); |
| 4296 | break; |
| 4297 | |
| 4298 | case RS_MOPEN: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4299 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4300 | if (status == RA_NOMATCH) |
| 4301 | restore_se(&rp->rs_un.sesave, &rex.reg_startpos[rp->rs_no], |
| 4302 | &rex.reg_startp[rp->rs_no]); |
| 4303 | regstack_pop(&scan); |
| 4304 | break; |
| 4305 | |
| 4306 | #ifdef FEAT_SYN_HL |
| 4307 | case RS_ZOPEN: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4308 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4309 | if (status == RA_NOMATCH) |
| 4310 | restore_se(&rp->rs_un.sesave, ®_startzpos[rp->rs_no], |
| 4311 | ®_startzp[rp->rs_no]); |
| 4312 | regstack_pop(&scan); |
| 4313 | break; |
| 4314 | #endif |
| 4315 | |
| 4316 | case RS_MCLOSE: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4317 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4318 | if (status == RA_NOMATCH) |
| 4319 | restore_se(&rp->rs_un.sesave, &rex.reg_endpos[rp->rs_no], |
| 4320 | &rex.reg_endp[rp->rs_no]); |
| 4321 | regstack_pop(&scan); |
| 4322 | break; |
| 4323 | |
| 4324 | #ifdef FEAT_SYN_HL |
| 4325 | case RS_ZCLOSE: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4326 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4327 | if (status == RA_NOMATCH) |
| 4328 | restore_se(&rp->rs_un.sesave, ®_endzpos[rp->rs_no], |
| 4329 | ®_endzp[rp->rs_no]); |
| 4330 | regstack_pop(&scan); |
| 4331 | break; |
| 4332 | #endif |
| 4333 | |
| 4334 | case RS_BRANCH: |
| 4335 | if (status == RA_MATCH) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4336 | // this branch matched, use it |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4337 | regstack_pop(&scan); |
| 4338 | else |
| 4339 | { |
| 4340 | if (status != RA_BREAK) |
| 4341 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4342 | // After a non-matching branch: try next one. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4343 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4344 | scan = rp->rs_scan; |
| 4345 | } |
| 4346 | if (scan == NULL || OP(scan) != BRANCH) |
| 4347 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4348 | // no more branches, didn't find a match |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4349 | status = RA_NOMATCH; |
| 4350 | regstack_pop(&scan); |
| 4351 | } |
| 4352 | else |
| 4353 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4354 | // Prepare to try a branch. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4355 | rp->rs_scan = regnext(scan); |
| 4356 | reg_save(&rp->rs_un.regsave, &backpos); |
| 4357 | scan = OPERAND(scan); |
| 4358 | } |
| 4359 | } |
| 4360 | break; |
| 4361 | |
| 4362 | case RS_BRCPLX_MORE: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4363 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4364 | if (status == RA_NOMATCH) |
| 4365 | { |
| 4366 | reg_restore(&rp->rs_un.regsave, &backpos); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4367 | --brace_count[rp->rs_no]; // decrement match count |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4368 | } |
| 4369 | regstack_pop(&scan); |
| 4370 | break; |
| 4371 | |
| 4372 | case RS_BRCPLX_LONG: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4373 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4374 | if (status == RA_NOMATCH) |
| 4375 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4376 | // There was no match, but we did find enough matches. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4377 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4378 | --brace_count[rp->rs_no]; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4379 | // continue with the items after "\{}" |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4380 | status = RA_CONT; |
| 4381 | } |
| 4382 | regstack_pop(&scan); |
| 4383 | if (status == RA_CONT) |
| 4384 | scan = regnext(scan); |
| 4385 | break; |
| 4386 | |
| 4387 | case RS_BRCPLX_SHORT: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4388 | // Pop the state. Restore pointers when there is no match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4389 | if (status == RA_NOMATCH) |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4390 | // There was no match, try to match one more item. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4391 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4392 | regstack_pop(&scan); |
| 4393 | if (status == RA_NOMATCH) |
| 4394 | { |
| 4395 | scan = OPERAND(scan); |
| 4396 | status = RA_CONT; |
| 4397 | } |
| 4398 | break; |
| 4399 | |
| 4400 | case RS_NOMATCH: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4401 | // Pop the state. If the operand matches for NOMATCH or |
| 4402 | // doesn't match for MATCH/SUBPAT, we fail. Otherwise backup, |
| 4403 | // except for SUBPAT, and continue with the next item. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4404 | if (status == (rp->rs_no == NOMATCH ? RA_MATCH : RA_NOMATCH)) |
| 4405 | status = RA_NOMATCH; |
| 4406 | else |
| 4407 | { |
| 4408 | status = RA_CONT; |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4409 | if (rp->rs_no != SUBPAT) // zero-width |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4410 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4411 | } |
| 4412 | regstack_pop(&scan); |
| 4413 | if (status == RA_CONT) |
| 4414 | scan = regnext(scan); |
| 4415 | break; |
| 4416 | |
| 4417 | case RS_BEHIND1: |
| 4418 | if (status == RA_NOMATCH) |
| 4419 | { |
| 4420 | regstack_pop(&scan); |
| 4421 | regstack.ga_len -= sizeof(regbehind_T); |
| 4422 | } |
| 4423 | else |
| 4424 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4425 | // The stuff after BEHIND/NOBEHIND matches. Now try if |
| 4426 | // the behind part does (not) match before the current |
| 4427 | // position in the input. This must be done at every |
| 4428 | // position in the input and checking if the match ends at |
| 4429 | // the current position. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4430 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4431 | // save the position after the found match for next |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4432 | reg_save(&(((regbehind_T *)rp) - 1)->save_after, &backpos); |
| 4433 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4434 | // Start looking for a match with operand at the current |
| 4435 | // position. Go back one character until we find the |
| 4436 | // result, hitting the start of the line or the previous |
| 4437 | // line (for multi-line matching). |
| 4438 | // Set behind_pos to where the match should end, BHPOS |
| 4439 | // will match it. Save the current value. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4440 | (((regbehind_T *)rp) - 1)->save_behind = behind_pos; |
| 4441 | behind_pos = rp->rs_un.regsave; |
| 4442 | |
| 4443 | rp->rs_state = RS_BEHIND2; |
| 4444 | |
| 4445 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4446 | scan = OPERAND(rp->rs_scan) + 4; |
| 4447 | } |
| 4448 | break; |
| 4449 | |
| 4450 | case RS_BEHIND2: |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4451 | // Looping for BEHIND / NOBEHIND match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4452 | if (status == RA_MATCH && reg_save_equal(&behind_pos)) |
| 4453 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4454 | // found a match that ends where "next" started |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4455 | behind_pos = (((regbehind_T *)rp) - 1)->save_behind; |
| 4456 | if (rp->rs_no == BEHIND) |
| 4457 | reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
| 4458 | &backpos); |
| 4459 | else |
| 4460 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4461 | // But we didn't want a match. Need to restore the |
| 4462 | // subexpr, because what follows matched, so they have |
| 4463 | // been set. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4464 | status = RA_NOMATCH; |
| 4465 | restore_subexpr(((regbehind_T *)rp) - 1); |
| 4466 | } |
| 4467 | regstack_pop(&scan); |
| 4468 | regstack.ga_len -= sizeof(regbehind_T); |
| 4469 | } |
| 4470 | else |
| 4471 | { |
| 4472 | long limit; |
| 4473 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4474 | // No match or a match that doesn't end where we want it: Go |
| 4475 | // back one character. May go to previous line once. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4476 | no = OK; |
| 4477 | limit = OPERAND_MIN(rp->rs_scan); |
| 4478 | if (REG_MULTI) |
| 4479 | { |
| 4480 | if (limit > 0 |
| 4481 | && ((rp->rs_un.regsave.rs_u.pos.lnum |
| 4482 | < behind_pos.rs_u.pos.lnum |
| 4483 | ? (colnr_T)STRLEN(rex.line) |
| 4484 | : behind_pos.rs_u.pos.col) |
| 4485 | - rp->rs_un.regsave.rs_u.pos.col >= limit)) |
| 4486 | no = FAIL; |
| 4487 | else if (rp->rs_un.regsave.rs_u.pos.col == 0) |
| 4488 | { |
| 4489 | if (rp->rs_un.regsave.rs_u.pos.lnum |
| 4490 | < behind_pos.rs_u.pos.lnum |
| 4491 | || reg_getline( |
| 4492 | --rp->rs_un.regsave.rs_u.pos.lnum) |
| 4493 | == NULL) |
| 4494 | no = FAIL; |
| 4495 | else |
| 4496 | { |
| 4497 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4498 | rp->rs_un.regsave.rs_u.pos.col = |
| 4499 | (colnr_T)STRLEN(rex.line); |
| 4500 | } |
| 4501 | } |
| 4502 | else |
| 4503 | { |
| 4504 | if (has_mbyte) |
| 4505 | { |
| 4506 | char_u *line = |
| 4507 | reg_getline(rp->rs_un.regsave.rs_u.pos.lnum); |
| 4508 | |
| 4509 | rp->rs_un.regsave.rs_u.pos.col -= |
| 4510 | (*mb_head_off)(line, line |
| 4511 | + rp->rs_un.regsave.rs_u.pos.col - 1) + 1; |
| 4512 | } |
| 4513 | else |
| 4514 | --rp->rs_un.regsave.rs_u.pos.col; |
| 4515 | } |
| 4516 | } |
| 4517 | else |
| 4518 | { |
| 4519 | if (rp->rs_un.regsave.rs_u.ptr == rex.line) |
| 4520 | no = FAIL; |
| 4521 | else |
| 4522 | { |
| 4523 | MB_PTR_BACK(rex.line, rp->rs_un.regsave.rs_u.ptr); |
| 4524 | if (limit > 0 && (long)(behind_pos.rs_u.ptr |
| 4525 | - rp->rs_un.regsave.rs_u.ptr) > limit) |
| 4526 | no = FAIL; |
| 4527 | } |
| 4528 | } |
| 4529 | if (no == OK) |
| 4530 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4531 | // Advanced, prepare for finding match again. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4532 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4533 | scan = OPERAND(rp->rs_scan) + 4; |
| 4534 | if (status == RA_MATCH) |
| 4535 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4536 | // We did match, so subexpr may have been changed, |
| 4537 | // need to restore them for the next try. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4538 | status = RA_NOMATCH; |
| 4539 | restore_subexpr(((regbehind_T *)rp) - 1); |
| 4540 | } |
| 4541 | } |
| 4542 | else |
| 4543 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4544 | // Can't advance. For NOBEHIND that's a match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4545 | behind_pos = (((regbehind_T *)rp) - 1)->save_behind; |
| 4546 | if (rp->rs_no == NOBEHIND) |
| 4547 | { |
| 4548 | reg_restore(&(((regbehind_T *)rp) - 1)->save_after, |
| 4549 | &backpos); |
| 4550 | status = RA_MATCH; |
| 4551 | } |
| 4552 | else |
| 4553 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4554 | // We do want a proper match. Need to restore the |
| 4555 | // subexpr if we had a match, because they may have |
| 4556 | // been set. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4557 | if (status == RA_MATCH) |
| 4558 | { |
| 4559 | status = RA_NOMATCH; |
| 4560 | restore_subexpr(((regbehind_T *)rp) - 1); |
| 4561 | } |
| 4562 | } |
| 4563 | regstack_pop(&scan); |
| 4564 | regstack.ga_len -= sizeof(regbehind_T); |
| 4565 | } |
| 4566 | } |
| 4567 | break; |
| 4568 | |
| 4569 | case RS_STAR_LONG: |
| 4570 | case RS_STAR_SHORT: |
| 4571 | { |
| 4572 | regstar_T *rst = ((regstar_T *)rp) - 1; |
| 4573 | |
| 4574 | if (status == RA_MATCH) |
| 4575 | { |
| 4576 | regstack_pop(&scan); |
| 4577 | regstack.ga_len -= sizeof(regstar_T); |
| 4578 | break; |
| 4579 | } |
| 4580 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4581 | // Tried once already, restore input pointers. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4582 | if (status != RA_BREAK) |
| 4583 | reg_restore(&rp->rs_un.regsave, &backpos); |
| 4584 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4585 | // Repeat until we found a position where it could match. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4586 | for (;;) |
| 4587 | { |
| 4588 | if (status != RA_BREAK) |
| 4589 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4590 | // Tried first position already, advance. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4591 | if (rp->rs_state == RS_STAR_LONG) |
| 4592 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4593 | // Trying for longest match, but couldn't or |
| 4594 | // didn't match -- back up one char. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4595 | if (--rst->count < rst->minval) |
| 4596 | break; |
| 4597 | if (rex.input == rex.line) |
| 4598 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4599 | // backup to last char of previous line |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4600 | --rex.lnum; |
| 4601 | rex.line = reg_getline(rex.lnum); |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4602 | // Just in case regrepeat() didn't count |
| 4603 | // right. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4604 | if (rex.line == NULL) |
| 4605 | break; |
| 4606 | rex.input = rex.line + STRLEN(rex.line); |
| 4607 | fast_breakcheck(); |
| 4608 | } |
| 4609 | else |
| 4610 | MB_PTR_BACK(rex.line, rex.input); |
| 4611 | } |
| 4612 | else |
| 4613 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4614 | // Range is backwards, use shortest match first. |
| 4615 | // Careful: maxval and minval are exchanged! |
| 4616 | // Couldn't or didn't match: try advancing one |
| 4617 | // char. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4618 | if (rst->count == rst->minval |
| 4619 | || regrepeat(OPERAND(rp->rs_scan), 1L) == 0) |
| 4620 | break; |
| 4621 | ++rst->count; |
| 4622 | } |
| 4623 | if (got_int) |
| 4624 | break; |
| 4625 | } |
| 4626 | else |
| 4627 | status = RA_NOMATCH; |
| 4628 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4629 | // If it could match, try it. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4630 | if (rst->nextb == NUL || *rex.input == rst->nextb |
| 4631 | || *rex.input == rst->nextb_ic) |
| 4632 | { |
| 4633 | reg_save(&rp->rs_un.regsave, &backpos); |
| 4634 | scan = regnext(rp->rs_scan); |
| 4635 | status = RA_CONT; |
| 4636 | break; |
| 4637 | } |
| 4638 | } |
| 4639 | if (status != RA_CONT) |
| 4640 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4641 | // Failed. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4642 | regstack_pop(&scan); |
| 4643 | regstack.ga_len -= sizeof(regstar_T); |
| 4644 | status = RA_NOMATCH; |
| 4645 | } |
| 4646 | } |
| 4647 | break; |
| 4648 | } |
| 4649 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4650 | // If we want to continue the inner loop or didn't pop a state |
| 4651 | // continue matching loop |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4652 | if (status == RA_CONT || rp == (regitem_T *) |
| 4653 | ((char *)regstack.ga_data + regstack.ga_len) - 1) |
| 4654 | break; |
| 4655 | } |
| 4656 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4657 | // May need to continue with the inner loop, starting at "scan". |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4658 | if (status == RA_CONT) |
| 4659 | continue; |
| 4660 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4661 | // If the regstack is empty or something failed we are done. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4662 | if (regstack.ga_len == 0 || status == RA_FAIL) |
| 4663 | { |
| 4664 | if (scan == NULL) |
| 4665 | { |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4666 | // We get here only if there's trouble -- normally "case END" is |
| 4667 | // the terminating point. |
Bram Moolenaar | e83cca2 | 2020-09-07 18:53:21 +0200 | [diff] [blame] | 4668 | iemsg(_(e_re_corr)); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4669 | #ifdef DEBUG |
| 4670 | printf("Premature EOL\n"); |
| 4671 | #endif |
| 4672 | } |
| 4673 | return (status == RA_MATCH); |
| 4674 | } |
| 4675 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4676 | } // End of loop until the regstack is empty. |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4677 | |
Bram Moolenaar | 9490b9a | 2019-09-08 17:20:12 +0200 | [diff] [blame] | 4678 | // NOTREACHED |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4679 | } |
| 4680 | |
| 4681 | /* |
| 4682 | * regtry - try match of "prog" with at rex.line["col"]. |
| 4683 | * Returns 0 for failure, number of lines contained in the match otherwise. |
| 4684 | */ |
| 4685 | static long |
| 4686 | regtry( |
| 4687 | bt_regprog_T *prog, |
| 4688 | colnr_T col, |
| 4689 | proftime_T *tm, // timeout limit or NULL |
| 4690 | int *timed_out) // flag set on timeout or NULL |
| 4691 | { |
| 4692 | rex.input = rex.line + col; |
| 4693 | rex.need_clear_subexpr = TRUE; |
| 4694 | #ifdef FEAT_SYN_HL |
| 4695 | // Clear the external match subpointers if necessary. |
| 4696 | rex.need_clear_zsubexpr = (prog->reghasz == REX_SET); |
| 4697 | #endif |
| 4698 | |
| 4699 | if (regmatch(prog->program + 1, tm, timed_out) == 0) |
| 4700 | return 0; |
| 4701 | |
| 4702 | cleanup_subexpr(); |
| 4703 | if (REG_MULTI) |
| 4704 | { |
| 4705 | if (rex.reg_startpos[0].lnum < 0) |
| 4706 | { |
| 4707 | rex.reg_startpos[0].lnum = 0; |
| 4708 | rex.reg_startpos[0].col = col; |
| 4709 | } |
| 4710 | if (rex.reg_endpos[0].lnum < 0) |
| 4711 | { |
| 4712 | rex.reg_endpos[0].lnum = rex.lnum; |
| 4713 | rex.reg_endpos[0].col = (int)(rex.input - rex.line); |
| 4714 | } |
| 4715 | else |
| 4716 | // Use line number of "\ze". |
| 4717 | rex.lnum = rex.reg_endpos[0].lnum; |
| 4718 | } |
| 4719 | else |
| 4720 | { |
| 4721 | if (rex.reg_startp[0] == NULL) |
| 4722 | rex.reg_startp[0] = rex.line + col; |
| 4723 | if (rex.reg_endp[0] == NULL) |
| 4724 | rex.reg_endp[0] = rex.input; |
| 4725 | } |
| 4726 | #ifdef FEAT_SYN_HL |
| 4727 | // Package any found \z(...\) matches for export. Default is none. |
| 4728 | unref_extmatch(re_extmatch_out); |
| 4729 | re_extmatch_out = NULL; |
| 4730 | |
| 4731 | if (prog->reghasz == REX_SET) |
| 4732 | { |
| 4733 | int i; |
| 4734 | |
| 4735 | cleanup_zsubexpr(); |
| 4736 | re_extmatch_out = make_extmatch(); |
Bram Moolenaar | 7c77b34 | 2019-12-22 19:40:40 +0100 | [diff] [blame] | 4737 | if (re_extmatch_out == NULL) |
| 4738 | return 0; |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4739 | for (i = 0; i < NSUBEXP; i++) |
| 4740 | { |
| 4741 | if (REG_MULTI) |
| 4742 | { |
| 4743 | // Only accept single line matches. |
| 4744 | if (reg_startzpos[i].lnum >= 0 |
| 4745 | && reg_endzpos[i].lnum == reg_startzpos[i].lnum |
| 4746 | && reg_endzpos[i].col >= reg_startzpos[i].col) |
| 4747 | re_extmatch_out->matches[i] = |
| 4748 | vim_strnsave(reg_getline(reg_startzpos[i].lnum) |
| 4749 | + reg_startzpos[i].col, |
| 4750 | reg_endzpos[i].col - reg_startzpos[i].col); |
| 4751 | } |
| 4752 | else |
| 4753 | { |
| 4754 | if (reg_startzp[i] != NULL && reg_endzp[i] != NULL) |
| 4755 | re_extmatch_out->matches[i] = |
| 4756 | vim_strnsave(reg_startzp[i], |
Bram Moolenaar | 71ccd03 | 2020-06-12 22:59:11 +0200 | [diff] [blame] | 4757 | reg_endzp[i] - reg_startzp[i]); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4758 | } |
| 4759 | } |
| 4760 | } |
| 4761 | #endif |
| 4762 | return 1 + rex.lnum; |
| 4763 | } |
| 4764 | |
| 4765 | /* |
| 4766 | * Match a regexp against a string ("line" points to the string) or multiple |
| 4767 | * lines ("line" is NULL, use reg_getline()). |
| 4768 | * Returns 0 for failure, number of lines contained in the match otherwise. |
| 4769 | */ |
| 4770 | static long |
| 4771 | bt_regexec_both( |
| 4772 | char_u *line, |
| 4773 | colnr_T col, // column to start looking for match |
| 4774 | proftime_T *tm, // timeout limit or NULL |
| 4775 | int *timed_out) // flag set on timeout or NULL |
| 4776 | { |
| 4777 | bt_regprog_T *prog; |
| 4778 | char_u *s; |
| 4779 | long retval = 0L; |
| 4780 | |
| 4781 | // Create "regstack" and "backpos" if they are not allocated yet. |
| 4782 | // We allocate *_INITIAL amount of bytes first and then set the grow size |
| 4783 | // to much bigger value to avoid many malloc calls in case of deep regular |
| 4784 | // expressions. |
| 4785 | if (regstack.ga_data == NULL) |
| 4786 | { |
| 4787 | // Use an item size of 1 byte, since we push different things |
| 4788 | // onto the regstack. |
| 4789 | ga_init2(®stack, 1, REGSTACK_INITIAL); |
| 4790 | (void)ga_grow(®stack, REGSTACK_INITIAL); |
| 4791 | regstack.ga_growsize = REGSTACK_INITIAL * 8; |
| 4792 | } |
| 4793 | |
| 4794 | if (backpos.ga_data == NULL) |
| 4795 | { |
| 4796 | ga_init2(&backpos, sizeof(backpos_T), BACKPOS_INITIAL); |
| 4797 | (void)ga_grow(&backpos, BACKPOS_INITIAL); |
| 4798 | backpos.ga_growsize = BACKPOS_INITIAL * 8; |
| 4799 | } |
| 4800 | |
| 4801 | if (REG_MULTI) |
| 4802 | { |
| 4803 | prog = (bt_regprog_T *)rex.reg_mmatch->regprog; |
| 4804 | line = reg_getline((linenr_T)0); |
| 4805 | rex.reg_startpos = rex.reg_mmatch->startpos; |
| 4806 | rex.reg_endpos = rex.reg_mmatch->endpos; |
| 4807 | } |
| 4808 | else |
| 4809 | { |
| 4810 | prog = (bt_regprog_T *)rex.reg_match->regprog; |
| 4811 | rex.reg_startp = rex.reg_match->startp; |
| 4812 | rex.reg_endp = rex.reg_match->endp; |
| 4813 | } |
| 4814 | |
| 4815 | // Be paranoid... |
| 4816 | if (prog == NULL || line == NULL) |
| 4817 | { |
Bram Moolenaar | e83cca2 | 2020-09-07 18:53:21 +0200 | [diff] [blame] | 4818 | iemsg(_(e_null)); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4819 | goto theend; |
| 4820 | } |
| 4821 | |
| 4822 | // Check validity of program. |
| 4823 | if (prog_magic_wrong()) |
| 4824 | goto theend; |
| 4825 | |
| 4826 | // If the start column is past the maximum column: no need to try. |
| 4827 | if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
| 4828 | goto theend; |
| 4829 | |
| 4830 | // If pattern contains "\c" or "\C": overrule value of rex.reg_ic |
| 4831 | if (prog->regflags & RF_ICASE) |
| 4832 | rex.reg_ic = TRUE; |
| 4833 | else if (prog->regflags & RF_NOICASE) |
| 4834 | rex.reg_ic = FALSE; |
| 4835 | |
| 4836 | // If pattern contains "\Z" overrule value of rex.reg_icombine |
| 4837 | if (prog->regflags & RF_ICOMBINE) |
| 4838 | rex.reg_icombine = TRUE; |
| 4839 | |
| 4840 | // If there is a "must appear" string, look for it. |
| 4841 | if (prog->regmust != NULL) |
| 4842 | { |
| 4843 | int c; |
| 4844 | |
| 4845 | if (has_mbyte) |
| 4846 | c = (*mb_ptr2char)(prog->regmust); |
| 4847 | else |
| 4848 | c = *prog->regmust; |
| 4849 | s = line + col; |
| 4850 | |
| 4851 | // This is used very often, esp. for ":global". Use three versions of |
| 4852 | // the loop to avoid overhead of conditions. |
| 4853 | if (!rex.reg_ic && !has_mbyte) |
| 4854 | while ((s = vim_strbyte(s, c)) != NULL) |
| 4855 | { |
| 4856 | if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) |
| 4857 | break; // Found it. |
| 4858 | ++s; |
| 4859 | } |
| 4860 | else if (!rex.reg_ic || (!enc_utf8 && mb_char2len(c) > 1)) |
| 4861 | while ((s = vim_strchr(s, c)) != NULL) |
| 4862 | { |
| 4863 | if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) |
| 4864 | break; // Found it. |
| 4865 | MB_PTR_ADV(s); |
| 4866 | } |
| 4867 | else |
| 4868 | while ((s = cstrchr(s, c)) != NULL) |
| 4869 | { |
| 4870 | if (cstrncmp(s, prog->regmust, &prog->regmlen) == 0) |
| 4871 | break; // Found it. |
| 4872 | MB_PTR_ADV(s); |
| 4873 | } |
| 4874 | if (s == NULL) // Not present. |
| 4875 | goto theend; |
| 4876 | } |
| 4877 | |
| 4878 | rex.line = line; |
| 4879 | rex.lnum = 0; |
| 4880 | reg_toolong = FALSE; |
| 4881 | |
| 4882 | // Simplest case: Anchored match need be tried only once. |
| 4883 | if (prog->reganch) |
| 4884 | { |
| 4885 | int c; |
| 4886 | |
| 4887 | if (has_mbyte) |
| 4888 | c = (*mb_ptr2char)(rex.line + col); |
| 4889 | else |
| 4890 | c = rex.line[col]; |
| 4891 | if (prog->regstart == NUL |
| 4892 | || prog->regstart == c |
| 4893 | || (rex.reg_ic |
| 4894 | && (((enc_utf8 && utf_fold(prog->regstart) == utf_fold(c))) |
| 4895 | || (c < 255 && prog->regstart < 255 && |
| 4896 | MB_TOLOWER(prog->regstart) == MB_TOLOWER(c))))) |
| 4897 | retval = regtry(prog, col, tm, timed_out); |
| 4898 | else |
| 4899 | retval = 0; |
| 4900 | } |
| 4901 | else |
| 4902 | { |
| 4903 | #ifdef FEAT_RELTIME |
| 4904 | int tm_count = 0; |
| 4905 | #endif |
| 4906 | // Messy cases: unanchored match. |
| 4907 | while (!got_int) |
| 4908 | { |
| 4909 | if (prog->regstart != NUL) |
| 4910 | { |
| 4911 | // Skip until the char we know it must start with. |
| 4912 | // Used often, do some work to avoid call overhead. |
| 4913 | if (!rex.reg_ic && !has_mbyte) |
| 4914 | s = vim_strbyte(rex.line + col, prog->regstart); |
| 4915 | else |
| 4916 | s = cstrchr(rex.line + col, prog->regstart); |
| 4917 | if (s == NULL) |
| 4918 | { |
| 4919 | retval = 0; |
| 4920 | break; |
| 4921 | } |
| 4922 | col = (int)(s - rex.line); |
| 4923 | } |
| 4924 | |
| 4925 | // Check for maximum column to try. |
| 4926 | if (rex.reg_maxcol > 0 && col >= rex.reg_maxcol) |
| 4927 | { |
| 4928 | retval = 0; |
| 4929 | break; |
| 4930 | } |
| 4931 | |
| 4932 | retval = regtry(prog, col, tm, timed_out); |
| 4933 | if (retval > 0) |
| 4934 | break; |
| 4935 | |
| 4936 | // if not currently on the first line, get it again |
| 4937 | if (rex.lnum != 0) |
| 4938 | { |
| 4939 | rex.lnum = 0; |
| 4940 | rex.line = reg_getline((linenr_T)0); |
| 4941 | } |
| 4942 | if (rex.line[col] == NUL) |
| 4943 | break; |
| 4944 | if (has_mbyte) |
| 4945 | col += (*mb_ptr2len)(rex.line + col); |
| 4946 | else |
| 4947 | ++col; |
| 4948 | #ifdef FEAT_RELTIME |
| 4949 | // Check for timeout once in a twenty times to avoid overhead. |
| 4950 | if (tm != NULL && ++tm_count == 20) |
| 4951 | { |
| 4952 | tm_count = 0; |
| 4953 | if (profile_passed_limit(tm)) |
| 4954 | { |
| 4955 | if (timed_out != NULL) |
| 4956 | *timed_out = TRUE; |
| 4957 | break; |
| 4958 | } |
| 4959 | } |
| 4960 | #endif |
| 4961 | } |
| 4962 | } |
| 4963 | |
| 4964 | theend: |
| 4965 | // Free "reg_tofree" when it's a bit big. |
| 4966 | // Free regstack and backpos if they are bigger than their initial size. |
| 4967 | if (reg_tofreelen > 400) |
| 4968 | VIM_CLEAR(reg_tofree); |
| 4969 | if (regstack.ga_maxlen > REGSTACK_INITIAL) |
| 4970 | ga_clear(®stack); |
| 4971 | if (backpos.ga_maxlen > BACKPOS_INITIAL) |
| 4972 | ga_clear(&backpos); |
| 4973 | |
Bram Moolenaar | a3d10a5 | 2020-12-21 18:24:00 +0100 | [diff] [blame] | 4974 | if (retval > 0) |
Bram Moolenaar | a7a691c | 2020-12-09 16:36:04 +0100 | [diff] [blame] | 4975 | { |
Bram Moolenaar | a3d10a5 | 2020-12-21 18:24:00 +0100 | [diff] [blame] | 4976 | // Make sure the end is never before the start. Can happen when \zs |
| 4977 | // and \ze are used. |
| 4978 | if (REG_MULTI) |
| 4979 | { |
| 4980 | lpos_T *start = &rex.reg_mmatch->startpos[0]; |
| 4981 | lpos_T *end = &rex.reg_mmatch->endpos[0]; |
Bram Moolenaar | a7a691c | 2020-12-09 16:36:04 +0100 | [diff] [blame] | 4982 | |
Bram Moolenaar | a3d10a5 | 2020-12-21 18:24:00 +0100 | [diff] [blame] | 4983 | if (end->lnum < start->lnum |
Bram Moolenaar | a7a691c | 2020-12-09 16:36:04 +0100 | [diff] [blame] | 4984 | || (end->lnum == start->lnum && end->col < start->col)) |
Bram Moolenaar | a3d10a5 | 2020-12-21 18:24:00 +0100 | [diff] [blame] | 4985 | rex.reg_mmatch->endpos[0] = rex.reg_mmatch->startpos[0]; |
| 4986 | } |
| 4987 | else |
| 4988 | { |
| 4989 | if (rex.reg_match->endp[0] < rex.reg_match->startp[0]) |
| 4990 | rex.reg_match->endp[0] = rex.reg_match->startp[0]; |
| 4991 | } |
Bram Moolenaar | a7a691c | 2020-12-09 16:36:04 +0100 | [diff] [blame] | 4992 | } |
| 4993 | |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 4994 | return retval; |
| 4995 | } |
| 4996 | |
| 4997 | /* |
| 4998 | * Match a regexp against a string. |
| 4999 | * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). |
| 5000 | * Uses curbuf for line count and 'iskeyword'. |
| 5001 | * if "line_lbr" is TRUE consider a "\n" in "line" to be a line break. |
| 5002 | * |
| 5003 | * Returns 0 for failure, number of lines contained in the match otherwise. |
| 5004 | */ |
| 5005 | static int |
| 5006 | bt_regexec_nl( |
| 5007 | regmatch_T *rmp, |
| 5008 | char_u *line, // string to match against |
| 5009 | colnr_T col, // column to start looking for match |
| 5010 | int line_lbr) |
| 5011 | { |
| 5012 | rex.reg_match = rmp; |
| 5013 | rex.reg_mmatch = NULL; |
| 5014 | rex.reg_maxline = 0; |
| 5015 | rex.reg_line_lbr = line_lbr; |
| 5016 | rex.reg_buf = curbuf; |
| 5017 | rex.reg_win = NULL; |
| 5018 | rex.reg_ic = rmp->rm_ic; |
| 5019 | rex.reg_icombine = FALSE; |
| 5020 | rex.reg_maxcol = 0; |
| 5021 | |
| 5022 | return bt_regexec_both(line, col, NULL, NULL); |
| 5023 | } |
| 5024 | |
| 5025 | /* |
| 5026 | * Match a regexp against multiple lines. |
| 5027 | * "rmp->regprog" is a compiled regexp as returned by vim_regcomp(). |
| 5028 | * Uses curbuf for line count and 'iskeyword'. |
| 5029 | * |
| 5030 | * Return zero if there is no match. Return number of lines contained in the |
| 5031 | * match otherwise. |
| 5032 | */ |
| 5033 | static long |
| 5034 | bt_regexec_multi( |
| 5035 | regmmatch_T *rmp, |
| 5036 | win_T *win, // window in which to search or NULL |
| 5037 | buf_T *buf, // buffer in which to search |
| 5038 | linenr_T lnum, // nr of line to start looking for match |
| 5039 | colnr_T col, // column to start looking for match |
| 5040 | proftime_T *tm, // timeout limit or NULL |
| 5041 | int *timed_out) // flag set on timeout or NULL |
| 5042 | { |
Bram Moolenaar | f414048 | 2020-02-15 23:06:45 +0100 | [diff] [blame] | 5043 | init_regexec_multi(rmp, win, buf, lnum); |
Bram Moolenaar | 6d7d7cf | 2019-09-07 23:16:33 +0200 | [diff] [blame] | 5044 | return bt_regexec_both(NULL, col, tm, timed_out); |
| 5045 | } |
| 5046 | |
| 5047 | /* |
| 5048 | * Compare a number with the operand of RE_LNUM, RE_COL or RE_VCOL. |
| 5049 | */ |
| 5050 | static int |
| 5051 | re_num_cmp(long_u val, char_u *scan) |
| 5052 | { |
| 5053 | long_u n = OPERAND_MIN(scan); |
| 5054 | |
| 5055 | if (OPERAND_CMP(scan) == '>') |
| 5056 | return val > n; |
| 5057 | if (OPERAND_CMP(scan) == '<') |
| 5058 | return val < n; |
| 5059 | return val == n; |
| 5060 | } |
| 5061 | |
| 5062 | #ifdef BT_REGEXP_DUMP |
| 5063 | |
| 5064 | /* |
| 5065 | * regdump - dump a regexp onto stdout in vaguely comprehensible form |
| 5066 | */ |
| 5067 | static void |
| 5068 | regdump(char_u *pattern, bt_regprog_T *r) |
| 5069 | { |
| 5070 | char_u *s; |
| 5071 | int op = EXACTLY; // Arbitrary non-END op. |
| 5072 | char_u *next; |
| 5073 | char_u *end = NULL; |
| 5074 | FILE *f; |
| 5075 | |
| 5076 | #ifdef BT_REGEXP_LOG |
| 5077 | f = fopen("bt_regexp_log.log", "a"); |
| 5078 | #else |
| 5079 | f = stdout; |
| 5080 | #endif |
| 5081 | if (f == NULL) |
| 5082 | return; |
| 5083 | fprintf(f, "-------------------------------------\n\r\nregcomp(%s):\r\n", pattern); |
| 5084 | |
| 5085 | s = r->program + 1; |
| 5086 | // Loop until we find the END that isn't before a referred next (an END |
| 5087 | // can also appear in a NOMATCH operand). |
| 5088 | while (op != END || s <= end) |
| 5089 | { |
| 5090 | op = OP(s); |
| 5091 | fprintf(f, "%2d%s", (int)(s - r->program), regprop(s)); // Where, what. |
| 5092 | next = regnext(s); |
| 5093 | if (next == NULL) // Next ptr. |
| 5094 | fprintf(f, "(0)"); |
| 5095 | else |
| 5096 | fprintf(f, "(%d)", (int)((s - r->program) + (next - s))); |
| 5097 | if (end < next) |
| 5098 | end = next; |
| 5099 | if (op == BRACE_LIMITS) |
| 5100 | { |
| 5101 | // Two ints |
| 5102 | fprintf(f, " minval %ld, maxval %ld", OPERAND_MIN(s), OPERAND_MAX(s)); |
| 5103 | s += 8; |
| 5104 | } |
| 5105 | else if (op == BEHIND || op == NOBEHIND) |
| 5106 | { |
| 5107 | // one int |
| 5108 | fprintf(f, " count %ld", OPERAND_MIN(s)); |
| 5109 | s += 4; |
| 5110 | } |
| 5111 | else if (op == RE_LNUM || op == RE_COL || op == RE_VCOL) |
| 5112 | { |
| 5113 | // one int plus comparator |
| 5114 | fprintf(f, " count %ld", OPERAND_MIN(s)); |
| 5115 | s += 5; |
| 5116 | } |
| 5117 | s += 3; |
| 5118 | if (op == ANYOF || op == ANYOF + ADD_NL |
| 5119 | || op == ANYBUT || op == ANYBUT + ADD_NL |
| 5120 | || op == EXACTLY) |
| 5121 | { |
| 5122 | // Literal string, where present. |
| 5123 | fprintf(f, "\nxxxxxxxxx\n"); |
| 5124 | while (*s != NUL) |
| 5125 | fprintf(f, "%c", *s++); |
| 5126 | fprintf(f, "\nxxxxxxxxx\n"); |
| 5127 | s++; |
| 5128 | } |
| 5129 | fprintf(f, "\r\n"); |
| 5130 | } |
| 5131 | |
| 5132 | // Header fields of interest. |
| 5133 | if (r->regstart != NUL) |
| 5134 | fprintf(f, "start `%s' 0x%x; ", r->regstart < 256 |
| 5135 | ? (char *)transchar(r->regstart) |
| 5136 | : "multibyte", r->regstart); |
| 5137 | if (r->reganch) |
| 5138 | fprintf(f, "anchored; "); |
| 5139 | if (r->regmust != NULL) |
| 5140 | fprintf(f, "must have \"%s\"", r->regmust); |
| 5141 | fprintf(f, "\r\n"); |
| 5142 | |
| 5143 | #ifdef BT_REGEXP_LOG |
| 5144 | fclose(f); |
| 5145 | #endif |
| 5146 | } |
| 5147 | #endif // BT_REGEXP_DUMP |
| 5148 | |
| 5149 | #ifdef DEBUG |
| 5150 | /* |
| 5151 | * regprop - printable representation of opcode |
| 5152 | */ |
| 5153 | static char_u * |
| 5154 | regprop(char_u *op) |
| 5155 | { |
| 5156 | char *p; |
| 5157 | static char buf[50]; |
| 5158 | |
| 5159 | STRCPY(buf, ":"); |
| 5160 | |
| 5161 | switch ((int) OP(op)) |
| 5162 | { |
| 5163 | case BOL: |
| 5164 | p = "BOL"; |
| 5165 | break; |
| 5166 | case EOL: |
| 5167 | p = "EOL"; |
| 5168 | break; |
| 5169 | case RE_BOF: |
| 5170 | p = "BOF"; |
| 5171 | break; |
| 5172 | case RE_EOF: |
| 5173 | p = "EOF"; |
| 5174 | break; |
| 5175 | case CURSOR: |
| 5176 | p = "CURSOR"; |
| 5177 | break; |
| 5178 | case RE_VISUAL: |
| 5179 | p = "RE_VISUAL"; |
| 5180 | break; |
| 5181 | case RE_LNUM: |
| 5182 | p = "RE_LNUM"; |
| 5183 | break; |
| 5184 | case RE_MARK: |
| 5185 | p = "RE_MARK"; |
| 5186 | break; |
| 5187 | case RE_COL: |
| 5188 | p = "RE_COL"; |
| 5189 | break; |
| 5190 | case RE_VCOL: |
| 5191 | p = "RE_VCOL"; |
| 5192 | break; |
| 5193 | case BOW: |
| 5194 | p = "BOW"; |
| 5195 | break; |
| 5196 | case EOW: |
| 5197 | p = "EOW"; |
| 5198 | break; |
| 5199 | case ANY: |
| 5200 | p = "ANY"; |
| 5201 | break; |
| 5202 | case ANY + ADD_NL: |
| 5203 | p = "ANY+NL"; |
| 5204 | break; |
| 5205 | case ANYOF: |
| 5206 | p = "ANYOF"; |
| 5207 | break; |
| 5208 | case ANYOF + ADD_NL: |
| 5209 | p = "ANYOF+NL"; |
| 5210 | break; |
| 5211 | case ANYBUT: |
| 5212 | p = "ANYBUT"; |
| 5213 | break; |
| 5214 | case ANYBUT + ADD_NL: |
| 5215 | p = "ANYBUT+NL"; |
| 5216 | break; |
| 5217 | case IDENT: |
| 5218 | p = "IDENT"; |
| 5219 | break; |
| 5220 | case IDENT + ADD_NL: |
| 5221 | p = "IDENT+NL"; |
| 5222 | break; |
| 5223 | case SIDENT: |
| 5224 | p = "SIDENT"; |
| 5225 | break; |
| 5226 | case SIDENT + ADD_NL: |
| 5227 | p = "SIDENT+NL"; |
| 5228 | break; |
| 5229 | case KWORD: |
| 5230 | p = "KWORD"; |
| 5231 | break; |
| 5232 | case KWORD + ADD_NL: |
| 5233 | p = "KWORD+NL"; |
| 5234 | break; |
| 5235 | case SKWORD: |
| 5236 | p = "SKWORD"; |
| 5237 | break; |
| 5238 | case SKWORD + ADD_NL: |
| 5239 | p = "SKWORD+NL"; |
| 5240 | break; |
| 5241 | case FNAME: |
| 5242 | p = "FNAME"; |
| 5243 | break; |
| 5244 | case FNAME + ADD_NL: |
| 5245 | p = "FNAME+NL"; |
| 5246 | break; |
| 5247 | case SFNAME: |
| 5248 | p = "SFNAME"; |
| 5249 | break; |
| 5250 | case SFNAME + ADD_NL: |
| 5251 | p = "SFNAME+NL"; |
| 5252 | break; |
| 5253 | case PRINT: |
| 5254 | p = "PRINT"; |
| 5255 | break; |
| 5256 | case PRINT + ADD_NL: |
| 5257 | p = "PRINT+NL"; |
| 5258 | break; |
| 5259 | case SPRINT: |
| 5260 | p = "SPRINT"; |
| 5261 | break; |
| 5262 | case SPRINT + ADD_NL: |
| 5263 | p = "SPRINT+NL"; |
| 5264 | break; |
| 5265 | case WHITE: |
| 5266 | p = "WHITE"; |
| 5267 | break; |
| 5268 | case WHITE + ADD_NL: |
| 5269 | p = "WHITE+NL"; |
| 5270 | break; |
| 5271 | case NWHITE: |
| 5272 | p = "NWHITE"; |
| 5273 | break; |
| 5274 | case NWHITE + ADD_NL: |
| 5275 | p = "NWHITE+NL"; |
| 5276 | break; |
| 5277 | case DIGIT: |
| 5278 | p = "DIGIT"; |
| 5279 | break; |
| 5280 | case DIGIT + ADD_NL: |
| 5281 | p = "DIGIT+NL"; |
| 5282 | break; |
| 5283 | case NDIGIT: |
| 5284 | p = "NDIGIT"; |
| 5285 | break; |
| 5286 | case NDIGIT + ADD_NL: |
| 5287 | p = "NDIGIT+NL"; |
| 5288 | break; |
| 5289 | case HEX: |
| 5290 | p = "HEX"; |
| 5291 | break; |
| 5292 | case HEX + ADD_NL: |
| 5293 | p = "HEX+NL"; |
| 5294 | break; |
| 5295 | case NHEX: |
| 5296 | p = "NHEX"; |
| 5297 | break; |
| 5298 | case NHEX + ADD_NL: |
| 5299 | p = "NHEX+NL"; |
| 5300 | break; |
| 5301 | case OCTAL: |
| 5302 | p = "OCTAL"; |
| 5303 | break; |
| 5304 | case OCTAL + ADD_NL: |
| 5305 | p = "OCTAL+NL"; |
| 5306 | break; |
| 5307 | case NOCTAL: |
| 5308 | p = "NOCTAL"; |
| 5309 | break; |
| 5310 | case NOCTAL + ADD_NL: |
| 5311 | p = "NOCTAL+NL"; |
| 5312 | break; |
| 5313 | case WORD: |
| 5314 | p = "WORD"; |
| 5315 | break; |
| 5316 | case WORD + ADD_NL: |
| 5317 | p = "WORD+NL"; |
| 5318 | break; |
| 5319 | case NWORD: |
| 5320 | p = "NWORD"; |
| 5321 | break; |
| 5322 | case NWORD + ADD_NL: |
| 5323 | p = "NWORD+NL"; |
| 5324 | break; |
| 5325 | case HEAD: |
| 5326 | p = "HEAD"; |
| 5327 | break; |
| 5328 | case HEAD + ADD_NL: |
| 5329 | p = "HEAD+NL"; |
| 5330 | break; |
| 5331 | case NHEAD: |
| 5332 | p = "NHEAD"; |
| 5333 | break; |
| 5334 | case NHEAD + ADD_NL: |
| 5335 | p = "NHEAD+NL"; |
| 5336 | break; |
| 5337 | case ALPHA: |
| 5338 | p = "ALPHA"; |
| 5339 | break; |
| 5340 | case ALPHA + ADD_NL: |
| 5341 | p = "ALPHA+NL"; |
| 5342 | break; |
| 5343 | case NALPHA: |
| 5344 | p = "NALPHA"; |
| 5345 | break; |
| 5346 | case NALPHA + ADD_NL: |
| 5347 | p = "NALPHA+NL"; |
| 5348 | break; |
| 5349 | case LOWER: |
| 5350 | p = "LOWER"; |
| 5351 | break; |
| 5352 | case LOWER + ADD_NL: |
| 5353 | p = "LOWER+NL"; |
| 5354 | break; |
| 5355 | case NLOWER: |
| 5356 | p = "NLOWER"; |
| 5357 | break; |
| 5358 | case NLOWER + ADD_NL: |
| 5359 | p = "NLOWER+NL"; |
| 5360 | break; |
| 5361 | case UPPER: |
| 5362 | p = "UPPER"; |
| 5363 | break; |
| 5364 | case UPPER + ADD_NL: |
| 5365 | p = "UPPER+NL"; |
| 5366 | break; |
| 5367 | case NUPPER: |
| 5368 | p = "NUPPER"; |
| 5369 | break; |
| 5370 | case NUPPER + ADD_NL: |
| 5371 | p = "NUPPER+NL"; |
| 5372 | break; |
| 5373 | case BRANCH: |
| 5374 | p = "BRANCH"; |
| 5375 | break; |
| 5376 | case EXACTLY: |
| 5377 | p = "EXACTLY"; |
| 5378 | break; |
| 5379 | case NOTHING: |
| 5380 | p = "NOTHING"; |
| 5381 | break; |
| 5382 | case BACK: |
| 5383 | p = "BACK"; |
| 5384 | break; |
| 5385 | case END: |
| 5386 | p = "END"; |
| 5387 | break; |
| 5388 | case MOPEN + 0: |
| 5389 | p = "MATCH START"; |
| 5390 | break; |
| 5391 | case MOPEN + 1: |
| 5392 | case MOPEN + 2: |
| 5393 | case MOPEN + 3: |
| 5394 | case MOPEN + 4: |
| 5395 | case MOPEN + 5: |
| 5396 | case MOPEN + 6: |
| 5397 | case MOPEN + 7: |
| 5398 | case MOPEN + 8: |
| 5399 | case MOPEN + 9: |
| 5400 | sprintf(buf + STRLEN(buf), "MOPEN%d", OP(op) - MOPEN); |
| 5401 | p = NULL; |
| 5402 | break; |
| 5403 | case MCLOSE + 0: |
| 5404 | p = "MATCH END"; |
| 5405 | break; |
| 5406 | case MCLOSE + 1: |
| 5407 | case MCLOSE + 2: |
| 5408 | case MCLOSE + 3: |
| 5409 | case MCLOSE + 4: |
| 5410 | case MCLOSE + 5: |
| 5411 | case MCLOSE + 6: |
| 5412 | case MCLOSE + 7: |
| 5413 | case MCLOSE + 8: |
| 5414 | case MCLOSE + 9: |
| 5415 | sprintf(buf + STRLEN(buf), "MCLOSE%d", OP(op) - MCLOSE); |
| 5416 | p = NULL; |
| 5417 | break; |
| 5418 | case BACKREF + 1: |
| 5419 | case BACKREF + 2: |
| 5420 | case BACKREF + 3: |
| 5421 | case BACKREF + 4: |
| 5422 | case BACKREF + 5: |
| 5423 | case BACKREF + 6: |
| 5424 | case BACKREF + 7: |
| 5425 | case BACKREF + 8: |
| 5426 | case BACKREF + 9: |
| 5427 | sprintf(buf + STRLEN(buf), "BACKREF%d", OP(op) - BACKREF); |
| 5428 | p = NULL; |
| 5429 | break; |
| 5430 | case NOPEN: |
| 5431 | p = "NOPEN"; |
| 5432 | break; |
| 5433 | case NCLOSE: |
| 5434 | p = "NCLOSE"; |
| 5435 | break; |
| 5436 | #ifdef FEAT_SYN_HL |
| 5437 | case ZOPEN + 1: |
| 5438 | case ZOPEN + 2: |
| 5439 | case ZOPEN + 3: |
| 5440 | case ZOPEN + 4: |
| 5441 | case ZOPEN + 5: |
| 5442 | case ZOPEN + 6: |
| 5443 | case ZOPEN + 7: |
| 5444 | case ZOPEN + 8: |
| 5445 | case ZOPEN + 9: |
| 5446 | sprintf(buf + STRLEN(buf), "ZOPEN%d", OP(op) - ZOPEN); |
| 5447 | p = NULL; |
| 5448 | break; |
| 5449 | case ZCLOSE + 1: |
| 5450 | case ZCLOSE + 2: |
| 5451 | case ZCLOSE + 3: |
| 5452 | case ZCLOSE + 4: |
| 5453 | case ZCLOSE + 5: |
| 5454 | case ZCLOSE + 6: |
| 5455 | case ZCLOSE + 7: |
| 5456 | case ZCLOSE + 8: |
| 5457 | case ZCLOSE + 9: |
| 5458 | sprintf(buf + STRLEN(buf), "ZCLOSE%d", OP(op) - ZCLOSE); |
| 5459 | p = NULL; |
| 5460 | break; |
| 5461 | case ZREF + 1: |
| 5462 | case ZREF + 2: |
| 5463 | case ZREF + 3: |
| 5464 | case ZREF + 4: |
| 5465 | case ZREF + 5: |
| 5466 | case ZREF + 6: |
| 5467 | case ZREF + 7: |
| 5468 | case ZREF + 8: |
| 5469 | case ZREF + 9: |
| 5470 | sprintf(buf + STRLEN(buf), "ZREF%d", OP(op) - ZREF); |
| 5471 | p = NULL; |
| 5472 | break; |
| 5473 | #endif |
| 5474 | case STAR: |
| 5475 | p = "STAR"; |
| 5476 | break; |
| 5477 | case PLUS: |
| 5478 | p = "PLUS"; |
| 5479 | break; |
| 5480 | case NOMATCH: |
| 5481 | p = "NOMATCH"; |
| 5482 | break; |
| 5483 | case MATCH: |
| 5484 | p = "MATCH"; |
| 5485 | break; |
| 5486 | case BEHIND: |
| 5487 | p = "BEHIND"; |
| 5488 | break; |
| 5489 | case NOBEHIND: |
| 5490 | p = "NOBEHIND"; |
| 5491 | break; |
| 5492 | case SUBPAT: |
| 5493 | p = "SUBPAT"; |
| 5494 | break; |
| 5495 | case BRACE_LIMITS: |
| 5496 | p = "BRACE_LIMITS"; |
| 5497 | break; |
| 5498 | case BRACE_SIMPLE: |
| 5499 | p = "BRACE_SIMPLE"; |
| 5500 | break; |
| 5501 | case BRACE_COMPLEX + 0: |
| 5502 | case BRACE_COMPLEX + 1: |
| 5503 | case BRACE_COMPLEX + 2: |
| 5504 | case BRACE_COMPLEX + 3: |
| 5505 | case BRACE_COMPLEX + 4: |
| 5506 | case BRACE_COMPLEX + 5: |
| 5507 | case BRACE_COMPLEX + 6: |
| 5508 | case BRACE_COMPLEX + 7: |
| 5509 | case BRACE_COMPLEX + 8: |
| 5510 | case BRACE_COMPLEX + 9: |
| 5511 | sprintf(buf + STRLEN(buf), "BRACE_COMPLEX%d", OP(op) - BRACE_COMPLEX); |
| 5512 | p = NULL; |
| 5513 | break; |
| 5514 | case MULTIBYTECODE: |
| 5515 | p = "MULTIBYTECODE"; |
| 5516 | break; |
| 5517 | case NEWL: |
| 5518 | p = "NEWL"; |
| 5519 | break; |
| 5520 | default: |
| 5521 | sprintf(buf + STRLEN(buf), "corrupt %d", OP(op)); |
| 5522 | p = NULL; |
| 5523 | break; |
| 5524 | } |
| 5525 | if (p != NULL) |
| 5526 | STRCAT(buf, p); |
| 5527 | return (char_u *)buf; |
| 5528 | } |
| 5529 | #endif // DEBUG |