blob: c9cc4adf40190058963ea56f5ba0081e8cabd851 [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()) {
736 // Release the MacroInfo currently associated with IdentInfo.
737 MacroInfo *CurrentMI = getMacroInfo(IdentInfo);
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000738 if (CurrentMI) {
739 if (CurrentMI->isWarnIfUnused())
740 WarnUnusedMacroLocs.erase(CurrentMI->getDefinitionLoc());
741 ReleaseMacroInfo(CurrentMI);
742 }
Chris Lattnerf47724b2010-08-17 15:55:45 +0000743
744 // Get the MacroInfo we want to reinstall.
745 MacroInfo *MacroToReInstall = iter->second.back();
746
747 // Reinstall the previously pushed macro.
748 setMacroInfo(IdentInfo, MacroToReInstall);
749
750 // Pop PragmaPushMacroInfo stack.
751 iter->second.pop_back();
752 if (iter->second.size() == 0)
753 PragmaPushMacroInfo.erase(iter);
754 } else {
755 Diag(MessageLoc, diag::warn_pragma_pop_macro_no_push)
756 << IdentInfo->getName();
757 }
758}
Reid Spencer5f016e22007-07-11 17:01:13 +0000759
Aaron Ballman4c55c542012-03-02 22:51:54 +0000760void Preprocessor::HandlePragmaIncludeAlias(Token &Tok) {
761 // We will either get a quoted filename or a bracketed filename, and we
762 // have to track which we got. The first filename is the source name,
763 // and the second name is the mapped filename. If the first is quoted,
764 // the second must be as well (cannot mix and match quotes and brackets).
Aaron Ballman4c55c542012-03-02 22:51:54 +0000765
766 // Get the open paren
767 Lex(Tok);
768 if (Tok.isNot(tok::l_paren)) {
769 Diag(Tok, diag::warn_pragma_include_alias_expected) << "(";
770 return;
771 }
772
773 // We expect either a quoted string literal, or a bracketed name
774 Token SourceFilenameTok;
775 CurPPLexer->LexIncludeFilename(SourceFilenameTok);
776 if (SourceFilenameTok.is(tok::eod)) {
777 // The diagnostic has already been handled
778 return;
779 }
780
781 StringRef SourceFileName;
782 SmallString<128> FileNameBuffer;
783 if (SourceFilenameTok.is(tok::string_literal) ||
784 SourceFilenameTok.is(tok::angle_string_literal)) {
785 SourceFileName = getSpelling(SourceFilenameTok, FileNameBuffer);
786 } else if (SourceFilenameTok.is(tok::less)) {
787 // This could be a path instead of just a name
788 FileNameBuffer.push_back('<');
789 SourceLocation End;
790 if (ConcatenateIncludeName(FileNameBuffer, End))
791 return; // Diagnostic already emitted
792 SourceFileName = FileNameBuffer.str();
793 } else {
794 Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
795 return;
796 }
797 FileNameBuffer.clear();
798
799 // Now we expect a comma, followed by another include name
800 Lex(Tok);
801 if (Tok.isNot(tok::comma)) {
802 Diag(Tok, diag::warn_pragma_include_alias_expected) << ",";
803 return;
804 }
805
806 Token ReplaceFilenameTok;
807 CurPPLexer->LexIncludeFilename(ReplaceFilenameTok);
808 if (ReplaceFilenameTok.is(tok::eod)) {
809 // The diagnostic has already been handled
810 return;
811 }
812
813 StringRef ReplaceFileName;
814 if (ReplaceFilenameTok.is(tok::string_literal) ||
815 ReplaceFilenameTok.is(tok::angle_string_literal)) {
816 ReplaceFileName = getSpelling(ReplaceFilenameTok, FileNameBuffer);
817 } else if (ReplaceFilenameTok.is(tok::less)) {
818 // This could be a path instead of just a name
819 FileNameBuffer.push_back('<');
820 SourceLocation End;
821 if (ConcatenateIncludeName(FileNameBuffer, End))
822 return; // Diagnostic already emitted
823 ReplaceFileName = FileNameBuffer.str();
824 } else {
825 Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
826 return;
827 }
828
829 // Finally, we expect the closing paren
830 Lex(Tok);
831 if (Tok.isNot(tok::r_paren)) {
832 Diag(Tok, diag::warn_pragma_include_alias_expected) << ")";
833 return;
834 }
835
836 // Now that we have the source and target filenames, we need to make sure
837 // they're both of the same type (angled vs non-angled)
838 StringRef OriginalSource = SourceFileName;
839
840 bool SourceIsAngled =
841 GetIncludeFilenameSpelling(SourceFilenameTok.getLocation(),
842 SourceFileName);
843 bool ReplaceIsAngled =
844 GetIncludeFilenameSpelling(ReplaceFilenameTok.getLocation(),
845 ReplaceFileName);
846 if (!SourceFileName.empty() && !ReplaceFileName.empty() &&
847 (SourceIsAngled != ReplaceIsAngled)) {
848 unsigned int DiagID;
849 if (SourceIsAngled)
850 DiagID = diag::warn_pragma_include_alias_mismatch_angle;
851 else
852 DiagID = diag::warn_pragma_include_alias_mismatch_quote;
853
854 Diag(SourceFilenameTok.getLocation(), DiagID)
855 << SourceFileName
856 << ReplaceFileName;
857
858 return;
859 }
860
861 // Now we can let the include handler know about this mapping
862 getHeaderSearchInfo().AddIncludeAlias(OriginalSource, ReplaceFileName);
863}
864
Reid Spencer5f016e22007-07-11 17:01:13 +0000865/// AddPragmaHandler - Add the specified pragma handler to the preprocessor.
866/// If 'Namespace' is non-null, then it is a token required to exist on the
867/// pragma line before the pragma string starts, e.g. "STDC" or "GCC".
Chris Lattner5f9e2722011-07-23 10:55:15 +0000868void Preprocessor::AddPragmaHandler(StringRef Namespace,
Reid Spencer5f016e22007-07-11 17:01:13 +0000869 PragmaHandler *Handler) {
870 PragmaNamespace *InsertNS = PragmaHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +0000871
Reid Spencer5f016e22007-07-11 17:01:13 +0000872 // If this is specified to be in a namespace, step down into it.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000873 if (!Namespace.empty()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000874 // If there is already a pragma handler with the name of this namespace,
875 // we either have an error (directive with the same name as a namespace) or
876 // we already have the namespace to insert into.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000877 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 InsertNS = Existing->getIfNamespace();
879 assert(InsertNS != 0 && "Cannot have a pragma namespace and pragma"
880 " handler with the same name!");
881 } else {
882 // Otherwise, this namespace doesn't exist yet, create and insert the
883 // handler for it.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000884 InsertNS = new PragmaNamespace(Namespace);
Reid Spencer5f016e22007-07-11 17:01:13 +0000885 PragmaHandlers->AddPragma(InsertNS);
886 }
887 }
Mike Stump1eb44332009-09-09 15:08:12 +0000888
Reid Spencer5f016e22007-07-11 17:01:13 +0000889 // Check to make sure we don't already have a pragma for this identifier.
890 assert(!InsertNS->FindHandler(Handler->getName()) &&
891 "Pragma handler already exists for this identifier!");
892 InsertNS->AddPragma(Handler);
893}
894
Daniel Dunbar40950802008-10-04 19:17:46 +0000895/// RemovePragmaHandler - Remove the specific pragma handler from the
896/// preprocessor. If \arg Namespace is non-null, then it should be the
897/// namespace that \arg Handler was added to. It is an error to remove
898/// a handler that has not been registered.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000899void Preprocessor::RemovePragmaHandler(StringRef Namespace,
Daniel Dunbar40950802008-10-04 19:17:46 +0000900 PragmaHandler *Handler) {
901 PragmaNamespace *NS = PragmaHandlers;
Mike Stump1eb44332009-09-09 15:08:12 +0000902
Daniel Dunbar40950802008-10-04 19:17:46 +0000903 // If this is specified to be in a namespace, step down into it.
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000904 if (!Namespace.empty()) {
905 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
Daniel Dunbar40950802008-10-04 19:17:46 +0000906 assert(Existing && "Namespace containing handler does not exist!");
907
908 NS = Existing->getIfNamespace();
909 assert(NS && "Invalid namespace, registered as a regular pragma handler!");
910 }
911
912 NS->RemovePragmaHandler(Handler);
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Daniel Dunbar40950802008-10-04 19:17:46 +0000914 // If this is a non-default namespace and it is now empty, remove
915 // it.
Argyrios Kyrtzidisce52bb32012-01-06 00:22:09 +0000916 if (NS != PragmaHandlers && NS->IsEmpty()) {
Daniel Dunbar40950802008-10-04 19:17:46 +0000917 PragmaHandlers->RemovePragmaHandler(NS);
Argyrios Kyrtzidisce52bb32012-01-06 00:22:09 +0000918 delete NS;
919 }
Daniel Dunbar40950802008-10-04 19:17:46 +0000920}
921
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +0000922bool Preprocessor::LexOnOffSwitch(tok::OnOffSwitch &Result) {
923 Token Tok;
924 LexUnexpandedToken(Tok);
925
926 if (Tok.isNot(tok::identifier)) {
927 Diag(Tok, diag::ext_on_off_switch_syntax);
928 return true;
929 }
930 IdentifierInfo *II = Tok.getIdentifierInfo();
931 if (II->isStr("ON"))
932 Result = tok::OOS_ON;
933 else if (II->isStr("OFF"))
934 Result = tok::OOS_OFF;
935 else if (II->isStr("DEFAULT"))
936 Result = tok::OOS_DEFAULT;
937 else {
938 Diag(Tok, diag::ext_on_off_switch_syntax);
939 return true;
940 }
941
Peter Collingbourne84021552011-02-28 02:37:51 +0000942 // Verify that this is followed by EOD.
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +0000943 LexUnexpandedToken(Tok);
Peter Collingbourne84021552011-02-28 02:37:51 +0000944 if (Tok.isNot(tok::eod))
945 Diag(Tok, diag::ext_pragma_syntax_eod);
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +0000946 return false;
947}
948
Reid Spencer5f016e22007-07-11 17:01:13 +0000949namespace {
James Dennettb6e95b72012-06-17 03:26:26 +0000950/// PragmaOnceHandler - "\#pragma once" marks the file as atomically included.
Reid Spencer5f016e22007-07-11 17:01:13 +0000951struct PragmaOnceHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000952 PragmaOnceHandler() : PragmaHandler("once") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000953 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
954 Token &OnceTok) {
Chris Lattner35410d52009-04-14 05:07:49 +0000955 PP.CheckEndOfDirective("pragma once");
Reid Spencer5f016e22007-07-11 17:01:13 +0000956 PP.HandlePragmaOnce(OnceTok);
957 }
958};
959
James Dennettb6e95b72012-06-17 03:26:26 +0000960/// PragmaMarkHandler - "\#pragma mark ..." is ignored by the compiler, and the
Chris Lattner22434492007-12-19 19:38:36 +0000961/// rest of the line is not lexed.
962struct PragmaMarkHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000963 PragmaMarkHandler() : PragmaHandler("mark") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000964 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
965 Token &MarkTok) {
Chris Lattner22434492007-12-19 19:38:36 +0000966 PP.HandlePragmaMark();
967 }
968};
969
James Dennettb6e95b72012-06-17 03:26:26 +0000970/// PragmaPoisonHandler - "\#pragma poison x" marks x as not usable.
Reid Spencer5f016e22007-07-11 17:01:13 +0000971struct PragmaPoisonHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000972 PragmaPoisonHandler() : PragmaHandler("poison") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000973 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
974 Token &PoisonTok) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000975 PP.HandlePragmaPoison(PoisonTok);
976 }
977};
978
James Dennettb6e95b72012-06-17 03:26:26 +0000979/// PragmaSystemHeaderHandler - "\#pragma system_header" marks the current file
Chris Lattner22434492007-12-19 19:38:36 +0000980/// as a system header, which silences warnings in it.
Reid Spencer5f016e22007-07-11 17:01:13 +0000981struct PragmaSystemHeaderHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000982 PragmaSystemHeaderHandler() : PragmaHandler("system_header") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000983 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
984 Token &SHToken) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000985 PP.HandlePragmaSystemHeader(SHToken);
Chris Lattner35410d52009-04-14 05:07:49 +0000986 PP.CheckEndOfDirective("pragma");
Reid Spencer5f016e22007-07-11 17:01:13 +0000987 }
988};
989struct PragmaDependencyHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +0000990 PragmaDependencyHandler() : PragmaHandler("dependency") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000991 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
992 Token &DepToken) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000993 PP.HandlePragmaDependency(DepToken);
994 }
995};
Mike Stump1eb44332009-09-09 15:08:12 +0000996
Daniel Dunbarabf7b722010-07-28 15:40:33 +0000997struct PragmaDebugHandler : public PragmaHandler {
998 PragmaDebugHandler() : PragmaHandler("__debug") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +0000999 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1000 Token &DepToken) {
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001001 Token Tok;
1002 PP.LexUnexpandedToken(Tok);
1003 if (Tok.isNot(tok::identifier)) {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001004 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001005 return;
1006 }
1007 IdentifierInfo *II = Tok.getIdentifierInfo();
1008
Daniel Dunbar55054132010-08-17 22:32:48 +00001009 if (II->isStr("assert")) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001010 llvm_unreachable("This is an assertion!");
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001011 } else if (II->isStr("crash")) {
Daniel Dunbar55054132010-08-17 22:32:48 +00001012 *(volatile int*) 0x11 = 0;
David Blaikiee75d9cf2012-06-29 22:03:56 +00001013 } else if (II->isStr("parser_crash")) {
1014 Token Crasher;
1015 Crasher.setKind(tok::annot_pragma_parser_crash);
1016 PP.EnterToken(Crasher);
Daniel Dunbar55054132010-08-17 22:32:48 +00001017 } else if (II->isStr("llvm_fatal_error")) {
1018 llvm::report_fatal_error("#pragma clang __debug llvm_fatal_error");
1019 } else if (II->isStr("llvm_unreachable")) {
1020 llvm_unreachable("#pragma clang __debug llvm_unreachable");
1021 } else if (II->isStr("overflow_stack")) {
1022 DebugOverflowStack();
Daniel Dunbarff759a62010-08-18 23:09:23 +00001023 } else if (II->isStr("handle_crash")) {
1024 llvm::CrashRecoveryContext *CRC =llvm::CrashRecoveryContext::GetCurrent();
1025 if (CRC)
1026 CRC->HandleCrash();
Daniel Dunbar55054132010-08-17 22:32:48 +00001027 } else {
1028 PP.Diag(Tok, diag::warn_pragma_debug_unexpected_command)
1029 << II->getName();
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001030 }
1031 }
1032
Francois Pichet1066c6c2011-05-25 16:15:03 +00001033// Disable MSVC warning about runtime stack overflow.
1034#ifdef _MSC_VER
1035 #pragma warning(disable : 4717)
1036#endif
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001037 void DebugOverflowStack() {
1038 DebugOverflowStack();
1039 }
Francois Pichet1066c6c2011-05-25 16:15:03 +00001040#ifdef _MSC_VER
1041 #pragma warning(default : 4717)
1042#endif
1043
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001044};
1045
James Dennettb6e95b72012-06-17 03:26:26 +00001046/// PragmaDiagnosticHandler - e.g. '\#pragma GCC diagnostic ignored "-Wformat"'
Chris Lattneredaf8772009-04-19 23:16:58 +00001047struct PragmaDiagnosticHandler : public PragmaHandler {
Douglas Gregorc09ce122011-06-22 19:41:48 +00001048private:
1049 const char *Namespace;
Chris Lattner04ae2df2009-07-12 21:18:45 +00001050public:
Douglas Gregorc09ce122011-06-22 19:41:48 +00001051 explicit PragmaDiagnosticHandler(const char *NS) :
1052 PragmaHandler("diagnostic"), Namespace(NS) {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001053 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1054 Token &DiagToken) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001055 SourceLocation DiagLoc = DiagToken.getLocation();
Chris Lattneredaf8772009-04-19 23:16:58 +00001056 Token Tok;
1057 PP.LexUnexpandedToken(Tok);
1058 if (Tok.isNot(tok::identifier)) {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001059 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattneredaf8772009-04-19 23:16:58 +00001060 return;
1061 }
1062 IdentifierInfo *II = Tok.getIdentifierInfo();
Douglas Gregorc09ce122011-06-22 19:41:48 +00001063 PPCallbacks *Callbacks = PP.getPPCallbacks();
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Chris Lattneredaf8772009-04-19 23:16:58 +00001065 diag::Mapping Map;
1066 if (II->isStr("warning"))
1067 Map = diag::MAP_WARNING;
1068 else if (II->isStr("error"))
1069 Map = diag::MAP_ERROR;
1070 else if (II->isStr("ignored"))
1071 Map = diag::MAP_IGNORE;
1072 else if (II->isStr("fatal"))
1073 Map = diag::MAP_FATAL;
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001074 else if (II->isStr("pop")) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001075 if (!PP.getDiagnostics().popMappings(DiagLoc))
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001076 PP.Diag(Tok, diag::warn_pragma_diagnostic_cannot_pop);
Douglas Gregorc09ce122011-06-22 19:41:48 +00001077 else if (Callbacks)
1078 Callbacks->PragmaDiagnosticPop(DiagLoc, Namespace);
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001079 return;
1080 } else if (II->isStr("push")) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001081 PP.getDiagnostics().pushMappings(DiagLoc);
Douglas Gregorc09ce122011-06-22 19:41:48 +00001082 if (Callbacks)
1083 Callbacks->PragmaDiagnosticPush(DiagLoc, Namespace);
Chris Lattner04ae2df2009-07-12 21:18:45 +00001084 return;
1085 } else {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001086 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattneredaf8772009-04-19 23:16:58 +00001087 return;
1088 }
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Chris Lattneredaf8772009-04-19 23:16:58 +00001090 PP.LexUnexpandedToken(Tok);
1091
1092 // We need at least one string.
1093 if (Tok.isNot(tok::string_literal)) {
1094 PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
1095 return;
1096 }
Mike Stump1eb44332009-09-09 15:08:12 +00001097
Chris Lattneredaf8772009-04-19 23:16:58 +00001098 // String concatenation allows multiple strings, which can even come from
1099 // macro expansion.
1100 // "foo " "bar" "Baz"
Chris Lattner5f9e2722011-07-23 10:55:15 +00001101 SmallVector<Token, 4> StrToks;
Chris Lattneredaf8772009-04-19 23:16:58 +00001102 while (Tok.is(tok::string_literal)) {
1103 StrToks.push_back(Tok);
1104 PP.LexUnexpandedToken(Tok);
1105 }
Mike Stump1eb44332009-09-09 15:08:12 +00001106
Peter Collingbourne84021552011-02-28 02:37:51 +00001107 if (Tok.isNot(tok::eod)) {
Chris Lattneredaf8772009-04-19 23:16:58 +00001108 PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
1109 return;
1110 }
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Chris Lattneredaf8772009-04-19 23:16:58 +00001112 // Concatenate and parse the strings.
1113 StringLiteralParser Literal(&StrToks[0], StrToks.size(), PP);
Douglas Gregor5cee1192011-07-27 05:40:30 +00001114 assert(Literal.isAscii() && "Didn't allow wide strings in");
Chris Lattneredaf8772009-04-19 23:16:58 +00001115 if (Literal.hadError)
1116 return;
1117 if (Literal.Pascal) {
Douglas Gregor6493a4d2010-08-30 15:15:34 +00001118 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattneredaf8772009-04-19 23:16:58 +00001119 return;
1120 }
Chris Lattner04ae2df2009-07-12 21:18:45 +00001121
Chris Lattner5f9e2722011-07-23 10:55:15 +00001122 StringRef WarningName(Literal.GetString());
Chris Lattneredaf8772009-04-19 23:16:58 +00001123
1124 if (WarningName.size() < 3 || WarningName[0] != '-' ||
1125 WarningName[1] != 'W') {
1126 PP.Diag(StrToks[0].getLocation(),
1127 diag::warn_pragma_diagnostic_invalid_option);
1128 return;
1129 }
Mike Stump1eb44332009-09-09 15:08:12 +00001130
Argyrios Kyrtzidis477aab62011-05-25 05:05:01 +00001131 if (PP.getDiagnostics().setDiagnosticGroupMapping(WarningName.substr(2),
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00001132 Map, DiagLoc))
Chris Lattneredaf8772009-04-19 23:16:58 +00001133 PP.Diag(StrToks[0].getLocation(),
1134 diag::warn_pragma_diagnostic_unknown_warning) << WarningName;
Douglas Gregorc09ce122011-06-22 19:41:48 +00001135 else if (Callbacks)
1136 Callbacks->PragmaDiagnostic(DiagLoc, Namespace, Map, WarningName);
Chris Lattneredaf8772009-04-19 23:16:58 +00001137 }
1138};
Mike Stump1eb44332009-09-09 15:08:12 +00001139
James Dennettb6e95b72012-06-17 03:26:26 +00001140/// PragmaCommentHandler - "\#pragma comment ...".
Chris Lattner636c5ef2009-01-16 08:21:25 +00001141struct PragmaCommentHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001142 PragmaCommentHandler() : PragmaHandler("comment") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001143 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1144 Token &CommentTok) {
Chris Lattner636c5ef2009-01-16 08:21:25 +00001145 PP.HandlePragmaComment(CommentTok);
1146 }
1147};
Mike Stump1eb44332009-09-09 15:08:12 +00001148
James Dennettb6e95b72012-06-17 03:26:26 +00001149/// PragmaIncludeAliasHandler - "\#pragma include_alias("...")".
Aaron Ballman4c55c542012-03-02 22:51:54 +00001150struct PragmaIncludeAliasHandler : public PragmaHandler {
1151 PragmaIncludeAliasHandler() : PragmaHandler("include_alias") {}
1152 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1153 Token &IncludeAliasTok) {
1154 PP.HandlePragmaIncludeAlias(IncludeAliasTok);
1155 }
1156};
1157
James Dennettb6e95b72012-06-17 03:26:26 +00001158/// PragmaMessageHandler - "\#pragma message("...")".
Chris Lattnerabfe0942010-06-26 17:11:39 +00001159struct PragmaMessageHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001160 PragmaMessageHandler() : PragmaHandler("message") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001161 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1162 Token &CommentTok) {
Chris Lattnerabfe0942010-06-26 17:11:39 +00001163 PP.HandlePragmaMessage(CommentTok);
1164 }
1165};
1166
James Dennettb6e95b72012-06-17 03:26:26 +00001167/// PragmaPushMacroHandler - "\#pragma push_macro" saves the value of the
Chris Lattnerf47724b2010-08-17 15:55:45 +00001168/// macro on the top of the stack.
1169struct PragmaPushMacroHandler : public PragmaHandler {
1170 PragmaPushMacroHandler() : PragmaHandler("push_macro") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001171 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1172 Token &PushMacroTok) {
Chris Lattnerf47724b2010-08-17 15:55:45 +00001173 PP.HandlePragmaPushMacro(PushMacroTok);
1174 }
1175};
1176
1177
James Dennettb6e95b72012-06-17 03:26:26 +00001178/// PragmaPopMacroHandler - "\#pragma pop_macro" sets the value of the
Chris Lattnerf47724b2010-08-17 15:55:45 +00001179/// macro to the value on the top of the stack.
1180struct PragmaPopMacroHandler : public PragmaHandler {
1181 PragmaPopMacroHandler() : PragmaHandler("pop_macro") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001182 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1183 Token &PopMacroTok) {
Chris Lattnerf47724b2010-08-17 15:55:45 +00001184 PP.HandlePragmaPopMacro(PopMacroTok);
1185 }
1186};
1187
Chris Lattner062f2322009-04-19 21:20:35 +00001188// Pragma STDC implementations.
Chris Lattner6c5cf4a2009-04-19 21:50:08 +00001189
James Dennettb6e95b72012-06-17 03:26:26 +00001190/// PragmaSTDC_FENV_ACCESSHandler - "\#pragma STDC FENV_ACCESS ...".
Chris Lattner062f2322009-04-19 21:20:35 +00001191struct PragmaSTDC_FENV_ACCESSHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001192 PragmaSTDC_FENV_ACCESSHandler() : PragmaHandler("FENV_ACCESS") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001193 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1194 Token &Tok) {
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +00001195 tok::OnOffSwitch OOS;
1196 if (PP.LexOnOffSwitch(OOS))
1197 return;
1198 if (OOS == tok::OOS_ON)
Chris Lattner4d8aac32009-04-19 21:55:32 +00001199 PP.Diag(Tok, diag::warn_stdc_fenv_access_not_supported);
Chris Lattner062f2322009-04-19 21:20:35 +00001200 }
1201};
Mike Stump1eb44332009-09-09 15:08:12 +00001202
James Dennettb6e95b72012-06-17 03:26:26 +00001203/// PragmaSTDC_CX_LIMITED_RANGEHandler - "\#pragma STDC CX_LIMITED_RANGE ...".
Chris Lattner062f2322009-04-19 21:20:35 +00001204struct PragmaSTDC_CX_LIMITED_RANGEHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001205 PragmaSTDC_CX_LIMITED_RANGEHandler()
1206 : PragmaHandler("CX_LIMITED_RANGE") {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001207 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1208 Token &Tok) {
Peter Collingbourne9d3f5f72011-02-14 01:42:24 +00001209 tok::OnOffSwitch OOS;
1210 PP.LexOnOffSwitch(OOS);
Chris Lattner062f2322009-04-19 21:20:35 +00001211 }
1212};
Mike Stump1eb44332009-09-09 15:08:12 +00001213
James Dennettb6e95b72012-06-17 03:26:26 +00001214/// PragmaSTDC_UnknownHandler - "\#pragma STDC ...".
Chris Lattner062f2322009-04-19 21:20:35 +00001215struct PragmaSTDC_UnknownHandler : public PragmaHandler {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001216 PragmaSTDC_UnknownHandler() {}
Douglas Gregor80c60f72010-09-09 22:45:38 +00001217 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1218 Token &UnknownTok) {
Chris Lattner6c5cf4a2009-04-19 21:50:08 +00001219 // C99 6.10.6p2, unknown forms are not allowed.
Chris Lattnerf545be52009-04-19 21:25:37 +00001220 PP.Diag(UnknownTok, diag::ext_stdc_pragma_ignored);
Chris Lattner062f2322009-04-19 21:20:35 +00001221 }
1222};
Mike Stump1eb44332009-09-09 15:08:12 +00001223
John McCall8dfac0b2011-09-30 05:12:12 +00001224/// PragmaARCCFCodeAuditedHandler -
James Dennettb6e95b72012-06-17 03:26:26 +00001225/// \#pragma clang arc_cf_code_audited begin/end
John McCall8dfac0b2011-09-30 05:12:12 +00001226struct PragmaARCCFCodeAuditedHandler : public PragmaHandler {
1227 PragmaARCCFCodeAuditedHandler() : PragmaHandler("arc_cf_code_audited") {}
1228 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1229 Token &NameTok) {
1230 SourceLocation Loc = NameTok.getLocation();
1231 bool IsBegin;
1232
1233 Token Tok;
1234
1235 // Lex the 'begin' or 'end'.
1236 PP.LexUnexpandedToken(Tok);
1237 const IdentifierInfo *BeginEnd = Tok.getIdentifierInfo();
1238 if (BeginEnd && BeginEnd->isStr("begin")) {
1239 IsBegin = true;
1240 } else if (BeginEnd && BeginEnd->isStr("end")) {
1241 IsBegin = false;
1242 } else {
1243 PP.Diag(Tok.getLocation(), diag::err_pp_arc_cf_code_audited_syntax);
1244 return;
1245 }
1246
1247 // Verify that this is followed by EOD.
1248 PP.LexUnexpandedToken(Tok);
1249 if (Tok.isNot(tok::eod))
1250 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1251
1252 // The start location of the active audit.
1253 SourceLocation BeginLoc = PP.getPragmaARCCFCodeAuditedLoc();
1254
1255 // The start location we want after processing this.
1256 SourceLocation NewLoc;
1257
1258 if (IsBegin) {
1259 // Complain about attempts to re-enter an audit.
1260 if (BeginLoc.isValid()) {
1261 PP.Diag(Loc, diag::err_pp_double_begin_of_arc_cf_code_audited);
1262 PP.Diag(BeginLoc, diag::note_pragma_entered_here);
1263 }
1264 NewLoc = Loc;
1265 } else {
1266 // Complain about attempts to leave an audit that doesn't exist.
1267 if (!BeginLoc.isValid()) {
1268 PP.Diag(Loc, diag::err_pp_unmatched_end_of_arc_cf_code_audited);
1269 return;
1270 }
1271 NewLoc = SourceLocation();
1272 }
1273
1274 PP.setPragmaARCCFCodeAuditedLoc(NewLoc);
1275 }
1276};
1277
Reid Spencer5f016e22007-07-11 17:01:13 +00001278} // end anonymous namespace
1279
1280
1281/// RegisterBuiltinPragmas - Install the standard preprocessor pragmas:
James Dennettb6e95b72012-06-17 03:26:26 +00001282/// \#pragma GCC poison/system_header/dependency and \#pragma once.
Reid Spencer5f016e22007-07-11 17:01:13 +00001283void Preprocessor::RegisterBuiltinPragmas() {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001284 AddPragmaHandler(new PragmaOnceHandler());
1285 AddPragmaHandler(new PragmaMarkHandler());
Chris Lattnerf47724b2010-08-17 15:55:45 +00001286 AddPragmaHandler(new PragmaPushMacroHandler());
1287 AddPragmaHandler(new PragmaPopMacroHandler());
Michael J. Spencer301669b2010-09-27 06:19:02 +00001288 AddPragmaHandler(new PragmaMessageHandler());
Mike Stump1eb44332009-09-09 15:08:12 +00001289
Chris Lattnere8fa06e2009-05-12 18:21:11 +00001290 // #pragma GCC ...
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001291 AddPragmaHandler("GCC", new PragmaPoisonHandler());
1292 AddPragmaHandler("GCC", new PragmaSystemHeaderHandler());
1293 AddPragmaHandler("GCC", new PragmaDependencyHandler());
Douglas Gregorc09ce122011-06-22 19:41:48 +00001294 AddPragmaHandler("GCC", new PragmaDiagnosticHandler("GCC"));
Chris Lattnere8fa06e2009-05-12 18:21:11 +00001295 // #pragma clang ...
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001296 AddPragmaHandler("clang", new PragmaPoisonHandler());
1297 AddPragmaHandler("clang", new PragmaSystemHeaderHandler());
Daniel Dunbarabf7b722010-07-28 15:40:33 +00001298 AddPragmaHandler("clang", new PragmaDebugHandler());
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001299 AddPragmaHandler("clang", new PragmaDependencyHandler());
Douglas Gregorc09ce122011-06-22 19:41:48 +00001300 AddPragmaHandler("clang", new PragmaDiagnosticHandler("clang"));
John McCall8dfac0b2011-09-30 05:12:12 +00001301 AddPragmaHandler("clang", new PragmaARCCFCodeAuditedHandler());
Chris Lattnere8fa06e2009-05-12 18:21:11 +00001302
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001303 AddPragmaHandler("STDC", new PragmaSTDC_FENV_ACCESSHandler());
1304 AddPragmaHandler("STDC", new PragmaSTDC_CX_LIMITED_RANGEHandler());
Chris Lattner062f2322009-04-19 21:20:35 +00001305 AddPragmaHandler("STDC", new PragmaSTDC_UnknownHandler());
Mike Stump1eb44332009-09-09 15:08:12 +00001306
Chris Lattner636c5ef2009-01-16 08:21:25 +00001307 // MS extensions.
David Blaikie4e4d0842012-03-11 07:00:24 +00001308 if (LangOpts.MicrosoftExt) {
Argyrios Kyrtzidis9b36c3f2010-07-13 09:07:17 +00001309 AddPragmaHandler(new PragmaCommentHandler());
Aaron Ballman4c55c542012-03-02 22:51:54 +00001310 AddPragmaHandler(new PragmaIncludeAliasHandler());
Chris Lattnerabfe0942010-06-26 17:11:39 +00001311 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001312}