blob: 9967f3f0e493548fc8a453eecd4f65753fe69db8 [file] [log] [blame]
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001//===--- MacroArgs.cpp - Formal argument info for Macros ------------------===//
Chris Lattnere5c8ffe2008-03-09 02:55:12 +00002//
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//
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010// This file implements the MacroArgs interface.
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000011//
12//===----------------------------------------------------------------------===//
13
Argyrios Kyrtzidisdd08a0c2013-05-03 22:31:32 +000014#include "clang/Lex/MacroArgs.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000015#include "clang/Lex/LexDiagnostic.h"
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000016#include "clang/Lex/MacroInfo.h"
17#include "clang/Lex/Preprocessor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000018#include "llvm/ADT/SmallString.h"
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +000019#include "llvm/Support/SaveAndRestore.h"
David Blaikied7bb6a02011-09-22 02:03:12 +000020#include <algorithm>
21
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000022using namespace clang;
23
24/// MacroArgs ctor function - This destroys the vector passed in.
25MacroArgs *MacroArgs::create(const MacroInfo *MI,
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000026 ArrayRef<Token> UnexpArgTokens,
David Blaikied7bb6a02011-09-22 02:03:12 +000027 bool VarargsElided, Preprocessor &PP) {
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000028 assert(MI->isFunctionLike() &&
29 "Can't have args for an object-like macro!");
Stephen Hines6bcf27b2014-05-29 04:14:42 -070030 MacroArgs **ResultEnt = nullptr;
Chris Lattner4fe739f2009-12-28 06:36:46 +000031 unsigned ClosestMatch = ~0U;
Chris Lattner46084592009-12-15 20:48:12 +000032
33 // See if we have an entry with a big enough argument list to reuse on the
34 // free list. If so, reuse it.
35 for (MacroArgs **Entry = &PP.MacroArgCache; *Entry;
36 Entry = &(*Entry)->ArgCache)
David Blaikied7bb6a02011-09-22 02:03:12 +000037 if ((*Entry)->NumUnexpArgTokens >= UnexpArgTokens.size() &&
Chris Lattner4fe739f2009-12-28 06:36:46 +000038 (*Entry)->NumUnexpArgTokens < ClosestMatch) {
39 ResultEnt = Entry;
40
41 // If we have an exact match, use it.
David Blaikied7bb6a02011-09-22 02:03:12 +000042 if ((*Entry)->NumUnexpArgTokens == UnexpArgTokens.size())
Chris Lattner4fe739f2009-12-28 06:36:46 +000043 break;
44 // Otherwise, use the best fit.
45 ClosestMatch = (*Entry)->NumUnexpArgTokens;
Chris Lattner46084592009-12-15 20:48:12 +000046 }
47
Chris Lattner4fe739f2009-12-28 06:36:46 +000048 MacroArgs *Result;
Stephen Hines6bcf27b2014-05-29 04:14:42 -070049 if (!ResultEnt) {
Chris Lattner46084592009-12-15 20:48:12 +000050 // Allocate memory for a MacroArgs object with the lexer tokens at the end.
David Blaikied7bb6a02011-09-22 02:03:12 +000051 Result = (MacroArgs*)malloc(sizeof(MacroArgs) +
52 UnexpArgTokens.size() * sizeof(Token));
Chris Lattner46084592009-12-15 20:48:12 +000053 // Construct the MacroArgs object.
David Blaikied7bb6a02011-09-22 02:03:12 +000054 new (Result) MacroArgs(UnexpArgTokens.size(), VarargsElided);
Chris Lattner46084592009-12-15 20:48:12 +000055 } else {
Chris Lattner4fe739f2009-12-28 06:36:46 +000056 Result = *ResultEnt;
57 // Unlink this node from the preprocessors singly linked list.
58 *ResultEnt = Result->ArgCache;
David Blaikied7bb6a02011-09-22 02:03:12 +000059 Result->NumUnexpArgTokens = UnexpArgTokens.size();
Chris Lattner46084592009-12-15 20:48:12 +000060 Result->VarargsElided = VarargsElided;
61 }
Mike Stump1eb44332009-09-09 15:08:12 +000062
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000063 // Copy the actual unexpanded tokens to immediately after the result ptr.
David Blaikied7bb6a02011-09-22 02:03:12 +000064 if (!UnexpArgTokens.empty())
65 std::copy(UnexpArgTokens.begin(), UnexpArgTokens.end(),
66 const_cast<Token*>(Result->getUnexpArgument(0)));
Mike Stump1eb44332009-09-09 15:08:12 +000067
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000068 return Result;
69}
70
71/// destroy - Destroy and deallocate the memory for this object.
72///
Chris Lattner561395b2009-12-14 22:12:52 +000073void MacroArgs::destroy(Preprocessor &PP) {
Chris Lattner46084592009-12-15 20:48:12 +000074 StringifiedArgs.clear();
75
76 // Don't clear PreExpArgTokens, just clear the entries. Clearing the entries
77 // would deallocate the element vectors.
78 for (unsigned i = 0, e = PreExpArgTokens.size(); i != e; ++i)
79 PreExpArgTokens[i].clear();
80
81 // Add this to the preprocessor's free list.
82 ArgCache = PP.MacroArgCache;
83 PP.MacroArgCache = this;
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000084}
85
Chris Lattner23f77e52009-12-15 01:51:03 +000086/// deallocate - This should only be called by the Preprocessor when managing
87/// its freelist.
88MacroArgs *MacroArgs::deallocate() {
89 MacroArgs *Next = ArgCache;
90
91 // Run the dtor to deallocate the vectors.
92 this->~MacroArgs();
93 // Release the memory for the object.
94 free(this);
95
96 return Next;
97}
98
Chris Lattnere5c8ffe2008-03-09 02:55:12 +000099
100/// getArgLength - Given a pointer to an expanded or unexpanded argument,
101/// return the number of tokens, not counting the EOF, that make up the
102/// argument.
103unsigned MacroArgs::getArgLength(const Token *ArgPtr) {
104 unsigned NumArgTokens = 0;
105 for (; ArgPtr->isNot(tok::eof); ++ArgPtr)
106 ++NumArgTokens;
107 return NumArgTokens;
108}
109
110
111/// getUnexpArgument - Return the unexpanded tokens for the specified formal.
112///
113const Token *MacroArgs::getUnexpArgument(unsigned Arg) const {
114 // The unexpanded argument tokens start immediately after the MacroArgs object
115 // in memory.
116 const Token *Start = (const Token *)(this+1);
117 const Token *Result = Start;
118 // Scan to find Arg.
119 for (; Arg; ++Result) {
120 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
121 if (Result->is(tok::eof))
122 --Arg;
123 }
Chris Lattner9fc9e772009-05-13 00:55:26 +0000124 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000125 return Result;
126}
127
128
129/// ArgNeedsPreexpansion - If we can prove that the argument won't be affected
130/// by pre-expansion, return false. Otherwise, conservatively return true.
131bool MacroArgs::ArgNeedsPreexpansion(const Token *ArgTok,
132 Preprocessor &PP) const {
133 // If there are no identifiers in the argument list, or if the identifiers are
134 // known to not be macros, pre-expansion won't modify it.
135 for (; ArgTok->isNot(tok::eof); ++ArgTok)
136 if (IdentifierInfo *II = ArgTok->getIdentifierInfo()) {
137 if (II->hasMacroDefinition() && PP.getMacroInfo(II)->isEnabled())
138 // Return true even though the macro could be a function-like macro
139 // without a following '(' token.
140 return true;
141 }
142 return false;
143}
144
145/// getPreExpArgument - Return the pre-expanded form of the specified
146/// argument.
147const std::vector<Token> &
Chris Lattnerf5809a72009-12-28 06:17:16 +0000148MacroArgs::getPreExpArgument(unsigned Arg, const MacroInfo *MI,
149 Preprocessor &PP) {
150 assert(Arg < MI->getNumArgs() && "Invalid argument number!");
Mike Stump1eb44332009-09-09 15:08:12 +0000151
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000152 // If we have already computed this, return it.
Chris Lattnerf5809a72009-12-28 06:17:16 +0000153 if (PreExpArgTokens.size() < MI->getNumArgs())
154 PreExpArgTokens.resize(MI->getNumArgs());
155
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000156 std::vector<Token> &Result = PreExpArgTokens[Arg];
157 if (!Result.empty()) return Result;
158
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000159 SaveAndRestore<bool> PreExpandingMacroArgs(PP.InMacroArgPreExpansion, true);
160
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000161 const Token *AT = getUnexpArgument(Arg);
162 unsigned NumToks = getArgLength(AT)+1; // Include the EOF.
Mike Stump1eb44332009-09-09 15:08:12 +0000163
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000164 // Otherwise, we have to pre-expand this argument, populating Result. To do
165 // this, we set up a fake TokenLexer to lex from the unexpanded argument
166 // list. With this installed, we lex expanded tokens until we hit the EOF
167 // token at the end of the unexp list.
Mike Stump1eb44332009-09-09 15:08:12 +0000168 PP.EnterTokenStream(AT, NumToks, false /*disable expand*/,
Chris Lattner6b884502008-03-10 06:06:04 +0000169 false /*owns tokens*/);
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000170
171 // Lex all of the macro-expanded tokens into Result.
172 do {
173 Result.push_back(Token());
Chris Lattner7c351222009-01-26 04:33:10 +0000174 Token &Tok = Result.back();
175 PP.Lex(Tok);
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000176 } while (Result.back().isNot(tok::eof));
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000178 // Pop the token stream off the top of the stack. We know that the internal
179 // pointer inside of it is to the "end" of the token stream, but the stack
180 // will not otherwise be popped until the next token is lexed. The problem is
181 // that the token may be lexed sometime after the vector of tokens itself is
182 // destroyed, which would be badness.
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000183 if (PP.InCachingLexMode())
184 PP.ExitCachingLexMode();
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000185 PP.RemoveTopOfLexerStack();
186 return Result;
187}
188
189
190/// StringifyArgument - Implement C99 6.10.3.2p2, converting a sequence of
191/// tokens into the literal string token that should be produced by the C #
192/// preprocessor operator. If Charify is true, then it should be turned into
193/// a character literal for the Microsoft charize (#@) extension.
194///
195Token MacroArgs::StringifyArgument(const Token *ArgToks,
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +0000196 Preprocessor &PP, bool Charify,
Abramo Bagnaraa08529c2011-10-03 18:39:03 +0000197 SourceLocation ExpansionLocStart,
198 SourceLocation ExpansionLocEnd) {
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000199 Token Tok;
200 Tok.startToken();
Chris Lattner66335222009-12-23 19:15:27 +0000201 Tok.setKind(Charify ? tok::char_constant : tok::string_literal);
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000202
203 const Token *ArgTokStart = ArgToks;
Mike Stump1eb44332009-09-09 15:08:12 +0000204
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000205 // Stringify all the tokens.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000206 SmallString<128> Result;
Chris Lattnerc19e8a22009-01-05 23:04:18 +0000207 Result += "\"";
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000209 bool isFirst = true;
210 for (; ArgToks->isNot(tok::eof); ++ArgToks) {
211 const Token &Tok = *ArgToks;
212 if (!isFirst && (Tok.hasLeadingSpace() || Tok.isAtStartOfLine()))
213 Result += ' ';
214 isFirst = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000216 // If this is a string or character constant, escape the token as specified
217 // by 6.10.3.2p2.
Richard Smith0b91cc42013-03-09 23:30:15 +0000218 if (tok::isStringLiteral(Tok.getKind()) || // "foo", u8R"x(foo)x"_bar, etc.
219 Tok.is(tok::char_constant) || // 'x'
220 Tok.is(tok::wide_char_constant) || // L'x'.
Stephen Hines176edba2014-12-01 14:53:08 -0800221 Tok.is(tok::utf8_char_constant) || // u8'x'.
Richard Smith0b91cc42013-03-09 23:30:15 +0000222 Tok.is(tok::utf16_char_constant) || // u'x'.
223 Tok.is(tok::utf32_char_constant)) { // U'x'.
Douglas Gregor453091c2010-03-16 22:30:13 +0000224 bool Invalid = false;
225 std::string TokStr = PP.getSpelling(Tok, &Invalid);
226 if (!Invalid) {
227 std::string Str = Lexer::Stringify(TokStr);
228 Result.append(Str.begin(), Str.end());
229 }
Argyrios Kyrtzidis8e85e852011-09-04 03:32:19 +0000230 } else if (Tok.is(tok::code_completion)) {
231 PP.CodeCompleteNaturalLanguage();
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000232 } else {
Chris Lattnerc19e8a22009-01-05 23:04:18 +0000233 // Otherwise, just append the token. Do some gymnastics to get the token
234 // in place and avoid copies where possible.
235 unsigned CurStrLen = Result.size();
236 Result.resize(CurStrLen+Tok.getLength());
Stephen Hines176edba2014-12-01 14:53:08 -0800237 const char *BufPtr = Result.data() + CurStrLen;
Douglas Gregor453091c2010-03-16 22:30:13 +0000238 bool Invalid = false;
239 unsigned ActualTokLen = PP.getSpelling(Tok, BufPtr, &Invalid);
Mike Stump1eb44332009-09-09 15:08:12 +0000240
Douglas Gregor453091c2010-03-16 22:30:13 +0000241 if (!Invalid) {
242 // If getSpelling returned a pointer to an already uniqued version of
243 // the string instead of filling in BufPtr, memcpy it onto our string.
Stephen Hines176edba2014-12-01 14:53:08 -0800244 if (ActualTokLen && BufPtr != &Result[CurStrLen])
Douglas Gregor453091c2010-03-16 22:30:13 +0000245 memcpy(&Result[CurStrLen], BufPtr, ActualTokLen);
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Douglas Gregor453091c2010-03-16 22:30:13 +0000247 // If the token was dirty, the spelling may be shorter than the token.
248 if (ActualTokLen != Tok.getLength())
249 Result.resize(CurStrLen+ActualTokLen);
250 }
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000251 }
252 }
Mike Stump1eb44332009-09-09 15:08:12 +0000253
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000254 // If the last character of the string is a \, and if it isn't escaped, this
255 // is an invalid string literal, diagnose it as specified in C99.
Chris Lattnerc19e8a22009-01-05 23:04:18 +0000256 if (Result.back() == '\\') {
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000257 // Count the number of consequtive \ characters. If even, then they are
258 // just escaped backslashes, otherwise it's an error.
259 unsigned FirstNonSlash = Result.size()-2;
260 // Guaranteed to find the starting " if nothing else.
261 while (Result[FirstNonSlash] == '\\')
262 --FirstNonSlash;
263 if ((Result.size()-1-FirstNonSlash) & 1) {
264 // Diagnose errors for things like: #define F(X) #X / F(\)
265 PP.Diag(ArgToks[-1], diag::pp_invalid_string_literal);
Chris Lattnerc19e8a22009-01-05 23:04:18 +0000266 Result.pop_back(); // remove one of the \'s.
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000267 }
268 }
269 Result += '"';
Mike Stump1eb44332009-09-09 15:08:12 +0000270
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000271 // If this is the charify operation and the result is not a legal character
272 // constant, diagnose it.
273 if (Charify) {
274 // First step, turn double quotes into single quotes:
275 Result[0] = '\'';
276 Result[Result.size()-1] = '\'';
Mike Stump1eb44332009-09-09 15:08:12 +0000277
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000278 // Check for bogus character.
279 bool isBad = false;
Chris Lattnerc19e8a22009-01-05 23:04:18 +0000280 if (Result.size() == 3)
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000281 isBad = Result[1] == '\''; // ''' is not legal. '\' already fixed above.
Chris Lattnerc19e8a22009-01-05 23:04:18 +0000282 else
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000283 isBad = (Result.size() != 4 || Result[1] != '\\'); // Not '\x'
Mike Stump1eb44332009-09-09 15:08:12 +0000284
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000285 if (isBad) {
286 PP.Diag(ArgTokStart[0], diag::err_invalid_character_to_charify);
287 Result = "' '"; // Use something arbitrary, but legal.
288 }
289 }
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Dmitri Gribenko374b3832012-09-24 21:07:17 +0000291 PP.CreateString(Result, Tok,
Abramo Bagnaraa08529c2011-10-03 18:39:03 +0000292 ExpansionLocStart, ExpansionLocEnd);
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000293 return Tok;
294}
295
296/// getStringifiedArgument - Compute, cache, and return the specified argument
297/// that has been 'stringified' as required by the # operator.
298const Token &MacroArgs::getStringifiedArgument(unsigned ArgNo,
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +0000299 Preprocessor &PP,
Abramo Bagnaraa08529c2011-10-03 18:39:03 +0000300 SourceLocation ExpansionLocStart,
301 SourceLocation ExpansionLocEnd) {
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000302 assert(ArgNo < NumUnexpArgTokens && "Invalid argument number!");
303 if (StringifiedArgs.empty()) {
304 StringifiedArgs.resize(getNumArguments());
Chandler Carruth75c40642011-04-28 08:19:45 +0000305 memset((void*)&StringifiedArgs[0], 0,
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000306 sizeof(StringifiedArgs[0])*getNumArguments());
307 }
308 if (StringifiedArgs[ArgNo].isNot(tok::string_literal))
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +0000309 StringifiedArgs[ArgNo] = StringifyArgument(getUnexpArgument(ArgNo), PP,
Abramo Bagnaraa08529c2011-10-03 18:39:03 +0000310 /*Charify=*/false,
311 ExpansionLocStart,
312 ExpansionLocEnd);
Chris Lattnere5c8ffe2008-03-09 02:55:12 +0000313 return StringifiedArgs[ArgNo];
314}