blob: 99d56182c1bb90f552065ce8d28efe51512d79da [file] [log] [blame]
Chris Lattnerb8761832006-06-24 21:31:03 +00001//===--- Pragma.cpp - Pragma registration and handling --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb8761832006-06-24 21:31:03 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerb694ba72006-07-02 22:41:36 +000010// This file implements the PragmaHandler/PragmaTable interfaces and implements
11// pragma related methods of the Preprocessor class.
Chris Lattnerb8761832006-06-24 21:31:03 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Lex/Pragma.h"
Chris Lattnerb694ba72006-07-02 22:41:36 +000016#include "clang/Basic/FileManager.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000017#include "clang/Basic/IdentifierTable.h"
18#include "clang/Basic/SourceLocation.h"
Chris Lattnerb694ba72006-07-02 22:41:36 +000019#include "clang/Basic/SourceManager.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000020#include "clang/Basic/TokenKinds.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000021#include "clang/Lex/HeaderSearch.h"
22#include "clang/Lex/LexDiagnostic.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000023#include "clang/Lex/MacroInfo.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000024#include "clang/Lex/PPCallbacks.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000025#include "clang/Lex/Preprocessor.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000026#include "clang/Lex/PreprocessorLexer.h"
27#include "clang/Lex/PTHLexer.h"
28#include "clang/Lex/Token.h"
29#include "clang/Lex/TokenLexer.h"
30#include "llvm/ADT/ArrayRef.h"
31#include "llvm/ADT/DenseMap.h"
32#include "llvm/ADT/SmallString.h"
33#include "llvm/ADT/SmallVector.h"
Reid Kleckner881dff32013-09-13 22:00:30 +000034#include "llvm/ADT/STLExtras.h"
35#include "llvm/ADT/StringSwitch.h"
Daniel Dunbar211a7872010-08-18 23:09:23 +000036#include "llvm/Support/CrashRecoveryContext.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000037#include "llvm/Support/Compiler.h"
Daniel Dunbarf2cf3292010-08-17 22:32:48 +000038#include "llvm/Support/ErrorHandling.h"
Douglas Gregorc6d5edd2009-07-02 17:08:52 +000039#include <algorithm>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000040#include <cassert>
41#include <cstdint>
42#include <limits>
43#include <string>
44#include <vector>
45
Chris Lattnerb8761832006-06-24 21:31:03 +000046using namespace clang;
47
48// Out-of-line destructor to provide a home for the class.
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +000049PragmaHandler::~PragmaHandler() {
50}
Chris Lattnerb8761832006-06-24 21:31:03 +000051
Chris Lattner2e155302006-07-03 05:34:41 +000052//===----------------------------------------------------------------------===//
Daniel Dunbard839e772010-06-11 20:10:12 +000053// EmptyPragmaHandler Implementation.
54//===----------------------------------------------------------------------===//
55
Hans Wennborg7357bbc2015-10-12 20:47:58 +000056EmptyPragmaHandler::EmptyPragmaHandler(StringRef Name) : PragmaHandler(Name) {}
Daniel Dunbard839e772010-06-11 20:10:12 +000057
Douglas Gregorc7d65762010-09-09 22:45:38 +000058void EmptyPragmaHandler::HandlePragma(Preprocessor &PP,
59 PragmaIntroducerKind Introducer,
60 Token &FirstToken) {}
Daniel Dunbard839e772010-06-11 20:10:12 +000061
62//===----------------------------------------------------------------------===//
Chris Lattner2e155302006-07-03 05:34:41 +000063// PragmaNamespace Implementation.
64//===----------------------------------------------------------------------===//
65
Chris Lattner2e155302006-07-03 05:34:41 +000066PragmaNamespace::~PragmaNamespace() {
Reid Kleckner588c9372014-02-19 23:44:52 +000067 llvm::DeleteContainerSeconds(Handlers);
Chris Lattner2e155302006-07-03 05:34:41 +000068}
69
70/// FindHandler - Check to see if there is already a handler for the
71/// specified name. If not, return the handler for the null identifier if it
72/// exists, otherwise return null. If IgnoreNull is true (the default) then
73/// the null handler isn't returned on failure to match.
Chris Lattner0e62c1c2011-07-23 10:55:15 +000074PragmaHandler *PragmaNamespace::FindHandler(StringRef Name,
Chris Lattner2e155302006-07-03 05:34:41 +000075 bool IgnoreNull) const {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +000076 if (PragmaHandler *Handler = Handlers.lookup(Name))
77 return Handler;
Craig Topperd2d442c2014-05-17 23:10:59 +000078 return IgnoreNull ? nullptr : Handlers.lookup(StringRef());
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +000079}
Mike Stump11289f42009-09-09 15:08:12 +000080
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +000081void PragmaNamespace::AddPragma(PragmaHandler *Handler) {
82 assert(!Handlers.lookup(Handler->getName()) &&
83 "A handler with this name is already registered in this namespace");
David Blaikie13156b62014-11-19 03:06:06 +000084 Handlers[Handler->getName()] = Handler;
Chris Lattner2e155302006-07-03 05:34:41 +000085}
86
Daniel Dunbar40596532008-10-04 19:17:46 +000087void PragmaNamespace::RemovePragmaHandler(PragmaHandler *Handler) {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +000088 assert(Handlers.lookup(Handler->getName()) &&
89 "Handler not registered in this namespace");
90 Handlers.erase(Handler->getName());
Daniel Dunbar40596532008-10-04 19:17:46 +000091}
92
Douglas Gregorc7d65762010-09-09 22:45:38 +000093void PragmaNamespace::HandlePragma(Preprocessor &PP,
94 PragmaIntroducerKind Introducer,
95 Token &Tok) {
Chris Lattnerb8761832006-06-24 21:31:03 +000096 // Read the 'namespace' that the directive is in, e.g. STDC. Do not macro
97 // expand it, the user can have a STDC #define, that should not affect this.
98 PP.LexUnexpandedToken(Tok);
Mike Stump11289f42009-09-09 15:08:12 +000099
Chris Lattnerb8761832006-06-24 21:31:03 +0000100 // Get the handler for this token. If there is no handler, ignore the pragma.
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000101 PragmaHandler *Handler
102 = FindHandler(Tok.getIdentifierInfo() ? Tok.getIdentifierInfo()->getName()
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000103 : StringRef(),
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000104 /*IgnoreNull=*/false);
Craig Topperd2d442c2014-05-17 23:10:59 +0000105 if (!Handler) {
Chris Lattner21656f22009-04-19 21:10:26 +0000106 PP.Diag(Tok, diag::warn_pragma_ignored);
107 return;
108 }
Mike Stump11289f42009-09-09 15:08:12 +0000109
Chris Lattnerb8761832006-06-24 21:31:03 +0000110 // Otherwise, pass it down.
Douglas Gregorc7d65762010-09-09 22:45:38 +0000111 Handler->HandlePragma(PP, Introducer, Tok);
Chris Lattnerb8761832006-06-24 21:31:03 +0000112}
Chris Lattnerb694ba72006-07-02 22:41:36 +0000113
Chris Lattnerb694ba72006-07-02 22:41:36 +0000114//===----------------------------------------------------------------------===//
115// Preprocessor Pragma Directive Handling.
116//===----------------------------------------------------------------------===//
117
James Dennett18a6d792012-06-17 03:26:26 +0000118/// HandlePragmaDirective - The "\#pragma" directive has been parsed. Lex the
Chris Lattnerb694ba72006-07-02 22:41:36 +0000119/// rest of the pragma, passing it to the registered pragma handlers.
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000120void Preprocessor::HandlePragmaDirective(SourceLocation IntroducerLoc,
121 PragmaIntroducerKind Introducer) {
122 if (Callbacks)
123 Callbacks->PragmaDirective(IntroducerLoc, Introducer);
124
Jordan Rosede1a2922012-06-08 18:06:21 +0000125 if (!PragmasEnabled)
126 return;
127
Chris Lattnerb694ba72006-07-02 22:41:36 +0000128 ++NumPragma;
Mike Stump11289f42009-09-09 15:08:12 +0000129
Chris Lattnerb694ba72006-07-02 22:41:36 +0000130 // Invoke the first level of pragma handlers which reads the namespace id.
Chris Lattner146762e2007-07-20 16:59:19 +0000131 Token Tok;
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000132 PragmaHandlers->HandlePragma(*this, Introducer, Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000133
Chris Lattnerb694ba72006-07-02 22:41:36 +0000134 // If the pragma handler didn't read the rest of the line, consume it now.
Peter Collingbourne2c9f9662011-02-22 13:49:00 +0000135 if ((CurTokenLexer && CurTokenLexer->isParsingPreprocessorDirective())
136 || (CurPPLexer && CurPPLexer->ParsingPreprocessorDirective))
Chris Lattnerb694ba72006-07-02 22:41:36 +0000137 DiscardUntilEndOfDirective();
138}
139
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000140namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000141
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000142/// \brief Helper class for \see Preprocessor::Handle_Pragma.
143class LexingFor_PragmaRAII {
144 Preprocessor &PP;
145 bool InMacroArgPreExpansion;
146 bool Failed;
147 Token &OutTok;
148 Token PragmaTok;
149
150public:
151 LexingFor_PragmaRAII(Preprocessor &PP, bool InMacroArgPreExpansion,
152 Token &Tok)
153 : PP(PP), InMacroArgPreExpansion(InMacroArgPreExpansion),
154 Failed(false), OutTok(Tok) {
155 if (InMacroArgPreExpansion) {
156 PragmaTok = OutTok;
157 PP.EnableBacktrackAtThisPos();
158 }
159 }
160
161 ~LexingFor_PragmaRAII() {
162 if (InMacroArgPreExpansion) {
Alex Lorenz24a1bed2017-02-24 17:45:16 +0000163 // When committing/backtracking the cached pragma tokens in a macro
164 // argument pre-expansion we want to ensure that either the tokens which
165 // have been committed will be removed from the cache or that the tokens
166 // over which we just backtracked won't remain in the cache after they're
167 // consumed and that the caching will stop after consuming them.
168 // Otherwise the caching will interfere with the way macro expansion
169 // works, because we will continue to cache tokens after consuming the
170 // backtracked tokens, which shouldn't happen when we're dealing with
171 // macro argument pre-expansion.
172 auto CachedTokenRange = PP.LastCachedTokenRange();
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000173 if (Failed) {
174 PP.CommitBacktrackedTokens();
175 } else {
176 PP.Backtrack();
177 OutTok = PragmaTok;
178 }
Alex Lorenz24a1bed2017-02-24 17:45:16 +0000179 PP.EraseCachedTokens(CachedTokenRange);
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000180 }
181 }
182
183 void failed() {
184 Failed = true;
185 }
186};
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000187
188} // end anonymous namespace
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000189
Chris Lattnerb694ba72006-07-02 22:41:36 +0000190/// Handle_Pragma - Read a _Pragma directive, slice it up, process it, then
191/// return the first token after the directive. The _Pragma token has just
192/// been read into 'Tok'.
Chris Lattner146762e2007-07-20 16:59:19 +0000193void Preprocessor::Handle_Pragma(Token &Tok) {
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000194
195 // This works differently if we are pre-expanding a macro argument.
196 // In that case we don't actually "activate" the pragma now, we only lex it
197 // until we are sure it is lexically correct and then we backtrack so that
198 // we activate the pragma whenever we encounter the tokens again in the token
199 // stream. This ensures that we will activate it in the correct location
200 // or that we will ignore it if it never enters the token stream, e.g:
201 //
202 // #define EMPTY(x)
203 // #define INACTIVE(x) EMPTY(x)
204 // INACTIVE(_Pragma("clang diagnostic ignored \"-Wconversion\""))
205
206 LexingFor_PragmaRAII _PragmaLexing(*this, InMacroArgPreExpansion, Tok);
207
Chris Lattnerb694ba72006-07-02 22:41:36 +0000208 // Remember the pragma token location.
209 SourceLocation PragmaLoc = Tok.getLocation();
Mike Stump11289f42009-09-09 15:08:12 +0000210
Chris Lattnerb694ba72006-07-02 22:41:36 +0000211 // Read the '('.
212 Lex(Tok);
Chris Lattner907dfe92008-11-18 07:59:24 +0000213 if (Tok.isNot(tok::l_paren)) {
214 Diag(PragmaLoc, diag::err__Pragma_malformed);
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000215 return _PragmaLexing.failed();
Chris Lattner907dfe92008-11-18 07:59:24 +0000216 }
Chris Lattnerb694ba72006-07-02 22:41:36 +0000217
218 // Read the '"..."'.
219 Lex(Tok);
Richard Smithc98bb4e2013-03-09 23:30:15 +0000220 if (!tok::isStringLiteral(Tok.getKind())) {
Chris Lattner907dfe92008-11-18 07:59:24 +0000221 Diag(PragmaLoc, diag::err__Pragma_malformed);
Hubert Tong0deb6942015-07-30 21:30:00 +0000222 // Skip bad tokens, and the ')', if present.
Reid Kleckner53e6a5d2014-08-14 19:47:06 +0000223 if (Tok.isNot(tok::r_paren) && Tok.isNot(tok::eof))
Richard Smithd67aea22012-03-06 03:21:47 +0000224 Lex(Tok);
Hubert Tong0deb6942015-07-30 21:30:00 +0000225 while (Tok.isNot(tok::r_paren) &&
226 !Tok.isAtStartOfLine() &&
227 Tok.isNot(tok::eof))
228 Lex(Tok);
Richard Smithd67aea22012-03-06 03:21:47 +0000229 if (Tok.is(tok::r_paren))
230 Lex(Tok);
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000231 return _PragmaLexing.failed();
Richard Smithd67aea22012-03-06 03:21:47 +0000232 }
233
234 if (Tok.hasUDSuffix()) {
235 Diag(Tok, diag::err_invalid_string_udl);
236 // Skip this token, and the ')', if present.
237 Lex(Tok);
238 if (Tok.is(tok::r_paren))
239 Lex(Tok);
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000240 return _PragmaLexing.failed();
Chris Lattner907dfe92008-11-18 07:59:24 +0000241 }
Mike Stump11289f42009-09-09 15:08:12 +0000242
Chris Lattnerb694ba72006-07-02 22:41:36 +0000243 // Remember the string.
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000244 Token StrTok = Tok;
Chris Lattnerb694ba72006-07-02 22:41:36 +0000245
246 // Read the ')'.
247 Lex(Tok);
Chris Lattner907dfe92008-11-18 07:59:24 +0000248 if (Tok.isNot(tok::r_paren)) {
249 Diag(PragmaLoc, diag::err__Pragma_malformed);
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000250 return _PragmaLexing.failed();
Chris Lattner907dfe92008-11-18 07:59:24 +0000251 }
Mike Stump11289f42009-09-09 15:08:12 +0000252
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000253 if (InMacroArgPreExpansion)
254 return;
255
Chris Lattner9dc9c202009-02-15 20:52:18 +0000256 SourceLocation RParenLoc = Tok.getLocation();
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +0000257 std::string StrVal = getSpelling(StrTok);
Mike Stump11289f42009-09-09 15:08:12 +0000258
Richard Smithc98bb4e2013-03-09 23:30:15 +0000259 // The _Pragma is lexically sound. Destringize according to C11 6.10.9.1:
260 // "The string literal is destringized by deleting any encoding prefix,
Chris Lattner262d4e32009-01-16 18:59:23 +0000261 // deleting the leading and trailing double-quotes, replacing each escape
262 // sequence \" by a double-quote, and replacing each escape sequence \\ by a
263 // single backslash."
Richard Smithc98bb4e2013-03-09 23:30:15 +0000264 if (StrVal[0] == 'L' || StrVal[0] == 'U' ||
265 (StrVal[0] == 'u' && StrVal[1] != '8'))
Chris Lattnerb694ba72006-07-02 22:41:36 +0000266 StrVal.erase(StrVal.begin());
Richard Smithc98bb4e2013-03-09 23:30:15 +0000267 else if (StrVal[0] == 'u')
268 StrVal.erase(StrVal.begin(), StrVal.begin() + 2);
269
270 if (StrVal[0] == 'R') {
271 // FIXME: C++11 does not specify how to handle raw-string-literals here.
272 // We strip off the 'R', the quotes, the d-char-sequences, and the parens.
273 assert(StrVal[1] == '"' && StrVal[StrVal.size() - 1] == '"' &&
274 "Invalid raw string token!");
275
276 // Measure the length of the d-char-sequence.
277 unsigned NumDChars = 0;
278 while (StrVal[2 + NumDChars] != '(') {
279 assert(NumDChars < (StrVal.size() - 5) / 2 &&
280 "Invalid raw string token!");
281 ++NumDChars;
282 }
283 assert(StrVal[StrVal.size() - 2 - NumDChars] == ')');
284
285 // Remove 'R " d-char-sequence' and 'd-char-sequence "'. We'll replace the
286 // parens below.
287 StrVal.erase(0, 2 + NumDChars);
288 StrVal.erase(StrVal.size() - 1 - NumDChars);
289 } else {
290 assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
291 "Invalid string token!");
292
293 // Remove escaped quotes and escapes.
Benjamin Kramerc2f5f292013-05-04 10:37:20 +0000294 unsigned ResultPos = 1;
Erik Verbruggene4fd6522016-10-26 13:06:13 +0000295 for (size_t i = 1, e = StrVal.size() - 1; i != e; ++i) {
Reid Kleckner95e036c2013-09-25 16:42:48 +0000296 // Skip escapes. \\ -> '\' and \" -> '"'.
297 if (StrVal[i] == '\\' && i + 1 < e &&
298 (StrVal[i + 1] == '\\' || StrVal[i + 1] == '"'))
299 ++i;
300 StrVal[ResultPos++] = StrVal[i];
Richard Smithc98bb4e2013-03-09 23:30:15 +0000301 }
Reid Kleckner95e036c2013-09-25 16:42:48 +0000302 StrVal.erase(StrVal.begin() + ResultPos, StrVal.end() - 1);
Richard Smithc98bb4e2013-03-09 23:30:15 +0000303 }
Mike Stump11289f42009-09-09 15:08:12 +0000304
Chris Lattnerb694ba72006-07-02 22:41:36 +0000305 // Remove the front quote, replacing it with a space, so that the pragma
306 // contents appear to have a space before them.
307 StrVal[0] = ' ';
Mike Stump11289f42009-09-09 15:08:12 +0000308
Chris Lattnerfa217bd2009-03-08 08:08:45 +0000309 // Replace the terminating quote with a \n.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000310 StrVal[StrVal.size()-1] = '\n';
Mike Stump11289f42009-09-09 15:08:12 +0000311
Peter Collingbournef29ce972011-02-22 13:49:06 +0000312 // Plop the string (including the newline and trailing null) into a buffer
313 // where we can lex it.
314 Token TmpTok;
315 TmpTok.startToken();
Dmitri Gribenkob8e9e752012-09-24 21:07:17 +0000316 CreateString(StrVal, TmpTok);
Peter Collingbournef29ce972011-02-22 13:49:06 +0000317 SourceLocation TokLoc = TmpTok.getLocation();
318
319 // Make and enter a lexer object so that we lex and expand the tokens just
320 // like any others.
321 Lexer *TL = Lexer::Create_PragmaLexer(TokLoc, PragmaLoc, RParenLoc,
322 StrVal.size(), *this);
323
Craig Topperd2d442c2014-05-17 23:10:59 +0000324 EnterSourceFileWithLexer(TL, nullptr);
Peter Collingbournef29ce972011-02-22 13:49:06 +0000325
326 // With everything set up, lex this as a #pragma directive.
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000327 HandlePragmaDirective(PragmaLoc, PIK__Pragma);
John McCall89e925d2010-08-28 22:34:47 +0000328
329 // Finally, return whatever came after the pragma directive.
330 return Lex(Tok);
331}
332
333/// HandleMicrosoft__pragma - Like Handle_Pragma except the pragma text
334/// is not enclosed within a string literal.
335void Preprocessor::HandleMicrosoft__pragma(Token &Tok) {
336 // Remember the pragma token location.
337 SourceLocation PragmaLoc = Tok.getLocation();
338
339 // Read the '('.
340 Lex(Tok);
341 if (Tok.isNot(tok::l_paren)) {
342 Diag(PragmaLoc, diag::err__Pragma_malformed);
343 return;
344 }
345
Peter Collingbournef29ce972011-02-22 13:49:06 +0000346 // Get the tokens enclosed within the __pragma(), as well as the final ')'.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000347 SmallVector<Token, 32> PragmaToks;
John McCall89e925d2010-08-28 22:34:47 +0000348 int NumParens = 0;
349 Lex(Tok);
350 while (Tok.isNot(tok::eof)) {
Peter Collingbournef29ce972011-02-22 13:49:06 +0000351 PragmaToks.push_back(Tok);
John McCall89e925d2010-08-28 22:34:47 +0000352 if (Tok.is(tok::l_paren))
353 NumParens++;
354 else if (Tok.is(tok::r_paren) && NumParens-- == 0)
355 break;
John McCall89e925d2010-08-28 22:34:47 +0000356 Lex(Tok);
357 }
358
John McCall49039d42010-08-29 01:09:54 +0000359 if (Tok.is(tok::eof)) {
360 Diag(PragmaLoc, diag::err_unterminated___pragma);
361 return;
362 }
363
Peter Collingbournef29ce972011-02-22 13:49:06 +0000364 PragmaToks.front().setFlag(Token::LeadingSpace);
John McCall89e925d2010-08-28 22:34:47 +0000365
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000366 // Replace the ')' with an EOD to mark the end of the pragma.
367 PragmaToks.back().setKind(tok::eod);
Peter Collingbournef29ce972011-02-22 13:49:06 +0000368
369 Token *TokArray = new Token[PragmaToks.size()];
370 std::copy(PragmaToks.begin(), PragmaToks.end(), TokArray);
371
372 // Push the tokens onto the stack.
373 EnterTokenStream(TokArray, PragmaToks.size(), true, true);
374
375 // With everything set up, lex this as a #pragma directive.
Enea Zaffanella5afb04a2013-07-20 20:09:11 +0000376 HandlePragmaDirective(PragmaLoc, PIK___pragma);
John McCall89e925d2010-08-28 22:34:47 +0000377
378 // Finally, return whatever came after the pragma directive.
379 return Lex(Tok);
380}
381
James Dennett18a6d792012-06-17 03:26:26 +0000382/// HandlePragmaOnce - Handle \#pragma once. OnceTok is the 'once'.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000383///
Chris Lattner146762e2007-07-20 16:59:19 +0000384void Preprocessor::HandlePragmaOnce(Token &OnceTok) {
Sunil Srivastavafe583272016-07-25 17:17:06 +0000385 // Don't honor the 'once' when handling the primary source file, unless
Erik Verbruggene0bde752016-10-27 14:17:10 +0000386 // this is a prefix to a TU, which indicates we're generating a PCH file, or
387 // when the main file is a header (e.g. when -xc-header is provided on the
388 // commandline).
389 if (isInPrimaryFile() && TUKind != TU_Prefix && !getLangOpts().IsHeaderFile) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000390 Diag(OnceTok, diag::pp_pragma_once_in_main_file);
391 return;
392 }
Mike Stump11289f42009-09-09 15:08:12 +0000393
Chris Lattnerb694ba72006-07-02 22:41:36 +0000394 // Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000395 // Mark the file as a once-only file now.
Chris Lattnerd32480d2009-01-17 06:22:33 +0000396 HeaderInfo.MarkFileIncludeOnce(getCurrentFileLexer()->getFileEntry());
Chris Lattnerb694ba72006-07-02 22:41:36 +0000397}
398
Chris Lattnerc2383312007-12-19 19:38:36 +0000399void Preprocessor::HandlePragmaMark() {
Ted Kremenek76c34412008-11-19 22:21:33 +0000400 assert(CurPPLexer && "No current lexer?");
Chris Lattnerd9efb6e2009-06-15 05:02:34 +0000401 if (CurLexer)
402 CurLexer->ReadToEndOfLine();
403 else
404 CurPTHLexer->DiscardToEndOfLine();
Chris Lattnerc2383312007-12-19 19:38:36 +0000405}
406
James Dennett18a6d792012-06-17 03:26:26 +0000407/// HandlePragmaPoison - Handle \#pragma GCC poison. PoisonTok is the 'poison'.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000408///
Erik Verbruggen851ce0e2016-10-26 11:46:10 +0000409void Preprocessor::HandlePragmaPoison() {
Chris Lattner146762e2007-07-20 16:59:19 +0000410 Token Tok;
Chris Lattner538d7f32006-07-20 04:31:52 +0000411
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000412 while (true) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000413 // Read the next token to poison. While doing this, pretend that we are
414 // skipping while reading the identifier to poison.
415 // This avoids errors on code like:
416 // #pragma GCC poison X
417 // #pragma GCC poison X
Ted Kremenek551c82a2008-11-18 01:12:54 +0000418 if (CurPPLexer) CurPPLexer->LexingRawMode = true;
Chris Lattnerb694ba72006-07-02 22:41:36 +0000419 LexUnexpandedToken(Tok);
Ted Kremenek551c82a2008-11-18 01:12:54 +0000420 if (CurPPLexer) CurPPLexer->LexingRawMode = false;
Mike Stump11289f42009-09-09 15:08:12 +0000421
Chris Lattnerb694ba72006-07-02 22:41:36 +0000422 // If we reached the end of line, we're done.
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000423 if (Tok.is(tok::eod)) return;
Mike Stump11289f42009-09-09 15:08:12 +0000424
Chris Lattnerb694ba72006-07-02 22:41:36 +0000425 // Can only poison identifiers.
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000426 if (Tok.isNot(tok::raw_identifier)) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000427 Diag(Tok, diag::err_pp_invalid_poison);
428 return;
429 }
Mike Stump11289f42009-09-09 15:08:12 +0000430
Chris Lattnercefc7682006-07-08 08:28:12 +0000431 // Look up the identifier info for the token. We disabled identifier lookup
432 // by saying we're skipping contents, so we need to do this manually.
433 IdentifierInfo *II = LookUpIdentifierInfo(Tok);
Mike Stump11289f42009-09-09 15:08:12 +0000434
Chris Lattnerb694ba72006-07-02 22:41:36 +0000435 // Already poisoned.
436 if (II->isPoisoned()) continue;
Mike Stump11289f42009-09-09 15:08:12 +0000437
Chris Lattnerb694ba72006-07-02 22:41:36 +0000438 // If this is a macro identifier, emit a warning.
Richard Smith20e883e2015-04-29 23:20:19 +0000439 if (isMacroDefined(II))
Chris Lattnerb694ba72006-07-02 22:41:36 +0000440 Diag(Tok, diag::pp_poisoning_existing_macro);
Mike Stump11289f42009-09-09 15:08:12 +0000441
Chris Lattnerb694ba72006-07-02 22:41:36 +0000442 // Finally, poison it!
443 II->setIsPoisoned();
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000444 if (II->isFromAST())
445 II->setChangedSinceDeserialization();
Chris Lattnerb694ba72006-07-02 22:41:36 +0000446 }
447}
448
James Dennett18a6d792012-06-17 03:26:26 +0000449/// HandlePragmaSystemHeader - Implement \#pragma GCC system_header. We know
Chris Lattnerb694ba72006-07-02 22:41:36 +0000450/// that the whole directive has been parsed.
Chris Lattner146762e2007-07-20 16:59:19 +0000451void Preprocessor::HandlePragmaSystemHeader(Token &SysHeaderTok) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000452 if (isInPrimaryFile()) {
453 Diag(SysHeaderTok, diag::pp_pragma_sysheader_in_main_file);
454 return;
455 }
Mike Stump11289f42009-09-09 15:08:12 +0000456
Chris Lattnerb694ba72006-07-02 22:41:36 +0000457 // Get the current file lexer we're looking at. Ignore _Pragma 'files' etc.
Ted Kremenek300590b2008-11-20 01:45:11 +0000458 PreprocessorLexer *TheLexer = getCurrentFileLexer();
Mike Stump11289f42009-09-09 15:08:12 +0000459
Chris Lattnerb694ba72006-07-02 22:41:36 +0000460 // Mark the file as a system header.
Chris Lattnerd32480d2009-01-17 06:22:33 +0000461 HeaderInfo.MarkFileSystemHeader(TheLexer->getFileEntry());
Mike Stump11289f42009-09-09 15:08:12 +0000462
463
Chris Lattnerd9efb6e2009-06-15 05:02:34 +0000464 PresumedLoc PLoc = SourceMgr.getPresumedLoc(SysHeaderTok.getLocation());
Douglas Gregor453b0122010-11-12 07:15:47 +0000465 if (PLoc.isInvalid())
466 return;
467
Jay Foad9a6b0982011-06-21 15:13:30 +0000468 unsigned FilenameID = SourceMgr.getLineTableFilenameID(PLoc.getFilename());
Mike Stump11289f42009-09-09 15:08:12 +0000469
Chris Lattner3bdc7672011-05-22 22:10:16 +0000470 // Notify the client, if desired, that we are in a new source file.
471 if (Callbacks)
472 Callbacks->FileChanged(SysHeaderTok.getLocation(),
473 PPCallbacks::SystemHeaderPragma, SrcMgr::C_System);
474
Chris Lattnerd9efb6e2009-06-15 05:02:34 +0000475 // Emit a line marker. This will change any source locations from this point
476 // forward to realize they are in a system header.
477 // Create a line note with this information.
Jordan Rose111c4a62013-04-17 19:09:18 +0000478 SourceMgr.AddLineNote(SysHeaderTok.getLocation(), PLoc.getLine()+1,
479 FilenameID, /*IsEntry=*/false, /*IsExit=*/false,
480 /*IsSystem=*/true, /*IsExternC=*/false);
Chris Lattnerb694ba72006-07-02 22:41:36 +0000481}
482
James Dennett18a6d792012-06-17 03:26:26 +0000483/// HandlePragmaDependency - Handle \#pragma GCC dependency "foo" blah.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000484///
Chris Lattner146762e2007-07-20 16:59:19 +0000485void Preprocessor::HandlePragmaDependency(Token &DependencyTok) {
486 Token FilenameTok;
Ted Kremenek551c82a2008-11-18 01:12:54 +0000487 CurPPLexer->LexIncludeFilename(FilenameTok);
Chris Lattnerb694ba72006-07-02 22:41:36 +0000488
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000489 // If the token kind is EOD, the error has already been diagnosed.
490 if (FilenameTok.is(tok::eod))
Chris Lattnerb694ba72006-07-02 22:41:36 +0000491 return;
Mike Stump11289f42009-09-09 15:08:12 +0000492
Chris Lattnerc07ba1f2006-10-30 05:58:32 +0000493 // Reserve a buffer to get the spelling.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000494 SmallString<128> FilenameBuffer;
Douglas Gregordc970f02010-03-16 22:30:13 +0000495 bool Invalid = false;
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000496 StringRef Filename = getSpelling(FilenameTok, FilenameBuffer, &Invalid);
Douglas Gregordc970f02010-03-16 22:30:13 +0000497 if (Invalid)
498 return;
Mike Stump11289f42009-09-09 15:08:12 +0000499
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000500 bool isAngled =
501 GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
Chris Lattnerc07ba1f2006-10-30 05:58:32 +0000502 // If GetIncludeFilenameSpelling set the start ptr to null, there was an
503 // error.
Chris Lattnerd081f8c2010-01-10 01:35:12 +0000504 if (Filename.empty())
Chris Lattnerc07ba1f2006-10-30 05:58:32 +0000505 return;
Mike Stump11289f42009-09-09 15:08:12 +0000506
Chris Lattner59a9ebd2006-10-18 05:34:33 +0000507 // Search include directories for this file.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000508 const DirectoryLookup *CurDir;
Richard Smith25d50752014-10-20 00:15:49 +0000509 const FileEntry *File =
510 LookupFile(FilenameTok.getLocation(), Filename, isAngled, nullptr,
Duncan P. N. Exon Smithcfc1f6a2017-04-27 21:41:51 +0000511 nullptr, CurDir, nullptr, nullptr, nullptr, nullptr);
Craig Topperd2d442c2014-05-17 23:10:59 +0000512 if (!File) {
Eli Friedman3781a362011-08-30 23:07:51 +0000513 if (!SuppressIncludeNotFoundError)
514 Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
Chris Lattner97b8e842008-11-18 08:02:48 +0000515 return;
516 }
Mike Stump11289f42009-09-09 15:08:12 +0000517
Chris Lattnerd32480d2009-01-17 06:22:33 +0000518 const FileEntry *CurFile = getCurrentFileLexer()->getFileEntry();
Chris Lattnerb694ba72006-07-02 22:41:36 +0000519
520 // If this file is older than the file it depends on, emit a diagnostic.
521 if (CurFile && CurFile->getModificationTime() < File->getModificationTime()) {
522 // Lex tokens at the end of the message and include them in the message.
523 std::string Message;
524 Lex(DependencyTok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000525 while (DependencyTok.isNot(tok::eod)) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000526 Message += getSpelling(DependencyTok) + " ";
527 Lex(DependencyTok);
528 }
Mike Stump11289f42009-09-09 15:08:12 +0000529
Chris Lattnerf0b04972010-09-05 23:16:09 +0000530 // Remove the trailing ' ' if present.
531 if (!Message.empty())
532 Message.erase(Message.end()-1);
Chris Lattner97b8e842008-11-18 08:02:48 +0000533 Diag(FilenameTok, diag::pp_out_of_date_dependency) << Message;
Chris Lattnerb694ba72006-07-02 22:41:36 +0000534 }
535}
536
Reid Kleckner002562a2013-05-06 21:02:12 +0000537/// ParsePragmaPushOrPopMacro - Handle parsing of pragma push_macro/pop_macro.
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000538/// Return the IdentifierInfo* associated with the macro to push or pop.
539IdentifierInfo *Preprocessor::ParsePragmaPushOrPopMacro(Token &Tok) {
540 // Remember the pragma token location.
541 Token PragmaTok = Tok;
542
543 // Read the '('.
544 Lex(Tok);
545 if (Tok.isNot(tok::l_paren)) {
546 Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
547 << getSpelling(PragmaTok);
Craig Topperd2d442c2014-05-17 23:10:59 +0000548 return nullptr;
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000549 }
550
551 // Read the macro name string.
552 Lex(Tok);
553 if (Tok.isNot(tok::string_literal)) {
554 Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
555 << getSpelling(PragmaTok);
Craig Topperd2d442c2014-05-17 23:10:59 +0000556 return nullptr;
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000557 }
558
Richard Smithd67aea22012-03-06 03:21:47 +0000559 if (Tok.hasUDSuffix()) {
560 Diag(Tok, diag::err_invalid_string_udl);
Craig Topperd2d442c2014-05-17 23:10:59 +0000561 return nullptr;
Richard Smithd67aea22012-03-06 03:21:47 +0000562 }
563
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000564 // Remember the macro string.
565 std::string StrVal = getSpelling(Tok);
566
567 // Read the ')'.
568 Lex(Tok);
569 if (Tok.isNot(tok::r_paren)) {
570 Diag(PragmaTok.getLocation(), diag::err_pragma_push_pop_macro_malformed)
571 << getSpelling(PragmaTok);
Craig Topperd2d442c2014-05-17 23:10:59 +0000572 return nullptr;
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000573 }
574
575 assert(StrVal[0] == '"' && StrVal[StrVal.size()-1] == '"' &&
576 "Invalid string token!");
577
578 // Create a Token from the string.
579 Token MacroTok;
580 MacroTok.startToken();
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000581 MacroTok.setKind(tok::raw_identifier);
Dmitri Gribenkob8e9e752012-09-24 21:07:17 +0000582 CreateString(StringRef(&StrVal[1], StrVal.size() - 2), MacroTok);
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000583
584 // Get the IdentifierInfo of MacroToPushTok.
585 return LookUpIdentifierInfo(MacroTok);
586}
587
James Dennett18a6d792012-06-17 03:26:26 +0000588/// \brief Handle \#pragma push_macro.
589///
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000590/// The syntax is:
James Dennett18a6d792012-06-17 03:26:26 +0000591/// \code
Dmitri Gribenko9ebd1612012-11-30 20:04:39 +0000592/// #pragma push_macro("macro")
James Dennett18a6d792012-06-17 03:26:26 +0000593/// \endcode
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000594void Preprocessor::HandlePragmaPushMacro(Token &PushMacroTok) {
595 // Parse the pragma directive and get the macro IdentifierInfo*.
596 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PushMacroTok);
597 if (!IdentInfo) return;
598
599 // Get the MacroInfo associated with IdentInfo.
600 MacroInfo *MI = getMacroInfo(IdentInfo);
601
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000602 if (MI) {
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000603 // Allow the original MacroInfo to be redefined later.
604 MI->setIsAllowRedefinitionsWithoutWarning(true);
605 }
606
607 // Push the cloned MacroInfo so we can retrieve it later.
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +0000608 PragmaPushMacroInfo[IdentInfo].push_back(MI);
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000609}
610
James Dennett18a6d792012-06-17 03:26:26 +0000611/// \brief Handle \#pragma pop_macro.
612///
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000613/// The syntax is:
James Dennett18a6d792012-06-17 03:26:26 +0000614/// \code
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000615/// #pragma pop_macro("macro")
James Dennett18a6d792012-06-17 03:26:26 +0000616/// \endcode
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000617void Preprocessor::HandlePragmaPopMacro(Token &PopMacroTok) {
618 SourceLocation MessageLoc = PopMacroTok.getLocation();
619
620 // Parse the pragma directive and get the macro IdentifierInfo*.
621 IdentifierInfo *IdentInfo = ParsePragmaPushOrPopMacro(PopMacroTok);
622 if (!IdentInfo) return;
623
624 // Find the vector<MacroInfo*> associated with the macro.
625 llvm::DenseMap<IdentifierInfo*, std::vector<MacroInfo*> >::iterator iter =
626 PragmaPushMacroInfo.find(IdentInfo);
627 if (iter != PragmaPushMacroInfo.end()) {
Alexander Kornienko8b3f6232012-08-29 00:20:03 +0000628 // Forget the MacroInfo currently associated with IdentInfo.
Richard Smith20e883e2015-04-29 23:20:19 +0000629 if (MacroInfo *MI = getMacroInfo(IdentInfo)) {
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000630 if (MI->isWarnIfUnused())
631 WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
632 appendMacroDirective(IdentInfo, AllocateUndefMacroDirective(MessageLoc));
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000633 }
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000634
635 // Get the MacroInfo we want to reinstall.
636 MacroInfo *MacroToReInstall = iter->second.back();
637
Richard Smith713369b2015-04-23 20:40:50 +0000638 if (MacroToReInstall)
Alexander Kornienkoc0b49282012-08-29 16:56:24 +0000639 // Reinstall the previously pushed macro.
Richard Smith713369b2015-04-23 20:40:50 +0000640 appendDefMacroDirective(IdentInfo, MacroToReInstall, MessageLoc);
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000641
642 // Pop PragmaPushMacroInfo stack.
643 iter->second.pop_back();
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000644 if (iter->second.empty())
Chris Lattnerc0a585d2010-08-17 15:55:45 +0000645 PragmaPushMacroInfo.erase(iter);
646 } else {
647 Diag(MessageLoc, diag::warn_pragma_pop_macro_no_push)
648 << IdentInfo->getName();
649 }
650}
Chris Lattnerb694ba72006-07-02 22:41:36 +0000651
Aaron Ballman611306e2012-03-02 22:51:54 +0000652void Preprocessor::HandlePragmaIncludeAlias(Token &Tok) {
653 // We will either get a quoted filename or a bracketed filename, and we
654 // have to track which we got. The first filename is the source name,
655 // and the second name is the mapped filename. If the first is quoted,
656 // the second must be as well (cannot mix and match quotes and brackets).
Aaron Ballman611306e2012-03-02 22:51:54 +0000657
658 // Get the open paren
659 Lex(Tok);
660 if (Tok.isNot(tok::l_paren)) {
661 Diag(Tok, diag::warn_pragma_include_alias_expected) << "(";
662 return;
663 }
664
665 // We expect either a quoted string literal, or a bracketed name
666 Token SourceFilenameTok;
667 CurPPLexer->LexIncludeFilename(SourceFilenameTok);
668 if (SourceFilenameTok.is(tok::eod)) {
669 // The diagnostic has already been handled
670 return;
671 }
672
673 StringRef SourceFileName;
674 SmallString<128> FileNameBuffer;
675 if (SourceFilenameTok.is(tok::string_literal) ||
676 SourceFilenameTok.is(tok::angle_string_literal)) {
677 SourceFileName = getSpelling(SourceFilenameTok, FileNameBuffer);
678 } else if (SourceFilenameTok.is(tok::less)) {
679 // This could be a path instead of just a name
680 FileNameBuffer.push_back('<');
681 SourceLocation End;
682 if (ConcatenateIncludeName(FileNameBuffer, End))
683 return; // Diagnostic already emitted
Yaron Keren92e1b622015-03-18 10:17:07 +0000684 SourceFileName = FileNameBuffer;
Aaron Ballman611306e2012-03-02 22:51:54 +0000685 } else {
686 Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
687 return;
688 }
689 FileNameBuffer.clear();
690
691 // Now we expect a comma, followed by another include name
692 Lex(Tok);
693 if (Tok.isNot(tok::comma)) {
694 Diag(Tok, diag::warn_pragma_include_alias_expected) << ",";
695 return;
696 }
697
698 Token ReplaceFilenameTok;
699 CurPPLexer->LexIncludeFilename(ReplaceFilenameTok);
700 if (ReplaceFilenameTok.is(tok::eod)) {
701 // The diagnostic has already been handled
702 return;
703 }
704
705 StringRef ReplaceFileName;
706 if (ReplaceFilenameTok.is(tok::string_literal) ||
707 ReplaceFilenameTok.is(tok::angle_string_literal)) {
708 ReplaceFileName = getSpelling(ReplaceFilenameTok, FileNameBuffer);
709 } else if (ReplaceFilenameTok.is(tok::less)) {
710 // This could be a path instead of just a name
711 FileNameBuffer.push_back('<');
712 SourceLocation End;
713 if (ConcatenateIncludeName(FileNameBuffer, End))
714 return; // Diagnostic already emitted
Yaron Keren92e1b622015-03-18 10:17:07 +0000715 ReplaceFileName = FileNameBuffer;
Aaron Ballman611306e2012-03-02 22:51:54 +0000716 } else {
717 Diag(Tok, diag::warn_pragma_include_alias_expected_filename);
718 return;
719 }
720
721 // Finally, we expect the closing paren
722 Lex(Tok);
723 if (Tok.isNot(tok::r_paren)) {
724 Diag(Tok, diag::warn_pragma_include_alias_expected) << ")";
725 return;
726 }
727
728 // Now that we have the source and target filenames, we need to make sure
729 // they're both of the same type (angled vs non-angled)
730 StringRef OriginalSource = SourceFileName;
731
732 bool SourceIsAngled =
733 GetIncludeFilenameSpelling(SourceFilenameTok.getLocation(),
734 SourceFileName);
735 bool ReplaceIsAngled =
736 GetIncludeFilenameSpelling(ReplaceFilenameTok.getLocation(),
737 ReplaceFileName);
738 if (!SourceFileName.empty() && !ReplaceFileName.empty() &&
739 (SourceIsAngled != ReplaceIsAngled)) {
740 unsigned int DiagID;
741 if (SourceIsAngled)
742 DiagID = diag::warn_pragma_include_alias_mismatch_angle;
743 else
744 DiagID = diag::warn_pragma_include_alias_mismatch_quote;
745
746 Diag(SourceFilenameTok.getLocation(), DiagID)
747 << SourceFileName
748 << ReplaceFileName;
749
750 return;
751 }
752
753 // Now we can let the include handler know about this mapping
754 getHeaderSearchInfo().AddIncludeAlias(OriginalSource, ReplaceFileName);
755}
756
Chris Lattnerb694ba72006-07-02 22:41:36 +0000757/// AddPragmaHandler - Add the specified pragma handler to the preprocessor.
758/// If 'Namespace' is non-null, then it is a token required to exist on the
759/// pragma line before the pragma string starts, e.g. "STDC" or "GCC".
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000760void Preprocessor::AddPragmaHandler(StringRef Namespace,
Chris Lattnerb694ba72006-07-02 22:41:36 +0000761 PragmaHandler *Handler) {
Craig Topperbe250302014-09-12 05:19:24 +0000762 PragmaNamespace *InsertNS = PragmaHandlers.get();
Mike Stump11289f42009-09-09 15:08:12 +0000763
Chris Lattnerb694ba72006-07-02 22:41:36 +0000764 // If this is specified to be in a namespace, step down into it.
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000765 if (!Namespace.empty()) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000766 // If there is already a pragma handler with the name of this namespace,
767 // we either have an error (directive with the same name as a namespace) or
768 // we already have the namespace to insert into.
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000769 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000770 InsertNS = Existing->getIfNamespace();
Craig Topperd2d442c2014-05-17 23:10:59 +0000771 assert(InsertNS != nullptr && "Cannot have a pragma namespace and pragma"
Chris Lattnerb694ba72006-07-02 22:41:36 +0000772 " handler with the same name!");
773 } else {
774 // Otherwise, this namespace doesn't exist yet, create and insert the
775 // handler for it.
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000776 InsertNS = new PragmaNamespace(Namespace);
Chris Lattnerb694ba72006-07-02 22:41:36 +0000777 PragmaHandlers->AddPragma(InsertNS);
778 }
779 }
Mike Stump11289f42009-09-09 15:08:12 +0000780
Chris Lattnerb694ba72006-07-02 22:41:36 +0000781 // Check to make sure we don't already have a pragma for this identifier.
782 assert(!InsertNS->FindHandler(Handler->getName()) &&
783 "Pragma handler already exists for this identifier!");
784 InsertNS->AddPragma(Handler);
785}
786
Daniel Dunbar40596532008-10-04 19:17:46 +0000787/// RemovePragmaHandler - Remove the specific pragma handler from the
788/// preprocessor. If \arg Namespace is non-null, then it should be the
789/// namespace that \arg Handler was added to. It is an error to remove
790/// a handler that has not been registered.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000791void Preprocessor::RemovePragmaHandler(StringRef Namespace,
Daniel Dunbar40596532008-10-04 19:17:46 +0000792 PragmaHandler *Handler) {
Craig Topperbe250302014-09-12 05:19:24 +0000793 PragmaNamespace *NS = PragmaHandlers.get();
Mike Stump11289f42009-09-09 15:08:12 +0000794
Daniel Dunbar40596532008-10-04 19:17:46 +0000795 // If this is specified to be in a namespace, step down into it.
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000796 if (!Namespace.empty()) {
797 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
Daniel Dunbar40596532008-10-04 19:17:46 +0000798 assert(Existing && "Namespace containing handler does not exist!");
799
800 NS = Existing->getIfNamespace();
801 assert(NS && "Invalid namespace, registered as a regular pragma handler!");
802 }
803
804 NS->RemovePragmaHandler(Handler);
Mike Stump11289f42009-09-09 15:08:12 +0000805
Craig Topperbe250302014-09-12 05:19:24 +0000806 // If this is a non-default namespace and it is now empty, remove it.
807 if (NS != PragmaHandlers.get() && NS->IsEmpty()) {
Daniel Dunbar40596532008-10-04 19:17:46 +0000808 PragmaHandlers->RemovePragmaHandler(NS);
Argyrios Kyrtzidis7ce75262012-01-06 00:22:09 +0000809 delete NS;
810 }
Daniel Dunbar40596532008-10-04 19:17:46 +0000811}
812
Peter Collingbourne3bffa522011-02-14 01:42:24 +0000813bool Preprocessor::LexOnOffSwitch(tok::OnOffSwitch &Result) {
814 Token Tok;
815 LexUnexpandedToken(Tok);
816
817 if (Tok.isNot(tok::identifier)) {
818 Diag(Tok, diag::ext_on_off_switch_syntax);
819 return true;
820 }
821 IdentifierInfo *II = Tok.getIdentifierInfo();
822 if (II->isStr("ON"))
823 Result = tok::OOS_ON;
824 else if (II->isStr("OFF"))
825 Result = tok::OOS_OFF;
826 else if (II->isStr("DEFAULT"))
827 Result = tok::OOS_DEFAULT;
828 else {
829 Diag(Tok, diag::ext_on_off_switch_syntax);
830 return true;
831 }
832
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000833 // Verify that this is followed by EOD.
Peter Collingbourne3bffa522011-02-14 01:42:24 +0000834 LexUnexpandedToken(Tok);
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +0000835 if (Tok.isNot(tok::eod))
836 Diag(Tok, diag::ext_pragma_syntax_eod);
Peter Collingbourne3bffa522011-02-14 01:42:24 +0000837 return false;
838}
839
Chris Lattnerb694ba72006-07-02 22:41:36 +0000840namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000841
James Dennett18a6d792012-06-17 03:26:26 +0000842/// PragmaOnceHandler - "\#pragma once" marks the file as atomically included.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000843struct PragmaOnceHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000844 PragmaOnceHandler() : PragmaHandler("once") {}
Craig Topper9140dd22014-03-11 06:50:42 +0000845 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
846 Token &OnceTok) override {
Chris Lattnerce2ab6f2009-04-14 05:07:49 +0000847 PP.CheckEndOfDirective("pragma once");
Chris Lattnerb694ba72006-07-02 22:41:36 +0000848 PP.HandlePragmaOnce(OnceTok);
849 }
850};
851
James Dennett18a6d792012-06-17 03:26:26 +0000852/// PragmaMarkHandler - "\#pragma mark ..." is ignored by the compiler, and the
Chris Lattnerc2383312007-12-19 19:38:36 +0000853/// rest of the line is not lexed.
854struct PragmaMarkHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000855 PragmaMarkHandler() : PragmaHandler("mark") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000856
Craig Topper9140dd22014-03-11 06:50:42 +0000857 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
858 Token &MarkTok) override {
Chris Lattnerc2383312007-12-19 19:38:36 +0000859 PP.HandlePragmaMark();
860 }
861};
862
James Dennett18a6d792012-06-17 03:26:26 +0000863/// PragmaPoisonHandler - "\#pragma poison x" marks x as not usable.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000864struct PragmaPoisonHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000865 PragmaPoisonHandler() : PragmaHandler("poison") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000866
Craig Topper9140dd22014-03-11 06:50:42 +0000867 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
868 Token &PoisonTok) override {
Erik Verbruggen851ce0e2016-10-26 11:46:10 +0000869 PP.HandlePragmaPoison();
Chris Lattnerb694ba72006-07-02 22:41:36 +0000870 }
871};
872
James Dennett18a6d792012-06-17 03:26:26 +0000873/// PragmaSystemHeaderHandler - "\#pragma system_header" marks the current file
Chris Lattnerc2383312007-12-19 19:38:36 +0000874/// as a system header, which silences warnings in it.
Chris Lattnerb694ba72006-07-02 22:41:36 +0000875struct PragmaSystemHeaderHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000876 PragmaSystemHeaderHandler() : PragmaHandler("system_header") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000877
Craig Topper9140dd22014-03-11 06:50:42 +0000878 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
879 Token &SHToken) override {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000880 PP.HandlePragmaSystemHeader(SHToken);
Chris Lattnerce2ab6f2009-04-14 05:07:49 +0000881 PP.CheckEndOfDirective("pragma");
Chris Lattnerb694ba72006-07-02 22:41:36 +0000882 }
883};
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000884
Chris Lattnerb694ba72006-07-02 22:41:36 +0000885struct PragmaDependencyHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +0000886 PragmaDependencyHandler() : PragmaHandler("dependency") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000887
Craig Topper9140dd22014-03-11 06:50:42 +0000888 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
889 Token &DepToken) override {
Chris Lattnerb694ba72006-07-02 22:41:36 +0000890 PP.HandlePragmaDependency(DepToken);
891 }
892};
Mike Stump11289f42009-09-09 15:08:12 +0000893
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000894struct PragmaDebugHandler : public PragmaHandler {
895 PragmaDebugHandler() : PragmaHandler("__debug") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000896
Craig Topper9140dd22014-03-11 06:50:42 +0000897 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
898 Token &DepToken) override {
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000899 Token Tok;
900 PP.LexUnexpandedToken(Tok);
901 if (Tok.isNot(tok::identifier)) {
Douglas Gregor3cc26482010-08-30 15:15:34 +0000902 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000903 return;
904 }
905 IdentifierInfo *II = Tok.getIdentifierInfo();
906
Daniel Dunbarf2cf3292010-08-17 22:32:48 +0000907 if (II->isStr("assert")) {
David Blaikie83d382b2011-09-23 05:06:16 +0000908 llvm_unreachable("This is an assertion!");
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000909 } else if (II->isStr("crash")) {
David Blaikie5bd4c2a2012-08-21 18:56:49 +0000910 LLVM_BUILTIN_TRAP;
David Blaikie5d577a22012-06-29 22:03:56 +0000911 } else if (II->isStr("parser_crash")) {
912 Token Crasher;
Benjamin Kramer3162f292015-03-08 19:28:24 +0000913 Crasher.startToken();
David Blaikie5d577a22012-06-29 22:03:56 +0000914 Crasher.setKind(tok::annot_pragma_parser_crash);
Benjamin Kramer3162f292015-03-08 19:28:24 +0000915 Crasher.setAnnotationRange(SourceRange(Tok.getLocation()));
David Blaikie5d577a22012-06-29 22:03:56 +0000916 PP.EnterToken(Crasher);
Richard Smithba3a4f92016-01-12 21:59:26 +0000917 } else if (II->isStr("dump")) {
918 Token Identifier;
919 PP.LexUnexpandedToken(Identifier);
920 if (auto *DumpII = Identifier.getIdentifierInfo()) {
921 Token DumpAnnot;
922 DumpAnnot.startToken();
923 DumpAnnot.setKind(tok::annot_pragma_dump);
924 DumpAnnot.setAnnotationRange(
925 SourceRange(Tok.getLocation(), Identifier.getLocation()));
926 DumpAnnot.setAnnotationValue(DumpII);
927 PP.DiscardUntilEndOfDirective();
928 PP.EnterToken(DumpAnnot);
929 } else {
930 PP.Diag(Identifier, diag::warn_pragma_debug_missing_argument)
931 << II->getName();
932 }
Daniel Dunbarf2cf3292010-08-17 22:32:48 +0000933 } else if (II->isStr("llvm_fatal_error")) {
934 llvm::report_fatal_error("#pragma clang __debug llvm_fatal_error");
935 } else if (II->isStr("llvm_unreachable")) {
936 llvm_unreachable("#pragma clang __debug llvm_unreachable");
Richard Smith3ffa61d2015-04-30 23:10:40 +0000937 } else if (II->isStr("macro")) {
938 Token MacroName;
939 PP.LexUnexpandedToken(MacroName);
940 auto *MacroII = MacroName.getIdentifierInfo();
941 if (MacroII)
942 PP.dumpMacroInfo(MacroII);
943 else
Richard Smithba3a4f92016-01-12 21:59:26 +0000944 PP.Diag(MacroName, diag::warn_pragma_debug_missing_argument)
945 << II->getName();
Daniel Dunbarf2cf3292010-08-17 22:32:48 +0000946 } else if (II->isStr("overflow_stack")) {
947 DebugOverflowStack();
Daniel Dunbar211a7872010-08-18 23:09:23 +0000948 } else if (II->isStr("handle_crash")) {
949 llvm::CrashRecoveryContext *CRC =llvm::CrashRecoveryContext::GetCurrent();
950 if (CRC)
951 CRC->HandleCrash();
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000952 } else if (II->isStr("captured")) {
953 HandleCaptured(PP);
Daniel Dunbarf2cf3292010-08-17 22:32:48 +0000954 } else {
955 PP.Diag(Tok, diag::warn_pragma_debug_unexpected_command)
956 << II->getName();
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000957 }
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000958
959 PPCallbacks *Callbacks = PP.getPPCallbacks();
960 if (Callbacks)
961 Callbacks->PragmaDebug(Tok.getLocation(), II->getName());
962 }
963
964 void HandleCaptured(Preprocessor &PP) {
965 // Skip if emitting preprocessed output.
966 if (PP.isPreprocessedOutput())
967 return;
968
969 Token Tok;
970 PP.LexUnexpandedToken(Tok);
971
972 if (Tok.isNot(tok::eod)) {
973 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol)
974 << "pragma clang __debug captured";
975 return;
976 }
977
978 SourceLocation NameLoc = Tok.getLocation();
David Blaikie2eabcc92016-02-09 18:52:09 +0000979 MutableArrayRef<Token> Toks(
980 PP.getPreprocessorAllocator().Allocate<Token>(1), 1);
981 Toks[0].startToken();
982 Toks[0].setKind(tok::annot_pragma_captured);
983 Toks[0].setLocation(NameLoc);
Tareq A. Siraj0de0dd42013-04-16 18:41:26 +0000984
David Blaikie2eabcc92016-02-09 18:52:09 +0000985 PP.EnterTokenStream(Toks, /*DisableMacroExpansion=*/true);
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000986 }
987
Francois Pichet2e11f5d2011-05-25 16:15:03 +0000988// Disable MSVC warning about runtime stack overflow.
989#ifdef _MSC_VER
990 #pragma warning(disable : 4717)
991#endif
Matthias Braun285f88d2017-04-24 18:41:00 +0000992 static void DebugOverflowStack(void (*P)() = nullptr) {
993 void (*volatile Self)(void(*P)()) = DebugOverflowStack;
994 Self(reinterpret_cast<void(*)()>(Self));
Daniel Dunbarb8068c32010-07-28 15:40:33 +0000995 }
Francois Pichet2e11f5d2011-05-25 16:15:03 +0000996#ifdef _MSC_VER
997 #pragma warning(default : 4717)
998#endif
999
Daniel Dunbarb8068c32010-07-28 15:40:33 +00001000};
1001
James Dennett18a6d792012-06-17 03:26:26 +00001002/// PragmaDiagnosticHandler - e.g. '\#pragma GCC diagnostic ignored "-Wformat"'
Chris Lattner504af112009-04-19 23:16:58 +00001003struct PragmaDiagnosticHandler : public PragmaHandler {
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001004private:
1005 const char *Namespace;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001006
Chris Lattnerfb42a182009-07-12 21:18:45 +00001007public:
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001008 explicit PragmaDiagnosticHandler(const char *NS) :
1009 PragmaHandler("diagnostic"), Namespace(NS) {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001010
Craig Topper9140dd22014-03-11 06:50:42 +00001011 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1012 Token &DiagToken) override {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00001013 SourceLocation DiagLoc = DiagToken.getLocation();
Chris Lattner504af112009-04-19 23:16:58 +00001014 Token Tok;
1015 PP.LexUnexpandedToken(Tok);
1016 if (Tok.isNot(tok::identifier)) {
Douglas Gregor3cc26482010-08-30 15:15:34 +00001017 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattner504af112009-04-19 23:16:58 +00001018 return;
1019 }
1020 IdentifierInfo *II = Tok.getIdentifierInfo();
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001021 PPCallbacks *Callbacks = PP.getPPCallbacks();
Mike Stump11289f42009-09-09 15:08:12 +00001022
Alp Toker46df1c02014-06-12 10:15:20 +00001023 if (II->isStr("pop")) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00001024 if (!PP.getDiagnostics().popMappings(DiagLoc))
Douglas Gregor3cc26482010-08-30 15:15:34 +00001025 PP.Diag(Tok, diag::warn_pragma_diagnostic_cannot_pop);
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001026 else if (Callbacks)
1027 Callbacks->PragmaDiagnosticPop(DiagLoc, Namespace);
Douglas Gregor3cc26482010-08-30 15:15:34 +00001028 return;
1029 } else if (II->isStr("push")) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +00001030 PP.getDiagnostics().pushMappings(DiagLoc);
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001031 if (Callbacks)
1032 Callbacks->PragmaDiagnosticPush(DiagLoc, Namespace);
Chris Lattnerfb42a182009-07-12 21:18:45 +00001033 return;
Alp Toker46df1c02014-06-12 10:15:20 +00001034 }
1035
1036 diag::Severity SV = llvm::StringSwitch<diag::Severity>(II->getName())
1037 .Case("ignored", diag::Severity::Ignored)
1038 .Case("warning", diag::Severity::Warning)
1039 .Case("error", diag::Severity::Error)
1040 .Case("fatal", diag::Severity::Fatal)
1041 .Default(diag::Severity());
1042
1043 if (SV == diag::Severity()) {
Douglas Gregor3cc26482010-08-30 15:15:34 +00001044 PP.Diag(Tok, diag::warn_pragma_diagnostic_invalid);
Chris Lattner504af112009-04-19 23:16:58 +00001045 return;
1046 }
Mike Stump11289f42009-09-09 15:08:12 +00001047
Chris Lattner504af112009-04-19 23:16:58 +00001048 PP.LexUnexpandedToken(Tok);
Andy Gibbs58905d22012-11-17 19:15:38 +00001049 SourceLocation StringLoc = Tok.getLocation();
Chris Lattner504af112009-04-19 23:16:58 +00001050
Andy Gibbs58905d22012-11-17 19:15:38 +00001051 std::string WarningName;
Andy Gibbsa8df57a2012-11-17 19:16:52 +00001052 if (!PP.FinishLexStringLiteral(Tok, WarningName, "pragma diagnostic",
1053 /*MacroExpansion=*/false))
Chris Lattner504af112009-04-19 23:16:58 +00001054 return;
Mike Stump11289f42009-09-09 15:08:12 +00001055
Peter Collingbourne2f1e36b2011-02-28 02:37:51 +00001056 if (Tok.isNot(tok::eod)) {
Chris Lattner504af112009-04-19 23:16:58 +00001057 PP.Diag(Tok.getLocation(), diag::warn_pragma_diagnostic_invalid_token);
1058 return;
1059 }
Mike Stump11289f42009-09-09 15:08:12 +00001060
Chris Lattner504af112009-04-19 23:16:58 +00001061 if (WarningName.size() < 3 || WarningName[0] != '-' ||
Richard Smith3be1cb22014-08-07 00:24:21 +00001062 (WarningName[1] != 'W' && WarningName[1] != 'R')) {
Andy Gibbs58905d22012-11-17 19:15:38 +00001063 PP.Diag(StringLoc, diag::warn_pragma_diagnostic_invalid_option);
Chris Lattner504af112009-04-19 23:16:58 +00001064 return;
1065 }
Mike Stump11289f42009-09-09 15:08:12 +00001066
Sunil Srivastava5239de72016-02-13 01:44:05 +00001067 diag::Flavor Flavor = WarningName[1] == 'W' ? diag::Flavor::WarningOrError
1068 : diag::Flavor::Remark;
Benjamin Kramer2193e232016-02-13 13:42:41 +00001069 StringRef Group = StringRef(WarningName).substr(2);
Sunil Srivastava5239de72016-02-13 01:44:05 +00001070 bool unknownDiag = false;
1071 if (Group == "everything") {
1072 // Special handling for pragma clang diagnostic ... "-Weverything".
1073 // There is no formal group named "everything", so there has to be a
1074 // special case for it.
1075 PP.getDiagnostics().setSeverityForAll(Flavor, SV, DiagLoc);
1076 } else
1077 unknownDiag = PP.getDiagnostics().setSeverityForGroup(Flavor, Group, SV,
1078 DiagLoc);
1079 if (unknownDiag)
Andy Gibbs58905d22012-11-17 19:15:38 +00001080 PP.Diag(StringLoc, diag::warn_pragma_diagnostic_unknown_warning)
1081 << WarningName;
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001082 else if (Callbacks)
Alp Toker46df1c02014-06-12 10:15:20 +00001083 Callbacks->PragmaDiagnostic(DiagLoc, Namespace, SV, WarningName);
Chris Lattner504af112009-04-19 23:16:58 +00001084 }
1085};
Mike Stump11289f42009-09-09 15:08:12 +00001086
Reid Kleckner881dff32013-09-13 22:00:30 +00001087/// "\#pragma warning(...)". MSVC's diagnostics do not map cleanly to clang's
1088/// diagnostics, so we don't really implement this pragma. We parse it and
1089/// ignore it to avoid -Wunknown-pragma warnings.
1090struct PragmaWarningHandler : public PragmaHandler {
1091 PragmaWarningHandler() : PragmaHandler("warning") {}
1092
Craig Topper9140dd22014-03-11 06:50:42 +00001093 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1094 Token &Tok) override {
Reid Kleckner881dff32013-09-13 22:00:30 +00001095 // Parse things like:
1096 // warning(push, 1)
1097 // warning(pop)
John Thompson4762b232013-11-16 00:16:03 +00001098 // warning(disable : 1 2 3 ; error : 4 5 6 ; suppress : 7 8 9)
Reid Kleckner881dff32013-09-13 22:00:30 +00001099 SourceLocation DiagLoc = Tok.getLocation();
1100 PPCallbacks *Callbacks = PP.getPPCallbacks();
1101
1102 PP.Lex(Tok);
1103 if (Tok.isNot(tok::l_paren)) {
1104 PP.Diag(Tok, diag::warn_pragma_warning_expected) << "(";
1105 return;
1106 }
1107
1108 PP.Lex(Tok);
1109 IdentifierInfo *II = Tok.getIdentifierInfo();
Reid Kleckner881dff32013-09-13 22:00:30 +00001110
Alexander Musman6b080fc2015-05-25 11:21:20 +00001111 if (II && II->isStr("push")) {
Reid Kleckner881dff32013-09-13 22:00:30 +00001112 // #pragma warning( push[ ,n ] )
Reid Kleckner4d185102013-10-02 15:19:23 +00001113 int Level = -1;
Reid Kleckner881dff32013-09-13 22:00:30 +00001114 PP.Lex(Tok);
1115 if (Tok.is(tok::comma)) {
1116 PP.Lex(Tok);
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001117 uint64_t Value;
1118 if (Tok.is(tok::numeric_constant) &&
1119 PP.parseSimpleIntegerLiteral(Tok, Value))
1120 Level = int(Value);
Reid Kleckner4d185102013-10-02 15:19:23 +00001121 if (Level < 0 || Level > 4) {
Reid Kleckner881dff32013-09-13 22:00:30 +00001122 PP.Diag(Tok, diag::warn_pragma_warning_push_level);
1123 return;
1124 }
1125 }
1126 if (Callbacks)
1127 Callbacks->PragmaWarningPush(DiagLoc, Level);
Alexander Musman6b080fc2015-05-25 11:21:20 +00001128 } else if (II && II->isStr("pop")) {
Reid Kleckner881dff32013-09-13 22:00:30 +00001129 // #pragma warning( pop )
1130 PP.Lex(Tok);
1131 if (Callbacks)
1132 Callbacks->PragmaWarningPop(DiagLoc);
1133 } else {
1134 // #pragma warning( warning-specifier : warning-number-list
1135 // [; warning-specifier : warning-number-list...] )
1136 while (true) {
1137 II = Tok.getIdentifierInfo();
Alexander Musman6b080fc2015-05-25 11:21:20 +00001138 if (!II && !Tok.is(tok::numeric_constant)) {
Reid Kleckner881dff32013-09-13 22:00:30 +00001139 PP.Diag(Tok, diag::warn_pragma_warning_spec_invalid);
1140 return;
1141 }
1142
1143 // Figure out which warning specifier this is.
Alexander Musman6b080fc2015-05-25 11:21:20 +00001144 bool SpecifierValid;
1145 StringRef Specifier;
1146 llvm::SmallString<1> SpecifierBuf;
1147 if (II) {
1148 Specifier = II->getName();
1149 SpecifierValid = llvm::StringSwitch<bool>(Specifier)
1150 .Cases("default", "disable", "error", "once",
1151 "suppress", true)
1152 .Default(false);
1153 // If we read a correct specifier, snatch next token (that should be
1154 // ":", checked later).
1155 if (SpecifierValid)
1156 PP.Lex(Tok);
1157 } else {
1158 // Token is a numeric constant. It should be either 1, 2, 3 or 4.
1159 uint64_t Value;
1160 Specifier = PP.getSpelling(Tok, SpecifierBuf);
1161 if (PP.parseSimpleIntegerLiteral(Tok, Value)) {
1162 SpecifierValid = (Value >= 1) && (Value <= 4);
1163 } else
1164 SpecifierValid = false;
1165 // Next token already snatched by parseSimpleIntegerLiteral.
1166 }
1167
Reid Kleckner881dff32013-09-13 22:00:30 +00001168 if (!SpecifierValid) {
1169 PP.Diag(Tok, diag::warn_pragma_warning_spec_invalid);
1170 return;
1171 }
Reid Kleckner881dff32013-09-13 22:00:30 +00001172 if (Tok.isNot(tok::colon)) {
1173 PP.Diag(Tok, diag::warn_pragma_warning_expected) << ":";
1174 return;
1175 }
1176
1177 // Collect the warning ids.
1178 SmallVector<int, 4> Ids;
1179 PP.Lex(Tok);
1180 while (Tok.is(tok::numeric_constant)) {
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001181 uint64_t Value;
1182 if (!PP.parseSimpleIntegerLiteral(Tok, Value) || Value == 0 ||
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001183 Value > std::numeric_limits<int>::max()) {
Reid Kleckner881dff32013-09-13 22:00:30 +00001184 PP.Diag(Tok, diag::warn_pragma_warning_expected_number);
1185 return;
1186 }
Reid Klecknerc0dca6d2014-02-12 23:50:26 +00001187 Ids.push_back(int(Value));
Reid Kleckner881dff32013-09-13 22:00:30 +00001188 }
1189 if (Callbacks)
1190 Callbacks->PragmaWarning(DiagLoc, Specifier, Ids);
1191
1192 // Parse the next specifier if there is a semicolon.
1193 if (Tok.isNot(tok::semi))
1194 break;
1195 PP.Lex(Tok);
1196 }
1197 }
1198
1199 if (Tok.isNot(tok::r_paren)) {
1200 PP.Diag(Tok, diag::warn_pragma_warning_expected) << ")";
1201 return;
1202 }
1203
1204 PP.Lex(Tok);
1205 if (Tok.isNot(tok::eod))
1206 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma warning";
1207 }
1208};
1209
James Dennett18a6d792012-06-17 03:26:26 +00001210/// PragmaIncludeAliasHandler - "\#pragma include_alias("...")".
Aaron Ballman611306e2012-03-02 22:51:54 +00001211struct PragmaIncludeAliasHandler : public PragmaHandler {
1212 PragmaIncludeAliasHandler() : PragmaHandler("include_alias") {}
Craig Topper9140dd22014-03-11 06:50:42 +00001213 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1214 Token &IncludeAliasTok) override {
Reid Kleckner881dff32013-09-13 22:00:30 +00001215 PP.HandlePragmaIncludeAlias(IncludeAliasTok);
Aaron Ballman611306e2012-03-02 22:51:54 +00001216 }
1217};
1218
Andy Gibbs9c2ccd62013-04-17 16:16:16 +00001219/// PragmaMessageHandler - Handle the microsoft and gcc \#pragma message
1220/// extension. The syntax is:
1221/// \code
1222/// #pragma message(string)
1223/// \endcode
1224/// OR, in GCC mode:
1225/// \code
1226/// #pragma message string
1227/// \endcode
1228/// string is a string, which is fully macro expanded, and permits string
1229/// concatenation, embedded escape characters, etc... See MSDN for more details.
1230/// Also handles \#pragma GCC warning and \#pragma GCC error which take the same
1231/// form as \#pragma message.
Chris Lattner30c924b2010-06-26 17:11:39 +00001232struct PragmaMessageHandler : public PragmaHandler {
Andy Gibbs9c2ccd62013-04-17 16:16:16 +00001233private:
1234 const PPCallbacks::PragmaMessageKind Kind;
1235 const StringRef Namespace;
1236
1237 static const char* PragmaKind(PPCallbacks::PragmaMessageKind Kind,
1238 bool PragmaNameOnly = false) {
1239 switch (Kind) {
1240 case PPCallbacks::PMK_Message:
1241 return PragmaNameOnly ? "message" : "pragma message";
1242 case PPCallbacks::PMK_Warning:
1243 return PragmaNameOnly ? "warning" : "pragma warning";
1244 case PPCallbacks::PMK_Error:
1245 return PragmaNameOnly ? "error" : "pragma error";
1246 }
1247 llvm_unreachable("Unknown PragmaMessageKind!");
1248 }
1249
1250public:
1251 PragmaMessageHandler(PPCallbacks::PragmaMessageKind Kind,
1252 StringRef Namespace = StringRef())
1253 : PragmaHandler(PragmaKind(Kind, true)), Kind(Kind), Namespace(Namespace) {}
1254
Craig Topper9140dd22014-03-11 06:50:42 +00001255 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1256 Token &Tok) override {
Andy Gibbs9c2ccd62013-04-17 16:16:16 +00001257 SourceLocation MessageLoc = Tok.getLocation();
1258 PP.Lex(Tok);
1259 bool ExpectClosingParen = false;
1260 switch (Tok.getKind()) {
1261 case tok::l_paren:
1262 // We have a MSVC style pragma message.
1263 ExpectClosingParen = true;
1264 // Read the string.
1265 PP.Lex(Tok);
1266 break;
1267 case tok::string_literal:
1268 // We have a GCC style pragma message, and we just read the string.
1269 break;
1270 default:
1271 PP.Diag(MessageLoc, diag::err_pragma_message_malformed) << Kind;
1272 return;
1273 }
1274
1275 std::string MessageString;
1276 if (!PP.FinishLexStringLiteral(Tok, MessageString, PragmaKind(Kind),
1277 /*MacroExpansion=*/true))
1278 return;
1279
1280 if (ExpectClosingParen) {
1281 if (Tok.isNot(tok::r_paren)) {
1282 PP.Diag(Tok.getLocation(), diag::err_pragma_message_malformed) << Kind;
1283 return;
1284 }
1285 PP.Lex(Tok); // eat the r_paren.
1286 }
1287
1288 if (Tok.isNot(tok::eod)) {
1289 PP.Diag(Tok.getLocation(), diag::err_pragma_message_malformed) << Kind;
1290 return;
1291 }
1292
1293 // Output the message.
1294 PP.Diag(MessageLoc, (Kind == PPCallbacks::PMK_Error)
1295 ? diag::err_pragma_message
1296 : diag::warn_pragma_message) << MessageString;
1297
1298 // If the pragma is lexically sound, notify any interested PPCallbacks.
1299 if (PPCallbacks *Callbacks = PP.getPPCallbacks())
1300 Callbacks->PragmaMessage(MessageLoc, Namespace, Kind, MessageString);
Chris Lattner30c924b2010-06-26 17:11:39 +00001301 }
1302};
1303
Richard Smithd1386302017-05-04 00:29:54 +00001304static bool LexModuleName(
1305 Preprocessor &PP, Token &Tok,
1306 llvm::SmallVectorImpl<std::pair<IdentifierInfo *, SourceLocation>>
1307 &ModuleName) {
1308 while (true) {
1309 PP.LexUnexpandedToken(Tok);
Richard Smithce037322017-05-05 22:34:07 +00001310 if (Tok.isAnnotation() || !Tok.getIdentifierInfo()) {
Richard Smithd1386302017-05-04 00:29:54 +00001311 PP.Diag(Tok.getLocation(), diag::err_pp_expected_module_name)
1312 << ModuleName.empty();
1313 return true;
1314 }
1315
1316 ModuleName.emplace_back(Tok.getIdentifierInfo(), Tok.getLocation());
1317
1318 PP.LexUnexpandedToken(Tok);
1319 if (Tok.isNot(tok::period))
1320 return false;
1321 }
1322}
1323
Richard Smithc51c38b2017-04-29 00:34:47 +00001324/// Handle the clang \#pragma module import extension. The syntax is:
1325/// \code
1326/// #pragma clang module import some.module.name
1327/// \endcode
1328struct PragmaModuleImportHandler : public PragmaHandler {
1329 PragmaModuleImportHandler() : PragmaHandler("import") {}
1330
1331 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
Richard Smithd1386302017-05-04 00:29:54 +00001332 Token &Tok) override {
1333 SourceLocation ImportLoc = Tok.getLocation();
1334
1335 // Read the module name.
1336 llvm::SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 8>
1337 ModuleName;
1338 if (LexModuleName(PP, Tok, ModuleName))
1339 return;
1340
1341 if (Tok.isNot(tok::eod))
1342 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1343
1344 // If we have a non-empty module path, load the named module.
1345 Module *Imported =
1346 PP.getModuleLoader().loadModule(ImportLoc, ModuleName, Module::Hidden,
1347 /*IsIncludeDirective=*/false);
1348 if (!Imported)
1349 return;
1350
1351 PP.makeModuleVisible(Imported, ImportLoc);
1352 PP.EnterAnnotationToken(SourceRange(ImportLoc, ModuleName.back().second),
1353 tok::annot_module_include, Imported);
1354 if (auto *CB = PP.getPPCallbacks())
1355 CB->moduleImport(ImportLoc, ModuleName, Imported);
1356 }
1357};
1358
1359/// Handle the clang \#pragma module begin extension. The syntax is:
1360/// \code
1361/// #pragma clang module begin some.module.name
1362/// ...
1363/// #pragma clang module end
1364/// \endcode
1365struct PragmaModuleBeginHandler : public PragmaHandler {
1366 PragmaModuleBeginHandler() : PragmaHandler("begin") {}
1367
1368 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1369 Token &Tok) override {
1370 SourceLocation BeginLoc = Tok.getLocation();
1371
1372 // Read the module name.
1373 llvm::SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 8>
1374 ModuleName;
1375 if (LexModuleName(PP, Tok, ModuleName))
1376 return;
1377
1378 if (Tok.isNot(tok::eod))
1379 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1380
1381 // We can only enter submodules of the current module.
1382 StringRef Current = PP.getLangOpts().CurrentModule;
1383 if (ModuleName.front().first->getName() != Current) {
1384 PP.Diag(ModuleName.front().second, diag::err_pp_module_begin_wrong_module)
1385 << ModuleName.front().first << (ModuleName.size() > 1)
1386 << Current.empty() << Current;
1387 return;
1388 }
1389
1390 // Find the module we're entering. We require that a module map for it
1391 // be loaded or implicitly loadable.
1392 // FIXME: We could create the submodule here. We'd need to know whether
1393 // it's supposed to be explicit, but not much else.
1394 Module *M = PP.getHeaderSearchInfo().getModuleMap().findModule(Current);
1395 if (!M) {
1396 PP.Diag(ModuleName.front().second,
1397 diag::err_pp_module_begin_no_module_map) << Current;
1398 return;
1399 }
1400 for (unsigned I = 1; I != ModuleName.size(); ++I) {
1401 auto *NewM = M->findSubmodule(ModuleName[I].first->getName());
1402 if (!NewM) {
1403 PP.Diag(ModuleName[I].second, diag::err_pp_module_begin_no_submodule)
1404 << M->getFullModuleName() << ModuleName[I].first;
1405 return;
1406 }
1407 M = NewM;
1408 }
1409
1410 // Enter the scope of the submodule.
1411 PP.EnterSubmodule(M, BeginLoc, /*ForPragma*/true);
1412 PP.EnterAnnotationToken(SourceRange(BeginLoc, ModuleName.back().second),
1413 tok::annot_module_begin, M);
1414 }
1415};
1416
1417/// Handle the clang \#pragma module end extension.
1418struct PragmaModuleEndHandler : public PragmaHandler {
1419 PragmaModuleEndHandler() : PragmaHandler("end") {}
1420
1421 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1422 Token &Tok) override {
1423 SourceLocation Loc = Tok.getLocation();
1424
1425 PP.LexUnexpandedToken(Tok);
1426 if (Tok.isNot(tok::eod))
1427 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1428
1429 Module *M = PP.LeaveSubmodule(/*ForPragma*/true);
1430 if (M)
1431 PP.EnterAnnotationToken(SourceRange(Loc), tok::annot_module_end, M);
1432 else
1433 PP.Diag(Loc, diag::err_pp_module_end_without_module_begin);
Richard Smithc51c38b2017-04-29 00:34:47 +00001434 }
1435};
1436
James Dennett18a6d792012-06-17 03:26:26 +00001437/// PragmaPushMacroHandler - "\#pragma push_macro" saves the value of the
Chris Lattnerc0a585d2010-08-17 15:55:45 +00001438/// macro on the top of the stack.
1439struct PragmaPushMacroHandler : public PragmaHandler {
1440 PragmaPushMacroHandler() : PragmaHandler("push_macro") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001441
Craig Topper9140dd22014-03-11 06:50:42 +00001442 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1443 Token &PushMacroTok) override {
Chris Lattnerc0a585d2010-08-17 15:55:45 +00001444 PP.HandlePragmaPushMacro(PushMacroTok);
1445 }
1446};
1447
James Dennett18a6d792012-06-17 03:26:26 +00001448/// PragmaPopMacroHandler - "\#pragma pop_macro" sets the value of the
Chris Lattnerc0a585d2010-08-17 15:55:45 +00001449/// macro to the value on the top of the stack.
1450struct PragmaPopMacroHandler : public PragmaHandler {
1451 PragmaPopMacroHandler() : PragmaHandler("pop_macro") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001452
Craig Topper9140dd22014-03-11 06:50:42 +00001453 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1454 Token &PopMacroTok) override {
Chris Lattnerc0a585d2010-08-17 15:55:45 +00001455 PP.HandlePragmaPopMacro(PopMacroTok);
1456 }
1457};
1458
Chris Lattner958ee042009-04-19 21:20:35 +00001459// Pragma STDC implementations.
Chris Lattner02ef4e32009-04-19 21:50:08 +00001460
James Dennett18a6d792012-06-17 03:26:26 +00001461/// PragmaSTDC_FENV_ACCESSHandler - "\#pragma STDC FENV_ACCESS ...".
Chris Lattner958ee042009-04-19 21:20:35 +00001462struct PragmaSTDC_FENV_ACCESSHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001463 PragmaSTDC_FENV_ACCESSHandler() : PragmaHandler("FENV_ACCESS") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001464
Craig Topper9140dd22014-03-11 06:50:42 +00001465 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1466 Token &Tok) override {
Peter Collingbourne3bffa522011-02-14 01:42:24 +00001467 tok::OnOffSwitch OOS;
1468 if (PP.LexOnOffSwitch(OOS))
1469 return;
1470 if (OOS == tok::OOS_ON)
Chris Lattnerdf222682009-04-19 21:55:32 +00001471 PP.Diag(Tok, diag::warn_stdc_fenv_access_not_supported);
Chris Lattner958ee042009-04-19 21:20:35 +00001472 }
1473};
Mike Stump11289f42009-09-09 15:08:12 +00001474
James Dennett18a6d792012-06-17 03:26:26 +00001475/// PragmaSTDC_CX_LIMITED_RANGEHandler - "\#pragma STDC CX_LIMITED_RANGE ...".
Chris Lattner958ee042009-04-19 21:20:35 +00001476struct PragmaSTDC_CX_LIMITED_RANGEHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001477 PragmaSTDC_CX_LIMITED_RANGEHandler()
1478 : PragmaHandler("CX_LIMITED_RANGE") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001479
Craig Topper9140dd22014-03-11 06:50:42 +00001480 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1481 Token &Tok) override {
Peter Collingbourne3bffa522011-02-14 01:42:24 +00001482 tok::OnOffSwitch OOS;
1483 PP.LexOnOffSwitch(OOS);
Chris Lattner958ee042009-04-19 21:20:35 +00001484 }
1485};
Mike Stump11289f42009-09-09 15:08:12 +00001486
James Dennett18a6d792012-06-17 03:26:26 +00001487/// PragmaSTDC_UnknownHandler - "\#pragma STDC ...".
Chris Lattner958ee042009-04-19 21:20:35 +00001488struct PragmaSTDC_UnknownHandler : public PragmaHandler {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001489 PragmaSTDC_UnknownHandler() {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001490
Craig Topper9140dd22014-03-11 06:50:42 +00001491 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1492 Token &UnknownTok) override {
Chris Lattner02ef4e32009-04-19 21:50:08 +00001493 // C99 6.10.6p2, unknown forms are not allowed.
Chris Lattnera0b1f762009-04-19 21:25:37 +00001494 PP.Diag(UnknownTok, diag::ext_stdc_pragma_ignored);
Chris Lattner958ee042009-04-19 21:20:35 +00001495 }
1496};
Mike Stump11289f42009-09-09 15:08:12 +00001497
John McCall32f5fe12011-09-30 05:12:12 +00001498/// PragmaARCCFCodeAuditedHandler -
James Dennett18a6d792012-06-17 03:26:26 +00001499/// \#pragma clang arc_cf_code_audited begin/end
John McCall32f5fe12011-09-30 05:12:12 +00001500struct PragmaARCCFCodeAuditedHandler : public PragmaHandler {
1501 PragmaARCCFCodeAuditedHandler() : PragmaHandler("arc_cf_code_audited") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001502
Craig Topper9140dd22014-03-11 06:50:42 +00001503 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1504 Token &NameTok) override {
John McCall32f5fe12011-09-30 05:12:12 +00001505 SourceLocation Loc = NameTok.getLocation();
1506 bool IsBegin;
1507
1508 Token Tok;
1509
1510 // Lex the 'begin' or 'end'.
1511 PP.LexUnexpandedToken(Tok);
1512 const IdentifierInfo *BeginEnd = Tok.getIdentifierInfo();
1513 if (BeginEnd && BeginEnd->isStr("begin")) {
1514 IsBegin = true;
1515 } else if (BeginEnd && BeginEnd->isStr("end")) {
1516 IsBegin = false;
1517 } else {
1518 PP.Diag(Tok.getLocation(), diag::err_pp_arc_cf_code_audited_syntax);
1519 return;
1520 }
1521
1522 // Verify that this is followed by EOD.
1523 PP.LexUnexpandedToken(Tok);
1524 if (Tok.isNot(tok::eod))
1525 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1526
1527 // The start location of the active audit.
1528 SourceLocation BeginLoc = PP.getPragmaARCCFCodeAuditedLoc();
1529
1530 // The start location we want after processing this.
1531 SourceLocation NewLoc;
1532
1533 if (IsBegin) {
1534 // Complain about attempts to re-enter an audit.
1535 if (BeginLoc.isValid()) {
1536 PP.Diag(Loc, diag::err_pp_double_begin_of_arc_cf_code_audited);
1537 PP.Diag(BeginLoc, diag::note_pragma_entered_here);
1538 }
1539 NewLoc = Loc;
1540 } else {
1541 // Complain about attempts to leave an audit that doesn't exist.
1542 if (!BeginLoc.isValid()) {
1543 PP.Diag(Loc, diag::err_pp_unmatched_end_of_arc_cf_code_audited);
1544 return;
1545 }
1546 NewLoc = SourceLocation();
1547 }
1548
1549 PP.setPragmaARCCFCodeAuditedLoc(NewLoc);
1550 }
1551};
1552
Douglas Gregor2a20bd12015-06-19 18:25:57 +00001553/// PragmaAssumeNonNullHandler -
1554/// \#pragma clang assume_nonnull begin/end
1555struct PragmaAssumeNonNullHandler : public PragmaHandler {
1556 PragmaAssumeNonNullHandler() : PragmaHandler("assume_nonnull") {}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001557
Douglas Gregor2a20bd12015-06-19 18:25:57 +00001558 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1559 Token &NameTok) override {
1560 SourceLocation Loc = NameTok.getLocation();
1561 bool IsBegin;
1562
1563 Token Tok;
1564
1565 // Lex the 'begin' or 'end'.
1566 PP.LexUnexpandedToken(Tok);
1567 const IdentifierInfo *BeginEnd = Tok.getIdentifierInfo();
1568 if (BeginEnd && BeginEnd->isStr("begin")) {
1569 IsBegin = true;
1570 } else if (BeginEnd && BeginEnd->isStr("end")) {
1571 IsBegin = false;
1572 } else {
1573 PP.Diag(Tok.getLocation(), diag::err_pp_assume_nonnull_syntax);
1574 return;
1575 }
1576
1577 // Verify that this is followed by EOD.
1578 PP.LexUnexpandedToken(Tok);
1579 if (Tok.isNot(tok::eod))
1580 PP.Diag(Tok, diag::ext_pp_extra_tokens_at_eol) << "pragma";
1581
1582 // The start location of the active audit.
1583 SourceLocation BeginLoc = PP.getPragmaAssumeNonNullLoc();
1584
1585 // The start location we want after processing this.
1586 SourceLocation NewLoc;
1587
1588 if (IsBegin) {
1589 // Complain about attempts to re-enter an audit.
1590 if (BeginLoc.isValid()) {
1591 PP.Diag(Loc, diag::err_pp_double_begin_of_assume_nonnull);
1592 PP.Diag(BeginLoc, diag::note_pragma_entered_here);
1593 }
1594 NewLoc = Loc;
1595 } else {
1596 // Complain about attempts to leave an audit that doesn't exist.
1597 if (!BeginLoc.isValid()) {
1598 PP.Diag(Loc, diag::err_pp_unmatched_end_of_assume_nonnull);
1599 return;
1600 }
1601 NewLoc = SourceLocation();
1602 }
1603
1604 PP.setPragmaAssumeNonNullLoc(NewLoc);
1605 }
1606};
1607
David Majnemer7aa8c2f2013-06-30 08:18:16 +00001608/// \brief Handle "\#pragma region [...]"
1609///
1610/// The syntax is
1611/// \code
1612/// #pragma region [optional name]
1613/// #pragma endregion [optional comment]
1614/// \endcode
1615///
1616/// \note This is
1617/// <a href="http://msdn.microsoft.com/en-us/library/b6xkz944(v=vs.80).aspx">editor-only</a>
1618/// pragma, just skipped by compiler.
1619struct PragmaRegionHandler : public PragmaHandler {
1620 PragmaRegionHandler(const char *pragma) : PragmaHandler(pragma) { }
Aaron Ballman406ea512012-11-30 19:52:30 +00001621
Craig Topper9140dd22014-03-11 06:50:42 +00001622 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
1623 Token &NameTok) override {
David Majnemer7aa8c2f2013-06-30 08:18:16 +00001624 // #pragma region: endregion matches can be verified
1625 // __pragma(region): no sense, but ignored by msvc
1626 // _Pragma is not valid for MSVC, but there isn't any point
1627 // to handle a _Pragma differently.
1628 }
1629};
Aaron Ballman406ea512012-11-30 19:52:30 +00001630
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001631} // end anonymous namespace
Chris Lattnerb694ba72006-07-02 22:41:36 +00001632
1633/// RegisterBuiltinPragmas - Install the standard preprocessor pragmas:
James Dennett18a6d792012-06-17 03:26:26 +00001634/// \#pragma GCC poison/system_header/dependency and \#pragma once.
Chris Lattnerb694ba72006-07-02 22:41:36 +00001635void Preprocessor::RegisterBuiltinPragmas() {
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001636 AddPragmaHandler(new PragmaOnceHandler());
1637 AddPragmaHandler(new PragmaMarkHandler());
Chris Lattnerc0a585d2010-08-17 15:55:45 +00001638 AddPragmaHandler(new PragmaPushMacroHandler());
1639 AddPragmaHandler(new PragmaPopMacroHandler());
Andy Gibbs9c2ccd62013-04-17 16:16:16 +00001640 AddPragmaHandler(new PragmaMessageHandler(PPCallbacks::PMK_Message));
Mike Stump11289f42009-09-09 15:08:12 +00001641
Chris Lattnerb61448d2009-05-12 18:21:11 +00001642 // #pragma GCC ...
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001643 AddPragmaHandler("GCC", new PragmaPoisonHandler());
1644 AddPragmaHandler("GCC", new PragmaSystemHeaderHandler());
1645 AddPragmaHandler("GCC", new PragmaDependencyHandler());
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001646 AddPragmaHandler("GCC", new PragmaDiagnosticHandler("GCC"));
Andy Gibbs9c2ccd62013-04-17 16:16:16 +00001647 AddPragmaHandler("GCC", new PragmaMessageHandler(PPCallbacks::PMK_Warning,
1648 "GCC"));
1649 AddPragmaHandler("GCC", new PragmaMessageHandler(PPCallbacks::PMK_Error,
1650 "GCC"));
Chris Lattnerb61448d2009-05-12 18:21:11 +00001651 // #pragma clang ...
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001652 AddPragmaHandler("clang", new PragmaPoisonHandler());
1653 AddPragmaHandler("clang", new PragmaSystemHeaderHandler());
Daniel Dunbarb8068c32010-07-28 15:40:33 +00001654 AddPragmaHandler("clang", new PragmaDebugHandler());
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001655 AddPragmaHandler("clang", new PragmaDependencyHandler());
Douglas Gregor3bde9b12011-06-22 19:41:48 +00001656 AddPragmaHandler("clang", new PragmaDiagnosticHandler("clang"));
John McCall32f5fe12011-09-30 05:12:12 +00001657 AddPragmaHandler("clang", new PragmaARCCFCodeAuditedHandler());
Douglas Gregor2a20bd12015-06-19 18:25:57 +00001658 AddPragmaHandler("clang", new PragmaAssumeNonNullHandler());
Chris Lattnerb61448d2009-05-12 18:21:11 +00001659
Richard Smithc51c38b2017-04-29 00:34:47 +00001660 // #pragma clang module ...
1661 auto *ModuleHandler = new PragmaNamespace("module");
1662 AddPragmaHandler("clang", ModuleHandler);
1663 ModuleHandler->AddPragma(new PragmaModuleImportHandler());
Richard Smithd1386302017-05-04 00:29:54 +00001664 ModuleHandler->AddPragma(new PragmaModuleBeginHandler());
1665 ModuleHandler->AddPragma(new PragmaModuleEndHandler());
Richard Smithc51c38b2017-04-29 00:34:47 +00001666
Argyrios Kyrtzidis36745fd2010-07-13 09:07:17 +00001667 AddPragmaHandler("STDC", new PragmaSTDC_FENV_ACCESSHandler());
1668 AddPragmaHandler("STDC", new PragmaSTDC_CX_LIMITED_RANGEHandler());
Chris Lattner958ee042009-04-19 21:20:35 +00001669 AddPragmaHandler("STDC", new PragmaSTDC_UnknownHandler());
Mike Stump11289f42009-09-09 15:08:12 +00001670
Chris Lattner2ff698d2009-01-16 08:21:25 +00001671 // MS extensions.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001672 if (LangOpts.MicrosoftExt) {
Reid Kleckner881dff32013-09-13 22:00:30 +00001673 AddPragmaHandler(new PragmaWarningHandler());
Aaron Ballman611306e2012-03-02 22:51:54 +00001674 AddPragmaHandler(new PragmaIncludeAliasHandler());
Aaron Ballman406ea512012-11-30 19:52:30 +00001675 AddPragmaHandler(new PragmaRegionHandler("region"));
1676 AddPragmaHandler(new PragmaRegionHandler("endregion"));
Chris Lattner30c924b2010-06-26 17:11:39 +00001677 }
John Brawn8e62db32016-04-04 14:22:58 +00001678
1679 // Pragmas added by plugins
1680 for (PragmaHandlerRegistry::iterator it = PragmaHandlerRegistry::begin(),
1681 ie = PragmaHandlerRegistry::end();
1682 it != ie; ++it) {
1683 AddPragmaHandler(it->instantiate().release());
1684 }
Chris Lattnerb694ba72006-07-02 22:41:36 +00001685}
Lubos Lunak576a0412014-05-01 12:54:03 +00001686
1687/// Ignore all pragmas, useful for modes such as -Eonly which would otherwise
1688/// warn about those pragmas being unknown.
1689void Preprocessor::IgnorePragmas() {
1690 AddPragmaHandler(new EmptyPragmaHandler());
1691 // Also ignore all pragmas in all namespaces created
1692 // in Preprocessor::RegisterBuiltinPragmas().
1693 AddPragmaHandler("GCC", new EmptyPragmaHandler());
1694 AddPragmaHandler("clang", new EmptyPragmaHandler());
1695 if (PragmaHandler *NS = PragmaHandlers->FindHandler("STDC")) {
1696 // Preprocessor::RegisterBuiltinPragmas() already registers
1697 // PragmaSTDC_UnknownHandler as the empty handler, so remove it first,
1698 // otherwise there will be an assert about a duplicate handler.
1699 PragmaNamespace *STDCNamespace = NS->getIfNamespace();
1700 assert(STDCNamespace &&
1701 "Invalid namespace, registered as a regular pragma handler!");
1702 if (PragmaHandler *Existing = STDCNamespace->FindHandler("", false)) {
1703 RemovePragmaHandler("STDC", Existing);
Chandler Carruth4d9c3df2014-05-02 21:44:48 +00001704 delete Existing;
Lubos Lunak576a0412014-05-01 12:54:03 +00001705 }
1706 }
1707 AddPragmaHandler("STDC", new EmptyPragmaHandler());
1708}