From c777fc2c4c14991af0d98c094f532405364701f2 Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Mon, 27 Jul 2015 09:37:55 -0600 Subject: [PATCH] Scanning: 1) rationalize end-of-input everywhere, 2) prevent infinite loop at end-of-input, 3) use positive chars. Fixes issue #25. (char 255 aliased to -1 and missing tests for end of input). 1) All layers of input scanning now share a single EndOfInput value. This avoids translation of it across layers of encapsulation. 2) Some places looking for end of line were not stopping on EndOfInput. 3) Use of "char" for the input made char values > 127 be negative numbers. This allowed for aliasing of 255 to -1, etc. This is fixed by using unsigned char. --- Test/badChars.frag | 6 +++ Test/baseResults/badChars.frag.out | 26 +++++++++++ Test/baseResults/cppComplexExpr.vert.out | 8 ++-- Test/baseResults/cppNest.vert.out | 2 +- Test/baseResults/lineContinuation.vert.out | 4 +- Test/testlist | 1 + glslang/MachineIndependent/ParseHelper.cpp | 2 +- glslang/MachineIndependent/Scan.cpp | 22 ++++----- glslang/MachineIndependent/Scan.h | 46 ++++++++++--------- glslang/MachineIndependent/ShaderLang.cpp | 4 +- glslang/MachineIndependent/preprocessor/Pp.cpp | 52 +++++++++++----------- glslang/MachineIndependent/preprocessor/PpAtom.cpp | 16 +++---- .../MachineIndependent/preprocessor/PpContext.h | 23 ++++------ .../MachineIndependent/preprocessor/PpScanner.cpp | 30 +++++-------- .../MachineIndependent/preprocessor/PpTokens.cpp | 4 +- 15 files changed, 134 insertions(+), 112 deletions(-) create mode 100644 Test/badChars.frag create mode 100644 Test/baseResults/badChars.frag.out diff --git a/Test/badChars.frag b/Test/badChars.frag new file mode 100644 index 0000000..d67bf3a --- /dev/null +++ b/Test/badChars.frag @@ -0,0 +1,6 @@ +#ifþ +#endif +#error AÿB +#if +#endif +int aÿ diff --git a/Test/baseResults/badChars.frag.out b/Test/baseResults/badChars.frag.out new file mode 100644 index 0000000..e3ab945 --- /dev/null +++ b/Test/baseResults/badChars.frag.out @@ -0,0 +1,26 @@ +badChars.frag +ERROR: 0:1: 'preprocessor evaluation' : bad expression +ERROR: 0:1: '#if' : unexpected tokens following directive +ERROR: 0:3: '#error' : A B +ERROR: 0:4: 'preprocessor evaluation' : bad expression +ERROR: 0:4: '#if' : unexpected tokens following directive +ERROR: 0:6: 'ÿ' : unexpected token +ERROR: 0:7: '' : syntax error +ERROR: 7 compilation errors. No code generated. + + +Shader version: 100 +ERROR: node is still EOpNull! +0:? Linker Objects +0:? 'a' (global mediump int) + + +Linked fragment stage: + +ERROR: Linking fragment stage: Missing entry point: Each stage requires one "void main()" entry point + +Shader version: 100 +ERROR: node is still EOpNull! +0:? Linker Objects +0:? 'a' (global mediump int) + diff --git a/Test/baseResults/cppComplexExpr.vert.out b/Test/baseResults/cppComplexExpr.vert.out index 3d881d3..08dd936 100644 --- a/Test/baseResults/cppComplexExpr.vert.out +++ b/Test/baseResults/cppComplexExpr.vert.out @@ -5,19 +5,19 @@ ERROR: 0:66: '#define' : Macro redefined; different substitutions: BIG ERROR: 0:81: 'preprocessor evaluation' : bad expression ERROR: 0:81: '#if' : unexpected tokens following directive ERROR: 0:82: '#error' : good macro -ERROR: 0:87: 'macro expansion' : end of line in macro substitution: foobar +ERROR: 0:87: 'macro expansion' : End of line in macro substitution: foobar ERROR: 0:88: 'preprocessor evaluation' : can't evaluate expression ERROR: 0:88: 'preprocessor evaluation' : bad expression ERROR: 0:88: '#if' : unexpected tokens following directive -ERROR: 0:92: 'macro expansion' : end of line in macro substitution: foobar +ERROR: 0:92: 'macro expansion' : End of line in macro substitution: foobar ERROR: 0:93: 'preprocessor evaluation' : can't evaluate expression ERROR: 0:93: 'preprocessor evaluation' : bad expression ERROR: 0:93: '#if' : unexpected tokens following directive -ERROR: 0:99: 'macro expansion' : end of line in macro substitution: foobar +ERROR: 0:99: 'macro expansion' : End of line in macro substitution: foobar ERROR: 0:100: 'preprocessor evaluation' : can't evaluate expression ERROR: 0:100: 'preprocessor evaluation' : bad expression ERROR: 0:100: '#if' : unexpected tokens following directive -ERROR: 0:101: 'macro expansion' : end of line in macro substitution: foobar +ERROR: 0:101: 'macro expansion' : End of line in macro substitution: foobar ERROR: 0:102: 'preprocessor evaluation' : can't evaluate expression ERROR: 0:102: 'preprocessor evaluation' : bad expression ERROR: 0:102: '#if' : unexpected tokens following directive diff --git a/Test/baseResults/cppNest.vert.out b/Test/baseResults/cppNest.vert.out index 4ddc7f3..f9534e4 100644 --- a/Test/baseResults/cppNest.vert.out +++ b/Test/baseResults/cppNest.vert.out @@ -3,7 +3,7 @@ ERROR: 0:144: '#elif' : #elif after #else ERROR: 0:152: '#else' : #else after #else ERROR: 0:161: '#elif' : #elif after #else ERROR: 0:169: '#else' : #else after #else -ERROR: 0:177: 'macro expansion' : EOF in macro FUNC +ERROR: 0:177: 'macro expansion' : End of input in macro FUNC ERROR: 0:178: '' : syntax error ERROR: 6 compilation errors. No code generated. diff --git a/Test/baseResults/lineContinuation.vert.out b/Test/baseResults/lineContinuation.vert.out index 5d9726c..b74c7a6 100644 --- a/Test/baseResults/lineContinuation.vert.out +++ b/Test/baseResults/lineContinuation.vert.out @@ -13,10 +13,10 @@ ERROR: 0:49: '$' : unexpected token ERROR: 0:50: '@' : unexpected token ERROR: 0:55: '#error' : good continuation WARNING: 0:62: 'line continuation' : used at end of comment; the following line is still part of the comment -ERROR: 0:111: 'macro expansion' : end of line in macro substitution: FOOM +ERROR: 0:111: 'macro expansion' : End of line in macro substitution: FOOM ERROR: 0:112: 'preprocessor evaluation' : can't evaluate expression ERROR: 0:112: '#if' : unexpected tokens following directive -ERROR: 0:117: 'macro expansion' : end of line in macro substitution: FOOM +ERROR: 0:117: 'macro expansion' : End of line in macro substitution: FOOM ERROR: 0:118: 'preprocessor evaluation' : can't evaluate expression ERROR: 0:118: '#if' : unexpected tokens following directive ERROR: 0:150: '' : syntax error diff --git a/Test/testlist b/Test/testlist index 0e619a3..797dca2 100644 --- a/Test/testlist +++ b/Test/testlist @@ -25,6 +25,7 @@ cppSimple.vert cppIndent.vert cppNest.vert cppComplexExpr.vert +badChars.frag pointCoord.frag array.frag array100.frag diff --git a/glslang/MachineIndependent/ParseHelper.cpp b/glslang/MachineIndependent/ParseHelper.cpp index 349c4b5..d88db56 100644 --- a/glslang/MachineIndependent/ParseHelper.cpp +++ b/glslang/MachineIndependent/ParseHelper.cpp @@ -168,7 +168,7 @@ void TParseContext::parserError(const char* s) { if (afterEOF) { if (tokensBeforeEOF == 1) - error(getCurrentLoc(), "", "pre-mature EOF", s, ""); + error(getCurrentLoc(), "", "premature end of input", s, ""); } else error(getCurrentLoc(), "", "", s, ""); } diff --git a/glslang/MachineIndependent/Scan.cpp b/glslang/MachineIndependent/Scan.cpp index 2cb965f..1120a35 100644 --- a/glslang/MachineIndependent/Scan.cpp +++ b/glslang/MachineIndependent/Scan.cpp @@ -81,10 +81,10 @@ bool TInputScanner::consumeComment() get(); // consume the second '/' c = get(); do { - while (c > 0 && c != '\\' && c != '\r' && c != '\n') + while (c != EndOfInput && c != '\\' && c != '\r' && c != '\n') c = get(); - if (c <= 0 || c == '\r' || c == '\n') { + if (c == EndOfInput || c == '\r' || c == '\n') { while (c == '\r' || c == '\n') c = get(); @@ -104,7 +104,7 @@ bool TInputScanner::consumeComment() } while (true); // put back the last non-comment character - if (c > 0) + if (c != EndOfInput) unget(); return true; @@ -114,7 +114,7 @@ bool TInputScanner::consumeComment() get(); // consume the '*' c = get(); do { - while (c > 0 && c != '*') + while (c != EndOfInput && c != '*') c = get(); if (c == '*') { c = get(); @@ -142,7 +142,7 @@ void TInputScanner::consumeWhitespaceComment(bool& foundNonSpaceTab) // if not starting a comment now, then done int c = peek(); - if (c != '/' || c < 0) + if (c != '/' || c == EndOfInput) return; // skip potential comment @@ -188,10 +188,10 @@ bool TInputScanner::scanVersion(int& version, EProfile& profile, bool& notFirstT } else do { c = get(); - } while (c > 0 && c != '\n' && c != '\r'); + } while (c != EndOfInput && c != '\n' && c != '\r'); while (peek() == '\n' || peek() == '\r') get(); - if (peek() < 0) + if (peek() == EndOfInput) return true; } lookingInMiddle = true; @@ -249,12 +249,12 @@ bool TInputScanner::scanVersion(int& version, EProfile& profile, bool& notFirstT char profileString[maxProfileLength]; int profileLength; for (profileLength = 0; profileLength < maxProfileLength; ++profileLength) { - if (c < 0 || c == ' ' || c == '\t' || c == '\n' || c == '\r') + if (c == EndOfInput || c == ' ' || c == '\t' || c == '\n' || c == '\r') break; profileString[profileLength] = (char)c; c = get(); } - if (c > 0 && c != ' ' && c != '\t' && c != '\n' && c != '\r') { + if (c != EndOfInput && c != ' ' && c != '\t' && c != '\n' && c != '\r') { versionNotFirst = true; continue; } @@ -600,8 +600,8 @@ int TScanContext::tokenize(TPpContext* pp, TParserToken& token) case PpAtomConstDouble: parserToken->sType.lex.d = ppToken.dval; return DOUBLECONSTANT; case PpAtomIdentifier: return tokenizeIdentifier(); - case EOF: return 0; - + case EndOfInput: return 0; + default: char buf[2]; buf[0] = (char)ppToken.token; diff --git a/glslang/MachineIndependent/Scan.h b/glslang/MachineIndependent/Scan.h index 999666c..86de518 100644 --- a/glslang/MachineIndependent/Scan.h +++ b/glslang/MachineIndependent/Scan.h @@ -40,6 +40,11 @@ namespace glslang { +// Use a global end-of-input character, so no tranlation is needed across +// layers of encapsulation. Characters are all 8 bit, and positive, so there is +// no aliasing of character 255 onto -1, for example. +const int EndOfInput = -1; + // // A character scanner that seamlessly, on read-only strings, reads across an // array of strings without assuming null termination. @@ -47,7 +52,9 @@ namespace glslang { class TInputScanner { public: TInputScanner(int n, const char* const s[], size_t L[], int b = 0, int f = 0) : - numSources(n), sources(s), lengths(L), currentSource(0), currentChar(0), stringBias(b), finale(f) + numSources(n), + sources(reinterpret_cast(s)), // up to this point, common usage is "char*", but now we need positive 8-bit characters + lengths(L), currentSource(0), currentChar(0), stringBias(b), finale(f) { loc = new TSourceLoc[numSources]; loc[currentSource].string = -stringBias; @@ -60,14 +67,11 @@ public: delete [] loc; } - // return of -1 means end of strings, - // anything else is the next character - // retrieve the next character and advance one character int get() { if (currentSource >= numSources) - return -1; + return EndOfInput; int ret = peek(); ++loc[currentSource].column; @@ -84,7 +88,7 @@ public: int peek() { if (currentSource >= numSources) - return -1; + return EndOfInput; // Make sure we do not read off the end of a string. // N.B. Sources can have a length of 0. int sourceToRead = currentSource; @@ -93,9 +97,11 @@ public: charToRead = 0; sourceToRead += 1; if (sourceToRead >= numSources) { - return -1; + return EndOfInput; } } + + // Here, we care about making negative valued characters positive return sources[sourceToRead][charToRead]; } @@ -106,17 +112,17 @@ public: --currentChar; --loc[currentSource].column; if (loc[currentSource].column < 0) { - // We've moved back past a new line. Find the - // previous newline (or start of the file) to compute - // the column count on the now current line. - size_t ch = currentChar; - while(ch > 0) { - if (sources[currentSource][ch] == '\n') { - break; + // We've moved back past a new line. Find the + // previous newline (or start of the file) to compute + // the column count on the now current line. + size_t chIndex = currentChar; + while (chIndex > 0) { + if (sources[currentSource][chIndex] == '\n') { + break; + } + --chIndex; } - --ch; - } - loc[currentSource].column = (int)(currentChar - ch); + loc[currentSource].column = (int)(currentChar - chIndex); } } else { do { @@ -170,9 +176,9 @@ protected: } } - int numSources; // number of strings in source - const char* const *sources; // array of strings - const size_t *lengths; // length of each string + int numSources; // number of strings in source + const unsigned char* const *sources; // array of strings; must be converted to positive values on use, to avoid aliasing with -1 as EndOfInput + const size_t *lengths; // length of each string int currentSource; size_t currentChar; diff --git a/glslang/MachineIndependent/ShaderLang.cpp b/glslang/MachineIndependent/ShaderLang.cpp index 780f3cc..067a336 100644 --- a/glslang/MachineIndependent/ShaderLang.cpp +++ b/glslang/MachineIndependent/ShaderLang.cpp @@ -731,7 +731,7 @@ struct DoPreprocessing { outputStream << "#error " << errorMessage; }); - int lastToken = EOF; // lastToken records the last token processed. + int lastToken = EndOfInput; // lastToken records the last token processed. while (const char* tok = ppContext.tokenize(&token)) { bool isNewString = lineSync.syncToMostRecentString(); bool isNewLine = lineSync.syncToLine(token.loc.line); @@ -746,7 +746,7 @@ struct DoPreprocessing { // Output a space in between tokens, but not at the start of a line, // and also not around special tokens. This helps with readability // and consistency. - if (!isNewString && !isNewLine && lastToken != -1 && + if (!isNewString && !isNewLine && lastToken != EndOfInput && (unNeededSpaceTokens.find((char)token.token) == std::string::npos) && (unNeededSpaceTokens.find((char)lastToken) == std::string::npos) && (noSpaceBeforeTokens.find((char)token.token) == std::string::npos)) { diff --git a/glslang/MachineIndependent/preprocessor/Pp.cpp b/glslang/MachineIndependent/preprocessor/Pp.cpp index 3968462..b7f8d48 100644 --- a/glslang/MachineIndependent/preprocessor/Pp.cpp +++ b/glslang/MachineIndependent/preprocessor/Pp.cpp @@ -150,7 +150,7 @@ int TPpContext::CPPdefine(TPpToken* ppToken) } token = scanToken(ppToken); } while (token == ','); - if (token != ')') { + if (token != ')') { parseContext.ppError(ppToken->loc, "missing parenthesis", "#define", ""); return token; @@ -164,7 +164,7 @@ int TPpContext::CPPdefine(TPpToken* ppToken) // record the definition of the macro TSourceLoc defineLoc = ppToken->loc; // because ppToken is going to go to the next line before we report errors mac.body = new TokenStream; - while (token != '\n') { + while (token != '\n' && token != EndOfInput) { RecordToken(mac.body, token, ppToken); token = scanToken(ppToken); if (token != '\n' && ppToken->space) @@ -245,13 +245,13 @@ int TPpContext::CPPelse(int matchelse, TPpToken* ppToken) int depth = 0; int token = scanToken(ppToken); - while (token != EOF) { + while (token != EndOfInput) { if (token != '#') { - while (token != '\n' && token != EOF) + while (token != '\n' && token != EndOfInput) token = scanToken(ppToken); - if (token == EOF) - return EOF; + if (token == EndOfInput) + return token; token = scanToken(ppToken); continue; @@ -314,7 +314,7 @@ int TPpContext::CPPelse(int matchelse, TPpToken* ppToken) // Call when there should be no more tokens left on a line. int TPpContext::extraTokenCheck(int atom, TPpToken* ppToken, int token) { - if (token != '\n') { + if (token != '\n' && token != EndOfInput) { static const char* message = "unexpected tokens following directive"; const char* label; @@ -336,7 +336,7 @@ int TPpContext::extraTokenCheck(int atom, TPpToken* ppToken, int token) else parseContext.ppError(ppToken->loc, message, label, ""); - while (token != '\n') + while (token != '\n' && token != EndOfInput) token = scanToken(ppToken); } @@ -586,7 +586,7 @@ int TPpContext::CPPifdef(int defined, TPpToken* ppToken) token = scanToken(ppToken); if (token != '\n') { parseContext.ppError(ppToken->loc, "unexpected tokens following #ifdef directive - expected a newline", "#ifdef", ""); - while (token != '\n') + while (token != '\n' && token != EndOfInput) token = scanToken(ppToken); } if (((s && !s->mac.undef) ? 1 : 0) != defined) @@ -648,7 +648,7 @@ int TPpContext::CPPerror(TPpToken* ppToken) std::string message; TSourceLoc loc = ppToken->loc; - while (token != '\n') { + while (token != '\n' && token != EndOfInput) { if (token == PpAtomConstInt || token == PpAtomConstUint || token == PpAtomConstFloat || token == PpAtomConstDouble) { message.append(ppToken->name); @@ -675,7 +675,7 @@ int TPpContext::CPPpragma(TPpToken* ppToken) TSourceLoc loc = ppToken->loc; // because we go to the next line before processing int token = scanToken(ppToken); - while (token != '\n' && token != EOF) { + while (token != '\n' && token != EndOfInput) { switch (token) { case PpAtomIdentifier: case PpAtomConstInt: @@ -692,7 +692,7 @@ int TPpContext::CPPpragma(TPpToken* ppToken) token = scanToken(ppToken); } - if (token == EOF) + if (token == EndOfInput) parseContext.ppError(loc, "directive must end with a newline", "#pragma", ""); else parseContext.handlePragma(loc, tokens); @@ -810,7 +810,7 @@ int TPpContext::readCPPline(TPpToken* ppToken) parseContext.ppError(ppToken->loc, "#elif after #else", "#elif", ""); // this token is really a dont care, but we still need to eat the tokens token = scanToken(ppToken); - while (token != '\n') + while (token != '\n' && token != EndOfInput) token = scanToken(ppToken); token = CPPelse(0, ppToken); break; @@ -854,10 +854,10 @@ int TPpContext::readCPPline(TPpToken* ppToken) parseContext.ppError(ppToken->loc, "invalid directive:", "#", ppToken->name); break; } - } else if (token != '\n' && token != EOF) + } else if (token != '\n' && token != EndOfInput) parseContext.ppError(ppToken->loc, "invalid directive", "#", ""); - while (token != '\n' && token != 0 && token != EOF) + while (token != '\n' && token != EndOfInput) token = scanToken(ppToken); return token; @@ -872,9 +872,9 @@ TPpContext::TokenStream* TPpContext::PrescanMacroArg(TokenStream* a, TPpToken* p token = ReadToken(a, ppToken); if (token == PpAtomIdentifier && LookUpSymbol(ppToken->atom)) break; - } while (token != tInput::endOfInput); + } while (token != EndOfInput); - if (token == tInput::endOfInput) + if (token == EndOfInput) return a; n = new TokenStream; @@ -914,17 +914,17 @@ int TPpContext::tMacroInput::scan(TPpToken* ppToken) } } - if (token == endOfInput) + if (token == EndOfInput) mac->busy = 0; return token; } -// return a zero, for scanning a macro that was never defined +// return a textual zero, for scanning a macro that was never defined int TPpContext::tZeroInput::scan(TPpToken* ppToken) { if (done) - return endOfInput; + return EndOfInput; strcpy(ppToken->name, "0"); ppToken->ival = 0; @@ -1013,14 +1013,14 @@ int TPpContext::MacroExpand(int atom, TPpToken* ppToken, bool expandUndef, bool depth = 0; while (1) { token = scanToken(ppToken); - if (token == EOF) { - parseContext.ppError(loc, "EOF in macro", "macro expansion", GetAtomString(atom)); + if (token == EndOfInput) { + parseContext.ppError(loc, "End of input in macro", "macro expansion", GetAtomString(atom)); delete in; return 0; } if (token == '\n') { if (! newLineOkay) { - parseContext.ppError(loc, "end of line in macro substitution:", "macro expansion", GetAtomString(atom)); + parseContext.ppError(loc, "End of line in macro substitution:", "macro expansion", GetAtomString(atom)); delete in; return 0; } @@ -1055,7 +1055,7 @@ int TPpContext::MacroExpand(int atom, TPpToken* ppToken, bool expandUndef, bool parseContext.ppError(loc, "Too few args in Macro", "macro expansion", GetAtomString(atom)); else if (token != ')') { depth=0; - while (token != EOF && (depth > 0 || token != ')')) { + while (token != EndOfInput && (depth > 0 || token != ')')) { if (token == ')') depth--; token = scanToken(ppToken); @@ -1063,8 +1063,8 @@ int TPpContext::MacroExpand(int atom, TPpToken* ppToken, bool expandUndef, bool depth++; } - if (token == EOF) { - parseContext.ppError(loc, "EOF in macro", "macro expansion", GetAtomString(atom)); + if (token == EndOfInput) { + parseContext.ppError(loc, "End of input in macro", "macro expansion", GetAtomString(atom)); delete in; return 0; } diff --git a/glslang/MachineIndependent/preprocessor/PpAtom.cpp b/glslang/MachineIndependent/preprocessor/PpAtom.cpp index 1ce3f49..04e0d63 100644 --- a/glslang/MachineIndependent/preprocessor/PpAtom.cpp +++ b/glslang/MachineIndependent/preprocessor/PpAtom.cpp @@ -144,18 +144,12 @@ int TPpContext::LookUpAddString(const char* s) // const char* TPpContext::GetAtomString(int atom) { - if (atom == 0) - return ""; - if (atom < 0) - return ""; - if ((size_t)atom < stringMap.size()) { - if (stringMap[atom] == 0) - return ""; - else - return stringMap[atom]->c_str(); - } + if ((size_t)atom >= stringMap.size()) + return ""; + + const TString* atomString = stringMap[atom]; - return ""; + return atomString ? atomString->c_str() : ""; } // diff --git a/glslang/MachineIndependent/preprocessor/PpContext.h b/glslang/MachineIndependent/preprocessor/PpContext.h index 7d2fce5..74a9f5d 100644 --- a/glslang/MachineIndependent/preprocessor/PpContext.h +++ b/glslang/MachineIndependent/preprocessor/PpContext.h @@ -134,8 +134,6 @@ public: virtual int getch() = 0; virtual void ungetch() = 0; - static const int endOfInput = -2; - protected: bool done; TPpContext* pp; @@ -210,21 +208,18 @@ protected: // Get the next token from *stack* of input sources, popping input sources // that are out of tokens, down until an input sources is found that has a token. - // Return EOF when there are no more tokens to be found by doing this. + // Return EndOfInput when there are no more tokens to be found by doing this. int scanToken(TPpToken* ppToken) { - int token = EOF; + int token = EndOfInput; while (! inputStack.empty()) { token = inputStack.back()->scan(ppToken); - if (token != tInput::endOfInput) + if (token != EndOfInput) break; popInput(); } - if (token == tInput::endOfInput) - return EOF; - return token; } int getChar() { return inputStack.back()->getch(); } @@ -248,7 +243,7 @@ protected: } virtual int scan(TPpToken*); - virtual int getch() { assert(0); return endOfInput; } + virtual int getch() { assert(0); return EndOfInput; } virtual void ungetch() { assert(0); } MacroSymbol *mac; TVector args; @@ -260,12 +255,12 @@ protected: virtual int scan(TPpToken*) { if (done) - return endOfInput; + return EndOfInput; done = true; return marker; } - virtual int getch() { assert(0); return endOfInput; } + virtual int getch() { assert(0); return EndOfInput; } virtual void ungetch() { assert(0); } static const int marker = -3; }; @@ -274,7 +269,7 @@ protected: public: tZeroInput(TPpContext* pp) : tInput(pp) { } virtual int scan(TPpToken*); - virtual int getch() { assert(0); return endOfInput; } + virtual int getch() { assert(0); return EndOfInput; } virtual void ungetch() { assert(0); } }; @@ -328,7 +323,7 @@ protected: public: tTokenInput(TPpContext* pp, TokenStream* t) : tInput(pp), tokens(t) { } virtual int scan(TPpToken *); - virtual int getch() { assert(0); return endOfInput; } + virtual int getch() { assert(0); return EndOfInput; } virtual void ungetch() { assert(0); } protected: TokenStream *tokens; @@ -338,7 +333,7 @@ protected: public: tUngotTokenInput(TPpContext* pp, int t, TPpToken* p) : tInput(pp), token(t), lval(*p) { } virtual int scan(TPpToken *); - virtual int getch() { assert(0); return endOfInput; } + virtual int getch() { assert(0); return EndOfInput; } virtual void ungetch() { assert(0); } protected: int token; diff --git a/glslang/MachineIndependent/preprocessor/PpScanner.cpp b/glslang/MachineIndependent/preprocessor/PpScanner.cpp index 1caca39..d515a7b 100644 --- a/glslang/MachineIndependent/preprocessor/PpScanner.cpp +++ b/glslang/MachineIndependent/preprocessor/PpScanner.cpp @@ -253,12 +253,9 @@ int TPpContext::tStringInput::scan(TPpToken* ppToken) len = 0; switch (ch) { default: - // Single character token, including '#' and '\' (escaped newlines are handled at a lower level, so this is just a '\' token) + // Single character token, including EndOfInput, '#' and '\' (escaped newlines are handled at a lower level, so this is just a '\' token) return ch; - case EOF: - return endOfInput; - case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G': case 'H': case 'I': case 'J': case 'K': case 'L': case 'M': case 'N': case 'O': @@ -590,28 +587,25 @@ int TPpContext::tStringInput::scan(TPpToken* ppToken) pp->inComment = true; do { ch = pp->getChar(); - } while (ch != '\n' && ch != EOF); + } while (ch != '\n' && ch != EndOfInput); ppToken->space = true; pp->inComment = false; - if (ch == EOF) - return endOfInput; - return ch; } else if (ch == '*') { ch = pp->getChar(); do { while (ch != '*') { - if (ch == EOF) { - pp->parseContext.ppError(ppToken->loc, "EOF in comment", "comment", ""); - return endOfInput; + if (ch == EndOfInput) { + pp->parseContext.ppError(ppToken->loc, "End of input in comment", "comment", ""); + return ch; } ch = pp->getChar(); } ch = pp->getChar(); - if (ch == EOF) { - pp->parseContext.ppError(ppToken->loc, "EOF in comment", "comment", ""); - return endOfInput; + if (ch == EndOfInput) { + pp->parseContext.ppError(ppToken->loc, "End of input in comment", "comment", ""); + return ch; } } while (ch != '/'); ppToken->space = true; @@ -626,7 +620,7 @@ int TPpContext::tStringInput::scan(TPpToken* ppToken) break; case '"': ch = pp->getChar(); - while (ch != '"' && ch != '\n' && ch != EOF) { + while (ch != '"' && ch != '\n' && ch != EndOfInput) { if (len < MaxTokenLength) { tokenText[len] = (char)ch; len++; @@ -637,7 +631,7 @@ int TPpContext::tStringInput::scan(TPpToken* ppToken) tokenText[len] = '\0'; if (ch != '"') { pp->ungetChar(); - pp->parseContext.ppError(ppToken->loc, "end of line in string", "string", ""); + pp->parseContext.ppError(ppToken->loc, "End of line in string", "string", ""); } return PpAtomConstString; } @@ -660,14 +654,14 @@ const char* TPpContext::tokenize(TPpToken* ppToken) for(;;) { token = scanToken(ppToken); ppToken->token = token; - if (token == EOF) { + if (token == EndOfInput) { missingEndifCheck(); return nullptr; } if (token == '#') { if (previous_token == '\n') { token = readCPPline(ppToken); - if (token == EOF) { + if (token == EndOfInput) { missingEndifCheck(); return nullptr; } diff --git a/glslang/MachineIndependent/preprocessor/PpTokens.cpp b/glslang/MachineIndependent/preprocessor/PpTokens.cpp index 07a196a..ab5f78b 100644 --- a/glslang/MachineIndependent/preprocessor/PpTokens.cpp +++ b/glslang/MachineIndependent/preprocessor/PpTokens.cpp @@ -109,7 +109,7 @@ int TPpContext::lReadByte(TokenStream *pTok) if (pTok->current < pTok->data.size()) return pTok->data[pTok->current++]; else - return tInput::endOfInput; + return EndOfInput; } void TPpContext::lUnreadByte(TokenStream *pTok) @@ -249,7 +249,7 @@ void TPpContext::pushTokenStreamInput(TokenStream* ts) int TPpContext::tUngotTokenInput::scan(TPpToken* ppToken) { if (done) - return endOfInput; + return EndOfInput; int ret = token; *ppToken = lval; -- 2.7.4