From: Wolfgang (Blub) Bumiller Date: Fri, 2 Nov 2012 17:48:32 +0000 (+0100) Subject: Properly handle string and char constants when preprocessing: don't unescape and... X-Git-Tag: 0.1~50 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b5970707c0b06bd0bdda587e685f1762b6237555;p=xonotic%2Fgmqcc.git Properly handle string and char constants when preprocessing: don't unescape and keep surrounding quotes --- diff --git a/lexer.c b/lexer.c index 08a63d6..7e6f40f 100644 --- a/lexer.c +++ b/lexer.c @@ -381,10 +381,10 @@ static int lex_skipwhite(lex_file *lex) if (ch == '/') { /* one line comment */ - haswhite = true; ch = lex_getch(lex); if (lex->flags.preprocessing) { + haswhite = true; if (!lex_tokench(lex, '/') || !lex_tokench(lex, '/')) { @@ -408,8 +408,8 @@ static int lex_skipwhite(lex_file *lex) if (ch == '*') { /* multiline comment */ - haswhite = true; if (lex->flags.preprocessing) { + haswhite = true; if (!lex_tokench(lex, '/') || !lex_tokench(lex, '*')) { @@ -550,7 +550,7 @@ static int GMQCC_WARN lex_finish_string(lex_file *lex, int quote) if (ch == quote) return TOKEN_STRINGCONST; - if (ch == '\\') { + if (!lex->flags.preprocessing && ch == '\\') { ch = lex_getch(lex); if (ch == EOF) { lexerror(lex, "unexpected end of file"); @@ -1066,8 +1066,12 @@ int lex_do(lex_file *lex) if (ch == '"') { lex->flags.nodigraphs = true; + if (lex->flags.preprocessing && !lex_tokench(lex, ch)) + return TOKEN_FATAL; lex->tok.ttype = lex_finish_string(lex, '"'); - while (lex->tok.ttype == TOKEN_STRINGCONST) + if (lex->flags.preprocessing && !lex_tokench(lex, ch)) + return TOKEN_FATAL; + while (!lex->flags.preprocessing && lex->tok.ttype == TOKEN_STRINGCONST) { /* Allow c style "string" "continuation" */ ch = lex_skipwhite(lex); @@ -1091,23 +1095,27 @@ int lex_do(lex_file *lex) * Likewise actual unescaping has to be done by the parser. * The difference is we don't allow 'char' 'continuation'. */ - lex->tok.ttype = lex_finish_string(lex, '\''); - if (!lex_endtoken(lex)) - return (lex->tok.ttype = TOKEN_FATAL); + if (lex->flags.preprocessing && !lex_tokench(lex, ch)) + return TOKEN_FATAL; + lex->tok.ttype = lex_finish_string(lex, '\''); + if (lex->flags.preprocessing && !lex_tokench(lex, ch)) + return TOKEN_FATAL; + if (!lex_endtoken(lex)) + return (lex->tok.ttype = TOKEN_FATAL); /* It's a vector if we can successfully scan 3 floats */ #ifdef WIN32 - if (sscanf_s(lex->tok.value, " %f %f %f ", - &lex->tok.constval.v.x, &lex->tok.constval.v.y, &lex->tok.constval.v.z) == 3) + if (sscanf_s(lex->tok.value, " %f %f %f ", + &lex->tok.constval.v.x, &lex->tok.constval.v.y, &lex->tok.constval.v.z) == 3) #else - if (sscanf(lex->tok.value, " %f %f %f ", - &lex->tok.constval.v.x, &lex->tok.constval.v.y, &lex->tok.constval.v.z) == 3) + if (sscanf(lex->tok.value, " %f %f %f ", + &lex->tok.constval.v.x, &lex->tok.constval.v.y, &lex->tok.constval.v.z) == 3) #endif - { - lex->tok.ttype = TOKEN_VECTORCONST; - } + { + lex->tok.ttype = TOKEN_VECTORCONST; + } - return lex->tok.ttype; + return lex->tok.ttype; } if (isdigit(ch)) diff --git a/preprocess.c b/preprocess.c index 32f9c28..bf1873d 100644 --- a/preprocess.c +++ b/preprocess.c @@ -9,7 +9,7 @@ bool preprocess(const char *filename) do { tok = lex_do(lex); - /* +#if 0 if (tok == TOKEN_EOL) printf("EOL"); else if (tok >= TOKEN_START && tok <= TOKEN_FATAL) @@ -20,13 +20,14 @@ bool preprocess(const char *filename) printf(">>%s<<\n", lex->tok.value); else printf("\n"); - */ +#else if (tok == TOKEN_EOL) printf("\n"); else if (tok >= TOKEN_START && tok < TOKEN_EOF) printf("%s", lex->tok.value); else printf("%c", tok); +#endif } while (tok < TOKEN_EOF); lex_close(lex);