diff options
author | dds <dds@FreeBSD.org> | 2009-09-16 06:29:23 +0000 |
---|---|---|
committer | dds <dds@FreeBSD.org> | 2009-09-16 06:29:23 +0000 |
commit | 961cacc4b4c1af0eeac8f5fdde2bf3c7e3e6c392 (patch) | |
tree | 9bde9f9af41a691d36dd1e4b9c58bc102e1e6693 /lib/libc/regex/engine.c | |
parent | ded53b4033d64348edff9f7b9fe6d19d8d418ad2 (diff) | |
download | FreeBSD-src-961cacc4b4c1af0eeac8f5fdde2bf3c7e3e6c392.zip FreeBSD-src-961cacc4b4c1af0eeac8f5fdde2bf3c7e3e6c392.tar.gz |
Add a couple of debugging statements.
Diffstat (limited to 'lib/libc/regex/engine.c')
-rw-r--r-- | lib/libc/regex/engine.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc/regex/engine.c b/lib/libc/regex/engine.c index a44511b..4c3f555 100644 --- a/lib/libc/regex/engine.c +++ b/lib/libc/regex/engine.c @@ -247,6 +247,8 @@ matcher(struct re_guts *g, if (g->moffset > -1) start = ((dp - g->moffset) < start) ? start : dp - g->moffset; + SP("mloop", m->st, *start); + /* this loop does only one repetition except for backrefs */ for (;;) { endp = fast(m, start, stop, gf, gl); @@ -787,6 +789,7 @@ fast( struct match *m, CLEAR(st); SET1(st, startst); + SP("fast", st, *p); st = step(m->g, startst, stopst, st, NOTHING, st); ASSIGN(fresh, st); SP("start", st, *p); |