blob: 62ef8bfbcdc63ffcfd0953ef818eb225afa83365 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Pragma.cpp - Pragma registration and handling --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the PragmaHandler/PragmaTable interfaces and implements
11// pragma related methods of the Preprocessor class.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Pragma.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/Lex/HeaderSearch.h"
Chris Lattnera9d91452009-01-16 18:59:23 +000017#include "clang/Lex/LiteralSupport.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/Lex/Preprocessor.h"
Chris Lattnerf47724b2010-08-17 15:55:45 +000019#include "clang/Lex/MacroInfo.h"
Chris Lattner500d3292009-01-29 05:15:15 +000020#include "clang/Lex/LexDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Basic/FileManager.h"
22#include "clang/Basic/SourceManager.h"
Daniel Dunbarff759a62010-08-18 23:09:23 +000023#include "llvm/Support/CrashRecoveryContext.h"
Daniel Dunbar55054132010-08-17 22:32:48 +000024#include "llvm/Support/ErrorHandling.h"
Douglas Gregor2e222532009-07-02 17:08:52 +000025#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000026using namespace clang;
27
28// Out-of-line destructor to provide a home for the class.
29PragmaHandler::~PragmaHandler() {
30}
31
32//===----------------------------------------------------------------------===//
Daniel Dunbarc72cc502010-06-11 20:10:12 +000033// EmptyPragmaHandler Implementation.
34//===----------------------------------------------------------------------===//
35
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000036EmptyPragmaHandler::EmptyPragmaHandler() {}
Daniel Dunbarc72cc502010-06-11 20:10:12 +000037
Douglas Gregor80c60f72010-09-09 22:45:38 +000038void EmptyPragmaHandler::HandlePragma(Preprocessor &PP,
39 PragmaIntroducerKind Introducer,
40 Token &FirstToken) {}
Daniel Dunbarc72cc502010-06-11 20:10:12 +000041
42//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +000043// PragmaNamespace Implementation.
44//===----------------------------------------------------------------------===//
45
46
47PragmaNamespace::~PragmaNamespace() {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000048 for (llvm::StringMap<PragmaHandler*>::iterator
49 I = Handlers.begin(), E = Handlers.end(); I != E; ++I)
50 delete I->second;
Reid Spencer5f016e22007-07-11 17:01:13 +000051}
52
53/// FindHandler - Check to see if there is already a handler for the
54/// specified name. If not, return the handler for the null identifier if it
55/// exists, otherwise return null. If IgnoreNull is true (the default) then
56/// the null handler isn't returned on failure to match.
Chris Lattner5f9e2722011-07-23 10:55:15 +000057PragmaHandler *PragmaNamespace::FindHandler(StringRef Name,
Reid Spencer5f016e22007-07-11 17:01:13 +000058 bool IgnoreNull) const {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000059 if (PragmaHandler *Handler = Handlers.lookup(Name))
60 return Handler;
Chris Lattner5f9e2722011-07-23 10:55:15 +000061 return IgnoreNull ? 0 : Handlers.lookup(StringRef());
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000062}
Mike Stump1eb44332009-09-09 15:08:12 +000063
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000064void PragmaNamespace::AddPragma(PragmaHandler *Handler) {
65 assert(!Handlers.lookup(Handler->getName()) &&
66 "A handler with this name is already registered in this namespace");
67 llvm::StringMapEntry<PragmaHandler *> &Entry =
68 Handlers.GetOrCreateValue(Handler->getName());
69 Entry.setValue(Handler);
Reid Spencer5f016e22007-07-11 17:01:13 +000070}
71
Daniel Dunbar40950802008-10-04 19:17:46 +000072void PragmaNamespace::RemovePragmaHandler(PragmaHandler *Handler) {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000073 assert(Handlers.lookup(Handler->getName()) &&
74 "Handler not registered in this namespace");
75 Handlers.erase(Handler->getName());
Daniel Dunbar40950802008-10-04 19:17:46 +000076}
77
Douglas Gregor80c60f72010-09-09 22:45:38 +000078void PragmaNamespace::HandlePragma(Preprocessor &PP,
79 PragmaIntroducerKind Introducer,
80 Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +000081 // Read the 'namespace' that the directive is in, e.g. STDC. Do not macro
82 // expand it, the user can have a STDC #define, that should not affect this.
83 PP.LexUnexpandedToken(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +000084
Reid Spencer5f016e22007-07-11 17:01:13 +000085 // Get the handler for this token. If there is no handler, ignore the pragma.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000086 PragmaHandler *Handler
87 = FindHandler(Tok.getIdentifierInfo() ? Tok.getIdentifierInfo()->getName()
Chris Lattner5f9e2722011-07-23 10:55:15 +000088 : StringRef(),
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +000089 /*IgnoreNull=*/false);
Chris Lattneraf7cdf42009-04-19 21:10:26 +000090 if (Handler == 0) {
91 PP.Diag(Tok, diag::warn_pragma_ignored);
92 return;
93 }
Mike Stump1eb44332009-09-09 15:08:12 +000094
Reid Spencer5f016e22007-07-11 17:01:13 +000095 // Otherwise, pass it down.
Douglas Gregor80c60f72010-09-09 22:45:38 +000096 Handler->HandlePragma(PP, Introducer, Tok);
Reid Spencer5f016e22007-07-11 17:01:13 +000097}
98
99//===----------------------------------------------------------------------===//
100// Preprocessor Pragma Directive Handling.
101//===----------------------------------------------------------------------===//
102
James Dennettb6e95b72012-06-17 03:26:26 +0000103/// HandlePragmaDirective - The "\#pragma" directive has been parsed. Lex the
Reid Spencer5f016e22007-07-11 17:01:13 +0000104/// rest of the pragma, passing it to the registered pragma handlers.
Douglas Gregor80c60f72010-09-09 22:45:38 +0000105void Preprocessor::HandlePragmaDirective(unsigned Introducer) {
Jordan Rose6fe6a492012-06-08 18:06:21 +0000106 if (!PragmasEnabled)
107 return;
108
Reid Spencer5f016e22007-07-11 17:01:13 +0000109 ++NumPragma;
Mike Stump1eb44332009-09-09 15:08:12 +0000110
Reid Spencer5f016e22007-07-11 17:01:13 +0000111 // Invoke the first level of pragma handlers which reads the namespace id.
Chris Lattnerd2177732007-07-20 16:59:19 +0000112 Token Tok;
Douglas Gregor80c60f72010-09-09 22:45:38 +0000113 PragmaHandlers->HandlePragma(*this, PragmaIntroducerKind(Introducer), Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Reid Spencer5f016e22007-07-11 17:01:13 +0000115 // If the pragma handler didn't read the rest of the line, consume it now.
Peter Collingbourneb2eb53d2011-02-22 13:49:00 +0000116 if ((CurTokenLexer && CurTokenLexer->isParsingPreprocessorDirective())
117 || (CurPPLexer && CurPPLexer->ParsingPreprocessorDirective))
Reid Spencer5f016e22007-07-11 17:01:13 +0000118 DiscardUntilEndOfDirective();
119}
120
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000121namespace {
122/// \brief Helper class for \see Preprocessor::Handle_Pragma.
123class LexingFor_PragmaRAII {
124 Preprocessor &PP;
125 bool InMacroArgPreExpansion;
126 bool Failed;
127 Token &OutTok;
128 Token PragmaTok;
129
130public:
131 LexingFor_PragmaRAII(Preprocessor &PP, bool InMacroArgPreExpansion,
132 Token &Tok)
133 : PP(PP), InMacroArgPreExpansion(InMacroArgPreExpansion),
134 Failed(false), OutTok(Tok) {
135 if (InMacroArgPreExpansion) {
136 PragmaTok = OutTok;
137 PP.EnableBacktrackAtThisPos();
138 }
139 }
140
141 ~LexingFor_PragmaRAII() {
142 if (InMacroArgPreExpansion) {
143 if (Failed) {
144 PP.CommitBacktrackedTokens();
145 } else {
146 PP.Backtrack();
147 OutTok = PragmaTok;
148 }
149 }
150 }
151
152 void failed() {
153 Failed = true;
154 }
155};
156}
157
Reid Spencer5f016e22007-07-11 17:01:13 +0000158/// Handle_Pragma - Read a _Pragma directive, slice it up, process it, then
159/// return the first token after the directive. The _Pragma token has just
160/// been read into 'Tok'.
Chris Lattnerd2177732007-07-20 16:59:19 +0000161void Preprocessor::Handle_Pragma(Token &Tok) {
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000162
163 // This works differently if we are pre-expanding a macro argument.
164 // In that case we don't actually "activate" the pragma now, we only lex it
165 // until we are sure it is lexically correct and then we backtrack so that
166 // we activate the pragma whenever we encounter the tokens again in the token
167 // stream. This ensures that we will activate it in the correct location
168 // or that we will ignore it if it never enters the token stream, e.g:
169 //
170 // #define EMPTY(x)
171 // #define INACTIVE(x) EMPTY(x)
172 // INACTIVE(_Pragma("clang diagnostic ignored \"-Wconversion\""))
173
174 LexingFor_PragmaRAII _PragmaLexing(*this, InMacroArgPreExpansion, Tok);
175
Reid Spencer5f016e22007-07-11 17:01:13 +0000176 // Remember the pragma token location.
177 SourceLocation PragmaLoc = Tok.getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Reid Spencer5f016e22007-07-11 17:01:13 +0000179 // Read the '('.
180 Lex(Tok);
Chris Lattner3692b092008-11-18 07:59:24 +0000181 if (Tok.isNot(tok::l_paren)) {
182 Diag(PragmaLoc, diag::err__Pragma_malformed);
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000183 return _PragmaLexing.failed();
Chris Lattner3692b092008-11-18 07:59:24 +0000184 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000185
186 // Read the '"..."'.
187 Lex(Tok);
Chris Lattner3692b092008-11-18 07:59:24 +0000188 if (Tok.isNot(tok::string_literal) && Tok.isNot(tok::wide_string_literal)) {
189 Diag(PragmaLoc, diag::err__Pragma_malformed);
Richard Smith99831e42012-03-06 03:21:47 +0000190 // Skip this token, and the ')', if present.
191 if (Tok.isNot(tok::r_paren))
192 Lex(Tok);
193 if (Tok.is(tok::r_paren))
194 Lex(Tok);
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000195 return _PragmaLexing.failed();
Richard Smith99831e42012-03-06 03:21:47 +0000196 }
197
198 if (Tok.hasUDSuffix()) {
199 Diag(Tok, diag::err_invalid_string_udl);
200 // Skip this token, and the ')', if present.
201 Lex(Tok);
202 if (Tok.is(tok::r_paren))
203 Lex(Tok);
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000204 return _PragmaLexing.failed();
Chris Lattner3692b092008-11-18 07:59:24 +0000205 }
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 // Remember the string.
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000208 Token StrTok = Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000209
210 // Read the ')'.
211 Lex(Tok);
Chris Lattner3692b092008-11-18 07:59:24 +0000212 if (Tok.isNot(tok::r_paren)) {
213 Diag(PragmaLoc, diag::err__Pragma_malformed);
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000214 return _PragmaLexing.failed();
Chris Lattner3692b092008-11-18 07:59:24 +0000215 }
Mike Stump1eb44332009-09-09 15:08:12 +0000216
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000217 if (InMacroArgPreExpansion)
218 return;
219
Chris Lattnere7fb4842009-02-15 20:52:18 +0000220 SourceLocation RParenLoc = Tok.getLocation();
Argyrios Kyrtzidis14e64552012-04-03 16:47:40 +0000221 std::string StrVal = getSpelling(StrTok);
Mike Stump1eb44332009-09-09 15:08:12 +0000222
Chris Lattnera9d91452009-01-16 18:59:23 +0000223 // The _Pragma is lexically sound. Destringize according to C99 6.10.9.1:
224 // "The string literal is destringized by deleting the L prefix, if present,
225 // deleting the leading and trailing double-quotes, replacing each escape
226 // sequence \" by a double-quote, and replacing each escape sequence \\ by a
227 // single backslash."
Reid Spencer5f016e22007-07-11 17:01:13 +0000228 if (StrVal[0] == 'L') // Remove L prefix.
229 StrVal.erase(StrVal.begin());
230 assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
231 "Invalid string token!");
Mike Stump1eb44332009-09-09 15:08:12 +0000232
Reid Spencer5f016e22007-07-11 17:01:13 +0000233 // Remove the front quote, replacing it with a space, so that the pragma
234 // contents appear to have a space before them.
235 StrVal[0] = ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000236
Chris Lattner1fa49532009-03-08 08:08:45 +0000237 // Replace the terminating quote with a \n.
Reid Spencer5f016e22007-07-11 17:01:13 +0000238 StrVal[StrVal.size()-1] = '\n';
Mike Stump1eb44332009-09-09 15:08:12 +0000239
Reid Spencer5f016e22007-07-11 17:01:13 +0000240 // Remove escaped quotes and escapes.
241 for (unsigned i = 0, e = StrVal.size(); i != e-1; ++i) {
242 if (StrVal[i] == '\\' &&
243 (StrVal[i+1] == '\\' || StrVal[i+1] == '"')) {
244 // \\ -> '\' and \" -> '"'.
245 StrVal.erase(StrVal.begin()+i);
246 --e;
247 }
248 }
John McCall1ef8a2e2010-08-28 22:34:47 +0000249
Peter Collingbournea5ef5842011-02-22 13:49:06 +0000250 // Plop the string (including the newline and trailing null) into a buffer
251 // where we can lex it.
252 Token TmpTok;
253 TmpTok.startToken();
254 CreateString(&StrVal[0], StrVal.size(), TmpTok);
255 SourceLocation TokLoc = TmpTok.getLocation();
256
257 // Make and enter a lexer object so that we lex and expand the tokens just
258 // like any others.
259 Lexer *TL = Lexer::Create_PragmaLexer(TokLoc, PragmaLoc, RParenLoc,
260 StrVal.size(), *this);
261
262 EnterSourceFileWithLexer(TL, 0);
263
264 // With everything set up, lex this as a #pragma directive.
265 HandlePragmaDirective(PIK__Pragma);
John McCall1ef8a2e2010-08-28 22:34:47 +0000266
267 // Finally, return whatever came after the pragma directive.
268 return Lex(Tok);
269}
270
271/// HandleMicrosoft__pragma - Like Handle_Pragma except the pragma text
272/// is not enclosed within a string literal.
273void Preprocessor::HandleMicrosoft__pragma(Token &Tok) {
274 // Remember the pragma token location.
275 SourceLocation PragmaLoc = Tok.getLocation();
276
277 // Read the '('.
278 Lex(Tok);
279 if (Tok.isNot(tok::l_paren)) {
280 Diag(PragmaLoc, diag::err__Pragma_malformed);
281 return;
282 }
283
Peter Collingbournea5ef5842011-02-22 13:49:06 +0000284 // Get the tokens enclosed within the __pragma(), as well as the final ')'.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000285 SmallVector<Token, 32> PragmaToks;
John McCall1ef8a2e2010-08-28 22:34:47 +0000286 int NumParens = 0;
287 Lex(Tok);
288 while (Tok.isNot(tok::eof)) {
Peter Collingbournea5ef5842011-02-22 13:49:06 +0000289 PragmaToks.push_back(Tok);
John McCall1ef8a2e2010-08-28 22:34:47 +0000290 if (Tok.is(tok::l_paren))
291 NumParens++;
292 else if (Tok.is(tok::r_paren) && NumParens-- == 0)
293 break;
John McCall1ef8a2e2010-08-28 22:34:47 +0000294 Lex(Tok);
295 }
296
John McCall3da92a92010-08-29 01:09:54 +0000297 if (Tok.is(tok::eof)) {
298 Diag(PragmaLoc, diag::err_unterminated___pragma);
299 return;
300 }
301
Peter Collingbournea5ef5842011-02-22 13:49:06 +0000302 PragmaToks.front().setFlag(Token::LeadingSpace);
John McCall1ef8a2e2010-08-28 22:34:47 +0000303
Peter Collingbourne84021552011-02-28 02:37:51 +0000304 // Replace the ')' with an EOD to mark the end of the pragma.
305 PragmaToks.back().setKind(tok::eod);
Peter Collingbournea5ef5842011-02-22 13:49:06 +0000306
307 Token *TokArray = new Token[PragmaToks.size()];
308 std::copy(PragmaToks.begin(), PragmaToks.end(), TokArray);
309
310 // Push the tokens onto the stack.
311 EnterTokenStream(TokArray, PragmaToks.size(), true, true);
312
313 // With everything set up, lex this as a #pragma directive.
314 HandlePragmaDirective(PIK___pragma);
John McCall1ef8a2e2010-08-28 22:34:47 +0000315
316 // Finally, return whatever came after the pragma directive.
317 return Lex(Tok);
318}
319
James Dennettb6e95b72012-06-17 03:26:26 +0000320/// HandlePragmaOnce - Handle \#pragma once. OnceTok is the 'once'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000321///
Chris Lattnerd2177732007-07-20 16:59:19 +0000322void Preprocessor::HandlePragmaOnce(Token &OnceTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000323 if (isInPrimaryFile()) {
324 Diag(OnceTok, diag::pp_pragma_once_in_main_file);
325 return;
326 }
Mike Stump1eb44332009-09-09 15:08:12 +0000327
Reid Spencer5f016e22007-07-11 17:01:13 +0000328 // Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
Reid Spencer5f016e22007-07-11 17:01:13 +0000329 // Mark the file as a once-only file now.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000330 HeaderInfo.MarkFileIncludeOnce(getCurrentFileLexer()->getFileEntry());
Reid Spencer5f016e22007-07-11 17:01:13 +0000331}
332
Chris Lattner22434492007-12-19 19:38:36 +0000333void Preprocessor::HandlePragmaMark() {
Ted Kremenek17ff58a2008-11-19 22:21:33 +0000334 assert(CurPPLexer && "No current lexer?");
Chris Lattner6896a372009-06-15 05:02:34 +0000335 if (CurLexer)
336 CurLexer->ReadToEndOfLine();
337 else
338 CurPTHLexer->DiscardToEndOfLine();
Chris Lattner22434492007-12-19 19:38:36 +0000339}
340
341
James Dennettb6e95b72012-06-17 03:26:26 +0000342/// HandlePragmaPoison - Handle \#pragma GCC poison. PoisonTok is the 'poison'.
Reid Spencer5f016e22007-07-11 17:01:13 +0000343///
Chris Lattnerd2177732007-07-20 16:59:19 +0000344void Preprocessor::HandlePragmaPoison(Token &PoisonTok) {
345 Token Tok;
Reid Spencer5f016e22007-07-11 17:01:13 +0000346
347 while (1) {
348 // Read the next token to poison. While doing this, pretend that we are
349 // skipping while reading the identifier to poison.
350 // This avoids errors on code like:
351 // #pragma GCC poison X
352 // #pragma GCC poison X
Ted Kremenek68a91d52008-11-18 01:12:54 +0000353 if (CurPPLexer) CurPPLexer->LexingRawMode = true;
Reid Spencer5f016e22007-07-11 17:01:13 +0000354 LexUnexpandedToken(Tok);
Ted Kremenek68a91d52008-11-18 01:12:54 +0000355 if (CurPPLexer) CurPPLexer->LexingRawMode = false;
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Reid Spencer5f016e22007-07-11 17:01:13 +0000357 // If we reached the end of line, we're done.
Peter Collingbourne84021552011-02-28 02:37:51 +0000358 if (Tok.is(tok::eod)) return;
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Reid Spencer5f016e22007-07-11 17:01:13 +0000360 // Can only poison identifiers.
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000361 if (Tok.isNot(tok::raw_identifier)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000362 Diag(Tok, diag::err_pp_invalid_poison);
363 return;
364 }
Mike Stump1eb44332009-09-09 15:08:12 +0000365
Reid Spencer5f016e22007-07-11 17:01:13 +0000366 // Look up the identifier info for the token. We disabled identifier lookup
367 // by saying we're skipping contents, so we need to do this manually.
368 IdentifierInfo *II = LookUpIdentifierInfo(Tok);
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Reid Spencer5f016e22007-07-11 17:01:13 +0000370 // Already poisoned.
371 if (II->isPoisoned()) continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000372
Reid Spencer5f016e22007-07-11 17:01:13 +0000373 // If this is a macro identifier, emit a warning.
Chris Lattner0edde552007-10-07 08:04:56 +0000374 if (II->hasMacroDefinition())
Reid Spencer5f016e22007-07-11 17:01:13 +0000375 Diag(Tok, diag::pp_poisoning_existing_macro);
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Reid Spencer5f016e22007-07-11 17:01:13 +0000377 // Finally, poison it!
378 II->setIsPoisoned();
Douglas Gregoreee242f2011-10-27 09:33:13 +0000379 if (II->isFromAST())
380 II->setChangedSinceDeserialization();
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 }
382}
383
James Dennettb6e95b72012-06-17 03:26:26 +0000384/// HandlePragmaSystemHeader - Implement \#pragma GCC system_header. We know
Reid Spencer5f016e22007-07-11 17:01:13 +0000385/// that the whole directive has been parsed.
Chris Lattnerd2177732007-07-20 16:59:19 +0000386void Preprocessor::HandlePragmaSystemHeader(Token &SysHeaderTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 if (isInPrimaryFile()) {
388 Diag(SysHeaderTok, diag::pp_pragma_sysheader_in_main_file);
389 return;
390 }
Mike Stump1eb44332009-09-09 15:08:12 +0000391
Reid Spencer5f016e22007-07-11 17:01:13 +0000392 // Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
Ted Kremenek35c10c22008-11-20 01:45:11 +0000393 PreprocessorLexer *TheLexer = getCurrentFileLexer();
Mike Stump1eb44332009-09-09 15:08:12 +0000394
Reid Spencer5f016e22007-07-11 17:01:13 +0000395 // Mark the file as a system header.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000396 HeaderInfo.MarkFileSystemHeader(TheLexer->getFileEntry());
Mike Stump1eb44332009-09-09 15:08:12 +0000397
398
Chris Lattner6896a372009-06-15 05:02:34 +0000399 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
Douglas Gregorcb7b1e12010-11-12 07:15:47 +0000400 if (PLoc.isInvalid())
401 return;
402
Jay Foad65aa6882011-06-21 15:13:30 +0000403 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Chris Lattner784c2572011-05-22 22:10:16 +0000405 // Notify the client, if desired, that we are in a new source file.
406 if (Callbacks)
407 Callbacks->FileChanged(SysHeaderTok.getLocation(),
408 PPCallbacks::SystemHeaderPragma, SrcMgr::C_System);
409
Chris Lattner6896a372009-06-15 05:02:34 +0000410 // Emit a line marker. This will change any source locations from this point
411 // forward to realize they are in a system header.
412 // Create a line note with this information.
413 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine(), FilenameID,
414 false, false, true, false);
Reid Spencer5f016e22007-07-11 17:01:13 +0000415}
416
James Dennettb6e95b72012-06-17 03:26:26 +0000417/// HandlePragmaDependency - Handle \#pragma GCC dependency "foo" blah.
Reid Spencer5f016e22007-07-11 17:01:13 +0000418///
Chris Lattnerd2177732007-07-20 16:59:19 +0000419void Preprocessor::HandlePragmaDependency(Token &DependencyTok) {
420 Token FilenameTok;
Ted Kremenek68a91d52008-11-18 01:12:54 +0000421 CurPPLexer->LexIncludeFilename(FilenameTok);
Reid Spencer5f016e22007-07-11 17:01:13 +0000422
Peter Collingbourne84021552011-02-28 02:37:51 +0000423 // If the token kind is EOD, the error has already been diagnosed.
424 if (FilenameTok.is(tok::eod))
Reid Spencer5f016e22007-07-11 17:01:13 +0000425 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000426
Reid Spencer5f016e22007-07-11 17:01:13 +0000427 // Reserve a buffer to get the spelling.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000428 SmallString<128> FilenameBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +0000429 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000430 StringRef Filename = getSpelling(FilenameTok, FilenameBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +0000431 if (Invalid)
432 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattnera1394812010-01-10 01:35:12 +0000434 bool isAngled =
435 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
Reid Spencer5f016e22007-07-11 17:01:13 +0000436 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
437 // error.
Chris Lattnera1394812010-01-10 01:35:12 +0000438 if (Filename.empty())
Reid Spencer5f016e22007-07-11 17:01:13 +0000439 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Reid Spencer5f016e22007-07-11 17:01:13 +0000441 // Search include directories for this file.
442 const DirectoryLookup *CurDir;
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000443 const FileEntry *File = LookupFile(Filename, isAngled, 0, CurDir, NULL, NULL,
444 NULL);
Chris Lattner56b05c82008-11-18 08:02:48 +0000445 if (File == 0) {
Eli Friedmanf84139a2011-08-30 23:07:51 +0000446 if (!SuppressIncludeNotFoundError)
447 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
Chris Lattner56b05c82008-11-18 08:02:48 +0000448 return;
449 }
Mike Stump1eb44332009-09-09 15:08:12 +0000450
Chris Lattner2b2453a2009-01-17 06:22:33 +0000451 const FileEntry *CurFile = getCurrentFileLexer()->getFileEntry();
Reid Spencer5f016e22007-07-11 17:01:13 +0000452
453 // If this file is older than the file it depends on, emit a diagnostic.
454 if (CurFile && CurFile->getModificationTime() < File->getModificationTime()) {
455 // Lex tokens at the end of the message and include them in the message.
456 std::string Message;
457 Lex(DependencyTok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000458 while (DependencyTok.isNot(tok::eod)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000459 Message += getSpelling(DependencyTok) + " ";
460 Lex(DependencyTok);
461 }
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Chris Lattner96de2592010-09-05 23:16:09 +0000463 // Remove the trailing ' ' if present.
464 if (!Message.empty())
465 Message.erase(Message.end()-1);
Chris Lattner56b05c82008-11-18 08:02:48 +0000466 Diag(FilenameTok, diag::pp_out_of_date_dependency) << Message;
Reid Spencer5f016e22007-07-11 17:01:13 +0000467 }
468}
469
James Dennettb6e95b72012-06-17 03:26:26 +0000470/// \brief Handle the microsoft \#pragma comment extension.
471///
472/// The syntax is:
473/// \code
474/// \#pragma comment(linker, "foo")
475/// \endcode
Chris Lattner636c5ef2009-01-16 08:21:25 +0000476/// 'linker' is one of five identifiers: compiler, exestr, lib, linker, user.
477/// "foo" is a string, which is fully macro expanded, and permits string
Gabor Greifd7ee3492009-03-17 11:39:38 +0000478/// concatenation, embedded escape characters etc. See MSDN for more details.
Chris Lattner636c5ef2009-01-16 08:21:25 +0000479void Preprocessor::HandlePragmaComment(Token &Tok) {
480 SourceLocation CommentLoc = Tok.getLocation();
481 Lex(Tok);
482 if (Tok.isNot(tok::l_paren)) {
483 Diag(CommentLoc, diag::err_pragma_comment_malformed);
484 return;
485 }
Mike Stump1eb44332009-09-09 15:08:12 +0000486
Chris Lattner636c5ef2009-01-16 08:21:25 +0000487 // Read the identifier.
488 Lex(Tok);
489 if (Tok.isNot(tok::identifier)) {
490 Diag(CommentLoc, diag::err_pragma_comment_malformed);
491 return;
492 }
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Chris Lattner636c5ef2009-01-16 08:21:25 +0000494 // Verify that this is one of the 5 whitelisted options.
495 // FIXME: warn that 'exestr' is deprecated.
496 const IdentifierInfo *II = Tok.getIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000497 if (!II->isStr("compiler") && !II->isStr("exestr") && !II->isStr("lib") &&
Chris Lattner636c5ef2009-01-16 08:21:25 +0000498 !II->isStr("linker") && !II->isStr("user")) {
499 Diag(Tok.getLocation(), diag::err_pragma_comment_unknown_kind);
500 return;
501 }
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Chris Lattnera9d91452009-01-16 18:59:23 +0000503 // Read the optional string if present.
Chris Lattner636c5ef2009-01-16 08:21:25 +0000504 Lex(Tok);
Chris Lattnera9d91452009-01-16 18:59:23 +0000505 std::string ArgumentString;
Chris Lattner636c5ef2009-01-16 08:21:25 +0000506 if (Tok.is(tok::comma)) {
Chris Lattnera9d91452009-01-16 18:59:23 +0000507 Lex(Tok); // eat the comma.
Chris Lattner636c5ef2009-01-16 08:21:25 +0000508
509 // We need at least one string.
Chris Lattneredaf8772009-04-19 23:16:58 +0000510 if (Tok.isNot(tok::string_literal)) {
Chris Lattner636c5ef2009-01-16 08:21:25 +0000511 Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
512 return;
513 }
514
515 // String concatenation allows multiple strings, which can even come from
516 // macro expansion.
517 // "foo " "bar" "Baz"
Chris Lattner5f9e2722011-07-23 10:55:15 +0000518 SmallVector<Token, 4> StrToks;
Chris Lattneredaf8772009-04-19 23:16:58 +0000519 while (Tok.is(tok::string_literal)) {
Richard Smith99831e42012-03-06 03:21:47 +0000520 if (Tok.hasUDSuffix())
521 Diag(Tok, diag::err_invalid_string_udl);
Chris Lattnera9d91452009-01-16 18:59:23 +0000522 StrToks.push_back(Tok);
Chris Lattner636c5ef2009-01-16 08:21:25 +0000523 Lex(Tok);
Chris Lattnera9d91452009-01-16 18:59:23 +0000524 }
525
526 // Concatenate and parse the strings.
527 StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
Douglas Gregor5cee1192011-07-27 05:40:30 +0000528 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnera9d91452009-01-16 18:59:23 +0000529 if (Literal.hadError)
530 return;
531 if (Literal.Pascal) {
532 Diag(StrToks[0].getLocation(), diag::err_pragma_comment_malformed);
533 return;
534 }
535
Jay Foad65aa6882011-06-21 15:13:30 +0000536 ArgumentString = Literal.GetString();
Chris Lattner636c5ef2009-01-16 08:21:25 +0000537 }
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Chris Lattnera9d91452009-01-16 18:59:23 +0000539 // FIXME: If the kind is "compiler" warn if the string is present (it is
540 // ignored).
541 // FIXME: 'lib' requires a comment string.
542 // FIXME: 'linker' requires a comment string, and has a specific list of
543 // things that are allowable.
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Chris Lattner636c5ef2009-01-16 08:21:25 +0000545 if (Tok.isNot(tok::r_paren)) {
546 Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
547 return;
548 }
Chris Lattnera9d91452009-01-16 18:59:23 +0000549 Lex(Tok); // eat the r_paren.
Chris Lattner636c5ef2009-01-16 08:21:25 +0000550
Peter Collingbourne84021552011-02-28 02:37:51 +0000551 if (Tok.isNot(tok::eod)) {
Chris Lattner636c5ef2009-01-16 08:21:25 +0000552 Diag(Tok.getLocation(), diag::err_pragma_comment_malformed);
553 return;
554 }
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Chris Lattnera9d91452009-01-16 18:59:23 +0000556 // If the pragma is lexically sound, notify any interested PPCallbacks.
Chris Lattner172e3362009-01-16 19:01:46 +0000557 if (Callbacks)
558 Callbacks->PragmaComment(CommentLoc, II, ArgumentString);
Chris Lattner636c5ef2009-01-16 08:21:25 +0000559}
560
James Dennettb6e95b72012-06-17 03:26:26 +0000561/// HandlePragmaMessage - Handle the microsoft and gcc \#pragma message
Michael J. Spencer301669b2010-09-27 06:19:02 +0000562/// extension. The syntax is:
James Dennettb6e95b72012-06-17 03:26:26 +0000563/// \code
564/// \#pragma message(string)
565/// \endcode
Michael J. Spencer301669b2010-09-27 06:19:02 +0000566/// OR, in GCC mode:
James Dennettb6e95b72012-06-17 03:26:26 +0000567/// \code
568/// \#pragma message string
569/// \endcode
Michael J. Spencer301669b2010-09-27 06:19:02 +0000570/// string is a string, which is fully macro expanded, and permits string
571/// concatenation, embedded escape characters, etc... See MSDN for more details.
Chris Lattnerabfe0942010-06-26 17:11:39 +0000572void Preprocessor::HandlePragmaMessage(Token &Tok) {
573 SourceLocation MessageLoc = Tok.getLocation();
574 Lex(Tok);
Michael J. Spencer301669b2010-09-27 06:19:02 +0000575 bool ExpectClosingParen = false;
Michael J. Spencerd83fc542010-09-27 06:34:47 +0000576 switch (Tok.getKind()) {
Michael J. Spencer301669b2010-09-27 06:19:02 +0000577 case tok::l_paren:
578 // We have a MSVC style pragma message.
579 ExpectClosingParen = true;
580 // Read the string.
581 Lex(Tok);
582 break;
583 case tok::string_literal:
584 // We have a GCC style pragma message, and we just read the string.
585 break;
586 default:
Chris Lattnerabfe0942010-06-26 17:11:39 +0000587 Diag(MessageLoc, diag::err_pragma_message_malformed);
588 return;
589 }
Chris Lattner636c5ef2009-01-16 08:21:25 +0000590
Chris Lattnerabfe0942010-06-26 17:11:39 +0000591 // We need at least one string.
592 if (Tok.isNot(tok::string_literal)) {
593 Diag(Tok.getLocation(), diag::err_pragma_message_malformed);
594 return;
595 }
596
597 // String concatenation allows multiple strings, which can even come from
598 // macro expansion.
599 // "foo " "bar" "Baz"
Chris Lattner5f9e2722011-07-23 10:55:15 +0000600 SmallVector<Token, 4> StrToks;
Chris Lattnerabfe0942010-06-26 17:11:39 +0000601 while (Tok.is(tok::string_literal)) {
Richard Smith99831e42012-03-06 03:21:47 +0000602 if (Tok.hasUDSuffix())
603 Diag(Tok, diag::err_invalid_string_udl);
Chris Lattnerabfe0942010-06-26 17:11:39 +0000604 StrToks.push_back(Tok);
605 Lex(Tok);
606 }
607
608 // Concatenate and parse the strings.
609 StringLiteralParser Literal(&StrToks[0], StrToks.size(), *this);
Douglas Gregor5cee1192011-07-27 05:40:30 +0000610 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattnerabfe0942010-06-26 17:11:39 +0000611 if (Literal.hadError)
612 return;
613 if (Literal.Pascal) {
614 Diag(StrToks[0].getLocation(), diag::err_pragma_message_malformed);
615 return;
616 }
617
Chris Lattner5f9e2722011-07-23 10:55:15 +0000618 StringRef MessageString(Literal.GetString());
Chris Lattnerabfe0942010-06-26 17:11:39 +0000619
Michael J. Spencer301669b2010-09-27 06:19:02 +0000620 if (ExpectClosingParen) {
621 if (Tok.isNot(tok::r_paren)) {
622 Diag(Tok.getLocation(), diag::err_pragma_message_malformed);
623 return;
624 }
625 Lex(Tok); // eat the r_paren.
Chris Lattnerabfe0942010-06-26 17:11:39 +0000626 }
Chris Lattnerabfe0942010-06-26 17:11:39 +0000627
Peter Collingbourne84021552011-02-28 02:37:51 +0000628 if (Tok.isNot(tok::eod)) {
Chris Lattnerabfe0942010-06-26 17:11:39 +0000629 Diag(Tok.getLocation(), diag::err_pragma_message_malformed);
630 return;
631 }
632
633 // Output the message.
634 Diag(MessageLoc, diag::warn_pragma_message) << MessageString;
635
636 // If the pragma is lexically sound, notify any interested PPCallbacks.
637 if (Callbacks)
638 Callbacks->PragmaMessage(MessageLoc, MessageString);
639}
Chris Lattner636c5ef2009-01-16 08:21:25 +0000640
Chris Lattnerf47724b2010-08-17 15:55:45 +0000641/// ParsePragmaPushOrPopMacro - Handle parsing of pragma push_macro/pop_macro.
642/// Return the IdentifierInfo* associated with the macro to push or pop.
643IdentifierInfo *Preprocessor::ParsePragmaPushOrPopMacro(Token &Tok) {
644 // Remember the pragma token location.
645 Token PragmaTok = Tok;
646
647 // Read the '('.
648 Lex(Tok);
649 if (Tok.isNot(tok::l_paren)) {
650 Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
651 << getSpelling(PragmaTok);
652 return 0;
653 }
654
655 // Read the macro name string.
656 Lex(Tok);
657 if (Tok.isNot(tok::string_literal)) {
658 Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
659 << getSpelling(PragmaTok);
660 return 0;
661 }
662
Richard Smith99831e42012-03-06 03:21:47 +0000663 if (Tok.hasUDSuffix()) {
664 Diag(Tok, diag::err_invalid_string_udl);
665 return 0;
666 }
667
Chris Lattnerf47724b2010-08-17 15:55:45 +0000668 // Remember the macro string.
669 std::string StrVal = getSpelling(Tok);
670
671 // Read the ')'.
672 Lex(Tok);
673 if (Tok.isNot(tok::r_paren)) {
674 Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
675 << getSpelling(PragmaTok);
676 return 0;
677 }
678
679 assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
680 "Invalid string token!");
681
682 // Create a Token from the string.
683 Token MacroTok;
684 MacroTok.startToken();
Abramo Bagnarac4bf2b92010-12-22 08:23:18 +0000685 MacroTok.setKind(tok::raw_identifier);
Chris Lattnerf47724b2010-08-17 15:55:45 +0000686 CreateString(&StrVal[1], StrVal.size() - 2, MacroTok);
687
688 // Get the IdentifierInfo of MacroToPushTok.
689 return LookUpIdentifierInfo(MacroTok);
690}
691
James Dennettb6e95b72012-06-17 03:26:26 +0000692/// \brief Handle \#pragma push_macro.
693///
Chris Lattnerf47724b2010-08-17 15:55:45 +0000694/// The syntax is:
James Dennettb6e95b72012-06-17 03:26:26 +0000695/// \code
696/// \#pragma push_macro("macro")
697/// \endcode
Chris Lattnerf47724b2010-08-17 15:55:45 +0000698void Preprocessor::HandlePragmaPushMacro(Token &PushMacroTok) {
699 // Parse the pragma directive and get the macro IdentifierInfo*.
700 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok);
701 if (!IdentInfo) return;
702
703 // Get the MacroInfo associated with IdentInfo.
704 MacroInfo *MI = getMacroInfo(IdentInfo);
705
706 MacroInfo *MacroCopyToPush = 0;
707 if (MI) {
708 // Make a clone of MI.
709 MacroCopyToPush = CloneMacroInfo(*MI);
710
711 // Allow the original MacroInfo to be redefined later.
712 MI->setIsAllowRedefinitionsWithoutWarning(true);
713 }
714
715 // Push the cloned MacroInfo so we can retrieve it later.
716 PragmaPushMacroInfo[IdentInfo].push_back(MacroCopyToPush);
717}
718
James Dennettb6e95b72012-06-17 03:26:26 +0000719/// \brief Handle \#pragma pop_macro.
720///
Chris Lattnerf47724b2010-08-17 15:55:45 +0000721/// The syntax is:
James Dennettb6e95b72012-06-17 03:26:26 +0000722/// \code
Chris Lattnerf47724b2010-08-17 15:55:45 +0000723/// #pragma pop_macro("macro")
James Dennettb6e95b72012-06-17 03:26:26 +0000724/// \endcode
Chris Lattnerf47724b2010-08-17 15:55:45 +0000725void Preprocessor::HandlePragmaPopMacro(Token &PopMacroTok) {
726 SourceLocation MessageLoc = PopMacroTok.getLocation();
727
728 // Parse the pragma directive and get the macro IdentifierInfo*.
729 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok);
730 if (!IdentInfo) return;
731
732 // Find the vector<MacroInfo*> associated with the macro.
733 llvm::DenseMap<IdentifierInfo*, std::vector<MacroInfo*> >::iterator iter =
734 PragmaPushMacroInfo.find(IdentInfo);
735 if (iter != PragmaPushMacroInfo.end()) {
Alexander Kornienko8a64bb52012-08-29 00:20:03 +0000736 // Forget the MacroInfo currently associated with IdentInfo.
737 if (MacroInfo *CurrentMI = getMacroInfo(IdentInfo)) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000738 if (CurrentMI->isWarnIfUnused())
739 WarnUnusedMacroLocs.erase(CurrentMI->getDefinitionLoc());
Alexander Kornienkoe40c4232012-08-29 16:56:24 +0000740 CurrentMI->setUndefLoc(MessageLoc);
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000741 }
Chris Lattnerf47724b2010-08-17 15:55:45 +0000742
743 // Get the MacroInfo we want to reinstall.
744 MacroInfo *MacroToReInstall = iter->second.back();
745
Alexander Kornienkoe40c4232012-08-29 16:56:24 +0000746 if (MacroToReInstall) {
747 // Reinstall the previously pushed macro.
748 setMacroInfo(IdentInfo, MacroToReInstall);
749 } else if (IdentInfo->hasMacroDefinition()) {
750 clearMacroInfo(IdentInfo);
751 }
Chris Lattnerf47724b2010-08-17 15:55:45 +0000752
753 // Pop PragmaPushMacroInfo stack.
754 iter->second.pop_back();
755 if (iter->second.size() == 0)
756 PragmaPushMacroInfo.erase(iter);
757 } else {
758 Diag(MessageLoc, diag::warn_pragma_pop_macro_no_push)
759 << IdentInfo->getName();
760 }
761}
Reid Spencer5f016e22007-07-11 17:01:13 +0000762
Aaron Ballman4c55c542012-03-02 22:51:54 +0000763void Preprocessor::HandlePragmaIncludeAlias(Token &Tok) {
764 // We will either get a quoted filename or a bracketed filename, and we
765 // have to track which we got. The first filename is the source name,
766 // and the second name is the mapped filename. If the first is quoted,
767 // the second must be as well (cannot mix and match quotes and brackets).
Aaron Ballman4c55c542012-03-02 22:51:54 +0000768
769 // Get the open paren
770 Lex(Tok);
771 if (Tok.isNot(tok::l_paren)) {
772 Diag(Tok, diag::warn_pragma_include_alias_expected) << "(";
773 return;
774 }
775
776 // We expect either a quoted string literal, or a bracketed name
777 Token SourceFilenameTok;
778 CurPPLexer->LexIncludeFilename(SourceFilenameTok);
779 if (SourceFilenameTok.is(tok::eod)) {
780 // The diagnostic has already been handled
781 return;
782 }
783
784 StringRef SourceFileName;
785 SmallString<128> FileNameBuffer;
786 if (SourceFilenameTok.is(tok::string_literal) ||
787 SourceFilenameTok.is(tok::angle_string_literal)) {
788 SourceFileName = getSpelling(SourceFilenameTok, FileNameBuffer);
789 } else if (SourceFilenameTok.is(tok::less)) {
790 // This could be a path instead of just a name
791 FileNameBuffer.push_back('<');
792 SourceLocation End;
793 if (ConcatenateIncludeName(FileNameBuffer, End))
794 return; // Diagnostic already emitted
795 SourceFileName = FileNameBuffer.str();
796 } else {
797 Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
798 return;
799 }
800 FileNameBuffer.clear();
801
802 // Now we expect a comma, followed by another include name
803 Lex(Tok);
804 if (Tok.isNot(tok::comma)) {
805 Diag(Tok, diag::warn_pragma_include_alias_expected) << ",";
806 return;
807 }
808
809 Token ReplaceFilenameTok;
810 CurPPLexer->LexIncludeFilename(ReplaceFilenameTok);
811 if (ReplaceFilenameTok.is(tok::eod)) {
812 // The diagnostic has already been handled
813 return;
814 }
815
816 StringRef ReplaceFileName;
817 if (ReplaceFilenameTok.is(tok::string_literal) ||
818 ReplaceFilenameTok.is(tok::angle_string_literal)) {
819 ReplaceFileName = getSpelling(ReplaceFilenameTok, FileNameBuffer);
820 } else if (ReplaceFilenameTok.is(tok::less)) {
821 // This could be a path instead of just a name
822 FileNameBuffer.push_back('<');
823 SourceLocation End;
824 if (ConcatenateIncludeName(FileNameBuffer, End))
825 return; // Diagnostic already emitted
826 ReplaceFileName = FileNameBuffer.str();
827 } else {
828 Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
829 return;
830 }
831
832 // Finally, we expect the closing paren
833 Lex(Tok);
834 if (Tok.isNot(tok::r_paren)) {
835 Diag(Tok, diag::warn_pragma_include_alias_expected) << ")";
836 return;
837 }
838
839 // Now that we have the source and target filenames, we need to make sure
840 // they're both of the same type (angled vs non-angled)
841 StringRef OriginalSource = SourceFileName;
842
843 bool SourceIsAngled =
844 GetIncludeFilenameSpelling(SourceFilenameTok.getLocation(),
845 SourceFileName);
846 bool ReplaceIsAngled =
847 GetIncludeFilenameSpelling(ReplaceFilenameTok.getLocation(),
848 ReplaceFileName);
849 if (!SourceFileName.empty() && !ReplaceFileName.empty() &&
850 (SourceIsAngled != ReplaceIsAngled)) {
851 unsigned int DiagID;
852 if (SourceIsAngled)
853 DiagID = diag::warn_pragma_include_alias_mismatch_angle;
854 else
855 DiagID = diag::warn_pragma_include_alias_mismatch_quote;
856
857 Diag(SourceFilenameTok.getLocation(), DiagID)
858 << SourceFileName
859 << ReplaceFileName;
860
861 return;
862 }
863
864 // Now we can let the include handler know about this mapping
865 getHeaderSearchInfo().AddIncludeAlias(OriginalSource, ReplaceFileName);
866}
867
Reid Spencer5f016e22007-07-11 17:01:13 +0000868/// AddPragmaHandler - Add the specified pragma handler to the preprocessor.
869/// If 'Namespace' is non-null, then it is a token required to exist on the
870/// pragma line before the pragma string starts, e.g. "STDC" or "GCC".
Chris Lattner5f9e2722011-07-23 10:55:15 +0000871void Preprocessor::AddPragmaHandler(StringRef Namespace,
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 PragmaHandler *Handler) {
873 PragmaNamespace *InsertNS = PragmaHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +0000874
Reid Spencer5f016e22007-07-11 17:01:13 +0000875 // If this is specified to be in a namespace, step down into it.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000876 if (!Namespace.empty()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 // If there is already a pragma handler with the name of this namespace,
878 // we either have an error (directive with the same name as a namespace) or
879 // we already have the namespace to insert into.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000880 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000881 InsertNS = Existing->getIfNamespace();
882 assert(InsertNS != 0 && "Cannot have a pragma namespace and pragma"
883 " handler with the same name!");
884 } else {
885 // Otherwise, this namespace doesn't exist yet, create and insert the
886 // handler for it.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000887 InsertNS = new PragmaNamespace(Namespace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000888 PragmaHandlers->AddPragma(InsertNS);
889 }
890 }
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Reid Spencer5f016e22007-07-11 17:01:13 +0000892 // Check to make sure we don't already have a pragma for this identifier.
893 assert(!InsertNS->FindHandler(Handler->getName()) &&
894 "Pragma handler already exists for this identifier!");
895 InsertNS->AddPragma(Handler);
896}
897
Daniel Dunbar40950802008-10-04 19:17:46 +0000898/// RemovePragmaHandler - Remove the specific pragma handler from the
899/// preprocessor. If \arg Namespace is non-null, then it should be the
900/// namespace that \arg Handler was added to. It is an error to remove
901/// a handler that has not been registered.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000902void Preprocessor::RemovePragmaHandler(StringRef Namespace,
Daniel Dunbar40950802008-10-04 19:17:46 +0000903 PragmaHandler *Handler) {
904 PragmaNamespace *NS = PragmaHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Daniel Dunbar40950802008-10-04 19:17:46 +0000906 // If this is specified to be in a namespace, step down into it.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000907 if (!Namespace.empty()) {
908 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
Daniel Dunbar40950802008-10-04 19:17:46 +0000909 assert(Existing && "Namespace containing handler does not exist!");
910
911 NS = Existing->getIfNamespace();
912 assert(NS && "Invalid namespace, registered as a regular pragma handler!");
913 }
914
915 NS->RemovePragmaHandler(Handler);
Mike Stump1eb44332009-09-09 15:08:12 +0000916
Daniel Dunbar40950802008-10-04 19:17:46 +0000917 // If this is a non-default namespace and it is now empty, remove
918 // it.
Argyrios Kyrtzidisce52bb32012-01-06 00:22:09 +0000919 if (NS != PragmaHandlers && NS->IsEmpty()) {
Daniel Dunbar40950802008-10-04 19:17:46 +0000920 PragmaHandlers->RemovePragmaHandler(NS);
Argyrios Kyrtzidisce52bb32012-01-06 00:22:09 +0000921 delete NS;
922 }
Daniel Dunbar40950802008-10-04 19:17:46 +0000923}
924
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +0000925bool Preprocessor::LexOnOffSwitch(tok::OnOffSwitch &Result) {
926 Token Tok;
927 LexUnexpandedToken(Tok);
928
929 if (Tok.isNot(tok::identifier)) {
930 Diag(Tok, diag::ext_on_off_switch_syntax);
931 return true;
932 }
933 IdentifierInfo *II = Tok.getIdentifierInfo();
934 if (II->isStr("ON"))
935 Result = tok::OOS_ON;
936 else if (II->isStr("OFF"))
937 Result = tok::OOS_OFF;
938 else if (II->isStr("DEFAULT"))
939 Result = tok::OOS_DEFAULT;
940 else {
941 Diag(Tok, diag::ext_on_off_switch_syntax);
942 return true;
943 }
944
Peter Collingbourne84021552011-02-28 02:37:51 +0000945 // Verify that this is followed by EOD.
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +0000946 LexUnexpandedToken(Tok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000947 if (Tok.isNot(tok::eod))
948 Diag(Tok, diag::ext_pragma_syntax_eod);
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +0000949 return false;
950}
951
Reid Spencer5f016e22007-07-11 17:01:13 +0000952namespace {
James Dennettb6e95b72012-06-17 03:26:26 +0000953/// PragmaOnceHandler - "\#pragma once" marks the file as atomically included.
Reid Spencer5f016e22007-07-11 17:01:13 +0000954struct PragmaOnceHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000955 PragmaOnceHandler() : PragmaHandler("once") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000956 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
957 Token &OnceTok) {
Chris Lattner35410d52009-04-14 05:07:49 +0000958 PP.CheckEndOfDirective("pragma once");
Reid Spencer5f016e22007-07-11 17:01:13 +0000959 PP.HandlePragmaOnce(OnceTok);
960 }
961};
962
James Dennettb6e95b72012-06-17 03:26:26 +0000963/// PragmaMarkHandler - "\#pragma mark ..." is ignored by the compiler, and the
Chris Lattner22434492007-12-19 19:38:36 +0000964/// rest of the line is not lexed.
965struct PragmaMarkHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000966 PragmaMarkHandler() : PragmaHandler("mark") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000967 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
968 Token &MarkTok) {
Chris Lattner22434492007-12-19 19:38:36 +0000969 PP.HandlePragmaMark();
970 }
971};
972
James Dennettb6e95b72012-06-17 03:26:26 +0000973/// PragmaPoisonHandler - "\#pragma poison x" marks x as not usable.
Reid Spencer5f016e22007-07-11 17:01:13 +0000974struct PragmaPoisonHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000975 PragmaPoisonHandler() : PragmaHandler("poison") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000976 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
977 Token &PoisonTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000978 PP.HandlePragmaPoison(PoisonTok);
979 }
980};
981
James Dennettb6e95b72012-06-17 03:26:26 +0000982/// PragmaSystemHeaderHandler - "\#pragma system_header" marks the current file
Chris Lattner22434492007-12-19 19:38:36 +0000983/// as a system header, which silences warnings in it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000984struct PragmaSystemHeaderHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000985 PragmaSystemHeaderHandler() : PragmaHandler("system_header") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000986 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
987 Token &SHToken) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000988 PP.HandlePragmaSystemHeader(SHToken);
Chris Lattner35410d52009-04-14 05:07:49 +0000989 PP.CheckEndOfDirective("pragma");
Reid Spencer5f016e22007-07-11 17:01:13 +0000990 }
991};
992struct PragmaDependencyHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000993 PragmaDependencyHandler() : PragmaHandler("dependency") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000994 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
995 Token &DepToken) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000996 PP.HandlePragmaDependency(DepToken);
997 }
998};
Mike Stump1eb44332009-09-09 15:08:12 +0000999
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001000struct PragmaDebugHandler : public PragmaHandler {
1001 PragmaDebugHandler() : PragmaHandler("__debug") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001002 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1003 Token &DepToken) {
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001004 Token Tok;
1005 PP.LexUnexpandedToken(Tok);
1006 if (Tok.isNot(tok::identifier)) {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001007 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001008 return;
1009 }
1010 IdentifierInfo *II = Tok.getIdentifierInfo();
1011
Daniel Dunbar55054132010-08-17 22:32:48 +00001012 if (II->isStr("assert")) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001013 llvm_unreachable("This is an assertion!");
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001014 } else if (II->isStr("crash")) {
David Blaikie377da4c2012-08-21 18:56:49 +00001015 LLVM_BUILTIN_TRAP;
David Blaikiee75d9cf2012-06-29 22:03:56 +00001016 } else if (II->isStr("parser_crash")) {
1017 Token Crasher;
1018 Crasher.setKind(tok::annot_pragma_parser_crash);
1019 PP.EnterToken(Crasher);
Daniel Dunbar55054132010-08-17 22:32:48 +00001020 } else if (II->isStr("llvm_fatal_error")) {
1021 llvm::report_fatal_error("#pragma clang __debug llvm_fatal_error");
1022 } else if (II->isStr("llvm_unreachable")) {
1023 llvm_unreachable("#pragma clang __debug llvm_unreachable");
1024 } else if (II->isStr("overflow_stack")) {
1025 DebugOverflowStack();
Daniel Dunbarff759a62010-08-18 23:09:23 +00001026 } else if (II->isStr("handle_crash")) {
1027 llvm::CrashRecoveryContext *CRC =llvm::CrashRecoveryContext::GetCurrent();
1028 if (CRC)
1029 CRC->HandleCrash();
Daniel Dunbar55054132010-08-17 22:32:48 +00001030 } else {
1031 PP.Diag(Tok, diag::warn_pragma_debug_unexpected_command)
1032 << II->getName();
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001033 }
1034 }
1035
Francois Pichet1066c6c2011-05-25 16:15:03 +00001036// Disable MSVC warning about runtime stack overflow.
1037#ifdef _MSC_VER
1038 #pragma warning(disable : 4717)
1039#endif
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001040 void DebugOverflowStack() {
1041 DebugOverflowStack();
1042 }
Francois Pichet1066c6c2011-05-25 16:15:03 +00001043#ifdef _MSC_VER
1044 #pragma warning(default : 4717)
1045#endif
1046
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001047};
1048
James Dennettb6e95b72012-06-17 03:26:26 +00001049/// PragmaDiagnosticHandler - e.g. '\#pragma GCC diagnostic ignored "-Wformat"'
Chris Lattneredaf8772009-04-19 23:16:58 +00001050struct PragmaDiagnosticHandler : public PragmaHandler {
Douglas Gregorc09ce122011-06-22 19:41:48 +00001051private:
1052 const char *Namespace;
Chris Lattner04ae2df2009-07-12 21:18:45 +00001053public:
Douglas Gregorc09ce122011-06-22 19:41:48 +00001054 explicit PragmaDiagnosticHandler(const char *NS) :
1055 PragmaHandler("diagnostic"), Namespace(NS) {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001056 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1057 Token &DiagToken) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001058 SourceLocation DiagLoc = DiagToken.getLocation();
Chris Lattneredaf8772009-04-19 23:16:58 +00001059 Token Tok;
1060 PP.LexUnexpandedToken(Tok);
1061 if (Tok.isNot(tok::identifier)) {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001062 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattneredaf8772009-04-19 23:16:58 +00001063 return;
1064 }
1065 IdentifierInfo *II = Tok.getIdentifierInfo();
Douglas Gregorc09ce122011-06-22 19:41:48 +00001066 PPCallbacks *Callbacks = PP.getPPCallbacks();
Mike Stump1eb44332009-09-09 15:08:12 +00001067
Chris Lattneredaf8772009-04-19 23:16:58 +00001068 diag::Mapping Map;
1069 if (II->isStr("warning"))
1070 Map = diag::MAP_WARNING;
1071 else if (II->isStr("error"))
1072 Map = diag::MAP_ERROR;
1073 else if (II->isStr("ignored"))
1074 Map = diag::MAP_IGNORE;
1075 else if (II->isStr("fatal"))
1076 Map = diag::MAP_FATAL;
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001077 else if (II->isStr("pop")) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001078 if (!PP.getDiagnostics().popMappings(DiagLoc))
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001079 PP.Diag(Tok, diag::warn_pragma_diagnostic_cannot_pop);
Douglas Gregorc09ce122011-06-22 19:41:48 +00001080 else if (Callbacks)
1081 Callbacks->PragmaDiagnosticPop(DiagLoc, Namespace);
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001082 return;
1083 } else if (II->isStr("push")) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001084 PP.getDiagnostics().pushMappings(DiagLoc);
Douglas Gregorc09ce122011-06-22 19:41:48 +00001085 if (Callbacks)
1086 Callbacks->PragmaDiagnosticPush(DiagLoc, Namespace);
Chris Lattner04ae2df2009-07-12 21:18:45 +00001087 return;
1088 } else {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001089 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattneredaf8772009-04-19 23:16:58 +00001090 return;
1091 }
Mike Stump1eb44332009-09-09 15:08:12 +00001092
Chris Lattneredaf8772009-04-19 23:16:58 +00001093 PP.LexUnexpandedToken(Tok);
1094
1095 // We need at least one string.
1096 if (Tok.isNot(tok::string_literal)) {
1097 PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
1098 return;
1099 }
Mike Stump1eb44332009-09-09 15:08:12 +00001100
Chris Lattneredaf8772009-04-19 23:16:58 +00001101 // String concatenation allows multiple strings, which can even come from
1102 // macro expansion.
1103 // "foo " "bar" "Baz"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001104 SmallVector<Token, 4> StrToks;
Chris Lattneredaf8772009-04-19 23:16:58 +00001105 while (Tok.is(tok::string_literal)) {
1106 StrToks.push_back(Tok);
1107 PP.LexUnexpandedToken(Tok);
1108 }
Mike Stump1eb44332009-09-09 15:08:12 +00001109
Peter Collingbourne84021552011-02-28 02:37:51 +00001110 if (Tok.isNot(tok::eod)) {
Chris Lattneredaf8772009-04-19 23:16:58 +00001111 PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
1112 return;
1113 }
Mike Stump1eb44332009-09-09 15:08:12 +00001114
Chris Lattneredaf8772009-04-19 23:16:58 +00001115 // Concatenate and parse the strings.
1116 StringLiteralParser Literal(&StrToks[0], StrToks.size(), PP);
Douglas Gregor5cee1192011-07-27 05:40:30 +00001117 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattneredaf8772009-04-19 23:16:58 +00001118 if (Literal.hadError)
1119 return;
1120 if (Literal.Pascal) {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001121 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattneredaf8772009-04-19 23:16:58 +00001122 return;
1123 }
Chris Lattner04ae2df2009-07-12 21:18:45 +00001124
Chris Lattner5f9e2722011-07-23 10:55:15 +00001125 StringRef WarningName(Literal.GetString());
Chris Lattneredaf8772009-04-19 23:16:58 +00001126
1127 if (WarningName.size() < 3 || WarningName[0] != '-' ||
1128 WarningName[1] != 'W') {
1129 PP.Diag(StrToks[0].getLocation(),
1130 diag::warn_pragma_diagnostic_invalid_option);
1131 return;
1132 }
Mike Stump1eb44332009-09-09 15:08:12 +00001133
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +00001134 if (PP.getDiagnostics().setDiagnosticGroupMapping(WarningName.substr(2),
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001135 Map, DiagLoc))
Chris Lattneredaf8772009-04-19 23:16:58 +00001136 PP.Diag(StrToks[0].getLocation(),
1137 diag::warn_pragma_diagnostic_unknown_warning) << WarningName;
Douglas Gregorc09ce122011-06-22 19:41:48 +00001138 else if (Callbacks)
1139 Callbacks->PragmaDiagnostic(DiagLoc, Namespace, Map, WarningName);
Chris Lattneredaf8772009-04-19 23:16:58 +00001140 }
1141};
Mike Stump1eb44332009-09-09 15:08:12 +00001142
James Dennettb6e95b72012-06-17 03:26:26 +00001143/// PragmaCommentHandler - "\#pragma comment ...".
Chris Lattner636c5ef2009-01-16 08:21:25 +00001144struct PragmaCommentHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001145 PragmaCommentHandler() : PragmaHandler("comment") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001146 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1147 Token &CommentTok) {
Chris Lattner636c5ef2009-01-16 08:21:25 +00001148 PP.HandlePragmaComment(CommentTok);
1149 }
1150};
Mike Stump1eb44332009-09-09 15:08:12 +00001151
James Dennettb6e95b72012-06-17 03:26:26 +00001152/// PragmaIncludeAliasHandler - "\#pragma include_alias("...")".
Aaron Ballman4c55c542012-03-02 22:51:54 +00001153struct PragmaIncludeAliasHandler : public PragmaHandler {
1154 PragmaIncludeAliasHandler() : PragmaHandler("include_alias") {}
1155 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1156 Token &IncludeAliasTok) {
1157 PP.HandlePragmaIncludeAlias(IncludeAliasTok);
1158 }
1159};
1160
James Dennettb6e95b72012-06-17 03:26:26 +00001161/// PragmaMessageHandler - "\#pragma message("...")".
Chris Lattnerabfe0942010-06-26 17:11:39 +00001162struct PragmaMessageHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001163 PragmaMessageHandler() : PragmaHandler("message") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001164 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1165 Token &CommentTok) {
Chris Lattnerabfe0942010-06-26 17:11:39 +00001166 PP.HandlePragmaMessage(CommentTok);
1167 }
1168};
1169
James Dennettb6e95b72012-06-17 03:26:26 +00001170/// PragmaPushMacroHandler - "\#pragma push_macro" saves the value of the
Chris Lattnerf47724b2010-08-17 15:55:45 +00001171/// macro on the top of the stack.
1172struct PragmaPushMacroHandler : public PragmaHandler {
1173 PragmaPushMacroHandler() : PragmaHandler("push_macro") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001174 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1175 Token &PushMacroTok) {
Chris Lattnerf47724b2010-08-17 15:55:45 +00001176 PP.HandlePragmaPushMacro(PushMacroTok);
1177 }
1178};
1179
1180
James Dennettb6e95b72012-06-17 03:26:26 +00001181/// PragmaPopMacroHandler - "\#pragma pop_macro" sets the value of the
Chris Lattnerf47724b2010-08-17 15:55:45 +00001182/// macro to the value on the top of the stack.
1183struct PragmaPopMacroHandler : public PragmaHandler {
1184 PragmaPopMacroHandler() : PragmaHandler("pop_macro") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001185 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1186 Token &PopMacroTok) {
Chris Lattnerf47724b2010-08-17 15:55:45 +00001187 PP.HandlePragmaPopMacro(PopMacroTok);
1188 }
1189};
1190
Chris Lattner062f2322009-04-19 21:20:35 +00001191// Pragma STDC implementations.
Chris Lattner6c5cf4a2009-04-19 21:50:08 +00001192
James Dennettb6e95b72012-06-17 03:26:26 +00001193/// PragmaSTDC_FENV_ACCESSHandler - "\#pragma STDC FENV_ACCESS ...".
Chris Lattner062f2322009-04-19 21:20:35 +00001194struct PragmaSTDC_FENV_ACCESSHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001195 PragmaSTDC_FENV_ACCESSHandler() : PragmaHandler("FENV_ACCESS") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001196 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1197 Token &Tok) {
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +00001198 tok::OnOffSwitch OOS;
1199 if (PP.LexOnOffSwitch(OOS))
1200 return;
1201 if (OOS == tok::OOS_ON)
Chris Lattner4d8aac32009-04-19 21:55:32 +00001202 PP.Diag(Tok, diag::warn_stdc_fenv_access_not_supported);
Chris Lattner062f2322009-04-19 21:20:35 +00001203 }
1204};
Mike Stump1eb44332009-09-09 15:08:12 +00001205
James Dennettb6e95b72012-06-17 03:26:26 +00001206/// PragmaSTDC_CX_LIMITED_RANGEHandler - "\#pragma STDC CX_LIMITED_RANGE ...".
Chris Lattner062f2322009-04-19 21:20:35 +00001207struct PragmaSTDC_CX_LIMITED_RANGEHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001208 PragmaSTDC_CX_LIMITED_RANGEHandler()
1209 : PragmaHandler("CX_LIMITED_RANGE") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001210 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1211 Token &Tok) {
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +00001212 tok::OnOffSwitch OOS;
1213 PP.LexOnOffSwitch(OOS);
Chris Lattner062f2322009-04-19 21:20:35 +00001214 }
1215};
Mike Stump1eb44332009-09-09 15:08:12 +00001216
James Dennettb6e95b72012-06-17 03:26:26 +00001217/// PragmaSTDC_UnknownHandler - "\#pragma STDC ...".
Chris Lattner062f2322009-04-19 21:20:35 +00001218struct PragmaSTDC_UnknownHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001219 PragmaSTDC_UnknownHandler() {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001220 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1221 Token &UnknownTok) {
Chris Lattner6c5cf4a2009-04-19 21:50:08 +00001222 // C99 6.10.6p2, unknown forms are not allowed.
Chris Lattnerf545be52009-04-19 21:25:37 +00001223 PP.Diag(UnknownTok, diag::ext_stdc_pragma_ignored);
Chris Lattner062f2322009-04-19 21:20:35 +00001224 }
1225};
Mike Stump1eb44332009-09-09 15:08:12 +00001226
John McCall8dfac0b2011-09-30 05:12:12 +00001227/// PragmaARCCFCodeAuditedHandler -
James Dennettb6e95b72012-06-17 03:26:26 +00001228/// \#pragma clang arc_cf_code_audited begin/end
John McCall8dfac0b2011-09-30 05:12:12 +00001229struct PragmaARCCFCodeAuditedHandler : public PragmaHandler {
1230 PragmaARCCFCodeAuditedHandler() : PragmaHandler("arc_cf_code_audited") {}
1231 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1232 Token &NameTok) {
1233 SourceLocation Loc = NameTok.getLocation();
1234 bool IsBegin;
1235
1236 Token Tok;
1237
1238 // Lex the 'begin' or 'end'.
1239 PP.LexUnexpandedToken(Tok);
1240 const IdentifierInfo *BeginEnd = Tok.getIdentifierInfo();
1241 if (BeginEnd && BeginEnd->isStr("begin")) {
1242 IsBegin = true;
1243 } else if (BeginEnd && BeginEnd->isStr("end")) {
1244 IsBegin = false;
1245 } else {
1246 PP.Diag(Tok.getLocation(), diag::err_pp_arc_cf_code_audited_syntax);
1247 return;
1248 }
1249
1250 // Verify that this is followed by EOD.
1251 PP.LexUnexpandedToken(Tok);
1252 if (Tok.isNot(tok::eod))
1253 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1254
1255 // The start location of the active audit.
1256 SourceLocation BeginLoc = PP.getPragmaARCCFCodeAuditedLoc();
1257
1258 // The start location we want after processing this.
1259 SourceLocation NewLoc;
1260
1261 if (IsBegin) {
1262 // Complain about attempts to re-enter an audit.
1263 if (BeginLoc.isValid()) {
1264 PP.Diag(Loc, diag::err_pp_double_begin_of_arc_cf_code_audited);
1265 PP.Diag(BeginLoc, diag::note_pragma_entered_here);
1266 }
1267 NewLoc = Loc;
1268 } else {
1269 // Complain about attempts to leave an audit that doesn't exist.
1270 if (!BeginLoc.isValid()) {
1271 PP.Diag(Loc, diag::err_pp_unmatched_end_of_arc_cf_code_audited);
1272 return;
1273 }
1274 NewLoc = SourceLocation();
1275 }
1276
1277 PP.setPragmaARCCFCodeAuditedLoc(NewLoc);
1278 }
1279};
1280
Reid Spencer5f016e22007-07-11 17:01:13 +00001281} // end anonymous namespace
1282
1283
1284/// RegisterBuiltinPragmas - Install the standard preprocessor pragmas:
James Dennettb6e95b72012-06-17 03:26:26 +00001285/// \#pragma GCC poison/system_header/dependency and \#pragma once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001286void Preprocessor::RegisterBuiltinPragmas() {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001287 AddPragmaHandler(new PragmaOnceHandler());
1288 AddPragmaHandler(new PragmaMarkHandler());
Chris Lattnerf47724b2010-08-17 15:55:45 +00001289 AddPragmaHandler(new PragmaPushMacroHandler());
1290 AddPragmaHandler(new PragmaPopMacroHandler());
Michael J. Spencer301669b2010-09-27 06:19:02 +00001291 AddPragmaHandler(new PragmaMessageHandler());
Mike Stump1eb44332009-09-09 15:08:12 +00001292
Chris Lattnere8fa06e2009-05-12 18:21:11 +00001293 // #pragma GCC ...
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001294 AddPragmaHandler("GCC", new PragmaPoisonHandler());
1295 AddPragmaHandler("GCC", new PragmaSystemHeaderHandler());
1296 AddPragmaHandler("GCC", new PragmaDependencyHandler());
Douglas Gregorc09ce122011-06-22 19:41:48 +00001297 AddPragmaHandler("GCC", new PragmaDiagnosticHandler("GCC"));
Chris Lattnere8fa06e2009-05-12 18:21:11 +00001298 // #pragma clang ...
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001299 AddPragmaHandler("clang", new PragmaPoisonHandler());
1300 AddPragmaHandler("clang", new PragmaSystemHeaderHandler());
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001301 AddPragmaHandler("clang", new PragmaDebugHandler());
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001302 AddPragmaHandler("clang", new PragmaDependencyHandler());
Douglas Gregorc09ce122011-06-22 19:41:48 +00001303 AddPragmaHandler("clang", new PragmaDiagnosticHandler("clang"));
John McCall8dfac0b2011-09-30 05:12:12 +00001304 AddPragmaHandler("clang", new PragmaARCCFCodeAuditedHandler());
Chris Lattnere8fa06e2009-05-12 18:21:11 +00001305
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001306 AddPragmaHandler("STDC", new PragmaSTDC_FENV_ACCESSHandler());
1307 AddPragmaHandler("STDC", new PragmaSTDC_CX_LIMITED_RANGEHandler());
Chris Lattner062f2322009-04-19 21:20:35 +00001308 AddPragmaHandler("STDC", new PragmaSTDC_UnknownHandler());
Mike Stump1eb44332009-09-09 15:08:12 +00001309
Chris Lattner636c5ef2009-01-16 08:21:25 +00001310 // MS extensions.
David Blaikie4e4d0842012-03-11 07:00:24 +00001311 if (LangOpts.MicrosoftExt) {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001312 AddPragmaHandler(new PragmaCommentHandler());
Aaron Ballman4c55c542012-03-02 22:51:54 +00001313 AddPragmaHandler(new PragmaIncludeAliasHandler());
Chris Lattnerabfe0942010-06-26 17:11:39 +00001314 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001315}