2 * Copyright (C) 2012, 2013
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:
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
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
36 /* a copy from the lexer */
50 /* yes we need an extra flag since `#define FOO x` is not the same as `#define FOO() x` */
62 ppcondition *conditions;
73 char *(*func)(lex_file *);
77 * Implement the predef subsystem now. We can do this safely with the
78 * help of lexer contexts.
80 static uint32_t ftepp_predef_countval = 0;
81 static uint32_t ftepp_predef_randval = 0;
84 char *ftepp_predef_line(lex_file *context) {
86 util_asprintf(&value, "%d", (int)context->line);
90 char *ftepp_predef_file(lex_file *context) {
91 size_t length = strlen(context->name) + 3; /* two quotes and a terminator */
92 char *value = (char*)mem_a(length);
93 memset (value, 0, length);
94 sprintf(value, "\"%s\"", context->name);
98 /* __COUNTER_LAST__ */
99 char *ftepp_predef_counterlast(lex_file *context) {
101 util_asprintf(&value, "%u", ftepp_predef_countval);
107 char *ftepp_predef_counter(lex_file *context) {
109 ftepp_predef_countval ++;
110 util_asprintf(&value, "%u", ftepp_predef_countval);
116 char *ftepp_predef_random(lex_file *context) {
118 ftepp_predef_randval = (util_rand() % 0xFF) + 1;
119 util_asprintf(&value, "%u", ftepp_predef_randval);
124 /* __RANDOM_LAST__ */
125 char *ftepp_predef_randomlast(lex_file *context) {
127 util_asprintf(&value, "%u", ftepp_predef_randval);
133 static const predef_t ftepp_predefs[] = {
134 { "__LINE__", &ftepp_predef_line },
135 { "__FILE__", &ftepp_predef_file },
136 { "__COUNTER__", &ftepp_predef_counter },
137 { "__COUNTER_LAST__", &ftepp_predef_counterlast },
138 { "__RANDOM__", &ftepp_predef_random },
139 { "__RANDOM_LAST__", &ftepp_predef_randomlast },
142 #define ftepp_tokval(f) ((f)->lex->tok.value)
143 #define ftepp_ctx(f) ((f)->lex->tok.ctx)
145 static void ftepp_errorat(ftepp_t *ftepp, lex_ctx ctx, const char *fmt, ...)
152 con_cvprintmsg((void*)&ctx, LVL_ERROR, "error", fmt, ap);
156 static void ftepp_error(ftepp_t *ftepp, const char *fmt, ...)
163 con_cvprintmsg((void*)&ftepp->lex->tok.ctx, LVL_ERROR, "error", fmt, ap);
167 static bool GMQCC_WARN ftepp_warn(ftepp_t *ftepp, int warntype, const char *fmt, ...)
173 r = vcompile_warning(ftepp->lex->tok.ctx, warntype, fmt, ap);
178 static pptoken *pptoken_make(ftepp_t *ftepp)
180 pptoken *token = (pptoken*)mem_a(sizeof(pptoken));
181 token->token = ftepp->token;
183 if (token->token == TOKEN_WHITE)
184 token->value = util_strdup(" ");
187 token->value = util_strdup(ftepp_tokval(ftepp));
189 memcpy(&token->constval, &ftepp->lex->tok.constval, sizeof(token->constval));
193 static void pptoken_delete(pptoken *self)
199 static ppmacro *ppmacro_new(lex_ctx ctx, const char *name)
201 ppmacro *macro = (ppmacro*)mem_a(sizeof(ppmacro));
204 memset(macro, 0, sizeof(*macro));
205 macro->name = util_strdup(name);
209 static void ppmacro_delete(ppmacro *self)
212 for (i = 0; i < vec_size(self->params); ++i)
213 mem_d(self->params[i]);
214 vec_free(self->params);
215 for (i = 0; i < vec_size(self->output); ++i)
216 pptoken_delete(self->output[i]);
217 vec_free(self->output);
222 static ftepp_t* ftepp_new()
226 ftepp = (ftepp_t*)mem_a(sizeof(*ftepp));
227 memset(ftepp, 0, sizeof(*ftepp));
229 ftepp->output_on = true;
234 static void ftepp_delete(ftepp_t *self)
239 mem_d(self->itemname);
240 if (self->includename)
241 vec_free(self->includename);
242 for (i = 0; i < vec_size(self->macros); ++i)
243 ppmacro_delete(self->macros[i]);
244 vec_free(self->macros);
245 vec_free(self->conditions);
247 lex_close(self->lex);
251 static void ftepp_out(ftepp_t *ftepp, const char *str, bool ignore_cond)
253 if (ignore_cond || ftepp->output_on)
258 data = vec_add(ftepp->output_string, len);
259 memcpy(data, str, len);
263 static void ftepp_update_output_condition(ftepp_t *ftepp)
266 ftepp->output_on = true;
267 for (i = 0; i < vec_size(ftepp->conditions); ++i)
268 ftepp->output_on = ftepp->output_on && ftepp->conditions[i].on;
271 static ppmacro* ftepp_macro_find(ftepp_t *ftepp, const char *name)
274 for (i = 0; i < vec_size(ftepp->macros); ++i) {
275 if (!strcmp(name, ftepp->macros[i]->name))
276 return ftepp->macros[i];
281 static void ftepp_macro_delete(ftepp_t *ftepp, const char *name)
284 for (i = 0; i < vec_size(ftepp->macros); ++i) {
285 if (!strcmp(name, ftepp->macros[i]->name)) {
286 vec_remove(ftepp->macros, i, 1);
292 static GMQCC_INLINE int ftepp_next(ftepp_t *ftepp)
294 return (ftepp->token = lex_do(ftepp->lex));
297 /* Important: this does not skip newlines! */
298 static bool ftepp_skipspace(ftepp_t *ftepp)
300 if (ftepp->token != TOKEN_WHITE)
302 while (ftepp_next(ftepp) == TOKEN_WHITE) {}
303 if (ftepp->token >= TOKEN_EOF) {
304 ftepp_error(ftepp, "unexpected end of preprocessor directive");
310 /* this one skips EOLs as well */
311 static bool ftepp_skipallwhite(ftepp_t *ftepp)
313 if (ftepp->token != TOKEN_WHITE && ftepp->token != TOKEN_EOL)
317 } while (ftepp->token == TOKEN_WHITE || ftepp->token == TOKEN_EOL);
318 if (ftepp->token >= TOKEN_EOF) {
319 ftepp_error(ftepp, "unexpected end of preprocessor directive");
326 * The huge macro parsing code...
328 static bool ftepp_define_params(ftepp_t *ftepp, ppmacro *macro)
332 if (!ftepp_skipspace(ftepp))
334 if (ftepp->token == ')')
336 switch (ftepp->token) {
342 ftepp_error(ftepp, "unexpected token in parameter list");
345 vec_push(macro->params, util_strdup(ftepp_tokval(ftepp)));
347 if (!ftepp_skipspace(ftepp))
349 } while (ftepp->token == ',');
350 if (ftepp->token != ')') {
351 ftepp_error(ftepp, "expected closing paren after macro parameter list");
355 /* skipspace happens in ftepp_define */
359 static bool ftepp_define_body(ftepp_t *ftepp, ppmacro *macro)
362 while (ftepp->token != TOKEN_EOL && ftepp->token < TOKEN_EOF) {
363 ptok = pptoken_make(ftepp);
364 vec_push(macro->output, ptok);
367 /* recursive expansion can cause EOFs here */
368 if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
369 ftepp_error(ftepp, "unexpected junk after macro or unexpected end of file");
375 static bool ftepp_define(ftepp_t *ftepp)
378 size_t l = ftepp_ctx(ftepp).line;
380 (void)ftepp_next(ftepp);
381 if (!ftepp_skipspace(ftepp))
384 switch (ftepp->token) {
388 macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
389 if (macro && ftepp->output_on) {
390 if (ftepp_warn(ftepp, WARN_PREPROCESSOR, "redefining `%s`", ftepp_tokval(ftepp)))
392 ftepp_macro_delete(ftepp, ftepp_tokval(ftepp));
394 macro = ppmacro_new(ftepp_ctx(ftepp), ftepp_tokval(ftepp));
397 ftepp_error(ftepp, "expected macro name");
401 (void)ftepp_next(ftepp);
403 if (ftepp->token == '(') {
404 macro->has_params = true;
405 if (!ftepp_define_params(ftepp, macro))
409 if (!ftepp_skipspace(ftepp))
412 if (!ftepp_define_body(ftepp, macro))
415 if (ftepp->output_on)
416 vec_push(ftepp->macros, macro);
418 ppmacro_delete(macro);
421 for (; l < ftepp_ctx(ftepp).line; ++l)
422 ftepp_out(ftepp, "\n", true);
427 * When a macro is used we have to handle parameters as well
428 * as special-concatenation via ## or stringification via #
430 * Note: parenthesis can nest, so FOO((a),b) is valid, but only
431 * this kind of parens. Curly braces or [] don't count towards the
438 static void macroparam_clean(macroparam *self)
441 for (i = 0; i < vec_size(self->tokens); ++i)
442 pptoken_delete(self->tokens[i]);
443 vec_free(self->tokens);
446 /* need to leave the last token up */
447 static bool ftepp_macro_call_params(ftepp_t *ftepp, macroparam **out_params)
449 macroparam *params = NULL;
455 if (!ftepp_skipallwhite(ftepp))
457 while (ftepp->token != ')') {
459 if (!ftepp_skipallwhite(ftepp))
461 while (parens || ftepp->token != ',') {
462 if (ftepp->token == '(')
464 else if (ftepp->token == ')') {
469 ptok = pptoken_make(ftepp);
470 vec_push(mp.tokens, ptok);
471 if (ftepp_next(ftepp) >= TOKEN_EOF) {
472 ftepp_error(ftepp, "unexpected EOF in macro call");
476 vec_push(params, mp);
478 if (ftepp->token == ')')
480 if (ftepp->token != ',') {
481 ftepp_error(ftepp, "expected closing paren or comma in macro call");
484 if (ftepp_next(ftepp) >= TOKEN_EOF) {
485 ftepp_error(ftepp, "unexpected EOF in macro call");
489 /* need to leave that up
490 if (ftepp_next(ftepp) >= TOKEN_EOF) {
491 ftepp_error(ftepp, "unexpected EOF in macro call");
495 *out_params = params;
500 macroparam_clean(&mp);
501 for (i = 0; i < vec_size(params); ++i)
502 macroparam_clean(¶ms[i]);
507 static bool macro_params_find(ppmacro *macro, const char *name, size_t *idx)
510 for (i = 0; i < vec_size(macro->params); ++i) {
511 if (!strcmp(macro->params[i], name)) {
519 static void ftepp_stringify_token(ftepp_t *ftepp, pptoken *token)
524 switch (token->token) {
525 case TOKEN_STRINGCONST:
528 /* in preprocessor mode strings already are string,
529 * so we don't get actual newline bytes here.
530 * Still need to escape backslashes and quotes.
533 case '\\': ftepp_out(ftepp, "\\\\", false); break;
534 case '"': ftepp_out(ftepp, "\\\"", false); break;
537 ftepp_out(ftepp, chs, false);
544 ftepp_out(ftepp, " ", false);
547 ftepp_out(ftepp, "\\n", false);
550 ftepp_out(ftepp, token->value, false);
555 static void ftepp_stringify(ftepp_t *ftepp, macroparam *param)
558 ftepp_out(ftepp, "\"", false);
559 for (i = 0; i < vec_size(param->tokens); ++i)
560 ftepp_stringify_token(ftepp, param->tokens[i]);
561 ftepp_out(ftepp, "\"", false);
564 static void ftepp_recursion_header(ftepp_t *ftepp)
566 ftepp_out(ftepp, "\n#pragma push(line)\n", false);
569 static void ftepp_recursion_footer(ftepp_t *ftepp)
571 ftepp_out(ftepp, "\n#pragma pop(line)\n", false);
574 static bool ftepp_preprocess(ftepp_t *ftepp);
575 static bool ftepp_macro_expand(ftepp_t *ftepp, ppmacro *macro, macroparam *params)
577 char *old_string = ftepp->output_string;
578 lex_file *old_lexer = ftepp->lex;
587 if (!vec_size(macro->output))
590 ftepp->output_string = NULL;
591 for (o = 0; o < vec_size(macro->output); ++o) {
592 pptoken *out = macro->output[o];
593 switch (out->token) {
597 if (!macro_params_find(macro, out->value, &pi)) {
598 ftepp_out(ftepp, out->value, false);
601 for (pv = 0; pv < vec_size(params[pi].tokens); ++pv) {
602 out = params[pi].tokens[pv];
603 if (out->token == TOKEN_EOL)
604 ftepp_out(ftepp, "\n", false);
606 ftepp_out(ftepp, out->value, false);
611 if (o + 1 < vec_size(macro->output)) {
612 nextok = macro->output[o+1]->token;
614 /* raw concatenation */
618 if ( (nextok == TOKEN_IDENT ||
619 nextok == TOKEN_KEYWORD ||
620 nextok == TOKEN_TYPENAME) &&
621 macro_params_find(macro, macro->output[o+1]->value, &pi))
624 ftepp_stringify(ftepp, ¶ms[pi]);
628 ftepp_out(ftepp, "#", false);
631 ftepp_out(ftepp, "\n", false);
634 ftepp_out(ftepp, out->value, false);
638 vec_push(ftepp->output_string, 0);
639 /* Now run the preprocessor recursively on this string buffer */
641 printf("__________\n%s\n=========\n", ftepp->output_string);
643 inlex = lex_open_string(ftepp->output_string, vec_size(ftepp->output_string)-1, ftepp->lex->name);
645 ftepp_error(ftepp, "internal error: failed to instantiate lexer");
649 ftepp->output_string = old_string;
650 inlex->line = ftepp->lex->line;
651 inlex->sline = ftepp->lex->sline;
653 ftepp_recursion_header(ftepp);
654 if (!ftepp_preprocess(ftepp)) {
655 old_string = ftepp->output_string;
656 lex_close(ftepp->lex);
660 ftepp_recursion_footer(ftepp);
661 old_string = ftepp->output_string;
664 ftepp->lex = old_lexer;
665 ftepp->output_string = old_string;
669 static bool ftepp_macro_call(ftepp_t *ftepp, ppmacro *macro)
672 macroparam *params = NULL;
675 if (!macro->has_params) {
676 if (!ftepp_macro_expand(ftepp, macro, NULL))
683 if (!ftepp_skipallwhite(ftepp))
686 if (ftepp->token != '(') {
687 ftepp_error(ftepp, "expected macro parameters in parenthesis");
692 if (!ftepp_macro_call_params(ftepp, ¶ms))
695 if (vec_size(params) != vec_size(macro->params)) {
696 ftepp_error(ftepp, "macro %s expects %u paramteters, %u provided", macro->name,
697 (unsigned int)vec_size(macro->params),
698 (unsigned int)vec_size(params));
703 if (!ftepp_macro_expand(ftepp, macro, params))
708 for (o = 0; o < vec_size(params); ++o)
709 macroparam_clean(¶ms[o]);
715 * #if - the FTEQCC way:
716 * defined(FOO) => true if FOO was #defined regardless of parameters or contents
717 * <numbers> => True if the number is not 0
718 * !<factor> => True if the factor yields false
719 * !!<factor> => ERROR on 2 or more unary nots
720 * <macro> => becomes the macro's FIRST token regardless of parameters
721 * <e> && <e> => True if both expressions are true
722 * <e> || <e> => True if either expression is true
724 * <ident> => False (remember for macros the <macro> rule applies instead)
725 * Unary + and - are weird and wrong in fteqcc so we don't allow them
726 * parenthesis in expressions are allowed
727 * parameter lists on macros are errors
728 * No mathematical calculations are executed
730 static bool ftepp_if_expr(ftepp_t *ftepp, bool *out, double *value_out);
731 static bool ftepp_if_op(ftepp_t *ftepp)
733 ftepp->lex->flags.noops = false;
735 if (!ftepp_skipspace(ftepp))
737 ftepp->lex->flags.noops = true;
740 static bool ftepp_if_value(ftepp_t *ftepp, bool *out, double *value_out)
745 if (!ftepp_skipspace(ftepp))
748 while (ftepp->token == '!') {
751 if (!ftepp_skipspace(ftepp))
755 switch (ftepp->token) {
759 if (!strcmp(ftepp_tokval(ftepp), "defined")) {
761 if (!ftepp_skipspace(ftepp))
763 if (ftepp->token != '(') {
764 ftepp_error(ftepp, "`defined` keyword in #if requires a macro name in parenthesis");
768 if (!ftepp_skipspace(ftepp))
770 if (ftepp->token != TOKEN_IDENT &&
771 ftepp->token != TOKEN_TYPENAME &&
772 ftepp->token != TOKEN_KEYWORD)
774 ftepp_error(ftepp, "defined() used on an unexpected token type");
777 macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
780 if (!ftepp_skipspace(ftepp))
782 if (ftepp->token != ')') {
783 ftepp_error(ftepp, "expected closing paren");
789 macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
790 if (!macro || !vec_size(macro->output)) {
794 /* This does not expand recursively! */
795 switch (macro->output[0]->token) {
797 *value_out = macro->output[0]->constval.i;
798 *out = !!(macro->output[0]->constval.i);
800 case TOKEN_FLOATCONST:
801 *value_out = macro->output[0]->constval.f;
802 *out = !!(macro->output[0]->constval.f);
810 case TOKEN_STRINGCONST:
814 *value_out = ftepp->lex->tok.constval.i;
815 *out = !!(ftepp->lex->tok.constval.i);
817 case TOKEN_FLOATCONST:
818 *value_out = ftepp->lex->tok.constval.f;
819 *out = !!(ftepp->lex->tok.constval.f);
824 if (!ftepp_if_expr(ftepp, out, value_out))
826 if (ftepp->token != ')') {
827 ftepp_error(ftepp, "expected closing paren in #if expression");
833 ftepp_error(ftepp, "junk in #if: `%s` ...", ftepp_tokval(ftepp));
838 *value_out = (*out ? 1 : 0);
844 static bool ftepp_if_nextvalue(ftepp_t *ftepp, bool *out, double *value_out)
846 if (!ftepp_next(ftepp))
848 return ftepp_if_value(ftepp, out, value_out);
852 static bool ftepp_if_expr(ftepp_t *ftepp, bool *out, double *value_out)
854 if (!ftepp_if_value(ftepp, out, value_out))
857 if (!ftepp_if_op(ftepp))
860 if (ftepp->token == ')' || ftepp->token != TOKEN_OPERATOR)
863 /* FTEQCC is all right-associative and no precedence here */
864 if (!strcmp(ftepp_tokval(ftepp), "&&") ||
865 !strcmp(ftepp_tokval(ftepp), "||"))
868 char opc = ftepp_tokval(ftepp)[0];
872 if (!ftepp_next(ftepp))
874 if (!ftepp_if_expr(ftepp, &next, &nextvalue))
882 *value_out = (*out ? 1 : 0);
885 else if (!strcmp(ftepp_tokval(ftepp), "==") ||
886 !strcmp(ftepp_tokval(ftepp), "!=") ||
887 !strcmp(ftepp_tokval(ftepp), ">=") ||
888 !strcmp(ftepp_tokval(ftepp), "<=") ||
889 !strcmp(ftepp_tokval(ftepp), ">") ||
890 !strcmp(ftepp_tokval(ftepp), "<"))
893 const char opc0 = ftepp_tokval(ftepp)[0];
894 const char opc1 = ftepp_tokval(ftepp)[1];
897 if (!ftepp_next(ftepp))
899 if (!ftepp_if_expr(ftepp, &next, &other))
903 *out = (*value_out == other);
904 else if (opc0 == '!')
905 *out = (*value_out != other);
906 else if (opc0 == '>') {
907 if (opc1 == '=') *out = (*value_out >= other);
908 else *out = (*value_out > other);
910 else if (opc0 == '<') {
911 if (opc1 == '=') *out = (*value_out <= other);
912 else *out = (*value_out < other);
914 *value_out = (*out ? 1 : 0);
919 ftepp_error(ftepp, "junk after #if");
924 static bool ftepp_if(ftepp_t *ftepp, ppcondition *cond)
929 memset(cond, 0, sizeof(*cond));
930 (void)ftepp_next(ftepp);
932 if (!ftepp_skipspace(ftepp))
934 if (ftepp->token == TOKEN_EOL) {
935 ftepp_error(ftepp, "expected expression for #if-directive");
939 if (!ftepp_if_expr(ftepp, &result, &dummy))
947 * ifdef is rather simple
949 static bool ftepp_ifdef(ftepp_t *ftepp, ppcondition *cond)
952 memset(cond, 0, sizeof(*cond));
953 (void)ftepp_next(ftepp);
954 if (!ftepp_skipspace(ftepp))
957 switch (ftepp->token) {
961 macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
964 ftepp_error(ftepp, "expected macro name");
968 (void)ftepp_next(ftepp);
969 if (!ftepp_skipspace(ftepp))
971 /* relaxing this condition
972 if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
973 ftepp_error(ftepp, "stray tokens after #ifdef");
982 * undef is also simple
984 static bool ftepp_undef(ftepp_t *ftepp)
986 (void)ftepp_next(ftepp);
987 if (!ftepp_skipspace(ftepp))
990 if (ftepp->output_on) {
991 switch (ftepp->token) {
995 ftepp_macro_delete(ftepp, ftepp_tokval(ftepp));
998 ftepp_error(ftepp, "expected macro name");
1003 (void)ftepp_next(ftepp);
1004 if (!ftepp_skipspace(ftepp))
1006 /* relaxing this condition
1007 if (ftepp->token != TOKEN_EOL && ftepp->token != TOKEN_EOF) {
1008 ftepp_error(ftepp, "stray tokens after #ifdef");
1015 /* Special unescape-string function which skips a leading quote
1016 * and stops at a quote, not just at \0
1018 static void unescape(const char *str, char *out) {
1020 while (*str && *str != '"') {
1024 case '\\': *out++ = *str; break;
1025 case '"': *out++ = *str; break;
1026 case 'a': *out++ = '\a'; break;
1027 case 'b': *out++ = '\b'; break;
1028 case 'r': *out++ = '\r'; break;
1029 case 'n': *out++ = '\n'; break;
1030 case 't': *out++ = '\t'; break;
1031 case 'f': *out++ = '\f'; break;
1032 case 'v': *out++ = '\v'; break;
1047 static char *ftepp_include_find_path(const char *file, const char *pathfile)
1050 char *filename = NULL;
1051 const char *last_slash;
1057 last_slash = strrchr(pathfile, '/');
1060 len = last_slash - pathfile;
1061 memcpy(vec_add(filename, len), pathfile, len);
1062 vec_push(filename, '/');
1066 memcpy(vec_add(filename, len+1), file, len);
1067 vec_last(filename) = 0;
1069 fp = file_open(filename, "rb");
1078 static char *ftepp_include_find(ftepp_t *ftepp, const char *file)
1080 char *filename = NULL;
1082 filename = ftepp_include_find_path(file, ftepp->includename);
1084 filename = ftepp_include_find_path(file, ftepp->itemname);
1088 static bool ftepp_directive_warning(ftepp_t *ftepp) {
1089 char *message = NULL;
1091 if (!ftepp_skipspace(ftepp))
1094 /* handle the odd non string constant case so it works like C */
1095 if (ftepp->token != TOKEN_STRINGCONST) {
1097 vec_upload(message, "#warning", 8);
1099 while (ftepp->token != TOKEN_EOL) {
1100 vec_upload(message, ftepp_tokval(ftepp), strlen(ftepp_tokval(ftepp)));
1103 vec_push(message, '\0');
1104 store = ftepp_warn(ftepp, WARN_CPP, message);
1109 unescape (ftepp_tokval(ftepp), ftepp_tokval(ftepp));
1110 return ftepp_warn(ftepp, WARN_CPP, "#warning %s", ftepp_tokval(ftepp));
1113 static void ftepp_directive_error(ftepp_t *ftepp) {
1114 char *message = NULL;
1116 if (!ftepp_skipspace(ftepp))
1119 /* handle the odd non string constant case so it works like C */
1120 if (ftepp->token != TOKEN_STRINGCONST) {
1121 vec_upload(message, "#error", 6);
1123 while (ftepp->token != TOKEN_EOL) {
1124 vec_upload(message, ftepp_tokval(ftepp), strlen(ftepp_tokval(ftepp)));
1127 vec_push(message, '\0');
1128 ftepp_error(ftepp, message);
1133 unescape (ftepp_tokval(ftepp), ftepp_tokval(ftepp));
1134 ftepp_error(ftepp, "#error %s", ftepp_tokval(ftepp));
1139 * FIXME: do we need/want a -I option?
1140 * FIXME: what about when dealing with files in subdirectories coming from a progs.src?
1142 static bool ftepp_include(ftepp_t *ftepp)
1144 lex_file *old_lexer = ftepp->lex;
1149 char *old_includename;
1151 (void)ftepp_next(ftepp);
1152 if (!ftepp_skipspace(ftepp))
1155 if (ftepp->token != TOKEN_STRINGCONST) {
1156 ftepp_error(ftepp, "expected filename to include");
1160 ctx = ftepp_ctx(ftepp);
1162 unescape(ftepp_tokval(ftepp), ftepp_tokval(ftepp));
1164 ftepp_out(ftepp, "\n#pragma file(", false);
1165 ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1166 ftepp_out(ftepp, ")\n#pragma line(1)\n", false);
1168 filename = ftepp_include_find(ftepp, ftepp_tokval(ftepp));
1170 ftepp_error(ftepp, "failed to open include file `%s`", ftepp_tokval(ftepp));
1173 inlex = lex_open(filename);
1175 ftepp_error(ftepp, "open failed on include file `%s`", filename);
1180 old_includename = ftepp->includename;
1181 ftepp->includename = filename;
1182 if (!ftepp_preprocess(ftepp)) {
1183 vec_free(ftepp->includename);
1184 ftepp->includename = old_includename;
1185 lex_close(ftepp->lex);
1186 ftepp->lex = old_lexer;
1189 vec_free(ftepp->includename);
1190 ftepp->includename = old_includename;
1191 lex_close(ftepp->lex);
1192 ftepp->lex = old_lexer;
1194 ftepp_out(ftepp, "\n#pragma file(", false);
1195 ftepp_out(ftepp, ctx.file, false);
1196 snprintf(lineno, sizeof(lineno), ")\n#pragma line(%lu)\n", (unsigned long)(ctx.line+1));
1197 ftepp_out(ftepp, lineno, false);
1200 (void)ftepp_next(ftepp);
1201 if (!ftepp_skipspace(ftepp))
1203 if (ftepp->token != TOKEN_EOL) {
1204 ftepp_error(ftepp, "stray tokens after #include");
1207 (void)ftepp_next(ftepp);
1212 /* Basic structure handlers */
1213 static bool ftepp_else_allowed(ftepp_t *ftepp)
1215 if (!vec_size(ftepp->conditions)) {
1216 ftepp_error(ftepp, "#else without #if");
1219 if (vec_last(ftepp->conditions).had_else) {
1220 ftepp_error(ftepp, "multiple #else for a single #if");
1226 static bool ftepp_hash(ftepp_t *ftepp)
1231 lex_ctx ctx = ftepp_ctx(ftepp);
1233 if (!ftepp_skipspace(ftepp))
1236 switch (ftepp->token) {
1239 case TOKEN_TYPENAME:
1240 if (!strcmp(ftepp_tokval(ftepp), "define")) {
1241 return ftepp_define(ftepp);
1243 else if (!strcmp(ftepp_tokval(ftepp), "undef")) {
1244 return ftepp_undef(ftepp);
1246 else if (!strcmp(ftepp_tokval(ftepp), "ifdef")) {
1247 if (!ftepp_ifdef(ftepp, &cond))
1249 cond.was_on = cond.on;
1250 vec_push(ftepp->conditions, cond);
1251 ftepp->output_on = ftepp->output_on && cond.on;
1254 else if (!strcmp(ftepp_tokval(ftepp), "ifndef")) {
1255 if (!ftepp_ifdef(ftepp, &cond))
1258 cond.was_on = cond.on;
1259 vec_push(ftepp->conditions, cond);
1260 ftepp->output_on = ftepp->output_on && cond.on;
1263 else if (!strcmp(ftepp_tokval(ftepp), "elifdef")) {
1264 if (!ftepp_else_allowed(ftepp))
1266 if (!ftepp_ifdef(ftepp, &cond))
1268 pc = &vec_last(ftepp->conditions);
1269 pc->on = !pc->was_on && cond.on;
1270 pc->was_on = pc->was_on || pc->on;
1271 ftepp_update_output_condition(ftepp);
1274 else if (!strcmp(ftepp_tokval(ftepp), "elifndef")) {
1275 if (!ftepp_else_allowed(ftepp))
1277 if (!ftepp_ifdef(ftepp, &cond))
1280 pc = &vec_last(ftepp->conditions);
1281 pc->on = !pc->was_on && cond.on;
1282 pc->was_on = pc->was_on || pc->on;
1283 ftepp_update_output_condition(ftepp);
1286 else if (!strcmp(ftepp_tokval(ftepp), "elif")) {
1287 if (!ftepp_else_allowed(ftepp))
1289 if (!ftepp_if(ftepp, &cond))
1291 pc = &vec_last(ftepp->conditions);
1292 pc->on = !pc->was_on && cond.on;
1293 pc->was_on = pc->was_on || pc->on;
1294 ftepp_update_output_condition(ftepp);
1297 else if (!strcmp(ftepp_tokval(ftepp), "if")) {
1298 if (!ftepp_if(ftepp, &cond))
1300 cond.was_on = cond.on;
1301 vec_push(ftepp->conditions, cond);
1302 ftepp->output_on = ftepp->output_on && cond.on;
1305 else if (!strcmp(ftepp_tokval(ftepp), "else")) {
1306 if (!ftepp_else_allowed(ftepp))
1308 pc = &vec_last(ftepp->conditions);
1309 pc->on = !pc->was_on;
1310 pc->had_else = true;
1312 ftepp_update_output_condition(ftepp);
1315 else if (!strcmp(ftepp_tokval(ftepp), "endif")) {
1316 if (!vec_size(ftepp->conditions)) {
1317 ftepp_error(ftepp, "#endif without #if");
1320 vec_pop(ftepp->conditions);
1322 ftepp_update_output_condition(ftepp);
1325 else if (!strcmp(ftepp_tokval(ftepp), "include")) {
1326 return ftepp_include(ftepp);
1328 else if (!strcmp(ftepp_tokval(ftepp), "pragma")) {
1329 ftepp_out(ftepp, "#", false);
1332 else if (!strcmp(ftepp_tokval(ftepp), "warning")) {
1333 ftepp_directive_warning(ftepp);
1336 else if (!strcmp(ftepp_tokval(ftepp), "error")) {
1337 ftepp_directive_error(ftepp);
1341 if (ftepp->output_on) {
1342 ftepp_error(ftepp, "unrecognized preprocessor directive: `%s`", ftepp_tokval(ftepp));
1349 /* break; never reached */
1351 ftepp_error(ftepp, "unexpected preprocessor token: `%s`", ftepp_tokval(ftepp));
1354 ftepp_errorat(ftepp, ctx, "empty preprocessor directive");
1357 ftepp_error(ftepp, "missing newline at end of file", ftepp_tokval(ftepp));
1360 /* Builtins! Don't forget the builtins! */
1361 case TOKEN_INTCONST:
1362 case TOKEN_FLOATCONST:
1363 ftepp_out(ftepp, "#", false);
1366 if (!ftepp_skipspace(ftepp))
1371 static bool ftepp_preprocess(ftepp_t *ftepp)
1374 bool newline = true;
1377 char *expand = NULL;
1380 ftepp->lex->flags.preprocessing = true;
1381 ftepp->lex->flags.mergelines = false;
1382 ftepp->lex->flags.noops = true;
1387 if (ftepp->token >= TOKEN_EOF)
1393 switch (ftepp->token) {
1396 case TOKEN_TYPENAME:
1397 /* is it a predef? */
1398 if (OPTS_FLAG(FTEPP_PREDEFS)) {
1399 for (i = 0; i < sizeof(ftepp_predefs) / sizeof (*ftepp_predefs); i++) {
1400 if (!strcmp(ftepp_predefs[i].name, ftepp_tokval(ftepp))) {
1401 expand = ftepp_predefs[i].func(ftepp->lex);
1402 ftepp_out(ftepp, expand, false);
1403 ftepp_next(ftepp); /* skip */
1405 mem_d(expand); /* free memory */
1411 if (ftepp->output_on)
1412 macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
1417 ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1421 if (!ftepp_macro_call(ftepp, macro))
1422 ftepp->token = TOKEN_ERROR;
1426 ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1430 ftepp->lex->flags.mergelines = true;
1431 if (ftepp_next(ftepp) >= TOKEN_EOF) {
1432 ftepp_error(ftepp, "error in preprocessor directive");
1433 ftepp->token = TOKEN_ERROR;
1436 if (!ftepp_hash(ftepp))
1437 ftepp->token = TOKEN_ERROR;
1438 ftepp->lex->flags.mergelines = false;
1442 ftepp_out(ftepp, "\n", true);
1446 /* same as default but don't set newline=false */
1447 ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1452 ftepp_out(ftepp, ftepp_tokval(ftepp), false);
1456 } while (!ftepp->errors && ftepp->token < TOKEN_EOF);
1458 /* force a 0 at the end but don't count it as added to the output */
1459 vec_push(ftepp->output_string, 0);
1460 vec_shrinkby(ftepp->output_string, 1);
1462 return (ftepp->token == TOKEN_EOF);
1465 /* Like in parser.c - files keep the previous state so we have one global
1466 * preprocessor. Except here we will want to warn about dangling #ifs.
1468 static ftepp_t *ftepp;
1470 static bool ftepp_preprocess_done()
1473 if (vec_size(ftepp->conditions)) {
1474 if (ftepp_warn(ftepp, WARN_MULTIFILE_IF, "#if spanning multiple files, is this intended?"))
1477 lex_close(ftepp->lex);
1479 if (ftepp->itemname) {
1480 mem_d(ftepp->itemname);
1481 ftepp->itemname = NULL;
1486 bool ftepp_preprocess_file(const char *filename)
1488 ftepp->lex = lex_open(filename);
1489 ftepp->itemname = util_strdup(filename);
1491 con_out("failed to open file \"%s\"\n", filename);
1494 if (!ftepp_preprocess(ftepp))
1496 return ftepp_preprocess_done();
1499 bool ftepp_preprocess_string(const char *name, const char *str)
1501 ftepp->lex = lex_open_string(str, strlen(str), name);
1502 ftepp->itemname = util_strdup(name);
1504 con_out("failed to create lexer for string \"%s\"\n", name);
1507 if (!ftepp_preprocess(ftepp))
1509 return ftepp_preprocess_done();
1513 void ftepp_add_macro(const char *name, const char *value) {
1514 char *create = NULL;
1516 /* use saner path for empty macros */
1518 ftepp_add_define("__builtin__", name);
1522 vec_upload(create, "#define ", 8);
1523 vec_upload(create, name, strlen(name));
1524 vec_push (create, ' ');
1525 vec_upload(create, value, strlen(value));
1526 vec_push (create, 0);
1528 ftepp_preprocess_string("__builtin__", create);
1537 ftepp = ftepp_new();
1541 memset(minor, 0, sizeof(minor));
1542 memset(major, 0, sizeof(major));
1544 /* set the right macro based on the selected standard */
1545 ftepp_add_define(NULL, "GMQCC");
1546 if (opts.standard == COMPILER_FTEQCC) {
1547 ftepp_add_define(NULL, "__STD_FTEQCC__");
1556 } else if (opts.standard == COMPILER_GMQCC) {
1557 ftepp_add_define(NULL, "__STD_GMQCC__");
1558 sprintf(major, "\"%d\"", GMQCC_VERSION_MAJOR);
1559 sprintf(minor, "\"%d\"", GMQCC_VERSION_MINOR);
1560 } else if (opts.standard == COMPILER_QCC) {
1561 ftepp_add_define(NULL, "__STD_QCC__");
1572 ftepp_add_macro("__STD_VERSION_MINOR__", minor);
1573 ftepp_add_macro("__STD_VERSION_MAJOR__", major);
1578 void ftepp_add_define(const char *source, const char *name)
1581 lex_ctx ctx = { "__builtin__", 0 };
1583 macro = ppmacro_new(ctx, name);
1584 vec_push(ftepp->macros, macro);
1587 const char *ftepp_get()
1589 return ftepp->output_string;
1594 vec_free(ftepp->output_string);
1601 ftepp_delete(ftepp);