Chris Lattner | e5c8ffe | 2008-03-09 02:55:12 +0000 | [diff] [blame] | 1 | //===--- TokenLexer.cpp - Lex from a token stream -------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the TokenLexer interface. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "MacroArgs.h" |
| 15 | #include "clang/Lex/MacroInfo.h" |
| 16 | #include "clang/Lex/Preprocessor.h" |
| 17 | #include "clang/Basic/Diagnostic.h" |
| 18 | using namespace clang; |
| 19 | |
| 20 | /// MacroArgs ctor function - This destroys the vector passed in. |
| 21 | MacroArgs *MacroArgs::create(const MacroInfo *MI, |
| 22 | const Token *UnexpArgTokens, |
| 23 | unsigned NumToks, bool VarargsElided) { |
| 24 | assert(MI->isFunctionLike() && |
| 25 | "Can't have args for an object-like macro!"); |
| 26 | |
| 27 | // Allocate memory for the MacroArgs object with the lexer tokens at the end. |
| 28 | MacroArgs *Result = (MacroArgs*)malloc(sizeof(MacroArgs) + |
| 29 | NumToks*sizeof(Token)); |
| 30 | // Construct the macroargs object. |
| 31 | new (Result) MacroArgs(NumToks, VarargsElided); |
| 32 | |
| 33 | // Copy the actual unexpanded tokens to immediately after the result ptr. |
| 34 | if (NumToks) |
| 35 | memcpy(const_cast<Token*>(Result->getUnexpArgument(0)), |
| 36 | UnexpArgTokens, NumToks*sizeof(Token)); |
| 37 | |
| 38 | return Result; |
| 39 | } |
| 40 | |
| 41 | /// destroy - Destroy and deallocate the memory for this object. |
| 42 | /// |
| 43 | void MacroArgs::destroy() { |
| 44 | // Run the dtor to deallocate the vectors. |
| 45 | this->~MacroArgs(); |
| 46 | // Release the memory for the object. |
| 47 | free(this); |
| 48 | } |
| 49 | |
| 50 | |
| 51 | /// getArgLength - Given a pointer to an expanded or unexpanded argument, |
| 52 | /// return the number of tokens, not counting the EOF, that make up the |
| 53 | /// argument. |
| 54 | unsigned MacroArgs::getArgLength(const Token *ArgPtr) { |
| 55 | unsigned NumArgTokens = 0; |
| 56 | for (; ArgPtr->isNot(tok::eof); ++ArgPtr) |
| 57 | ++NumArgTokens; |
| 58 | return NumArgTokens; |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /// getUnexpArgument - Return the unexpanded tokens for the specified formal. |
| 63 | /// |
| 64 | const Token *MacroArgs::getUnexpArgument(unsigned Arg) const { |
| 65 | // The unexpanded argument tokens start immediately after the MacroArgs object |
| 66 | // in memory. |
| 67 | const Token *Start = (const Token *)(this+1); |
| 68 | const Token *Result = Start; |
| 69 | // Scan to find Arg. |
| 70 | for (; Arg; ++Result) { |
| 71 | assert(Result < Start+NumUnexpArgTokens && "Invalid arg #"); |
| 72 | if (Result->is(tok::eof)) |
| 73 | --Arg; |
| 74 | } |
| 75 | return Result; |
| 76 | } |
| 77 | |
| 78 | |
| 79 | /// ArgNeedsPreexpansion - If we can prove that the argument won't be affected |
| 80 | /// by pre-expansion, return false. Otherwise, conservatively return true. |
| 81 | bool MacroArgs::ArgNeedsPreexpansion(const Token *ArgTok, |
| 82 | Preprocessor &PP) const { |
| 83 | // If there are no identifiers in the argument list, or if the identifiers are |
| 84 | // known to not be macros, pre-expansion won't modify it. |
| 85 | for (; ArgTok->isNot(tok::eof); ++ArgTok) |
| 86 | if (IdentifierInfo *II = ArgTok->getIdentifierInfo()) { |
| 87 | if (II->hasMacroDefinition() && PP.getMacroInfo(II)->isEnabled()) |
| 88 | // Return true even though the macro could be a function-like macro |
| 89 | // without a following '(' token. |
| 90 | return true; |
| 91 | } |
| 92 | return false; |
| 93 | } |
| 94 | |
| 95 | /// getPreExpArgument - Return the pre-expanded form of the specified |
| 96 | /// argument. |
| 97 | const std::vector<Token> & |
| 98 | MacroArgs::getPreExpArgument(unsigned Arg, Preprocessor &PP) { |
| 99 | assert(Arg < NumUnexpArgTokens && "Invalid argument number!"); |
| 100 | |
| 101 | // If we have already computed this, return it. |
| 102 | if (PreExpArgTokens.empty()) |
| 103 | PreExpArgTokens.resize(NumUnexpArgTokens); |
| 104 | |
| 105 | std::vector<Token> &Result = PreExpArgTokens[Arg]; |
| 106 | if (!Result.empty()) return Result; |
| 107 | |
| 108 | const Token *AT = getUnexpArgument(Arg); |
| 109 | unsigned NumToks = getArgLength(AT)+1; // Include the EOF. |
| 110 | |
| 111 | // Otherwise, we have to pre-expand this argument, populating Result. To do |
| 112 | // this, we set up a fake TokenLexer to lex from the unexpanded argument |
| 113 | // list. With this installed, we lex expanded tokens until we hit the EOF |
| 114 | // token at the end of the unexp list. |
Chris Lattner | 6b88450 | 2008-03-10 06:06:04 +0000 | [diff] [blame] | 115 | PP.EnterTokenStream(AT, NumToks, false /*disable expand*/, |
| 116 | false /*owns tokens*/); |
Chris Lattner | e5c8ffe | 2008-03-09 02:55:12 +0000 | [diff] [blame] | 117 | |
| 118 | // Lex all of the macro-expanded tokens into Result. |
| 119 | do { |
| 120 | Result.push_back(Token()); |
| 121 | PP.Lex(Result.back()); |
| 122 | } while (Result.back().isNot(tok::eof)); |
| 123 | |
| 124 | // Pop the token stream off the top of the stack. We know that the internal |
| 125 | // pointer inside of it is to the "end" of the token stream, but the stack |
| 126 | // will not otherwise be popped until the next token is lexed. The problem is |
| 127 | // that the token may be lexed sometime after the vector of tokens itself is |
| 128 | // destroyed, which would be badness. |
| 129 | PP.RemoveTopOfLexerStack(); |
| 130 | return Result; |
| 131 | } |
| 132 | |
| 133 | |
| 134 | /// StringifyArgument - Implement C99 6.10.3.2p2, converting a sequence of |
| 135 | /// tokens into the literal string token that should be produced by the C # |
| 136 | /// preprocessor operator. If Charify is true, then it should be turned into |
| 137 | /// a character literal for the Microsoft charize (#@) extension. |
| 138 | /// |
| 139 | Token MacroArgs::StringifyArgument(const Token *ArgToks, |
| 140 | Preprocessor &PP, bool Charify) { |
| 141 | Token Tok; |
| 142 | Tok.startToken(); |
| 143 | Tok.setKind(tok::string_literal); |
| 144 | |
| 145 | const Token *ArgTokStart = ArgToks; |
| 146 | |
| 147 | // Stringify all the tokens. |
| 148 | std::string Result = "\""; |
| 149 | // FIXME: Optimize this loop to not use std::strings. |
| 150 | bool isFirst = true; |
| 151 | for (; ArgToks->isNot(tok::eof); ++ArgToks) { |
| 152 | const Token &Tok = *ArgToks; |
| 153 | if (!isFirst && (Tok.hasLeadingSpace() || Tok.isAtStartOfLine())) |
| 154 | Result += ' '; |
| 155 | isFirst = false; |
| 156 | |
| 157 | // If this is a string or character constant, escape the token as specified |
| 158 | // by 6.10.3.2p2. |
| 159 | if (Tok.is(tok::string_literal) || // "foo" |
| 160 | Tok.is(tok::wide_string_literal) || // L"foo" |
| 161 | Tok.is(tok::char_constant)) { // 'x' and L'x'. |
| 162 | Result += Lexer::Stringify(PP.getSpelling(Tok)); |
| 163 | } else { |
| 164 | // Otherwise, just append the token. |
| 165 | Result += PP.getSpelling(Tok); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | // If the last character of the string is a \, and if it isn't escaped, this |
| 170 | // is an invalid string literal, diagnose it as specified in C99. |
| 171 | if (Result[Result.size()-1] == '\\') { |
| 172 | // Count the number of consequtive \ characters. If even, then they are |
| 173 | // just escaped backslashes, otherwise it's an error. |
| 174 | unsigned FirstNonSlash = Result.size()-2; |
| 175 | // Guaranteed to find the starting " if nothing else. |
| 176 | while (Result[FirstNonSlash] == '\\') |
| 177 | --FirstNonSlash; |
| 178 | if ((Result.size()-1-FirstNonSlash) & 1) { |
| 179 | // Diagnose errors for things like: #define F(X) #X / F(\) |
| 180 | PP.Diag(ArgToks[-1], diag::pp_invalid_string_literal); |
| 181 | Result.erase(Result.end()-1); // remove one of the \'s. |
| 182 | } |
| 183 | } |
| 184 | Result += '"'; |
| 185 | |
| 186 | // If this is the charify operation and the result is not a legal character |
| 187 | // constant, diagnose it. |
| 188 | if (Charify) { |
| 189 | // First step, turn double quotes into single quotes: |
| 190 | Result[0] = '\''; |
| 191 | Result[Result.size()-1] = '\''; |
| 192 | |
| 193 | // Check for bogus character. |
| 194 | bool isBad = false; |
| 195 | if (Result.size() == 3) { |
| 196 | isBad = Result[1] == '\''; // ''' is not legal. '\' already fixed above. |
| 197 | } else { |
| 198 | isBad = (Result.size() != 4 || Result[1] != '\\'); // Not '\x' |
| 199 | } |
| 200 | |
| 201 | if (isBad) { |
| 202 | PP.Diag(ArgTokStart[0], diag::err_invalid_character_to_charify); |
| 203 | Result = "' '"; // Use something arbitrary, but legal. |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | Tok.setLength(Result.size()); |
| 208 | Tok.setLocation(PP.CreateString(&Result[0], Result.size())); |
| 209 | return Tok; |
| 210 | } |
| 211 | |
| 212 | /// getStringifiedArgument - Compute, cache, and return the specified argument |
| 213 | /// that has been 'stringified' as required by the # operator. |
| 214 | const Token &MacroArgs::getStringifiedArgument(unsigned ArgNo, |
| 215 | Preprocessor &PP) { |
| 216 | assert(ArgNo < NumUnexpArgTokens && "Invalid argument number!"); |
| 217 | if (StringifiedArgs.empty()) { |
| 218 | StringifiedArgs.resize(getNumArguments()); |
| 219 | memset(&StringifiedArgs[0], 0, |
| 220 | sizeof(StringifiedArgs[0])*getNumArguments()); |
| 221 | } |
| 222 | if (StringifiedArgs[ArgNo].isNot(tok::string_literal)) |
| 223 | StringifiedArgs[ArgNo] = StringifyArgument(getUnexpArgument(ArgNo), PP); |
| 224 | return StringifiedArgs[ArgNo]; |
| 225 | } |