diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-17 06:46:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-17 06:46:14 +0000 |
commit | 6c66f07854c1334a1ce9eae1428d61d54182a6e1 (patch) | |
tree | 0f11063aac1432957cec02b7f00c2b58246edc4a /lib | |
parent | ca1475ea0e76da6b852796610139ed9b49c8d4a6 (diff) |
push use of Preprocessor out farther.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Lex/LiteralSupport.cpp | 40 | ||||
-rw-r--r-- | lib/Sema/SemaChecking.cpp | 7 |
2 files changed, 20 insertions, 27 deletions
diff --git a/lib/Lex/LiteralSupport.cpp b/lib/Lex/LiteralSupport.cpp index 0739c88d20..35eaddeea4 100644 --- a/lib/Lex/LiteralSupport.cpp +++ b/lib/Lex/LiteralSupport.cpp @@ -168,8 +168,9 @@ static unsigned ProcessCharEscape(const char *&ThisTokBuf, static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, uint32_t &UcnVal, unsigned short &UcnLen, SourceLocation Loc, Preprocessor &PP, - bool Complain) { - if (!PP.getLangOptions().CPlusPlus && !PP.getLangOptions().C99) + Diagnostic *Diags, + const LangOptions &Features) { + if (!Features.CPlusPlus && !Features.C99 && Diags) PP.Diag(Loc, diag::warn_ucn_not_valid_in_c89); // Save the beginning of the string (for error diagnostics). @@ -179,7 +180,7 @@ static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, ThisTokBuf += 2; if (ThisTokBuf == ThisTokEnd || !isxdigit(*ThisTokBuf)) { - if (Complain) + if (Diags) PP.Diag(Loc, diag::err_ucn_escape_no_digits); return false; } @@ -193,7 +194,7 @@ static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, } // If we didn't consume the proper number of digits, there is a problem. if (UcnLenSave) { - if (Complain) + if (Diags) PP.Diag(PP.AdvanceToTokenCharacter(Loc, ThisTokBuf-ThisTokBegin), diag::err_ucn_escape_incomplete); return false; @@ -203,7 +204,7 @@ static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, (UcnVal != 0x24 && UcnVal != 0x40 && UcnVal != 0x60 )) // $, @, ` || (UcnVal >= 0xD800 && UcnVal <= 0xDFFF) || (UcnVal > 0x10FFFF)) /* the maximum legal UTF32 value */ { - if (Complain) + if (Diags) PP.Diag(Loc, diag::err_ucn_escape_invalid); return false; } @@ -217,13 +218,13 @@ static bool ProcessUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, static void EncodeUCNEscape(const char *&ThisTokBuf, const char *ThisTokEnd, char *&ResultBuf, bool &HadError, SourceLocation Loc, Preprocessor &PP, - bool wide, - bool Complain) { + bool wide, bool Complain) { typedef uint32_t UTF32; UTF32 UcnVal = 0; unsigned short UcnLen = 0; - if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd, - UcnVal, UcnLen, Loc, PP, Complain)) { + if (!ProcessUCNEscape(ThisTokBuf, ThisTokEnd, UcnVal, UcnLen, Loc, PP, + Complain ? &PP.getDiagnostics() : 0, + PP.getLangOptions())){ HadError = 1; return; } @@ -723,8 +724,8 @@ CharLiteralParser::CharLiteralParser(const char *begin, const char *end, if (begin[1] == 'u' || begin[1] == 'U') { uint32_t utf32 = 0; unsigned short UcnLen = 0; - if (!ProcessUCNEscape(begin, end, utf32, UcnLen, - Loc, PP, /*Complain=*/true)) { + if (!ProcessUCNEscape(begin, end, utf32, UcnLen, Loc, PP, + &PP.getDiagnostics(), PP.getLangOptions())) { HadError = 1; } ResultChar = utf32; @@ -824,7 +825,9 @@ CharLiteralParser::CharLiteralParser(const char *begin, const char *end, /// StringLiteralParser:: StringLiteralParser(const Token *StringToks, unsigned NumStringToks, - Preprocessor &pp, bool Complain) : PP(pp) { + Preprocessor &pp, bool Complain) + : PP(pp), SM(PP.getSourceManager()), Features(PP.getLangOptions()), + Target(PP.getTargetInfo()), Diags(Complain ? &PP.getDiagnostics() : 0) { // Scan all of the string portions, remember the max individual token length, // computing a bound on the concatenated string length, and see whether any // piece is a wide-string. If any of the string portions is a wide-string @@ -953,13 +956,10 @@ StringLiteralParser(const Token *StringToks, unsigned NumStringToks, continue; } // Otherwise, this is a non-UCN escape character. Process it. - Diagnostic *Diags = Complain ? &PP.getDiagnostics() : 0; unsigned ResultChar = ProcessCharEscape(ThisTokBuf, ThisTokEnd, hadError, - FullSourceLoc(StringToks[i].getLocation(), - PP.getSourceManager()), - AnyWide, Diags, - PP.getTargetInfo()); + FullSourceLoc(StringToks[i].getLocation(), SM), + AnyWide, Diags, Target); // Note: our internal rep of wide char tokens is always little-endian. *ResultPtr++ = ResultChar & 0xFF; @@ -1006,11 +1006,7 @@ StringLiteralParser(const Token *StringToks, unsigned NumStringToks, /// specified byte of the string data represented by Token. This handles /// advancing over escape sequences in the string. unsigned StringLiteralParser::getOffsetOfStringByte(const Token &Tok, - unsigned ByteNo, - const SourceManager &SM, - const LangOptions &Features, - const TargetInfo &Target, - Diagnostic *Diags) { + unsigned ByteNo) const { // Get the spelling of the token. llvm::SmallString<32> SpellingBuffer; SpellingBuffer.resize(Tok.getLength()); diff --git a/lib/Sema/SemaChecking.cpp b/lib/Sema/SemaChecking.cpp index 278d820320..fb231731b9 100644 --- a/lib/Sema/SemaChecking.cpp +++ b/lib/Sema/SemaChecking.cpp @@ -84,16 +84,13 @@ SourceLocation Sema::getLocationOfStringLiteralByte(const StringLiteral *SL, // Use the StringLiteralParser to compute the length of the string in bytes. StringLiteralParser SLP(&TheTok, 1, PP, /*Complain=*/false); + // PP.getSourceManager(), PP.getLangOptions(), PP.getTargetInfo()); unsigned TokNumBytes = SLP.GetStringLength(); // If the byte is in this token, return the location of the byte. if (ByteNo < TokNumBytes || (ByteNo == TokNumBytes && TokNo == SL->getNumConcatenated())) { - unsigned Offset = - StringLiteralParser::getOffsetOfStringByte(TheTok, ByteNo, - PP.getSourceManager(), - PP.getLangOptions(), - PP.getTargetInfo()); + unsigned Offset = SLP.getOffsetOfStringByte(TheTok, ByteNo); // Now that we know the offset of the token in the spelling, use the // preprocessor to get the offset in the original source. |