GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / scripts / unifdef.c
bloba34ddb46645bf7098979dd0e0e3d3551bce41034
1 /*
2 * Copyright (c) 2002 - 2009 Tony Finch <dot@dotat.at>
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
27 * This code was derived from software contributed to Berkeley by Dave Yost.
28 * It was rewritten to support ANSI C by Tony Finch. The original version
29 * of unifdef carried the 4-clause BSD copyright licence. None of its code
30 * remains in this version (though some of the names remain) so it now
31 * carries a more liberal licence.
33 * The latest version is available from http://dotat.at/prog/unifdef
36 static const char * const copyright[] = {
37 "@(#) Copyright (c) 2002 - 2009 Tony Finch <dot@dotat.at>\n",
38 "$dotat: unifdef/unifdef.c,v 1.190 2009/11/27 17:21:26 fanf2 Exp $",
42 * unifdef - remove ifdef'ed lines
44 * Wishlist:
45 * provide an option which will append the name of the
46 * appropriate symbol after #else's and #endif's
47 * provide an option which will check symbols after
48 * #else's and #endif's to see that they match their
49 * corresponding #ifdef or #ifndef
51 * The first two items above require better buffer handling, which would
52 * also make it possible to handle all "dodgy" directives correctly.
55 #include <ctype.h>
56 #include <err.h>
57 #include <stdarg.h>
58 #include <stdbool.h>
59 #include <stdio.h>
60 #include <stdlib.h>
61 #include <string.h>
62 #include <unistd.h>
64 /* types of input lines: */
65 typedef enum {
66 LT_TRUEI, /* a true #if with ignore flag */
67 LT_FALSEI, /* a false #if with ignore flag */
68 LT_IF, /* an unknown #if */
69 LT_TRUE, /* a true #if */
70 LT_FALSE, /* a false #if */
71 LT_ELIF, /* an unknown #elif */
72 LT_ELTRUE, /* a true #elif */
73 LT_ELFALSE, /* a false #elif */
74 LT_ELSE, /* #else */
75 LT_ENDIF, /* #endif */
76 LT_DODGY, /* flag: directive is not on one line */
77 LT_DODGY_LAST = LT_DODGY + LT_ENDIF,
78 LT_PLAIN, /* ordinary line */
79 LT_EOF, /* end of file */
80 LT_ERROR, /* unevaluable #if */
81 LT_COUNT
82 } Linetype;
84 static char const * const linetype_name[] = {
85 "TRUEI", "FALSEI", "IF", "TRUE", "FALSE",
86 "ELIF", "ELTRUE", "ELFALSE", "ELSE", "ENDIF",
87 "DODGY TRUEI", "DODGY FALSEI",
88 "DODGY IF", "DODGY TRUE", "DODGY FALSE",
89 "DODGY ELIF", "DODGY ELTRUE", "DODGY ELFALSE",
90 "DODGY ELSE", "DODGY ENDIF",
91 "PLAIN", "EOF", "ERROR"
94 /* state of #if processing */
95 typedef enum {
96 IS_OUTSIDE,
97 IS_FALSE_PREFIX, /* false #if followed by false #elifs */
98 IS_TRUE_PREFIX, /* first non-false #(el)if is true */
99 IS_PASS_MIDDLE, /* first non-false #(el)if is unknown */
100 IS_FALSE_MIDDLE, /* a false #elif after a pass state */
101 IS_TRUE_MIDDLE, /* a true #elif after a pass state */
102 IS_PASS_ELSE, /* an else after a pass state */
103 IS_FALSE_ELSE, /* an else after a true state */
104 IS_TRUE_ELSE, /* an else after only false states */
105 IS_FALSE_TRAILER, /* #elifs after a true are false */
106 IS_COUNT
107 } Ifstate;
109 static char const * const ifstate_name[] = {
110 "OUTSIDE", "FALSE_PREFIX", "TRUE_PREFIX",
111 "PASS_MIDDLE", "FALSE_MIDDLE", "TRUE_MIDDLE",
112 "PASS_ELSE", "FALSE_ELSE", "TRUE_ELSE",
113 "FALSE_TRAILER"
116 /* state of comment parser */
117 typedef enum {
118 NO_COMMENT = false, /* outside a comment */
119 C_COMMENT, /* in a comment like this one */
120 CXX_COMMENT, /* between // and end of line */
121 STARTING_COMMENT, /* just after slash-backslash-newline */
122 FINISHING_COMMENT, /* star-backslash-newline in a C comment */
123 CHAR_LITERAL, /* inside '' */
124 STRING_LITERAL /* inside "" */
125 } Comment_state;
127 static char const * const comment_name[] = {
128 "NO", "C", "CXX", "STARTING", "FINISHING", "CHAR", "STRING"
131 /* state of preprocessor line parser */
132 typedef enum {
133 LS_START, /* only space and comments on this line */
134 LS_HASH, /* only space, comments, and a hash */
135 LS_DIRTY /* this line can't be a preprocessor line */
136 } Line_state;
138 static char const * const linestate_name[] = {
139 "START", "HASH", "DIRTY"
143 * Minimum translation limits from ISO/IEC 9899:1999 5.2.4.1
145 #define MAXDEPTH 64 /* maximum #if nesting */
146 #define MAXLINE 4096 /* maximum length of line */
147 #define MAXSYMS 4096 /* maximum number of symbols */
150 * Sometimes when editing a keyword the replacement text is longer, so
151 * we leave some space at the end of the tline buffer to accommodate this.
153 #define EDITSLOP 10
156 * Globals.
159 static bool compblank; /* -B: compress blank lines */
160 static bool lnblank; /* -b: blank deleted lines */
161 static bool complement; /* -c: do the complement */
162 static bool debugging; /* -d: debugging reports */
163 static bool iocccok; /* -e: fewer IOCCC errors */
164 static bool strictlogic; /* -K: keep ambiguous #ifs */
165 static bool killconsts; /* -k: eval constant #ifs */
166 static bool lnnum; /* -n: add #line directives */
167 static bool symlist; /* -s: output symbol list */
168 static bool text; /* -t: this is a text file */
170 static const char *symname[MAXSYMS]; /* symbol name */
171 static const char *value[MAXSYMS]; /* -Dsym=value */
172 static bool ignore[MAXSYMS]; /* -iDsym or -iUsym */
173 static int nsyms; /* number of symbols */
175 static FILE *input; /* input file pointer */
176 static const char *filename; /* input file name */
177 static int linenum; /* current line number */
179 static char tline[MAXLINE+EDITSLOP];/* input buffer plus space */
180 static char *keyword; /* used for editing #elif's */
182 static Comment_state incomment; /* comment parser state */
183 static Line_state linestate; /* #if line parser state */
184 static Ifstate ifstate[MAXDEPTH]; /* #if processor state */
185 static bool ignoring[MAXDEPTH]; /* ignore comments state */
186 static int stifline[MAXDEPTH]; /* start of current #if */
187 static int depth; /* current #if nesting */
188 static int delcount; /* count of deleted lines */
189 static unsigned blankcount; /* count of blank lines */
190 static unsigned blankmax; /* maximum recent blankcount */
191 static bool constexpr; /* constant #if expression */
193 static int exitstat; /* program exit status */
195 static void addsym(bool, bool, char *);
196 static void debug(const char *, ...);
197 static void done(void);
198 static void error(const char *);
199 static int findsym(const char *);
200 static void flushline(bool);
201 static Linetype parseline(void);
202 static Linetype ifeval(const char **);
203 static void ignoreoff(void);
204 static void ignoreon(void);
205 static void keywordedit(const char *);
206 static void nest(void);
207 static void process(void);
208 static const char *skipargs(const char *);
209 static const char *skipcomment(const char *);
210 static const char *skipsym(const char *);
211 static void state(Ifstate);
212 static int strlcmp(const char *, const char *, size_t);
213 static void unnest(void);
214 static void usage(void);
216 #define endsym(c) (!isalnum((unsigned char)c) && c != '_')
219 * The main program.
222 main(int argc, char *argv[])
224 int opt;
226 while ((opt = getopt(argc, argv, "i:D:U:I:BbcdeKklnst")) != -1)
227 switch (opt) {
228 case 'i': /* treat stuff controlled by these symbols as text */
230 * For strict backwards-compatibility the U or D
231 * should be immediately after the -i but it doesn't
232 * matter much if we relax that requirement.
234 opt = *optarg++;
235 if (opt == 'D')
236 addsym(true, true, optarg);
237 else if (opt == 'U')
238 addsym(true, false, optarg);
239 else
240 usage();
241 break;
242 case 'D': /* define a symbol */
243 addsym(false, true, optarg);
244 break;
245 case 'U': /* undef a symbol */
246 addsym(false, false, optarg);
247 break;
248 case 'I':
249 /* no-op for compatibility with cpp */
250 break;
251 case 'B': /* compress blank lines around removed section */
252 compblank = true;
253 break;
254 case 'b': /* blank deleted lines instead of omitting them */
255 case 'l': /* backwards compatibility */
256 lnblank = true;
257 break;
258 case 'c': /* treat -D as -U and vice versa */
259 complement = true;
260 break;
261 case 'd':
262 debugging = true;
263 break;
264 case 'e': /* fewer errors from dodgy lines */
265 iocccok = true;
266 break;
267 case 'K': /* keep ambiguous #ifs */
268 strictlogic = true;
269 break;
270 case 'k': /* process constant #ifs */
271 killconsts = true;
272 break;
273 case 'n': /* add #line directive after deleted lines */
274 lnnum = true;
275 break;
276 case 's': /* only output list of symbols that control #ifs */
277 symlist = true;
278 break;
279 case 't': /* don't parse C comments */
280 text = true;
281 break;
282 default:
283 usage();
285 argc -= optind;
286 argv += optind;
287 if (compblank && lnblank)
288 errx(2, "-B and -b are mutually exclusive");
289 if (argc > 1) {
290 errx(2, "can only do one file");
291 } else if (argc == 1 && strcmp(*argv, "-") != 0) {
292 filename = *argv;
293 input = fopen(filename, "r");
294 if (input == NULL)
295 err(2, "can't open %s", filename);
296 } else {
297 filename = "[stdin]";
298 input = stdin;
300 process();
301 abort(); /* bug */
304 static void
305 usage(void)
307 fprintf(stderr, "usage: unifdef [-BbcdeKknst] [-Ipath]"
308 " [-Dsym[=val]] [-Usym] [-iDsym[=val]] [-iUsym] ... [file]\n");
309 exit(2);
313 * A state transition function alters the global #if processing state
314 * in a particular way. The table below is indexed by the current
315 * processing state and the type of the current line.
317 * Nesting is handled by keeping a stack of states; some transition
318 * functions increase or decrease the depth. They also maintain the
319 * ignore state on a stack. In some complicated cases they have to
320 * alter the preprocessor directive, as follows.
322 * When we have processed a group that starts off with a known-false
323 * #if/#elif sequence (which has therefore been deleted) followed by a
324 * #elif that we don't understand and therefore must keep, we edit the
325 * latter into a #if to keep the nesting correct.
327 * When we find a true #elif in a group, the following block will
328 * always be kept and the rest of the sequence after the next #elif or
329 * #else will be discarded. We edit the #elif into a #else and the
330 * following directive to #endif since this has the desired behaviour.
332 * "Dodgy" directives are split across multiple lines, the most common
333 * example being a multi-line comment hanging off the right of the
334 * directive. We can handle them correctly only if there is no change
335 * from printing to dropping (or vice versa) caused by that directive.
336 * If the directive is the first of a group we have a choice between
337 * failing with an error, or passing it through unchanged instead of
338 * evaluating it. The latter is not the default to avoid questions from
339 * users about unifdef unexpectedly leaving behind preprocessor directives.
341 typedef void state_fn(void);
343 /* report an error */
344 static void Eelif (void) { error("Inappropriate #elif"); }
345 static void Eelse (void) { error("Inappropriate #else"); }
346 static void Eendif(void) { error("Inappropriate #endif"); }
347 static void Eeof (void) { error("Premature EOF"); }
348 static void Eioccc(void) { error("Obfuscated preprocessor control line"); }
349 /* plain line handling */
350 static void print (void) { flushline(true); }
351 static void drop (void) { flushline(false); }
352 /* output lacks group's start line */
353 static void Strue (void) { drop(); ignoreoff(); state(IS_TRUE_PREFIX); }
354 static void Sfalse(void) { drop(); ignoreoff(); state(IS_FALSE_PREFIX); }
355 static void Selse (void) { drop(); state(IS_TRUE_ELSE); }
356 /* print/pass this block */
357 static void Pelif (void) { print(); ignoreoff(); state(IS_PASS_MIDDLE); }
358 static void Pelse (void) { print(); state(IS_PASS_ELSE); }
359 static void Pendif(void) { print(); unnest(); }
360 /* discard this block */
361 static void Dfalse(void) { drop(); ignoreoff(); state(IS_FALSE_TRAILER); }
362 static void Delif (void) { drop(); ignoreoff(); state(IS_FALSE_MIDDLE); }
363 static void Delse (void) { drop(); state(IS_FALSE_ELSE); }
364 static void Dendif(void) { drop(); unnest(); }
365 /* first line of group */
366 static void Fdrop (void) { nest(); Dfalse(); }
367 static void Fpass (void) { nest(); Pelif(); }
368 static void Ftrue (void) { nest(); Strue(); }
369 static void Ffalse(void) { nest(); Sfalse(); }
370 /* variable pedantry for obfuscated lines */
371 static void Oiffy (void) { if (!iocccok) Eioccc(); Fpass(); ignoreon(); }
372 static void Oif (void) { if (!iocccok) Eioccc(); Fpass(); }
373 static void Oelif (void) { if (!iocccok) Eioccc(); Pelif(); }
374 /* ignore comments in this block */
375 static void Idrop (void) { Fdrop(); ignoreon(); }
376 static void Itrue (void) { Ftrue(); ignoreon(); }
377 static void Ifalse(void) { Ffalse(); ignoreon(); }
378 /* edit this line */
379 static void Mpass (void) { strncpy(keyword, "if ", 4); Pelif(); }
380 static void Mtrue (void) { keywordedit("else\n"); state(IS_TRUE_MIDDLE); }
381 static void Melif (void) { keywordedit("endif\n"); state(IS_FALSE_TRAILER); }
382 static void Melse (void) { keywordedit("endif\n"); state(IS_FALSE_ELSE); }
384 static state_fn * const trans_table[IS_COUNT][LT_COUNT] = {
385 /* IS_OUTSIDE */
386 { Itrue, Ifalse,Fpass, Ftrue, Ffalse,Eelif, Eelif, Eelif, Eelse, Eendif,
387 Oiffy, Oiffy, Fpass, Oif, Oif, Eelif, Eelif, Eelif, Eelse, Eendif,
388 print, done, abort },
389 /* IS_FALSE_PREFIX */
390 { Idrop, Idrop, Fdrop, Fdrop, Fdrop, Mpass, Strue, Sfalse,Selse, Dendif,
391 Idrop, Idrop, Fdrop, Fdrop, Fdrop, Mpass, Eioccc,Eioccc,Eioccc,Eioccc,
392 drop, Eeof, abort },
393 /* IS_TRUE_PREFIX */
394 { Itrue, Ifalse,Fpass, Ftrue, Ffalse,Dfalse,Dfalse,Dfalse,Delse, Dendif,
395 Oiffy, Oiffy, Fpass, Oif, Oif, Eioccc,Eioccc,Eioccc,Eioccc,Eioccc,
396 print, Eeof, abort },
397 /* IS_PASS_MIDDLE */
398 { Itrue, Ifalse,Fpass, Ftrue, Ffalse,Pelif, Mtrue, Delif, Pelse, Pendif,
399 Oiffy, Oiffy, Fpass, Oif, Oif, Pelif, Oelif, Oelif, Pelse, Pendif,
400 print, Eeof, abort },
401 /* IS_FALSE_MIDDLE */
402 { Idrop, Idrop, Fdrop, Fdrop, Fdrop, Pelif, Mtrue, Delif, Pelse, Pendif,
403 Idrop, Idrop, Fdrop, Fdrop, Fdrop, Eioccc,Eioccc,Eioccc,Eioccc,Eioccc,
404 drop, Eeof, abort },
405 /* IS_TRUE_MIDDLE */
406 { Itrue, Ifalse,Fpass, Ftrue, Ffalse,Melif, Melif, Melif, Melse, Pendif,
407 Oiffy, Oiffy, Fpass, Oif, Oif, Eioccc,Eioccc,Eioccc,Eioccc,Pendif,
408 print, Eeof, abort },
409 /* IS_PASS_ELSE */
410 { Itrue, Ifalse,Fpass, Ftrue, Ffalse,Eelif, Eelif, Eelif, Eelse, Pendif,
411 Oiffy, Oiffy, Fpass, Oif, Oif, Eelif, Eelif, Eelif, Eelse, Pendif,
412 print, Eeof, abort },
413 /* IS_FALSE_ELSE */
414 { Idrop, Idrop, Fdrop, Fdrop, Fdrop, Eelif, Eelif, Eelif, Eelse, Dendif,
415 Idrop, Idrop, Fdrop, Fdrop, Fdrop, Eelif, Eelif, Eelif, Eelse, Eioccc,
416 drop, Eeof, abort },
417 /* IS_TRUE_ELSE */
418 { Itrue, Ifalse,Fpass, Ftrue, Ffalse,Eelif, Eelif, Eelif, Eelse, Dendif,
419 Oiffy, Oiffy, Fpass, Oif, Oif, Eelif, Eelif, Eelif, Eelse, Eioccc,
420 print, Eeof, abort },
421 /* IS_FALSE_TRAILER */
422 { Idrop, Idrop, Fdrop, Fdrop, Fdrop, Dfalse,Dfalse,Dfalse,Delse, Dendif,
423 Idrop, Idrop, Fdrop, Fdrop, Fdrop, Dfalse,Dfalse,Dfalse,Delse, Eioccc,
424 drop, Eeof, abort }
425 /*TRUEI FALSEI IF TRUE FALSE ELIF ELTRUE ELFALSE ELSE ENDIF
426 TRUEI FALSEI IF TRUE FALSE ELIF ELTRUE ELFALSE ELSE ENDIF (DODGY)
427 PLAIN EOF ERROR */
431 * State machine utility functions
433 static void
434 done(void)
436 if (incomment)
437 error("EOF in comment");
438 exit(exitstat);
440 static void
441 ignoreoff(void)
443 if (depth == 0)
444 abort(); /* bug */
445 ignoring[depth] = ignoring[depth-1];
447 static void
448 ignoreon(void)
450 ignoring[depth] = true;
452 static void
453 keywordedit(const char *replacement)
455 size_t size = tline + sizeof(tline) - keyword;
456 char *dst = keyword;
457 const char *src = replacement;
458 if (size != 0) {
459 while ((--size != 0) && (*src != '\0'))
460 *dst++ = *src++;
461 *dst = '\0';
463 print();
465 static void
466 nest(void)
468 if (depth > MAXDEPTH-1)
469 abort(); /* bug */
470 if (depth == MAXDEPTH-1)
471 error("Too many levels of nesting");
472 depth += 1;
473 stifline[depth] = linenum;
475 static void
476 unnest(void)
478 if (depth == 0)
479 abort(); /* bug */
480 depth -= 1;
482 static void
483 state(Ifstate is)
485 ifstate[depth] = is;
489 * Write a line to the output or not, according to command line options.
491 static void
492 flushline(bool keep)
494 if (symlist)
495 return;
496 if (keep ^ complement) {
497 bool blankline = tline[strspn(tline, " \t\n")] == '\0';
498 if (blankline && compblank && blankcount != blankmax) {
499 delcount += 1;
500 blankcount += 1;
501 } else {
502 if (lnnum && delcount > 0)
503 printf("#line %d\n", linenum);
504 fputs(tline, stdout);
505 delcount = 0;
506 blankmax = blankcount = blankline ? blankcount + 1 : 0;
508 } else {
509 if (lnblank)
510 putc('\n', stdout);
511 exitstat = 1;
512 delcount += 1;
513 blankcount = 0;
518 * The driver for the state machine.
520 static void
521 process(void)
523 Linetype lineval;
525 /* When compressing blank lines, act as if the file
526 is preceded by a large number of blank lines. */
527 blankmax = blankcount = 1000;
528 for (;;) {
529 linenum++;
530 lineval = parseline();
531 trans_table[ifstate[depth]][lineval]();
532 debug("process %s -> %s depth %d",
533 linetype_name[lineval],
534 ifstate_name[ifstate[depth]], depth);
539 * Parse a line and determine its type. We keep the preprocessor line
540 * parser state between calls in the global variable linestate, with
541 * help from skipcomment().
543 static Linetype
544 parseline(void)
546 const char *cp;
547 int cursym;
548 int kwlen;
549 Linetype retval;
550 Comment_state wascomment;
552 if (fgets(tline, MAXLINE, input) == NULL)
553 return (LT_EOF);
554 retval = LT_PLAIN;
555 wascomment = incomment;
556 cp = skipcomment(tline);
557 if (linestate == LS_START) {
558 if (*cp == '#') {
559 linestate = LS_HASH;
560 cp = skipcomment(cp + 1);
561 } else if (*cp != '\0')
562 linestate = LS_DIRTY;
564 if (!incomment && linestate == LS_HASH) {
565 keyword = tline + (cp - tline);
566 cp = skipsym(cp);
567 kwlen = cp - keyword;
568 /* no way can we deal with a continuation inside a keyword */
569 if (strncmp(cp, "\\\n", 2) == 0)
570 Eioccc();
571 if (strlcmp("ifdef", keyword, kwlen) == 0 ||
572 strlcmp("ifndef", keyword, kwlen) == 0) {
573 cp = skipcomment(cp);
574 if ((cursym = findsym(cp)) < 0)
575 retval = LT_IF;
576 else {
577 retval = (keyword[2] == 'n')
578 ? LT_FALSE : LT_TRUE;
579 if (value[cursym] == NULL)
580 retval = (retval == LT_TRUE)
581 ? LT_FALSE : LT_TRUE;
582 if (ignore[cursym])
583 retval = (retval == LT_TRUE)
584 ? LT_TRUEI : LT_FALSEI;
586 cp = skipsym(cp);
587 } else if (strlcmp("if", keyword, kwlen) == 0)
588 retval = ifeval(&cp);
589 else if (strlcmp("elif", keyword, kwlen) == 0)
590 retval = ifeval(&cp) - LT_IF + LT_ELIF;
591 else if (strlcmp("else", keyword, kwlen) == 0)
592 retval = LT_ELSE;
593 else if (strlcmp("endif", keyword, kwlen) == 0)
594 retval = LT_ENDIF;
595 else {
596 linestate = LS_DIRTY;
597 retval = LT_PLAIN;
599 cp = skipcomment(cp);
600 if (*cp != '\0') {
601 linestate = LS_DIRTY;
602 if (retval == LT_TRUE || retval == LT_FALSE ||
603 retval == LT_TRUEI || retval == LT_FALSEI)
604 retval = LT_IF;
605 if (retval == LT_ELTRUE || retval == LT_ELFALSE)
606 retval = LT_ELIF;
608 if (retval != LT_PLAIN && (wascomment || incomment)) {
609 retval += LT_DODGY;
610 if (incomment)
611 linestate = LS_DIRTY;
613 /* skipcomment normally changes the state, except
614 if the last line of the file lacks a newline, or
615 if there is too much whitespace in a directive */
616 if (linestate == LS_HASH) {
617 size_t len = cp - tline;
618 if (fgets(tline + len, MAXLINE - len, input) == NULL) {
619 /* append the missing newline */
620 tline[len+0] = '\n';
621 tline[len+1] = '\0';
622 cp++;
623 linestate = LS_START;
624 } else {
625 linestate = LS_DIRTY;
629 if (linestate == LS_DIRTY) {
630 while (*cp != '\0')
631 cp = skipcomment(cp + 1);
633 debug("parser %s comment %s line",
634 comment_name[incomment], linestate_name[linestate]);
635 return (retval);
639 * These are the binary operators that are supported by the expression
640 * evaluator.
642 static Linetype op_strict(int *p, int v, Linetype at, Linetype bt) {
643 if(at == LT_IF || bt == LT_IF) return (LT_IF);
644 return (*p = v, v ? LT_TRUE : LT_FALSE);
646 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) {
647 return op_strict(p, a < b, at, bt);
649 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) {
650 return op_strict(p, a > b, at, bt);
652 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) {
653 return op_strict(p, a <= b, at, bt);
655 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) {
656 return op_strict(p, a >= b, at, bt);
658 static Linetype op_eq(int *p, Linetype at, int a, Linetype bt, int b) {
659 return op_strict(p, a == b, at, bt);
661 static Linetype op_ne(int *p, Linetype at, int a, Linetype bt, int b) {
662 return op_strict(p, a != b, at, bt);
664 static Linetype op_or(int *p, Linetype at, int a, Linetype bt, int b) {
665 if (!strictlogic && (at == LT_TRUE || bt == LT_TRUE))
666 return (*p = 1, LT_TRUE);
667 return op_strict(p, a || b, at, bt);
669 static Linetype op_and(int *p, Linetype at, int a, Linetype bt, int b) {
670 if (!strictlogic && (at == LT_FALSE || bt == LT_FALSE))
671 return (*p = 0, LT_FALSE);
672 return op_strict(p, a && b, at, bt);
676 * An evaluation function takes three arguments, as follows: (1) a pointer to
677 * an element of the precedence table which lists the operators at the current
678 * level of precedence; (2) a pointer to an integer which will receive the
679 * value of the expression; and (3) a pointer to a char* that points to the
680 * expression to be evaluated and that is updated to the end of the expression
681 * when evaluation is complete. The function returns LT_FALSE if the value of
682 * the expression is zero, LT_TRUE if it is non-zero, LT_IF if the expression
683 * depends on an unknown symbol, or LT_ERROR if there is a parse failure.
685 struct ops;
687 typedef Linetype eval_fn(const struct ops *, int *, const char **);
689 static eval_fn eval_table, eval_unary;
692 * The precedence table. Expressions involving binary operators are evaluated
693 * in a table-driven way by eval_table. When it evaluates a subexpression it
694 * calls the inner function with its first argument pointing to the next
695 * element of the table. Innermost expressions have special non-table-driven
696 * handling.
698 static const struct ops {
699 eval_fn *inner;
700 struct op {
701 const char *str;
702 Linetype (*fn)(int *, Linetype, int, Linetype, int);
703 } op[5];
704 } eval_ops[] = {
705 { eval_table, { { "||", op_or } } },
706 { eval_table, { { "&&", op_and } } },
707 { eval_table, { { "==", op_eq },
708 { "!=", op_ne } } },
709 { eval_unary, { { "<=", op_le },
710 { ">=", op_ge },
711 { "<", op_lt },
712 { ">", op_gt } } }
716 * Function for evaluating the innermost parts of expressions,
717 * viz. !expr (expr) number defined(symbol) symbol
718 * We reset the constexpr flag in the last two cases.
720 static Linetype
721 eval_unary(const struct ops *ops, int *valp, const char **cpp)
723 const char *cp;
724 char *ep;
725 int sym;
726 bool defparen;
727 Linetype lt;
729 cp = skipcomment(*cpp);
730 if (*cp == '!') {
731 debug("eval%d !", ops - eval_ops);
732 cp++;
733 lt = eval_unary(ops, valp, &cp);
734 if (lt == LT_ERROR)
735 return (LT_ERROR);
736 if (lt != LT_IF) {
737 *valp = !*valp;
738 lt = *valp ? LT_TRUE : LT_FALSE;
740 } else if (*cp == '(') {
741 cp++;
742 debug("eval%d (", ops - eval_ops);
743 lt = eval_table(eval_ops, valp, &cp);
744 if (lt == LT_ERROR)
745 return (LT_ERROR);
746 cp = skipcomment(cp);
747 if (*cp++ != ')')
748 return (LT_ERROR);
749 } else if (isdigit((unsigned char)*cp)) {
750 debug("eval%d number", ops - eval_ops);
751 *valp = strtol(cp, &ep, 0);
752 if (ep == cp)
753 return (LT_ERROR);
754 lt = *valp ? LT_TRUE : LT_FALSE;
755 cp = skipsym(cp);
756 } else if (strncmp(cp, "defined", 7) == 0 && endsym(cp[7])) {
757 cp = skipcomment(cp+7);
758 debug("eval%d defined", ops - eval_ops);
759 if (*cp == '(') {
760 cp = skipcomment(cp+1);
761 defparen = true;
762 } else {
763 defparen = false;
765 sym = findsym(cp);
766 if (sym < 0) {
767 lt = LT_IF;
768 } else {
769 *valp = (value[sym] != NULL);
770 lt = *valp ? LT_TRUE : LT_FALSE;
772 cp = skipsym(cp);
773 cp = skipcomment(cp);
774 if (defparen && *cp++ != ')')
775 return (LT_ERROR);
776 constexpr = false;
777 } else if (!endsym(*cp)) {
778 debug("eval%d symbol", ops - eval_ops);
779 sym = findsym(cp);
780 cp = skipsym(cp);
781 if (sym < 0) {
782 lt = LT_IF;
783 cp = skipargs(cp);
784 } else if (value[sym] == NULL) {
785 *valp = 0;
786 lt = LT_FALSE;
787 } else {
788 *valp = strtol(value[sym], &ep, 0);
789 if (*ep != '\0' || ep == value[sym])
790 return (LT_ERROR);
791 lt = *valp ? LT_TRUE : LT_FALSE;
792 cp = skipargs(cp);
794 constexpr = false;
795 } else {
796 debug("eval%d bad expr", ops - eval_ops);
797 return (LT_ERROR);
800 *cpp = cp;
801 debug("eval%d = %d", ops - eval_ops, *valp);
802 return (lt);
806 * Table-driven evaluation of binary operators.
808 static Linetype
809 eval_table(const struct ops *ops, int *valp, const char **cpp)
811 const struct op *op;
812 const char *cp;
813 int val;
814 Linetype lt, rt;
816 debug("eval%d", ops - eval_ops);
817 cp = *cpp;
818 lt = ops->inner(ops+1, valp, &cp);
819 if (lt == LT_ERROR)
820 return (LT_ERROR);
821 for (;;) {
822 cp = skipcomment(cp);
823 for (op = ops->op; op->str != NULL; op++)
824 if (strncmp(cp, op->str, strlen(op->str)) == 0)
825 break;
826 if (op->str == NULL)
827 break;
828 cp += strlen(op->str);
829 debug("eval%d %s", ops - eval_ops, op->str);
830 rt = ops->inner(ops+1, &val, &cp);
831 if (rt == LT_ERROR)
832 return (LT_ERROR);
833 lt = op->fn(valp, lt, *valp, rt, val);
836 *cpp = cp;
837 debug("eval%d = %d", ops - eval_ops, *valp);
838 debug("eval%d lt = %s", ops - eval_ops, linetype_name[lt]);
839 return (lt);
843 * Evaluate the expression on a #if or #elif line. If we can work out
844 * the result we return LT_TRUE or LT_FALSE accordingly, otherwise we
845 * return just a generic LT_IF.
847 static Linetype
848 ifeval(const char **cpp)
850 int ret;
851 int val = 0;
853 debug("eval %s", *cpp);
854 constexpr = killconsts ? false : true;
855 ret = eval_table(eval_ops, &val, cpp);
856 debug("eval = %d", val);
857 return (constexpr ? LT_IF : ret == LT_ERROR ? LT_IF : ret);
860 static const char *
861 skipcomment(const char *cp)
863 if (text || ignoring[depth]) {
864 for (; isspace((unsigned char)*cp); cp++)
865 if (*cp == '\n')
866 linestate = LS_START;
867 return (cp);
869 while (*cp != '\0')
870 /* don't reset to LS_START after a line continuation */
871 if (strncmp(cp, "\\\n", 2) == 0)
872 cp += 2;
873 else switch (incomment) {
874 case NO_COMMENT:
875 if (strncmp(cp, "/\\\n", 3) == 0) {
876 incomment = STARTING_COMMENT;
877 cp += 3;
878 } else if (strncmp(cp, "/*", 2) == 0) {
879 incomment = C_COMMENT;
880 cp += 2;
881 } else if (strncmp(cp, "//", 2) == 0) {
882 incomment = CXX_COMMENT;
883 cp += 2;
884 } else if (strncmp(cp, "\'", 1) == 0) {
885 incomment = CHAR_LITERAL;
886 linestate = LS_DIRTY;
887 cp += 1;
888 } else if (strncmp(cp, "\"", 1) == 0) {
889 incomment = STRING_LITERAL;
890 linestate = LS_DIRTY;
891 cp += 1;
892 } else if (strncmp(cp, "\n", 1) == 0) {
893 linestate = LS_START;
894 cp += 1;
895 } else if (strchr(" \t", *cp) != NULL) {
896 cp += 1;
897 } else
898 return (cp);
899 continue;
900 case CXX_COMMENT:
901 if (strncmp(cp, "\n", 1) == 0) {
902 incomment = NO_COMMENT;
903 linestate = LS_START;
905 cp += 1;
906 continue;
907 case CHAR_LITERAL:
908 case STRING_LITERAL:
909 if ((incomment == CHAR_LITERAL && cp[0] == '\'') ||
910 (incomment == STRING_LITERAL && cp[0] == '\"')) {
911 incomment = NO_COMMENT;
912 cp += 1;
913 } else if (cp[0] == '\\') {
914 if (cp[1] == '\0')
915 cp += 1;
916 else
917 cp += 2;
918 } else if (strncmp(cp, "\n", 1) == 0) {
919 if (incomment == CHAR_LITERAL)
920 error("unterminated char literal");
921 else
922 error("unterminated string literal");
923 } else
924 cp += 1;
925 continue;
926 case C_COMMENT:
927 if (strncmp(cp, "*\\\n", 3) == 0) {
928 incomment = FINISHING_COMMENT;
929 cp += 3;
930 } else if (strncmp(cp, "*/", 2) == 0) {
931 incomment = NO_COMMENT;
932 cp += 2;
933 } else
934 cp += 1;
935 continue;
936 case STARTING_COMMENT:
937 if (*cp == '*') {
938 incomment = C_COMMENT;
939 cp += 1;
940 } else if (*cp == '/') {
941 incomment = CXX_COMMENT;
942 cp += 1;
943 } else {
944 incomment = NO_COMMENT;
945 linestate = LS_DIRTY;
947 continue;
948 case FINISHING_COMMENT:
949 if (*cp == '/') {
950 incomment = NO_COMMENT;
951 cp += 1;
952 } else
953 incomment = C_COMMENT;
954 continue;
955 default:
956 abort(); /* bug */
958 return (cp);
962 * Skip macro arguments.
964 static const char *
965 skipargs(const char *cp)
967 const char *ocp = cp;
968 int level = 0;
969 cp = skipcomment(cp);
970 if (*cp != '(')
971 return (cp);
972 do {
973 if (*cp == '(')
974 level++;
975 if (*cp == ')')
976 level--;
977 cp = skipcomment(cp+1);
978 } while (level != 0 && *cp != '\0');
979 if (level == 0)
980 return (cp);
981 else
982 /* Rewind and re-detect the syntax error later. */
983 return (ocp);
987 * Skip over an identifier.
989 static const char *
990 skipsym(const char *cp)
992 while (!endsym(*cp))
993 ++cp;
994 return (cp);
998 * Look for the symbol in the symbol table. If it is found, we return
999 * the symbol table index, else we return -1.
1001 static int
1002 findsym(const char *str)
1004 const char *cp;
1005 int symind;
1007 cp = skipsym(str);
1008 if (cp == str)
1009 return (-1);
1010 if (symlist) {
1011 printf("%.*s\n", (int)(cp-str), str);
1012 /* we don't care about the value of the symbol */
1013 return (0);
1015 for (symind = 0; symind < nsyms; ++symind) {
1016 if (strlcmp(symname[symind], str, cp-str) == 0) {
1017 debug("findsym %s %s", symname[symind],
1018 value[symind] ? value[symind] : "");
1019 return (symind);
1022 return (-1);
1026 * Add a symbol to the symbol table.
1028 static void
1029 addsym(bool ignorethis, bool definethis, char *sym)
1031 int symind;
1032 char *val;
1034 symind = findsym(sym);
1035 if (symind < 0) {
1036 if (nsyms >= MAXSYMS)
1037 errx(2, "too many symbols");
1038 symind = nsyms++;
1040 symname[symind] = sym;
1041 ignore[symind] = ignorethis;
1042 val = sym + (skipsym(sym) - sym);
1043 if (definethis) {
1044 if (*val == '=') {
1045 value[symind] = val+1;
1046 *val = '\0';
1047 } else if (*val == '\0')
1048 value[symind] = "";
1049 else
1050 usage();
1051 } else {
1052 if (*val != '\0')
1053 usage();
1054 value[symind] = NULL;
1059 * Compare s with n characters of t.
1060 * The same as strncmp() except that it checks that s[n] == '\0'.
1062 static int
1063 strlcmp(const char *s, const char *t, size_t n)
1065 while (n-- && *t != '\0')
1066 if (*s != *t)
1067 return ((unsigned char)*s - (unsigned char)*t);
1068 else
1069 ++s, ++t;
1070 return ((unsigned char)*s);
1074 * Diagnostics.
1076 static void
1077 debug(const char *msg, ...)
1079 va_list ap;
1081 if (debugging) {
1082 va_start(ap, msg);
1083 vwarnx(msg, ap);
1084 va_end(ap);
1088 static void
1089 error(const char *msg)
1091 if (depth == 0)
1092 warnx("%s: %d: %s", filename, linenum, msg);
1093 else
1094 warnx("%s: %d: %s (#if line %d depth %d)",
1095 filename, linenum, msg, stifline[depth], depth);
1096 errx(2, "output may be truncated");