]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ftepp.c
more linenumber madness
[xonotic/gmqcc.git] / ftepp.c
1 /*
2  * Copyright (C) 2012, 2013
3  *     Wolfgang Bumiller
4  *     Dale Weiler 
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy of
7  * this software and associated documentation files (the "Software"), to deal in
8  * the Software without restriction, including without limitation the rights to
9  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is furnished to do
11  * so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #include <time.h>
25 #include "gmqcc.h"
26 #include "lexer.h"
27
28 typedef struct {
29     bool on;
30     bool was_on;
31     bool had_else;
32 } ppcondition;
33
34 typedef struct {
35     int   token;
36     char *value;
37     /* a copy from the lexer */
38     union {
39         vector v;
40         int    i;
41         double f;
42         int    t; /* type */
43     } constval;
44 } pptoken;
45
46 typedef struct {
47     lex_ctx ctx;
48
49     char   *name;
50     char  **params;
51     /* yes we need an extra flag since `#define FOO x` is not the same as `#define FOO() x` */
52     bool    has_params;
53     bool    variadic;
54
55     pptoken **output;
56 } ppmacro;
57
58 typedef struct {
59     lex_file    *lex;
60     int          token;
61     unsigned int errors;
62
63     bool         output_on;
64     ppcondition *conditions;
65     ppmacro    **macros;
66
67     char        *output_string;
68
69     char        *itemname;
70     char        *includename;
71     bool         in_macro;
72 } ftepp_t;
73
74 /*
75  * Implement the predef subsystem now.  We can do this safely with the
76  * help of lexer contexts.
77  */  
78 static uint32_t ftepp_predef_countval = 0;
79 static uint32_t ftepp_predef_randval  = 0;
80
81 /* __DATE__ */
82 char *ftepp_predef_date(lex_file *context) {
83     struct tm *itime;
84     time_t     rtime;
85     char      *value = mem_a(82);
86     /* 82 is enough for strftime but we also have " " in our string */
87
88     (void)context;
89
90     /* get time */
91     time (&rtime);
92     itime = localtime(&rtime);
93
94     strftime(value, 82, "\"%b %d %Y\"", itime);
95
96     return value;
97 }
98
99 /* __TIME__ */
100 char *ftepp_predef_time(lex_file *context) {
101     struct tm *itime;
102     time_t     rtime;
103     char      *value = mem_a(82);
104     /* 82 is enough for strftime but we also have " " in our string */
105
106     (void)context;
107
108     /* get time */
109     time (&rtime);
110     itime = localtime(&rtime);
111
112     strftime(value, 82, "\"%X\"", itime);
113
114     return value;
115 }
116
117 /* __LINE__ */
118 char *ftepp_predef_line(lex_file *context) {
119     char   *value;
120     util_asprintf(&value, "%d", (int)context->line);
121     return value;
122 }
123 /* __FILE__ */
124 char *ftepp_predef_file(lex_file *context) {
125     size_t  length = strlen(context->name) + 3; /* two quotes and a terminator */
126     char   *value  = (char*)mem_a(length);
127     memset (value, 0, length);
128     sprintf(value, "\"%s\"", context->name);
129
130     return value;
131 }
132 /* __COUNTER_LAST__ */
133 char *ftepp_predef_counterlast(lex_file *context) {
134     char   *value;
135     util_asprintf(&value, "%u", ftepp_predef_countval);
136
137     (void)context;
138     return value;
139 }
140 /* __COUNTER__ */
141 char *ftepp_predef_counter(lex_file *context) {
142     char   *value;
143     ftepp_predef_countval ++;
144     util_asprintf(&value, "%u", ftepp_predef_countval);
145     (void)context;
146
147     return value;
148 }
149 /* __RANDOM__ */
150 char *ftepp_predef_random(lex_file *context) {
151     char  *value;
152     ftepp_predef_randval = (util_rand() % 0xFF) + 1;
153     util_asprintf(&value, "%u", ftepp_predef_randval);
154
155     (void)context;
156     return value;
157 }
158 /* __RANDOM_LAST__ */
159 char *ftepp_predef_randomlast(lex_file *context) {
160     char   *value;
161     util_asprintf(&value, "%u", ftepp_predef_randval);
162
163     (void)context;
164     return value;
165 }
166
167 const ftepp_predef_t ftepp_predefs[FTEPP_PREDEF_COUNT] = {
168     { "__LINE__",         &ftepp_predef_line        },
169     { "__FILE__",         &ftepp_predef_file        },
170     { "__COUNTER__",      &ftepp_predef_counter     },
171     { "__COUNTER_LAST__", &ftepp_predef_counterlast },
172     { "__RANDOM__",       &ftepp_predef_random      },
173     { "__RANDOM_LAST__",  &ftepp_predef_randomlast  },
174     { "__DATE__",         &ftepp_predef_date        },
175     { "__TIME__",         &ftepp_predef_time        }
176 };
177
178 #define ftepp_tokval(f) ((f)->lex->tok.value)
179 #define ftepp_ctx(f)    ((f)->lex->tok.ctx)
180
181 static void ftepp_errorat(ftepp_t *ftepp, lex_ctx ctx, const char *fmt, ...)
182 {
183     va_list ap;
184
185     ftepp->errors++;
186
187     va_start(ap, fmt);
188     con_cvprintmsg((void*)&ctx, LVL_ERROR, "error", fmt, ap);
189     va_end(ap);
190 }
191
192 static void ftepp_error(ftepp_t *ftepp, const char *fmt, ...)
193 {
194     va_list ap;
195
196     ftepp->errors++;
197
198     va_start(ap, fmt);
199     con_cvprintmsg((void*)&ftepp->lex->tok.ctx, LVL_ERROR, "error", fmt, ap);
200     va_end(ap);
201 }
202
203 static bool GMQCC_WARN ftepp_warn(ftepp_t *ftepp, int warntype, const char *fmt, ...)
204 {
205     bool    r;
206     va_list ap;
207
208     va_start(ap, fmt);
209     r = vcompile_warning(ftepp->lex->tok.ctx, warntype, fmt, ap);
210     va_end(ap);
211     return r;
212 }
213
214 static pptoken *pptoken_make(ftepp_t *ftepp)
215 {
216     pptoken *token = (pptoken*)mem_a(sizeof(pptoken));
217     token->token = ftepp->token;
218 #if 0
219     if (token->token == TOKEN_WHITE)
220         token->value = util_strdup(" ");
221     else
222 #else
223         token->value = util_strdup(ftepp_tokval(ftepp));
224 #endif
225     memcpy(&token->constval, &ftepp->lex->tok.constval, sizeof(token->constval));
226     return token;
227 }
228
229 static void pptoken_delete(pptoken *self)
230 {
231     mem_d(self->value);
232     mem_d(self);
233 }
234
235 static ppmacro *ppmacro_new(lex_ctx ctx, const char *name)
236 {
237     ppmacro *macro = (ppmacro*)mem_a(sizeof(ppmacro));
238
239     (void)ctx;
240     memset(macro, 0, sizeof(*macro));
241     macro->name = util_strdup(name);
242     return macro;
243 }
244
245 static void ppmacro_delete(ppmacro *self)
246 {
247     size_t i;
248     for (i = 0; i < vec_size(self->params); ++i)
249         mem_d(self->params[i]);
250     vec_free(self->params);
251     for (i = 0; i < vec_size(self->output); ++i)
252         pptoken_delete(self->output[i]);
253     vec_free(self->output);
254     mem_d(self->name);
255     mem_d(self);
256 }
257
258 static ftepp_t* ftepp_new()
259 {
260     ftepp_t *ftepp;
261
262     ftepp = (ftepp_t*)mem_a(sizeof(*ftepp));
263     memset(ftepp, 0, sizeof(*ftepp));
264
265     ftepp->output_on = true;
266
267     return ftepp;
268 }
269
270 static void ftepp_flush_do(ftepp_t *self)
271 {
272     vec_free(self->output_string);
273 }
274
275 static void ftepp_delete(ftepp_t *self)
276 {
277     size_t i;
278     ftepp_flush_do(self);
279     if (self->itemname)
280         mem_d(self->itemname);
281     if (self->includename)
282         vec_free(self->includename);
283     for (i = 0; i < vec_size(self->macros); ++i)
284         ppmacro_delete(self->macros[i]);
285     vec_free(self->macros);
286     vec_free(self->conditions);
287     if (self->lex)
288         lex_close(self->lex);
289     mem_d(self);
290 }
291
292 static void ftepp_out(ftepp_t *ftepp, const char *str, bool ignore_cond)
293 {
294     if (ignore_cond || ftepp->output_on)
295     {
296         size_t len;
297         char  *data;
298         len = strlen(str);
299         data = vec_add(ftepp->output_string, len);
300         memcpy(data, str, len);
301     }
302 }
303
304 static void ftepp_update_output_condition(ftepp_t *ftepp)
305 {
306     size_t i;
307     ftepp->output_on = true;
308     for (i = 0; i < vec_size(ftepp->conditions); ++i)
309         ftepp->output_on = ftepp->output_on && ftepp->conditions[i].on;
310 }
311
312 static ppmacro* ftepp_macro_find(ftepp_t *ftepp, const char *name)
313 {
314     size_t i;
315     for (i = 0; i < vec_size(ftepp->macros); ++i) {
316         if (!strcmp(name, ftepp->macros[i]->name))
317             return ftepp->macros[i];
318     }
319     return NULL;
320 }
321
322 static void ftepp_macro_delete(ftepp_t *ftepp, const char *name)
323 {
324     size_t i;
325     for (i = 0; i < vec_size(ftepp->macros); ++i) {
326         if (!strcmp(name, ftepp->macros[i]->name)) {
327             vec_remove(ftepp->macros, i, 1);
328             return;
329         }
330     }
331 }
332
333 static GMQCC_INLINE int ftepp_next(ftepp_t *ftepp)
334 {
335     return (ftepp->token = lex_do(ftepp->lex));
336 }
337
338 /* Important: this does not skip newlines! */
339 static bool ftepp_skipspace(ftepp_t *ftepp)
340 {
341     if (ftepp->token != TOKEN_WHITE)
342         return true;
343     while (ftepp_next(ftepp) == TOKEN_WHITE) {}
344     if (ftepp->token >= TOKEN_EOF) {
345         ftepp_error(ftepp, "unexpected end of preprocessor directive");
346         return false;
347     }
348     return true;
349 }
350
351 /* this one skips EOLs as well */
352 static bool ftepp_skipallwhite(ftepp_t *ftepp)
353 {
354     if (ftepp->token != TOKEN_WHITE && ftepp->token != TOKEN_EOL)
355         return true;
356     do {
357         ftepp_next(ftepp);
358     } while (ftepp->token == TOKEN_WHITE || ftepp->token == TOKEN_EOL);
359     if (ftepp->token >= TOKEN_EOF) {
360         ftepp_error(ftepp, "unexpected end of preprocessor directive");
361         return false;
362     }
363     return true;
364 }
365
366 /**
367  * The huge macro parsing code...
368  */
369 static bool ftepp_define_params(ftepp_t *ftepp, ppmacro *macro)
370 {
371     do {
372         ftepp_next(ftepp);
373         if (!ftepp_skipspace(ftepp))
374             return false;
375         if (ftepp->token == ')')
376             break;
377         switch (ftepp->token) {
378             case TOKEN_IDENT:
379             case TOKEN_TYPENAME:
380             case TOKEN_KEYWORD:
381                 vec_push(macro->params, util_strdup(ftepp_tokval(ftepp)));
382                 break;
383             case TOKEN_DOTS:
384                 macro->variadic = true;
385                 break;
386             default:
387                 ftepp_error(ftepp, "unexpected token in parameter list");
388                 return false;
389         }
390         ftepp_next(ftepp);
391         if (!ftepp_skipspace(ftepp))
392             return false;
393         if (macro->variadic && ftepp->token != ')') {
394             ftepp_error(ftepp, "cannot have parameters after the variadic parameters");
395             return false;
396         }
397     } while (ftepp->token == ',');
398     if (ftepp->token != ')') {
399         ftepp_error(ftepp, "expected closing paren after macro parameter list");
400         return false;
401     }
402     ftepp_next(ftepp);
403     /* skipspace happens in ftepp_define */
404     return true;
405 }
406
407 static bool ftepp_define_body(ftepp_t *ftepp, ppmacro *macro)
408 {
409     pptoken *ptok;
410     while (ftepp->token != TOKEN_EOL && ftepp->token < TOKEN_EOF) {
411         if (macro->variadic && !strcmp(ftepp_tokval(ftepp), "__VA_ARGS__"))
412             ftepp->token = TOKEN_VA_ARGS;
413         ptok = pptoken_make(ftepp);
414         vec_push(macro->output, ptok);
415         ftepp_next(ftepp);
416     }
417     /* recursive expansion can cause EOFs here */
418     if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
419         ftepp_error(ftepp, "unexpected junk after macro or unexpected end of file");
420         return false;
421     }
422     return true;
423 }
424
425 static bool ftepp_define(ftepp_t *ftepp)
426 {
427     ppmacro *macro;
428     size_t l = ftepp_ctx(ftepp).line;
429
430     (void)ftepp_next(ftepp);
431     if (!ftepp_skipspace(ftepp))
432         return false;
433
434     switch (ftepp->token) {
435         case TOKEN_IDENT:
436         case TOKEN_TYPENAME:
437         case TOKEN_KEYWORD:
438             macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
439             if (macro && ftepp->output_on) {
440                 if (ftepp_warn(ftepp, WARN_PREPROCESSOR, "redefining `%s`", ftepp_tokval(ftepp)))
441                     return false;
442                 ftepp_macro_delete(ftepp, ftepp_tokval(ftepp));
443             }
444             macro = ppmacro_new(ftepp_ctx(ftepp), ftepp_tokval(ftepp));
445             break;
446         default:
447             ftepp_error(ftepp, "expected macro name");
448             return false;
449     }
450
451     (void)ftepp_next(ftepp);
452
453     if (ftepp->token == '(') {
454         macro->has_params = true;
455         if (!ftepp_define_params(ftepp, macro))
456             return false;
457     }
458
459     if (!ftepp_skipspace(ftepp))
460         return false;
461
462     if (!ftepp_define_body(ftepp, macro))
463         return false;
464
465     if (ftepp->output_on)
466         vec_push(ftepp->macros, macro);
467     else {
468         ppmacro_delete(macro);
469     }
470
471     for (; l < ftepp_ctx(ftepp).line; ++l)
472         ftepp_out(ftepp, "\n", true);
473     return true;
474 }
475
476 /**
477  * When a macro is used we have to handle parameters as well
478  * as special-concatenation via ## or stringification via #
479  *
480  * Note: parenthesis can nest, so FOO((a),b) is valid, but only
481  * this kind of parens. Curly braces or [] don't count towards the
482  * paren-level.
483  */
484 typedef struct {
485     pptoken **tokens;
486 } macroparam;
487
488 static void macroparam_clean(macroparam *self)
489 {
490     size_t i;
491     for (i = 0; i < vec_size(self->tokens); ++i)
492         pptoken_delete(self->tokens[i]);
493     vec_free(self->tokens);
494 }
495
496 /* need to leave the last token up */
497 static bool ftepp_macro_call_params(ftepp_t *ftepp, macroparam **out_params)
498 {
499     macroparam *params = NULL;
500     pptoken    *ptok;
501     macroparam  mp;
502     size_t      parens = 0;
503     size_t      i;
504
505     if (!ftepp_skipallwhite(ftepp))
506         return false;
507     while (ftepp->token != ')') {
508         mp.tokens = NULL;
509         if (!ftepp_skipallwhite(ftepp))
510             return false;
511         while (parens || ftepp->token != ',') {
512             if (ftepp->token == '(')
513                 ++parens;
514             else if (ftepp->token == ')') {
515                 if (!parens)
516                     break;
517                 --parens;
518             }
519             ptok = pptoken_make(ftepp);
520             vec_push(mp.tokens, ptok);
521             if (ftepp_next(ftepp) >= TOKEN_EOF) {
522                 ftepp_error(ftepp, "unexpected EOF in macro call");
523                 goto on_error;
524             }
525         }
526         vec_push(params, mp);
527         mp.tokens = NULL;
528         if (ftepp->token == ')')
529             break;
530         if (ftepp->token != ',') {
531             ftepp_error(ftepp, "expected closing paren or comma in macro call");
532             goto on_error;
533         }
534         if (ftepp_next(ftepp) >= TOKEN_EOF) {
535             ftepp_error(ftepp, "unexpected EOF in macro call");
536             goto on_error;
537         }
538     }
539     /* need to leave that up
540     if (ftepp_next(ftepp) >= TOKEN_EOF) {
541         ftepp_error(ftepp, "unexpected EOF in macro call");
542         goto on_error;
543     }
544     */
545     *out_params = params;
546     return true;
547
548 on_error:
549     if (mp.tokens)
550         macroparam_clean(&mp);
551     for (i = 0; i < vec_size(params); ++i)
552         macroparam_clean(&params[i]);
553     vec_free(params);
554     return false;
555 }
556
557 static bool macro_params_find(ppmacro *macro, const char *name, size_t *idx)
558 {
559     size_t i;
560     for (i = 0; i < vec_size(macro->params); ++i) {
561         if (!strcmp(macro->params[i], name)) {
562             *idx = i;
563             return true;
564         }
565     }
566     return false;
567 }
568
569 static void ftepp_stringify_token(ftepp_t *ftepp, pptoken *token)
570 {
571     char        chs[2];
572     const char *ch;
573     chs[1] = 0;
574     switch (token->token) {
575         case TOKEN_STRINGCONST:
576             ch = token->value;
577             while (*ch) {
578                 /* in preprocessor mode strings already are string,
579                  * so we don't get actual newline bytes here.
580                  * Still need to escape backslashes and quotes.
581                  */
582                 switch (*ch) {
583                     case '\\': ftepp_out(ftepp, "\\\\", false); break;
584                     case '"':  ftepp_out(ftepp, "\\\"", false); break;
585                     default:
586                         chs[0] = *ch;
587                         ftepp_out(ftepp, chs, false);
588                         break;
589                 }
590                 ++ch;
591             }
592             break;
593         case TOKEN_WHITE:
594             ftepp_out(ftepp, " ", false);
595             break;
596         case TOKEN_EOL:
597             ftepp_out(ftepp, "\\n", false);
598             break;
599         default:
600             ftepp_out(ftepp, token->value, false);
601             break;
602     }
603 }
604
605 static void ftepp_stringify(ftepp_t *ftepp, macroparam *param)
606 {
607     size_t i;
608     ftepp_out(ftepp, "\"", false);
609     for (i = 0; i < vec_size(param->tokens); ++i)
610         ftepp_stringify_token(ftepp, param->tokens[i]);
611     ftepp_out(ftepp, "\"", false);
612 }
613
614 static void ftepp_recursion_header(ftepp_t *ftepp)
615 {
616     ftepp_out(ftepp, "\n#pragma push(line)\n", false);
617 }
618
619 static void ftepp_recursion_footer(ftepp_t *ftepp)
620 {
621     ftepp_out(ftepp, "\n#pragma pop(line)\n", false);
622 }
623
624 static void ftepp_param_out(ftepp_t *ftepp, macroparam *param)
625 {
626     size_t   i;
627     pptoken *out;
628     for (i = 0; i < vec_size(param->tokens); ++i) {
629         out = param->tokens[i];
630         if (out->token == TOKEN_EOL)
631             ftepp_out(ftepp, "\n", false);
632         else
633             ftepp_out(ftepp, out->value, false);
634     }
635 }
636
637 static bool ftepp_preprocess(ftepp_t *ftepp);
638 static bool ftepp_macro_expand(ftepp_t *ftepp, ppmacro *macro, macroparam *params, bool resetline)
639 {
640     char     *old_string   = ftepp->output_string;
641     lex_file *old_lexer    = ftepp->lex;
642     size_t    vararg_start = vec_size(macro->params);
643     bool      retval       = true;
644     bool      has_newlines;
645     size_t    varargs;
646
647     size_t    o, pi;
648     lex_file *inlex;
649
650     bool      old_inmacro;
651
652     int nextok;
653
654     if (vararg_start < vec_size(params))
655         varargs = vec_size(params) - vararg_start;
656     else
657         varargs = 0;
658
659     /* really ... */
660     if (!vec_size(macro->output))
661         return true;
662
663     ftepp->output_string = NULL;
664     for (o = 0; o < vec_size(macro->output); ++o) {
665         pptoken *out = macro->output[o];
666         switch (out->token) {
667             case TOKEN_VA_ARGS:
668                 if (!macro->variadic) {
669                     ftepp_error(ftepp, "internal preprocessor error: TOKEN_VA_ARGS in non-variadic macro");
670                     return false;
671                 }
672                 if (!varargs)
673                     break;
674                 pi = 0;
675                 ftepp_param_out(ftepp, &params[pi + vararg_start]);
676                 for (++pi; pi < varargs; ++pi) {
677                     ftepp_out(ftepp, ", ", false);
678                     ftepp_param_out(ftepp, &params[pi + vararg_start]);
679                 }
680                 break;
681             case TOKEN_IDENT:
682             case TOKEN_TYPENAME:
683             case TOKEN_KEYWORD:
684                 if (!macro_params_find(macro, out->value, &pi)) {
685                     ftepp_out(ftepp, out->value, false);
686                     break;
687                 } else
688                     ftepp_param_out(ftepp, &params[pi]);
689                 break;
690             case '#':
691                 if (o + 1 < vec_size(macro->output)) {
692                     nextok = macro->output[o+1]->token;
693                     if (nextok == '#') {
694                         /* raw concatenation */
695                         ++o;
696                         break;
697                     }
698                     if ( (nextok == TOKEN_IDENT    ||
699                           nextok == TOKEN_KEYWORD  ||
700                           nextok == TOKEN_TYPENAME) &&
701                         macro_params_find(macro, macro->output[o+1]->value, &pi))
702                     {
703                         ++o;
704                         ftepp_stringify(ftepp, &params[pi]);
705                         break;
706                     }
707                 }
708                 ftepp_out(ftepp, "#", false);
709                 break;
710             case TOKEN_EOL:
711                 ftepp_out(ftepp, "\n", false);
712                 break;
713             default:
714                 ftepp_out(ftepp, out->value, false);
715                 break;
716         }
717     }
718     vec_push(ftepp->output_string, 0);
719     has_newlines = (strchr(ftepp->output_string, '\n') != NULL);
720     /* Now run the preprocessor recursively on this string buffer */
721     /*
722     printf("__________\n%s\n=========\n", ftepp->output_string);
723     */
724     inlex = lex_open_string(ftepp->output_string, vec_size(ftepp->output_string)-1, ftepp->lex->name);
725     if (!inlex) {
726         ftepp_error(ftepp, "internal error: failed to instantiate lexer");
727         retval = false;
728         goto cleanup;
729     }
730     ftepp->output_string = old_string;
731     inlex->line = ftepp->lex->line;
732     inlex->sline = ftepp->lex->sline;
733     ftepp->lex = inlex;
734     if (has_newlines && !ftepp->in_macro)
735         ftepp_recursion_header(ftepp);
736     old_inmacro = ftepp->in_macro;
737     ftepp->in_macro = true;
738     if (!ftepp_preprocess(ftepp)) {
739         ftepp->in_macro = old_inmacro;
740         vec_free(ftepp->lex->open_string);
741         old_string = ftepp->output_string;
742         lex_close(ftepp->lex);
743         retval = false;
744         goto cleanup;
745     }
746     ftepp->in_macro = old_inmacro;
747     vec_free(ftepp->lex->open_string);
748     if (has_newlines && !ftepp->in_macro)
749         ftepp_recursion_footer(ftepp);
750     if (resetline && !ftepp->in_macro) {
751         char lineno[128];
752         sprintf(lineno, "\n#pragma line(%lu)\n", (unsigned long)(old_lexer->sline));
753         ftepp_out(ftepp, lineno, false);
754     }
755     old_string = ftepp->output_string;
756
757 cleanup:
758     ftepp->lex           = old_lexer;
759     ftepp->output_string = old_string;
760     return retval;
761 }
762
763 static bool ftepp_macro_call(ftepp_t *ftepp, ppmacro *macro)
764 {
765     size_t     o;
766     macroparam *params = NULL;
767     bool        retval = true;
768     size_t      paramline;
769
770     if (!macro->has_params) {
771         if (!ftepp_macro_expand(ftepp, macro, NULL, false))
772             return false;
773         ftepp_next(ftepp);
774         return true;
775     }
776     ftepp_next(ftepp);
777
778     if (!ftepp_skipallwhite(ftepp))
779         return false;
780
781     if (ftepp->token != '(') {
782         ftepp_error(ftepp, "expected macro parameters in parenthesis");
783         return false;
784     }
785
786     ftepp_next(ftepp);
787     paramline = ftepp->lex->sline;
788     if (!ftepp_macro_call_params(ftepp, &params))
789         return false;
790
791     if ( vec_size(params) < vec_size(macro->params) ||
792         (vec_size(params) > vec_size(macro->params) && !macro->variadic) )
793     {
794         ftepp_error(ftepp, "macro %s expects%s %u paramteters, %u provided", macro->name,
795                     (macro->variadic ? " at least" : ""),
796                     (unsigned int)vec_size(macro->params),
797                     (unsigned int)vec_size(params));
798         retval = false;
799         goto cleanup;
800     }
801
802     if (!ftepp_macro_expand(ftepp, macro, params, (paramline != ftepp->lex->sline)))
803         retval = false;
804     ftepp_next(ftepp);
805
806 cleanup:
807     for (o = 0; o < vec_size(params); ++o)
808         macroparam_clean(&params[o]);
809     vec_free(params);
810     return retval;
811 }
812
813 /**
814  * #if - the FTEQCC way:
815  *    defined(FOO) => true if FOO was #defined regardless of parameters or contents
816  *    <numbers>    => True if the number is not 0
817  *    !<factor>    => True if the factor yields false
818  *    !!<factor>   => ERROR on 2 or more unary nots
819  *    <macro>      => becomes the macro's FIRST token regardless of parameters
820  *    <e> && <e>   => True if both expressions are true
821  *    <e> || <e>   => True if either expression is true
822  *    <string>     => False
823  *    <ident>      => False (remember for macros the <macro> rule applies instead)
824  * Unary + and - are weird and wrong in fteqcc so we don't allow them
825  * parenthesis in expressions are allowed
826  * parameter lists on macros are errors
827  * No mathematical calculations are executed
828  */
829 static bool ftepp_if_expr(ftepp_t *ftepp, bool *out, double *value_out);
830 static bool ftepp_if_op(ftepp_t *ftepp)
831 {
832     ftepp->lex->flags.noops = false;
833     ftepp_next(ftepp);
834     if (!ftepp_skipspace(ftepp))
835         return false;
836     ftepp->lex->flags.noops = true;
837     return true;
838 }
839 static bool ftepp_if_value(ftepp_t *ftepp, bool *out, double *value_out)
840 {
841     ppmacro *macro;
842     bool     wasnot = false;
843     bool     wasneg = false;
844
845     if (!ftepp_skipspace(ftepp))
846         return false;
847
848     while (ftepp->token == '!') {
849         wasnot = true;
850         ftepp_next(ftepp);
851         if (!ftepp_skipspace(ftepp))
852             return false;
853     }
854
855     if (ftepp->token == TOKEN_OPERATOR && !strcmp(ftepp_tokval(ftepp), "-"))
856     {
857         wasneg = true;
858         ftepp_next(ftepp);
859         if (!ftepp_skipspace(ftepp))
860             return false;
861     }
862
863     switch (ftepp->token) {
864         case TOKEN_IDENT:
865         case TOKEN_TYPENAME:
866         case TOKEN_KEYWORD:
867             if (!strcmp(ftepp_tokval(ftepp), "defined")) {
868                 ftepp_next(ftepp);
869                 if (!ftepp_skipspace(ftepp))
870                     return false;
871                 if (ftepp->token != '(') {
872                     ftepp_error(ftepp, "`defined` keyword in #if requires a macro name in parenthesis");
873                     return false;
874                 }
875                 ftepp_next(ftepp);
876                 if (!ftepp_skipspace(ftepp))
877                     return false;
878                 if (ftepp->token != TOKEN_IDENT &&
879                     ftepp->token != TOKEN_TYPENAME &&
880                     ftepp->token != TOKEN_KEYWORD)
881                 {
882                     ftepp_error(ftepp, "defined() used on an unexpected token type");
883                     return false;
884                 }
885                 macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
886                 *out = !!macro;
887                 ftepp_next(ftepp);
888                 if (!ftepp_skipspace(ftepp))
889                     return false;
890                 if (ftepp->token != ')') {
891                     ftepp_error(ftepp, "expected closing paren");
892                     return false;
893                 }
894                 break;
895             }
896
897             macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
898             if (!macro || !vec_size(macro->output)) {
899                 *out = false;
900                 *value_out = 0;
901             } else {
902                 /* This does not expand recursively! */
903                 switch (macro->output[0]->token) {
904                     case TOKEN_INTCONST:
905                         *value_out = macro->output[0]->constval.i;
906                         *out = !!(macro->output[0]->constval.i);
907                         break;
908                     case TOKEN_FLOATCONST:
909                         *value_out = macro->output[0]->constval.f;
910                         *out = !!(macro->output[0]->constval.f);
911                         break;
912                     default:
913                         *out = false;
914                         break;
915                 }
916             }
917             break;
918         case TOKEN_STRINGCONST:
919             *value_out = 0;
920             *out = false;
921             break;
922         case TOKEN_INTCONST:
923             *value_out = ftepp->lex->tok.constval.i;
924             *out = !!(ftepp->lex->tok.constval.i);
925             break;
926         case TOKEN_FLOATCONST:
927             *value_out = ftepp->lex->tok.constval.f;
928             *out = !!(ftepp->lex->tok.constval.f);
929             break;
930
931         case '(':
932             ftepp_next(ftepp);
933             if (!ftepp_if_expr(ftepp, out, value_out))
934                 return false;
935             if (ftepp->token != ')') {
936                 ftepp_error(ftepp, "expected closing paren in #if expression");
937                 return false;
938             }
939             break;
940
941         default:
942             ftepp_error(ftepp, "junk in #if: `%s` ...", ftepp_tokval(ftepp));
943             if (opts.debug)
944                 ftepp_error(ftepp, "internal: token %i\n", ftepp->token);
945             return false;
946     }
947     if (wasneg)
948         *value_out = -*value_out;
949     if (wasnot) {
950         *out = !*out;
951         *value_out = (*out ? 1 : 0);
952     }
953     return true;
954 }
955
956 /*
957 static bool ftepp_if_nextvalue(ftepp_t *ftepp, bool *out, double *value_out)
958 {
959     if (!ftepp_next(ftepp))
960         return false;
961     return ftepp_if_value(ftepp, out, value_out);
962 }
963 */
964
965 static bool ftepp_if_expr(ftepp_t *ftepp, bool *out, double *value_out)
966 {
967     if (!ftepp_if_value(ftepp, out, value_out))
968         return false;
969
970     if (!ftepp_if_op(ftepp))
971         return false;
972
973     if (ftepp->token == ')' || ftepp->token != TOKEN_OPERATOR)
974         return true;
975
976     /* FTEQCC is all right-associative and no precedence here */
977     if (!strcmp(ftepp_tokval(ftepp), "&&") ||
978         !strcmp(ftepp_tokval(ftepp), "||"))
979     {
980         bool next = false;
981         char opc  = ftepp_tokval(ftepp)[0];
982         double nextvalue;
983
984         (void)nextvalue;
985         if (!ftepp_next(ftepp))
986             return false;
987         if (!ftepp_if_expr(ftepp, &next, &nextvalue))
988             return false;
989
990         if (opc == '&')
991             *out = *out && next;
992         else
993             *out = *out || next;
994
995         *value_out = (*out ? 1 : 0);
996         return true;
997     }
998     else if (!strcmp(ftepp_tokval(ftepp), "==") ||
999              !strcmp(ftepp_tokval(ftepp), "!=") ||
1000              !strcmp(ftepp_tokval(ftepp), ">=") ||
1001              !strcmp(ftepp_tokval(ftepp), "<=") ||
1002              !strcmp(ftepp_tokval(ftepp), ">") ||
1003              !strcmp(ftepp_tokval(ftepp), "<"))
1004     {
1005         bool next = false;
1006         const char opc0 = ftepp_tokval(ftepp)[0];
1007         const char opc1 = ftepp_tokval(ftepp)[1];
1008         double other;
1009
1010         if (!ftepp_next(ftepp))
1011             return false;
1012         if (!ftepp_if_expr(ftepp, &next, &other))
1013             return false;
1014
1015         if (opc0 == '=')
1016             *out = (*value_out == other);
1017         else if (opc0 == '!')
1018             *out = (*value_out != other);
1019         else if (opc0 == '>') {
1020             if (opc1 == '=') *out = (*value_out >= other);
1021             else             *out = (*value_out > other);
1022         }
1023         else if (opc0 == '<') {
1024             if (opc1 == '=') *out = (*value_out <= other);
1025             else             *out = (*value_out < other);
1026         }
1027         *value_out = (*out ? 1 : 0);
1028
1029         return true;
1030     }
1031     else {
1032         ftepp_error(ftepp, "junk after #if");
1033         return false;
1034     }
1035 }
1036
1037 static bool ftepp_if(ftepp_t *ftepp, ppcondition *cond)
1038 {
1039     bool result = false;
1040     double dummy = 0;
1041
1042     memset(cond, 0, sizeof(*cond));
1043     (void)ftepp_next(ftepp);
1044
1045     if (!ftepp_skipspace(ftepp))
1046         return false;
1047     if (ftepp->token == TOKEN_EOL) {
1048         ftepp_error(ftepp, "expected expression for #if-directive");
1049         return false;
1050     }
1051
1052     if (!ftepp_if_expr(ftepp, &result, &dummy))
1053         return false;
1054
1055     cond->on = result;
1056     return true;
1057 }
1058
1059 /**
1060  * ifdef is rather simple
1061  */
1062 static bool ftepp_ifdef(ftepp_t *ftepp, ppcondition *cond)
1063 {
1064     ppmacro *macro;
1065     memset(cond, 0, sizeof(*cond));
1066     (void)ftepp_next(ftepp);
1067     if (!ftepp_skipspace(ftepp))
1068         return false;
1069
1070     switch (ftepp->token) {
1071         case TOKEN_IDENT:
1072         case TOKEN_TYPENAME:
1073         case TOKEN_KEYWORD:
1074             macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
1075             break;
1076         default:
1077             ftepp_error(ftepp, "expected macro name");
1078             return false;
1079     }
1080
1081     (void)ftepp_next(ftepp);
1082     if (!ftepp_skipspace(ftepp))
1083         return false;
1084     /* relaxing this condition
1085     if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
1086         ftepp_error(ftepp, "stray tokens after #ifdef");
1087         return false;
1088     }
1089     */
1090     cond->on = !!macro;
1091     return true;
1092 }
1093
1094 /**
1095  * undef is also simple
1096  */
1097 static bool ftepp_undef(ftepp_t *ftepp)
1098 {
1099     (void)ftepp_next(ftepp);
1100     if (!ftepp_skipspace(ftepp))
1101         return false;
1102
1103     if (ftepp->output_on) {
1104         switch (ftepp->token) {
1105             case TOKEN_IDENT:
1106             case TOKEN_TYPENAME:
1107             case TOKEN_KEYWORD:
1108                 ftepp_macro_delete(ftepp, ftepp_tokval(ftepp));
1109                 break;
1110             default:
1111                 ftepp_error(ftepp, "expected macro name");
1112                 return false;
1113         }
1114     }
1115
1116     (void)ftepp_next(ftepp);
1117     if (!ftepp_skipspace(ftepp))
1118         return false;
1119     /* relaxing this condition
1120     if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
1121         ftepp_error(ftepp, "stray tokens after #ifdef");
1122         return false;
1123     }
1124     */
1125     return true;
1126 }
1127
1128 /* Special unescape-string function which skips a leading quote
1129  * and stops at a quote, not just at \0
1130  */
1131 static void unescape(const char *str, char *out) {
1132     ++str;
1133     while (*str && *str != '"') {
1134         if (*str == '\\') {
1135             ++str;
1136             switch (*str) {
1137                 case '\\': *out++ = *str; break;
1138                 case '"':  *out++ = *str; break;
1139                 case 'a':  *out++ = '\a'; break;
1140                 case 'b':  *out++ = '\b'; break;
1141                 case 'r':  *out++ = '\r'; break;
1142                 case 'n':  *out++ = '\n'; break;
1143                 case 't':  *out++ = '\t'; break;
1144                 case 'f':  *out++ = '\f'; break;
1145                 case 'v':  *out++ = '\v'; break;
1146                 default:
1147                     *out++ = '\\';
1148                     *out++ = *str;
1149                     break;
1150             }
1151             ++str;
1152             continue;
1153         }
1154
1155         *out++ = *str++;
1156     }
1157     *out = 0;
1158 }
1159
1160 static char *ftepp_include_find_path(const char *file, const char *pathfile)
1161 {
1162     FILE       *fp;
1163     char       *filename = NULL;
1164     const char *last_slash;
1165     size_t      len;
1166
1167     if (!pathfile)
1168         return NULL;
1169
1170     last_slash = strrchr(pathfile, '/');
1171
1172     if (last_slash) {
1173         len = last_slash - pathfile;
1174         memcpy(vec_add(filename, len), pathfile, len);
1175         vec_push(filename, '/');
1176     }
1177
1178     len = strlen(file);
1179     memcpy(vec_add(filename, len+1), file, len);
1180     vec_last(filename) = 0;
1181
1182     fp = file_open(filename, "rb");
1183     if (fp) {
1184         file_close(fp);
1185         return filename;
1186     }
1187     vec_free(filename);
1188     return NULL;
1189 }
1190
1191 static char *ftepp_include_find(ftepp_t *ftepp, const char *file)
1192 {
1193     char *filename = NULL;
1194
1195     filename = ftepp_include_find_path(file, ftepp->includename);
1196     if (!filename)
1197         filename = ftepp_include_find_path(file, ftepp->itemname);
1198     return filename;
1199 }
1200
1201 static bool ftepp_directive_warning(ftepp_t *ftepp) {
1202     char *message = NULL;
1203
1204     if (!ftepp_skipspace(ftepp))
1205         return false;
1206
1207     /* handle the odd non string constant case so it works like C */
1208     if (ftepp->token != TOKEN_STRINGCONST) {
1209         bool  store   = false;
1210         vec_upload(message, "#warning", 8);
1211         ftepp_next(ftepp);
1212         while (ftepp->token != TOKEN_EOL) {
1213             vec_upload(message, ftepp_tokval(ftepp), strlen(ftepp_tokval(ftepp)));
1214             ftepp_next(ftepp);
1215         }
1216         vec_push(message, '\0');
1217         store = ftepp_warn(ftepp, WARN_CPP, message);
1218         vec_free(message);
1219         return store;
1220     }
1221
1222     unescape  (ftepp_tokval(ftepp), ftepp_tokval(ftepp));
1223     return ftepp_warn(ftepp, WARN_CPP, "#warning %s", ftepp_tokval(ftepp));
1224 }
1225
1226 static void ftepp_directive_error(ftepp_t *ftepp) {
1227     char *message = NULL;
1228
1229     if (!ftepp_skipspace(ftepp))
1230         return;
1231
1232     /* handle the odd non string constant case so it works like C */
1233     if (ftepp->token != TOKEN_STRINGCONST) {
1234         vec_upload(message, "#error", 6);
1235         ftepp_next(ftepp);
1236         while (ftepp->token != TOKEN_EOL) {
1237             vec_upload(message, ftepp_tokval(ftepp), strlen(ftepp_tokval(ftepp)));
1238             ftepp_next(ftepp);
1239         }
1240         vec_push(message, '\0');
1241         ftepp_error(ftepp, message);
1242         vec_free(message);
1243         return;
1244     }
1245
1246     unescape  (ftepp_tokval(ftepp), ftepp_tokval(ftepp));
1247     ftepp_error(ftepp, "#error %s", ftepp_tokval(ftepp));
1248 }
1249
1250 /**
1251  * Include a file.
1252  * FIXME: do we need/want a -I option?
1253  * FIXME: what about when dealing with files in subdirectories coming from a progs.src?
1254  */
1255 static bool ftepp_include(ftepp_t *ftepp)
1256 {
1257     lex_file *old_lexer = ftepp->lex;
1258     lex_file *inlex;
1259     lex_ctx  ctx;
1260     char     lineno[128];
1261     char     *filename;
1262     char     *old_includename;
1263
1264     (void)ftepp_next(ftepp);
1265     if (!ftepp_skipspace(ftepp))
1266         return false;
1267
1268     if (ftepp->token != TOKEN_STRINGCONST) {
1269         ftepp_error(ftepp, "expected filename to include");
1270         return false;
1271     }
1272
1273     ctx = ftepp_ctx(ftepp);
1274
1275     unescape(ftepp_tokval(ftepp), ftepp_tokval(ftepp));
1276
1277     ftepp_out(ftepp, "\n#pragma file(", false);
1278     ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1279     ftepp_out(ftepp, ")\n#pragma line(1)\n", false);
1280
1281     filename = ftepp_include_find(ftepp, ftepp_tokval(ftepp));
1282     if (!filename) {
1283         ftepp_error(ftepp, "failed to open include file `%s`", ftepp_tokval(ftepp));
1284         return false;
1285     }
1286     inlex = lex_open(filename);
1287     if (!inlex) {
1288         ftepp_error(ftepp, "open failed on include file `%s`", filename);
1289         vec_free(filename);
1290         return false;
1291     }
1292     ftepp->lex = inlex;
1293     old_includename = ftepp->includename;
1294     ftepp->includename = filename;
1295     if (!ftepp_preprocess(ftepp)) {
1296         vec_free(ftepp->includename);
1297         ftepp->includename = old_includename;
1298         lex_close(ftepp->lex);
1299         ftepp->lex = old_lexer;
1300         return false;
1301     }
1302     vec_free(ftepp->includename);
1303     ftepp->includename = old_includename;
1304     lex_close(ftepp->lex);
1305     ftepp->lex = old_lexer;
1306
1307     ftepp_out(ftepp, "\n#pragma file(", false);
1308     ftepp_out(ftepp, ctx.file, false);
1309     snprintf(lineno, sizeof(lineno), ")\n#pragma line(%lu)\n", (unsigned long)(ctx.line+1));
1310     ftepp_out(ftepp, lineno, false);
1311
1312     /* skip the line */
1313     (void)ftepp_next(ftepp);
1314     if (!ftepp_skipspace(ftepp))
1315         return false;
1316     if (ftepp->token != TOKEN_EOL) {
1317         ftepp_error(ftepp, "stray tokens after #include");
1318         return false;
1319     }
1320     (void)ftepp_next(ftepp);
1321
1322     return true;
1323 }
1324
1325 /* Basic structure handlers */
1326 static bool ftepp_else_allowed(ftepp_t *ftepp)
1327 {
1328     if (!vec_size(ftepp->conditions)) {
1329         ftepp_error(ftepp, "#else without #if");
1330         return false;
1331     }
1332     if (vec_last(ftepp->conditions).had_else) {
1333         ftepp_error(ftepp, "multiple #else for a single #if");
1334         return false;
1335     }
1336     return true;
1337 }
1338
1339 static bool ftepp_hash(ftepp_t *ftepp)
1340 {
1341     ppcondition cond;
1342     ppcondition *pc;
1343
1344     lex_ctx ctx = ftepp_ctx(ftepp);
1345
1346     if (!ftepp_skipspace(ftepp))
1347         return false;
1348
1349     switch (ftepp->token) {
1350         case TOKEN_KEYWORD:
1351         case TOKEN_IDENT:
1352         case TOKEN_TYPENAME:
1353             if (!strcmp(ftepp_tokval(ftepp), "define")) {
1354                 return ftepp_define(ftepp);
1355             }
1356             else if (!strcmp(ftepp_tokval(ftepp), "undef")) {
1357                 return ftepp_undef(ftepp);
1358             }
1359             else if (!strcmp(ftepp_tokval(ftepp), "ifdef")) {
1360                 if (!ftepp_ifdef(ftepp, &cond))
1361                     return false;
1362                 cond.was_on = cond.on;
1363                 vec_push(ftepp->conditions, cond);
1364                 ftepp->output_on = ftepp->output_on && cond.on;
1365                 break;
1366             }
1367             else if (!strcmp(ftepp_tokval(ftepp), "ifndef")) {
1368                 if (!ftepp_ifdef(ftepp, &cond))
1369                     return false;
1370                 cond.on = !cond.on;
1371                 cond.was_on = cond.on;
1372                 vec_push(ftepp->conditions, cond);
1373                 ftepp->output_on = ftepp->output_on && cond.on;
1374                 break;
1375             }
1376             else if (!strcmp(ftepp_tokval(ftepp), "elifdef")) {
1377                 if (!ftepp_else_allowed(ftepp))
1378                     return false;
1379                 if (!ftepp_ifdef(ftepp, &cond))
1380                     return false;
1381                 pc = &vec_last(ftepp->conditions);
1382                 pc->on     = !pc->was_on && cond.on;
1383                 pc->was_on = pc->was_on || pc->on;
1384                 ftepp_update_output_condition(ftepp);
1385                 break;
1386             }
1387             else if (!strcmp(ftepp_tokval(ftepp), "elifndef")) {
1388                 if (!ftepp_else_allowed(ftepp))
1389                     return false;
1390                 if (!ftepp_ifdef(ftepp, &cond))
1391                     return false;
1392                 cond.on = !cond.on;
1393                 pc = &vec_last(ftepp->conditions);
1394                 pc->on     = !pc->was_on && cond.on;
1395                 pc->was_on = pc->was_on || pc->on;
1396                 ftepp_update_output_condition(ftepp);
1397                 break;
1398             }
1399             else if (!strcmp(ftepp_tokval(ftepp), "elif")) {
1400                 if (!ftepp_else_allowed(ftepp))
1401                     return false;
1402                 if (!ftepp_if(ftepp, &cond))
1403                     return false;
1404                 pc = &vec_last(ftepp->conditions);
1405                 pc->on     = !pc->was_on && cond.on;
1406                 pc->was_on = pc->was_on  || pc->on;
1407                 ftepp_update_output_condition(ftepp);
1408                 break;
1409             }
1410             else if (!strcmp(ftepp_tokval(ftepp), "if")) {
1411                 if (!ftepp_if(ftepp, &cond))
1412                     return false;
1413                 cond.was_on = cond.on;
1414                 vec_push(ftepp->conditions, cond);
1415                 ftepp->output_on = ftepp->output_on && cond.on;
1416                 break;
1417             }
1418             else if (!strcmp(ftepp_tokval(ftepp), "else")) {
1419                 if (!ftepp_else_allowed(ftepp))
1420                     return false;
1421                 pc = &vec_last(ftepp->conditions);
1422                 pc->on = !pc->was_on;
1423                 pc->had_else = true;
1424                 ftepp_next(ftepp);
1425                 ftepp_update_output_condition(ftepp);
1426                 break;
1427             }
1428             else if (!strcmp(ftepp_tokval(ftepp), "endif")) {
1429                 if (!vec_size(ftepp->conditions)) {
1430                     ftepp_error(ftepp, "#endif without #if");
1431                     return false;
1432                 }
1433                 vec_pop(ftepp->conditions);
1434                 ftepp_next(ftepp);
1435                 ftepp_update_output_condition(ftepp);
1436                 break;
1437             }
1438             else if (!strcmp(ftepp_tokval(ftepp), "include")) {
1439                 return ftepp_include(ftepp);
1440             }
1441             else if (!strcmp(ftepp_tokval(ftepp), "pragma")) {
1442                 ftepp_out(ftepp, "#", false);
1443                 break;
1444             }
1445             else if (!strcmp(ftepp_tokval(ftepp), "warning")) {
1446                 ftepp_directive_warning(ftepp);
1447                 break;
1448             }
1449             else if (!strcmp(ftepp_tokval(ftepp), "error")) {
1450                 ftepp_directive_error(ftepp);
1451                 break;
1452             }
1453             else {
1454                 if (ftepp->output_on) {
1455                     ftepp_error(ftepp, "unrecognized preprocessor directive: `%s`", ftepp_tokval(ftepp));
1456                     return false;
1457                 } else {
1458                     ftepp_next(ftepp);
1459                     break;
1460                 }
1461             }
1462             /* break; never reached */
1463         default:
1464             ftepp_error(ftepp, "unexpected preprocessor token: `%s`", ftepp_tokval(ftepp));
1465             return false;
1466         case TOKEN_EOL:
1467             ftepp_errorat(ftepp, ctx, "empty preprocessor directive");
1468             return false;
1469         case TOKEN_EOF:
1470             ftepp_error(ftepp, "missing newline at end of file", ftepp_tokval(ftepp));
1471             return false;
1472
1473         /* Builtins! Don't forget the builtins! */
1474         case TOKEN_INTCONST:
1475         case TOKEN_FLOATCONST:
1476             ftepp_out(ftepp, "#", false);
1477             return true;
1478     }
1479     if (!ftepp_skipspace(ftepp))
1480         return false;
1481     return true;
1482 }
1483
1484 static bool ftepp_preprocess(ftepp_t *ftepp)
1485 {
1486     ppmacro *macro;
1487     bool     newline = true;
1488
1489     /* predef stuff */
1490     char    *expand  = NULL;
1491     size_t   i;
1492
1493     ftepp->lex->flags.preprocessing = true;
1494     ftepp->lex->flags.mergelines    = false;
1495     ftepp->lex->flags.noops         = true;
1496
1497     ftepp_next(ftepp);
1498     do
1499     {
1500         if (ftepp->token >= TOKEN_EOF)
1501             break;
1502 #if 0
1503         newline = true;
1504 #endif
1505
1506         switch (ftepp->token) {
1507             case TOKEN_KEYWORD:
1508             case TOKEN_IDENT:
1509             case TOKEN_TYPENAME:
1510                 /* is it a predef? */
1511                 if (OPTS_FLAG(FTEPP_PREDEFS)) {
1512                     for (i = 0; i < sizeof(ftepp_predefs) / sizeof (*ftepp_predefs); i++) {
1513                         if (!strcmp(ftepp_predefs[i].name, ftepp_tokval(ftepp))) {
1514                             expand = ftepp_predefs[i].func(ftepp->lex);
1515                             ftepp_out(ftepp, expand, false);
1516                             ftepp_next(ftepp); /* skip */
1517
1518                             mem_d(expand); /* free memory */
1519                             break;
1520                         }
1521                     }
1522                 }
1523
1524                 if (ftepp->output_on)
1525                     macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
1526                 else
1527                     macro = NULL;
1528
1529                 if (!macro) {
1530                     ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1531                     ftepp_next(ftepp);
1532                     break;
1533                 }
1534                 if (!ftepp_macro_call(ftepp, macro))
1535                     ftepp->token = TOKEN_ERROR;
1536                 break;
1537             case '#':
1538                 if (!newline) {
1539                     ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1540                     ftepp_next(ftepp);
1541                     break;
1542                 }
1543                 ftepp->lex->flags.mergelines = true;
1544                 if (ftepp_next(ftepp) >= TOKEN_EOF) {
1545                     ftepp_error(ftepp, "error in preprocessor directive");
1546                     ftepp->token = TOKEN_ERROR;
1547                     break;
1548                 }
1549                 if (!ftepp_hash(ftepp))
1550                     ftepp->token = TOKEN_ERROR;
1551                 ftepp->lex->flags.mergelines = false;
1552                 break;
1553             case TOKEN_EOL:
1554                 newline = true;
1555                 ftepp_out(ftepp, "\n", true);
1556                 ftepp_next(ftepp);
1557                 break;
1558             case TOKEN_WHITE:
1559                 /* same as default but don't set newline=false */
1560                 ftepp_out(ftepp, ftepp_tokval(ftepp), true);
1561                 ftepp_next(ftepp);
1562                 break;
1563             default:
1564                 newline = false;
1565                 ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1566                 ftepp_next(ftepp);
1567                 break;
1568         }
1569     } while (!ftepp->errors && ftepp->token < TOKEN_EOF);
1570
1571     /* force a 0 at the end but don't count it as added to the output */
1572     vec_push(ftepp->output_string, 0);
1573     vec_shrinkby(ftepp->output_string, 1);
1574
1575     return (ftepp->token == TOKEN_EOF);
1576 }
1577
1578 /* Like in parser.c - files keep the previous state so we have one global
1579  * preprocessor. Except here we will want to warn about dangling #ifs.
1580  */
1581 static ftepp_t *ftepp;
1582
1583 static bool ftepp_preprocess_done()
1584 {
1585     bool retval = true;
1586     if (vec_size(ftepp->conditions)) {
1587         if (ftepp_warn(ftepp, WARN_MULTIFILE_IF, "#if spanning multiple files, is this intended?"))
1588             retval = false;
1589     }
1590     lex_close(ftepp->lex);
1591     ftepp->lex = NULL;
1592     if (ftepp->itemname) {
1593         mem_d(ftepp->itemname);
1594         ftepp->itemname = NULL;
1595     }
1596     return retval;
1597 }
1598
1599 bool ftepp_preprocess_file(const char *filename)
1600 {
1601     ftepp->lex = lex_open(filename);
1602     ftepp->itemname = util_strdup(filename);
1603     if (!ftepp->lex) {
1604         con_out("failed to open file \"%s\"\n", filename);
1605         return false;
1606     }
1607     if (!ftepp_preprocess(ftepp))
1608         return false;
1609     return ftepp_preprocess_done();
1610 }
1611
1612 bool ftepp_preprocess_string(const char *name, const char *str)
1613 {
1614     ftepp->lex = lex_open_string(str, strlen(str), name);
1615     ftepp->itemname = util_strdup(name);
1616     if (!ftepp->lex) {
1617         con_out("failed to create lexer for string \"%s\"\n", name);
1618         return false;
1619     }
1620     if (!ftepp_preprocess(ftepp))
1621         return false;
1622     return ftepp_preprocess_done();
1623 }
1624
1625
1626 void ftepp_add_macro(const char *name, const char *value) {
1627     char *create = NULL;
1628
1629     /* use saner path for empty macros */
1630     if (!value) {
1631         ftepp_add_define("__builtin__", name);
1632         return;
1633     }
1634
1635     vec_upload(create, "#define ", 8);
1636     vec_upload(create, name,  strlen(name));
1637     vec_push  (create, ' ');
1638     vec_upload(create, value, strlen(value));
1639     vec_push  (create, 0);
1640
1641     ftepp_preprocess_string("__builtin__", create);
1642     vec_free  (create);
1643 }
1644
1645 bool ftepp_init()
1646 {
1647     char minor[32];
1648     char major[32];
1649
1650     ftepp = ftepp_new();
1651     if (!ftepp)
1652         return false;
1653
1654     memset(minor, 0, sizeof(minor));
1655     memset(major, 0, sizeof(major));
1656
1657     /* set the right macro based on the selected standard */
1658     ftepp_add_define(NULL, "GMQCC");
1659     if (opts.standard == COMPILER_FTEQCC) {
1660         ftepp_add_define(NULL, "__STD_FTEQCC__");
1661         /* 1.00 */
1662         major[0] = '"';
1663         major[1] = '1';
1664         major[2] = '"';
1665
1666         minor[0] = '"';
1667         minor[1] = '0';
1668         minor[2] = '"';
1669     } else if (opts.standard == COMPILER_GMQCC) {
1670         ftepp_add_define(NULL, "__STD_GMQCC__");
1671         sprintf(major, "\"%d\"", GMQCC_VERSION_MAJOR);
1672         sprintf(minor, "\"%d\"", GMQCC_VERSION_MINOR);
1673     } else if (opts.standard == COMPILER_QCCX) {
1674         ftepp_add_define(NULL, "__STD_QCCX__");
1675         sprintf(major, "\"%d\"", GMQCC_VERSION_MAJOR);
1676         sprintf(minor, "\"%d\"", GMQCC_VERSION_MINOR);
1677     } else if (opts.standard == COMPILER_QCC) {
1678         ftepp_add_define(NULL, "__STD_QCC__");
1679         /* 1.0 */
1680         major[0] = '"';
1681         major[1] = '1';
1682         major[2] = '"';
1683
1684         minor[0] = '"';
1685         minor[1] = '0';
1686         minor[2] = '"';
1687     }
1688
1689     ftepp_add_macro("__STD_VERSION_MINOR__", minor);
1690     ftepp_add_macro("__STD_VERSION_MAJOR__", major);
1691
1692     return true;
1693 }
1694
1695 void ftepp_add_define(const char *source, const char *name)
1696 {
1697     ppmacro *macro;
1698     lex_ctx ctx = { "__builtin__", 0 };
1699     ctx.file = source;
1700     macro = ppmacro_new(ctx, name);
1701     vec_push(ftepp->macros, macro);
1702 }
1703
1704 const char *ftepp_get()
1705 {
1706     return ftepp->output_string;
1707 }
1708
1709 void ftepp_flush()
1710 {
1711     ftepp_flush_do(ftepp);
1712 }
1713
1714 void ftepp_finish()
1715 {
1716     if (!ftepp)
1717         return;
1718     ftepp_delete(ftepp);
1719     ftepp = NULL;
1720 }