1 //===--- Preprocess.cpp - C Language Family Preprocessor Implementation ---===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the Preprocessor interface.
11 //
12 //===----------------------------------------------------------------------===//
13 //
14 // Options to support:
15 //   -H       - Print the name of each header file used.
16 //   -d[DNI] - Dump various things.
17 //   -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 //
26 //===----------------------------------------------------------------------===//
27 
28 #include "clang/Lex/Preprocessor.h"
29 #include "clang/Basic/FileManager.h"
30 #include "clang/Basic/FileSystemStatCache.h"
31 #include "clang/Basic/SourceManager.h"
32 #include "clang/Basic/TargetInfo.h"
33 #include "clang/Lex/CodeCompletionHandler.h"
34 #include "clang/Lex/ExternalPreprocessorSource.h"
35 #include "clang/Lex/HeaderSearch.h"
36 #include "clang/Lex/LexDiagnostic.h"
37 #include "clang/Lex/LiteralSupport.h"
38 #include "clang/Lex/MacroArgs.h"
39 #include "clang/Lex/MacroInfo.h"
40 #include "clang/Lex/ModuleLoader.h"
41 #include "clang/Lex/Pragma.h"
42 #include "clang/Lex/PreprocessingRecord.h"
43 #include "clang/Lex/PreprocessorOptions.h"
44 #include "clang/Lex/ScratchBuffer.h"
45 #include "llvm/ADT/APFloat.h"
46 #include "llvm/ADT/STLExtras.h"
47 #include "llvm/ADT/SmallString.h"
48 #include "llvm/ADT/StringExtras.h"
49 #include "llvm/Support/Capacity.h"
50 #include "llvm/Support/ConvertUTF.h"
51 #include "llvm/Support/MemoryBuffer.h"
52 #include "llvm/Support/raw_ostream.h"
53 using namespace clang;
54 
55 //===----------------------------------------------------------------------===//
56 ExternalPreprocessorSource::~ExternalPreprocessorSource() { }
57 
58 Preprocessor::Preprocessor(IntrusiveRefCntPtr<PreprocessorOptions> PPOpts,
59                            DiagnosticsEngine &diags, LangOptions &opts,
60                            SourceManager &SM, HeaderSearch &Headers,
61                            ModuleLoader &TheModuleLoader,
62                            IdentifierInfoLookup *IILookup, bool OwnsHeaders,
63                            TranslationUnitKind TUKind)
64     : PPOpts(PPOpts), Diags(&diags), LangOpts(opts), Target(nullptr),
65       FileMgr(Headers.getFileMgr()), SourceMgr(SM), HeaderInfo(Headers),
66       TheModuleLoader(TheModuleLoader), ExternalSource(nullptr),
67       Identifiers(opts, IILookup), IncrementalProcessing(false), TUKind(TUKind),
68       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),
74       MIChainHead(nullptr), DeserialMIChainHead(nullptr) {
75   OwnsHeaderSearch = OwnsHeaders;
76 
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;
96   MacroExpansionInDirectivesOverride = false;
97   InMacroArgs = false;
98   InMacroArgPreExpansion = false;
99   NumCachedTokenLexers = 0;
100   PragmasEnabled = true;
101   ParsingIfOrElifDirective = false;
102   PreprocessedOutput = false;
103 
104   CachedLexPos = 0;
105 
106   // We haven't read anything from the external source.
107   ReadMacrosFromExternalSource = false;
108 
109   // "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 
121   if(LangOpts.Borland) {
122     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 {
132     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;
137   }
138 }
139 
140 Preprocessor::~Preprocessor() {
141   assert(BacktrackPositions.empty() && "EnableBacktrack/Backtrack imbalance!");
142 
143   IncludeMacroStack.clear();
144 
145   // Destroy any macro definitions.
146   while (MacroInfoChain *I = MIChainHead) {
147     MIChainHead = I->Next;
148     I->~MacroInfoChain();
149   }
150 
151   // Free any cached macro expanders.
152   // This populates MacroArgCache, so all TokenLexers need to be destroyed
153   // before the code below that frees up the MacroArgCache list.
154   for (unsigned i = 0, e = NumCachedTokenLexers; i != e; ++i)
155     delete TokenLexerCache[i];
156   CurTokenLexer.reset();
157 
158   while (DeserializedMacroInfoChain *I = DeserialMIChainHead) {
159     DeserialMIChainHead = I->Next;
160     I->~DeserializedMacroInfoChain();
161   }
162 
163   // Free any cached MacroArgs.
164   for (MacroArgs *ArgList = MacroArgCache; ArgList;)
165     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 
180 void Preprocessor::Initialize(const TargetInfo &Target) {
181   assert((!this->Target || this->Target == &Target) &&
182          "Invalid override of target information");
183   this->Target = &Target;
184 
185   // Initialize information about built-ins.
186   BuiltinInfo.InitializeTarget(Target);
187   HeaderInfo.setTarget(Target);
188 }
189 
190 void 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 
202 void Preprocessor::FinalizeForModelFile() {
203   NumEnteredSourceFiles = 1;
204 
205   delete PragmaHandlers;
206   PragmaHandlers = PragmaHandlersBackup;
207 }
208 
209 void Preprocessor::setPTHManager(PTHManager* pm) {
210   PTH.reset(pm);
211   FileMgr.addStatCache(PTH->createStatCache());
212 }
213 
214 void Preprocessor::DumpToken(const Token &Tok, bool DumpFlags) const {
215   llvm::errs() << tok::getTokenName(Tok.getKind()) << " '"
216                << getSpelling(Tok) << "'";
217 
218   if (!DumpFlags) return;
219 
220   llvm::errs() << "\t";
221   if (Tok.isAtStartOfLine())
222     llvm::errs() << " [StartOfLine]";
223   if (Tok.hasLeadingSpace())
224     llvm::errs() << " [LeadingSpace]";
225   if (Tok.isExpandDisabled())
226     llvm::errs() << " [ExpandDisabled]";
227   if (Tok.needsCleaning()) {
228     const char *Start = SourceMgr.getCharacterData(Tok.getLocation());
229     llvm::errs() << " [UnClean='" << StringRef(Start, Tok.getLength())
230                  << "']";
231   }
232 
233   llvm::errs() << "\tLoc=<";
234   DumpLocation(Tok.getLocation());
235   llvm::errs() << ">";
236 }
237 
238 void Preprocessor::DumpLocation(SourceLocation Loc) const {
239   Loc.dump(SourceMgr);
240 }
241 
242 void Preprocessor::DumpMacro(const MacroInfo &MI) const {
243   llvm::errs() << "MACRO: ";
244   for (unsigned i = 0, e = MI.getNumTokens(); i != e; ++i) {
245     DumpToken(MI.getReplacementToken(i));
246     llvm::errs() << "  ";
247   }
248   llvm::errs() << "\n";
249 }
250 
251 void Preprocessor::PrintStats() {
252   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";
264 
265   llvm::errs() << NumMacroExpanded << "/" << NumFnMacroExpanded << "/"
266              << NumBuiltinMacroExpanded << " obj/fn/builtin macros expanded, "
267              << NumFastMacroExpanded << " on the fast path.\n";
268   llvm::errs() << (NumFastTokenPaste+NumTokenPaste)
269              << " token paste (##) operations performed, "
270              << NumFastTokenPaste << " on the fast path.\n";
271 
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";
285 }
286 
287 Preprocessor::macro_iterator
288 Preprocessor::macro_begin(bool IncludeExternalMacros) const {
289   if (IncludeExternalMacros && ExternalSource &&
290       !ReadMacrosFromExternalSource) {
291     ReadMacrosFromExternalSource = true;
292     ExternalSource->ReadDefinedMacros();
293   }
294 
295   return Macros.begin();
296 }
297 
298 size_t Preprocessor::getTotalMemory() const {
299   return BP.getTotalMemory()
300     + llvm::capacity_in_bytes(MacroExpandedTokens)
301     + Predefines.capacity() /* Predefines buffer. */
302     + llvm::capacity_in_bytes(Macros)
303     + llvm::capacity_in_bytes(PragmaPushMacroInfo)
304     + llvm::capacity_in_bytes(PoisonReasons)
305     + llvm::capacity_in_bytes(CommentHandlers);
306 }
307 
308 Preprocessor::macro_iterator
309 Preprocessor::macro_end(bool IncludeExternalMacros) const {
310   if (IncludeExternalMacros && ExternalSource &&
311       !ReadMacrosFromExternalSource) {
312     ReadMacrosFromExternalSource = true;
313     ExternalSource->ReadDefinedMacros();
314   }
315 
316   return Macros.end();
317 }
318 
319 /// \brief Compares macro tokens with a specified token value sequence.
320 static bool MacroDefinitionEquals(const MacroInfo *MI,
321                                   ArrayRef<TokenValue> Tokens) {
322   return Tokens.size() == MI->getNumTokens() &&
323       std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin());
324 }
325 
326 StringRef 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) {
333     if (!I->second->getMacroInfo()->isObjectLike())
334       continue;
335     const MacroDirective::DefInfo
336       Def = I->second->findDirectiveAtLoc(Loc, SourceMgr);
337     if (!Def)
338       continue;
339     if (!MacroDefinitionEquals(Def.getMacroInfo(), Tokens))
340       continue;
341     SourceLocation Location = Def.getLocation();
342     // 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 
353 void 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 
364 bool Preprocessor::SetCodeCompletionPoint(const FileEntry *File,
365                                           unsigned CompleteLine,
366                                           unsigned CompleteColumn) {
367   assert(File);
368   assert(CompleteLine && CompleteColumn && "Starts from 1:1");
369   assert(!CodeCompletionFile && "Already set");
370 
371   using llvm::MemoryBuffer;
372 
373   // Load the actual file's contents.
374   bool Invalid = false;
375   const MemoryBuffer *Buffer = SourceMgr.getMemoryBufferForFile(File, &Invalid);
376   if (Invalid)
377     return true;
378 
379   // Find the byte position of the truncation point.
380   const char *Position = Buffer->getBufferStart();
381   for (unsigned Line = 1; Line < CompleteLine; ++Line) {
382     for (; *Position; ++Position) {
383       if (*Position != '\r' && *Position != '\n')
384         continue;
385 
386       // 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   }
394 
395   Position += CompleteColumn - 1;
396 
397   // Insert '\0' at the code-completion point.
398   if (Position < Buffer->getBufferEnd()) {
399     CodeCompletionFile = File;
400     CodeCompletionOffset = Position - Buffer->getBufferStart();
401 
402     MemoryBuffer *NewBuffer =
403         MemoryBuffer::getNewUninitMemBuffer(Buffer->getBufferSize() + 1,
404                                             Buffer->getBufferIdentifier());
405     char *NewBuf = const_cast<char*>(NewBuffer->getBufferStart());
406     char *NewPos = std::copy(Buffer->getBufferStart(), Position, NewBuf);
407     *NewPos = '\0';
408     std::copy(Position, Buffer->getBufferEnd(), NewPos+1);
409     SourceMgr.overrideFileContents(File, NewBuffer);
410   }
411 
412   return false;
413 }
414 
415 void Preprocessor::CodeCompleteNaturalLanguage() {
416   if (CodeComplete)
417     CodeComplete->CodeCompleteNaturalLanguage();
418   setCodeCompletionReached();
419 }
420 
421 /// 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.
424 StringRef Preprocessor::getSpelling(const Token &Tok,
425                                           SmallVectorImpl<char> &Buffer,
426                                           bool *Invalid) const {
427   // NOTE: this has to be checked *before* testing for an IdentifierInfo.
428   if (Tok.isNot(tok::raw_identifier) && !Tok.hasUCN()) {
429     // Try the fast path.
430     if (const IdentifierInfo *II = Tok.getIdentifierInfo())
431       return II->getName();
432   }
433 
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();
439   unsigned Len = getSpelling(Tok, Ptr, Invalid);
440   return StringRef(Ptr, Len);
441 }
442 
443 /// 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.
446 void Preprocessor::CreateString(StringRef Str, Token &Tok,
447                                 SourceLocation ExpansionLocStart,
448                                 SourceLocation ExpansionLocEnd) {
449   Tok.setLength(Str.size());
450 
451   const char *DestPtr;
452   SourceLocation Loc = ScratchBuf->getToken(Str.data(), Str.size(), DestPtr);
453 
454   if (ExpansionLocStart.isValid())
455     Loc = SourceMgr.createExpansionLoc(Loc, ExpansionLocStart,
456                                        ExpansionLocEnd, Str.size());
457   Tok.setLocation(Loc);
458 
459   // 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())
463     Tok.setLiteralData(DestPtr);
464 }
465 
466 Module *Preprocessor::getCurrentModule() {
467   if (getLangOpts().CurrentModule.empty())
468     return nullptr;
469 
470   return getHeaderSearchInfo().lookupModule(getLangOpts().CurrentModule);
471 }
472 
473 //===----------------------------------------------------------------------===//
474 // Preprocessor Initialization Methods
475 //===----------------------------------------------------------------------===//
476 
477 
478 /// EnterMainSourceFile - Enter the specified FileID as the main source file,
479 /// which implicitly adds the builtin defines etc.
480 void Preprocessor::EnterMainSourceFile() {
481   // 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!");
485   FileID MainFileID = SourceMgr.getMainFileID();
486 
487   // 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.
491     EnterSourceFile(MainFileID, nullptr, SourceLocation());
492 
493     // 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   }
504 
505   // Preprocess Predefines to populate the initial preprocessor state.
506   llvm::MemoryBuffer *SB =
507     llvm::MemoryBuffer::getMemBufferCopy(Predefines, "<built-in>");
508   assert(SB && "Cannot create predefined source buffer");
509   FileID FID = SourceMgr.createFileID(SB);
510   assert(!FID.isInvalid() && "Could not create FileID for predefines?");
511   setPredefinesFileID(FID);
512 
513   // Start parsing the predefines.
514   EnterSourceFile(FID, nullptr, SourceLocation());
515 }
516 
517 void Preprocessor::EndSourceFile() {
518   // Notify the client that we reached the end of the source file.
519   if (Callbacks)
520     Callbacks->EndOfMainFile();
521 }
522 
523 //===----------------------------------------------------------------------===//
524 // Lexer Event Handling.
525 //===----------------------------------------------------------------------===//
526 
527 /// 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.
530 IdentifierInfo *Preprocessor::LookUpIdentifierInfo(Token &Identifier) const {
531   assert(!Identifier.getRawIdentifier().empty() && "No raw identifier data!");
532 
533   // Look up this token, see if it is a macro, or if it is a language keyword.
534   IdentifierInfo *II;
535   if (!Identifier.needsCleaning() && !Identifier.hasUCN()) {
536     // No cleaning needed, just use the characters from the lexed buffer.
537     II = getIdentifierInfo(Identifier.getRawIdentifier());
538   } else {
539     // Cleaning needed, alloca a buffer, clean into it, then use the buffer.
540     SmallString<64> IdentifierBuffer;
541     StringRef CleanedStr = getSpelling(Identifier, IdentifierBuffer);
542 
543     if (Identifier.hasUCN()) {
544       SmallString<64> UCNIdentifierBuffer;
545       expandUCNs(UCNIdentifierBuffer, CleanedStr);
546       II = getIdentifierInfo(UCNIdentifierBuffer);
547     } else {
548       II = getIdentifierInfo(CleanedStr);
549     }
550   }
551 
552   // Update the token info (identifier info and appropriate token kind).
553   Identifier.setIdentifierInfo(II);
554   Identifier.setKind(II->getTokenID());
555 
556   return II;
557 }
558 
559 void Preprocessor::SetPoisonReason(IdentifierInfo *II, unsigned DiagID) {
560   PoisonReasons[II] = DiagID;
561 }
562 
563 void 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 
577 void 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 }
587 
588 /// 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').
591 ///
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.
596 bool Preprocessor::HandleIdentifier(Token &Identifier) {
597   assert(Identifier.getIdentifierInfo() &&
598          "Can't handle identifiers without identifier info!");
599 
600   IdentifierInfo &II = *Identifier.getIdentifierInfo();
601 
602   // If the information about this identifier is out of date, update it from
603   // the external source.
604   // 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.
607   if (II.isOutOfDate()) {
608     bool CurrentIsPoisoned = false;
609     if (&II == Ident__VA_ARGS__)
610       CurrentIsPoisoned = Ident__VA_ARGS__->isPoisoned();
611 
612     ExternalSource->updateOutOfDateIdentifier(II);
613     Identifier.setKind(II.getTokenID());
614 
615     if (&II == Ident__VA_ARGS__)
616       II.setIsPoisoned(CurrentIsPoisoned);
617   }
618 
619   // If this identifier was poisoned, and if it was not produced from a macro
620   // expansion, emit an error.
621   if (II.isPoisoned() && CurPPLexer) {
622     HandlePoisonedIdentifier(Identifier);
623   }
624 
625   // If this is a macro to be expanded, do it.
626   if (MacroDirective *MD = getMacroDirective(&II)) {
627     MacroInfo *MI = MD->getMacroInfo();
628     if (!DisableMacroExpansion) {
629       if (!Identifier.isExpandDisabled() && MI->isEnabled()) {
630         // 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);
634       } 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.
638         Identifier.setFlag(Token::DisableExpand);
639         if (MI->isObjectLike() || isNextPPTokenLParen())
640           Diag(Identifier, diag::pp_disabled_macro_expansion);
641       }
642     }
643   }
644 
645   // 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;"
650   if (II.isCXX11CompatKeyword() && !DisableMacroExpansion) {
651     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 
656   // 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.
659   if (II.isCPlusPlusOperatorKeyword())
660     Identifier.setIdentifierInfo(nullptr);
661 
662   // If this is an extension token, diagnose its use.
663   // We avoid diagnosing tokens that originate from macro definitions.
664   // 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)
667     Diag(Identifier, diag::ext_token_used);
668 
669   // If this is the 'import' contextual keyword following an '@', note
670   // that the next token indicates a module name.
671   //
672   // Note that we do not treat 'import' as a contextual
673   // keyword when we're in a caching lexer, because caching lexers only get
674   // used in contexts where import declarations are disallowed.
675   if (LastTokenWasAt && II.isModulesImport() && !InMacroArgs &&
676       !DisableMacroExpansion && getLangOpts().Modules &&
677       CurLexerKind != CLK_CachingLexer) {
678     ModuleImportLoc = Identifier.getLocation();
679     ModuleImportPath.clear();
680     ModuleImportExpectsIdentifier = true;
681     CurLexerKind = CLK_LexAfterModuleImport;
682   }
683   return true;
684 }
685 
686 void 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);
710 
711   LastTokenWasAt = Result.is(tok::at);
712 }
713 
714 
715 /// \brief Lex a token following the 'import' contextual keyword.
716 ///
717 void Preprocessor::LexAfterModuleImport(Token &Result) {
718   // Figure out what kind of lexer we actually have.
719   recomputeCurLexerKind();
720 
721   // Lex the next token.
722   Lex(Result);
723 
724   // The token sequence
725   //
726   //   import identifier (. identifier)*
727   //
728   // indicates a module import directive. We already saw the 'import'
729   // contextual keyword, so now we're looking for the identifiers.
730   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;
737     return;
738   }
739 
740   // 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.
749   if (!ModuleImportPath.empty() && getLangOpts().Modules) {
750     Module *Imported = TheModuleLoader.loadModule(ModuleImportLoc,
751                                                   ModuleImportPath,
752                                                   Module::MacrosVisible,
753                                                   /*IsIncludeDirective=*/false);
754     if (Callbacks)
755       Callbacks->moduleImport(ModuleImportLoc, ModuleImportPath, Imported);
756   }
757 }
758 
759 bool Preprocessor::FinishLexStringLiteral(Token &Result, std::string &String,
760                                           const char *DiagnosticTag,
761                                           bool AllowMacroExpansion) {
762   // We need at least one string literal.
763   if (Result.isNot(tok::string_literal)) {
764     Diag(Result, diag::err_expected_string_literal)
765       << /*Source='in...'*/0 << DiagnosticTag;
766     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.
784   StringLiteralParser Literal(StrToks, *this);
785   assert(Literal.isAscii() && "Didn't allow wide strings in");
786 
787   if (Literal.hadError)
788     return false;
789 
790   if (Literal.Pascal) {
791     Diag(StrToks[0].getLocation(), diag::err_expected_string_literal)
792       << /*Source='in...'*/0 << DiagnosticTag;
793     return false;
794   }
795 
796   String = Literal.GetString();
797   return true;
798 }
799 
800 bool 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 
818 void Preprocessor::addCommentHandler(CommentHandler *Handler) {
819   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 
825 void Preprocessor::removeCommentHandler(CommentHandler *Handler) {
826   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 
832 bool Preprocessor::HandleComment(Token &result, SourceRange Comment) {
833   bool AnyPendingTokens = false;
834   for (std::vector<CommentHandler *>::iterator H = CommentHandlers.begin(),
835        HEnd = CommentHandlers.end();
836        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;
844 }
845 
846 ModuleLoader::~ModuleLoader() { }
847 
848 CommentHandler::~CommentHandler() { }
849 
850 CodeCompletionHandler::~CodeCompletionHandler() { }
851 
852 void Preprocessor::createPreprocessingRecord() {
853   if (Record)
854     return;
855 
856   Record = new PreprocessingRecord(getSourceManager());
857   addPPCallbacks(Record);
858 }
859