blob: 29956c9f584574372a16bb4d0cf552f443d290d9 [file] [log] [blame]
Chris Lattner22eb9722006-06-18 05:43:12 +00001//===--- Preprocess.cpp - C Language Family Preprocessor Implementation ---===//
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 Lattner22eb9722006-06-18 05:43:12 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Preprocessor interface.
11//
12//===----------------------------------------------------------------------===//
13//
Chris Lattner22eb9722006-06-18 05:43:12 +000014// Options to support:
15// -H - Print the name of each header file used.
Chris Lattner1630c3c2009-02-06 06:45:26 +000016// -d[DNI] - Dump various things.
Chris Lattner22eb9722006-06-18 05:43:12 +000017// -fworking-directory - #line's with preprocessor's working dir.
18// -fpreprocessed
19// -dependency-file,-M,-MM,-MF,-MG,-MP,-MT,-MQ,-MD,-MMD
20// -W*
21// -w
22//
23// Messages to emit:
24// "Multiple include guards may be useful for:\n"
25//
Chris Lattner22eb9722006-06-18 05:43:12 +000026//===----------------------------------------------------------------------===//
27
28#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000029#include "clang/Basic/FileManager.h"
David Blaikie23430cc2014-08-11 21:29:24 +000030#include "clang/Basic/FileSystemStatCache.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000031#include "clang/Basic/SourceManager.h"
32#include "clang/Basic/TargetInfo.h"
33#include "clang/Lex/CodeCompletionHandler.h"
Douglas Gregor9882a5a2010-01-04 19:18:44 +000034#include "clang/Lex/ExternalPreprocessorSource.h"
Chris Lattner07b019a2006-10-22 07:28:56 +000035#include "clang/Lex/HeaderSearch.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000036#include "clang/Lex/LexDiagnostic.h"
37#include "clang/Lex/LiteralSupport.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000038#include "clang/Lex/MacroArgs.h"
Chris Lattner22eb9722006-06-18 05:43:12 +000039#include "clang/Lex/MacroInfo.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000040#include "clang/Lex/ModuleLoader.h"
Chris Lattnerb8761832006-06-24 21:31:03 +000041#include "clang/Lex/Pragma.h"
Douglas Gregor7f6d60d2010-03-19 16:15:56 +000042#include "clang/Lex/PreprocessingRecord.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000043#include "clang/Lex/PreprocessorOptions.h"
Chris Lattner0b8cfc22006-06-28 06:49:17 +000044#include "clang/Lex/ScratchBuffer.h"
Chris Lattner5cd83512008-10-05 20:40:30 +000045#include "llvm/ADT/APFloat.h"
Jordan Rose7f43ddd2013-01-24 20:50:46 +000046#include "llvm/ADT/STLExtras.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000047#include "llvm/ADT/SmallString.h"
Jordan Rose7f43ddd2013-01-24 20:50:46 +000048#include "llvm/ADT/StringExtras.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000049#include "llvm/Support/Capacity.h"
Dmitri Gribenko9feeef42013-01-30 12:06:08 +000050#include "llvm/Support/ConvertUTF.h"
Chris Lattner8a7003c2007-07-16 06:48:38 +000051#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer89b422c2009-08-23 12:08:50 +000052#include "llvm/Support/raw_ostream.h"
Chris Lattner22eb9722006-06-18 05:43:12 +000053using namespace clang;
54
55//===----------------------------------------------------------------------===//
Douglas Gregor9882a5a2010-01-04 19:18:44 +000056ExternalPreprocessorSource::~ExternalPreprocessorSource() { }
Chris Lattner22eb9722006-06-18 05:43:12 +000057
Dmitri Gribenkof8579502013-01-12 19:30:44 +000058Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
Douglas Gregor1452ff12012-10-24 17:46:57 +000059 DiagnosticsEngine &diags, LangOptions &opts,
Alp Toker96637802014-05-02 03:43:38 +000060 SourceManager &SM, HeaderSearch &Headers,
61 ModuleLoader &TheModuleLoader,
David Blaikie687cd952013-01-16 23:13:36 +000062 IdentifierInfoLookup *IILookup, bool OwnsHeaders,
Alp Toker1ae02f62014-05-02 03:43:30 +000063 TranslationUnitKind TUKind)
Craig Topper4b566922014-06-09 02:04:02 +000064 : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(nullptr),
David Blaikie687cd952013-01-16 23:13:36 +000065 FileMgr(Headers.getFileMgr()), SourceMgr(SM), HeaderInfo(Headers),
Craig Topperd2d442c2014-05-17 23:10:59 +000066 TheModuleLoader(TheModuleLoader), ExternalSource(nullptr),
Alp Toker96637802014-05-02 03:43:38 +000067 Identifiers(opts, IILookup), IncrementalProcessing(false), TUKind(TUKind),
Craig Topperd2d442c2014-05-17 23:10:59 +000068 CodeComplete(nullptr), CodeCompletionFile(nullptr),
69 CodeCompletionOffset(0), LastTokenWasAt(false),
70 ModuleImportExpectsIdentifier(false), CodeCompletionReached(0),
71 SkipMainFilePreamble(0, true), CurPPLexer(nullptr),
72 CurDirLookup(nullptr), CurLexerKind(CLK_Lexer), CurSubmodule(nullptr),
73 Callbacks(nullptr), MacroArgCache(nullptr), Record(nullptr),
Richard Smithee0c4c12014-07-24 01:13:23 +000074 MIChainHead(nullptr), DeserialMIChainHead(nullptr) {
Daniel Dunbar0c6c9302009-11-11 21:44:21 +000075 OwnsHeaderSearch = OwnsHeaders;
Douglas Gregor83297df2011-09-01 23:39:15 +000076
77 ScratchBuf = new ScratchBuffer(SourceMgr);
78 CounterValue = 0; // __COUNTER__ starts at 0.
79
80 // Clear stats.
81 NumDirectives = NumDefined = NumUndefined = NumPragma = 0;
82 NumIf = NumElse = NumEndif = 0;
83 NumEnteredSourceFiles = 0;
84 NumMacroExpanded = NumFnMacroExpanded = NumBuiltinMacroExpanded = 0;
85 NumFastMacroExpanded = NumTokenPaste = NumFastTokenPaste = 0;
86 MaxIncludeStackDepth = 0;
87 NumSkipped = 0;
88
89 // Default to discarding comments.
90 KeepComments = false;
91 KeepMacroComments = false;
92 SuppressIncludeNotFoundError = false;
93
94 // Macro expansion is enabled.
95 DisableMacroExpansion = false;
David Blaikied5321242012-06-06 18:52:13 +000096 MacroExpansionInDirectivesOverride = false;
Douglas Gregor83297df2011-09-01 23:39:15 +000097 InMacroArgs = false;
Argyrios Kyrtzidisf1b64c62012-04-03 16:47:40 +000098 InMacroArgPreExpansion = false;
Douglas Gregor83297df2011-09-01 23:39:15 +000099 NumCachedTokenLexers = 0;
Jordan Rosede1a2922012-06-08 18:06:21 +0000100 PragmasEnabled = true;
Eric Christopher5e4696d2013-01-16 20:09:36 +0000101 ParsingIfOrElifDirective = false;
Jordan Rose324ec422013-01-31 19:26:01 +0000102 PreprocessedOutput = false;
Jordan Rosede1a2922012-06-08 18:06:21 +0000103
Douglas Gregor83297df2011-09-01 23:39:15 +0000104 CachedLexPos = 0;
Eric Christopher5e4696d2013-01-16 20:09:36 +0000105
Douglas Gregor83297df2011-09-01 23:39:15 +0000106 // We haven't read anything from the external source.
107 ReadMacrosFromExternalSource = false;
108
Douglas Gregor83297df2011-09-01 23:39:15 +0000109 // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
110 // This gets unpoisoned where it is allowed.
111 (Ident__VA_ARGS__ = getIdentifierInfo("__VA_ARGS__"))->setIsPoisoned();
112 SetPoisonReason(Ident__VA_ARGS__,diag::ext_pp_bad_vaargs_use);
113
114 // Initialize the pragma handlers.
115 PragmaHandlers = new PragmaNamespace(StringRef());
116 RegisterBuiltinPragmas();
117
118 // Initialize builtin macros like __LINE__ and friends.
119 RegisterBuiltinMacros();
120
David Blaikiebbafb8a2012-03-11 07:00:24 +0000121 if(LangOpts.Borland) {
Douglas Gregor83297df2011-09-01 23:39:15 +0000122 Ident__exception_info = getIdentifierInfo("_exception_info");
123 Ident___exception_info = getIdentifierInfo("__exception_info");
124 Ident_GetExceptionInfo = getIdentifierInfo("GetExceptionInformation");
125 Ident__exception_code = getIdentifierInfo("_exception_code");
126 Ident___exception_code = getIdentifierInfo("__exception_code");
127 Ident_GetExceptionCode = getIdentifierInfo("GetExceptionCode");
128 Ident__abnormal_termination = getIdentifierInfo("_abnormal_termination");
129 Ident___abnormal_termination = getIdentifierInfo("__abnormal_termination");
130 Ident_AbnormalTermination = getIdentifierInfo("AbnormalTermination");
131 } else {
Craig Topperd2d442c2014-05-17 23:10:59 +0000132 Ident__exception_info = Ident__exception_code = nullptr;
133 Ident__abnormal_termination = Ident___exception_info = nullptr;
134 Ident___exception_code = Ident___abnormal_termination = nullptr;
135 Ident_GetExceptionInfo = Ident_GetExceptionCode = nullptr;
136 Ident_AbnormalTermination = nullptr;
Douglas Gregor89929282012-01-30 06:01:29 +0000137 }
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000138}
139
140Preprocessor::~Preprocessor() {
141 assert(BacktrackPositions.empty() && "EnableBacktrack/Backtrack imbalance!");
142
Benjamin Kramer329c5962014-03-15 16:40:40 +0000143 IncludeMacroStack.clear();
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000144
Richard Smith73a29662014-07-24 03:25:00 +0000145 // Destroy any macro definitions.
146 while (MacroInfoChain *I = MIChainHead) {
147 MIChainHead = I->Next;
148 I->~MacroInfoChain();
149 }
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000150
151 // Free any cached macro expanders.
Nico Weber5f5b9412014-05-09 18:09:42 +0000152 // This populates MacroArgCache, so all TokenLexers need to be destroyed
153 // before the code below that frees up the MacroArgCache list.
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000154 for (unsigned i = 0, e = NumCachedTokenLexers; i != e; ++i)
155 delete TokenLexerCache[i];
Nico Weber5f5b9412014-05-09 18:09:42 +0000156 CurTokenLexer.reset();
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000157
Richard Smith73a29662014-07-24 03:25:00 +0000158 while (DeserializedMacroInfoChain *I = DeserialMIChainHead) {
159 DeserialMIChainHead = I->Next;
160 I->~DeserializedMacroInfoChain();
161 }
Argyrios Kyrtzidisd48b91d2013-04-30 05:05:35 +0000162
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000163 // Free any cached MacroArgs.
Nico Weber5f5b9412014-05-09 18:09:42 +0000164 for (MacroArgs *ArgList = MacroArgCache; ArgList;)
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000165 ArgList = ArgList->deallocate();
166
167 // Release pragma information.
168 delete PragmaHandlers;
169
170 // Delete the scratch buffer info.
171 delete ScratchBuf;
172
173 // Delete the header search info, if we own it.
174 if (OwnsHeaderSearch)
175 delete &HeaderInfo;
176
177 delete Callbacks;
178}
179
180void Preprocessor::Initialize(const TargetInfo &Target) {
181 assert((!this->Target || this->Target == &Target) &&
182 "Invalid override of target information");
183 this->Target = &Target;
Douglas Gregor89929282012-01-30 06:01:29 +0000184
Argyrios Kyrtzidis3c9aaf12012-06-02 18:08:09 +0000185 // Initialize information about built-ins.
186 BuiltinInfo.InitializeTarget(Target);
Douglas Gregor89929282012-01-30 06:01:29 +0000187 HeaderInfo.setTarget(Target);
Douglas Gregor83297df2011-09-01 23:39:15 +0000188}
189
Ted Kremenekeeccb302014-08-27 15:14:15 +0000190void Preprocessor::InitializeForModelFile() {
191 NumEnteredSourceFiles = 0;
192
193 // Reset pragmas
194 PragmaHandlersBackup = PragmaHandlers;
195 PragmaHandlers = new PragmaNamespace(StringRef());
196 RegisterBuiltinPragmas();
197
198 // Reset PredefinesFileID
199 PredefinesFileID = FileID();
200}
201
202void Preprocessor::FinalizeForModelFile() {
203 NumEnteredSourceFiles = 1;
204
205 delete PragmaHandlers;
206 PragmaHandlers = PragmaHandlersBackup;
207}
208
Ted Kremeneka5c2c272009-02-12 03:26:59 +0000209void Preprocessor::setPTHManager(PTHManager* pm) {
210 PTH.reset(pm);
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000211 FileMgr.addStatCache(PTH->createStatCache());
Ted Kremeneka5c2c272009-02-12 03:26:59 +0000212}
213
Chris Lattner146762e2007-07-20 16:59:19 +0000214void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const {
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000215 llvm::errs() << tok::getTokenName(Tok.getKind()) << " '"
216 << getSpelling(Tok) << "'";
Mike Stump11289f42009-09-09 15:08:12 +0000217
Chris Lattnerd01e2912006-06-18 16:22:51 +0000218 if (!DumpFlags) return;
Mike Stump11289f42009-09-09 15:08:12 +0000219
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000220 llvm::errs() << "\t";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000221 if (Tok.isAtStartOfLine())
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000222 llvm::errs() << " [StartOfLine]";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000223 if (Tok.hasLeadingSpace())
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000224 llvm::errs() << " [LeadingSpace]";
Chris Lattner6e4bf522006-07-27 06:59:25 +0000225 if (Tok.isExpandDisabled())
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000226 llvm::errs() << " [ExpandDisabled]";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000227 if (Tok.needsCleaning()) {
Chris Lattner50b497e2006-06-18 16:32:35 +0000228 const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000229 llvm::errs() << " [UnClean='" << StringRef(Start, Tok.getLength())
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000230 << "']";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000231 }
Mike Stump11289f42009-09-09 15:08:12 +0000232
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000233 llvm::errs() << "\tLoc=<";
Chris Lattner615315f2007-12-09 20:31:55 +0000234 DumpLocation(Tok.getLocation());
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000235 llvm::errs() << ">";
Chris Lattner615315f2007-12-09 20:31:55 +0000236}
237
238void Preprocessor::DumpLocation(SourceLocation Loc) const {
Chris Lattnerf1ca7d32009-01-27 07:57:44 +0000239 Loc.dump(SourceMgr);
Chris Lattnerd01e2912006-06-18 16:22:51 +0000240}
241
242void Preprocessor::DumpMacro(const MacroInfo &MI) const {
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000243 llvm::errs() << "MACRO: ";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000244 for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) {
245 DumpToken(MI.getReplacementToken(i));
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000246 llvm::errs() << " ";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000247 }
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000248 llvm::errs() << "\n";
Chris Lattnerd01e2912006-06-18 16:22:51 +0000249}
250
Chris Lattner22eb9722006-06-18 05:43:12 +0000251void Preprocessor::PrintStats() {
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000252 llvm::errs() << "\n*** Preprocessor Stats:\n";
253 llvm::errs() << NumDirectives << " directives found:\n";
254 llvm::errs() << " " << NumDefined << " #define.\n";
255 llvm::errs() << " " << NumUndefined << " #undef.\n";
256 llvm::errs() << " #include/#include_next/#import:\n";
257 llvm::errs() << " " << NumEnteredSourceFiles << " source files entered.\n";
258 llvm::errs() << " " << MaxIncludeStackDepth << " max include stack depth\n";
259 llvm::errs() << " " << NumIf << " #if/#ifndef/#ifdef.\n";
260 llvm::errs() << " " << NumElse << " #else/#elif.\n";
261 llvm::errs() << " " << NumEndif << " #endif.\n";
262 llvm::errs() << " " << NumPragma << " #pragma.\n";
263 llvm::errs() << NumSkipped << " #if/#ifndef#ifdef regions skipped\n";
Chris Lattner22eb9722006-06-18 05:43:12 +0000264
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000265 llvm::errs() << NumMacroExpanded << "/" << NumFnMacroExpanded << "/"
Ted Kremeneka0a3e9b2008-01-14 16:44:48 +0000266 << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, "
267 << NumFastMacroExpanded << " on the fast path.\n";
Benjamin Kramer89b422c2009-08-23 12:08:50 +0000268 llvm::errs() << (NumFastTokenPaste+NumTokenPaste)
Ted Kremeneka0a3e9b2008-01-14 16:44:48 +0000269 << " token paste (##) operations performed, "
270 << NumFastTokenPaste << " on the fast path.\n";
Alexander Kornienko199cd942012-08-13 10:46:42 +0000271
272 llvm::errs() << "\nPreprocessor Memory: " << getTotalMemory() << "B total";
273
274 llvm::errs() << "\n BumpPtr: " << BP.getTotalMemory();
275 llvm::errs() << "\n Macro Expanded Tokens: "
276 << llvm::capacity_in_bytes(MacroExpandedTokens);
277 llvm::errs() << "\n Predefines Buffer: " << Predefines.capacity();
278 llvm::errs() << "\n Macros: " << llvm::capacity_in_bytes(Macros);
279 llvm::errs() << "\n #pragma push_macro Info: "
280 << llvm::capacity_in_bytes(PragmaPushMacroInfo);
281 llvm::errs() << "\n Poison Reasons: "
282 << llvm::capacity_in_bytes(PoisonReasons);
283 llvm::errs() << "\n Comment Handlers: "
284 << llvm::capacity_in_bytes(CommentHandlers) << "\n";
Chris Lattner22eb9722006-06-18 05:43:12 +0000285}
286
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000287Preprocessor::macro_iterator
288Preprocessor::macro_begin(bool IncludeExternalMacros) const {
289 if (IncludeExternalMacros && ExternalSource &&
Douglas Gregor9882a5a2010-01-04 19:18:44 +0000290 !ReadMacrosFromExternalSource) {
291 ReadMacrosFromExternalSource = true;
292 ExternalSource->ReadDefinedMacros();
293 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000294
295 return Macros.begin();
Douglas Gregor9882a5a2010-01-04 19:18:44 +0000296}
297
Argyrios Kyrtzidise379ee32011-06-29 22:20:04 +0000298size_t Preprocessor::getTotalMemory() const {
Ted Kremenek182543a2011-07-26 21:17:24 +0000299 return BP.getTotalMemory()
Ted Kremenek8b77fe72011-07-27 18:41:23 +0000300 + llvm::capacity_in_bytes(MacroExpandedTokens)
Ted Kremenek182543a2011-07-26 21:17:24 +0000301 + Predefines.capacity() /* Predefines buffer. */
Ted Kremenek8b77fe72011-07-27 18:41:23 +0000302 + llvm::capacity_in_bytes(Macros)
303 + llvm::capacity_in_bytes(PragmaPushMacroInfo)
304 + llvm::capacity_in_bytes(PoisonReasons)
305 + llvm::capacity_in_bytes(CommentHandlers);
Argyrios Kyrtzidise379ee32011-06-29 22:20:04 +0000306}
307
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000308Preprocessor::macro_iterator
309Preprocessor::macro_end(bool IncludeExternalMacros) const {
310 if (IncludeExternalMacros && ExternalSource &&
Douglas Gregor9882a5a2010-01-04 19:18:44 +0000311 !ReadMacrosFromExternalSource) {
312 ReadMacrosFromExternalSource = true;
313 ExternalSource->ReadDefinedMacros();
314 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000315
316 return Macros.end();
Douglas Gregor9882a5a2010-01-04 19:18:44 +0000317}
318
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000319/// \brief Compares macro tokens with a specified token value sequence.
320static bool MacroDefinitionEquals(const MacroInfo *MI,
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000321 ArrayRef<TokenValue> Tokens) {
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000322 return Tokens.size() == MI->getNumTokens() &&
323 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin());
324}
325
326StringRef Preprocessor::getLastMacroWithSpelling(
327 SourceLocation Loc,
328 ArrayRef<TokenValue> Tokens) const {
329 SourceLocation BestLocation;
330 StringRef BestSpelling;
331 for (Preprocessor::macro_iterator I = macro_begin(), E = macro_end();
332 I != E; ++I) {
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000333 if (!I->second->getMacroInfo()->isObjectLike())
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000334 continue;
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000335 const MacroDirective::DefInfo
336 Def = I->second->findDirectiveAtLoc(Loc, SourceMgr);
337 if (!Def)
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000338 continue;
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000339 if (!MacroDefinitionEquals(Def.getMacroInfo(), Tokens))
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000340 continue;
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000341 SourceLocation Location = Def.getLocation();
Dmitri Gribenko6743e042012-09-29 11:40:46 +0000342 // Choose the macro defined latest.
343 if (BestLocation.isInvalid() ||
344 (Location.isValid() &&
345 SourceMgr.isBeforeInTranslationUnit(BestLocation, Location))) {
346 BestLocation = Location;
347 BestSpelling = I->first->getName();
348 }
349 }
350 return BestSpelling;
351}
352
Douglas Gregor8d76cca2012-01-04 06:20:15 +0000353void Preprocessor::recomputeCurLexerKind() {
354 if (CurLexer)
355 CurLexerKind = CLK_Lexer;
356 else if (CurPTHLexer)
357 CurLexerKind = CLK_PTHLexer;
358 else if (CurTokenLexer)
359 CurLexerKind = CLK_TokenLexer;
360 else
361 CurLexerKind = CLK_CachingLexer;
362}
363
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000364bool Preprocessor::SetCodeCompletionPoint(const FileEntry *File,
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000365 unsigned CompleteLine,
366 unsigned CompleteColumn) {
367 assert(File);
368 assert(CompleteLine && CompleteColumn && "Starts from 1:1");
369 assert(!CodeCompletionFile && "Already set");
370
Douglas Gregor53ad6b92009-12-02 06:49:09 +0000371 using llvm::MemoryBuffer;
372
Douglas Gregor53ad6b92009-12-02 06:49:09 +0000373 // Load the actual file's contents.
Douglas Gregor26266da2010-03-16 19:49:24 +0000374 bool Invalid = false;
375 const MemoryBuffer *Buffer = SourceMgr.getMemoryBufferForFile(File, &Invalid);
376 if (Invalid)
Douglas Gregor53ad6b92009-12-02 06:49:09 +0000377 return true;
378
379 // Find the byte position of the truncation point.
380 const char *Position = Buffer->getBufferStart();
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000381 for (unsigned Line = 1; Line < CompleteLine; ++Line) {
Douglas Gregor53ad6b92009-12-02 06:49:09 +0000382 for (; *Position; ++Position) {
383 if (*Position != '\r' && *Position != '\n')
384 continue;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000385
Douglas Gregor53ad6b92009-12-02 06:49:09 +0000386 // Eat \r\n or \n\r as a single line.
387 if ((Position[1] == '\r' || Position[1] == '\n') &&
388 Position[0] != Position[1])
389 ++Position;
390 ++Position;
391 break;
392 }
393 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000394
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000395 Position += CompleteColumn - 1;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +0000396
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000397 // Insert '\0' at the code-completion point.
Douglas Gregor9291ab62009-12-08 21:45:46 +0000398 if (Position < Buffer->getBufferEnd()) {
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000399 CodeCompletionFile = File;
400 CodeCompletionOffset = Position - Buffer->getBufferStart();
401
Rafael Espindolad87f8d72014-08-27 20:03:29 +0000402 std::unique_ptr<MemoryBuffer> NewBuffer =
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000403 MemoryBuffer::getNewUninitMemBuffer(Buffer->getBufferSize() + 1,
404 Buffer->getBufferIdentifier());
Benjamin Kramer60053cf2011-09-04 20:26:28 +0000405 char *NewBuf = const_cast<char*>(NewBuffer->getBufferStart());
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000406 char *NewPos = std::copy(Buffer->getBufferStart(), Position, NewBuf);
407 *NewPos = '\0';
408 std::copy(Position, Buffer->getBufferEnd(), NewPos+1);
Rafael Espindolad87f8d72014-08-27 20:03:29 +0000409 SourceMgr.overrideFileContents(File, NewBuffer.release());
Douglas Gregor53ad6b92009-12-02 06:49:09 +0000410 }
411
412 return false;
413}
414
Douglas Gregor11583702010-08-25 17:04:25 +0000415void Preprocessor::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +0000416 if (CodeComplete)
417 CodeComplete->CodeCompleteNaturalLanguage();
Argyrios Kyrtzidis5cec2ae2011-09-04 03:32:15 +0000418 setCodeCompletionReached();
Douglas Gregor11583702010-08-25 17:04:25 +0000419}
420
Benjamin Kramera197fb62010-02-27 17:05:45 +0000421/// getSpelling - This method is used to get the spelling of a token into a
422/// SmallVector. Note that the returned StringRef may not point to the
423/// supplied buffer if a copy can be avoided.
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000424StringRef Preprocessor::getSpelling(const Token &Tok,
425 SmallVectorImpl<char> &Buffer,
Douglas Gregor7bda4b82010-03-16 05:20:39 +0000426 bool *Invalid) const {
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000427 // NOTE: this has to be checked *before* testing for an IdentifierInfo.
Jordan Rose7f43ddd2013-01-24 20:50:46 +0000428 if (Tok.isNot(tok::raw_identifier) && !Tok.hasUCN()) {
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000429 // Try the fast path.
430 if (const IdentifierInfo *II = Tok.getIdentifierInfo())
431 return II->getName();
432 }
Benjamin Kramera197fb62010-02-27 17:05:45 +0000433
434 // Resize the buffer if we need to copy into it.
435 if (Tok.needsCleaning())
436 Buffer.resize(Tok.getLength());
437
438 const char *Ptr = Buffer.data();
Douglas Gregor7bda4b82010-03-16 05:20:39 +0000439 unsigned Len = getSpelling(Tok, Ptr, Invalid);
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000440 return StringRef(Ptr, Len);
Benjamin Kramera197fb62010-02-27 17:05:45 +0000441}
442
Chris Lattnerb94ec7b2006-07-14 06:54:10 +0000443/// CreateString - Plop the specified string into a scratch buffer and return a
444/// location for it. If specified, the source location provides a source
445/// location for the token.
Dmitri Gribenkob8e9e752012-09-24 21:07:17 +0000446void Preprocessor::CreateString(StringRef Str, Token &Tok,
Abramo Bagnarae398e602011-10-03 18:39:03 +0000447 SourceLocation ExpansionLocStart,
448 SourceLocation ExpansionLocEnd) {
Dmitri Gribenkob8e9e752012-09-24 21:07:17 +0000449 Tok.setLength(Str.size());
Mike Stump11289f42009-09-09 15:08:12 +0000450
Chris Lattner5a7971e2009-01-26 19:29:26 +0000451 const char *DestPtr;
Dmitri Gribenkob8e9e752012-09-24 21:07:17 +0000452 SourceLocation Loc = ScratchBuf->getToken(Str.data(), Str.size(), DestPtr);
Mike Stump11289f42009-09-09 15:08:12 +0000453
Abramo Bagnarae398e602011-10-03 18:39:03 +0000454 if (ExpansionLocStart.isValid())
455 Loc = SourceMgr.createExpansionLoc(Loc, ExpansionLocStart,
Dmitri Gribenkob8e9e752012-09-24 21:07:17 +0000456 ExpansionLocEnd, Str.size());
Chris Lattner5a7971e2009-01-26 19:29:26 +0000457 Tok.setLocation(Loc);
Mike Stump11289f42009-09-09 15:08:12 +0000458
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000459 // If this is a raw identifier or a literal token, set the pointer data.
460 if (Tok.is(tok::raw_identifier))
461 Tok.setRawIdentifierData(DestPtr);
462 else if (Tok.isLiteral())
Chris Lattner5a7971e2009-01-26 19:29:26 +0000463 Tok.setLiteralData(DestPtr);
Chris Lattnerb94ec7b2006-07-14 06:54:10 +0000464}
465
Douglas Gregor2b82c2a2011-12-02 01:47:07 +0000466Module *Preprocessor::getCurrentModule() {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000467 if (getLangOpts().CurrentModule.empty())
Craig Topperd2d442c2014-05-17 23:10:59 +0000468 return nullptr;
469
David Blaikiebbafb8a2012-03-11 07:00:24 +0000470 return getHeaderSearchInfo().lookupModule(getLangOpts().CurrentModule);
Douglas Gregor2b82c2a2011-12-02 01:47:07 +0000471}
Chris Lattner8a7003c2007-07-16 06:48:38 +0000472
Chris Lattner1f1b0db2007-10-09 22:10:18 +0000473//===----------------------------------------------------------------------===//
474// Preprocessor Initialization Methods
475//===----------------------------------------------------------------------===//
476
Chris Lattner1f1b0db2007-10-09 22:10:18 +0000477
478/// EnterMainSourceFile - Enter the specified FileID as the main source file,
Nate Begemanf7c3ff62008-01-07 04:01:26 +0000479/// which implicitly adds the builtin defines etc.
Chris Lattnerfb24a3a2010-04-20 20:35:58 +0000480void Preprocessor::EnterMainSourceFile() {
Chris Lattner9ef847b2009-02-13 19:33:24 +0000481 // We do not allow the preprocessor to reenter the main file. Doing so will
482 // cause FileID's to accumulate information from both runs (e.g. #line
483 // information) and predefined macros aren't guaranteed to be set properly.
484 assert(NumEnteredSourceFiles == 0 && "Cannot reenter the main file!");
Chris Lattnerd32480d2009-01-17 06:22:33 +0000485 FileID MainFileID = SourceMgr.getMainFileID();
Mike Stump11289f42009-09-09 15:08:12 +0000486
Argyrios Kyrtzidis9afd4492012-01-05 21:36:25 +0000487 // If MainFileID is loaded it means we loaded an AST file, no need to enter
488 // a main file.
489 if (!SourceMgr.isLoadedFileID(MainFileID)) {
490 // Enter the main file source buffer.
Craig Topperd2d442c2014-05-17 23:10:59 +0000491 EnterSourceFile(MainFileID, nullptr, SourceLocation());
492
Argyrios Kyrtzidis9afd4492012-01-05 21:36:25 +0000493 // If we've been asked to skip bytes in the main file (e.g., as part of a
494 // precompiled preamble), do so now.
495 if (SkipMainFilePreamble.first > 0)
496 CurLexer->SkipBytes(SkipMainFilePreamble.first,
497 SkipMainFilePreamble.second);
498
499 // Tell the header info that the main file was entered. If the file is later
500 // #imported, it won't be re-entered.
501 if (const FileEntry *FE = SourceMgr.getFileEntryForID(MainFileID))
502 HeaderInfo.IncrementIncludeCount(FE);
503 }
Mike Stump11289f42009-09-09 15:08:12 +0000504
Benjamin Kramerd77adb52009-12-31 15:33:09 +0000505 // Preprocess Predefines to populate the initial preprocessor state.
Rafael Espindolad87f8d72014-08-27 20:03:29 +0000506 std::unique_ptr<llvm::MemoryBuffer> SB =
Chris Lattner58c79342010-04-05 22:42:27 +0000507 llvm::MemoryBuffer::getMemBufferCopy(Predefines, "<built-in>");
Douglas Gregor33551892010-08-26 14:07:34 +0000508 assert(SB && "Cannot create predefined source buffer");
Rafael Espindolad87f8d72014-08-27 20:03:29 +0000509 FileID FID = SourceMgr.createFileID(SB.release());
Chris Lattnerd32480d2009-01-17 06:22:33 +0000510 assert(!FID.isInvalid() && "Could not create FileID for predefines?");
Argyrios Kyrtzidis22c22f52013-02-01 16:36:07 +0000511 setPredefinesFileID(FID);
Mike Stump11289f42009-09-09 15:08:12 +0000512
Chris Lattner1f1b0db2007-10-09 22:10:18 +0000513 // Start parsing the predefines.
Craig Topperd2d442c2014-05-17 23:10:59 +0000514 EnterSourceFile(FID, nullptr, SourceLocation());
Chris Lattner1f1b0db2007-10-09 22:10:18 +0000515}
Chris Lattner8a7003c2007-07-16 06:48:38 +0000516
Daniel Dunbarcb9eaf52010-03-23 05:09:10 +0000517void Preprocessor::EndSourceFile() {
518 // Notify the client that we reached the end of the source file.
519 if (Callbacks)
520 Callbacks->EndOfMainFile();
521}
Chris Lattner677757a2006-06-28 05:26:32 +0000522
523//===----------------------------------------------------------------------===//
524// Lexer Event Handling.
525//===----------------------------------------------------------------------===//
526
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000527/// LookUpIdentifierInfo - Given a tok::raw_identifier token, look up the
528/// identifier information for the token and install it into the token,
529/// updating the token kind accordingly.
530IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier) const {
Alp Toker2d57cea2014-05-17 04:53:25 +0000531 assert(!Identifier.getRawIdentifier().empty() && "No raw identifier data!");
Mike Stump11289f42009-09-09 15:08:12 +0000532
Chris Lattnercefc7682006-07-08 08:28:12 +0000533 // Look up this token, see if it is a macro, or if it is a language keyword.
534 IdentifierInfo *II;
Jordan Rose7f43ddd2013-01-24 20:50:46 +0000535 if (!Identifier.needsCleaning() && !Identifier.hasUCN()) {
Chris Lattnercefc7682006-07-08 08:28:12 +0000536 // No cleaning needed, just use the characters from the lexed buffer.
Alp Toker2d57cea2014-05-17 04:53:25 +0000537 II = getIdentifierInfo(Identifier.getRawIdentifier());
Chris Lattnercefc7682006-07-08 08:28:12 +0000538 } else {
539 // Cleaning needed, alloca a buffer, clean into it, then use the buffer.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000540 SmallString<64> IdentifierBuffer;
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000541 StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
Jordan Rose7f43ddd2013-01-24 20:50:46 +0000542
543 if (Identifier.hasUCN()) {
544 SmallString<64> UCNIdentifierBuffer;
545 expandUCNs(UCNIdentifierBuffer, CleanedStr);
546 II = getIdentifierInfo(UCNIdentifierBuffer);
547 } else {
548 II = getIdentifierInfo(CleanedStr);
549 }
Chris Lattnercefc7682006-07-08 08:28:12 +0000550 }
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000551
552 // Update the token info (identifier info and appropriate token kind).
Chris Lattner8c204872006-10-14 05:19:21 +0000553 Identifier.setIdentifierInfo(II);
Abramo Bagnaraea4f7c72010-12-22 08:23:18 +0000554 Identifier.setKind(II->getTokenID());
555
Chris Lattnercefc7682006-07-08 08:28:12 +0000556 return II;
557}
558
John Wiegley1c0675e2011-04-28 01:08:34 +0000559void Preprocessor::SetPoisonReason(IdentifierInfo *II, unsigned DiagID) {
560 PoisonReasons[II] = DiagID;
561}
562
563void Preprocessor::PoisonSEHIdentifiers(bool Poison) {
564 assert(Ident__exception_code && Ident__exception_info);
565 assert(Ident___exception_code && Ident___exception_info);
566 Ident__exception_code->setIsPoisoned(Poison);
567 Ident___exception_code->setIsPoisoned(Poison);
568 Ident_GetExceptionCode->setIsPoisoned(Poison);
569 Ident__exception_info->setIsPoisoned(Poison);
570 Ident___exception_info->setIsPoisoned(Poison);
571 Ident_GetExceptionInfo->setIsPoisoned(Poison);
572 Ident__abnormal_termination->setIsPoisoned(Poison);
573 Ident___abnormal_termination->setIsPoisoned(Poison);
574 Ident_AbnormalTermination->setIsPoisoned(Poison);
575}
576
577void Preprocessor::HandlePoisonedIdentifier(Token & Identifier) {
578 assert(Identifier.getIdentifierInfo() &&
579 "Can't handle identifiers without identifier info!");
580 llvm::DenseMap<IdentifierInfo*,unsigned>::const_iterator it =
581 PoisonReasons.find(Identifier.getIdentifierInfo());
582 if(it == PoisonReasons.end())
583 Diag(Identifier, diag::err_pp_used_poisoned_id);
584 else
585 Diag(Identifier,it->second) << Identifier.getIdentifierInfo();
586}
Chris Lattnercefc7682006-07-08 08:28:12 +0000587
Chris Lattner677757a2006-06-28 05:26:32 +0000588/// HandleIdentifier - This callback is invoked when the lexer reads an
589/// identifier. This callback looks up the identifier in the map and/or
590/// potentially macro expands it or turns it into a named token (like 'for').
Chris Lattnerad89ec02009-01-21 07:43:11 +0000591///
592/// Note that callers of this method are guarded by checking the
593/// IdentifierInfo's 'isHandleIdentifierCase' bit. If this method changes, the
594/// IdentifierInfo methods that compute these properties will need to change to
595/// match.
Eli Friedman0834a4b2013-09-19 00:41:32 +0000596bool Preprocessor::HandleIdentifier(Token &Identifier) {
Chris Lattner0f1f5052006-07-20 04:16:23 +0000597 assert(Identifier.getIdentifierInfo() &&
598 "Can't handle identifiers without identifier info!");
Mike Stump11289f42009-09-09 15:08:12 +0000599
Chris Lattnerc79f6fb2006-07-04 17:53:21 +0000600 IdentifierInfo &II = *Identifier.getIdentifierInfo();
Chris Lattner677757a2006-06-28 05:26:32 +0000601
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000602 // If the information about this identifier is out of date, update it from
603 // the external source.
Douglas Gregor3f568c12012-06-29 18:27:59 +0000604 // We have to treat __VA_ARGS__ in a special way, since it gets
605 // serialized with isPoisoned = true, but our preprocessor may have
606 // unpoisoned it if we're defining a C99 macro.
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000607 if (II.isOutOfDate()) {
Douglas Gregor3f568c12012-06-29 18:27:59 +0000608 bool CurrentIsPoisoned = false;
609 if (&II == Ident__VA_ARGS__)
610 CurrentIsPoisoned = Ident__VA_ARGS__->isPoisoned();
611
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000612 ExternalSource->updateOutOfDateIdentifier(II);
613 Identifier.setKind(II.getTokenID());
Douglas Gregor3f568c12012-06-29 18:27:59 +0000614
615 if (&II == Ident__VA_ARGS__)
616 II.setIsPoisoned(CurrentIsPoisoned);
Douglas Gregor935bc7a22011-10-27 09:33:13 +0000617 }
618
Chris Lattner677757a2006-06-28 05:26:32 +0000619 // If this identifier was poisoned, and if it was not produced from a macro
620 // expansion, emit an error.
Ted Kremeneka2c3c8d2008-11-19 22:43:49 +0000621 if (II.isPoisoned() && CurPPLexer) {
John Wiegley1c0675e2011-04-28 01:08:34 +0000622 HandlePoisonedIdentifier(Identifier);
Chris Lattner8ff71992006-07-06 05:17:39 +0000623 }
Mike Stump11289f42009-09-09 15:08:12 +0000624
Chris Lattner78186052006-07-09 00:45:31 +0000625 // If this is a macro to be expanded, do it.
Argyrios Kyrtzidisfead64b2013-02-24 00:05:14 +0000626 if (MacroDirective *MD = getMacroDirective(&II)) {
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +0000627 MacroInfo *MI = MD->getMacroInfo();
Abramo Bagnara123bec82012-01-01 22:01:04 +0000628 if (!DisableMacroExpansion) {
Richard Smith181879c2012-12-12 02:46:14 +0000629 if (!Identifier.isExpandDisabled() && MI->isEnabled()) {
Eli Friedman0834a4b2013-09-19 00:41:32 +0000630 // C99 6.10.3p10: If the preprocessing token immediately after the
631 // macro name isn't a '(', this macro should not be expanded.
632 if (!MI->isFunctionLike() || isNextPPTokenLParen())
633 return HandleMacroExpandedIdentifier(Identifier, MD);
Chris Lattner6e4bf522006-07-27 06:59:25 +0000634 } else {
635 // C99 6.10.3.4p2 says that a disabled macro may never again be
636 // expanded, even if it's in a context where it could be expanded in the
637 // future.
Chris Lattner146762e2007-07-20 16:59:19 +0000638 Identifier.setFlag(Token::DisableExpand);
Richard Smith181879c2012-12-12 02:46:14 +0000639 if (MI->isObjectLike() || isNextPPTokenLParen())
640 Diag(Identifier, diag::pp_disabled_macro_expansion);
Chris Lattner6e4bf522006-07-27 06:59:25 +0000641 }
642 }
Chris Lattner063400e2006-10-14 19:54:15 +0000643 }
Chris Lattner677757a2006-06-28 05:26:32 +0000644
Richard Smith4dd85d62011-10-11 19:57:52 +0000645 // If this identifier is a keyword in C++11, produce a warning. Don't warn if
646 // we're not considering macro expansion, since this identifier might be the
647 // name of a macro.
648 // FIXME: This warning is disabled in cases where it shouldn't be, like
649 // "#define constexpr constexpr", "int constexpr;"
Alp Toker7d2fea22014-02-24 04:35:58 +0000650 if (II.isCXX11CompatKeyword() && !DisableMacroExpansion) {
Richard Smith4dd85d62011-10-11 19:57:52 +0000651 Diag(Identifier, diag::warn_cxx11_keyword) << II.getName();
652 // Don't diagnose this keyword again in this translation unit.
653 II.setIsCXX11CompatKeyword(false);
654 }
655
Chris Lattner5b9f4892006-11-21 17:23:33 +0000656 // C++ 2.11p2: If this is an alternative representation of a C++ operator,
657 // then we act as if it is the actual operator and not the textual
658 // representation of it.
Fariborz Jahanian9e42a952010-09-03 17:33:04 +0000659 if (II.isCPlusPlusOperatorKeyword())
Craig Topperd2d442c2014-05-17 23:10:59 +0000660 Identifier.setIdentifierInfo(nullptr);
Chris Lattner5b9f4892006-11-21 17:23:33 +0000661
Chris Lattner677757a2006-06-28 05:26:32 +0000662 // If this is an extension token, diagnose its use.
Steve Naroffc84e8b72008-09-02 18:50:17 +0000663 // We avoid diagnosing tokens that originate from macro definitions.
Eli Friedman6bba2ad2009-04-28 03:59:15 +0000664 // FIXME: This warning is disabled in cases where it shouldn't be,
665 // like "#define TY typeof", "TY(1) x".
666 if (II.isExtensionToken() && !DisableMacroExpansion)
Chris Lattner53621a52007-06-13 20:44:40 +0000667 Diag(Identifier, diag::ext_token_used);
Douglas Gregoraf5c4842011-09-07 23:11:54 +0000668
Douglas Gregor594b8c92013-11-07 22:55:02 +0000669 // If this is the 'import' contextual keyword following an '@', note
Ted Kremenekc1e4dd02012-03-01 22:07:04 +0000670 // that the next token indicates a module name.
Douglas Gregor8d76cca2012-01-04 06:20:15 +0000671 //
Douglas Gregorc50d4922012-12-11 22:11:52 +0000672 // Note that we do not treat 'import' as a contextual
Ted Kremenekc1e4dd02012-03-01 22:07:04 +0000673 // keyword when we're in a caching lexer, because caching lexers only get
674 // used in contexts where import declarations are disallowed.
Douglas Gregor594b8c92013-11-07 22:55:02 +0000675 if (LastTokenWasAt && II.isModulesImport() && !InMacroArgs &&
676 !DisableMacroExpansion && getLangOpts().Modules &&
677 CurLexerKind != CLK_CachingLexer) {
Douglas Gregoraf5c4842011-09-07 23:11:54 +0000678 ModuleImportLoc = Identifier.getLocation();
Douglas Gregor1805b8a2011-11-30 04:26:53 +0000679 ModuleImportPath.clear();
680 ModuleImportExpectsIdentifier = true;
Douglas Gregoraf5c4842011-09-07 23:11:54 +0000681 CurLexerKind = CLK_LexAfterModuleImport;
682 }
Eli Friedman0834a4b2013-09-19 00:41:32 +0000683 return true;
Douglas Gregor08142532011-08-26 23:56:07 +0000684}
685
Eli Friedman0834a4b2013-09-19 00:41:32 +0000686void Preprocessor::Lex(Token &Result) {
687 // We loop here until a lex function retuns a token; this avoids recursion.
688 bool ReturnedToken;
689 do {
690 switch (CurLexerKind) {
691 case CLK_Lexer:
692 ReturnedToken = CurLexer->Lex(Result);
693 break;
694 case CLK_PTHLexer:
695 ReturnedToken = CurPTHLexer->Lex(Result);
696 break;
697 case CLK_TokenLexer:
698 ReturnedToken = CurTokenLexer->Lex(Result);
699 break;
700 case CLK_CachingLexer:
701 CachingLex(Result);
702 ReturnedToken = true;
703 break;
704 case CLK_LexAfterModuleImport:
705 LexAfterModuleImport(Result);
706 ReturnedToken = true;
707 break;
708 }
709 } while (!ReturnedToken);
Douglas Gregor594b8c92013-11-07 22:55:02 +0000710
711 LastTokenWasAt = Result.is(tok::at);
Eli Friedman0834a4b2013-09-19 00:41:32 +0000712}
713
714
Douglas Gregorda82e702012-01-03 19:32:59 +0000715/// \brief Lex a token following the 'import' contextual keyword.
Douglas Gregor22d09742012-01-03 18:04:46 +0000716///
Douglas Gregoraf5c4842011-09-07 23:11:54 +0000717void Preprocessor::LexAfterModuleImport(Token &Result) {
718 // Figure out what kind of lexer we actually have.
Douglas Gregor8d76cca2012-01-04 06:20:15 +0000719 recomputeCurLexerKind();
Douglas Gregoraf5c4842011-09-07 23:11:54 +0000720
721 // Lex the next token.
722 Lex(Result);
723
Douglas Gregor08142532011-08-26 23:56:07 +0000724 // The token sequence
725 //
Douglas Gregor22d09742012-01-03 18:04:46 +0000726 // import identifier (. identifier)*
727 //
Douglas Gregorda82e702012-01-03 19:32:59 +0000728 // indicates a module import directive. We already saw the 'import'
729 // contextual keyword, so now we're looking for the identifiers.
Douglas Gregor1805b8a2011-11-30 04:26:53 +0000730 if (ModuleImportExpectsIdentifier && Result.getKind() == tok::identifier) {
731 // We expected to see an identifier here, and we did; continue handling
732 // identifiers.
733 ModuleImportPath.push_back(std::make_pair(Result.getIdentifierInfo(),
734 Result.getLocation()));
735 ModuleImportExpectsIdentifier = false;
736 CurLexerKind = CLK_LexAfterModuleImport;
Douglas Gregor08142532011-08-26 23:56:07 +0000737 return;
Douglas Gregor1805b8a2011-11-30 04:26:53 +0000738 }
Douglas Gregor08142532011-08-26 23:56:07 +0000739
Douglas Gregor1805b8a2011-11-30 04:26:53 +0000740 // If we're expecting a '.' or a ';', and we got a '.', then wait until we
741 // see the next identifier.
742 if (!ModuleImportExpectsIdentifier && Result.getKind() == tok::period) {
743 ModuleImportExpectsIdentifier = true;
744 CurLexerKind = CLK_LexAfterModuleImport;
745 return;
746 }
747
748 // If we have a non-empty module path, load the named module.
Daniel Jasper07e6c402013-08-05 20:26:17 +0000749 if (!ModuleImportPath.empty() && getLangOpts().Modules) {
Argyrios Kyrtzidis19d78b72012-09-29 01:06:10 +0000750 Module *Imported = TheModuleLoader.loadModule(ModuleImportLoc,
751 ModuleImportPath,
752 Module::MacrosVisible,
753 /*IsIncludeDirective=*/false);
754 if (Callbacks)
755 Callbacks->moduleImport(ModuleImportLoc, ModuleImportPath, Imported);
756 }
Chris Lattner677757a2006-06-28 05:26:32 +0000757}
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000758
Andy Gibbs58905d22012-11-17 19:15:38 +0000759bool Preprocessor::FinishLexStringLiteral(Token &Result, std::string &String,
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000760 const char *DiagnosticTag,
Andy Gibbs58905d22012-11-17 19:15:38 +0000761 bool AllowMacroExpansion) {
762 // We need at least one string literal.
763 if (Result.isNot(tok::string_literal)) {
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000764 Diag(Result, diag::err_expected_string_literal)
765 << /*Source='in...'*/0 << DiagnosticTag;
Andy Gibbs58905d22012-11-17 19:15:38 +0000766 return false;
767 }
768
769 // Lex string literal tokens, optionally with macro expansion.
770 SmallVector<Token, 4> StrToks;
771 do {
772 StrToks.push_back(Result);
773
774 if (Result.hasUDSuffix())
775 Diag(Result, diag::err_invalid_string_udl);
776
777 if (AllowMacroExpansion)
778 Lex(Result);
779 else
780 LexUnexpandedToken(Result);
781 } while (Result.is(tok::string_literal));
782
783 // Concatenate and parse the strings.
Craig Topper9d5583e2014-06-26 04:58:39 +0000784 StringLiteralParser Literal(StrToks, *this);
Andy Gibbs58905d22012-11-17 19:15:38 +0000785 assert(Literal.isAscii() && "Didn't allow wide strings in");
786
787 if (Literal.hadError)
788 return false;
789
790 if (Literal.Pascal) {
Andy Gibbsa8df57a2012-11-17 19:16:52 +0000791 Diag(StrToks[0].getLocation(), diag::err_expected_string_literal)
792 << /*Source='in...'*/0 << DiagnosticTag;
Andy Gibbs58905d22012-11-17 19:15:38 +0000793 return false;
794 }
795
796 String = Literal.GetString();
797 return true;
798}
799
Reid Klecknerc0dca6d2014-02-12 23:50:26 +0000800bool Preprocessor::parseSimpleIntegerLiteral(Token &Tok, uint64_t &Value) {
801 assert(Tok.is(tok::numeric_constant));
802 SmallString<8> IntegerBuffer;
803 bool NumberInvalid = false;
804 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid);
805 if (NumberInvalid)
806 return false;
807 NumericLiteralParser Literal(Spelling, Tok.getLocation(), *this);
808 if (Literal.hadError || !Literal.isIntegerLiteral() || Literal.hasUDSuffix())
809 return false;
810 llvm::APInt APVal(64, 0);
811 if (Literal.GetIntegerValue(APVal))
812 return false;
813 Lex(Tok);
814 Value = APVal.getLimitedValue();
815 return true;
816}
817
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000818void Preprocessor::addCommentHandler(CommentHandler *Handler) {
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000819 assert(Handler && "NULL comment handler");
820 assert(std::find(CommentHandlers.begin(), CommentHandlers.end(), Handler) ==
821 CommentHandlers.end() && "Comment handler already registered");
822 CommentHandlers.push_back(Handler);
823}
824
Dmitri Gribenkoaab83832012-06-20 00:34:58 +0000825void Preprocessor::removeCommentHandler(CommentHandler *Handler) {
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000826 std::vector<CommentHandler *>::iterator Pos
827 = std::find(CommentHandlers.begin(), CommentHandlers.end(), Handler);
828 assert(Pos != CommentHandlers.end() && "Comment handler not registered");
829 CommentHandlers.erase(Pos);
830}
831
Chris Lattner87d02082010-01-18 22:35:47 +0000832bool Preprocessor::HandleComment(Token &result, SourceRange Comment) {
833 bool AnyPendingTokens = false;
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000834 for (std::vector<CommentHandler *>::iterator H = CommentHandlers.begin(),
835 HEnd = CommentHandlers.end();
Chris Lattner87d02082010-01-18 22:35:47 +0000836 H != HEnd; ++H) {
837 if ((*H)->HandleComment(*this, Comment))
838 AnyPendingTokens = true;
839 }
840 if (!AnyPendingTokens || getCommentRetentionState())
841 return false;
842 Lex(result);
843 return true;
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000844}
845
Douglas Gregor08142532011-08-26 23:56:07 +0000846ModuleLoader::~ModuleLoader() { }
847
Douglas Gregorc6d5edd2009-07-02 17:08:52 +0000848CommentHandler::~CommentHandler() { }
Douglas Gregor7f6d60d2010-03-19 16:15:56 +0000849
Douglas Gregor3a7ad252010-08-24 19:08:16 +0000850CodeCompletionHandler::~CodeCompletionHandler() { }
851
Argyrios Kyrtzidisf3d587e2012-12-04 07:27:05 +0000852void Preprocessor::createPreprocessingRecord() {
Douglas Gregor7f6d60d2010-03-19 16:15:56 +0000853 if (Record)
854 return;
855
Argyrios Kyrtzidisf3d587e2012-12-04 07:27:05 +0000856 Record = new PreprocessingRecord(getSourceManager());
Douglas Gregor7dc87222010-03-19 17:12:43 +0000857 addPPCallbacks(Record);
Douglas Gregor7f6d60d2010-03-19 16:15:56 +0000858}