engine.c revision 1.10 1 1.9 christos /* $NetBSD: engine.c,v 1.10 1998/12/08 14:00:24 drochner Exp $ */
2 1.5 cgd
3 1.4 cgd /*-
4 1.4 cgd * Copyright (c) 1992, 1993, 1994 Henry Spencer.
5 1.4 cgd * Copyright (c) 1992, 1993, 1994
6 1.4 cgd * The Regents of the University of California. All rights reserved.
7 1.4 cgd *
8 1.4 cgd * This code is derived from software contributed to Berkeley by
9 1.4 cgd * Henry Spencer.
10 1.4 cgd *
11 1.4 cgd * Redistribution and use in source and binary forms, with or without
12 1.4 cgd * modification, are permitted provided that the following conditions
13 1.4 cgd * are met:
14 1.4 cgd * 1. Redistributions of source code must retain the above copyright
15 1.4 cgd * notice, this list of conditions and the following disclaimer.
16 1.4 cgd * 2. Redistributions in binary form must reproduce the above copyright
17 1.4 cgd * notice, this list of conditions and the following disclaimer in the
18 1.4 cgd * documentation and/or other materials provided with the distribution.
19 1.4 cgd * 3. All advertising materials mentioning features or use of this software
20 1.4 cgd * must display the following acknowledgement:
21 1.4 cgd * This product includes software developed by the University of
22 1.4 cgd * California, Berkeley and its contributors.
23 1.4 cgd * 4. Neither the name of the University nor the names of its contributors
24 1.4 cgd * may be used to endorse or promote products derived from this software
25 1.4 cgd * without specific prior written permission.
26 1.4 cgd *
27 1.4 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 1.4 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 1.4 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 1.4 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 1.4 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 1.4 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 1.4 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 1.4 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 1.4 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 1.4 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 1.4 cgd * SUCH DAMAGE.
38 1.4 cgd *
39 1.4 cgd * @(#)engine.c 8.5 (Berkeley) 3/20/94
40 1.4 cgd */
41 1.4 cgd
42 1.1 jtc /*
43 1.1 jtc * The matching engine and friends. This file is #included by regexec.c
44 1.1 jtc * after suitable #defines of a variety of macros used herein, so that
45 1.1 jtc * different state representations can be used without duplicating masses
46 1.1 jtc * of code.
47 1.1 jtc */
48 1.1 jtc
49 1.1 jtc #ifdef SNAMES
50 1.1 jtc #define matcher smatcher
51 1.1 jtc #define fast sfast
52 1.1 jtc #define slow sslow
53 1.1 jtc #define dissect sdissect
54 1.1 jtc #define backref sbackref
55 1.1 jtc #define step sstep
56 1.1 jtc #define print sprint
57 1.1 jtc #define at sat
58 1.1 jtc #define match smat
59 1.1 jtc #endif
60 1.1 jtc #ifdef LNAMES
61 1.1 jtc #define matcher lmatcher
62 1.1 jtc #define fast lfast
63 1.1 jtc #define slow lslow
64 1.1 jtc #define dissect ldissect
65 1.1 jtc #define backref lbackref
66 1.1 jtc #define step lstep
67 1.1 jtc #define print lprint
68 1.1 jtc #define at lat
69 1.1 jtc #define match lmat
70 1.1 jtc #endif
71 1.1 jtc
72 1.1 jtc /* another structure passed up and down to avoid zillions of parameters */
73 1.1 jtc struct match {
74 1.1 jtc struct re_guts *g;
75 1.1 jtc int eflags;
76 1.1 jtc regmatch_t *pmatch; /* [nsub+1] (0 element unused) */
77 1.1 jtc char *offp; /* offsets work from here */
78 1.1 jtc char *beginp; /* start of string -- virtual NUL precedes */
79 1.1 jtc char *endp; /* end of string -- virtual NUL here */
80 1.1 jtc char *coldp; /* can be no match starting before here */
81 1.1 jtc char **lastpos; /* [nplus+1] */
82 1.1 jtc STATEVARS;
83 1.1 jtc states st; /* current states */
84 1.1 jtc states fresh; /* states for a fresh start */
85 1.1 jtc states tmp; /* temporary */
86 1.1 jtc states empty; /* empty set of states */
87 1.1 jtc };
88 1.1 jtc
89 1.4 cgd /* ========= begin header generated by ./mkh ========= */
90 1.4 cgd #ifdef __cplusplus
91 1.4 cgd extern "C" {
92 1.4 cgd #endif
93 1.4 cgd
94 1.4 cgd /* === engine.c === */
95 1.4 cgd static int matcher __P((struct re_guts *g, char *string, size_t nmatch, regmatch_t pmatch[], int eflags));
96 1.4 cgd static char *dissect __P((struct match *m, char *start, char *stop, sopno startst, sopno stopst));
97 1.4 cgd static char *backref __P((struct match *m, char *start, char *stop, sopno startst, sopno stopst, sopno lev));
98 1.4 cgd static char *fast __P((struct match *m, char *start, char *stop, sopno startst, sopno stopst));
99 1.4 cgd static char *slow __P((struct match *m, char *start, char *stop, sopno startst, sopno stopst));
100 1.4 cgd static states step __P((struct re_guts *g, sopno start, sopno stop, states bef, int ch, states aft));
101 1.4 cgd #define BOL (OUT+1)
102 1.4 cgd #define EOL (BOL+1)
103 1.4 cgd #define BOLEOL (BOL+2)
104 1.4 cgd #define NOTHING (BOL+3)
105 1.4 cgd #define BOW (BOL+4)
106 1.4 cgd #define EOW (BOL+5)
107 1.4 cgd #define CODEMAX (BOL+5) /* highest code used */
108 1.4 cgd #define NONCHAR(c) ((c) > CHAR_MAX)
109 1.4 cgd #define NNONCHAR (CODEMAX-CHAR_MAX)
110 1.4 cgd #ifdef REDEBUG
111 1.4 cgd static void print __P((struct match *m, char *caption, states st, int ch, FILE *d));
112 1.4 cgd #endif
113 1.4 cgd #ifdef REDEBUG
114 1.4 cgd static void at __P((struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst));
115 1.4 cgd #endif
116 1.4 cgd #ifdef REDEBUG
117 1.4 cgd static char *pchar __P((int ch));
118 1.4 cgd #endif
119 1.4 cgd
120 1.4 cgd #ifdef __cplusplus
121 1.4 cgd }
122 1.4 cgd #endif
123 1.4 cgd /* ========= end header generated by ./mkh ========= */
124 1.1 jtc
125 1.1 jtc #ifdef REDEBUG
126 1.1 jtc #define SP(t, s, c) print(m, t, s, c, stdout)
127 1.1 jtc #define AT(t, p1, p2, s1, s2) at(m, t, p1, p2, s1, s2)
128 1.1 jtc #define NOTE(str) { if (m->eflags®_TRACE) printf("=%s\n", (str)); }
129 1.1 jtc #else
130 1.1 jtc #define SP(t, s, c) /* nothing */
131 1.1 jtc #define AT(t, p1, p2, s1, s2) /* nothing */
132 1.1 jtc #define NOTE(s) /* nothing */
133 1.1 jtc #endif
134 1.1 jtc
135 1.1 jtc /*
136 1.1 jtc - matcher - the actual matching engine
137 1.8 perry == static int matcher(struct re_guts *g, char *string, \
138 1.1 jtc == size_t nmatch, regmatch_t pmatch[], int eflags);
139 1.1 jtc */
140 1.1 jtc static int /* 0 success, REG_NOMATCH failure */
141 1.1 jtc matcher(g, string, nmatch, pmatch, eflags)
142 1.8 perry struct re_guts *g;
143 1.1 jtc char *string;
144 1.1 jtc size_t nmatch;
145 1.1 jtc regmatch_t pmatch[];
146 1.1 jtc int eflags;
147 1.1 jtc {
148 1.8 perry char *endp;
149 1.8 perry int i;
150 1.1 jtc struct match mv;
151 1.8 perry struct match *m = &mv;
152 1.8 perry char *dp;
153 1.8 perry const sopno gf = g->firststate+1; /* +1 for OEND */
154 1.8 perry const sopno gl = g->laststate;
155 1.1 jtc char *start;
156 1.1 jtc char *stop;
157 1.1 jtc
158 1.1 jtc /* simplify the situation where possible */
159 1.1 jtc if (g->cflags®_NOSUB)
160 1.1 jtc nmatch = 0;
161 1.1 jtc if (eflags®_STARTEND) {
162 1.10 drochner start = string + pmatch[0].rm_so;
163 1.10 drochner stop = string + pmatch[0].rm_eo;
164 1.1 jtc } else {
165 1.1 jtc start = string;
166 1.1 jtc stop = start + strlen(start);
167 1.1 jtc }
168 1.1 jtc if (stop < start)
169 1.1 jtc return(REG_INVARG);
170 1.1 jtc
171 1.1 jtc /* prescreening; this does wonders for this rather slow code */
172 1.1 jtc if (g->must != NULL) {
173 1.1 jtc for (dp = start; dp < stop; dp++)
174 1.1 jtc if (*dp == g->must[0] && stop - dp >= g->mlen &&
175 1.1 jtc memcmp(dp, g->must, (size_t)g->mlen) == 0)
176 1.1 jtc break;
177 1.1 jtc if (dp == stop) /* we didn't find g->must */
178 1.1 jtc return(REG_NOMATCH);
179 1.1 jtc }
180 1.1 jtc
181 1.1 jtc /* match struct setup */
182 1.1 jtc m->g = g;
183 1.1 jtc m->eflags = eflags;
184 1.1 jtc m->pmatch = NULL;
185 1.1 jtc m->lastpos = NULL;
186 1.1 jtc m->offp = string;
187 1.1 jtc m->beginp = start;
188 1.1 jtc m->endp = stop;
189 1.1 jtc STATESETUP(m, 4);
190 1.1 jtc SETUP(m->st);
191 1.1 jtc SETUP(m->fresh);
192 1.1 jtc SETUP(m->tmp);
193 1.1 jtc SETUP(m->empty);
194 1.1 jtc CLEAR(m->empty);
195 1.1 jtc
196 1.1 jtc /* this loop does only one repetition except for backrefs */
197 1.1 jtc for (;;) {
198 1.1 jtc endp = fast(m, start, stop, gf, gl);
199 1.1 jtc if (endp == NULL) { /* a miss */
200 1.1 jtc STATETEARDOWN(m);
201 1.1 jtc return(REG_NOMATCH);
202 1.1 jtc }
203 1.1 jtc if (nmatch == 0 && !g->backrefs)
204 1.1 jtc break; /* no further info needed */
205 1.1 jtc
206 1.1 jtc /* where? */
207 1.1 jtc assert(m->coldp != NULL);
208 1.1 jtc for (;;) {
209 1.1 jtc NOTE("finding start");
210 1.1 jtc endp = slow(m, m->coldp, stop, gf, gl);
211 1.1 jtc if (endp != NULL)
212 1.1 jtc break;
213 1.1 jtc assert(m->coldp < m->endp);
214 1.1 jtc m->coldp++;
215 1.1 jtc }
216 1.1 jtc if (nmatch == 1 && !g->backrefs)
217 1.1 jtc break; /* no further info needed */
218 1.1 jtc
219 1.1 jtc /* oh my, he wants the subexpressions... */
220 1.1 jtc if (m->pmatch == NULL)
221 1.1 jtc m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
222 1.1 jtc sizeof(regmatch_t));
223 1.1 jtc if (m->pmatch == NULL) {
224 1.1 jtc STATETEARDOWN(m);
225 1.1 jtc return(REG_ESPACE);
226 1.1 jtc }
227 1.1 jtc for (i = 1; i <= m->g->nsub; i++)
228 1.10 drochner m->pmatch[i].rm_so = m->pmatch[i].rm_eo = (regoff_t)-1;
229 1.1 jtc if (!g->backrefs && !(m->eflags®_BACKR)) {
230 1.1 jtc NOTE("dissecting");
231 1.1 jtc dp = dissect(m, m->coldp, endp, gf, gl);
232 1.1 jtc } else {
233 1.1 jtc if (g->nplus > 0 && m->lastpos == NULL)
234 1.1 jtc m->lastpos = (char **)malloc((g->nplus+1) *
235 1.1 jtc sizeof(char *));
236 1.1 jtc if (g->nplus > 0 && m->lastpos == NULL) {
237 1.1 jtc free(m->pmatch);
238 1.1 jtc STATETEARDOWN(m);
239 1.1 jtc return(REG_ESPACE);
240 1.1 jtc }
241 1.1 jtc NOTE("backref dissect");
242 1.1 jtc dp = backref(m, m->coldp, endp, gf, gl, (sopno)0);
243 1.1 jtc }
244 1.1 jtc if (dp != NULL)
245 1.1 jtc break;
246 1.1 jtc
247 1.1 jtc /* uh-oh... we couldn't find a subexpression-level match */
248 1.1 jtc assert(g->backrefs); /* must be back references doing it */
249 1.1 jtc assert(g->nplus == 0 || m->lastpos != NULL);
250 1.1 jtc for (;;) {
251 1.1 jtc if (dp != NULL || endp <= m->coldp)
252 1.1 jtc break; /* defeat */
253 1.1 jtc NOTE("backoff");
254 1.1 jtc endp = slow(m, m->coldp, endp-1, gf, gl);
255 1.1 jtc if (endp == NULL)
256 1.1 jtc break; /* defeat */
257 1.1 jtc /* try it on a shorter possibility */
258 1.1 jtc #ifndef NDEBUG
259 1.1 jtc for (i = 1; i <= m->g->nsub; i++) {
260 1.10 drochner assert(m->pmatch[i].rm_so == (regoff_t)-1);
261 1.10 drochner assert(m->pmatch[i].rm_eo == (regoff_t)-1);
262 1.1 jtc }
263 1.1 jtc #endif
264 1.1 jtc NOTE("backoff dissect");
265 1.1 jtc dp = backref(m, m->coldp, endp, gf, gl, (sopno)0);
266 1.1 jtc }
267 1.1 jtc assert(dp == NULL || dp == endp);
268 1.1 jtc if (dp != NULL) /* found a shorter one */
269 1.1 jtc break;
270 1.1 jtc
271 1.1 jtc /* despite initial appearances, there is no match here */
272 1.1 jtc NOTE("false alarm");
273 1.1 jtc start = m->coldp + 1; /* recycle starting later */
274 1.1 jtc assert(start <= stop);
275 1.1 jtc }
276 1.1 jtc
277 1.1 jtc /* fill in the details if requested */
278 1.1 jtc if (nmatch > 0) {
279 1.1 jtc pmatch[0].rm_so = m->coldp - m->offp;
280 1.1 jtc pmatch[0].rm_eo = endp - m->offp;
281 1.1 jtc }
282 1.1 jtc if (nmatch > 1) {
283 1.1 jtc assert(m->pmatch != NULL);
284 1.1 jtc for (i = 1; i < nmatch; i++)
285 1.1 jtc if (i <= m->g->nsub)
286 1.1 jtc pmatch[i] = m->pmatch[i];
287 1.1 jtc else {
288 1.10 drochner pmatch[i].rm_so = (regoff_t)-1;
289 1.10 drochner pmatch[i].rm_eo = (regoff_t)-1;
290 1.1 jtc }
291 1.1 jtc }
292 1.1 jtc
293 1.1 jtc if (m->pmatch != NULL)
294 1.9 christos free(m->pmatch);
295 1.1 jtc if (m->lastpos != NULL)
296 1.9 christos free(m->lastpos);
297 1.1 jtc STATETEARDOWN(m);
298 1.1 jtc return(0);
299 1.1 jtc }
300 1.1 jtc
301 1.1 jtc /*
302 1.1 jtc - dissect - figure out what matched what, no back references
303 1.8 perry == static char *dissect(struct match *m, char *start, \
304 1.1 jtc == char *stop, sopno startst, sopno stopst);
305 1.1 jtc */
306 1.1 jtc static char * /* == stop (success) always */
307 1.1 jtc dissect(m, start, stop, startst, stopst)
308 1.8 perry struct match *m;
309 1.1 jtc char *start;
310 1.1 jtc char *stop;
311 1.1 jtc sopno startst;
312 1.1 jtc sopno stopst;
313 1.1 jtc {
314 1.8 perry int i;
315 1.8 perry sopno ss; /* start sop of current subRE */
316 1.8 perry sopno es; /* end sop of current subRE */
317 1.8 perry char *sp; /* start of string matched by it */
318 1.8 perry char *stp; /* string matched by it cannot pass here */
319 1.8 perry char *rest; /* start of rest of string */
320 1.8 perry char *tail; /* string unmatched by rest of RE */
321 1.8 perry sopno ssub; /* start sop of subsubRE */
322 1.8 perry sopno esub; /* end sop of subsubRE */
323 1.8 perry char *ssp; /* start of string matched by subsubRE */
324 1.8 perry char *sep; /* end of string matched by subsubRE */
325 1.8 perry char *oldssp; /* previous ssp */
326 1.9 christos #ifndef NDEBUG
327 1.8 perry char *dp;
328 1.9 christos #endif
329 1.1 jtc
330 1.1 jtc AT("diss", start, stop, startst, stopst);
331 1.1 jtc sp = start;
332 1.1 jtc for (ss = startst; ss < stopst; ss = es) {
333 1.1 jtc /* identify end of subRE */
334 1.1 jtc es = ss;
335 1.1 jtc switch (OP(m->g->strip[es])) {
336 1.1 jtc case OPLUS_:
337 1.1 jtc case OQUEST_:
338 1.1 jtc es += OPND(m->g->strip[es]);
339 1.1 jtc break;
340 1.1 jtc case OCH_:
341 1.1 jtc while (OP(m->g->strip[es]) != O_CH)
342 1.1 jtc es += OPND(m->g->strip[es]);
343 1.1 jtc break;
344 1.1 jtc }
345 1.1 jtc es++;
346 1.1 jtc
347 1.1 jtc /* figure out what it matched */
348 1.1 jtc switch (OP(m->g->strip[ss])) {
349 1.1 jtc case OEND:
350 1.1 jtc assert(nope);
351 1.1 jtc break;
352 1.1 jtc case OCHAR:
353 1.1 jtc sp++;
354 1.1 jtc break;
355 1.1 jtc case OBOL:
356 1.1 jtc case OEOL:
357 1.1 jtc case OBOW:
358 1.1 jtc case OEOW:
359 1.1 jtc break;
360 1.1 jtc case OANY:
361 1.1 jtc case OANYOF:
362 1.1 jtc sp++;
363 1.1 jtc break;
364 1.1 jtc case OBACK_:
365 1.1 jtc case O_BACK:
366 1.1 jtc assert(nope);
367 1.1 jtc break;
368 1.1 jtc /* cases where length of match is hard to find */
369 1.1 jtc case OQUEST_:
370 1.1 jtc stp = stop;
371 1.1 jtc for (;;) {
372 1.1 jtc /* how long could this one be? */
373 1.1 jtc rest = slow(m, sp, stp, ss, es);
374 1.1 jtc assert(rest != NULL); /* it did match */
375 1.1 jtc /* could the rest match the rest? */
376 1.1 jtc tail = slow(m, rest, stop, es, stopst);
377 1.1 jtc if (tail == stop)
378 1.1 jtc break; /* yes! */
379 1.1 jtc /* no -- try a shorter match for this one */
380 1.1 jtc stp = rest - 1;
381 1.1 jtc assert(stp >= sp); /* it did work */
382 1.1 jtc }
383 1.1 jtc ssub = ss + 1;
384 1.1 jtc esub = es - 1;
385 1.1 jtc /* did innards match? */
386 1.1 jtc if (slow(m, sp, rest, ssub, esub) != NULL) {
387 1.9 christos #ifdef NDEBUG
388 1.9 christos (void)
389 1.9 christos #else
390 1.9 christos dp =
391 1.9 christos #endif
392 1.9 christos dissect(m, sp, rest, ssub, esub);
393 1.1 jtc assert(dp == rest);
394 1.1 jtc } else /* no */
395 1.1 jtc assert(sp == rest);
396 1.1 jtc sp = rest;
397 1.1 jtc break;
398 1.1 jtc case OPLUS_:
399 1.1 jtc stp = stop;
400 1.1 jtc for (;;) {
401 1.1 jtc /* how long could this one be? */
402 1.1 jtc rest = slow(m, sp, stp, ss, es);
403 1.1 jtc assert(rest != NULL); /* it did match */
404 1.1 jtc /* could the rest match the rest? */
405 1.1 jtc tail = slow(m, rest, stop, es, stopst);
406 1.1 jtc if (tail == stop)
407 1.1 jtc break; /* yes! */
408 1.1 jtc /* no -- try a shorter match for this one */
409 1.1 jtc stp = rest - 1;
410 1.1 jtc assert(stp >= sp); /* it did work */
411 1.1 jtc }
412 1.1 jtc ssub = ss + 1;
413 1.1 jtc esub = es - 1;
414 1.1 jtc ssp = sp;
415 1.1 jtc oldssp = ssp;
416 1.1 jtc for (;;) { /* find last match of innards */
417 1.1 jtc sep = slow(m, ssp, rest, ssub, esub);
418 1.1 jtc if (sep == NULL || sep == ssp)
419 1.1 jtc break; /* failed or matched null */
420 1.1 jtc oldssp = ssp; /* on to next try */
421 1.1 jtc ssp = sep;
422 1.1 jtc }
423 1.1 jtc if (sep == NULL) {
424 1.1 jtc /* last successful match */
425 1.1 jtc sep = ssp;
426 1.1 jtc ssp = oldssp;
427 1.1 jtc }
428 1.1 jtc assert(sep == rest); /* must exhaust substring */
429 1.1 jtc assert(slow(m, ssp, sep, ssub, esub) == rest);
430 1.9 christos #ifdef NDEBUG
431 1.9 christos (void)
432 1.9 christos #else
433 1.9 christos dp =
434 1.9 christos #endif
435 1.9 christos dissect(m, ssp, sep, ssub, esub);
436 1.1 jtc assert(dp == sep);
437 1.1 jtc sp = rest;
438 1.1 jtc break;
439 1.1 jtc case OCH_:
440 1.1 jtc stp = stop;
441 1.1 jtc for (;;) {
442 1.1 jtc /* how long could this one be? */
443 1.1 jtc rest = slow(m, sp, stp, ss, es);
444 1.1 jtc assert(rest != NULL); /* it did match */
445 1.1 jtc /* could the rest match the rest? */
446 1.1 jtc tail = slow(m, rest, stop, es, stopst);
447 1.1 jtc if (tail == stop)
448 1.1 jtc break; /* yes! */
449 1.1 jtc /* no -- try a shorter match for this one */
450 1.1 jtc stp = rest - 1;
451 1.1 jtc assert(stp >= sp); /* it did work */
452 1.1 jtc }
453 1.1 jtc ssub = ss + 1;
454 1.1 jtc esub = ss + OPND(m->g->strip[ss]) - 1;
455 1.1 jtc assert(OP(m->g->strip[esub]) == OOR1);
456 1.1 jtc for (;;) { /* find first matching branch */
457 1.1 jtc if (slow(m, sp, rest, ssub, esub) == rest)
458 1.1 jtc break; /* it matched all of it */
459 1.1 jtc /* that one missed, try next one */
460 1.1 jtc assert(OP(m->g->strip[esub]) == OOR1);
461 1.1 jtc esub++;
462 1.1 jtc assert(OP(m->g->strip[esub]) == OOR2);
463 1.1 jtc ssub = esub + 1;
464 1.1 jtc esub += OPND(m->g->strip[esub]);
465 1.1 jtc if (OP(m->g->strip[esub]) == OOR2)
466 1.1 jtc esub--;
467 1.1 jtc else
468 1.1 jtc assert(OP(m->g->strip[esub]) == O_CH);
469 1.1 jtc }
470 1.9 christos #ifdef NDEBUG
471 1.9 christos (void)
472 1.9 christos #else
473 1.9 christos dp =
474 1.9 christos #endif
475 1.9 christos dissect(m, sp, rest, ssub, esub);
476 1.1 jtc assert(dp == rest);
477 1.1 jtc sp = rest;
478 1.1 jtc break;
479 1.1 jtc case O_PLUS:
480 1.1 jtc case O_QUEST:
481 1.1 jtc case OOR1:
482 1.1 jtc case OOR2:
483 1.1 jtc case O_CH:
484 1.1 jtc assert(nope);
485 1.1 jtc break;
486 1.1 jtc case OLPAREN:
487 1.1 jtc i = OPND(m->g->strip[ss]);
488 1.2 jtc assert(0 < i && i <= m->g->nsub);
489 1.1 jtc m->pmatch[i].rm_so = sp - m->offp;
490 1.1 jtc break;
491 1.1 jtc case ORPAREN:
492 1.1 jtc i = OPND(m->g->strip[ss]);
493 1.2 jtc assert(0 < i && i <= m->g->nsub);
494 1.1 jtc m->pmatch[i].rm_eo = sp - m->offp;
495 1.1 jtc break;
496 1.1 jtc default: /* uh oh */
497 1.1 jtc assert(nope);
498 1.1 jtc break;
499 1.1 jtc }
500 1.1 jtc }
501 1.1 jtc
502 1.1 jtc assert(sp == stop);
503 1.1 jtc return(sp);
504 1.1 jtc }
505 1.1 jtc
506 1.1 jtc /*
507 1.1 jtc - backref - figure out what matched what, figuring in back references
508 1.8 perry == static char *backref(struct match *m, char *start, \
509 1.1 jtc == char *stop, sopno startst, sopno stopst, sopno lev);
510 1.1 jtc */
511 1.1 jtc static char * /* == stop (success) or NULL (failure) */
512 1.1 jtc backref(m, start, stop, startst, stopst, lev)
513 1.8 perry struct match *m;
514 1.1 jtc char *start;
515 1.1 jtc char *stop;
516 1.1 jtc sopno startst;
517 1.1 jtc sopno stopst;
518 1.1 jtc sopno lev; /* PLUS nesting level */
519 1.1 jtc {
520 1.8 perry int i;
521 1.8 perry sopno ss; /* start sop of current subRE */
522 1.8 perry char *sp; /* start of string matched by it */
523 1.8 perry sopno ssub; /* start sop of subsubRE */
524 1.8 perry sopno esub; /* end sop of subsubRE */
525 1.8 perry char *ssp; /* start of string matched by subsubRE */
526 1.8 perry char *dp;
527 1.8 perry size_t len;
528 1.8 perry int hard;
529 1.8 perry sop s;
530 1.8 perry regoff_t offsave;
531 1.8 perry cset *cs;
532 1.1 jtc
533 1.1 jtc AT("back", start, stop, startst, stopst);
534 1.1 jtc sp = start;
535 1.1 jtc
536 1.1 jtc /* get as far as we can with easy stuff */
537 1.1 jtc hard = 0;
538 1.1 jtc for (ss = startst; !hard && ss < stopst; ss++)
539 1.1 jtc switch (OP(s = m->g->strip[ss])) {
540 1.1 jtc case OCHAR:
541 1.1 jtc if (sp == stop || *sp++ != (char)OPND(s))
542 1.1 jtc return(NULL);
543 1.1 jtc break;
544 1.1 jtc case OANY:
545 1.1 jtc if (sp == stop)
546 1.1 jtc return(NULL);
547 1.1 jtc sp++;
548 1.1 jtc break;
549 1.1 jtc case OANYOF:
550 1.1 jtc cs = &m->g->sets[OPND(s)];
551 1.1 jtc if (sp == stop || !CHIN(cs, *sp++))
552 1.1 jtc return(NULL);
553 1.1 jtc break;
554 1.1 jtc case OBOL:
555 1.1 jtc if ( (sp == m->beginp && !(m->eflags®_NOTBOL)) ||
556 1.1 jtc (sp < m->endp && *(sp-1) == '\n' &&
557 1.1 jtc (m->g->cflags®_NEWLINE)) )
558 1.1 jtc { /* yes */ }
559 1.1 jtc else
560 1.1 jtc return(NULL);
561 1.1 jtc break;
562 1.1 jtc case OEOL:
563 1.1 jtc if ( (sp == m->endp && !(m->eflags®_NOTEOL)) ||
564 1.1 jtc (sp < m->endp && *sp == '\n' &&
565 1.1 jtc (m->g->cflags®_NEWLINE)) )
566 1.1 jtc { /* yes */ }
567 1.1 jtc else
568 1.1 jtc return(NULL);
569 1.1 jtc break;
570 1.1 jtc case OBOW:
571 1.1 jtc if (( (sp == m->beginp && !(m->eflags®_NOTBOL)) ||
572 1.1 jtc (sp < m->endp && *(sp-1) == '\n' &&
573 1.1 jtc (m->g->cflags®_NEWLINE)) ||
574 1.1 jtc (sp > m->beginp &&
575 1.3 jtc !ISWORD(*(sp-1))) ) &&
576 1.3 jtc (sp < m->endp && ISWORD(*sp)) )
577 1.1 jtc { /* yes */ }
578 1.1 jtc else
579 1.1 jtc return(NULL);
580 1.1 jtc break;
581 1.1 jtc case OEOW:
582 1.1 jtc if (( (sp == m->endp && !(m->eflags®_NOTEOL)) ||
583 1.1 jtc (sp < m->endp && *sp == '\n' &&
584 1.1 jtc (m->g->cflags®_NEWLINE)) ||
585 1.3 jtc (sp < m->endp && !ISWORD(*sp)) ) &&
586 1.3 jtc (sp > m->beginp && ISWORD(*(sp-1))) )
587 1.1 jtc { /* yes */ }
588 1.1 jtc else
589 1.1 jtc return(NULL);
590 1.1 jtc break;
591 1.1 jtc case O_QUEST:
592 1.1 jtc break;
593 1.1 jtc case OOR1: /* matches null but needs to skip */
594 1.1 jtc ss++;
595 1.1 jtc s = m->g->strip[ss];
596 1.1 jtc do {
597 1.1 jtc assert(OP(s) == OOR2);
598 1.1 jtc ss += OPND(s);
599 1.1 jtc } while (OP(s = m->g->strip[ss]) != O_CH);
600 1.1 jtc /* note that the ss++ gets us past the O_CH */
601 1.1 jtc break;
602 1.1 jtc default: /* have to make a choice */
603 1.1 jtc hard = 1;
604 1.1 jtc break;
605 1.1 jtc }
606 1.1 jtc if (!hard) { /* that was it! */
607 1.1 jtc if (sp != stop)
608 1.1 jtc return(NULL);
609 1.1 jtc return(sp);
610 1.1 jtc }
611 1.1 jtc ss--; /* adjust for the for's final increment */
612 1.1 jtc
613 1.1 jtc /* the hard stuff */
614 1.1 jtc AT("hard", sp, stop, ss, stopst);
615 1.1 jtc s = m->g->strip[ss];
616 1.1 jtc switch (OP(s)) {
617 1.1 jtc case OBACK_: /* the vilest depths */
618 1.1 jtc i = OPND(s);
619 1.2 jtc assert(0 < i && i <= m->g->nsub);
620 1.10 drochner if (m->pmatch[i].rm_eo == (regoff_t)-1)
621 1.1 jtc return(NULL);
622 1.10 drochner assert(m->pmatch[i].rm_so != (regoff_t)-1);
623 1.10 drochner len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
624 1.1 jtc assert(stop - m->beginp >= len);
625 1.1 jtc if (sp > stop - len)
626 1.1 jtc return(NULL); /* not enough left to match */
627 1.10 drochner ssp = m->offp + m->pmatch[i].rm_so;
628 1.1 jtc if (memcmp(sp, ssp, len) != 0)
629 1.1 jtc return(NULL);
630 1.1 jtc while (m->g->strip[ss] != SOP(O_BACK, i))
631 1.1 jtc ss++;
632 1.1 jtc return(backref(m, sp+len, stop, ss+1, stopst, lev));
633 1.9 christos
634 1.1 jtc case OQUEST_: /* to null or not */
635 1.1 jtc dp = backref(m, sp, stop, ss+1, stopst, lev);
636 1.1 jtc if (dp != NULL)
637 1.1 jtc return(dp); /* not */
638 1.1 jtc return(backref(m, sp, stop, ss+OPND(s)+1, stopst, lev));
639 1.9 christos
640 1.1 jtc case OPLUS_:
641 1.1 jtc assert(m->lastpos != NULL);
642 1.1 jtc assert(lev+1 <= m->g->nplus);
643 1.1 jtc m->lastpos[lev+1] = sp;
644 1.1 jtc return(backref(m, sp, stop, ss+1, stopst, lev+1));
645 1.9 christos
646 1.1 jtc case O_PLUS:
647 1.1 jtc if (sp == m->lastpos[lev]) /* last pass matched null */
648 1.1 jtc return(backref(m, sp, stop, ss+1, stopst, lev-1));
649 1.1 jtc /* try another pass */
650 1.1 jtc m->lastpos[lev] = sp;
651 1.1 jtc dp = backref(m, sp, stop, ss-OPND(s)+1, stopst, lev);
652 1.1 jtc if (dp == NULL)
653 1.9 christos dp = backref(m, sp, stop, ss+1, stopst, lev-1);
654 1.9 christos return(dp);
655 1.9 christos
656 1.1 jtc case OCH_: /* find the right one, if any */
657 1.1 jtc ssub = ss + 1;
658 1.1 jtc esub = ss + OPND(s) - 1;
659 1.1 jtc assert(OP(m->g->strip[esub]) == OOR1);
660 1.1 jtc for (;;) { /* find first matching branch */
661 1.1 jtc dp = backref(m, sp, stop, ssub, esub, lev);
662 1.1 jtc if (dp != NULL)
663 1.1 jtc return(dp);
664 1.1 jtc /* that one missed, try next one */
665 1.1 jtc if (OP(m->g->strip[esub]) == O_CH)
666 1.1 jtc return(NULL); /* there is none */
667 1.1 jtc esub++;
668 1.1 jtc assert(OP(m->g->strip[esub]) == OOR2);
669 1.1 jtc ssub = esub + 1;
670 1.1 jtc esub += OPND(m->g->strip[esub]);
671 1.1 jtc if (OP(m->g->strip[esub]) == OOR2)
672 1.1 jtc esub--;
673 1.1 jtc else
674 1.1 jtc assert(OP(m->g->strip[esub]) == O_CH);
675 1.1 jtc }
676 1.9 christos
677 1.1 jtc case OLPAREN: /* must undo assignment if rest fails */
678 1.1 jtc i = OPND(s);
679 1.2 jtc assert(0 < i && i <= m->g->nsub);
680 1.1 jtc offsave = m->pmatch[i].rm_so;
681 1.1 jtc m->pmatch[i].rm_so = sp - m->offp;
682 1.1 jtc dp = backref(m, sp, stop, ss+1, stopst, lev);
683 1.1 jtc if (dp != NULL)
684 1.1 jtc return(dp);
685 1.1 jtc m->pmatch[i].rm_so = offsave;
686 1.1 jtc return(NULL);
687 1.9 christos
688 1.1 jtc case ORPAREN: /* must undo assignment if rest fails */
689 1.1 jtc i = OPND(s);
690 1.2 jtc assert(0 < i && i <= m->g->nsub);
691 1.1 jtc offsave = m->pmatch[i].rm_eo;
692 1.1 jtc m->pmatch[i].rm_eo = sp - m->offp;
693 1.1 jtc dp = backref(m, sp, stop, ss+1, stopst, lev);
694 1.1 jtc if (dp != NULL)
695 1.1 jtc return(dp);
696 1.1 jtc m->pmatch[i].rm_eo = offsave;
697 1.1 jtc return(NULL);
698 1.9 christos
699 1.1 jtc default: /* uh oh */
700 1.1 jtc assert(nope);
701 1.1 jtc break;
702 1.1 jtc }
703 1.1 jtc
704 1.1 jtc /* "can't happen" */
705 1.1 jtc assert(nope);
706 1.1 jtc /* NOTREACHED */
707 1.7 christos return NULL;
708 1.1 jtc }
709 1.1 jtc
710 1.1 jtc /*
711 1.1 jtc - fast - step through the string at top speed
712 1.8 perry == static char *fast(struct match *m, char *start, \
713 1.1 jtc == char *stop, sopno startst, sopno stopst);
714 1.1 jtc */
715 1.1 jtc static char * /* where tentative match ended, or NULL */
716 1.1 jtc fast(m, start, stop, startst, stopst)
717 1.8 perry struct match *m;
718 1.1 jtc char *start;
719 1.1 jtc char *stop;
720 1.1 jtc sopno startst;
721 1.1 jtc sopno stopst;
722 1.1 jtc {
723 1.8 perry states st = m->st;
724 1.8 perry states fresh = m->fresh;
725 1.8 perry states tmp = m->tmp;
726 1.8 perry char *p = start;
727 1.8 perry int c = (start == m->beginp) ? OUT : *(start-1);
728 1.8 perry int lastc; /* previous c */
729 1.8 perry int flagch;
730 1.8 perry int i;
731 1.8 perry char *coldp; /* last p after which no match was underway */
732 1.1 jtc
733 1.1 jtc CLEAR(st);
734 1.1 jtc SET1(st, startst);
735 1.1 jtc st = step(m->g, startst, stopst, st, NOTHING, st);
736 1.1 jtc ASSIGN(fresh, st);
737 1.1 jtc SP("start", st, *p);
738 1.1 jtc coldp = NULL;
739 1.1 jtc for (;;) {
740 1.1 jtc /* next character */
741 1.1 jtc lastc = c;
742 1.1 jtc c = (p == m->endp) ? OUT : *p;
743 1.1 jtc if (EQ(st, fresh))
744 1.1 jtc coldp = p;
745 1.1 jtc
746 1.1 jtc /* is there an EOL and/or BOL between lastc and c? */
747 1.1 jtc flagch = '\0';
748 1.1 jtc i = 0;
749 1.1 jtc if ( (lastc == '\n' && m->g->cflags®_NEWLINE) ||
750 1.1 jtc (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
751 1.1 jtc flagch = BOL;
752 1.1 jtc i = m->g->nbol;
753 1.1 jtc }
754 1.1 jtc if ( (c == '\n' && m->g->cflags®_NEWLINE) ||
755 1.1 jtc (c == OUT && !(m->eflags®_NOTEOL)) ) {
756 1.1 jtc flagch = (flagch == BOL) ? BOLEOL : EOL;
757 1.1 jtc i += m->g->neol;
758 1.1 jtc }
759 1.1 jtc if (i != 0) {
760 1.1 jtc for (; i > 0; i--)
761 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
762 1.1 jtc SP("boleol", st, c);
763 1.1 jtc }
764 1.1 jtc
765 1.1 jtc /* how about a word boundary? */
766 1.3 jtc if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
767 1.3 jtc (c != OUT && ISWORD(c)) ) {
768 1.1 jtc flagch = BOW;
769 1.1 jtc }
770 1.3 jtc if ( (lastc != OUT && ISWORD(lastc)) &&
771 1.3 jtc (flagch == EOL || (c != OUT && !ISWORD(c))) ) {
772 1.1 jtc flagch = EOW;
773 1.1 jtc }
774 1.1 jtc if (flagch == BOW || flagch == EOW) {
775 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
776 1.1 jtc SP("boweow", st, c);
777 1.1 jtc }
778 1.1 jtc
779 1.1 jtc /* are we done? */
780 1.1 jtc if (ISSET(st, stopst) || p == stop)
781 1.1 jtc break; /* NOTE BREAK OUT */
782 1.1 jtc
783 1.1 jtc /* no, we must deal with this character */
784 1.1 jtc ASSIGN(tmp, st);
785 1.1 jtc ASSIGN(st, fresh);
786 1.1 jtc assert(c != OUT);
787 1.1 jtc st = step(m->g, startst, stopst, tmp, c, st);
788 1.1 jtc SP("aft", st, c);
789 1.1 jtc assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
790 1.1 jtc p++;
791 1.1 jtc }
792 1.1 jtc
793 1.1 jtc assert(coldp != NULL);
794 1.1 jtc m->coldp = coldp;
795 1.1 jtc if (ISSET(st, stopst))
796 1.1 jtc return(p+1);
797 1.1 jtc else
798 1.1 jtc return(NULL);
799 1.1 jtc }
800 1.1 jtc
801 1.1 jtc /*
802 1.1 jtc - slow - step through the string more deliberately
803 1.8 perry == static char *slow(struct match *m, char *start, \
804 1.1 jtc == char *stop, sopno startst, sopno stopst);
805 1.1 jtc */
806 1.1 jtc static char * /* where it ended */
807 1.1 jtc slow(m, start, stop, startst, stopst)
808 1.8 perry struct match *m;
809 1.1 jtc char *start;
810 1.1 jtc char *stop;
811 1.1 jtc sopno startst;
812 1.1 jtc sopno stopst;
813 1.1 jtc {
814 1.8 perry states st = m->st;
815 1.8 perry states empty = m->empty;
816 1.8 perry states tmp = m->tmp;
817 1.8 perry char *p = start;
818 1.8 perry int c = (start == m->beginp) ? OUT : *(start-1);
819 1.8 perry int lastc; /* previous c */
820 1.8 perry int flagch;
821 1.8 perry int i;
822 1.8 perry char *matchp; /* last p at which a match ended */
823 1.1 jtc
824 1.1 jtc AT("slow", start, stop, startst, stopst);
825 1.1 jtc CLEAR(st);
826 1.1 jtc SET1(st, startst);
827 1.1 jtc SP("sstart", st, *p);
828 1.1 jtc st = step(m->g, startst, stopst, st, NOTHING, st);
829 1.1 jtc matchp = NULL;
830 1.1 jtc for (;;) {
831 1.1 jtc /* next character */
832 1.1 jtc lastc = c;
833 1.1 jtc c = (p == m->endp) ? OUT : *p;
834 1.1 jtc
835 1.1 jtc /* is there an EOL and/or BOL between lastc and c? */
836 1.1 jtc flagch = '\0';
837 1.1 jtc i = 0;
838 1.1 jtc if ( (lastc == '\n' && m->g->cflags®_NEWLINE) ||
839 1.1 jtc (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
840 1.1 jtc flagch = BOL;
841 1.1 jtc i = m->g->nbol;
842 1.1 jtc }
843 1.1 jtc if ( (c == '\n' && m->g->cflags®_NEWLINE) ||
844 1.1 jtc (c == OUT && !(m->eflags®_NOTEOL)) ) {
845 1.1 jtc flagch = (flagch == BOL) ? BOLEOL : EOL;
846 1.1 jtc i += m->g->neol;
847 1.1 jtc }
848 1.1 jtc if (i != 0) {
849 1.1 jtc for (; i > 0; i--)
850 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
851 1.1 jtc SP("sboleol", st, c);
852 1.1 jtc }
853 1.1 jtc
854 1.1 jtc /* how about a word boundary? */
855 1.3 jtc if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
856 1.3 jtc (c != OUT && ISWORD(c)) ) {
857 1.1 jtc flagch = BOW;
858 1.1 jtc }
859 1.3 jtc if ( (lastc != OUT && ISWORD(lastc)) &&
860 1.3 jtc (flagch == EOL || (c != OUT && !ISWORD(c))) ) {
861 1.1 jtc flagch = EOW;
862 1.1 jtc }
863 1.1 jtc if (flagch == BOW || flagch == EOW) {
864 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
865 1.1 jtc SP("sboweow", st, c);
866 1.1 jtc }
867 1.1 jtc
868 1.1 jtc /* are we done? */
869 1.1 jtc if (ISSET(st, stopst))
870 1.1 jtc matchp = p;
871 1.1 jtc if (EQ(st, empty) || p == stop)
872 1.1 jtc break; /* NOTE BREAK OUT */
873 1.1 jtc
874 1.1 jtc /* no, we must deal with this character */
875 1.1 jtc ASSIGN(tmp, st);
876 1.1 jtc ASSIGN(st, empty);
877 1.1 jtc assert(c != OUT);
878 1.1 jtc st = step(m->g, startst, stopst, tmp, c, st);
879 1.1 jtc SP("saft", st, c);
880 1.1 jtc assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
881 1.1 jtc p++;
882 1.1 jtc }
883 1.1 jtc
884 1.1 jtc return(matchp);
885 1.1 jtc }
886 1.1 jtc
887 1.1 jtc
888 1.1 jtc /*
889 1.1 jtc - step - map set of states reachable before char to set reachable after
890 1.8 perry == static states step(struct re_guts *g, sopno start, sopno stop, \
891 1.8 perry == states bef, int ch, states aft);
892 1.1 jtc == #define BOL (OUT+1)
893 1.1 jtc == #define EOL (BOL+1)
894 1.1 jtc == #define BOLEOL (BOL+2)
895 1.1 jtc == #define NOTHING (BOL+3)
896 1.1 jtc == #define BOW (BOL+4)
897 1.1 jtc == #define EOW (BOL+5)
898 1.1 jtc == #define CODEMAX (BOL+5) // highest code used
899 1.1 jtc == #define NONCHAR(c) ((c) > CHAR_MAX)
900 1.1 jtc == #define NNONCHAR (CODEMAX-CHAR_MAX)
901 1.1 jtc */
902 1.1 jtc static states
903 1.1 jtc step(g, start, stop, bef, ch, aft)
904 1.8 perry struct re_guts *g;
905 1.3 jtc sopno start; /* start state within strip */
906 1.3 jtc sopno stop; /* state after stop state within strip */
907 1.8 perry states bef; /* states reachable before */
908 1.1 jtc int ch; /* character or NONCHAR code */
909 1.8 perry states aft; /* states already known reachable after */
910 1.1 jtc {
911 1.8 perry cset *cs;
912 1.8 perry sop s;
913 1.8 perry sopno pc;
914 1.8 perry onestate here; /* note, macros know this name */
915 1.8 perry sopno look;
916 1.8 perry int i;
917 1.1 jtc
918 1.1 jtc for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
919 1.1 jtc s = g->strip[pc];
920 1.1 jtc switch (OP(s)) {
921 1.1 jtc case OEND:
922 1.1 jtc assert(pc == stop-1);
923 1.1 jtc break;
924 1.1 jtc case OCHAR:
925 1.1 jtc /* only characters can match */
926 1.1 jtc assert(!NONCHAR(ch) || ch != (char)OPND(s));
927 1.1 jtc if (ch == (char)OPND(s))
928 1.1 jtc FWD(aft, bef, 1);
929 1.1 jtc break;
930 1.1 jtc case OBOL:
931 1.1 jtc if (ch == BOL || ch == BOLEOL)
932 1.1 jtc FWD(aft, bef, 1);
933 1.1 jtc break;
934 1.1 jtc case OEOL:
935 1.1 jtc if (ch == EOL || ch == BOLEOL)
936 1.1 jtc FWD(aft, bef, 1);
937 1.1 jtc break;
938 1.1 jtc case OBOW:
939 1.1 jtc if (ch == BOW)
940 1.1 jtc FWD(aft, bef, 1);
941 1.1 jtc break;
942 1.1 jtc case OEOW:
943 1.1 jtc if (ch == EOW)
944 1.1 jtc FWD(aft, bef, 1);
945 1.1 jtc break;
946 1.1 jtc case OANY:
947 1.1 jtc if (!NONCHAR(ch))
948 1.1 jtc FWD(aft, bef, 1);
949 1.1 jtc break;
950 1.1 jtc case OANYOF:
951 1.1 jtc cs = &g->sets[OPND(s)];
952 1.1 jtc if (!NONCHAR(ch) && CHIN(cs, ch))
953 1.1 jtc FWD(aft, bef, 1);
954 1.1 jtc break;
955 1.1 jtc case OBACK_: /* ignored here */
956 1.1 jtc case O_BACK:
957 1.1 jtc FWD(aft, aft, 1);
958 1.1 jtc break;
959 1.1 jtc case OPLUS_: /* forward, this is just an empty */
960 1.1 jtc FWD(aft, aft, 1);
961 1.1 jtc break;
962 1.1 jtc case O_PLUS: /* both forward and back */
963 1.1 jtc FWD(aft, aft, 1);
964 1.1 jtc i = ISSETBACK(aft, OPND(s));
965 1.1 jtc BACK(aft, aft, OPND(s));
966 1.1 jtc if (!i && ISSETBACK(aft, OPND(s))) {
967 1.1 jtc /* oho, must reconsider loop body */
968 1.1 jtc pc -= OPND(s) + 1;
969 1.1 jtc INIT(here, pc);
970 1.1 jtc }
971 1.1 jtc break;
972 1.1 jtc case OQUEST_: /* two branches, both forward */
973 1.1 jtc FWD(aft, aft, 1);
974 1.1 jtc FWD(aft, aft, OPND(s));
975 1.1 jtc break;
976 1.1 jtc case O_QUEST: /* just an empty */
977 1.1 jtc FWD(aft, aft, 1);
978 1.1 jtc break;
979 1.1 jtc case OLPAREN: /* not significant here */
980 1.1 jtc case ORPAREN:
981 1.1 jtc FWD(aft, aft, 1);
982 1.1 jtc break;
983 1.1 jtc case OCH_: /* mark the first two branches */
984 1.1 jtc FWD(aft, aft, 1);
985 1.1 jtc assert(OP(g->strip[pc+OPND(s)]) == OOR2);
986 1.1 jtc FWD(aft, aft, OPND(s));
987 1.1 jtc break;
988 1.1 jtc case OOR1: /* done a branch, find the O_CH */
989 1.1 jtc if (ISSTATEIN(aft, here)) {
990 1.1 jtc for (look = 1;
991 1.1 jtc OP(s = g->strip[pc+look]) != O_CH;
992 1.1 jtc look += OPND(s))
993 1.1 jtc assert(OP(s) == OOR2);
994 1.1 jtc FWD(aft, aft, look);
995 1.1 jtc }
996 1.1 jtc break;
997 1.1 jtc case OOR2: /* propagate OCH_'s marking */
998 1.1 jtc FWD(aft, aft, 1);
999 1.1 jtc if (OP(g->strip[pc+OPND(s)]) != O_CH) {
1000 1.1 jtc assert(OP(g->strip[pc+OPND(s)]) == OOR2);
1001 1.1 jtc FWD(aft, aft, OPND(s));
1002 1.1 jtc }
1003 1.1 jtc break;
1004 1.1 jtc case O_CH: /* just empty */
1005 1.1 jtc FWD(aft, aft, 1);
1006 1.1 jtc break;
1007 1.1 jtc default: /* ooooops... */
1008 1.1 jtc assert(nope);
1009 1.1 jtc break;
1010 1.1 jtc }
1011 1.1 jtc }
1012 1.1 jtc
1013 1.1 jtc return(aft);
1014 1.1 jtc }
1015 1.1 jtc
1016 1.1 jtc #ifdef REDEBUG
1017 1.1 jtc /*
1018 1.1 jtc - print - print a set of states
1019 1.1 jtc == #ifdef REDEBUG
1020 1.1 jtc == static void print(struct match *m, char *caption, states st, \
1021 1.1 jtc == int ch, FILE *d);
1022 1.1 jtc == #endif
1023 1.1 jtc */
1024 1.1 jtc static void
1025 1.1 jtc print(m, caption, st, ch, d)
1026 1.1 jtc struct match *m;
1027 1.1 jtc char *caption;
1028 1.1 jtc states st;
1029 1.1 jtc int ch;
1030 1.1 jtc FILE *d;
1031 1.1 jtc {
1032 1.8 perry struct re_guts *g = m->g;
1033 1.8 perry int i;
1034 1.8 perry int first = 1;
1035 1.1 jtc
1036 1.1 jtc if (!(m->eflags®_TRACE))
1037 1.1 jtc return;
1038 1.1 jtc
1039 1.1 jtc fprintf(d, "%s", caption);
1040 1.1 jtc if (ch != '\0')
1041 1.1 jtc fprintf(d, " %s", pchar(ch));
1042 1.1 jtc for (i = 0; i < g->nstates; i++)
1043 1.1 jtc if (ISSET(st, i)) {
1044 1.1 jtc fprintf(d, "%s%d", (first) ? "\t" : ", ", i);
1045 1.1 jtc first = 0;
1046 1.1 jtc }
1047 1.1 jtc fprintf(d, "\n");
1048 1.1 jtc }
1049 1.1 jtc
1050 1.1 jtc /*
1051 1.1 jtc - at - print current situation
1052 1.1 jtc == #ifdef REDEBUG
1053 1.1 jtc == static void at(struct match *m, char *title, char *start, char *stop, \
1054 1.1 jtc == sopno startst, sopno stopst);
1055 1.1 jtc == #endif
1056 1.1 jtc */
1057 1.1 jtc static void
1058 1.1 jtc at(m, title, start, stop, startst, stopst)
1059 1.1 jtc struct match *m;
1060 1.1 jtc char *title;
1061 1.1 jtc char *start;
1062 1.1 jtc char *stop;
1063 1.1 jtc sopno startst;
1064 1.1 jtc sopno stopst;
1065 1.1 jtc {
1066 1.1 jtc if (!(m->eflags®_TRACE))
1067 1.1 jtc return;
1068 1.1 jtc
1069 1.1 jtc printf("%s %s-", title, pchar(*start));
1070 1.1 jtc printf("%s ", pchar(*stop));
1071 1.1 jtc printf("%ld-%ld\n", (long)startst, (long)stopst);
1072 1.1 jtc }
1073 1.1 jtc
1074 1.1 jtc #ifndef PCHARDONE
1075 1.1 jtc #define PCHARDONE /* never again */
1076 1.1 jtc /*
1077 1.1 jtc - pchar - make a character printable
1078 1.1 jtc == #ifdef REDEBUG
1079 1.1 jtc == static char *pchar(int ch);
1080 1.1 jtc == #endif
1081 1.1 jtc *
1082 1.1 jtc * Is this identical to regchar() over in debug.c? Well, yes. But a
1083 1.1 jtc * duplicate here avoids having a debugging-capable regexec.o tied to
1084 1.1 jtc * a matching debug.o, and this is convenient. It all disappears in
1085 1.1 jtc * the non-debug compilation anyway, so it doesn't matter much.
1086 1.1 jtc */
1087 1.1 jtc static char * /* -> representation */
1088 1.1 jtc pchar(ch)
1089 1.1 jtc int ch;
1090 1.1 jtc {
1091 1.1 jtc static char pbuf[10];
1092 1.1 jtc
1093 1.1 jtc if (isprint(ch) || ch == ' ')
1094 1.6 mrg (void)snprintf(pbuf, sizeof pbuf, "%c", ch);
1095 1.1 jtc else
1096 1.6 mrg (void)snprintf(pbuf, sizeof pbuf, "\\%o", ch);
1097 1.1 jtc return(pbuf);
1098 1.1 jtc }
1099 1.1 jtc #endif
1100 1.1 jtc #endif
1101 1.1 jtc
1102 1.1 jtc #undef matcher
1103 1.1 jtc #undef fast
1104 1.1 jtc #undef slow
1105 1.1 jtc #undef dissect
1106 1.1 jtc #undef backref
1107 1.1 jtc #undef step
1108 1.1 jtc #undef print
1109 1.1 jtc #undef at
1110 1.1 jtc #undef match
1111