PostgreSQL Source Code git master
Loading...
Searching...
No Matches
rege_dfa.c
Go to the documentation of this file.
1/*
2 * DFA routines
3 * This file is #included by regexec.c.
4 *
5 * Copyright (c) 1998, 1999 Henry Spencer. All rights reserved.
6 *
7 * Development of this software was funded, in part, by Cray Research Inc.,
8 * UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
9 * Corporation, none of whom are responsible for the results. The author
10 * thanks all of them.
11 *
12 * Redistribution and use in source and binary forms -- with or without
13 * modification -- are permitted for any purpose, provided that
14 * redistributions in source form retain this entire copyright notice and
15 * indicate the origin and nature of any modifications.
16 *
17 * I'd appreciate being given credit for this package in the documentation
18 * of software which uses it, but that is not a requirement.
19 *
20 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
21 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
22 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23 * HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 *
31 * src/backend/regex/rege_dfa.c
32 *
33 */
34
35/*
36 * longest - longest-preferred matching engine
37 *
38 * On success, returns match endpoint address. Returns NULL on no match.
39 * Internal errors also return NULL, with v->err set.
40 */
41static chr *
42longest(struct vars *v,
43 struct dfa *d,
44 chr *start, /* where the match should start */
45 chr *stop, /* match must end at or before here */
46 int *hitstopp) /* record whether hit v->stop, if non-NULL */
47{
48 chr *cp;
49 chr *realstop = (stop == v->stop) ? stop : stop + 1;
50 color co;
51 struct sset *css;
52 struct sset *ss;
53 chr *post;
54 int i;
55 struct colormap *cm = d->cm;
56
57 /* prevent "uninitialized variable" warnings */
58 if (hitstopp != NULL)
59 *hitstopp = 0;
60
61 /* if this is a backref to a known string, just match against that */
62 if (d->backno >= 0)
63 {
64 assert((size_t) d->backno < v->nmatch);
65 if (v->pmatch[d->backno].rm_so >= 0)
66 {
67 cp = dfa_backref(v, d, start, start, stop, false);
68 if (cp == v->stop && stop == v->stop && hitstopp != NULL)
69 *hitstopp = 1;
70 return cp;
71 }
72 }
73
74 /* fast path for matchall NFAs */
75 if (d->cnfa->flags & MATCHALL)
76 {
77 size_t nchr = stop - start;
78 size_t maxmatchall = d->cnfa->maxmatchall;
79
81 return NULL;
82 if (maxmatchall == DUPINF)
83 {
84 if (stop == v->stop && hitstopp != NULL)
85 *hitstopp = 1;
86 }
87 else
88 {
89 if (stop == v->stop && nchr <= maxmatchall + 1 && hitstopp != NULL)
90 *hitstopp = 1;
91 if (nchr > maxmatchall)
92 return start + maxmatchall;
93 }
94 return stop;
95 }
96
97 /* initialize */
98 css = initialize(v, d, start);
99 if (css == NULL)
100 return NULL;
101 cp = start;
102
103 /* startup */
104 FDEBUG(("+++ startup +++\n"));
105 if (cp == v->start)
106 {
107 co = d->cnfa->bos[(v->eflags & REG_NOTBOL) ? 0 : 1];
108 FDEBUG(("color %ld\n", (long) co));
109 }
110 else
111 {
112 co = GETCOLOR(cm, *(cp - 1));
113 FDEBUG(("char %c, color %ld\n", (char) *(cp - 1), (long) co));
114 }
115 css = miss(v, d, css, co, cp, start);
116 if (css == NULL)
117 return NULL;
118 css->lastseen = cp;
119
120 /*
121 * This is the main text-scanning loop. It seems worth having two copies
122 * to avoid the overhead of REG_FTRACE tests here, even in REG_DEBUG
123 * builds, when you're not actively tracing.
124 */
125#ifdef REG_DEBUG
126 if (v->eflags & REG_FTRACE)
127 {
128 while (cp < realstop)
129 {
130 FDEBUG(("+++ at c%d +++\n", (int) (css - d->ssets)));
131 co = GETCOLOR(cm, *cp);
132 FDEBUG(("char %c, color %ld\n", (char) *cp, (long) co));
133 ss = css->outs[co];
134 if (ss == NULL)
135 {
136 ss = miss(v, d, css, co, cp + 1, start);
137 if (ss == NULL)
138 break; /* NOTE BREAK OUT */
139 }
140 cp++;
141 ss->lastseen = cp;
142 css = ss;
143 }
144 }
145 else
146#endif
147 {
148 while (cp < realstop)
149 {
150 co = GETCOLOR(cm, *cp);
151 ss = css->outs[co];
152 if (ss == NULL)
153 {
154 ss = miss(v, d, css, co, cp + 1, start);
155 if (ss == NULL)
156 break; /* NOTE BREAK OUT */
157 }
158 cp++;
159 ss->lastseen = cp;
160 css = ss;
161 }
162 }
163
164 if (ISERR())
165 return NULL;
166
167 /* shutdown */
168 FDEBUG(("+++ shutdown at c%d +++\n", (int) (css - d->ssets)));
169 if (cp == v->stop && stop == v->stop)
170 {
171 if (hitstopp != NULL)
172 *hitstopp = 1;
173 co = d->cnfa->eos[(v->eflags & REG_NOTEOL) ? 0 : 1];
174 FDEBUG(("color %ld\n", (long) co));
175 ss = miss(v, d, css, co, cp, start);
176 if (ISERR())
177 return NULL;
178 /* special case: match ended at eol? */
179 if (ss != NULL && (ss->flags & POSTSTATE))
180 return cp;
181 else if (ss != NULL)
182 ss->lastseen = cp; /* to be tidy */
183 }
184
185 /* find last match, if any */
186 post = d->lastpost;
187 for (ss = d->ssets, i = d->nssused; i > 0; ss++, i--)
188 if ((ss->flags & POSTSTATE) && post != ss->lastseen &&
189 (post == NULL || post < ss->lastseen))
190 post = ss->lastseen;
191 if (post != NULL) /* found one */
192 return post - 1;
193
194 return NULL;
195}
196
197/*
198 * shortest - shortest-preferred matching engine
199 *
200 * On success, returns match endpoint address. Returns NULL on no match.
201 * Internal errors also return NULL, with v->err set.
202 */
203static chr *
205 struct dfa *d,
206 chr *start, /* where the match should start */
207 chr *min, /* match must end at or after here */
208 chr *max, /* match must end at or before here */
209 chr **coldp, /* store coldstart pointer here, if non-NULL */
210 int *hitstopp) /* record whether hit v->stop, if non-NULL */
211{
212 chr *cp;
213 chr *realmin = (min == v->stop) ? min : min + 1;
214 chr *realmax = (max == v->stop) ? max : max + 1;
215 color co;
216 struct sset *css;
217 struct sset *ss;
218 struct colormap *cm = d->cm;
219
220 /* prevent "uninitialized variable" warnings */
221 if (coldp != NULL)
222 *coldp = NULL;
223 if (hitstopp != NULL)
224 *hitstopp = 0;
225
226 /* if this is a backref to a known string, just match against that */
227 if (d->backno >= 0)
228 {
229 assert((size_t) d->backno < v->nmatch);
230 if (v->pmatch[d->backno].rm_so >= 0)
231 {
232 cp = dfa_backref(v, d, start, min, max, true);
233 if (cp != NULL && coldp != NULL)
234 *coldp = start;
235 /* there is no case where we should set *hitstopp */
236 return cp;
237 }
238 }
239
240 /* fast path for matchall NFAs */
241 if (d->cnfa->flags & MATCHALL)
242 {
243 size_t nchr = min - start;
244
245 if (d->cnfa->maxmatchall != DUPINF &&
246 nchr > d->cnfa->maxmatchall)
247 return NULL;
248 if ((max - start) < d->cnfa->minmatchall)
249 return NULL;
251 min = start + d->cnfa->minmatchall;
252 if (coldp != NULL)
253 *coldp = start;
254 /* there is no case where we should set *hitstopp */
255 return min;
256 }
257
258 /* initialize */
259 css = initialize(v, d, start);
260 if (css == NULL)
261 return NULL;
262 cp = start;
263
264 /* startup */
265 FDEBUG(("--- startup ---\n"));
266 if (cp == v->start)
267 {
268 co = d->cnfa->bos[(v->eflags & REG_NOTBOL) ? 0 : 1];
269 FDEBUG(("color %ld\n", (long) co));
270 }
271 else
272 {
273 co = GETCOLOR(cm, *(cp - 1));
274 FDEBUG(("char %c, color %ld\n", (char) *(cp - 1), (long) co));
275 }
276 css = miss(v, d, css, co, cp, start);
277 if (css == NULL)
278 return NULL;
279 css->lastseen = cp;
280 ss = css;
281
282 /*
283 * This is the main text-scanning loop. It seems worth having two copies
284 * to avoid the overhead of REG_FTRACE tests here, even in REG_DEBUG
285 * builds, when you're not actively tracing.
286 */
287#ifdef REG_DEBUG
288 if (v->eflags & REG_FTRACE)
289 {
290 while (cp < realmax)
291 {
292 FDEBUG(("--- at c%d ---\n", (int) (css - d->ssets)));
293 co = GETCOLOR(cm, *cp);
294 FDEBUG(("char %c, color %ld\n", (char) *cp, (long) co));
295 ss = css->outs[co];
296 if (ss == NULL)
297 {
298 ss = miss(v, d, css, co, cp + 1, start);
299 if (ss == NULL)
300 break; /* NOTE BREAK OUT */
301 }
302 cp++;
303 ss->lastseen = cp;
304 css = ss;
305 if ((ss->flags & POSTSTATE) && cp >= realmin)
306 break; /* NOTE BREAK OUT */
307 }
308 }
309 else
310#endif
311 {
312 while (cp < realmax)
313 {
314 co = GETCOLOR(cm, *cp);
315 ss = css->outs[co];
316 if (ss == NULL)
317 {
318 ss = miss(v, d, css, co, cp + 1, start);
319 if (ss == NULL)
320 break; /* NOTE BREAK OUT */
321 }
322 cp++;
323 ss->lastseen = cp;
324 css = ss;
325 if ((ss->flags & POSTSTATE) && cp >= realmin)
326 break; /* NOTE BREAK OUT */
327 }
328 }
329
330 if (ss == NULL)
331 return NULL;
332
333 if (coldp != NULL) /* report last no-progress state set, if any */
334 *coldp = lastcold(v, d);
335
336 if ((ss->flags & POSTSTATE) && cp > min)
337 {
338 assert(cp >= realmin);
339 cp--;
340 }
341 else if (cp == v->stop && max == v->stop)
342 {
343 co = d->cnfa->eos[(v->eflags & REG_NOTEOL) ? 0 : 1];
344 FDEBUG(("color %ld\n", (long) co));
345 ss = miss(v, d, css, co, cp, start);
346 /* match might have ended at eol */
347 if ((ss == NULL || !(ss->flags & POSTSTATE)) && hitstopp != NULL)
348 *hitstopp = 1;
349 }
350
351 if (ss == NULL || !(ss->flags & POSTSTATE))
352 return NULL;
353
354 return cp;
355}
356
357/*
358 * matchuntil - incremental matching engine
359 *
360 * This is meant for use with a search-style NFA (that is, the pattern is
361 * known to act as though it had a leading .*). We determine whether a
362 * match exists starting at v->start and ending at probe. Multiple calls
363 * require only O(N) time not O(N^2) so long as the probe values are
364 * nondecreasing. *lastcss and *lastcp must be initialized to NULL before
365 * starting a series of calls.
366 *
367 * Returns 1 if a match exists, 0 if not.
368 * Internal errors also return 0, with v->err set.
369 */
370static int
372 struct dfa *d,
373 chr *probe, /* we want to know if a match ends here */
374 struct sset **lastcss, /* state storage across calls */
375 chr **lastcp) /* state storage across calls */
376{
377 chr *cp = *lastcp;
378 color co;
379 struct sset *css = *lastcss;
380 struct sset *ss;
381 struct colormap *cm = d->cm;
382
383 /* fast path for matchall NFAs */
384 if (d->cnfa->flags & MATCHALL)
385 {
386 size_t nchr = probe - v->start;
387
389 return 0;
390 /* maxmatchall will always be infinity, cf. makesearch() */
392 return 1;
393 }
394
395 /* initialize and startup, or restart, if necessary */
396 if (cp == NULL || cp > probe)
397 {
398 cp = v->start;
399 css = initialize(v, d, cp);
400 if (css == NULL)
401 return 0;
402
403 FDEBUG((">>> startup >>>\n"));
404 co = d->cnfa->bos[(v->eflags & REG_NOTBOL) ? 0 : 1];
405 FDEBUG(("color %ld\n", (long) co));
406
407 css = miss(v, d, css, co, cp, v->start);
408 if (css == NULL)
409 return 0;
410 css->lastseen = cp;
411 }
412 else if (css == NULL)
413 {
414 /* we previously found that no match is possible beyond *lastcp */
415 return 0;
416 }
417 ss = css;
418
419 /*
420 * This is the main text-scanning loop. It seems worth having two copies
421 * to avoid the overhead of REG_FTRACE tests here, even in REG_DEBUG
422 * builds, when you're not actively tracing.
423 */
424#ifdef REG_DEBUG
425 if (v->eflags & REG_FTRACE)
426 {
427 while (cp < probe)
428 {
429 FDEBUG((">>> at c%d >>>\n", (int) (css - d->ssets)));
430 co = GETCOLOR(cm, *cp);
431 FDEBUG(("char %c, color %ld\n", (char) *cp, (long) co));
432 ss = css->outs[co];
433 if (ss == NULL)
434 {
435 ss = miss(v, d, css, co, cp + 1, v->start);
436 if (ss == NULL)
437 break; /* NOTE BREAK OUT */
438 }
439 cp++;
440 ss->lastseen = cp;
441 css = ss;
442 }
443 }
444 else
445#endif
446 {
447 while (cp < probe)
448 {
449 co = GETCOLOR(cm, *cp);
450 ss = css->outs[co];
451 if (ss == NULL)
452 {
453 ss = miss(v, d, css, co, cp + 1, v->start);
454 if (ss == NULL)
455 break; /* NOTE BREAK OUT */
456 }
457 cp++;
458 ss->lastseen = cp;
459 css = ss;
460 }
461 }
462
463 *lastcss = ss;
464 *lastcp = cp;
465
466 if (ss == NULL)
467 return 0; /* impossible match, or internal error */
468
469 /* We need to process one more chr, or the EOS symbol, to check match */
470 if (cp < v->stop)
471 {
472 FDEBUG((">>> at c%d >>>\n", (int) (css - d->ssets)));
473 co = GETCOLOR(cm, *cp);
474 FDEBUG(("char %c, color %ld\n", (char) *cp, (long) co));
475 ss = css->outs[co];
476 if (ss == NULL)
477 ss = miss(v, d, css, co, cp + 1, v->start);
478 }
479 else
480 {
481 assert(cp == v->stop);
482 co = d->cnfa->eos[(v->eflags & REG_NOTEOL) ? 0 : 1];
483 FDEBUG(("color %ld\n", (long) co));
484 ss = miss(v, d, css, co, cp, v->start);
485 }
486
487 if (ss == NULL || !(ss->flags & POSTSTATE))
488 return 0;
489
490 return 1;
491}
492
493/*
494 * dfa_backref - find best match length for a known backref string
495 *
496 * When the backref's referent is already available, we can deliver an exact
497 * answer with considerably less work than running the backref node's NFA.
498 *
499 * Return match endpoint for longest or shortest valid repeated match,
500 * or NULL if there is no valid match.
501 *
502 * Should be in sync with cbrdissect(), although that has the different task
503 * of checking a match to a predetermined section of the string.
504 */
505static chr *
507 struct dfa *d,
508 chr *start, /* where the match should start */
509 chr *min, /* match must end at or after here */
510 chr *max, /* match must end at or before here */
511 bool shortest)
512{
513 int n = d->backno;
514 int backmin = d->backmin;
515 int backmax = d->backmax;
516 size_t numreps;
517 size_t minreps;
518 size_t maxreps;
519 size_t brlen;
520 chr *brstring;
521 chr *p;
522
523 /* get the backreferenced string (caller should have checked this) */
524 if (v->pmatch[n].rm_so == -1)
525 return NULL;
526 brstring = v->start + v->pmatch[n].rm_so;
527 brlen = v->pmatch[n].rm_eo - v->pmatch[n].rm_so;
528
529 /* special-case zero-length backreference to avoid divide by zero */
530 if (brlen == 0)
531 {
532 /*
533 * matches only a zero-length string, but any number of repetitions
534 * can be considered to be present
535 */
536 if (min == start && backmin <= backmax)
537 return start;
538 return NULL;
539 }
540
541 /*
542 * convert min and max into numbers of possible repetitions of the backref
543 * string, rounding appropriately
544 */
545 if (min <= start)
546 minreps = 0;
547 else
548 minreps = (min - start - 1) / brlen + 1;
549 maxreps = (max - start) / brlen;
550
551 /* apply bounds, then see if there is any allowed match length */
552 if (minreps < backmin)
553 minreps = backmin;
554 if (backmax != DUPINF && maxreps > backmax)
555 maxreps = backmax;
556 if (maxreps < minreps)
557 return NULL;
558
559 /* quick exit if zero-repetitions match is valid and preferred */
560 if (shortest && minreps == 0)
561 return start;
562
563 /* okay, compare the actual string contents */
564 p = start;
565 numreps = 0;
566 while (numreps < maxreps)
567 {
568 if ((*v->g->compare) (brstring, p, brlen) != 0)
569 break;
570 p += brlen;
571 numreps++;
572 if (shortest && numreps >= minreps)
573 break;
574 }
575
576 if (numreps >= minreps)
577 return p;
578 return NULL;
579}
580
581/*
582 * lastcold - determine last point at which no progress had been made
583 */
584static chr * /* endpoint, or NULL */
586 struct dfa *d)
587{
588 struct sset *ss;
589 chr *nopr;
590 int i;
591
592 nopr = d->lastnopr;
593 if (nopr == NULL)
594 nopr = v->start;
595 for (ss = d->ssets, i = d->nssused; i > 0; ss++, i--)
596 if ((ss->flags & NOPROGRESS) && nopr < ss->lastseen)
597 nopr = ss->lastseen;
598 return nopr;
599}
600
601/*
602 * newdfa - set up a fresh DFA
603 *
604 * Returns NULL (and sets v->err) on failure.
605 */
606static struct dfa *
607newdfa(struct vars *v,
608 struct cnfa *cnfa,
609 struct colormap *cm,
610 struct smalldfa *sml) /* preallocated space, may be NULL */
611{
612 struct dfa *d;
613 size_t nss = cnfa->nstates * 2;
614 int wordsper = (cnfa->nstates + UBITS - 1) / UBITS;
615 bool ismalloced = false;
616
617 assert(cnfa != NULL && cnfa->nstates != 0);
618
620 {
621 assert(wordsper == 1);
622 if (sml == NULL)
623 {
624 sml = (struct smalldfa *) MALLOC(sizeof(struct smalldfa));
625 if (sml == NULL)
626 {
628 return NULL;
629 }
630 ismalloced = true;
631 }
632 d = &sml->dfa;
633 d->ssets = sml->ssets;
634 d->statesarea = sml->statesarea;
635 d->work = &d->statesarea[nss];
636 d->outsarea = sml->outsarea;
637 d->incarea = sml->incarea;
638 d->ismalloced = ismalloced;
639 d->arraysmalloced = false; /* not separately allocated, anyway */
640 }
641 else
642 {
643 /*
644 * Restrict the ranges of nstates and ncolors enough that the arrays
645 * we allocate here have no more than INT_MAX members. This protects
646 * not only the allocation calculations just below, but later indexing
647 * into these arrays.
648 */
649 if (wordsper >= INT_MAX / (nss + WORK) ||
650 cnfa->ncolors >= INT_MAX / nss)
651 {
653 return NULL;
654 }
655 d = (struct dfa *) MALLOC(sizeof(struct dfa));
656 if (d == NULL)
657 {
659 return NULL;
660 }
661 d->ssets = MALLOC_ARRAY(struct sset, nss);
662 d->statesarea = MALLOC_ARRAY(unsigned, (nss + WORK) * wordsper);
663 d->work = &d->statesarea[nss * wordsper];
664 d->outsarea = MALLOC_ARRAY(struct sset *, nss * cnfa->ncolors);
665 d->incarea = MALLOC_ARRAY(struct arcp, nss * cnfa->ncolors);
666 d->ismalloced = true;
667 d->arraysmalloced = true;
668 /* now freedfa() will behave sanely */
669 if (d->ssets == NULL || d->statesarea == NULL ||
670 d->outsarea == NULL || d->incarea == NULL)
671 {
672 freedfa(d);
674 return NULL;
675 }
676 }
677
678 d->nssets = (v->eflags & REG_SMALL) ? 7 : nss;
679 d->nssused = 0;
680 d->nstates = cnfa->nstates;
681 d->ncolors = cnfa->ncolors;
682 d->wordsper = wordsper;
683 d->cnfa = cnfa;
684 d->cm = cm;
685 d->lastpost = NULL;
686 d->lastnopr = NULL;
687 d->search = d->ssets;
688 d->backno = -1; /* may be set by caller */
689 d->backmin = d->backmax = 0;
690
691 /* initialization of sset fields is done as needed */
692
693 return d;
694}
695
696/*
697 * freedfa - free a DFA
698 */
699static void
700freedfa(struct dfa *d)
701{
702 if (d->arraysmalloced)
703 {
704 if (d->ssets != NULL)
705 FREE(d->ssets);
706 if (d->statesarea != NULL)
707 FREE(d->statesarea);
708 if (d->outsarea != NULL)
709 FREE(d->outsarea);
710 if (d->incarea != NULL)
711 FREE(d->incarea);
712 }
713
714 if (d->ismalloced)
715 FREE(d);
716}
717
718/*
719 * hash - construct a hash code for a bitvector
720 *
721 * There are probably better ways, but they're more expensive.
722 */
723static unsigned
724hash(unsigned *uv,
725 int n)
726{
727 int i;
728 unsigned h;
729
730 h = 0;
731 for (i = 0; i < n; i++)
732 h ^= uv[i];
733 return h;
734}
735
736/*
737 * initialize - hand-craft a cache entry for startup, otherwise get ready
738 */
739static struct sset *
740initialize(struct vars *v,
741 struct dfa *d,
742 chr *start)
743{
744 struct sset *ss;
745 int i;
746
747 /* is previous one still there? */
748 if (d->nssused > 0 && (d->ssets[0].flags & STARTER))
749 ss = &d->ssets[0];
750 else
751 { /* no, must (re)build it */
752 ss = getvacant(v, d, start, start);
753 if (ss == NULL)
754 return NULL;
755 for (i = 0; i < d->wordsper; i++)
756 ss->states[i] = 0;
757 BSET(ss->states, d->cnfa->pre);
758 ss->hash = HASH(ss->states, d->wordsper);
759 assert(d->cnfa->pre != d->cnfa->post);
760 ss->flags = STARTER | LOCKED | NOPROGRESS;
761 /* lastseen dealt with below */
762 }
763
764 for (i = 0; i < d->nssused; i++)
765 d->ssets[i].lastseen = NULL;
766 ss->lastseen = start; /* maybe untrue, but harmless */
767 d->lastpost = NULL;
768 d->lastnopr = NULL;
769 return ss;
770}
771
772/*
773 * miss - handle a stateset cache miss
774 *
775 * css is the current stateset, co is the color of the current input character,
776 * cp points to the character after that (which is where we may need to test
777 * LACONs). start does not affect matching behavior but is needed for pickss'
778 * heuristics about which stateset cache entry to replace.
779 *
780 * Ordinarily, returns the address of the next stateset (the one that is
781 * valid after consuming the input character). Returns NULL if no valid
782 * NFA states remain, ie we have a certain match failure.
783 * Internal errors also return NULL, with v->err set.
784 */
785static struct sset *
786miss(struct vars *v,
787 struct dfa *d,
788 struct sset *css,
789 color co,
790 chr *cp, /* next chr */
791 chr *start) /* where the attempt got started */
792{
793 struct cnfa *cnfa = d->cnfa;
794 int i;
795 unsigned h;
796 struct carc *ca;
797 struct sset *p;
798 int ispseudocolor;
799 int ispost;
800 int noprogress;
801 int gotstate;
802 int dolacons;
803 int sawlacons;
804
805 /* for convenience, we can be called even if it might not be a miss */
806 if (css->outs[co] != NULL)
807 {
808 FDEBUG(("hit\n"));
809 return css->outs[co];
810 }
811 FDEBUG(("miss\n"));
812
813 /*
814 * Checking for operation cancel in the inner text search loop seems
815 * unduly expensive. As a compromise, check during cache misses.
816 */
817 INTERRUPT(v->re);
818
819 /*
820 * What set of states would we end up in after consuming the co character?
821 * We first consider PLAIN arcs that consume the character, and then look
822 * to see what LACON arcs could be traversed after consuming it.
823 */
824 for (i = 0; i < d->wordsper; i++)
825 d->work[i] = 0; /* build new stateset bitmap in d->work */
826 ispseudocolor = d->cm->cd[co].flags & PSEUDO;
827 ispost = 0;
828 noprogress = 1;
829 gotstate = 0;
830 for (i = 0; i < d->nstates; i++)
831 if (ISBSET(css->states, i))
832 for (ca = cnfa->states[i]; ca->co != COLORLESS; ca++)
833 if (ca->co == co ||
834 (ca->co == RAINBOW && !ispseudocolor))
835 {
836 BSET(d->work, ca->to);
837 gotstate = 1;
838 if (ca->to == cnfa->post)
839 ispost = 1;
840 if (!(cnfa->stflags[ca->to] & CNFA_NOPROGRESS))
841 noprogress = 0;
842 FDEBUG(("%d -> %d\n", i, ca->to));
843 }
844 if (!gotstate)
845 return NULL; /* character cannot reach any new state */
847 sawlacons = 0;
848 /* outer loop handles transitive closure of reachable-by-LACON states */
849 while (dolacons)
850 {
851 dolacons = 0;
852 for (i = 0; i < d->nstates; i++)
853 if (ISBSET(d->work, i))
854 for (ca = cnfa->states[i]; ca->co != COLORLESS; ca++)
855 {
856 if (ca->co < cnfa->ncolors)
857 continue; /* not a LACON arc */
858 if (ISBSET(d->work, ca->to))
859 continue; /* arc would be a no-op anyway */
860 sawlacons = 1; /* this LACON affects our result */
861 if (!lacon(v, cnfa, cp, ca->co))
862 {
863 if (ISERR())
864 return NULL;
865 continue; /* LACON arc cannot be traversed */
866 }
867 if (ISERR())
868 return NULL;
869 BSET(d->work, ca->to);
870 dolacons = 1;
871 if (ca->to == cnfa->post)
872 ispost = 1;
873 if (!(cnfa->stflags[ca->to] & CNFA_NOPROGRESS))
874 noprogress = 0;
875 FDEBUG(("%d :> %d\n", i, ca->to));
876 }
877 }
878 h = HASH(d->work, d->wordsper);
879
880 /* Is this stateset already in the cache? */
881 for (p = d->ssets, i = d->nssused; i > 0; p++, i--)
882 if (HIT(h, d->work, p, d->wordsper))
883 {
884 FDEBUG(("cached c%d\n", (int) (p - d->ssets)));
885 break; /* NOTE BREAK OUT */
886 }
887 if (i == 0)
888 { /* nope, need a new cache entry */
889 p = getvacant(v, d, cp, start);
890 if (p == NULL)
891 return NULL;
892 assert(p != css);
893 for (i = 0; i < d->wordsper; i++)
894 p->states[i] = d->work[i];
895 p->hash = h;
896 p->flags = (ispost) ? POSTSTATE : 0;
897 if (noprogress)
898 p->flags |= NOPROGRESS;
899 /* lastseen to be dealt with by caller */
900 }
901
902 /*
903 * Link new stateset to old, unless a LACON affected the result, in which
904 * case we don't create the link. That forces future transitions across
905 * this same arc (same prior stateset and character color) to come through
906 * miss() again, so that we can recheck the LACON(s), which might or might
907 * not pass since context will be different.
908 */
909 if (!sawlacons)
910 {
911 FDEBUG(("c%d[%d]->c%d\n",
912 (int) (css - d->ssets), co, (int) (p - d->ssets)));
913 css->outs[co] = p;
914 css->inchain[co] = p->ins;
915 p->ins.ss = css;
916 p->ins.co = co;
917 }
918 return p;
919}
920
921/*
922 * lacon - lookaround-constraint checker for miss()
923 */
924static int /* predicate: constraint satisfied? */
925lacon(struct vars *v,
926 struct cnfa *pcnfa, /* parent cnfa */
927 chr *cp,
928 color co) /* "color" of the lookaround constraint */
929{
930 int n;
931 struct subre *sub;
932 struct dfa *d;
933 chr *end;
934 int satisfied;
935
936 /* Since this is recursive, it could be driven to stack overflow */
937 if (STACK_TOO_DEEP(v->re))
938 {
940 return 0;
941 }
942
943 n = co - pcnfa->ncolors;
944 assert(n > 0 && n < v->g->nlacons && v->g->lacons != NULL);
945 FDEBUG(("=== testing lacon %d\n", n));
946 sub = &v->g->lacons[n];
947 d = getladfa(v, n);
948 if (d == NULL)
949 return 0;
950 if (LATYPE_IS_AHEAD(sub->latype))
951 {
952 /* used to use longest() here, but shortest() could be much cheaper */
953 end = shortest(v, d, cp, cp, v->stop,
954 (chr **) NULL, (int *) NULL);
955 satisfied = LATYPE_IS_POS(sub->latype) ? (end != NULL) : (end == NULL);
956 }
957 else
958 {
959 /*
960 * To avoid doing O(N^2) work when repeatedly testing a lookbehind
961 * constraint in an N-character string, we use matchuntil() which can
962 * cache the DFA state across calls. We only need to restart if the
963 * probe point decreases, which is not common. The NFA we're using is
964 * a search NFA, so it doesn't mind scanning over stuff before the
965 * nominal match.
966 */
967 satisfied = matchuntil(v, d, cp, &v->lblastcss[n], &v->lblastcp[n]);
968 if (!LATYPE_IS_POS(sub->latype))
970 }
971 FDEBUG(("=== lacon %d satisfied %d\n", n, satisfied));
972 return satisfied;
973}
974
975/*
976 * getvacant - get a vacant state set
977 *
978 * This routine clears out the inarcs and outarcs, but does not otherwise
979 * clear the innards of the state set -- that's up to the caller.
980 */
981static struct sset *
982getvacant(struct vars *v,
983 struct dfa *d,
984 chr *cp,
985 chr *start)
986{
987 int i;
988 struct sset *ss;
989 struct sset *p;
990 struct arcp ap;
991 color co;
992
993 ss = pickss(v, d, cp, start);
994 if (ss == NULL)
995 return NULL;
996 assert(!(ss->flags & LOCKED));
997
998 /* clear out its inarcs, including self-referential ones */
999 ap = ss->ins;
1000 while ((p = ap.ss) != NULL)
1001 {
1002 co = ap.co;
1003 FDEBUG(("zapping c%d's %ld outarc\n", (int) (p - d->ssets), (long) co));
1004 p->outs[co] = NULL;
1005 ap = p->inchain[co];
1006 p->inchain[co].ss = NULL; /* paranoia */
1007 }
1008 ss->ins.ss = NULL;
1009
1010 /* take it off the inarc chains of the ssets reached by its outarcs */
1011 for (i = 0; i < d->ncolors; i++)
1012 {
1013 p = ss->outs[i];
1014 assert(p != ss); /* not self-referential */
1015 if (p == NULL)
1016 continue; /* NOTE CONTINUE */
1017 FDEBUG(("del outarc %d from c%d's in chn\n", i, (int) (p - d->ssets)));
1018 if (p->ins.ss == ss && p->ins.co == i)
1019 p->ins = ss->inchain[i];
1020 else
1021 {
1022 struct arcp lastap = {NULL, 0};
1023
1024 assert(p->ins.ss != NULL);
1025 for (ap = p->ins; ap.ss != NULL &&
1026 !(ap.ss == ss && ap.co == i);
1027 ap = ap.ss->inchain[ap.co])
1028 lastap = ap;
1029 assert(ap.ss != NULL);
1030 lastap.ss->inchain[lastap.co] = ss->inchain[i];
1031 }
1032 ss->outs[i] = NULL;
1033 ss->inchain[i].ss = NULL;
1034 }
1035
1036 /* if ss was a success state, may need to remember location */
1037 if ((ss->flags & POSTSTATE) && ss->lastseen != d->lastpost &&
1038 (d->lastpost == NULL || d->lastpost < ss->lastseen))
1039 d->lastpost = ss->lastseen;
1040
1041 /* likewise for a no-progress state */
1042 if ((ss->flags & NOPROGRESS) && ss->lastseen != d->lastnopr &&
1043 (d->lastnopr == NULL || d->lastnopr < ss->lastseen))
1044 d->lastnopr = ss->lastseen;
1045
1046 return ss;
1047}
1048
1049/*
1050 * pickss - pick the next stateset to be used
1051 */
1052static struct sset *
1053pickss(struct vars *v,
1054 struct dfa *d,
1055 chr *cp,
1056 chr *start)
1057{
1058 int i;
1059 struct sset *ss;
1060 struct sset *end;
1061 chr *ancient;
1062
1063 /* shortcut for cases where cache isn't full */
1064 if (d->nssused < d->nssets)
1065 {
1066 i = d->nssused;
1067 d->nssused++;
1068 ss = &d->ssets[i];
1069 FDEBUG(("new c%d\n", i));
1070 /* set up innards */
1071 ss->states = &d->statesarea[i * d->wordsper];
1072 ss->flags = 0;
1073 ss->ins.ss = NULL;
1074 ss->ins.co = WHITE; /* give it some value */
1075 ss->outs = &d->outsarea[i * d->ncolors];
1076 ss->inchain = &d->incarea[i * d->ncolors];
1077 for (i = 0; i < d->ncolors; i++)
1078 {
1079 ss->outs[i] = NULL;
1080 ss->inchain[i].ss = NULL;
1081 }
1082 return ss;
1083 }
1084
1085 /* look for oldest, or old enough anyway */
1086 if (cp - start > d->nssets * 2 / 3) /* oldest 33% are expendable */
1087 ancient = cp - d->nssets * 2 / 3;
1088 else
1089 ancient = start;
1090 for (ss = d->search, end = &d->ssets[d->nssets]; ss < end; ss++)
1091 if ((ss->lastseen == NULL || ss->lastseen < ancient) &&
1092 !(ss->flags & LOCKED))
1093 {
1094 d->search = ss + 1;
1095 FDEBUG(("replacing c%d\n", (int) (ss - d->ssets)));
1096 return ss;
1097 }
1098 for (ss = d->ssets, end = d->search; ss < end; ss++)
1099 if ((ss->lastseen == NULL || ss->lastseen < ancient) &&
1100 !(ss->flags & LOCKED))
1101 {
1102 d->search = ss + 1;
1103 FDEBUG(("replacing c%d\n", (int) (ss - d->ssets)));
1104 return ss;
1105 }
1106
1107 /* nobody's old enough?!? -- something's really wrong */
1108 FDEBUG(("cannot find victim to replace!\n"));
1109 ERR(REG_ASSERT);
1110 return NULL;
1111}
#define ERR
Definition _int.h:161
#define FREE(ptr)
Definition cryptohash.c:37
return str start
#define HASH(sign, val, siglen)
Definition hstore_gist.c:46
int i
Definition isn.c:77
void initialize(void)
static int fb(int x)
#define ISERR()
Definition regcomp.c:317
#define MALLOC_ARRAY(type, n)
Definition regcustom.h:55
#define INTERRUPT(re)
Definition regcustom.h:57
#define MALLOC(n)
Definition regcustom.h:52
pg_wchar chr
Definition regcustom.h:62
#define assert(x)
Definition regcustom.h:59
static void freedfa(struct dfa *d)
Definition rege_dfa.c:700
static chr * shortest(struct vars *v, struct dfa *d, chr *start, chr *min, chr *max, chr **coldp, int *hitstopp)
Definition rege_dfa.c:204
static chr * dfa_backref(struct vars *v, struct dfa *d, chr *start, chr *min, chr *max, bool shortest)
Definition rege_dfa.c:506
static int lacon(struct vars *v, struct cnfa *pcnfa, chr *cp, color co)
Definition rege_dfa.c:925
static unsigned hash(unsigned *uv, int n)
Definition rege_dfa.c:724
static chr * lastcold(struct vars *v, struct dfa *d)
Definition rege_dfa.c:585
static chr * longest(struct vars *v, struct dfa *d, chr *start, chr *stop, int *hitstopp)
Definition rege_dfa.c:42
static struct sset * getvacant(struct vars *v, struct dfa *d, chr *cp, chr *start)
Definition rege_dfa.c:982
static struct sset * miss(struct vars *v, struct dfa *d, struct sset *css, color co, chr *cp, chr *start)
Definition rege_dfa.c:786
static struct dfa * newdfa(struct vars *v, struct cnfa *cnfa, struct colormap *cm, struct smalldfa *sml)
Definition rege_dfa.c:607
static struct sset * pickss(struct vars *v, struct dfa *d, chr *cp, chr *start)
Definition rege_dfa.c:1053
static int matchuntil(struct vars *v, struct dfa *d, chr *probe, struct sset **lastcss, chr **lastcp)
Definition rege_dfa.c:371
#define REG_ASSERT
Definition regex.h:229
#define REG_FTRACE
Definition regex.h:205
#define REG_ETOOBIG
Definition regex.h:233
#define REG_SMALL
Definition regex.h:207
#define REG_NOTEOL
Definition regex.h:203
#define REG_NOTBOL
Definition regex.h:202
#define REG_ESPACE
Definition regex.h:227
#define LOCKED
Definition regexec.c:55
#define POSTSTATE
Definition regexec.c:54
static struct dfa * getladfa(struct vars *v, int n)
Definition regexec.c:402
#define NOPROGRESS
Definition regexec.c:56
#define WORK
Definition regexec.c:87
#define HIT(h, bv, ss, nw)
Definition regexec.c:50
#define FEWCOLORS
Definition regexec.c:91
#define STARTER
Definition regexec.c:53
#define PSEUDO
Definition regguts.h:194
#define RAINBOW
Definition regguts.h:167
#define STACK_TOO_DEEP(re)
Definition regguts.h:536
#define GETCOLOR(cm, c)
Definition regguts.h:265
short color
Definition regguts.h:163
#define CNFA_NOPROGRESS
Definition regguts.h:428
#define UBITS
Definition regguts.h:138
#define FDEBUG(arglist)
Definition regguts.h:129
#define COLORLESS
Definition regguts.h:166
#define DUPINF
Definition regguts.h:107
#define WHITE
Definition regguts.h:168
#define BSET(uv, sn)
Definition regguts.h:139
#define LATYPE_IS_AHEAD(la)
Definition regguts.h:117
#define ISBSET(uv, sn)
Definition regguts.h:140
#define LATYPE_IS_POS(la)
Definition regguts.h:116
#define HASLACONS
Definition regguts.h:419
#define MATCHALL
Definition regguts.h:420
Definition regexec.c:40
struct sset * ss
Definition regexec.c:41
color co
Definition regexec.c:42
int pre
Definition regguts.h:423
color eos[2]
Definition regguts.h:426
struct carc ** states
Definition regguts.h:429
int ncolors
Definition regguts.h:417
int maxmatchall
Definition regguts.h:434
int flags
Definition regguts.h:418
int post
Definition regguts.h:424
int minmatchall
Definition regguts.h:433
color bos[2]
Definition regguts.h:425
int nstates
Definition regguts.h:416
char * stflags
Definition regguts.h:427
int flags
Definition regguts.h:192
struct vars * v
Definition regguts.h:240
size_t max
Definition regguts.h:242
struct colordesc * cd
Definition regguts.h:244
Definition regexec.c:64
int nstates
Definition regexec.c:67
bool arraysmalloced
Definition regexec.c:84
chr * lastpost
Definition regexec.c:77
chr * lastnopr
Definition regexec.c:78
int wordsper
Definition regexec.c:69
unsigned * work
Definition regexec.c:72
unsigned * statesarea
Definition regexec.c:71
struct arcp * incarea
Definition regexec.c:74
struct sset * search
Definition regexec.c:79
int ncolors
Definition regexec.c:68
short backmin
Definition regexec.c:81
struct sset * ssets
Definition regexec.c:70
struct cnfa * cnfa
Definition regexec.c:75
int backno
Definition regexec.c:80
bool ismalloced
Definition regexec.c:83
struct colormap * cm
Definition regexec.c:76
short backmax
Definition regexec.c:82
struct sset ** outsarea
Definition regexec.c:73
int nssused
Definition regexec.c:66
int nssets
Definition regexec.c:65
struct subre * lacons
Definition regguts.h:555
Definition regexec.c:46
struct arcp ins
Definition regexec.c:57
unsigned hash
Definition regexec.c:48
struct arcp * inchain
Definition regexec.c:60
chr * lastseen
Definition regexec.c:58
unsigned * states
Definition regexec.c:47
struct sset ** outs
Definition regexec.c:59
int flags
Definition regexec.c:52
char latype
Definition regguts.h:510
size_t nmatch
Definition regexec.c:111
const chr * stop
Definition regcomp.c:285
struct sset ** lblastcss
Definition regexec.c:120
struct guts * g
Definition regexec.c:109
chr ** lblastcp
Definition regexec.c:121
regex_t * re
Definition regcomp.c:283
int eflags
Definition regexec.c:110
chr * start
Definition regexec.c:114
regmatch_t * pmatch
Definition regexec.c:112