engine.c revision 1.5 1 1.5 cgd /* $NetBSD: engine.c,v 1.5 1995/02/27 13:28:39 cgd 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.1 jtc == static int matcher(register 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.1 jtc register 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.1 jtc register char *endp;
149 1.1 jtc register int i;
150 1.1 jtc struct match mv;
151 1.1 jtc register struct match *m = &mv;
152 1.1 jtc register char *dp;
153 1.1 jtc const register sopno gf = g->firststate+1; /* +1 for OEND */
154 1.1 jtc const register 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.1 jtc start = string + pmatch[0].rm_so;
163 1.1 jtc 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.1 jtc m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -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.1 jtc assert(m->pmatch[i].rm_so == -1);
261 1.1 jtc assert(m->pmatch[i].rm_eo == -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.1 jtc pmatch[i].rm_so = -1;
289 1.1 jtc pmatch[i].rm_eo = -1;
290 1.1 jtc }
291 1.1 jtc }
292 1.1 jtc
293 1.1 jtc if (m->pmatch != NULL)
294 1.1 jtc free((char *)m->pmatch);
295 1.1 jtc if (m->lastpos != NULL)
296 1.1 jtc free((char *)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.1 jtc == static char *dissect(register 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.1 jtc register 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.1 jtc register int i;
315 1.1 jtc register sopno ss; /* start sop of current subRE */
316 1.1 jtc register sopno es; /* end sop of current subRE */
317 1.1 jtc register char *sp; /* start of string matched by it */
318 1.1 jtc register char *stp; /* string matched by it cannot pass here */
319 1.1 jtc register char *rest; /* start of rest of string */
320 1.1 jtc register char *tail; /* string unmatched by rest of RE */
321 1.1 jtc register sopno ssub; /* start sop of subsubRE */
322 1.1 jtc register sopno esub; /* end sop of subsubRE */
323 1.1 jtc register char *ssp; /* start of string matched by subsubRE */
324 1.1 jtc register char *sep; /* end of string matched by subsubRE */
325 1.1 jtc register char *oldssp; /* previous ssp */
326 1.1 jtc register char *dp;
327 1.1 jtc
328 1.1 jtc AT("diss", start, stop, startst, stopst);
329 1.1 jtc sp = start;
330 1.1 jtc for (ss = startst; ss < stopst; ss = es) {
331 1.1 jtc /* identify end of subRE */
332 1.1 jtc es = ss;
333 1.1 jtc switch (OP(m->g->strip[es])) {
334 1.1 jtc case OPLUS_:
335 1.1 jtc case OQUEST_:
336 1.1 jtc es += OPND(m->g->strip[es]);
337 1.1 jtc break;
338 1.1 jtc case OCH_:
339 1.1 jtc while (OP(m->g->strip[es]) != O_CH)
340 1.1 jtc es += OPND(m->g->strip[es]);
341 1.1 jtc break;
342 1.1 jtc }
343 1.1 jtc es++;
344 1.1 jtc
345 1.1 jtc /* figure out what it matched */
346 1.1 jtc switch (OP(m->g->strip[ss])) {
347 1.1 jtc case OEND:
348 1.1 jtc assert(nope);
349 1.1 jtc break;
350 1.1 jtc case OCHAR:
351 1.1 jtc sp++;
352 1.1 jtc break;
353 1.1 jtc case OBOL:
354 1.1 jtc case OEOL:
355 1.1 jtc case OBOW:
356 1.1 jtc case OEOW:
357 1.1 jtc break;
358 1.1 jtc case OANY:
359 1.1 jtc case OANYOF:
360 1.1 jtc sp++;
361 1.1 jtc break;
362 1.1 jtc case OBACK_:
363 1.1 jtc case O_BACK:
364 1.1 jtc assert(nope);
365 1.1 jtc break;
366 1.1 jtc /* cases where length of match is hard to find */
367 1.1 jtc case OQUEST_:
368 1.1 jtc stp = stop;
369 1.1 jtc for (;;) {
370 1.1 jtc /* how long could this one be? */
371 1.1 jtc rest = slow(m, sp, stp, ss, es);
372 1.1 jtc assert(rest != NULL); /* it did match */
373 1.1 jtc /* could the rest match the rest? */
374 1.1 jtc tail = slow(m, rest, stop, es, stopst);
375 1.1 jtc if (tail == stop)
376 1.1 jtc break; /* yes! */
377 1.1 jtc /* no -- try a shorter match for this one */
378 1.1 jtc stp = rest - 1;
379 1.1 jtc assert(stp >= sp); /* it did work */
380 1.1 jtc }
381 1.1 jtc ssub = ss + 1;
382 1.1 jtc esub = es - 1;
383 1.1 jtc /* did innards match? */
384 1.1 jtc if (slow(m, sp, rest, ssub, esub) != NULL) {
385 1.1 jtc dp = dissect(m, sp, rest, ssub, esub);
386 1.1 jtc assert(dp == rest);
387 1.1 jtc } else /* no */
388 1.1 jtc assert(sp == rest);
389 1.1 jtc sp = rest;
390 1.1 jtc break;
391 1.1 jtc case OPLUS_:
392 1.1 jtc stp = stop;
393 1.1 jtc for (;;) {
394 1.1 jtc /* how long could this one be? */
395 1.1 jtc rest = slow(m, sp, stp, ss, es);
396 1.1 jtc assert(rest != NULL); /* it did match */
397 1.1 jtc /* could the rest match the rest? */
398 1.1 jtc tail = slow(m, rest, stop, es, stopst);
399 1.1 jtc if (tail == stop)
400 1.1 jtc break; /* yes! */
401 1.1 jtc /* no -- try a shorter match for this one */
402 1.1 jtc stp = rest - 1;
403 1.1 jtc assert(stp >= sp); /* it did work */
404 1.1 jtc }
405 1.1 jtc ssub = ss + 1;
406 1.1 jtc esub = es - 1;
407 1.1 jtc ssp = sp;
408 1.1 jtc oldssp = ssp;
409 1.1 jtc for (;;) { /* find last match of innards */
410 1.1 jtc sep = slow(m, ssp, rest, ssub, esub);
411 1.1 jtc if (sep == NULL || sep == ssp)
412 1.1 jtc break; /* failed or matched null */
413 1.1 jtc oldssp = ssp; /* on to next try */
414 1.1 jtc ssp = sep;
415 1.1 jtc }
416 1.1 jtc if (sep == NULL) {
417 1.1 jtc /* last successful match */
418 1.1 jtc sep = ssp;
419 1.1 jtc ssp = oldssp;
420 1.1 jtc }
421 1.1 jtc assert(sep == rest); /* must exhaust substring */
422 1.1 jtc assert(slow(m, ssp, sep, ssub, esub) == rest);
423 1.1 jtc dp = dissect(m, ssp, sep, ssub, esub);
424 1.1 jtc assert(dp == sep);
425 1.1 jtc sp = rest;
426 1.1 jtc break;
427 1.1 jtc case OCH_:
428 1.1 jtc stp = stop;
429 1.1 jtc for (;;) {
430 1.1 jtc /* how long could this one be? */
431 1.1 jtc rest = slow(m, sp, stp, ss, es);
432 1.1 jtc assert(rest != NULL); /* it did match */
433 1.1 jtc /* could the rest match the rest? */
434 1.1 jtc tail = slow(m, rest, stop, es, stopst);
435 1.1 jtc if (tail == stop)
436 1.1 jtc break; /* yes! */
437 1.1 jtc /* no -- try a shorter match for this one */
438 1.1 jtc stp = rest - 1;
439 1.1 jtc assert(stp >= sp); /* it did work */
440 1.1 jtc }
441 1.1 jtc ssub = ss + 1;
442 1.1 jtc esub = ss + OPND(m->g->strip[ss]) - 1;
443 1.1 jtc assert(OP(m->g->strip[esub]) == OOR1);
444 1.1 jtc for (;;) { /* find first matching branch */
445 1.1 jtc if (slow(m, sp, rest, ssub, esub) == rest)
446 1.1 jtc break; /* it matched all of it */
447 1.1 jtc /* that one missed, try next one */
448 1.1 jtc assert(OP(m->g->strip[esub]) == OOR1);
449 1.1 jtc esub++;
450 1.1 jtc assert(OP(m->g->strip[esub]) == OOR2);
451 1.1 jtc ssub = esub + 1;
452 1.1 jtc esub += OPND(m->g->strip[esub]);
453 1.1 jtc if (OP(m->g->strip[esub]) == OOR2)
454 1.1 jtc esub--;
455 1.1 jtc else
456 1.1 jtc assert(OP(m->g->strip[esub]) == O_CH);
457 1.1 jtc }
458 1.1 jtc dp = dissect(m, sp, rest, ssub, esub);
459 1.1 jtc assert(dp == rest);
460 1.1 jtc sp = rest;
461 1.1 jtc break;
462 1.1 jtc case O_PLUS:
463 1.1 jtc case O_QUEST:
464 1.1 jtc case OOR1:
465 1.1 jtc case OOR2:
466 1.1 jtc case O_CH:
467 1.1 jtc assert(nope);
468 1.1 jtc break;
469 1.1 jtc case OLPAREN:
470 1.1 jtc i = OPND(m->g->strip[ss]);
471 1.2 jtc assert(0 < i && i <= m->g->nsub);
472 1.1 jtc m->pmatch[i].rm_so = sp - m->offp;
473 1.1 jtc break;
474 1.1 jtc case ORPAREN:
475 1.1 jtc i = OPND(m->g->strip[ss]);
476 1.2 jtc assert(0 < i && i <= m->g->nsub);
477 1.1 jtc m->pmatch[i].rm_eo = sp - m->offp;
478 1.1 jtc break;
479 1.1 jtc default: /* uh oh */
480 1.1 jtc assert(nope);
481 1.1 jtc break;
482 1.1 jtc }
483 1.1 jtc }
484 1.1 jtc
485 1.1 jtc assert(sp == stop);
486 1.1 jtc return(sp);
487 1.1 jtc }
488 1.1 jtc
489 1.1 jtc /*
490 1.1 jtc - backref - figure out what matched what, figuring in back references
491 1.1 jtc == static char *backref(register struct match *m, char *start, \
492 1.1 jtc == char *stop, sopno startst, sopno stopst, sopno lev);
493 1.1 jtc */
494 1.1 jtc static char * /* == stop (success) or NULL (failure) */
495 1.1 jtc backref(m, start, stop, startst, stopst, lev)
496 1.1 jtc register struct match *m;
497 1.1 jtc char *start;
498 1.1 jtc char *stop;
499 1.1 jtc sopno startst;
500 1.1 jtc sopno stopst;
501 1.1 jtc sopno lev; /* PLUS nesting level */
502 1.1 jtc {
503 1.1 jtc register int i;
504 1.1 jtc register sopno ss; /* start sop of current subRE */
505 1.1 jtc register char *sp; /* start of string matched by it */
506 1.1 jtc register sopno ssub; /* start sop of subsubRE */
507 1.1 jtc register sopno esub; /* end sop of subsubRE */
508 1.1 jtc register char *ssp; /* start of string matched by subsubRE */
509 1.1 jtc register char *dp;
510 1.1 jtc register size_t len;
511 1.1 jtc register int hard;
512 1.1 jtc register sop s;
513 1.1 jtc register regoff_t offsave;
514 1.1 jtc register cset *cs;
515 1.1 jtc
516 1.1 jtc AT("back", start, stop, startst, stopst);
517 1.1 jtc sp = start;
518 1.1 jtc
519 1.1 jtc /* get as far as we can with easy stuff */
520 1.1 jtc hard = 0;
521 1.1 jtc for (ss = startst; !hard && ss < stopst; ss++)
522 1.1 jtc switch (OP(s = m->g->strip[ss])) {
523 1.1 jtc case OCHAR:
524 1.1 jtc if (sp == stop || *sp++ != (char)OPND(s))
525 1.1 jtc return(NULL);
526 1.1 jtc break;
527 1.1 jtc case OANY:
528 1.1 jtc if (sp == stop)
529 1.1 jtc return(NULL);
530 1.1 jtc sp++;
531 1.1 jtc break;
532 1.1 jtc case OANYOF:
533 1.1 jtc cs = &m->g->sets[OPND(s)];
534 1.1 jtc if (sp == stop || !CHIN(cs, *sp++))
535 1.1 jtc return(NULL);
536 1.1 jtc break;
537 1.1 jtc case OBOL:
538 1.1 jtc if ( (sp == m->beginp && !(m->eflags®_NOTBOL)) ||
539 1.1 jtc (sp < m->endp && *(sp-1) == '\n' &&
540 1.1 jtc (m->g->cflags®_NEWLINE)) )
541 1.1 jtc { /* yes */ }
542 1.1 jtc else
543 1.1 jtc return(NULL);
544 1.1 jtc break;
545 1.1 jtc case OEOL:
546 1.1 jtc if ( (sp == m->endp && !(m->eflags®_NOTEOL)) ||
547 1.1 jtc (sp < m->endp && *sp == '\n' &&
548 1.1 jtc (m->g->cflags®_NEWLINE)) )
549 1.1 jtc { /* yes */ }
550 1.1 jtc else
551 1.1 jtc return(NULL);
552 1.1 jtc break;
553 1.1 jtc case OBOW:
554 1.1 jtc if (( (sp == m->beginp && !(m->eflags®_NOTBOL)) ||
555 1.1 jtc (sp < m->endp && *(sp-1) == '\n' &&
556 1.1 jtc (m->g->cflags®_NEWLINE)) ||
557 1.1 jtc (sp > m->beginp &&
558 1.3 jtc !ISWORD(*(sp-1))) ) &&
559 1.3 jtc (sp < m->endp && ISWORD(*sp)) )
560 1.1 jtc { /* yes */ }
561 1.1 jtc else
562 1.1 jtc return(NULL);
563 1.1 jtc break;
564 1.1 jtc case OEOW:
565 1.1 jtc if (( (sp == m->endp && !(m->eflags®_NOTEOL)) ||
566 1.1 jtc (sp < m->endp && *sp == '\n' &&
567 1.1 jtc (m->g->cflags®_NEWLINE)) ||
568 1.3 jtc (sp < m->endp && !ISWORD(*sp)) ) &&
569 1.3 jtc (sp > m->beginp && ISWORD(*(sp-1))) )
570 1.1 jtc { /* yes */ }
571 1.1 jtc else
572 1.1 jtc return(NULL);
573 1.1 jtc break;
574 1.1 jtc case O_QUEST:
575 1.1 jtc break;
576 1.1 jtc case OOR1: /* matches null but needs to skip */
577 1.1 jtc ss++;
578 1.1 jtc s = m->g->strip[ss];
579 1.1 jtc do {
580 1.1 jtc assert(OP(s) == OOR2);
581 1.1 jtc ss += OPND(s);
582 1.1 jtc } while (OP(s = m->g->strip[ss]) != O_CH);
583 1.1 jtc /* note that the ss++ gets us past the O_CH */
584 1.1 jtc break;
585 1.1 jtc default: /* have to make a choice */
586 1.1 jtc hard = 1;
587 1.1 jtc break;
588 1.1 jtc }
589 1.1 jtc if (!hard) { /* that was it! */
590 1.1 jtc if (sp != stop)
591 1.1 jtc return(NULL);
592 1.1 jtc return(sp);
593 1.1 jtc }
594 1.1 jtc ss--; /* adjust for the for's final increment */
595 1.1 jtc
596 1.1 jtc /* the hard stuff */
597 1.1 jtc AT("hard", sp, stop, ss, stopst);
598 1.1 jtc s = m->g->strip[ss];
599 1.1 jtc switch (OP(s)) {
600 1.1 jtc case OBACK_: /* the vilest depths */
601 1.1 jtc i = OPND(s);
602 1.2 jtc assert(0 < i && i <= m->g->nsub);
603 1.1 jtc if (m->pmatch[i].rm_eo == -1)
604 1.1 jtc return(NULL);
605 1.1 jtc assert(m->pmatch[i].rm_so != -1);
606 1.1 jtc len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
607 1.1 jtc assert(stop - m->beginp >= len);
608 1.1 jtc if (sp > stop - len)
609 1.1 jtc return(NULL); /* not enough left to match */
610 1.1 jtc ssp = m->offp + m->pmatch[i].rm_so;
611 1.1 jtc if (memcmp(sp, ssp, len) != 0)
612 1.1 jtc return(NULL);
613 1.1 jtc while (m->g->strip[ss] != SOP(O_BACK, i))
614 1.1 jtc ss++;
615 1.1 jtc return(backref(m, sp+len, stop, ss+1, stopst, lev));
616 1.1 jtc break;
617 1.1 jtc case OQUEST_: /* to null or not */
618 1.1 jtc dp = backref(m, sp, stop, ss+1, stopst, lev);
619 1.1 jtc if (dp != NULL)
620 1.1 jtc return(dp); /* not */
621 1.1 jtc return(backref(m, sp, stop, ss+OPND(s)+1, stopst, lev));
622 1.1 jtc break;
623 1.1 jtc case OPLUS_:
624 1.1 jtc assert(m->lastpos != NULL);
625 1.1 jtc assert(lev+1 <= m->g->nplus);
626 1.1 jtc m->lastpos[lev+1] = sp;
627 1.1 jtc return(backref(m, sp, stop, ss+1, stopst, lev+1));
628 1.1 jtc break;
629 1.1 jtc case O_PLUS:
630 1.1 jtc if (sp == m->lastpos[lev]) /* last pass matched null */
631 1.1 jtc return(backref(m, sp, stop, ss+1, stopst, lev-1));
632 1.1 jtc /* try another pass */
633 1.1 jtc m->lastpos[lev] = sp;
634 1.1 jtc dp = backref(m, sp, stop, ss-OPND(s)+1, stopst, lev);
635 1.1 jtc if (dp == NULL)
636 1.1 jtc return(backref(m, sp, stop, ss+1, stopst, lev-1));
637 1.1 jtc else
638 1.1 jtc return(dp);
639 1.1 jtc break;
640 1.1 jtc case OCH_: /* find the right one, if any */
641 1.1 jtc ssub = ss + 1;
642 1.1 jtc esub = ss + OPND(s) - 1;
643 1.1 jtc assert(OP(m->g->strip[esub]) == OOR1);
644 1.1 jtc for (;;) { /* find first matching branch */
645 1.1 jtc dp = backref(m, sp, stop, ssub, esub, lev);
646 1.1 jtc if (dp != NULL)
647 1.1 jtc return(dp);
648 1.1 jtc /* that one missed, try next one */
649 1.1 jtc if (OP(m->g->strip[esub]) == O_CH)
650 1.1 jtc return(NULL); /* there is none */
651 1.1 jtc esub++;
652 1.1 jtc assert(OP(m->g->strip[esub]) == OOR2);
653 1.1 jtc ssub = esub + 1;
654 1.1 jtc esub += OPND(m->g->strip[esub]);
655 1.1 jtc if (OP(m->g->strip[esub]) == OOR2)
656 1.1 jtc esub--;
657 1.1 jtc else
658 1.1 jtc assert(OP(m->g->strip[esub]) == O_CH);
659 1.1 jtc }
660 1.1 jtc break;
661 1.1 jtc case OLPAREN: /* must undo assignment if rest fails */
662 1.1 jtc i = OPND(s);
663 1.2 jtc assert(0 < i && i <= m->g->nsub);
664 1.1 jtc offsave = m->pmatch[i].rm_so;
665 1.1 jtc m->pmatch[i].rm_so = sp - m->offp;
666 1.1 jtc dp = backref(m, sp, stop, ss+1, stopst, lev);
667 1.1 jtc if (dp != NULL)
668 1.1 jtc return(dp);
669 1.1 jtc m->pmatch[i].rm_so = offsave;
670 1.1 jtc return(NULL);
671 1.1 jtc break;
672 1.1 jtc case ORPAREN: /* must undo assignment if rest fails */
673 1.1 jtc i = OPND(s);
674 1.2 jtc assert(0 < i && i <= m->g->nsub);
675 1.1 jtc offsave = m->pmatch[i].rm_eo;
676 1.1 jtc m->pmatch[i].rm_eo = sp - m->offp;
677 1.1 jtc dp = backref(m, sp, stop, ss+1, stopst, lev);
678 1.1 jtc if (dp != NULL)
679 1.1 jtc return(dp);
680 1.1 jtc m->pmatch[i].rm_eo = offsave;
681 1.1 jtc return(NULL);
682 1.1 jtc break;
683 1.1 jtc default: /* uh oh */
684 1.1 jtc assert(nope);
685 1.1 jtc break;
686 1.1 jtc }
687 1.1 jtc
688 1.1 jtc /* "can't happen" */
689 1.1 jtc assert(nope);
690 1.1 jtc /* NOTREACHED */
691 1.1 jtc }
692 1.1 jtc
693 1.1 jtc /*
694 1.1 jtc - fast - step through the string at top speed
695 1.1 jtc == static char *fast(register struct match *m, char *start, \
696 1.1 jtc == char *stop, sopno startst, sopno stopst);
697 1.1 jtc */
698 1.1 jtc static char * /* where tentative match ended, or NULL */
699 1.1 jtc fast(m, start, stop, startst, stopst)
700 1.1 jtc register struct match *m;
701 1.1 jtc char *start;
702 1.1 jtc char *stop;
703 1.1 jtc sopno startst;
704 1.1 jtc sopno stopst;
705 1.1 jtc {
706 1.1 jtc register states st = m->st;
707 1.1 jtc register states fresh = m->fresh;
708 1.1 jtc register states tmp = m->tmp;
709 1.1 jtc register char *p = start;
710 1.1 jtc register int c = (start == m->beginp) ? OUT : *(start-1);
711 1.1 jtc register int lastc; /* previous c */
712 1.1 jtc register int flagch;
713 1.1 jtc register int i;
714 1.1 jtc register char *coldp; /* last p after which no match was underway */
715 1.1 jtc
716 1.1 jtc CLEAR(st);
717 1.1 jtc SET1(st, startst);
718 1.1 jtc st = step(m->g, startst, stopst, st, NOTHING, st);
719 1.1 jtc ASSIGN(fresh, st);
720 1.1 jtc SP("start", st, *p);
721 1.1 jtc coldp = NULL;
722 1.1 jtc for (;;) {
723 1.1 jtc /* next character */
724 1.1 jtc lastc = c;
725 1.1 jtc c = (p == m->endp) ? OUT : *p;
726 1.1 jtc if (EQ(st, fresh))
727 1.1 jtc coldp = p;
728 1.1 jtc
729 1.1 jtc /* is there an EOL and/or BOL between lastc and c? */
730 1.1 jtc flagch = '\0';
731 1.1 jtc i = 0;
732 1.1 jtc if ( (lastc == '\n' && m->g->cflags®_NEWLINE) ||
733 1.1 jtc (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
734 1.1 jtc flagch = BOL;
735 1.1 jtc i = m->g->nbol;
736 1.1 jtc }
737 1.1 jtc if ( (c == '\n' && m->g->cflags®_NEWLINE) ||
738 1.1 jtc (c == OUT && !(m->eflags®_NOTEOL)) ) {
739 1.1 jtc flagch = (flagch == BOL) ? BOLEOL : EOL;
740 1.1 jtc i += m->g->neol;
741 1.1 jtc }
742 1.1 jtc if (i != 0) {
743 1.1 jtc for (; i > 0; i--)
744 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
745 1.1 jtc SP("boleol", st, c);
746 1.1 jtc }
747 1.1 jtc
748 1.1 jtc /* how about a word boundary? */
749 1.3 jtc if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
750 1.3 jtc (c != OUT && ISWORD(c)) ) {
751 1.1 jtc flagch = BOW;
752 1.1 jtc }
753 1.3 jtc if ( (lastc != OUT && ISWORD(lastc)) &&
754 1.3 jtc (flagch == EOL || (c != OUT && !ISWORD(c))) ) {
755 1.1 jtc flagch = EOW;
756 1.1 jtc }
757 1.1 jtc if (flagch == BOW || flagch == EOW) {
758 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
759 1.1 jtc SP("boweow", st, c);
760 1.1 jtc }
761 1.1 jtc
762 1.1 jtc /* are we done? */
763 1.1 jtc if (ISSET(st, stopst) || p == stop)
764 1.1 jtc break; /* NOTE BREAK OUT */
765 1.1 jtc
766 1.1 jtc /* no, we must deal with this character */
767 1.1 jtc ASSIGN(tmp, st);
768 1.1 jtc ASSIGN(st, fresh);
769 1.1 jtc assert(c != OUT);
770 1.1 jtc st = step(m->g, startst, stopst, tmp, c, st);
771 1.1 jtc SP("aft", st, c);
772 1.1 jtc assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
773 1.1 jtc p++;
774 1.1 jtc }
775 1.1 jtc
776 1.1 jtc assert(coldp != NULL);
777 1.1 jtc m->coldp = coldp;
778 1.1 jtc if (ISSET(st, stopst))
779 1.1 jtc return(p+1);
780 1.1 jtc else
781 1.1 jtc return(NULL);
782 1.1 jtc }
783 1.1 jtc
784 1.1 jtc /*
785 1.1 jtc - slow - step through the string more deliberately
786 1.1 jtc == static char *slow(register struct match *m, char *start, \
787 1.1 jtc == char *stop, sopno startst, sopno stopst);
788 1.1 jtc */
789 1.1 jtc static char * /* where it ended */
790 1.1 jtc slow(m, start, stop, startst, stopst)
791 1.1 jtc register struct match *m;
792 1.1 jtc char *start;
793 1.1 jtc char *stop;
794 1.1 jtc sopno startst;
795 1.1 jtc sopno stopst;
796 1.1 jtc {
797 1.1 jtc register states st = m->st;
798 1.1 jtc register states empty = m->empty;
799 1.1 jtc register states tmp = m->tmp;
800 1.1 jtc register char *p = start;
801 1.1 jtc register int c = (start == m->beginp) ? OUT : *(start-1);
802 1.1 jtc register int lastc; /* previous c */
803 1.1 jtc register int flagch;
804 1.1 jtc register int i;
805 1.1 jtc register char *matchp; /* last p at which a match ended */
806 1.1 jtc
807 1.1 jtc AT("slow", start, stop, startst, stopst);
808 1.1 jtc CLEAR(st);
809 1.1 jtc SET1(st, startst);
810 1.1 jtc SP("sstart", st, *p);
811 1.1 jtc st = step(m->g, startst, stopst, st, NOTHING, st);
812 1.1 jtc matchp = NULL;
813 1.1 jtc for (;;) {
814 1.1 jtc /* next character */
815 1.1 jtc lastc = c;
816 1.1 jtc c = (p == m->endp) ? OUT : *p;
817 1.1 jtc
818 1.1 jtc /* is there an EOL and/or BOL between lastc and c? */
819 1.1 jtc flagch = '\0';
820 1.1 jtc i = 0;
821 1.1 jtc if ( (lastc == '\n' && m->g->cflags®_NEWLINE) ||
822 1.1 jtc (lastc == OUT && !(m->eflags®_NOTBOL)) ) {
823 1.1 jtc flagch = BOL;
824 1.1 jtc i = m->g->nbol;
825 1.1 jtc }
826 1.1 jtc if ( (c == '\n' && m->g->cflags®_NEWLINE) ||
827 1.1 jtc (c == OUT && !(m->eflags®_NOTEOL)) ) {
828 1.1 jtc flagch = (flagch == BOL) ? BOLEOL : EOL;
829 1.1 jtc i += m->g->neol;
830 1.1 jtc }
831 1.1 jtc if (i != 0) {
832 1.1 jtc for (; i > 0; i--)
833 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
834 1.1 jtc SP("sboleol", st, c);
835 1.1 jtc }
836 1.1 jtc
837 1.1 jtc /* how about a word boundary? */
838 1.3 jtc if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
839 1.3 jtc (c != OUT && ISWORD(c)) ) {
840 1.1 jtc flagch = BOW;
841 1.1 jtc }
842 1.3 jtc if ( (lastc != OUT && ISWORD(lastc)) &&
843 1.3 jtc (flagch == EOL || (c != OUT && !ISWORD(c))) ) {
844 1.1 jtc flagch = EOW;
845 1.1 jtc }
846 1.1 jtc if (flagch == BOW || flagch == EOW) {
847 1.1 jtc st = step(m->g, startst, stopst, st, flagch, st);
848 1.1 jtc SP("sboweow", st, c);
849 1.1 jtc }
850 1.1 jtc
851 1.1 jtc /* are we done? */
852 1.1 jtc if (ISSET(st, stopst))
853 1.1 jtc matchp = p;
854 1.1 jtc if (EQ(st, empty) || p == stop)
855 1.1 jtc break; /* NOTE BREAK OUT */
856 1.1 jtc
857 1.1 jtc /* no, we must deal with this character */
858 1.1 jtc ASSIGN(tmp, st);
859 1.1 jtc ASSIGN(st, empty);
860 1.1 jtc assert(c != OUT);
861 1.1 jtc st = step(m->g, startst, stopst, tmp, c, st);
862 1.1 jtc SP("saft", st, c);
863 1.1 jtc assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
864 1.1 jtc p++;
865 1.1 jtc }
866 1.1 jtc
867 1.1 jtc return(matchp);
868 1.1 jtc }
869 1.1 jtc
870 1.1 jtc
871 1.1 jtc /*
872 1.1 jtc - step - map set of states reachable before char to set reachable after
873 1.3 jtc == static states step(register struct re_guts *g, sopno start, sopno stop, \
874 1.1 jtc == register states bef, int ch, register states aft);
875 1.1 jtc == #define BOL (OUT+1)
876 1.1 jtc == #define EOL (BOL+1)
877 1.1 jtc == #define BOLEOL (BOL+2)
878 1.1 jtc == #define NOTHING (BOL+3)
879 1.1 jtc == #define BOW (BOL+4)
880 1.1 jtc == #define EOW (BOL+5)
881 1.1 jtc == #define CODEMAX (BOL+5) // highest code used
882 1.1 jtc == #define NONCHAR(c) ((c) > CHAR_MAX)
883 1.1 jtc == #define NNONCHAR (CODEMAX-CHAR_MAX)
884 1.1 jtc */
885 1.1 jtc static states
886 1.1 jtc step(g, start, stop, bef, ch, aft)
887 1.1 jtc register struct re_guts *g;
888 1.3 jtc sopno start; /* start state within strip */
889 1.3 jtc sopno stop; /* state after stop state within strip */
890 1.1 jtc register states bef; /* states reachable before */
891 1.1 jtc int ch; /* character or NONCHAR code */
892 1.1 jtc register states aft; /* states already known reachable after */
893 1.1 jtc {
894 1.1 jtc register cset *cs;
895 1.1 jtc register sop s;
896 1.1 jtc register sopno pc;
897 1.1 jtc register onestate here; /* note, macros know this name */
898 1.1 jtc register sopno look;
899 1.1 jtc register int i;
900 1.1 jtc
901 1.1 jtc for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
902 1.1 jtc s = g->strip[pc];
903 1.1 jtc switch (OP(s)) {
904 1.1 jtc case OEND:
905 1.1 jtc assert(pc == stop-1);
906 1.1 jtc break;
907 1.1 jtc case OCHAR:
908 1.1 jtc /* only characters can match */
909 1.1 jtc assert(!NONCHAR(ch) || ch != (char)OPND(s));
910 1.1 jtc if (ch == (char)OPND(s))
911 1.1 jtc FWD(aft, bef, 1);
912 1.1 jtc break;
913 1.1 jtc case OBOL:
914 1.1 jtc if (ch == BOL || ch == BOLEOL)
915 1.1 jtc FWD(aft, bef, 1);
916 1.1 jtc break;
917 1.1 jtc case OEOL:
918 1.1 jtc if (ch == EOL || ch == BOLEOL)
919 1.1 jtc FWD(aft, bef, 1);
920 1.1 jtc break;
921 1.1 jtc case OBOW:
922 1.1 jtc if (ch == BOW)
923 1.1 jtc FWD(aft, bef, 1);
924 1.1 jtc break;
925 1.1 jtc case OEOW:
926 1.1 jtc if (ch == EOW)
927 1.1 jtc FWD(aft, bef, 1);
928 1.1 jtc break;
929 1.1 jtc case OANY:
930 1.1 jtc if (!NONCHAR(ch))
931 1.1 jtc FWD(aft, bef, 1);
932 1.1 jtc break;
933 1.1 jtc case OANYOF:
934 1.1 jtc cs = &g->sets[OPND(s)];
935 1.1 jtc if (!NONCHAR(ch) && CHIN(cs, ch))
936 1.1 jtc FWD(aft, bef, 1);
937 1.1 jtc break;
938 1.1 jtc case OBACK_: /* ignored here */
939 1.1 jtc case O_BACK:
940 1.1 jtc FWD(aft, aft, 1);
941 1.1 jtc break;
942 1.1 jtc case OPLUS_: /* forward, this is just an empty */
943 1.1 jtc FWD(aft, aft, 1);
944 1.1 jtc break;
945 1.1 jtc case O_PLUS: /* both forward and back */
946 1.1 jtc FWD(aft, aft, 1);
947 1.1 jtc i = ISSETBACK(aft, OPND(s));
948 1.1 jtc BACK(aft, aft, OPND(s));
949 1.1 jtc if (!i && ISSETBACK(aft, OPND(s))) {
950 1.1 jtc /* oho, must reconsider loop body */
951 1.1 jtc pc -= OPND(s) + 1;
952 1.1 jtc INIT(here, pc);
953 1.1 jtc }
954 1.1 jtc break;
955 1.1 jtc case OQUEST_: /* two branches, both forward */
956 1.1 jtc FWD(aft, aft, 1);
957 1.1 jtc FWD(aft, aft, OPND(s));
958 1.1 jtc break;
959 1.1 jtc case O_QUEST: /* just an empty */
960 1.1 jtc FWD(aft, aft, 1);
961 1.1 jtc break;
962 1.1 jtc case OLPAREN: /* not significant here */
963 1.1 jtc case ORPAREN:
964 1.1 jtc FWD(aft, aft, 1);
965 1.1 jtc break;
966 1.1 jtc case OCH_: /* mark the first two branches */
967 1.1 jtc FWD(aft, aft, 1);
968 1.1 jtc assert(OP(g->strip[pc+OPND(s)]) == OOR2);
969 1.1 jtc FWD(aft, aft, OPND(s));
970 1.1 jtc break;
971 1.1 jtc case OOR1: /* done a branch, find the O_CH */
972 1.1 jtc if (ISSTATEIN(aft, here)) {
973 1.1 jtc for (look = 1;
974 1.1 jtc OP(s = g->strip[pc+look]) != O_CH;
975 1.1 jtc look += OPND(s))
976 1.1 jtc assert(OP(s) == OOR2);
977 1.1 jtc FWD(aft, aft, look);
978 1.1 jtc }
979 1.1 jtc break;
980 1.1 jtc case OOR2: /* propagate OCH_'s marking */
981 1.1 jtc FWD(aft, aft, 1);
982 1.1 jtc if (OP(g->strip[pc+OPND(s)]) != O_CH) {
983 1.1 jtc assert(OP(g->strip[pc+OPND(s)]) == OOR2);
984 1.1 jtc FWD(aft, aft, OPND(s));
985 1.1 jtc }
986 1.1 jtc break;
987 1.1 jtc case O_CH: /* just empty */
988 1.1 jtc FWD(aft, aft, 1);
989 1.1 jtc break;
990 1.1 jtc default: /* ooooops... */
991 1.1 jtc assert(nope);
992 1.1 jtc break;
993 1.1 jtc }
994 1.1 jtc }
995 1.1 jtc
996 1.1 jtc return(aft);
997 1.1 jtc }
998 1.1 jtc
999 1.1 jtc #ifdef REDEBUG
1000 1.1 jtc /*
1001 1.1 jtc - print - print a set of states
1002 1.1 jtc == #ifdef REDEBUG
1003 1.1 jtc == static void print(struct match *m, char *caption, states st, \
1004 1.1 jtc == int ch, FILE *d);
1005 1.1 jtc == #endif
1006 1.1 jtc */
1007 1.1 jtc static void
1008 1.1 jtc print(m, caption, st, ch, d)
1009 1.1 jtc struct match *m;
1010 1.1 jtc char *caption;
1011 1.1 jtc states st;
1012 1.1 jtc int ch;
1013 1.1 jtc FILE *d;
1014 1.1 jtc {
1015 1.1 jtc register struct re_guts *g = m->g;
1016 1.1 jtc register int i;
1017 1.1 jtc register int first = 1;
1018 1.1 jtc
1019 1.1 jtc if (!(m->eflags®_TRACE))
1020 1.1 jtc return;
1021 1.1 jtc
1022 1.1 jtc fprintf(d, "%s", caption);
1023 1.1 jtc if (ch != '\0')
1024 1.1 jtc fprintf(d, " %s", pchar(ch));
1025 1.1 jtc for (i = 0; i < g->nstates; i++)
1026 1.1 jtc if (ISSET(st, i)) {
1027 1.1 jtc fprintf(d, "%s%d", (first) ? "\t" : ", ", i);
1028 1.1 jtc first = 0;
1029 1.1 jtc }
1030 1.1 jtc fprintf(d, "\n");
1031 1.1 jtc }
1032 1.1 jtc
1033 1.1 jtc /*
1034 1.1 jtc - at - print current situation
1035 1.1 jtc == #ifdef REDEBUG
1036 1.1 jtc == static void at(struct match *m, char *title, char *start, char *stop, \
1037 1.1 jtc == sopno startst, sopno stopst);
1038 1.1 jtc == #endif
1039 1.1 jtc */
1040 1.1 jtc static void
1041 1.1 jtc at(m, title, start, stop, startst, stopst)
1042 1.1 jtc struct match *m;
1043 1.1 jtc char *title;
1044 1.1 jtc char *start;
1045 1.1 jtc char *stop;
1046 1.1 jtc sopno startst;
1047 1.1 jtc sopno stopst;
1048 1.1 jtc {
1049 1.1 jtc if (!(m->eflags®_TRACE))
1050 1.1 jtc return;
1051 1.1 jtc
1052 1.1 jtc printf("%s %s-", title, pchar(*start));
1053 1.1 jtc printf("%s ", pchar(*stop));
1054 1.1 jtc printf("%ld-%ld\n", (long)startst, (long)stopst);
1055 1.1 jtc }
1056 1.1 jtc
1057 1.1 jtc #ifndef PCHARDONE
1058 1.1 jtc #define PCHARDONE /* never again */
1059 1.1 jtc /*
1060 1.1 jtc - pchar - make a character printable
1061 1.1 jtc == #ifdef REDEBUG
1062 1.1 jtc == static char *pchar(int ch);
1063 1.1 jtc == #endif
1064 1.1 jtc *
1065 1.1 jtc * Is this identical to regchar() over in debug.c? Well, yes. But a
1066 1.1 jtc * duplicate here avoids having a debugging-capable regexec.o tied to
1067 1.1 jtc * a matching debug.o, and this is convenient. It all disappears in
1068 1.1 jtc * the non-debug compilation anyway, so it doesn't matter much.
1069 1.1 jtc */
1070 1.1 jtc static char * /* -> representation */
1071 1.1 jtc pchar(ch)
1072 1.1 jtc int ch;
1073 1.1 jtc {
1074 1.1 jtc static char pbuf[10];
1075 1.1 jtc
1076 1.1 jtc if (isprint(ch) || ch == ' ')
1077 1.1 jtc sprintf(pbuf, "%c", ch);
1078 1.1 jtc else
1079 1.1 jtc sprintf(pbuf, "\\%o", ch);
1080 1.1 jtc return(pbuf);
1081 1.1 jtc }
1082 1.1 jtc #endif
1083 1.1 jtc #endif
1084 1.1 jtc
1085 1.1 jtc #undef matcher
1086 1.1 jtc #undef fast
1087 1.1 jtc #undef slow
1088 1.1 jtc #undef dissect
1089 1.1 jtc #undef backref
1090 1.1 jtc #undef step
1091 1.1 jtc #undef print
1092 1.1 jtc #undef at
1093 1.1 jtc #undef match
1094