1 /* $NetBSD: debug.c,v 1.2 2011/10/10 04:32:41 christos Exp $ */
4 * Copyright (c) 1993 The NetBSD Foundation, Inc.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
36 #include <sys/types.h>
38 /* Don't sort these! */
42 #include "test_regex.h"
44 static void s_print(struct re_guts
*, FILE *);
45 static char *regchar(int);
48 * regprint - print a regexp for debugging
51 regprint(regex_t
*r
, FILE *d
)
53 struct re_guts
*g
= r
->re_g
;
58 fprintf(d
, "%ld states, %zu categories", (long)g
->nstates
,
60 fprintf(d
, ", first %ld last %ld", (long)g
->firststate
,
63 fprintf(d
, ", USEBOL");
65 fprintf(d
, ", USEEOL");
69 fprintf(d
, ", nsub=%ld", (long)g
->nsub
);
71 fprintf(d
, ", must(%ld) `%*s'", (long)g
->mlen
, (int)g
->mlen
,
74 fprintf(d
, ", backrefs");
76 fprintf(d
, ", nplus %ld", (long)g
->nplus
);
79 for (size_t i
= 0; i
< g
->ncategories
; i
++) {
81 for (c
= CHAR_MIN
; c
<= CHAR_MAX
; c
++)
82 if (g
->categories
[c
] == i
)
85 fprintf(d
, "cc0#%d", nincat
[0]);
86 for (size_t i
= 1; i
< g
->ncategories
; i
++)
88 for (c
= CHAR_MIN
; c
<= CHAR_MAX
; c
++)
89 if (g
->categories
[c
] == i
)
91 fprintf(d
, ", %zu=%s", i
, regchar(c
));
94 for (size_t i
= 1; i
< g
->ncategories
; i
++)
96 fprintf(d
, "cc%zu\t", i
);
98 for (c
= CHAR_MIN
; c
<= CHAR_MAX
+1; c
++) /* +1 does flush */
99 if (c
<= CHAR_MAX
&& g
->categories
[c
] == i
) {
101 fprintf(d
, "%s", regchar(c
));
117 * s_print - print the strip for debugging
120 s_print(struct re_guts
*g
, FILE *d
)
129 # define GAP() { if (offset % 5 == 0) { \
131 fprintf(d, "\n\t"); \
142 if (OP(g
->strip
[0]) != OEND
)
143 fprintf(d
, "missing initial OEND!\n");
144 for (s
= &g
->strip
[1]; !done
; s
++) {
152 if (strchr("\\|()^$.[+*?{}!<> ", (char)opnd
) != NULL
)
153 fprintf(d
, "\\%c", (char)opnd
);
155 fprintf(d
, "%s", regchar((char)opnd
));
173 fprintf(d
, "[(%ld)", (long)opnd
);
176 for (size_t i
= 0; i
< g
->csetsize
+1; i
++) /* +1 flushes */
177 if (CHIN(cs
, i
) && i
< g
->csetsize
) {
179 fprintf(d
, "%s", regchar(i
));
184 if (last
!= (ssize_t
)i
- 1)
193 fprintf(d
, "(\\<%ld>", (long)opnd
);
196 fprintf(d
, "<%ld>\\)", (long)opnd
);
200 if (OP(*(s
+opnd
)) != O_PLUS
)
201 fprintf(d
, "<%ld>", (long)opnd
);
204 if (OP(*(s
-opnd
)) != OPLUS_
)
205 fprintf(d
, "<%ld>", (long)opnd
);
210 if (OP(*(s
+opnd
)) != O_QUEST
)
211 fprintf(d
, "<%ld>", (long)opnd
);
214 if (OP(*(s
-opnd
)) != OQUEST_
)
215 fprintf(d
, "<%ld>", (long)opnd
);
219 fprintf(d
, "((<%ld>", (long)opnd
);
222 fprintf(d
, "<%ld>))", (long)opnd
);
226 if (OP(*(s
+opnd
)) != OOR2
)
227 fprintf(d
, "<%ld>", (long)opnd
);
230 if (OP(*(s
-opnd
)) != OOR1
&& OP(*(s
-opnd
)) != OCH_
)
231 fprintf(d
, "<%ld>", (long)opnd
);
236 if (OP(*(s
+opnd
)) != OOR2
&& OP(*(s
+opnd
)) != O_CH
)
237 fprintf(d
, "<%ld>", (long)opnd
);
240 if (OP(*(s
-opnd
)) != OOR1
)
241 fprintf(d
, "<%ld>", (long)opnd
);
245 fprintf(d
, "!%d(%d)!", OP(*s
), opnd
);
254 * regchar - make a character printable
256 static char * /* -> representation */
261 if (isprint(ch
) || ch
== ' ')
262 sprintf(buf
, "%c", ch
);
264 sprintf(buf
, "\\%o", ch
);