Home | History | Annotate | Line # | Download | only in regex
engine.c revision 1.12
      1  1.12     lukem /*	$NetBSD: engine.c,v 1.12 1999/09/16 11:45:20 lukem 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&REG_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.12     lukem 	_DIAGASSERT(g != NULL);
    159  1.12     lukem 	_DIAGASSERT(string != NULL);
    160  1.12     lukem 	/* pmatch checked below */
    161  1.12     lukem 
    162   1.1       jtc 	/* simplify the situation where possible */
    163   1.1       jtc 	if (g->cflags&REG_NOSUB)
    164   1.1       jtc 		nmatch = 0;
    165   1.1       jtc 	if (eflags&REG_STARTEND) {
    166  1.12     lukem 		_DIAGASSERT(pmatch != NULL);
    167  1.11  christos 		start = string + (size_t)pmatch[0].rm_so;
    168  1.11  christos 		stop = string + (size_t)pmatch[0].rm_eo;
    169   1.1       jtc 	} else {
    170   1.1       jtc 		start = string;
    171   1.1       jtc 		stop = start + strlen(start);
    172   1.1       jtc 	}
    173   1.1       jtc 	if (stop < start)
    174   1.1       jtc 		return(REG_INVARG);
    175   1.1       jtc 
    176   1.1       jtc 	/* prescreening; this does wonders for this rather slow code */
    177   1.1       jtc 	if (g->must != NULL) {
    178   1.1       jtc 		for (dp = start; dp < stop; dp++)
    179   1.1       jtc 			if (*dp == g->must[0] && stop - dp >= g->mlen &&
    180   1.1       jtc 				memcmp(dp, g->must, (size_t)g->mlen) == 0)
    181   1.1       jtc 				break;
    182   1.1       jtc 		if (dp == stop)		/* we didn't find g->must */
    183   1.1       jtc 			return(REG_NOMATCH);
    184   1.1       jtc 	}
    185   1.1       jtc 
    186   1.1       jtc 	/* match struct setup */
    187   1.1       jtc 	m->g = g;
    188   1.1       jtc 	m->eflags = eflags;
    189   1.1       jtc 	m->pmatch = NULL;
    190   1.1       jtc 	m->lastpos = NULL;
    191   1.1       jtc 	m->offp = string;
    192   1.1       jtc 	m->beginp = start;
    193   1.1       jtc 	m->endp = stop;
    194   1.1       jtc 	STATESETUP(m, 4);
    195   1.1       jtc 	SETUP(m->st);
    196   1.1       jtc 	SETUP(m->fresh);
    197   1.1       jtc 	SETUP(m->tmp);
    198   1.1       jtc 	SETUP(m->empty);
    199   1.1       jtc 	CLEAR(m->empty);
    200   1.1       jtc 
    201   1.1       jtc 	/* this loop does only one repetition except for backrefs */
    202   1.1       jtc 	for (;;) {
    203   1.1       jtc 		endp = fast(m, start, stop, gf, gl);
    204   1.1       jtc 		if (endp == NULL) {		/* a miss */
    205   1.1       jtc 			STATETEARDOWN(m);
    206   1.1       jtc 			return(REG_NOMATCH);
    207   1.1       jtc 		}
    208   1.1       jtc 		if (nmatch == 0 && !g->backrefs)
    209   1.1       jtc 			break;		/* no further info needed */
    210   1.1       jtc 
    211   1.1       jtc 		/* where? */
    212   1.1       jtc 		assert(m->coldp != NULL);
    213   1.1       jtc 		for (;;) {
    214   1.1       jtc 			NOTE("finding start");
    215   1.1       jtc 			endp = slow(m, m->coldp, stop, gf, gl);
    216   1.1       jtc 			if (endp != NULL)
    217   1.1       jtc 				break;
    218   1.1       jtc 			assert(m->coldp < m->endp);
    219   1.1       jtc 			m->coldp++;
    220   1.1       jtc 		}
    221   1.1       jtc 		if (nmatch == 1 && !g->backrefs)
    222   1.1       jtc 			break;		/* no further info needed */
    223   1.1       jtc 
    224   1.1       jtc 		/* oh my, he wants the subexpressions... */
    225   1.1       jtc 		if (m->pmatch == NULL)
    226   1.1       jtc 			m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
    227   1.1       jtc 							sizeof(regmatch_t));
    228   1.1       jtc 		if (m->pmatch == NULL) {
    229   1.1       jtc 			STATETEARDOWN(m);
    230   1.1       jtc 			return(REG_ESPACE);
    231   1.1       jtc 		}
    232   1.1       jtc 		for (i = 1; i <= m->g->nsub; i++)
    233  1.10  drochner 			m->pmatch[i].rm_so = m->pmatch[i].rm_eo = (regoff_t)-1;
    234   1.1       jtc 		if (!g->backrefs && !(m->eflags&REG_BACKR)) {
    235   1.1       jtc 			NOTE("dissecting");
    236   1.1       jtc 			dp = dissect(m, m->coldp, endp, gf, gl);
    237   1.1       jtc 		} else {
    238   1.1       jtc 			if (g->nplus > 0 && m->lastpos == NULL)
    239   1.1       jtc 				m->lastpos = (char **)malloc((g->nplus+1) *
    240   1.1       jtc 							sizeof(char *));
    241   1.1       jtc 			if (g->nplus > 0 && m->lastpos == NULL) {
    242   1.1       jtc 				free(m->pmatch);
    243   1.1       jtc 				STATETEARDOWN(m);
    244   1.1       jtc 				return(REG_ESPACE);
    245   1.1       jtc 			}
    246   1.1       jtc 			NOTE("backref dissect");
    247   1.1       jtc 			dp = backref(m, m->coldp, endp, gf, gl, (sopno)0);
    248   1.1       jtc 		}
    249   1.1       jtc 		if (dp != NULL)
    250   1.1       jtc 			break;
    251   1.1       jtc 
    252   1.1       jtc 		/* uh-oh... we couldn't find a subexpression-level match */
    253   1.1       jtc 		assert(g->backrefs);	/* must be back references doing it */
    254   1.1       jtc 		assert(g->nplus == 0 || m->lastpos != NULL);
    255   1.1       jtc 		for (;;) {
    256   1.1       jtc 			if (dp != NULL || endp <= m->coldp)
    257   1.1       jtc 				break;		/* defeat */
    258   1.1       jtc 			NOTE("backoff");
    259   1.1       jtc 			endp = slow(m, m->coldp, endp-1, gf, gl);
    260   1.1       jtc 			if (endp == NULL)
    261   1.1       jtc 				break;		/* defeat */
    262   1.1       jtc 			/* try it on a shorter possibility */
    263   1.1       jtc #ifndef NDEBUG
    264   1.1       jtc 			for (i = 1; i <= m->g->nsub; i++) {
    265  1.10  drochner 				assert(m->pmatch[i].rm_so == (regoff_t)-1);
    266  1.10  drochner 				assert(m->pmatch[i].rm_eo == (regoff_t)-1);
    267   1.1       jtc 			}
    268   1.1       jtc #endif
    269   1.1       jtc 			NOTE("backoff dissect");
    270   1.1       jtc 			dp = backref(m, m->coldp, endp, gf, gl, (sopno)0);
    271   1.1       jtc 		}
    272   1.1       jtc 		assert(dp == NULL || dp == endp);
    273   1.1       jtc 		if (dp != NULL)		/* found a shorter one */
    274   1.1       jtc 			break;
    275   1.1       jtc 
    276   1.1       jtc 		/* despite initial appearances, there is no match here */
    277   1.1       jtc 		NOTE("false alarm");
    278   1.1       jtc 		start = m->coldp + 1;	/* recycle starting later */
    279   1.1       jtc 		assert(start <= stop);
    280   1.1       jtc 	}
    281   1.1       jtc 
    282   1.1       jtc 	/* fill in the details if requested */
    283   1.1       jtc 	if (nmatch > 0) {
    284  1.12     lukem 		_DIAGASSERT(pmatch != NULL);
    285   1.1       jtc 		pmatch[0].rm_so = m->coldp - m->offp;
    286   1.1       jtc 		pmatch[0].rm_eo = endp - m->offp;
    287   1.1       jtc 	}
    288   1.1       jtc 	if (nmatch > 1) {
    289   1.1       jtc 		assert(m->pmatch != NULL);
    290   1.1       jtc 		for (i = 1; i < nmatch; i++)
    291   1.1       jtc 			if (i <= m->g->nsub)
    292   1.1       jtc 				pmatch[i] = m->pmatch[i];
    293   1.1       jtc 			else {
    294  1.10  drochner 				pmatch[i].rm_so = (regoff_t)-1;
    295  1.10  drochner 				pmatch[i].rm_eo = (regoff_t)-1;
    296   1.1       jtc 			}
    297   1.1       jtc 	}
    298   1.1       jtc 
    299   1.1       jtc 	if (m->pmatch != NULL)
    300   1.9  christos 		free(m->pmatch);
    301   1.1       jtc 	if (m->lastpos != NULL)
    302   1.9  christos 		free(m->lastpos);
    303   1.1       jtc 	STATETEARDOWN(m);
    304   1.1       jtc 	return(0);
    305   1.1       jtc }
    306   1.1       jtc 
    307   1.1       jtc /*
    308   1.1       jtc  - dissect - figure out what matched what, no back references
    309   1.8     perry  == static char *dissect(struct match *m, char *start, \
    310   1.1       jtc  ==	char *stop, sopno startst, sopno stopst);
    311   1.1       jtc  */
    312   1.1       jtc static char *			/* == stop (success) always */
    313   1.1       jtc dissect(m, start, stop, startst, stopst)
    314   1.8     perry struct match *m;
    315   1.1       jtc char *start;
    316   1.1       jtc char *stop;
    317   1.1       jtc sopno startst;
    318   1.1       jtc sopno stopst;
    319   1.1       jtc {
    320   1.8     perry 	int i;
    321   1.8     perry 	sopno ss;	/* start sop of current subRE */
    322   1.8     perry 	sopno es;	/* end sop of current subRE */
    323   1.8     perry 	char *sp;	/* start of string matched by it */
    324   1.8     perry 	char *stp;	/* string matched by it cannot pass here */
    325   1.8     perry 	char *rest;	/* start of rest of string */
    326   1.8     perry 	char *tail;	/* string unmatched by rest of RE */
    327   1.8     perry 	sopno ssub;	/* start sop of subsubRE */
    328   1.8     perry 	sopno esub;	/* end sop of subsubRE */
    329   1.8     perry 	char *ssp;	/* start of string matched by subsubRE */
    330   1.8     perry 	char *sep;	/* end of string matched by subsubRE */
    331   1.8     perry 	char *oldssp;	/* previous ssp */
    332   1.9  christos #ifndef NDEBUG
    333   1.8     perry 	char *dp;
    334   1.9  christos #endif
    335   1.1       jtc 
    336  1.12     lukem 	_DIAGASSERT(m != NULL);
    337  1.12     lukem 	_DIAGASSERT(start != NULL);
    338  1.12     lukem 	_DIAGASSERT(stop != NULL);
    339  1.12     lukem 
    340   1.1       jtc 	AT("diss", start, stop, startst, stopst);
    341   1.1       jtc 	sp = start;
    342   1.1       jtc 	for (ss = startst; ss < stopst; ss = es) {
    343   1.1       jtc 		/* identify end of subRE */
    344   1.1       jtc 		es = ss;
    345   1.1       jtc 		switch (OP(m->g->strip[es])) {
    346   1.1       jtc 		case OPLUS_:
    347   1.1       jtc 		case OQUEST_:
    348   1.1       jtc 			es += OPND(m->g->strip[es]);
    349   1.1       jtc 			break;
    350   1.1       jtc 		case OCH_:
    351   1.1       jtc 			while (OP(m->g->strip[es]) != O_CH)
    352   1.1       jtc 				es += OPND(m->g->strip[es]);
    353   1.1       jtc 			break;
    354   1.1       jtc 		}
    355   1.1       jtc 		es++;
    356   1.1       jtc 
    357   1.1       jtc 		/* figure out what it matched */
    358   1.1       jtc 		switch (OP(m->g->strip[ss])) {
    359   1.1       jtc 		case OEND:
    360   1.1       jtc 			assert(nope);
    361   1.1       jtc 			break;
    362   1.1       jtc 		case OCHAR:
    363   1.1       jtc 			sp++;
    364   1.1       jtc 			break;
    365   1.1       jtc 		case OBOL:
    366   1.1       jtc 		case OEOL:
    367   1.1       jtc 		case OBOW:
    368   1.1       jtc 		case OEOW:
    369   1.1       jtc 			break;
    370   1.1       jtc 		case OANY:
    371   1.1       jtc 		case OANYOF:
    372   1.1       jtc 			sp++;
    373   1.1       jtc 			break;
    374   1.1       jtc 		case OBACK_:
    375   1.1       jtc 		case O_BACK:
    376   1.1       jtc 			assert(nope);
    377   1.1       jtc 			break;
    378   1.1       jtc 		/* cases where length of match is hard to find */
    379   1.1       jtc 		case OQUEST_:
    380   1.1       jtc 			stp = stop;
    381   1.1       jtc 			for (;;) {
    382   1.1       jtc 				/* how long could this one be? */
    383   1.1       jtc 				rest = slow(m, sp, stp, ss, es);
    384   1.1       jtc 				assert(rest != NULL);	/* it did match */
    385   1.1       jtc 				/* could the rest match the rest? */
    386   1.1       jtc 				tail = slow(m, rest, stop, es, stopst);
    387   1.1       jtc 				if (tail == stop)
    388   1.1       jtc 					break;		/* yes! */
    389   1.1       jtc 				/* no -- try a shorter match for this one */
    390   1.1       jtc 				stp = rest - 1;
    391   1.1       jtc 				assert(stp >= sp);	/* it did work */
    392   1.1       jtc 			}
    393   1.1       jtc 			ssub = ss + 1;
    394   1.1       jtc 			esub = es - 1;
    395   1.1       jtc 			/* did innards match? */
    396   1.1       jtc 			if (slow(m, sp, rest, ssub, esub) != NULL) {
    397   1.9  christos #ifdef NDEBUG
    398   1.9  christos 				(void)
    399   1.9  christos #else
    400   1.9  christos 				dp =
    401   1.9  christos #endif
    402   1.9  christos 				    dissect(m, sp, rest, ssub, esub);
    403   1.1       jtc 				assert(dp == rest);
    404   1.1       jtc 			} else		/* no */
    405   1.1       jtc 				assert(sp == rest);
    406   1.1       jtc 			sp = rest;
    407   1.1       jtc 			break;
    408   1.1       jtc 		case OPLUS_:
    409   1.1       jtc 			stp = stop;
    410   1.1       jtc 			for (;;) {
    411   1.1       jtc 				/* how long could this one be? */
    412   1.1       jtc 				rest = slow(m, sp, stp, ss, es);
    413   1.1       jtc 				assert(rest != NULL);	/* it did match */
    414   1.1       jtc 				/* could the rest match the rest? */
    415   1.1       jtc 				tail = slow(m, rest, stop, es, stopst);
    416   1.1       jtc 				if (tail == stop)
    417   1.1       jtc 					break;		/* yes! */
    418   1.1       jtc 				/* no -- try a shorter match for this one */
    419   1.1       jtc 				stp = rest - 1;
    420   1.1       jtc 				assert(stp >= sp);	/* it did work */
    421   1.1       jtc 			}
    422   1.1       jtc 			ssub = ss + 1;
    423   1.1       jtc 			esub = es - 1;
    424   1.1       jtc 			ssp = sp;
    425   1.1       jtc 			oldssp = ssp;
    426   1.1       jtc 			for (;;) {	/* find last match of innards */
    427   1.1       jtc 				sep = slow(m, ssp, rest, ssub, esub);
    428   1.1       jtc 				if (sep == NULL || sep == ssp)
    429   1.1       jtc 					break;	/* failed or matched null */
    430   1.1       jtc 				oldssp = ssp;	/* on to next try */
    431   1.1       jtc 				ssp = sep;
    432   1.1       jtc 			}
    433   1.1       jtc 			if (sep == NULL) {
    434   1.1       jtc 				/* last successful match */
    435   1.1       jtc 				sep = ssp;
    436   1.1       jtc 				ssp = oldssp;
    437   1.1       jtc 			}
    438   1.1       jtc 			assert(sep == rest);	/* must exhaust substring */
    439   1.1       jtc 			assert(slow(m, ssp, sep, ssub, esub) == rest);
    440   1.9  christos #ifdef NDEBUG
    441   1.9  christos 			(void)
    442   1.9  christos #else
    443   1.9  christos 			dp =
    444   1.9  christos #endif
    445   1.9  christos 			    dissect(m, ssp, sep, ssub, esub);
    446   1.1       jtc 			assert(dp == sep);
    447   1.1       jtc 			sp = rest;
    448   1.1       jtc 			break;
    449   1.1       jtc 		case OCH_:
    450   1.1       jtc 			stp = stop;
    451   1.1       jtc 			for (;;) {
    452   1.1       jtc 				/* how long could this one be? */
    453   1.1       jtc 				rest = slow(m, sp, stp, ss, es);
    454   1.1       jtc 				assert(rest != NULL);	/* it did match */
    455   1.1       jtc 				/* could the rest match the rest? */
    456   1.1       jtc 				tail = slow(m, rest, stop, es, stopst);
    457   1.1       jtc 				if (tail == stop)
    458   1.1       jtc 					break;		/* yes! */
    459   1.1       jtc 				/* no -- try a shorter match for this one */
    460   1.1       jtc 				stp = rest - 1;
    461   1.1       jtc 				assert(stp >= sp);	/* it did work */
    462   1.1       jtc 			}
    463   1.1       jtc 			ssub = ss + 1;
    464   1.1       jtc 			esub = ss + OPND(m->g->strip[ss]) - 1;
    465   1.1       jtc 			assert(OP(m->g->strip[esub]) == OOR1);
    466   1.1       jtc 			for (;;) {	/* find first matching branch */
    467   1.1       jtc 				if (slow(m, sp, rest, ssub, esub) == rest)
    468   1.1       jtc 					break;	/* it matched all of it */
    469   1.1       jtc 				/* that one missed, try next one */
    470   1.1       jtc 				assert(OP(m->g->strip[esub]) == OOR1);
    471   1.1       jtc 				esub++;
    472   1.1       jtc 				assert(OP(m->g->strip[esub]) == OOR2);
    473   1.1       jtc 				ssub = esub + 1;
    474   1.1       jtc 				esub += OPND(m->g->strip[esub]);
    475   1.1       jtc 				if (OP(m->g->strip[esub]) == OOR2)
    476   1.1       jtc 					esub--;
    477   1.1       jtc 				else
    478   1.1       jtc 					assert(OP(m->g->strip[esub]) == O_CH);
    479   1.1       jtc 			}
    480   1.9  christos #ifdef NDEBUG
    481   1.9  christos 			(void)
    482   1.9  christos #else
    483   1.9  christos 			dp =
    484   1.9  christos #endif
    485   1.9  christos 			    dissect(m, sp, rest, ssub, esub);
    486   1.1       jtc 			assert(dp == rest);
    487   1.1       jtc 			sp = rest;
    488   1.1       jtc 			break;
    489   1.1       jtc 		case O_PLUS:
    490   1.1       jtc 		case O_QUEST:
    491   1.1       jtc 		case OOR1:
    492   1.1       jtc 		case OOR2:
    493   1.1       jtc 		case O_CH:
    494   1.1       jtc 			assert(nope);
    495   1.1       jtc 			break;
    496   1.1       jtc 		case OLPAREN:
    497   1.1       jtc 			i = OPND(m->g->strip[ss]);
    498   1.2       jtc 			assert(0 < i && i <= m->g->nsub);
    499   1.1       jtc 			m->pmatch[i].rm_so = sp - m->offp;
    500   1.1       jtc 			break;
    501   1.1       jtc 		case ORPAREN:
    502   1.1       jtc 			i = OPND(m->g->strip[ss]);
    503   1.2       jtc 			assert(0 < i && i <= m->g->nsub);
    504   1.1       jtc 			m->pmatch[i].rm_eo = sp - m->offp;
    505   1.1       jtc 			break;
    506   1.1       jtc 		default:		/* uh oh */
    507   1.1       jtc 			assert(nope);
    508   1.1       jtc 			break;
    509   1.1       jtc 		}
    510   1.1       jtc 	}
    511   1.1       jtc 
    512   1.1       jtc 	assert(sp == stop);
    513   1.1       jtc 	return(sp);
    514   1.1       jtc }
    515   1.1       jtc 
    516   1.1       jtc /*
    517   1.1       jtc  - backref - figure out what matched what, figuring in back references
    518   1.8     perry  == static char *backref(struct match *m, char *start, \
    519   1.1       jtc  ==	char *stop, sopno startst, sopno stopst, sopno lev);
    520   1.1       jtc  */
    521   1.1       jtc static char *			/* == stop (success) or NULL (failure) */
    522   1.1       jtc backref(m, start, stop, startst, stopst, lev)
    523   1.8     perry struct match *m;
    524   1.1       jtc char *start;
    525   1.1       jtc char *stop;
    526   1.1       jtc sopno startst;
    527   1.1       jtc sopno stopst;
    528   1.1       jtc sopno lev;			/* PLUS nesting level */
    529   1.1       jtc {
    530   1.8     perry 	int i;
    531   1.8     perry 	sopno ss;	/* start sop of current subRE */
    532   1.8     perry 	char *sp;	/* start of string matched by it */
    533   1.8     perry 	sopno ssub;	/* start sop of subsubRE */
    534   1.8     perry 	sopno esub;	/* end sop of subsubRE */
    535   1.8     perry 	char *ssp;	/* start of string matched by subsubRE */
    536   1.8     perry 	char *dp;
    537   1.8     perry 	size_t len;
    538   1.8     perry 	int hard;
    539   1.8     perry 	sop s;
    540   1.8     perry 	regoff_t offsave;
    541   1.8     perry 	cset *cs;
    542   1.1       jtc 
    543  1.12     lukem 	_DIAGASSERT(m != NULL);
    544  1.12     lukem 	_DIAGASSERT(start != NULL);
    545  1.12     lukem 	_DIAGASSERT(stop != NULL);
    546  1.12     lukem 
    547   1.1       jtc 	AT("back", start, stop, startst, stopst);
    548   1.1       jtc 	sp = start;
    549   1.1       jtc 
    550   1.1       jtc 	/* get as far as we can with easy stuff */
    551   1.1       jtc 	hard = 0;
    552   1.1       jtc 	for (ss = startst; !hard && ss < stopst; ss++)
    553   1.1       jtc 		switch (OP(s = m->g->strip[ss])) {
    554   1.1       jtc 		case OCHAR:
    555   1.1       jtc 			if (sp == stop || *sp++ != (char)OPND(s))
    556   1.1       jtc 				return(NULL);
    557   1.1       jtc 			break;
    558   1.1       jtc 		case OANY:
    559   1.1       jtc 			if (sp == stop)
    560   1.1       jtc 				return(NULL);
    561   1.1       jtc 			sp++;
    562   1.1       jtc 			break;
    563   1.1       jtc 		case OANYOF:
    564   1.1       jtc 			cs = &m->g->sets[OPND(s)];
    565   1.1       jtc 			if (sp == stop || !CHIN(cs, *sp++))
    566   1.1       jtc 				return(NULL);
    567   1.1       jtc 			break;
    568   1.1       jtc 		case OBOL:
    569   1.1       jtc 			if ( (sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
    570   1.1       jtc 					(sp < m->endp && *(sp-1) == '\n' &&
    571   1.1       jtc 						(m->g->cflags&REG_NEWLINE)) )
    572   1.1       jtc 				{ /* yes */ }
    573   1.1       jtc 			else
    574   1.1       jtc 				return(NULL);
    575   1.1       jtc 			break;
    576   1.1       jtc 		case OEOL:
    577   1.1       jtc 			if ( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
    578   1.1       jtc 					(sp < m->endp && *sp == '\n' &&
    579   1.1       jtc 						(m->g->cflags&REG_NEWLINE)) )
    580   1.1       jtc 				{ /* yes */ }
    581   1.1       jtc 			else
    582   1.1       jtc 				return(NULL);
    583   1.1       jtc 			break;
    584   1.1       jtc 		case OBOW:
    585   1.1       jtc 			if (( (sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
    586   1.1       jtc 					(sp < m->endp && *(sp-1) == '\n' &&
    587   1.1       jtc 						(m->g->cflags&REG_NEWLINE)) ||
    588   1.1       jtc 					(sp > m->beginp &&
    589   1.3       jtc 							!ISWORD(*(sp-1))) ) &&
    590   1.3       jtc 					(sp < m->endp && ISWORD(*sp)) )
    591   1.1       jtc 				{ /* yes */ }
    592   1.1       jtc 			else
    593   1.1       jtc 				return(NULL);
    594   1.1       jtc 			break;
    595   1.1       jtc 		case OEOW:
    596   1.1       jtc 			if (( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
    597   1.1       jtc 					(sp < m->endp && *sp == '\n' &&
    598   1.1       jtc 						(m->g->cflags&REG_NEWLINE)) ||
    599   1.3       jtc 					(sp < m->endp && !ISWORD(*sp)) ) &&
    600   1.3       jtc 					(sp > m->beginp && ISWORD(*(sp-1))) )
    601   1.1       jtc 				{ /* yes */ }
    602   1.1       jtc 			else
    603   1.1       jtc 				return(NULL);
    604   1.1       jtc 			break;
    605   1.1       jtc 		case O_QUEST:
    606   1.1       jtc 			break;
    607   1.1       jtc 		case OOR1:	/* matches null but needs to skip */
    608   1.1       jtc 			ss++;
    609   1.1       jtc 			s = m->g->strip[ss];
    610   1.1       jtc 			do {
    611   1.1       jtc 				assert(OP(s) == OOR2);
    612   1.1       jtc 				ss += OPND(s);
    613   1.1       jtc 			} while (OP(s = m->g->strip[ss]) != O_CH);
    614   1.1       jtc 			/* note that the ss++ gets us past the O_CH */
    615   1.1       jtc 			break;
    616   1.1       jtc 		default:	/* have to make a choice */
    617   1.1       jtc 			hard = 1;
    618   1.1       jtc 			break;
    619   1.1       jtc 		}
    620   1.1       jtc 	if (!hard) {		/* that was it! */
    621   1.1       jtc 		if (sp != stop)
    622   1.1       jtc 			return(NULL);
    623   1.1       jtc 		return(sp);
    624   1.1       jtc 	}
    625   1.1       jtc 	ss--;			/* adjust for the for's final increment */
    626   1.1       jtc 
    627   1.1       jtc 	/* the hard stuff */
    628   1.1       jtc 	AT("hard", sp, stop, ss, stopst);
    629   1.1       jtc 	s = m->g->strip[ss];
    630   1.1       jtc 	switch (OP(s)) {
    631   1.1       jtc 	case OBACK_:		/* the vilest depths */
    632   1.1       jtc 		i = OPND(s);
    633   1.2       jtc 		assert(0 < i && i <= m->g->nsub);
    634  1.10  drochner 		if (m->pmatch[i].rm_eo == (regoff_t)-1)
    635   1.1       jtc 			return(NULL);
    636  1.10  drochner 		assert(m->pmatch[i].rm_so != (regoff_t)-1);
    637  1.11  christos 		len = (size_t)(m->pmatch[i].rm_eo - m->pmatch[i].rm_so);
    638   1.1       jtc 		assert(stop - m->beginp >= len);
    639   1.1       jtc 		if (sp > stop - len)
    640   1.1       jtc 			return(NULL);	/* not enough left to match */
    641  1.11  christos 		ssp = m->offp + (size_t)m->pmatch[i].rm_so;
    642   1.1       jtc 		if (memcmp(sp, ssp, len) != 0)
    643   1.1       jtc 			return(NULL);
    644   1.1       jtc 		while (m->g->strip[ss] != SOP(O_BACK, i))
    645   1.1       jtc 			ss++;
    646   1.1       jtc 		return(backref(m, sp+len, stop, ss+1, stopst, lev));
    647   1.9  christos 
    648   1.1       jtc 	case OQUEST_:		/* to null or not */
    649   1.1       jtc 		dp = backref(m, sp, stop, ss+1, stopst, lev);
    650   1.1       jtc 		if (dp != NULL)
    651   1.1       jtc 			return(dp);	/* not */
    652   1.1       jtc 		return(backref(m, sp, stop, ss+OPND(s)+1, stopst, lev));
    653   1.9  christos 
    654   1.1       jtc 	case OPLUS_:
    655   1.1       jtc 		assert(m->lastpos != NULL);
    656   1.1       jtc 		assert(lev+1 <= m->g->nplus);
    657   1.1       jtc 		m->lastpos[lev+1] = sp;
    658   1.1       jtc 		return(backref(m, sp, stop, ss+1, stopst, lev+1));
    659   1.9  christos 
    660   1.1       jtc 	case O_PLUS:
    661   1.1       jtc 		if (sp == m->lastpos[lev])	/* last pass matched null */
    662   1.1       jtc 			return(backref(m, sp, stop, ss+1, stopst, lev-1));
    663   1.1       jtc 		/* try another pass */
    664   1.1       jtc 		m->lastpos[lev] = sp;
    665   1.1       jtc 		dp = backref(m, sp, stop, ss-OPND(s)+1, stopst, lev);
    666   1.1       jtc 		if (dp == NULL)
    667   1.9  christos 			dp = backref(m, sp, stop, ss+1, stopst, lev-1);
    668   1.9  christos 		return(dp);
    669   1.9  christos 
    670   1.1       jtc 	case OCH_:		/* find the right one, if any */
    671   1.1       jtc 		ssub = ss + 1;
    672   1.1       jtc 		esub = ss + OPND(s) - 1;
    673   1.1       jtc 		assert(OP(m->g->strip[esub]) == OOR1);
    674   1.1       jtc 		for (;;) {	/* find first matching branch */
    675   1.1       jtc 			dp = backref(m, sp, stop, ssub, esub, lev);
    676   1.1       jtc 			if (dp != NULL)
    677   1.1       jtc 				return(dp);
    678   1.1       jtc 			/* that one missed, try next one */
    679   1.1       jtc 			if (OP(m->g->strip[esub]) == O_CH)
    680   1.1       jtc 				return(NULL);	/* there is none */
    681   1.1       jtc 			esub++;
    682   1.1       jtc 			assert(OP(m->g->strip[esub]) == OOR2);
    683   1.1       jtc 			ssub = esub + 1;
    684   1.1       jtc 			esub += OPND(m->g->strip[esub]);
    685   1.1       jtc 			if (OP(m->g->strip[esub]) == OOR2)
    686   1.1       jtc 				esub--;
    687   1.1       jtc 			else
    688   1.1       jtc 				assert(OP(m->g->strip[esub]) == O_CH);
    689   1.1       jtc 		}
    690   1.9  christos 
    691   1.1       jtc 	case OLPAREN:		/* must undo assignment if rest fails */
    692   1.1       jtc 		i = OPND(s);
    693   1.2       jtc 		assert(0 < i && i <= m->g->nsub);
    694   1.1       jtc 		offsave = m->pmatch[i].rm_so;
    695   1.1       jtc 		m->pmatch[i].rm_so = sp - m->offp;
    696   1.1       jtc 		dp = backref(m, sp, stop, ss+1, stopst, lev);
    697   1.1       jtc 		if (dp != NULL)
    698   1.1       jtc 			return(dp);
    699   1.1       jtc 		m->pmatch[i].rm_so = offsave;
    700   1.1       jtc 		return(NULL);
    701   1.9  christos 
    702   1.1       jtc 	case ORPAREN:		/* must undo assignment if rest fails */
    703   1.1       jtc 		i = OPND(s);
    704   1.2       jtc 		assert(0 < i && i <= m->g->nsub);
    705   1.1       jtc 		offsave = m->pmatch[i].rm_eo;
    706   1.1       jtc 		m->pmatch[i].rm_eo = sp - m->offp;
    707   1.1       jtc 		dp = backref(m, sp, stop, ss+1, stopst, lev);
    708   1.1       jtc 		if (dp != NULL)
    709   1.1       jtc 			return(dp);
    710   1.1       jtc 		m->pmatch[i].rm_eo = offsave;
    711   1.1       jtc 		return(NULL);
    712   1.9  christos 
    713   1.1       jtc 	default:		/* uh oh */
    714   1.1       jtc 		assert(nope);
    715   1.1       jtc 		break;
    716   1.1       jtc 	}
    717   1.1       jtc 
    718   1.1       jtc 	/* "can't happen" */
    719   1.1       jtc 	assert(nope);
    720   1.1       jtc 	/* NOTREACHED */
    721   1.7  christos 	return NULL;
    722   1.1       jtc }
    723   1.1       jtc 
    724   1.1       jtc /*
    725   1.1       jtc  - fast - step through the string at top speed
    726   1.8     perry  == static char *fast(struct match *m, char *start, \
    727   1.1       jtc  ==	char *stop, sopno startst, sopno stopst);
    728   1.1       jtc  */
    729   1.1       jtc static char *			/* where tentative match ended, or NULL */
    730   1.1       jtc fast(m, start, stop, startst, stopst)
    731   1.8     perry struct match *m;
    732   1.1       jtc char *start;
    733   1.1       jtc char *stop;
    734   1.1       jtc sopno startst;
    735   1.1       jtc sopno stopst;
    736   1.1       jtc {
    737   1.8     perry 	states st = m->st;
    738   1.8     perry 	states fresh = m->fresh;
    739   1.8     perry 	states tmp = m->tmp;
    740   1.8     perry 	char *p = start;
    741   1.8     perry 	int c = (start == m->beginp) ? OUT : *(start-1);
    742   1.8     perry 	int lastc;	/* previous c */
    743   1.8     perry 	int flagch;
    744   1.8     perry 	int i;
    745   1.8     perry 	char *coldp;	/* last p after which no match was underway */
    746   1.1       jtc 
    747  1.12     lukem 	_DIAGASSERT(m != NULL);
    748  1.12     lukem 	_DIAGASSERT(start != NULL);
    749  1.12     lukem 	_DIAGASSERT(stop != NULL);
    750  1.12     lukem 
    751   1.1       jtc 	CLEAR(st);
    752   1.1       jtc 	SET1(st, startst);
    753   1.1       jtc 	st = step(m->g, startst, stopst, st, NOTHING, st);
    754   1.1       jtc 	ASSIGN(fresh, st);
    755   1.1       jtc 	SP("start", st, *p);
    756   1.1       jtc 	coldp = NULL;
    757   1.1       jtc 	for (;;) {
    758   1.1       jtc 		/* next character */
    759   1.1       jtc 		lastc = c;
    760   1.1       jtc 		c = (p == m->endp) ? OUT : *p;
    761   1.1       jtc 		if (EQ(st, fresh))
    762   1.1       jtc 			coldp = p;
    763   1.1       jtc 
    764   1.1       jtc 		/* is there an EOL and/or BOL between lastc and c? */
    765   1.1       jtc 		flagch = '\0';
    766   1.1       jtc 		i = 0;
    767   1.1       jtc 		if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
    768   1.1       jtc 				(lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
    769   1.1       jtc 			flagch = BOL;
    770   1.1       jtc 			i = m->g->nbol;
    771   1.1       jtc 		}
    772   1.1       jtc 		if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
    773   1.1       jtc 				(c == OUT && !(m->eflags&REG_NOTEOL)) ) {
    774   1.1       jtc 			flagch = (flagch == BOL) ? BOLEOL : EOL;
    775   1.1       jtc 			i += m->g->neol;
    776   1.1       jtc 		}
    777   1.1       jtc 		if (i != 0) {
    778   1.1       jtc 			for (; i > 0; i--)
    779   1.1       jtc 				st = step(m->g, startst, stopst, st, flagch, st);
    780   1.1       jtc 			SP("boleol", st, c);
    781   1.1       jtc 		}
    782   1.1       jtc 
    783   1.1       jtc 		/* how about a word boundary? */
    784   1.3       jtc 		if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
    785   1.3       jtc 					(c != OUT && ISWORD(c)) ) {
    786   1.1       jtc 			flagch = BOW;
    787   1.1       jtc 		}
    788   1.3       jtc 		if ( (lastc != OUT && ISWORD(lastc)) &&
    789   1.3       jtc 				(flagch == EOL || (c != OUT && !ISWORD(c))) ) {
    790   1.1       jtc 			flagch = EOW;
    791   1.1       jtc 		}
    792   1.1       jtc 		if (flagch == BOW || flagch == EOW) {
    793   1.1       jtc 			st = step(m->g, startst, stopst, st, flagch, st);
    794   1.1       jtc 			SP("boweow", st, c);
    795   1.1       jtc 		}
    796   1.1       jtc 
    797   1.1       jtc 		/* are we done? */
    798   1.1       jtc 		if (ISSET(st, stopst) || p == stop)
    799   1.1       jtc 			break;		/* NOTE BREAK OUT */
    800   1.1       jtc 
    801   1.1       jtc 		/* no, we must deal with this character */
    802   1.1       jtc 		ASSIGN(tmp, st);
    803   1.1       jtc 		ASSIGN(st, fresh);
    804   1.1       jtc 		assert(c != OUT);
    805   1.1       jtc 		st = step(m->g, startst, stopst, tmp, c, st);
    806   1.1       jtc 		SP("aft", st, c);
    807   1.1       jtc 		assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
    808   1.1       jtc 		p++;
    809   1.1       jtc 	}
    810   1.1       jtc 
    811   1.1       jtc 	assert(coldp != NULL);
    812   1.1       jtc 	m->coldp = coldp;
    813   1.1       jtc 	if (ISSET(st, stopst))
    814   1.1       jtc 		return(p+1);
    815   1.1       jtc 	else
    816   1.1       jtc 		return(NULL);
    817   1.1       jtc }
    818   1.1       jtc 
    819   1.1       jtc /*
    820   1.1       jtc  - slow - step through the string more deliberately
    821   1.8     perry  == static char *slow(struct match *m, char *start, \
    822   1.1       jtc  ==	char *stop, sopno startst, sopno stopst);
    823   1.1       jtc  */
    824   1.1       jtc static char *			/* where it ended */
    825   1.1       jtc slow(m, start, stop, startst, stopst)
    826   1.8     perry struct match *m;
    827   1.1       jtc char *start;
    828   1.1       jtc char *stop;
    829   1.1       jtc sopno startst;
    830   1.1       jtc sopno stopst;
    831   1.1       jtc {
    832   1.8     perry 	states st = m->st;
    833   1.8     perry 	states empty = m->empty;
    834   1.8     perry 	states tmp = m->tmp;
    835   1.8     perry 	char *p = start;
    836   1.8     perry 	int c = (start == m->beginp) ? OUT : *(start-1);
    837   1.8     perry 	int lastc;	/* previous c */
    838   1.8     perry 	int flagch;
    839   1.8     perry 	int i;
    840   1.8     perry 	char *matchp;	/* last p at which a match ended */
    841   1.1       jtc 
    842  1.12     lukem 	_DIAGASSERT(m != NULL);
    843  1.12     lukem 	_DIAGASSERT(start != NULL);
    844  1.12     lukem 	_DIAGASSERT(stop != NULL);
    845  1.12     lukem 
    846   1.1       jtc 	AT("slow", start, stop, startst, stopst);
    847   1.1       jtc 	CLEAR(st);
    848   1.1       jtc 	SET1(st, startst);
    849   1.1       jtc 	SP("sstart", st, *p);
    850   1.1       jtc 	st = step(m->g, startst, stopst, st, NOTHING, st);
    851   1.1       jtc 	matchp = NULL;
    852   1.1       jtc 	for (;;) {
    853   1.1       jtc 		/* next character */
    854   1.1       jtc 		lastc = c;
    855   1.1       jtc 		c = (p == m->endp) ? OUT : *p;
    856   1.1       jtc 
    857   1.1       jtc 		/* is there an EOL and/or BOL between lastc and c? */
    858   1.1       jtc 		flagch = '\0';
    859   1.1       jtc 		i = 0;
    860   1.1       jtc 		if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
    861   1.1       jtc 				(lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
    862   1.1       jtc 			flagch = BOL;
    863   1.1       jtc 			i = m->g->nbol;
    864   1.1       jtc 		}
    865   1.1       jtc 		if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
    866   1.1       jtc 				(c == OUT && !(m->eflags&REG_NOTEOL)) ) {
    867   1.1       jtc 			flagch = (flagch == BOL) ? BOLEOL : EOL;
    868   1.1       jtc 			i += m->g->neol;
    869   1.1       jtc 		}
    870   1.1       jtc 		if (i != 0) {
    871   1.1       jtc 			for (; i > 0; i--)
    872   1.1       jtc 				st = step(m->g, startst, stopst, st, flagch, st);
    873   1.1       jtc 			SP("sboleol", st, c);
    874   1.1       jtc 		}
    875   1.1       jtc 
    876   1.1       jtc 		/* how about a word boundary? */
    877   1.3       jtc 		if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
    878   1.3       jtc 					(c != OUT && ISWORD(c)) ) {
    879   1.1       jtc 			flagch = BOW;
    880   1.1       jtc 		}
    881   1.3       jtc 		if ( (lastc != OUT && ISWORD(lastc)) &&
    882   1.3       jtc 				(flagch == EOL || (c != OUT && !ISWORD(c))) ) {
    883   1.1       jtc 			flagch = EOW;
    884   1.1       jtc 		}
    885   1.1       jtc 		if (flagch == BOW || flagch == EOW) {
    886   1.1       jtc 			st = step(m->g, startst, stopst, st, flagch, st);
    887   1.1       jtc 			SP("sboweow", st, c);
    888   1.1       jtc 		}
    889   1.1       jtc 
    890   1.1       jtc 		/* are we done? */
    891   1.1       jtc 		if (ISSET(st, stopst))
    892   1.1       jtc 			matchp = p;
    893   1.1       jtc 		if (EQ(st, empty) || p == stop)
    894   1.1       jtc 			break;		/* NOTE BREAK OUT */
    895   1.1       jtc 
    896   1.1       jtc 		/* no, we must deal with this character */
    897   1.1       jtc 		ASSIGN(tmp, st);
    898   1.1       jtc 		ASSIGN(st, empty);
    899   1.1       jtc 		assert(c != OUT);
    900   1.1       jtc 		st = step(m->g, startst, stopst, tmp, c, st);
    901   1.1       jtc 		SP("saft", st, c);
    902   1.1       jtc 		assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
    903   1.1       jtc 		p++;
    904   1.1       jtc 	}
    905   1.1       jtc 
    906   1.1       jtc 	return(matchp);
    907   1.1       jtc }
    908   1.1       jtc 
    909   1.1       jtc 
    910   1.1       jtc /*
    911   1.1       jtc  - step - map set of states reachable before char to set reachable after
    912   1.8     perry  == static states step(struct re_guts *g, sopno start, sopno stop, \
    913   1.8     perry  ==	states bef, int ch, states aft);
    914   1.1       jtc  == #define	BOL	(OUT+1)
    915   1.1       jtc  == #define	EOL	(BOL+1)
    916   1.1       jtc  == #define	BOLEOL	(BOL+2)
    917   1.1       jtc  == #define	NOTHING	(BOL+3)
    918   1.1       jtc  == #define	BOW	(BOL+4)
    919   1.1       jtc  == #define	EOW	(BOL+5)
    920   1.1       jtc  == #define	CODEMAX	(BOL+5)		// highest code used
    921   1.1       jtc  == #define	NONCHAR(c)	((c) > CHAR_MAX)
    922   1.1       jtc  == #define	NNONCHAR	(CODEMAX-CHAR_MAX)
    923   1.1       jtc  */
    924   1.1       jtc static states
    925   1.1       jtc step(g, start, stop, bef, ch, aft)
    926   1.8     perry struct re_guts *g;
    927   1.3       jtc sopno start;			/* start state within strip */
    928   1.3       jtc sopno stop;			/* state after stop state within strip */
    929   1.8     perry states bef;		/* states reachable before */
    930   1.1       jtc int ch;				/* character or NONCHAR code */
    931   1.8     perry states aft;		/* states already known reachable after */
    932   1.1       jtc {
    933   1.8     perry 	cset *cs;
    934   1.8     perry 	sop s;
    935   1.8     perry 	sopno pc;
    936   1.8     perry 	onestate here;		/* note, macros know this name */
    937   1.8     perry 	sopno look;
    938   1.8     perry 	int i;
    939   1.1       jtc 
    940  1.12     lukem 	_DIAGASSERT(g != NULL);
    941  1.12     lukem 
    942   1.1       jtc 	for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
    943   1.1       jtc 		s = g->strip[pc];
    944   1.1       jtc 		switch (OP(s)) {
    945   1.1       jtc 		case OEND:
    946   1.1       jtc 			assert(pc == stop-1);
    947   1.1       jtc 			break;
    948   1.1       jtc 		case OCHAR:
    949   1.1       jtc 			/* only characters can match */
    950   1.1       jtc 			assert(!NONCHAR(ch) || ch != (char)OPND(s));
    951   1.1       jtc 			if (ch == (char)OPND(s))
    952   1.1       jtc 				FWD(aft, bef, 1);
    953   1.1       jtc 			break;
    954   1.1       jtc 		case OBOL:
    955   1.1       jtc 			if (ch == BOL || ch == BOLEOL)
    956   1.1       jtc 				FWD(aft, bef, 1);
    957   1.1       jtc 			break;
    958   1.1       jtc 		case OEOL:
    959   1.1       jtc 			if (ch == EOL || ch == BOLEOL)
    960   1.1       jtc 				FWD(aft, bef, 1);
    961   1.1       jtc 			break;
    962   1.1       jtc 		case OBOW:
    963   1.1       jtc 			if (ch == BOW)
    964   1.1       jtc 				FWD(aft, bef, 1);
    965   1.1       jtc 			break;
    966   1.1       jtc 		case OEOW:
    967   1.1       jtc 			if (ch == EOW)
    968   1.1       jtc 				FWD(aft, bef, 1);
    969   1.1       jtc 			break;
    970   1.1       jtc 		case OANY:
    971   1.1       jtc 			if (!NONCHAR(ch))
    972   1.1       jtc 				FWD(aft, bef, 1);
    973   1.1       jtc 			break;
    974   1.1       jtc 		case OANYOF:
    975   1.1       jtc 			cs = &g->sets[OPND(s)];
    976   1.1       jtc 			if (!NONCHAR(ch) && CHIN(cs, ch))
    977   1.1       jtc 				FWD(aft, bef, 1);
    978   1.1       jtc 			break;
    979   1.1       jtc 		case OBACK_:		/* ignored here */
    980   1.1       jtc 		case O_BACK:
    981   1.1       jtc 			FWD(aft, aft, 1);
    982   1.1       jtc 			break;
    983   1.1       jtc 		case OPLUS_:		/* forward, this is just an empty */
    984   1.1       jtc 			FWD(aft, aft, 1);
    985   1.1       jtc 			break;
    986   1.1       jtc 		case O_PLUS:		/* both forward and back */
    987   1.1       jtc 			FWD(aft, aft, 1);
    988   1.1       jtc 			i = ISSETBACK(aft, OPND(s));
    989   1.1       jtc 			BACK(aft, aft, OPND(s));
    990   1.1       jtc 			if (!i && ISSETBACK(aft, OPND(s))) {
    991   1.1       jtc 				/* oho, must reconsider loop body */
    992   1.1       jtc 				pc -= OPND(s) + 1;
    993   1.1       jtc 				INIT(here, pc);
    994   1.1       jtc 			}
    995   1.1       jtc 			break;
    996   1.1       jtc 		case OQUEST_:		/* two branches, both forward */
    997   1.1       jtc 			FWD(aft, aft, 1);
    998   1.1       jtc 			FWD(aft, aft, OPND(s));
    999   1.1       jtc 			break;
   1000   1.1       jtc 		case O_QUEST:		/* just an empty */
   1001   1.1       jtc 			FWD(aft, aft, 1);
   1002   1.1       jtc 			break;
   1003   1.1       jtc 		case OLPAREN:		/* not significant here */
   1004   1.1       jtc 		case ORPAREN:
   1005   1.1       jtc 			FWD(aft, aft, 1);
   1006   1.1       jtc 			break;
   1007   1.1       jtc 		case OCH_:		/* mark the first two branches */
   1008   1.1       jtc 			FWD(aft, aft, 1);
   1009   1.1       jtc 			assert(OP(g->strip[pc+OPND(s)]) == OOR2);
   1010   1.1       jtc 			FWD(aft, aft, OPND(s));
   1011   1.1       jtc 			break;
   1012   1.1       jtc 		case OOR1:		/* done a branch, find the O_CH */
   1013   1.1       jtc 			if (ISSTATEIN(aft, here)) {
   1014   1.1       jtc 				for (look = 1;
   1015   1.1       jtc 						OP(s = g->strip[pc+look]) != O_CH;
   1016   1.1       jtc 						look += OPND(s))
   1017   1.1       jtc 					assert(OP(s) == OOR2);
   1018   1.1       jtc 				FWD(aft, aft, look);
   1019   1.1       jtc 			}
   1020   1.1       jtc 			break;
   1021   1.1       jtc 		case OOR2:		/* propagate OCH_'s marking */
   1022   1.1       jtc 			FWD(aft, aft, 1);
   1023   1.1       jtc 			if (OP(g->strip[pc+OPND(s)]) != O_CH) {
   1024   1.1       jtc 				assert(OP(g->strip[pc+OPND(s)]) == OOR2);
   1025   1.1       jtc 				FWD(aft, aft, OPND(s));
   1026   1.1       jtc 			}
   1027   1.1       jtc 			break;
   1028   1.1       jtc 		case O_CH:		/* just empty */
   1029   1.1       jtc 			FWD(aft, aft, 1);
   1030   1.1       jtc 			break;
   1031   1.1       jtc 		default:		/* ooooops... */
   1032   1.1       jtc 			assert(nope);
   1033   1.1       jtc 			break;
   1034   1.1       jtc 		}
   1035   1.1       jtc 	}
   1036   1.1       jtc 
   1037   1.1       jtc 	return(aft);
   1038   1.1       jtc }
   1039   1.1       jtc 
   1040   1.1       jtc #ifdef REDEBUG
   1041   1.1       jtc /*
   1042   1.1       jtc  - print - print a set of states
   1043   1.1       jtc  == #ifdef REDEBUG
   1044   1.1       jtc  == static void print(struct match *m, char *caption, states st, \
   1045   1.1       jtc  ==	int ch, FILE *d);
   1046   1.1       jtc  == #endif
   1047   1.1       jtc  */
   1048   1.1       jtc static void
   1049   1.1       jtc print(m, caption, st, ch, d)
   1050   1.1       jtc struct match *m;
   1051   1.1       jtc char *caption;
   1052   1.1       jtc states st;
   1053   1.1       jtc int ch;
   1054   1.1       jtc FILE *d;
   1055   1.1       jtc {
   1056   1.8     perry 	struct re_guts *g = m->g;
   1057   1.8     perry 	int i;
   1058   1.8     perry 	int first = 1;
   1059   1.1       jtc 
   1060  1.12     lukem 	_DIAGASSERT(m != NULL);
   1061  1.12     lukem 	_DIAGASSERT(caption != NULL);
   1062  1.12     lukem 
   1063   1.1       jtc 	if (!(m->eflags&REG_TRACE))
   1064   1.1       jtc 		return;
   1065   1.1       jtc 
   1066  1.12     lukem 	_DIAGASSERT(d != NULL);
   1067  1.12     lukem 
   1068   1.1       jtc 	fprintf(d, "%s", caption);
   1069   1.1       jtc 	if (ch != '\0')
   1070   1.1       jtc 		fprintf(d, " %s", pchar(ch));
   1071   1.1       jtc 	for (i = 0; i < g->nstates; i++)
   1072   1.1       jtc 		if (ISSET(st, i)) {
   1073   1.1       jtc 			fprintf(d, "%s%d", (first) ? "\t" : ", ", i);
   1074   1.1       jtc 			first = 0;
   1075   1.1       jtc 		}
   1076   1.1       jtc 	fprintf(d, "\n");
   1077   1.1       jtc }
   1078   1.1       jtc 
   1079   1.1       jtc /*
   1080   1.1       jtc  - at - print current situation
   1081   1.1       jtc  == #ifdef REDEBUG
   1082   1.1       jtc  == static void at(struct match *m, char *title, char *start, char *stop, \
   1083   1.1       jtc  ==						sopno startst, sopno stopst);
   1084   1.1       jtc  == #endif
   1085   1.1       jtc  */
   1086   1.1       jtc static void
   1087   1.1       jtc at(m, title, start, stop, startst, stopst)
   1088   1.1       jtc struct match *m;
   1089   1.1       jtc char *title;
   1090   1.1       jtc char *start;
   1091   1.1       jtc char *stop;
   1092   1.1       jtc sopno startst;
   1093   1.1       jtc sopno stopst;
   1094   1.1       jtc {
   1095  1.12     lukem 
   1096  1.12     lukem 	_DIAGASSERT(m != NULL);
   1097  1.12     lukem 	_DIAGASSERT(title != NULL);
   1098  1.12     lukem 	_DIAGASSERT(start != NULL);
   1099  1.12     lukem 	_DIAGASSERT(stop != NULL);
   1100  1.12     lukem 
   1101   1.1       jtc 	if (!(m->eflags&REG_TRACE))
   1102   1.1       jtc 		return;
   1103   1.1       jtc 
   1104   1.1       jtc 	printf("%s %s-", title, pchar(*start));
   1105   1.1       jtc 	printf("%s ", pchar(*stop));
   1106   1.1       jtc 	printf("%ld-%ld\n", (long)startst, (long)stopst);
   1107   1.1       jtc }
   1108   1.1       jtc 
   1109   1.1       jtc #ifndef PCHARDONE
   1110   1.1       jtc #define	PCHARDONE	/* never again */
   1111   1.1       jtc /*
   1112   1.1       jtc  - pchar - make a character printable
   1113   1.1       jtc  == #ifdef REDEBUG
   1114   1.1       jtc  == static char *pchar(int ch);
   1115   1.1       jtc  == #endif
   1116   1.1       jtc  *
   1117   1.1       jtc  * Is this identical to regchar() over in debug.c?  Well, yes.  But a
   1118   1.1       jtc  * duplicate here avoids having a debugging-capable regexec.o tied to
   1119   1.1       jtc  * a matching debug.o, and this is convenient.  It all disappears in
   1120   1.1       jtc  * the non-debug compilation anyway, so it doesn't matter much.
   1121   1.1       jtc  */
   1122   1.1       jtc static char *			/* -> representation */
   1123   1.1       jtc pchar(ch)
   1124   1.1       jtc int ch;
   1125   1.1       jtc {
   1126   1.1       jtc 	static char pbuf[10];
   1127   1.1       jtc 
   1128   1.1       jtc 	if (isprint(ch) || ch == ' ')
   1129   1.6       mrg 		(void)snprintf(pbuf, sizeof pbuf, "%c", ch);
   1130   1.1       jtc 	else
   1131   1.6       mrg 		(void)snprintf(pbuf, sizeof pbuf, "\\%o", ch);
   1132   1.1       jtc 	return(pbuf);
   1133   1.1       jtc }
   1134   1.1       jtc #endif
   1135   1.1       jtc #endif
   1136   1.1       jtc 
   1137   1.1       jtc #undef	matcher
   1138   1.1       jtc #undef	fast
   1139   1.1       jtc #undef	slow
   1140   1.1       jtc #undef	dissect
   1141   1.1       jtc #undef	backref
   1142   1.1       jtc #undef	step
   1143   1.1       jtc #undef	print
   1144   1.1       jtc #undef	at
   1145   1.1       jtc #undef	match
   1146