1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
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 /// \file
11 /// \brief Implements # directive processing for the Preprocessor.
12 ///
13 //===----------------------------------------------------------------------===//
14 
15 #include "clang/Lex/Preprocessor.h"
16 #include "clang/Basic/FileManager.h"
17 #include "clang/Basic/SourceManager.h"
18 #include "clang/Lex/CodeCompletionHandler.h"
19 #include "clang/Lex/HeaderSearch.h"
20 #include "clang/Lex/HeaderSearchOptions.h"
21 #include "clang/Lex/LexDiagnostic.h"
22 #include "clang/Lex/LiteralSupport.h"
23 #include "clang/Lex/MacroInfo.h"
24 #include "clang/Lex/ModuleLoader.h"
25 #include "clang/Lex/Pragma.h"
26 #include "llvm/ADT/APInt.h"
27 #include "llvm/Support/ErrorHandling.h"
28 #include "llvm/Support/Path.h"
29 #include "llvm/Support/SaveAndRestore.h"
30 using namespace clang;
31 
32 //===----------------------------------------------------------------------===//
33 // Utility Methods for Preprocessor Directive Handling.
34 //===----------------------------------------------------------------------===//
35 
36 MacroInfo *Preprocessor::AllocateMacroInfo() {
37   MacroInfoChain *MIChain = BP.Allocate<MacroInfoChain>();
38   MIChain->Next = MIChainHead;
39   MIChainHead = MIChain;
40   return &MIChain->MI;
41 }
42 
43 MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) {
44   MacroInfo *MI = AllocateMacroInfo();
45   new (MI) MacroInfo(L);
46   return MI;
47 }
48 
49 MacroInfo *Preprocessor::AllocateDeserializedMacroInfo(SourceLocation L,
50                                                        unsigned SubModuleID) {
51   static_assert(llvm::AlignOf<MacroInfo>::Alignment >= sizeof(SubModuleID),
52                 "alignment for MacroInfo is less than the ID");
53   DeserializedMacroInfoChain *MIChain =
54       BP.Allocate<DeserializedMacroInfoChain>();
55   MIChain->Next = DeserialMIChainHead;
56   DeserialMIChainHead = MIChain;
57 
58   MacroInfo *MI = &MIChain->MI;
59   new (MI) MacroInfo(L);
60   MI->FromASTFile = true;
61   MI->setOwningModuleID(SubModuleID);
62   return MI;
63 }
64 
65 DefMacroDirective *
66 Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc,
67                                         unsigned ImportedFromModuleID,
68                                         ArrayRef<unsigned> Overrides) {
69   unsigned NumExtra = (ImportedFromModuleID ? 1 : 0) + Overrides.size();
70   return new (BP.Allocate(sizeof(DefMacroDirective) +
71                               sizeof(unsigned) * NumExtra,
72                           llvm::alignOf<DefMacroDirective>()))
73       DefMacroDirective(MI, Loc, ImportedFromModuleID, Overrides);
74 }
75 
76 UndefMacroDirective *
77 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc,
78                                           unsigned ImportedFromModuleID,
79                                           ArrayRef<unsigned> Overrides) {
80   unsigned NumExtra = (ImportedFromModuleID ? 1 : 0) + Overrides.size();
81   return new (BP.Allocate(sizeof(UndefMacroDirective) +
82                               sizeof(unsigned) * NumExtra,
83                           llvm::alignOf<UndefMacroDirective>()))
84       UndefMacroDirective(UndefLoc, ImportedFromModuleID, Overrides);
85 }
86 
87 VisibilityMacroDirective *
88 Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc,
89                                                bool isPublic) {
90   return new (BP) VisibilityMacroDirective(Loc, isPublic);
91 }
92 
93 /// \brief Read and discard all tokens remaining on the current line until
94 /// the tok::eod token is found.
95 void Preprocessor::DiscardUntilEndOfDirective() {
96   Token Tmp;
97   do {
98     LexUnexpandedToken(Tmp);
99     assert(Tmp.isNot(tok::eof) && "EOF seen while discarding directive tokens");
100   } while (Tmp.isNot(tok::eod));
101 }
102 
103 bool Preprocessor::CheckMacroName(Token &MacroNameTok, MacroUse isDefineUndef) {
104   // Missing macro name?
105   if (MacroNameTok.is(tok::eod))
106     return Diag(MacroNameTok, diag::err_pp_missing_macro_name);
107 
108   IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
109   if (!II) {
110     bool Invalid = false;
111     std::string Spelling = getSpelling(MacroNameTok, &Invalid);
112     if (Invalid)
113       return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
114     II = getIdentifierInfo(Spelling);
115 
116     if (!II->isCPlusPlusOperatorKeyword())
117       return Diag(MacroNameTok, diag::err_pp_macro_not_identifier);
118 
119     // C++ 2.5p2: Alternative tokens behave the same as its primary token
120     // except for their spellings.
121     Diag(MacroNameTok, getLangOpts().MicrosoftExt
122                            ? diag::ext_pp_operator_used_as_macro_name
123                            : diag::err_pp_operator_used_as_macro_name)
124         << II << MacroNameTok.getKind();
125 
126     // Allow #defining |and| and friends for Microsoft compatibility or
127     // recovery when legacy C headers are included in C++.
128     MacroNameTok.setIdentifierInfo(II);
129   }
130 
131   if ((isDefineUndef != MU_Other) && II->getPPKeywordID() == tok::pp_defined) {
132     // Error if defining "defined": C99 6.10.8/4, C++ [cpp.predefined]p4.
133     return Diag(MacroNameTok, diag::err_defined_macro_name);
134   }
135 
136   if (isDefineUndef == MU_Undef && II->hasMacroDefinition() &&
137       getMacroInfo(II)->isBuiltinMacro()) {
138     // Warn if undefining "__LINE__" and other builtins, per C99 6.10.8/4
139     // and C++ [cpp.predefined]p4], but allow it as an extension.
140     Diag(MacroNameTok, diag::ext_pp_undef_builtin_macro);
141   }
142 
143   // Okay, we got a good identifier.
144   return false;
145 }
146 
147 /// \brief Lex and validate a macro name, which occurs after a
148 /// \#define or \#undef.
149 ///
150 /// This sets the token kind to eod and discards the rest of the macro line if
151 /// the macro name is invalid.
152 ///
153 /// \param MacroNameTok Token that is expected to be a macro name.
154 /// \papam isDefineUndef Context in which macro is used.
155 void Preprocessor::ReadMacroName(Token &MacroNameTok, MacroUse isDefineUndef) {
156   // Read the token, don't allow macro expansion on it.
157   LexUnexpandedToken(MacroNameTok);
158 
159   if (MacroNameTok.is(tok::code_completion)) {
160     if (CodeComplete)
161       CodeComplete->CodeCompleteMacroName(isDefineUndef == MU_Define);
162     setCodeCompletionReached();
163     LexUnexpandedToken(MacroNameTok);
164   }
165 
166   if (!CheckMacroName(MacroNameTok, isDefineUndef))
167     return;
168 
169   // Invalid macro name, read and discard the rest of the line and set the
170   // token kind to tok::eod if necessary.
171   if (MacroNameTok.isNot(tok::eod)) {
172     MacroNameTok.setKind(tok::eod);
173     DiscardUntilEndOfDirective();
174   }
175 }
176 
177 /// \brief Ensure that the next token is a tok::eod token.
178 ///
179 /// If not, emit a diagnostic and consume up until the eod.  If EnableMacros is
180 /// true, then we consider macros that expand to zero tokens as being ok.
181 void Preprocessor::CheckEndOfDirective(const char *DirType, bool EnableMacros) {
182   Token Tmp;
183   // Lex unexpanded tokens for most directives: macros might expand to zero
184   // tokens, causing us to miss diagnosing invalid lines.  Some directives (like
185   // #line) allow empty macros.
186   if (EnableMacros)
187     Lex(Tmp);
188   else
189     LexUnexpandedToken(Tmp);
190 
191   // There should be no tokens after the directive, but we allow them as an
192   // extension.
193   while (Tmp.is(tok::comment))  // Skip comments in -C mode.
194     LexUnexpandedToken(Tmp);
195 
196   if (Tmp.isNot(tok::eod)) {
197     // Add a fixit in GNU/C99/C++ mode.  Don't offer a fixit for strict-C89,
198     // or if this is a macro-style preprocessing directive, because it is more
199     // trouble than it is worth to insert /**/ and check that there is no /**/
200     // in the range also.
201     FixItHint Hint;
202     if ((LangOpts.GNUMode || LangOpts.C99 || LangOpts.CPlusPlus) &&
203         !CurTokenLexer)
204       Hint = FixItHint::CreateInsertion(Tmp.getLocation(),"//");
205     Diag(Tmp, diag::ext_pp_extra_tokens_at_eol) << DirType << Hint;
206     DiscardUntilEndOfDirective();
207   }
208 }
209 
210 
211 
212 /// SkipExcludedConditionalBlock - We just read a \#if or related directive and
213 /// decided that the subsequent tokens are in the \#if'd out portion of the
214 /// file.  Lex the rest of the file, until we see an \#endif.  If
215 /// FoundNonSkipPortion is true, then we have already emitted code for part of
216 /// this \#if directive, so \#else/\#elif blocks should never be entered.
217 /// If ElseOk is true, then \#else directives are ok, if not, then we have
218 /// already seen one so a \#else directive is a duplicate.  When this returns,
219 /// the caller can lex the first valid token.
220 void Preprocessor::SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
221                                                 bool FoundNonSkipPortion,
222                                                 bool FoundElse,
223                                                 SourceLocation ElseLoc) {
224   ++NumSkipped;
225   assert(!CurTokenLexer && CurPPLexer && "Lexing a macro, not a file?");
226 
227   CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
228                                  FoundNonSkipPortion, FoundElse);
229 
230   if (CurPTHLexer) {
231     PTHSkipExcludedConditionalBlock();
232     return;
233   }
234 
235   // Enter raw mode to disable identifier lookup (and thus macro expansion),
236   // disabling warnings, etc.
237   CurPPLexer->LexingRawMode = true;
238   Token Tok;
239   while (1) {
240     CurLexer->Lex(Tok);
241 
242     if (Tok.is(tok::code_completion)) {
243       if (CodeComplete)
244         CodeComplete->CodeCompleteInConditionalExclusion();
245       setCodeCompletionReached();
246       continue;
247     }
248 
249     // If this is the end of the buffer, we have an error.
250     if (Tok.is(tok::eof)) {
251       // Emit errors for each unterminated conditional on the stack, including
252       // the current one.
253       while (!CurPPLexer->ConditionalStack.empty()) {
254         if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
255           Diag(CurPPLexer->ConditionalStack.back().IfLoc,
256                diag::err_pp_unterminated_conditional);
257         CurPPLexer->ConditionalStack.pop_back();
258       }
259 
260       // Just return and let the caller lex after this #include.
261       break;
262     }
263 
264     // If this token is not a preprocessor directive, just skip it.
265     if (Tok.isNot(tok::hash) || !Tok.isAtStartOfLine())
266       continue;
267 
268     // We just parsed a # character at the start of a line, so we're in
269     // directive mode.  Tell the lexer this so any newlines we see will be
270     // converted into an EOD token (this terminates the macro).
271     CurPPLexer->ParsingPreprocessorDirective = true;
272     if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
273 
274 
275     // Read the next token, the directive flavor.
276     LexUnexpandedToken(Tok);
277 
278     // If this isn't an identifier directive (e.g. is "# 1\n" or "#\n", or
279     // something bogus), skip it.
280     if (Tok.isNot(tok::raw_identifier)) {
281       CurPPLexer->ParsingPreprocessorDirective = false;
282       // Restore comment saving mode.
283       if (CurLexer) CurLexer->resetExtendedTokenMode();
284       continue;
285     }
286 
287     // If the first letter isn't i or e, it isn't intesting to us.  We know that
288     // this is safe in the face of spelling differences, because there is no way
289     // to spell an i/e in a strange way that is another letter.  Skipping this
290     // allows us to avoid looking up the identifier info for #define/#undef and
291     // other common directives.
292     StringRef RI = Tok.getRawIdentifier();
293 
294     char FirstChar = RI[0];
295     if (FirstChar >= 'a' && FirstChar <= 'z' &&
296         FirstChar != 'i' && FirstChar != 'e') {
297       CurPPLexer->ParsingPreprocessorDirective = false;
298       // Restore comment saving mode.
299       if (CurLexer) CurLexer->resetExtendedTokenMode();
300       continue;
301     }
302 
303     // Get the identifier name without trigraphs or embedded newlines.  Note
304     // that we can't use Tok.getIdentifierInfo() because its lookup is disabled
305     // when skipping.
306     char DirectiveBuf[20];
307     StringRef Directive;
308     if (!Tok.needsCleaning() && RI.size() < 20) {
309       Directive = RI;
310     } else {
311       std::string DirectiveStr = getSpelling(Tok);
312       unsigned IdLen = DirectiveStr.size();
313       if (IdLen >= 20) {
314         CurPPLexer->ParsingPreprocessorDirective = false;
315         // Restore comment saving mode.
316         if (CurLexer) CurLexer->resetExtendedTokenMode();
317         continue;
318       }
319       memcpy(DirectiveBuf, &DirectiveStr[0], IdLen);
320       Directive = StringRef(DirectiveBuf, IdLen);
321     }
322 
323     if (Directive.startswith("if")) {
324       StringRef Sub = Directive.substr(2);
325       if (Sub.empty() ||   // "if"
326           Sub == "def" ||   // "ifdef"
327           Sub == "ndef") {  // "ifndef"
328         // We know the entire #if/#ifdef/#ifndef block will be skipped, don't
329         // bother parsing the condition.
330         DiscardUntilEndOfDirective();
331         CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
332                                        /*foundnonskip*/false,
333                                        /*foundelse*/false);
334       }
335     } else if (Directive[0] == 'e') {
336       StringRef Sub = Directive.substr(1);
337       if (Sub == "ndif") {  // "endif"
338         PPConditionalInfo CondInfo;
339         CondInfo.WasSkipping = true; // Silence bogus warning.
340         bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
341         (void)InCond;  // Silence warning in no-asserts mode.
342         assert(!InCond && "Can't be skipping if not in a conditional!");
343 
344         // If we popped the outermost skipping block, we're done skipping!
345         if (!CondInfo.WasSkipping) {
346           // Restore the value of LexingRawMode so that trailing comments
347           // are handled correctly, if we've reached the outermost block.
348           CurPPLexer->LexingRawMode = false;
349           CheckEndOfDirective("endif");
350           CurPPLexer->LexingRawMode = true;
351           if (Callbacks)
352             Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
353           break;
354         } else {
355           DiscardUntilEndOfDirective();
356         }
357       } else if (Sub == "lse") { // "else".
358         // #else directive in a skipping conditional.  If not in some other
359         // skipping conditional, and if #else hasn't already been seen, enter it
360         // as a non-skipping conditional.
361         PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
362 
363         // If this is a #else with a #else before it, report the error.
364         if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_else_after_else);
365 
366         // Note that we've seen a #else in this conditional.
367         CondInfo.FoundElse = true;
368 
369         // If the conditional is at the top level, and the #if block wasn't
370         // entered, enter the #else block now.
371         if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) {
372           CondInfo.FoundNonSkip = true;
373           // Restore the value of LexingRawMode so that trailing comments
374           // are handled correctly.
375           CurPPLexer->LexingRawMode = false;
376           CheckEndOfDirective("else");
377           CurPPLexer->LexingRawMode = true;
378           if (Callbacks)
379             Callbacks->Else(Tok.getLocation(), CondInfo.IfLoc);
380           break;
381         } else {
382           DiscardUntilEndOfDirective();  // C99 6.10p4.
383         }
384       } else if (Sub == "lif") {  // "elif".
385         PPConditionalInfo &CondInfo = CurPPLexer->peekConditionalLevel();
386 
387         // If this is a #elif with a #else before it, report the error.
388         if (CondInfo.FoundElse) Diag(Tok, diag::pp_err_elif_after_else);
389 
390         // If this is in a skipping block or if we're already handled this #if
391         // block, don't bother parsing the condition.
392         if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) {
393           DiscardUntilEndOfDirective();
394         } else {
395           const SourceLocation CondBegin = CurPPLexer->getSourceLocation();
396           // Restore the value of LexingRawMode so that identifiers are
397           // looked up, etc, inside the #elif expression.
398           assert(CurPPLexer->LexingRawMode && "We have to be skipping here!");
399           CurPPLexer->LexingRawMode = false;
400           IdentifierInfo *IfNDefMacro = nullptr;
401           const bool CondValue = EvaluateDirectiveExpression(IfNDefMacro);
402           CurPPLexer->LexingRawMode = true;
403           if (Callbacks) {
404             const SourceLocation CondEnd = CurPPLexer->getSourceLocation();
405             Callbacks->Elif(Tok.getLocation(),
406                             SourceRange(CondBegin, CondEnd),
407                             (CondValue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False), CondInfo.IfLoc);
408           }
409           // If this condition is true, enter it!
410           if (CondValue) {
411             CondInfo.FoundNonSkip = true;
412             break;
413           }
414         }
415       }
416     }
417 
418     CurPPLexer->ParsingPreprocessorDirective = false;
419     // Restore comment saving mode.
420     if (CurLexer) CurLexer->resetExtendedTokenMode();
421   }
422 
423   // Finally, if we are out of the conditional (saw an #endif or ran off the end
424   // of the file, just stop skipping and return to lexing whatever came after
425   // the #if block.
426   CurPPLexer->LexingRawMode = false;
427 
428   if (Callbacks) {
429     SourceLocation BeginLoc = ElseLoc.isValid() ? ElseLoc : IfTokenLoc;
430     Callbacks->SourceRangeSkipped(SourceRange(BeginLoc, Tok.getLocation()));
431   }
432 }
433 
434 void Preprocessor::PTHSkipExcludedConditionalBlock() {
435 
436   while (1) {
437     assert(CurPTHLexer);
438     assert(CurPTHLexer->LexingRawMode == false);
439 
440     // Skip to the next '#else', '#elif', or #endif.
441     if (CurPTHLexer->SkipBlock()) {
442       // We have reached an #endif.  Both the '#' and 'endif' tokens
443       // have been consumed by the PTHLexer.  Just pop off the condition level.
444       PPConditionalInfo CondInfo;
445       bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
446       (void)InCond;  // Silence warning in no-asserts mode.
447       assert(!InCond && "Can't be skipping if not in a conditional!");
448       break;
449     }
450 
451     // We have reached a '#else' or '#elif'.  Lex the next token to get
452     // the directive flavor.
453     Token Tok;
454     LexUnexpandedToken(Tok);
455 
456     // We can actually look up the IdentifierInfo here since we aren't in
457     // raw mode.
458     tok::PPKeywordKind K = Tok.getIdentifierInfo()->getPPKeywordID();
459 
460     if (K == tok::pp_else) {
461       // #else: Enter the else condition.  We aren't in a nested condition
462       //  since we skip those. We're always in the one matching the last
463       //  blocked we skipped.
464       PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
465       // Note that we've seen a #else in this conditional.
466       CondInfo.FoundElse = true;
467 
468       // If the #if block wasn't entered then enter the #else block now.
469       if (!CondInfo.FoundNonSkip) {
470         CondInfo.FoundNonSkip = true;
471 
472         // Scan until the eod token.
473         CurPTHLexer->ParsingPreprocessorDirective = true;
474         DiscardUntilEndOfDirective();
475         CurPTHLexer->ParsingPreprocessorDirective = false;
476 
477         break;
478       }
479 
480       // Otherwise skip this block.
481       continue;
482     }
483 
484     assert(K == tok::pp_elif);
485     PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
486 
487     // If this is a #elif with a #else before it, report the error.
488     if (CondInfo.FoundElse)
489       Diag(Tok, diag::pp_err_elif_after_else);
490 
491     // If this is in a skipping block or if we're already handled this #if
492     // block, don't bother parsing the condition.  We just skip this block.
493     if (CondInfo.FoundNonSkip)
494       continue;
495 
496     // Evaluate the condition of the #elif.
497     IdentifierInfo *IfNDefMacro = nullptr;
498     CurPTHLexer->ParsingPreprocessorDirective = true;
499     bool ShouldEnter = EvaluateDirectiveExpression(IfNDefMacro);
500     CurPTHLexer->ParsingPreprocessorDirective = false;
501 
502     // If this condition is true, enter it!
503     if (ShouldEnter) {
504       CondInfo.FoundNonSkip = true;
505       break;
506     }
507 
508     // Otherwise, skip this block and go to the next one.
509     continue;
510   }
511 }
512 
513 Module *Preprocessor::getModuleForLocation(SourceLocation FilenameLoc) {
514   ModuleMap &ModMap = HeaderInfo.getModuleMap();
515   if (SourceMgr.isInMainFile(FilenameLoc)) {
516     if (Module *CurMod = getCurrentModule())
517       return CurMod;                               // Compiling a module.
518     return HeaderInfo.getModuleMap().SourceModule; // Compiling a source.
519   }
520   // Try to determine the module of the include directive.
521   // FIXME: Look into directly passing the FileEntry from LookupFile instead.
522   FileID IDOfIncl = SourceMgr.getFileID(SourceMgr.getExpansionLoc(FilenameLoc));
523   if (const FileEntry *EntryOfIncl = SourceMgr.getFileEntryForID(IDOfIncl)) {
524     // The include comes from a file.
525     return ModMap.findModuleForHeader(EntryOfIncl).getModule();
526   } else {
527     // The include does not come from a file,
528     // so it is probably a module compilation.
529     return getCurrentModule();
530   }
531 }
532 
533 const FileEntry *Preprocessor::LookupFile(
534     SourceLocation FilenameLoc,
535     StringRef Filename,
536     bool isAngled,
537     const DirectoryLookup *FromDir,
538     const FileEntry *FromFile,
539     const DirectoryLookup *&CurDir,
540     SmallVectorImpl<char> *SearchPath,
541     SmallVectorImpl<char> *RelativePath,
542     ModuleMap::KnownHeader *SuggestedModule,
543     bool SkipCache) {
544   // If the header lookup mechanism may be relative to the current inclusion
545   // stack, record the parent #includes.
546   SmallVector<std::pair<const FileEntry *, const DirectoryEntry *>, 16>
547       Includers;
548   if (!FromDir && !FromFile) {
549     FileID FID = getCurrentFileLexer()->getFileID();
550     const FileEntry *FileEnt = SourceMgr.getFileEntryForID(FID);
551 
552     // If there is no file entry associated with this file, it must be the
553     // predefines buffer.  Any other file is not lexed with a normal lexer, so
554     // it won't be scanned for preprocessor directives.   If we have the
555     // predefines buffer, resolve #include references (which come from the
556     // -include command line argument) from the current working directory
557     // instead of relative to the main file.
558     if (!FileEnt) {
559       FileEnt = SourceMgr.getFileEntryForID(SourceMgr.getMainFileID());
560       if (FileEnt)
561         Includers.push_back(std::make_pair(FileEnt, FileMgr.getDirectory(".")));
562     } else {
563       Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
564     }
565 
566     // MSVC searches the current include stack from top to bottom for
567     // headers included by quoted include directives.
568     // See: http://msdn.microsoft.com/en-us/library/36k2cdd4.aspx
569     if (LangOpts.MSVCCompat && !isAngled) {
570       for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
571         IncludeStackInfo &ISEntry = IncludeMacroStack[e - i - 1];
572         if (IsFileLexer(ISEntry))
573           if ((FileEnt = SourceMgr.getFileEntryForID(
574                    ISEntry.ThePPLexer->getFileID())))
575             Includers.push_back(std::make_pair(FileEnt, FileEnt->getDir()));
576       }
577     }
578   }
579 
580   CurDir = CurDirLookup;
581 
582   if (FromFile) {
583     // We're supposed to start looking from after a particular file. Search
584     // the include path until we find that file or run out of files.
585     const DirectoryLookup *TmpCurDir = CurDir;
586     const DirectoryLookup *TmpFromDir = nullptr;
587     while (const FileEntry *FE = HeaderInfo.LookupFile(
588                Filename, FilenameLoc, isAngled, TmpFromDir, TmpCurDir,
589                Includers, SearchPath, RelativePath, SuggestedModule,
590                SkipCache)) {
591       // Keep looking as if this file did a #include_next.
592       TmpFromDir = TmpCurDir;
593       ++TmpFromDir;
594       if (FE == FromFile) {
595         // Found it.
596         FromDir = TmpFromDir;
597         CurDir = TmpCurDir;
598         break;
599       }
600     }
601   }
602 
603   // Do a standard file entry lookup.
604   const FileEntry *FE = HeaderInfo.LookupFile(
605       Filename, FilenameLoc, isAngled, FromDir, CurDir, Includers, SearchPath,
606       RelativePath, SuggestedModule, SkipCache);
607   if (FE) {
608     if (SuggestedModule && !LangOpts.AsmPreprocessor)
609       HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
610           getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
611     return FE;
612   }
613 
614   const FileEntry *CurFileEnt;
615   // Otherwise, see if this is a subframework header.  If so, this is relative
616   // to one of the headers on the #include stack.  Walk the list of the current
617   // headers on the #include stack and pass them to HeaderInfo.
618   if (IsFileLexer()) {
619     if ((CurFileEnt = SourceMgr.getFileEntryForID(CurPPLexer->getFileID()))) {
620       if ((FE = HeaderInfo.LookupSubframeworkHeader(Filename, CurFileEnt,
621                                                     SearchPath, RelativePath,
622                                                     SuggestedModule))) {
623         if (SuggestedModule && !LangOpts.AsmPreprocessor)
624           HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
625               getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
626         return FE;
627       }
628     }
629   }
630 
631   for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) {
632     IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1];
633     if (IsFileLexer(ISEntry)) {
634       if ((CurFileEnt =
635            SourceMgr.getFileEntryForID(ISEntry.ThePPLexer->getFileID()))) {
636         if ((FE = HeaderInfo.LookupSubframeworkHeader(
637                 Filename, CurFileEnt, SearchPath, RelativePath,
638                 SuggestedModule))) {
639           if (SuggestedModule && !LangOpts.AsmPreprocessor)
640             HeaderInfo.getModuleMap().diagnoseHeaderInclusion(
641                 getModuleForLocation(FilenameLoc), FilenameLoc, Filename, FE);
642           return FE;
643         }
644       }
645     }
646   }
647 
648   // Otherwise, we really couldn't find the file.
649   return nullptr;
650 }
651 
652 
653 //===----------------------------------------------------------------------===//
654 // Preprocessor Directive Handling.
655 //===----------------------------------------------------------------------===//
656 
657 class Preprocessor::ResetMacroExpansionHelper {
658 public:
659   ResetMacroExpansionHelper(Preprocessor *pp)
660     : PP(pp), save(pp->DisableMacroExpansion) {
661     if (pp->MacroExpansionInDirectivesOverride)
662       pp->DisableMacroExpansion = false;
663   }
664   ~ResetMacroExpansionHelper() {
665     PP->DisableMacroExpansion = save;
666   }
667 private:
668   Preprocessor *PP;
669   bool save;
670 };
671 
672 /// HandleDirective - This callback is invoked when the lexer sees a # token
673 /// at the start of a line.  This consumes the directive, modifies the
674 /// lexer/preprocessor state, and advances the lexer(s) so that the next token
675 /// read is the correct one.
676 void Preprocessor::HandleDirective(Token &Result) {
677   // FIXME: Traditional: # with whitespace before it not recognized by K&R?
678 
679   // We just parsed a # character at the start of a line, so we're in directive
680   // mode.  Tell the lexer this so any newlines we see will be converted into an
681   // EOD token (which terminates the directive).
682   CurPPLexer->ParsingPreprocessorDirective = true;
683   if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
684 
685   bool ImmediatelyAfterTopLevelIfndef =
686       CurPPLexer->MIOpt.getImmediatelyAfterTopLevelIfndef();
687   CurPPLexer->MIOpt.resetImmediatelyAfterTopLevelIfndef();
688 
689   ++NumDirectives;
690 
691   // We are about to read a token.  For the multiple-include optimization FA to
692   // work, we have to remember if we had read any tokens *before* this
693   // pp-directive.
694   bool ReadAnyTokensBeforeDirective =CurPPLexer->MIOpt.getHasReadAnyTokensVal();
695 
696   // Save the '#' token in case we need to return it later.
697   Token SavedHash = Result;
698 
699   // Read the next token, the directive flavor.  This isn't expanded due to
700   // C99 6.10.3p8.
701   LexUnexpandedToken(Result);
702 
703   // C99 6.10.3p11: Is this preprocessor directive in macro invocation?  e.g.:
704   //   #define A(x) #x
705   //   A(abc
706   //     #warning blah
707   //   def)
708   // If so, the user is relying on undefined behavior, emit a diagnostic. Do
709   // not support this for #include-like directives, since that can result in
710   // terrible diagnostics, and does not work in GCC.
711   if (InMacroArgs) {
712     if (IdentifierInfo *II = Result.getIdentifierInfo()) {
713       switch (II->getPPKeywordID()) {
714       case tok::pp_include:
715       case tok::pp_import:
716       case tok::pp_include_next:
717       case tok::pp___include_macros:
718         Diag(Result, diag::err_embedded_include) << II->getName();
719         DiscardUntilEndOfDirective();
720         return;
721       default:
722         break;
723       }
724     }
725     Diag(Result, diag::ext_embedded_directive);
726   }
727 
728   // Temporarily enable macro expansion if set so
729   // and reset to previous state when returning from this function.
730   ResetMacroExpansionHelper helper(this);
731 
732   switch (Result.getKind()) {
733   case tok::eod:
734     return;   // null directive.
735   case tok::code_completion:
736     if (CodeComplete)
737       CodeComplete->CodeCompleteDirective(
738                                     CurPPLexer->getConditionalStackDepth() > 0);
739     setCodeCompletionReached();
740     return;
741   case tok::numeric_constant:  // # 7  GNU line marker directive.
742     if (getLangOpts().AsmPreprocessor)
743       break;  // # 4 is not a preprocessor directive in .S files.
744     return HandleDigitDirective(Result);
745   default:
746     IdentifierInfo *II = Result.getIdentifierInfo();
747     if (!II) break; // Not an identifier.
748 
749     // Ask what the preprocessor keyword ID is.
750     switch (II->getPPKeywordID()) {
751     default: break;
752     // C99 6.10.1 - Conditional Inclusion.
753     case tok::pp_if:
754       return HandleIfDirective(Result, ReadAnyTokensBeforeDirective);
755     case tok::pp_ifdef:
756       return HandleIfdefDirective(Result, false, true/*not valid for miopt*/);
757     case tok::pp_ifndef:
758       return HandleIfdefDirective(Result, true, ReadAnyTokensBeforeDirective);
759     case tok::pp_elif:
760       return HandleElifDirective(Result);
761     case tok::pp_else:
762       return HandleElseDirective(Result);
763     case tok::pp_endif:
764       return HandleEndifDirective(Result);
765 
766     // C99 6.10.2 - Source File Inclusion.
767     case tok::pp_include:
768       // Handle #include.
769       return HandleIncludeDirective(SavedHash.getLocation(), Result);
770     case tok::pp___include_macros:
771       // Handle -imacros.
772       return HandleIncludeMacrosDirective(SavedHash.getLocation(), Result);
773 
774     // C99 6.10.3 - Macro Replacement.
775     case tok::pp_define:
776       return HandleDefineDirective(Result, ImmediatelyAfterTopLevelIfndef);
777     case tok::pp_undef:
778       return HandleUndefDirective(Result);
779 
780     // C99 6.10.4 - Line Control.
781     case tok::pp_line:
782       return HandleLineDirective(Result);
783 
784     // C99 6.10.5 - Error Directive.
785     case tok::pp_error:
786       return HandleUserDiagnosticDirective(Result, false);
787 
788     // C99 6.10.6 - Pragma Directive.
789     case tok::pp_pragma:
790       return HandlePragmaDirective(SavedHash.getLocation(), PIK_HashPragma);
791 
792     // GNU Extensions.
793     case tok::pp_import:
794       return HandleImportDirective(SavedHash.getLocation(), Result);
795     case tok::pp_include_next:
796       return HandleIncludeNextDirective(SavedHash.getLocation(), Result);
797 
798     case tok::pp_warning:
799       Diag(Result, diag::ext_pp_warning_directive);
800       return HandleUserDiagnosticDirective(Result, true);
801     case tok::pp_ident:
802       return HandleIdentSCCSDirective(Result);
803     case tok::pp_sccs:
804       return HandleIdentSCCSDirective(Result);
805     case tok::pp_assert:
806       //isExtension = true;  // FIXME: implement #assert
807       break;
808     case tok::pp_unassert:
809       //isExtension = true;  // FIXME: implement #unassert
810       break;
811 
812     case tok::pp___public_macro:
813       if (getLangOpts().Modules)
814         return HandleMacroPublicDirective(Result);
815       break;
816 
817     case tok::pp___private_macro:
818       if (getLangOpts().Modules)
819         return HandleMacroPrivateDirective(Result);
820       break;
821     }
822     break;
823   }
824 
825   // If this is a .S file, treat unknown # directives as non-preprocessor
826   // directives.  This is important because # may be a comment or introduce
827   // various pseudo-ops.  Just return the # token and push back the following
828   // token to be lexed next time.
829   if (getLangOpts().AsmPreprocessor) {
830     Token *Toks = new Token[2];
831     // Return the # and the token after it.
832     Toks[0] = SavedHash;
833     Toks[1] = Result;
834 
835     // If the second token is a hashhash token, then we need to translate it to
836     // unknown so the token lexer doesn't try to perform token pasting.
837     if (Result.is(tok::hashhash))
838       Toks[1].setKind(tok::unknown);
839 
840     // Enter this token stream so that we re-lex the tokens.  Make sure to
841     // enable macro expansion, in case the token after the # is an identifier
842     // that is expanded.
843     EnterTokenStream(Toks, 2, false, true);
844     return;
845   }
846 
847   // If we reached here, the preprocessing token is not valid!
848   Diag(Result, diag::err_pp_invalid_directive);
849 
850   // Read the rest of the PP line.
851   DiscardUntilEndOfDirective();
852 
853   // Okay, we're done parsing the directive.
854 }
855 
856 /// GetLineValue - Convert a numeric token into an unsigned value, emitting
857 /// Diagnostic DiagID if it is invalid, and returning the value in Val.
858 static bool GetLineValue(Token &DigitTok, unsigned &Val,
859                          unsigned DiagID, Preprocessor &PP,
860                          bool IsGNULineDirective=false) {
861   if (DigitTok.isNot(tok::numeric_constant)) {
862     PP.Diag(DigitTok, DiagID);
863 
864     if (DigitTok.isNot(tok::eod))
865       PP.DiscardUntilEndOfDirective();
866     return true;
867   }
868 
869   SmallString<64> IntegerBuffer;
870   IntegerBuffer.resize(DigitTok.getLength());
871   const char *DigitTokBegin = &IntegerBuffer[0];
872   bool Invalid = false;
873   unsigned ActualLength = PP.getSpelling(DigitTok, DigitTokBegin, &Invalid);
874   if (Invalid)
875     return true;
876 
877   // Verify that we have a simple digit-sequence, and compute the value.  This
878   // is always a simple digit string computed in decimal, so we do this manually
879   // here.
880   Val = 0;
881   for (unsigned i = 0; i != ActualLength; ++i) {
882     // C++1y [lex.fcon]p1:
883     //   Optional separating single quotes in a digit-sequence are ignored
884     if (DigitTokBegin[i] == '\'')
885       continue;
886 
887     if (!isDigit(DigitTokBegin[i])) {
888       PP.Diag(PP.AdvanceToTokenCharacter(DigitTok.getLocation(), i),
889               diag::err_pp_line_digit_sequence) << IsGNULineDirective;
890       PP.DiscardUntilEndOfDirective();
891       return true;
892     }
893 
894     unsigned NextVal = Val*10+(DigitTokBegin[i]-'0');
895     if (NextVal < Val) { // overflow.
896       PP.Diag(DigitTok, DiagID);
897       PP.DiscardUntilEndOfDirective();
898       return true;
899     }
900     Val = NextVal;
901   }
902 
903   if (DigitTokBegin[0] == '0' && Val)
904     PP.Diag(DigitTok.getLocation(), diag::warn_pp_line_decimal)
905       << IsGNULineDirective;
906 
907   return false;
908 }
909 
910 /// \brief Handle a \#line directive: C99 6.10.4.
911 ///
912 /// The two acceptable forms are:
913 /// \verbatim
914 ///   # line digit-sequence
915 ///   # line digit-sequence "s-char-sequence"
916 /// \endverbatim
917 void Preprocessor::HandleLineDirective(Token &Tok) {
918   // Read the line # and string argument.  Per C99 6.10.4p5, these tokens are
919   // expanded.
920   Token DigitTok;
921   Lex(DigitTok);
922 
923   // Validate the number and convert it to an unsigned.
924   unsigned LineNo;
925   if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
926     return;
927 
928   if (LineNo == 0)
929     Diag(DigitTok, diag::ext_pp_line_zero);
930 
931   // Enforce C99 6.10.4p3: "The digit sequence shall not specify ... a
932   // number greater than 2147483647".  C90 requires that the line # be <= 32767.
933   unsigned LineLimit = 32768U;
934   if (LangOpts.C99 || LangOpts.CPlusPlus11)
935     LineLimit = 2147483648U;
936   if (LineNo >= LineLimit)
937     Diag(DigitTok, diag::ext_pp_line_too_big) << LineLimit;
938   else if (LangOpts.CPlusPlus11 && LineNo >= 32768U)
939     Diag(DigitTok, diag::warn_cxx98_compat_pp_line_too_big);
940 
941   int FilenameID = -1;
942   Token StrTok;
943   Lex(StrTok);
944 
945   // If the StrTok is "eod", then it wasn't present.  Otherwise, it must be a
946   // string followed by eod.
947   if (StrTok.is(tok::eod))
948     ; // ok
949   else if (StrTok.isNot(tok::string_literal)) {
950     Diag(StrTok, diag::err_pp_line_invalid_filename);
951     return DiscardUntilEndOfDirective();
952   } else if (StrTok.hasUDSuffix()) {
953     Diag(StrTok, diag::err_invalid_string_udl);
954     return DiscardUntilEndOfDirective();
955   } else {
956     // Parse and validate the string, converting it into a unique ID.
957     StringLiteralParser Literal(StrTok, *this);
958     assert(Literal.isAscii() && "Didn't allow wide strings in");
959     if (Literal.hadError)
960       return DiscardUntilEndOfDirective();
961     if (Literal.Pascal) {
962       Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
963       return DiscardUntilEndOfDirective();
964     }
965     FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
966 
967     // Verify that there is nothing after the string, other than EOD.  Because
968     // of C99 6.10.4p5, macros that expand to empty tokens are ok.
969     CheckEndOfDirective("line", true);
970   }
971 
972   SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID);
973 
974   if (Callbacks)
975     Callbacks->FileChanged(CurPPLexer->getSourceLocation(),
976                            PPCallbacks::RenameFile,
977                            SrcMgr::C_User);
978 }
979 
980 /// ReadLineMarkerFlags - Parse and validate any flags at the end of a GNU line
981 /// marker directive.
982 static bool ReadLineMarkerFlags(bool &IsFileEntry, bool &IsFileExit,
983                                 bool &IsSystemHeader, bool &IsExternCHeader,
984                                 Preprocessor &PP) {
985   unsigned FlagVal;
986   Token FlagTok;
987   PP.Lex(FlagTok);
988   if (FlagTok.is(tok::eod)) return false;
989   if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
990     return true;
991 
992   if (FlagVal == 1) {
993     IsFileEntry = true;
994 
995     PP.Lex(FlagTok);
996     if (FlagTok.is(tok::eod)) return false;
997     if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
998       return true;
999   } else if (FlagVal == 2) {
1000     IsFileExit = true;
1001 
1002     SourceManager &SM = PP.getSourceManager();
1003     // If we are leaving the current presumed file, check to make sure the
1004     // presumed include stack isn't empty!
1005     FileID CurFileID =
1006       SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first;
1007     PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
1008     if (PLoc.isInvalid())
1009       return true;
1010 
1011     // If there is no include loc (main file) or if the include loc is in a
1012     // different physical file, then we aren't in a "1" line marker flag region.
1013     SourceLocation IncLoc = PLoc.getIncludeLoc();
1014     if (IncLoc.isInvalid() ||
1015         SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) {
1016       PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_pop);
1017       PP.DiscardUntilEndOfDirective();
1018       return true;
1019     }
1020 
1021     PP.Lex(FlagTok);
1022     if (FlagTok.is(tok::eod)) return false;
1023     if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag,PP))
1024       return true;
1025   }
1026 
1027   // We must have 3 if there are still flags.
1028   if (FlagVal != 3) {
1029     PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
1030     PP.DiscardUntilEndOfDirective();
1031     return true;
1032   }
1033 
1034   IsSystemHeader = true;
1035 
1036   PP.Lex(FlagTok);
1037   if (FlagTok.is(tok::eod)) return false;
1038   if (GetLineValue(FlagTok, FlagVal, diag::err_pp_linemarker_invalid_flag, PP))
1039     return true;
1040 
1041   // We must have 4 if there is yet another flag.
1042   if (FlagVal != 4) {
1043     PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
1044     PP.DiscardUntilEndOfDirective();
1045     return true;
1046   }
1047 
1048   IsExternCHeader = true;
1049 
1050   PP.Lex(FlagTok);
1051   if (FlagTok.is(tok::eod)) return false;
1052 
1053   // There are no more valid flags here.
1054   PP.Diag(FlagTok, diag::err_pp_linemarker_invalid_flag);
1055   PP.DiscardUntilEndOfDirective();
1056   return true;
1057 }
1058 
1059 /// HandleDigitDirective - Handle a GNU line marker directive, whose syntax is
1060 /// one of the following forms:
1061 ///
1062 ///     # 42
1063 ///     # 42 "file" ('1' | '2')?
1064 ///     # 42 "file" ('1' | '2')? '3' '4'?
1065 ///
1066 void Preprocessor::HandleDigitDirective(Token &DigitTok) {
1067   // Validate the number and convert it to an unsigned.  GNU does not have a
1068   // line # limit other than it fit in 32-bits.
1069   unsigned LineNo;
1070   if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
1071                    *this, true))
1072     return;
1073 
1074   Token StrTok;
1075   Lex(StrTok);
1076 
1077   bool IsFileEntry = false, IsFileExit = false;
1078   bool IsSystemHeader = false, IsExternCHeader = false;
1079   int FilenameID = -1;
1080 
1081   // If the StrTok is "eod", then it wasn't present.  Otherwise, it must be a
1082   // string followed by eod.
1083   if (StrTok.is(tok::eod))
1084     ; // ok
1085   else if (StrTok.isNot(tok::string_literal)) {
1086     Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1087     return DiscardUntilEndOfDirective();
1088   } else if (StrTok.hasUDSuffix()) {
1089     Diag(StrTok, diag::err_invalid_string_udl);
1090     return DiscardUntilEndOfDirective();
1091   } else {
1092     // Parse and validate the string, converting it into a unique ID.
1093     StringLiteralParser Literal(StrTok, *this);
1094     assert(Literal.isAscii() && "Didn't allow wide strings in");
1095     if (Literal.hadError)
1096       return DiscardUntilEndOfDirective();
1097     if (Literal.Pascal) {
1098       Diag(StrTok, diag::err_pp_linemarker_invalid_filename);
1099       return DiscardUntilEndOfDirective();
1100     }
1101     FilenameID = SourceMgr.getLineTableFilenameID(Literal.GetString());
1102 
1103     // If a filename was present, read any flags that are present.
1104     if (ReadLineMarkerFlags(IsFileEntry, IsFileExit,
1105                             IsSystemHeader, IsExternCHeader, *this))
1106       return;
1107   }
1108 
1109   // Create a line note with this information.
1110   SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID,
1111                         IsFileEntry, IsFileExit,
1112                         IsSystemHeader, IsExternCHeader);
1113 
1114   // If the preprocessor has callbacks installed, notify them of the #line
1115   // change.  This is used so that the line marker comes out in -E mode for
1116   // example.
1117   if (Callbacks) {
1118     PPCallbacks::FileChangeReason Reason = PPCallbacks::RenameFile;
1119     if (IsFileEntry)
1120       Reason = PPCallbacks::EnterFile;
1121     else if (IsFileExit)
1122       Reason = PPCallbacks::ExitFile;
1123     SrcMgr::CharacteristicKind FileKind = SrcMgr::C_User;
1124     if (IsExternCHeader)
1125       FileKind = SrcMgr::C_ExternCSystem;
1126     else if (IsSystemHeader)
1127       FileKind = SrcMgr::C_System;
1128 
1129     Callbacks->FileChanged(CurPPLexer->getSourceLocation(), Reason, FileKind);
1130   }
1131 }
1132 
1133 
1134 /// HandleUserDiagnosticDirective - Handle a #warning or #error directive.
1135 ///
1136 void Preprocessor::HandleUserDiagnosticDirective(Token &Tok,
1137                                                  bool isWarning) {
1138   // PTH doesn't emit #warning or #error directives.
1139   if (CurPTHLexer)
1140     return CurPTHLexer->DiscardToEndOfLine();
1141 
1142   // Read the rest of the line raw.  We do this because we don't want macros
1143   // to be expanded and we don't require that the tokens be valid preprocessing
1144   // tokens.  For example, this is allowed: "#warning `   'foo".  GCC does
1145   // collapse multiple consequtive white space between tokens, but this isn't
1146   // specified by the standard.
1147   SmallString<128> Message;
1148   CurLexer->ReadToEndOfLine(&Message);
1149 
1150   // Find the first non-whitespace character, so that we can make the
1151   // diagnostic more succinct.
1152   StringRef Msg = Message.str().ltrim(" ");
1153 
1154   if (isWarning)
1155     Diag(Tok, diag::pp_hash_warning) << Msg;
1156   else
1157     Diag(Tok, diag::err_pp_hash_error) << Msg;
1158 }
1159 
1160 /// HandleIdentSCCSDirective - Handle a #ident/#sccs directive.
1161 ///
1162 void Preprocessor::HandleIdentSCCSDirective(Token &Tok) {
1163   // Yes, this directive is an extension.
1164   Diag(Tok, diag::ext_pp_ident_directive);
1165 
1166   // Read the string argument.
1167   Token StrTok;
1168   Lex(StrTok);
1169 
1170   // If the token kind isn't a string, it's a malformed directive.
1171   if (StrTok.isNot(tok::string_literal) &&
1172       StrTok.isNot(tok::wide_string_literal)) {
1173     Diag(StrTok, diag::err_pp_malformed_ident);
1174     if (StrTok.isNot(tok::eod))
1175       DiscardUntilEndOfDirective();
1176     return;
1177   }
1178 
1179   if (StrTok.hasUDSuffix()) {
1180     Diag(StrTok, diag::err_invalid_string_udl);
1181     return DiscardUntilEndOfDirective();
1182   }
1183 
1184   // Verify that there is nothing after the string, other than EOD.
1185   CheckEndOfDirective("ident");
1186 
1187   if (Callbacks) {
1188     bool Invalid = false;
1189     std::string Str = getSpelling(StrTok, &Invalid);
1190     if (!Invalid)
1191       Callbacks->Ident(Tok.getLocation(), Str);
1192   }
1193 }
1194 
1195 /// \brief Handle a #public directive.
1196 void Preprocessor::HandleMacroPublicDirective(Token &Tok) {
1197   Token MacroNameTok;
1198   ReadMacroName(MacroNameTok, MU_Undef);
1199 
1200   // Error reading macro name?  If so, diagnostic already issued.
1201   if (MacroNameTok.is(tok::eod))
1202     return;
1203 
1204   // Check to see if this is the last token on the #__public_macro line.
1205   CheckEndOfDirective("__public_macro");
1206 
1207   IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
1208   // Okay, we finally have a valid identifier to undef.
1209   MacroDirective *MD = getMacroDirective(II);
1210 
1211   // If the macro is not defined, this is an error.
1212   if (!MD) {
1213     Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
1214     return;
1215   }
1216 
1217   // Note that this macro has now been exported.
1218   appendMacroDirective(II, AllocateVisibilityMacroDirective(
1219                                 MacroNameTok.getLocation(), /*IsPublic=*/true));
1220 }
1221 
1222 /// \brief Handle a #private directive.
1223 void Preprocessor::HandleMacroPrivateDirective(Token &Tok) {
1224   Token MacroNameTok;
1225   ReadMacroName(MacroNameTok, MU_Undef);
1226 
1227   // Error reading macro name?  If so, diagnostic already issued.
1228   if (MacroNameTok.is(tok::eod))
1229     return;
1230 
1231   // Check to see if this is the last token on the #__private_macro line.
1232   CheckEndOfDirective("__private_macro");
1233 
1234   IdentifierInfo *II = MacroNameTok.getIdentifierInfo();
1235   // Okay, we finally have a valid identifier to undef.
1236   MacroDirective *MD = getMacroDirective(II);
1237 
1238   // If the macro is not defined, this is an error.
1239   if (!MD) {
1240     Diag(MacroNameTok, diag::err_pp_visibility_non_macro) << II;
1241     return;
1242   }
1243 
1244   // Note that this macro has now been marked private.
1245   appendMacroDirective(II, AllocateVisibilityMacroDirective(
1246                                MacroNameTok.getLocation(), /*IsPublic=*/false));
1247 }
1248 
1249 //===----------------------------------------------------------------------===//
1250 // Preprocessor Include Directive Handling.
1251 //===----------------------------------------------------------------------===//
1252 
1253 /// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
1254 /// checked and spelled filename, e.g. as an operand of \#include. This returns
1255 /// true if the input filename was in <>'s or false if it were in ""'s.  The
1256 /// caller is expected to provide a buffer that is large enough to hold the
1257 /// spelling of the filename, but is also expected to handle the case when
1258 /// this method decides to use a different buffer.
1259 bool Preprocessor::GetIncludeFilenameSpelling(SourceLocation Loc,
1260                                               StringRef &Buffer) {
1261   // Get the text form of the filename.
1262   assert(!Buffer.empty() && "Can't have tokens with empty spellings!");
1263 
1264   // Make sure the filename is <x> or "x".
1265   bool isAngled;
1266   if (Buffer[0] == '<') {
1267     if (Buffer.back() != '>') {
1268       Diag(Loc, diag::err_pp_expects_filename);
1269       Buffer = StringRef();
1270       return true;
1271     }
1272     isAngled = true;
1273   } else if (Buffer[0] == '"') {
1274     if (Buffer.back() != '"') {
1275       Diag(Loc, diag::err_pp_expects_filename);
1276       Buffer = StringRef();
1277       return true;
1278     }
1279     isAngled = false;
1280   } else {
1281     Diag(Loc, diag::err_pp_expects_filename);
1282     Buffer = StringRef();
1283     return true;
1284   }
1285 
1286   // Diagnose #include "" as invalid.
1287   if (Buffer.size() <= 2) {
1288     Diag(Loc, diag::err_pp_empty_filename);
1289     Buffer = StringRef();
1290     return true;
1291   }
1292 
1293   // Skip the brackets.
1294   Buffer = Buffer.substr(1, Buffer.size()-2);
1295   return isAngled;
1296 }
1297 
1298 // \brief Handle cases where the \#include name is expanded from a macro
1299 // as multiple tokens, which need to be glued together.
1300 //
1301 // This occurs for code like:
1302 // \code
1303 //    \#define FOO <a/b.h>
1304 //    \#include FOO
1305 // \endcode
1306 // because in this case, "<a/b.h>" is returned as 7 tokens, not one.
1307 //
1308 // This code concatenates and consumes tokens up to the '>' token.  It returns
1309 // false if the > was found, otherwise it returns true if it finds and consumes
1310 // the EOD marker.
1311 bool Preprocessor::ConcatenateIncludeName(SmallString<128> &FilenameBuffer,
1312                                           SourceLocation &End) {
1313   Token CurTok;
1314 
1315   Lex(CurTok);
1316   while (CurTok.isNot(tok::eod)) {
1317     End = CurTok.getLocation();
1318 
1319     // FIXME: Provide code completion for #includes.
1320     if (CurTok.is(tok::code_completion)) {
1321       setCodeCompletionReached();
1322       Lex(CurTok);
1323       continue;
1324     }
1325 
1326     // Append the spelling of this token to the buffer. If there was a space
1327     // before it, add it now.
1328     if (CurTok.hasLeadingSpace())
1329       FilenameBuffer.push_back(' ');
1330 
1331     // Get the spelling of the token, directly into FilenameBuffer if possible.
1332     unsigned PreAppendSize = FilenameBuffer.size();
1333     FilenameBuffer.resize(PreAppendSize+CurTok.getLength());
1334 
1335     const char *BufPtr = &FilenameBuffer[PreAppendSize];
1336     unsigned ActualLen = getSpelling(CurTok, BufPtr);
1337 
1338     // If the token was spelled somewhere else, copy it into FilenameBuffer.
1339     if (BufPtr != &FilenameBuffer[PreAppendSize])
1340       memcpy(&FilenameBuffer[PreAppendSize], BufPtr, ActualLen);
1341 
1342     // Resize FilenameBuffer to the correct size.
1343     if (CurTok.getLength() != ActualLen)
1344       FilenameBuffer.resize(PreAppendSize+ActualLen);
1345 
1346     // If we found the '>' marker, return success.
1347     if (CurTok.is(tok::greater))
1348       return false;
1349 
1350     Lex(CurTok);
1351   }
1352 
1353   // If we hit the eod marker, emit an error and return true so that the caller
1354   // knows the EOD has been read.
1355   Diag(CurTok.getLocation(), diag::err_pp_expects_filename);
1356   return true;
1357 }
1358 
1359 /// \brief Push a token onto the token stream containing an annotation.
1360 static void EnterAnnotationToken(Preprocessor &PP,
1361                                  SourceLocation Begin, SourceLocation End,
1362                                  tok::TokenKind Kind, void *AnnotationVal) {
1363   Token *Tok = new Token[1];
1364   Tok[0].startToken();
1365   Tok[0].setKind(Kind);
1366   Tok[0].setLocation(Begin);
1367   Tok[0].setAnnotationEndLoc(End);
1368   Tok[0].setAnnotationValue(AnnotationVal);
1369   PP.EnterTokenStream(Tok, 1, true, true);
1370 }
1371 
1372 /// HandleIncludeDirective - The "\#include" tokens have just been read, read
1373 /// the file to be included from the lexer, then include it!  This is a common
1374 /// routine with functionality shared between \#include, \#include_next and
1375 /// \#import.  LookupFrom is set when this is a \#include_next directive, it
1376 /// specifies the file to start searching from.
1377 void Preprocessor::HandleIncludeDirective(SourceLocation HashLoc,
1378                                           Token &IncludeTok,
1379                                           const DirectoryLookup *LookupFrom,
1380                                           const FileEntry *LookupFromFile,
1381                                           bool isImport) {
1382 
1383   Token FilenameTok;
1384   CurPPLexer->LexIncludeFilename(FilenameTok);
1385 
1386   // Reserve a buffer to get the spelling.
1387   SmallString<128> FilenameBuffer;
1388   StringRef Filename;
1389   SourceLocation End;
1390   SourceLocation CharEnd; // the end of this directive, in characters
1391 
1392   switch (FilenameTok.getKind()) {
1393   case tok::eod:
1394     // If the token kind is EOD, the error has already been diagnosed.
1395     return;
1396 
1397   case tok::angle_string_literal:
1398   case tok::string_literal:
1399     Filename = getSpelling(FilenameTok, FilenameBuffer);
1400     End = FilenameTok.getLocation();
1401     CharEnd = End.getLocWithOffset(FilenameTok.getLength());
1402     break;
1403 
1404   case tok::less:
1405     // This could be a <foo/bar.h> file coming from a macro expansion.  In this
1406     // case, glue the tokens together into FilenameBuffer and interpret those.
1407     FilenameBuffer.push_back('<');
1408     if (ConcatenateIncludeName(FilenameBuffer, End))
1409       return;   // Found <eod> but no ">"?  Diagnostic already emitted.
1410     Filename = FilenameBuffer.str();
1411     CharEnd = End.getLocWithOffset(1);
1412     break;
1413   default:
1414     Diag(FilenameTok.getLocation(), diag::err_pp_expects_filename);
1415     DiscardUntilEndOfDirective();
1416     return;
1417   }
1418 
1419   CharSourceRange FilenameRange
1420     = CharSourceRange::getCharRange(FilenameTok.getLocation(), CharEnd);
1421   StringRef OriginalFilename = Filename;
1422   bool isAngled =
1423     GetIncludeFilenameSpelling(FilenameTok.getLocation(), Filename);
1424   // If GetIncludeFilenameSpelling set the start ptr to null, there was an
1425   // error.
1426   if (Filename.empty()) {
1427     DiscardUntilEndOfDirective();
1428     return;
1429   }
1430 
1431   // Verify that there is nothing after the filename, other than EOD.  Note that
1432   // we allow macros that expand to nothing after the filename, because this
1433   // falls into the category of "#include pp-tokens new-line" specified in
1434   // C99 6.10.2p4.
1435   CheckEndOfDirective(IncludeTok.getIdentifierInfo()->getNameStart(), true);
1436 
1437   // Check that we don't have infinite #include recursion.
1438   if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
1439     Diag(FilenameTok, diag::err_pp_include_too_deep);
1440     return;
1441   }
1442 
1443   // Complain about attempts to #include files in an audit pragma.
1444   if (PragmaARCCFCodeAuditedLoc.isValid()) {
1445     Diag(HashLoc, diag::err_pp_include_in_arc_cf_code_audited);
1446     Diag(PragmaARCCFCodeAuditedLoc, diag::note_pragma_entered_here);
1447 
1448     // Immediately leave the pragma.
1449     PragmaARCCFCodeAuditedLoc = SourceLocation();
1450   }
1451 
1452   if (HeaderInfo.HasIncludeAliasMap()) {
1453     // Map the filename with the brackets still attached.  If the name doesn't
1454     // map to anything, fall back on the filename we've already gotten the
1455     // spelling for.
1456     StringRef NewName = HeaderInfo.MapHeaderToIncludeAlias(OriginalFilename);
1457     if (!NewName.empty())
1458       Filename = NewName;
1459   }
1460 
1461   // Search include directories.
1462   const DirectoryLookup *CurDir;
1463   SmallString<1024> SearchPath;
1464   SmallString<1024> RelativePath;
1465   // We get the raw path only if we have 'Callbacks' to which we later pass
1466   // the path.
1467   ModuleMap::KnownHeader SuggestedModule;
1468   SourceLocation FilenameLoc = FilenameTok.getLocation();
1469   SmallString<128> NormalizedPath;
1470   if (LangOpts.MSVCCompat) {
1471     NormalizedPath = Filename.str();
1472 #ifndef LLVM_ON_WIN32
1473     llvm::sys::path::native(NormalizedPath);
1474 #endif
1475   }
1476   const FileEntry *File = LookupFile(
1477       FilenameLoc, LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename,
1478       isAngled, LookupFrom, LookupFromFile, CurDir,
1479       Callbacks ? &SearchPath : nullptr, Callbacks ? &RelativePath : nullptr,
1480       HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule : nullptr);
1481 
1482   if (Callbacks) {
1483     if (!File) {
1484       // Give the clients a chance to recover.
1485       SmallString<128> RecoveryPath;
1486       if (Callbacks->FileNotFound(Filename, RecoveryPath)) {
1487         if (const DirectoryEntry *DE = FileMgr.getDirectory(RecoveryPath)) {
1488           // Add the recovery path to the list of search paths.
1489           DirectoryLookup DL(DE, SrcMgr::C_User, false);
1490           HeaderInfo.AddSearchPath(DL, isAngled);
1491 
1492           // Try the lookup again, skipping the cache.
1493           File = LookupFile(
1494               FilenameLoc,
1495               LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, isAngled,
1496               LookupFrom, LookupFromFile, CurDir, nullptr, nullptr,
1497               HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1498                                                           : nullptr,
1499               /*SkipCache*/ true);
1500         }
1501       }
1502     }
1503 
1504     if (!SuggestedModule || !getLangOpts().Modules) {
1505       // Notify the callback object that we've seen an inclusion directive.
1506       Callbacks->InclusionDirective(HashLoc, IncludeTok,
1507                                     LangOpts.MSVCCompat ? NormalizedPath.c_str()
1508                                                         : Filename,
1509                                     isAngled, FilenameRange, File, SearchPath,
1510                                     RelativePath, /*ImportedModule=*/nullptr);
1511     }
1512   }
1513 
1514   if (!File) {
1515     if (!SuppressIncludeNotFoundError) {
1516       // If the file could not be located and it was included via angle
1517       // brackets, we can attempt a lookup as though it were a quoted path to
1518       // provide the user with a possible fixit.
1519       if (isAngled) {
1520         File = LookupFile(
1521             FilenameLoc,
1522             LangOpts.MSVCCompat ? NormalizedPath.c_str() : Filename, false,
1523             LookupFrom, LookupFromFile, CurDir,
1524             Callbacks ? &SearchPath : nullptr,
1525             Callbacks ? &RelativePath : nullptr,
1526             HeaderInfo.getHeaderSearchOpts().ModuleMaps ? &SuggestedModule
1527                                                         : nullptr);
1528         if (File) {
1529           SourceRange Range(FilenameTok.getLocation(), CharEnd);
1530           Diag(FilenameTok, diag::err_pp_file_not_found_not_fatal) <<
1531             Filename <<
1532             FixItHint::CreateReplacement(Range, "\"" + Filename.str() + "\"");
1533         }
1534       }
1535       // If the file is still not found, just go with the vanilla diagnostic
1536       if (!File)
1537         Diag(FilenameTok, diag::err_pp_file_not_found) << Filename;
1538     }
1539     if (!File)
1540       return;
1541   }
1542 
1543   // If we are supposed to import a module rather than including the header,
1544   // do so now.
1545   if (SuggestedModule && getLangOpts().Modules &&
1546       SuggestedModule.getModule()->getTopLevelModuleName() !=
1547       getLangOpts().ImplementationOfModule) {
1548     // Compute the module access path corresponding to this module.
1549     // FIXME: Should we have a second loadModule() overload to avoid this
1550     // extra lookup step?
1551     SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path;
1552     for (Module *Mod = SuggestedModule.getModule(); Mod; Mod = Mod->Parent)
1553       Path.push_back(std::make_pair(getIdentifierInfo(Mod->Name),
1554                                     FilenameTok.getLocation()));
1555     std::reverse(Path.begin(), Path.end());
1556 
1557     // Warn that we're replacing the include/import with a module import.
1558     SmallString<128> PathString;
1559     for (unsigned I = 0, N = Path.size(); I != N; ++I) {
1560       if (I)
1561         PathString += '.';
1562       PathString += Path[I].first->getName();
1563     }
1564     int IncludeKind = 0;
1565 
1566     switch (IncludeTok.getIdentifierInfo()->getPPKeywordID()) {
1567     case tok::pp_include:
1568       IncludeKind = 0;
1569       break;
1570 
1571     case tok::pp_import:
1572       IncludeKind = 1;
1573       break;
1574 
1575     case tok::pp_include_next:
1576       IncludeKind = 2;
1577       break;
1578 
1579     case tok::pp___include_macros:
1580       IncludeKind = 3;
1581       break;
1582 
1583     default:
1584       llvm_unreachable("unknown include directive kind");
1585     }
1586 
1587     // Determine whether we are actually building the module that this
1588     // include directive maps to.
1589     bool BuildingImportedModule
1590       = Path[0].first->getName() == getLangOpts().CurrentModule;
1591 
1592     if (!BuildingImportedModule && getLangOpts().ObjC2) {
1593       // If we're not building the imported module, warn that we're going
1594       // to automatically turn this inclusion directive into a module import.
1595       // We only do this in Objective-C, where we have a module-import syntax.
1596       CharSourceRange ReplaceRange(SourceRange(HashLoc, CharEnd),
1597                                    /*IsTokenRange=*/false);
1598       Diag(HashLoc, diag::warn_auto_module_import)
1599         << IncludeKind << PathString
1600         << FixItHint::CreateReplacement(ReplaceRange,
1601              "@import " + PathString.str().str() + ";");
1602     }
1603 
1604     // Load the module. Only make macros visible. We'll make the declarations
1605     // visible when the parser gets here.
1606     Module::NameVisibilityKind Visibility = Module::MacrosVisible;
1607     ModuleLoadResult Imported
1608       = TheModuleLoader.loadModule(IncludeTok.getLocation(), Path, Visibility,
1609                                    /*IsIncludeDirective=*/true);
1610     assert((Imported == nullptr || Imported == SuggestedModule.getModule()) &&
1611            "the imported module is different than the suggested one");
1612 
1613     if (!Imported && hadModuleLoaderFatalFailure()) {
1614       // With a fatal failure in the module loader, we abort parsing.
1615       Token &Result = IncludeTok;
1616       if (CurLexer) {
1617         Result.startToken();
1618         CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
1619         CurLexer->cutOffLexing();
1620       } else {
1621         assert(CurPTHLexer && "#include but no current lexer set!");
1622         CurPTHLexer->getEOF(Result);
1623       }
1624       return;
1625     }
1626 
1627     // If this header isn't part of the module we're building, we're done.
1628     if (!BuildingImportedModule && Imported) {
1629       if (Callbacks) {
1630         Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1631                                       FilenameRange, File,
1632                                       SearchPath, RelativePath, Imported);
1633       }
1634 
1635       if (IncludeKind != 3) {
1636         // Let the parser know that we hit a module import, and it should
1637         // make the module visible.
1638         // FIXME: Produce this as the current token directly, rather than
1639         // allocating a new token for it.
1640         EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_include,
1641                              Imported);
1642       }
1643       return;
1644     }
1645 
1646     // If we failed to find a submodule that we expected to find, we can
1647     // continue. Otherwise, there's an error in the included file, so we
1648     // don't want to include it.
1649     if (!BuildingImportedModule && !Imported.isMissingExpected()) {
1650       return;
1651     }
1652   }
1653 
1654   if (Callbacks && SuggestedModule) {
1655     // We didn't notify the callback object that we've seen an inclusion
1656     // directive before. Now that we are parsing the include normally and not
1657     // turning it to a module import, notify the callback object.
1658     Callbacks->InclusionDirective(HashLoc, IncludeTok, Filename, isAngled,
1659                                   FilenameRange, File,
1660                                   SearchPath, RelativePath,
1661                                   /*ImportedModule=*/nullptr);
1662   }
1663 
1664   // The #included file will be considered to be a system header if either it is
1665   // in a system include directory, or if the #includer is a system include
1666   // header.
1667   SrcMgr::CharacteristicKind FileCharacter =
1668     std::max(HeaderInfo.getFileDirFlavor(File),
1669              SourceMgr.getFileCharacteristic(FilenameTok.getLocation()));
1670 
1671   // Ask HeaderInfo if we should enter this #include file.  If not, #including
1672   // this file will have no effect.
1673   if (!HeaderInfo.ShouldEnterIncludeFile(File, isImport)) {
1674     if (Callbacks)
1675       Callbacks->FileSkipped(*File, FilenameTok, FileCharacter);
1676     return;
1677   }
1678 
1679   // Look up the file, create a File ID for it.
1680   SourceLocation IncludePos = End;
1681   // If the filename string was the result of macro expansions, set the include
1682   // position on the file where it will be included and after the expansions.
1683   if (IncludePos.isMacroID())
1684     IncludePos = SourceMgr.getExpansionRange(IncludePos).second;
1685   FileID FID = SourceMgr.createFileID(File, IncludePos, FileCharacter);
1686   assert(!FID.isInvalid() && "Expected valid file ID");
1687 
1688   // Determine if we're switching to building a new submodule, and which one.
1689   ModuleMap::KnownHeader BuildingModule;
1690   if (getLangOpts().Modules && !getLangOpts().CurrentModule.empty()) {
1691     Module *RequestingModule = getModuleForLocation(FilenameLoc);
1692     BuildingModule =
1693         HeaderInfo.getModuleMap().findModuleForHeader(File, RequestingModule);
1694   }
1695 
1696   // If all is good, enter the new file!
1697   if (EnterSourceFile(FID, CurDir, FilenameTok.getLocation()))
1698     return;
1699 
1700   // If we're walking into another part of the same module, let the parser
1701   // know that any future declarations are within that other submodule.
1702   if (BuildingModule) {
1703     assert(!CurSubmodule && "should not have marked this as a module yet");
1704     CurSubmodule = BuildingModule.getModule();
1705 
1706     EnterAnnotationToken(*this, HashLoc, End, tok::annot_module_begin,
1707                          CurSubmodule);
1708   }
1709 }
1710 
1711 /// HandleIncludeNextDirective - Implements \#include_next.
1712 ///
1713 void Preprocessor::HandleIncludeNextDirective(SourceLocation HashLoc,
1714                                               Token &IncludeNextTok) {
1715   Diag(IncludeNextTok, diag::ext_pp_include_next_directive);
1716 
1717   // #include_next is like #include, except that we start searching after
1718   // the current found directory.  If we can't do this, issue a
1719   // diagnostic.
1720   const DirectoryLookup *Lookup = CurDirLookup;
1721   const FileEntry *LookupFromFile = nullptr;
1722   if (isInPrimaryFile()) {
1723     Lookup = nullptr;
1724     Diag(IncludeNextTok, diag::pp_include_next_in_primary);
1725   } else if (CurSubmodule) {
1726     // Start looking up in the directory *after* the one in which the current
1727     // file would be found, if any.
1728     assert(CurPPLexer && "#include_next directive in macro?");
1729     LookupFromFile = CurPPLexer->getFileEntry();
1730     Lookup = nullptr;
1731   } else if (!Lookup) {
1732     Diag(IncludeNextTok, diag::pp_include_next_absolute_path);
1733   } else {
1734     // Start looking up in the next directory.
1735     ++Lookup;
1736   }
1737 
1738   return HandleIncludeDirective(HashLoc, IncludeNextTok, Lookup,
1739                                 LookupFromFile);
1740 }
1741 
1742 /// HandleMicrosoftImportDirective - Implements \#import for Microsoft Mode
1743 void Preprocessor::HandleMicrosoftImportDirective(Token &Tok) {
1744   // The Microsoft #import directive takes a type library and generates header
1745   // files from it, and includes those.  This is beyond the scope of what clang
1746   // does, so we ignore it and error out.  However, #import can optionally have
1747   // trailing attributes that span multiple lines.  We're going to eat those
1748   // so we can continue processing from there.
1749   Diag(Tok, diag::err_pp_import_directive_ms );
1750 
1751   // Read tokens until we get to the end of the directive.  Note that the
1752   // directive can be split over multiple lines using the backslash character.
1753   DiscardUntilEndOfDirective();
1754 }
1755 
1756 /// HandleImportDirective - Implements \#import.
1757 ///
1758 void Preprocessor::HandleImportDirective(SourceLocation HashLoc,
1759                                          Token &ImportTok) {
1760   if (!LangOpts.ObjC1) {  // #import is standard for ObjC.
1761     if (LangOpts.MSVCCompat)
1762       return HandleMicrosoftImportDirective(ImportTok);
1763     Diag(ImportTok, diag::ext_pp_import_directive);
1764   }
1765   return HandleIncludeDirective(HashLoc, ImportTok, nullptr, nullptr, true);
1766 }
1767 
1768 /// HandleIncludeMacrosDirective - The -imacros command line option turns into a
1769 /// pseudo directive in the predefines buffer.  This handles it by sucking all
1770 /// tokens through the preprocessor and discarding them (only keeping the side
1771 /// effects on the preprocessor).
1772 void Preprocessor::HandleIncludeMacrosDirective(SourceLocation HashLoc,
1773                                                 Token &IncludeMacrosTok) {
1774   // This directive should only occur in the predefines buffer.  If not, emit an
1775   // error and reject it.
1776   SourceLocation Loc = IncludeMacrosTok.getLocation();
1777   if (strcmp(SourceMgr.getBufferName(Loc), "<built-in>") != 0) {
1778     Diag(IncludeMacrosTok.getLocation(),
1779          diag::pp_include_macros_out_of_predefines);
1780     DiscardUntilEndOfDirective();
1781     return;
1782   }
1783 
1784   // Treat this as a normal #include for checking purposes.  If this is
1785   // successful, it will push a new lexer onto the include stack.
1786   HandleIncludeDirective(HashLoc, IncludeMacrosTok);
1787 
1788   Token TmpTok;
1789   do {
1790     Lex(TmpTok);
1791     assert(TmpTok.isNot(tok::eof) && "Didn't find end of -imacros!");
1792   } while (TmpTok.isNot(tok::hashhash));
1793 }
1794 
1795 //===----------------------------------------------------------------------===//
1796 // Preprocessor Macro Directive Handling.
1797 //===----------------------------------------------------------------------===//
1798 
1799 /// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
1800 /// definition has just been read.  Lex the rest of the arguments and the
1801 /// closing ), updating MI with what we learn.  Return true if an error occurs
1802 /// parsing the arg list.
1803 bool Preprocessor::ReadMacroDefinitionArgList(MacroInfo *MI, Token &Tok) {
1804   SmallVector<IdentifierInfo*, 32> Arguments;
1805 
1806   while (1) {
1807     LexUnexpandedToken(Tok);
1808     switch (Tok.getKind()) {
1809     case tok::r_paren:
1810       // Found the end of the argument list.
1811       if (Arguments.empty())  // #define FOO()
1812         return false;
1813       // Otherwise we have #define FOO(A,)
1814       Diag(Tok, diag::err_pp_expected_ident_in_arg_list);
1815       return true;
1816     case tok::ellipsis:  // #define X(... -> C99 varargs
1817       if (!LangOpts.C99)
1818         Diag(Tok, LangOpts.CPlusPlus11 ?
1819              diag::warn_cxx98_compat_variadic_macro :
1820              diag::ext_variadic_macro);
1821 
1822       // OpenCL v1.2 s6.9.e: variadic macros are not supported.
1823       if (LangOpts.OpenCL) {
1824         Diag(Tok, diag::err_pp_opencl_variadic_macros);
1825         return true;
1826       }
1827 
1828       // Lex the token after the identifier.
1829       LexUnexpandedToken(Tok);
1830       if (Tok.isNot(tok::r_paren)) {
1831         Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1832         return true;
1833       }
1834       // Add the __VA_ARGS__ identifier as an argument.
1835       Arguments.push_back(Ident__VA_ARGS__);
1836       MI->setIsC99Varargs();
1837       MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
1838       return false;
1839     case tok::eod:  // #define X(
1840       Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1841       return true;
1842     default:
1843       // Handle keywords and identifiers here to accept things like
1844       // #define Foo(for) for.
1845       IdentifierInfo *II = Tok.getIdentifierInfo();
1846       if (!II) {
1847         // #define X(1
1848         Diag(Tok, diag::err_pp_invalid_tok_in_arg_list);
1849         return true;
1850       }
1851 
1852       // If this is already used as an argument, it is used multiple times (e.g.
1853       // #define X(A,A.
1854       if (std::find(Arguments.begin(), Arguments.end(), II) !=
1855           Arguments.end()) {  // C99 6.10.3p6
1856         Diag(Tok, diag::err_pp_duplicate_name_in_arg_list) << II;
1857         return true;
1858       }
1859 
1860       // Add the argument to the macro info.
1861       Arguments.push_back(II);
1862 
1863       // Lex the token after the identifier.
1864       LexUnexpandedToken(Tok);
1865 
1866       switch (Tok.getKind()) {
1867       default:          // #define X(A B
1868         Diag(Tok, diag::err_pp_expected_comma_in_arg_list);
1869         return true;
1870       case tok::r_paren: // #define X(A)
1871         MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
1872         return false;
1873       case tok::comma:  // #define X(A,
1874         break;
1875       case tok::ellipsis:  // #define X(A... -> GCC extension
1876         // Diagnose extension.
1877         Diag(Tok, diag::ext_named_variadic_macro);
1878 
1879         // Lex the token after the identifier.
1880         LexUnexpandedToken(Tok);
1881         if (Tok.isNot(tok::r_paren)) {
1882           Diag(Tok, diag::err_pp_missing_rparen_in_macro_def);
1883           return true;
1884         }
1885 
1886         MI->setIsGNUVarargs();
1887         MI->setArgumentList(&Arguments[0], Arguments.size(), BP);
1888         return false;
1889       }
1890     }
1891   }
1892 }
1893 
1894 /// HandleDefineDirective - Implements \#define.  This consumes the entire macro
1895 /// line then lets the caller lex the next real token.
1896 void Preprocessor::HandleDefineDirective(Token &DefineTok,
1897                                          bool ImmediatelyAfterHeaderGuard) {
1898   ++NumDefined;
1899 
1900   Token MacroNameTok;
1901   ReadMacroName(MacroNameTok, MU_Define);
1902 
1903   // Error reading macro name?  If so, diagnostic already issued.
1904   if (MacroNameTok.is(tok::eod))
1905     return;
1906 
1907   Token LastTok = MacroNameTok;
1908 
1909   // If we are supposed to keep comments in #defines, reenable comment saving
1910   // mode.
1911   if (CurLexer) CurLexer->SetCommentRetentionState(KeepMacroComments);
1912 
1913   // Create the new macro.
1914   MacroInfo *MI = AllocateMacroInfo(MacroNameTok.getLocation());
1915 
1916   Token Tok;
1917   LexUnexpandedToken(Tok);
1918 
1919   // If this is a function-like macro definition, parse the argument list,
1920   // marking each of the identifiers as being used as macro arguments.  Also,
1921   // check other constraints on the first token of the macro body.
1922   if (Tok.is(tok::eod)) {
1923     if (ImmediatelyAfterHeaderGuard) {
1924       // Save this macro information since it may part of a header guard.
1925       CurPPLexer->MIOpt.SetDefinedMacro(MacroNameTok.getIdentifierInfo(),
1926                                         MacroNameTok.getLocation());
1927     }
1928     // If there is no body to this macro, we have no special handling here.
1929   } else if (Tok.hasLeadingSpace()) {
1930     // This is a normal token with leading space.  Clear the leading space
1931     // marker on the first token to get proper expansion.
1932     Tok.clearFlag(Token::LeadingSpace);
1933   } else if (Tok.is(tok::l_paren)) {
1934     // This is a function-like macro definition.  Read the argument list.
1935     MI->setIsFunctionLike();
1936     if (ReadMacroDefinitionArgList(MI, LastTok)) {
1937       // Throw away the rest of the line.
1938       if (CurPPLexer->ParsingPreprocessorDirective)
1939         DiscardUntilEndOfDirective();
1940       return;
1941     }
1942 
1943     // If this is a definition of a variadic C99 function-like macro, not using
1944     // the GNU named varargs extension, enabled __VA_ARGS__.
1945 
1946     // "Poison" __VA_ARGS__, which can only appear in the expansion of a macro.
1947     // This gets unpoisoned where it is allowed.
1948     assert(Ident__VA_ARGS__->isPoisoned() && "__VA_ARGS__ should be poisoned!");
1949     if (MI->isC99Varargs())
1950       Ident__VA_ARGS__->setIsPoisoned(false);
1951 
1952     // Read the first token after the arg list for down below.
1953     LexUnexpandedToken(Tok);
1954   } else if (LangOpts.C99 || LangOpts.CPlusPlus11) {
1955     // C99 requires whitespace between the macro definition and the body.  Emit
1956     // a diagnostic for something like "#define X+".
1957     Diag(Tok, diag::ext_c99_whitespace_required_after_macro_name);
1958   } else {
1959     // C90 6.8 TC1 says: "In the definition of an object-like macro, if the
1960     // first character of a replacement list is not a character required by
1961     // subclause 5.2.1, then there shall be white-space separation between the
1962     // identifier and the replacement list.".  5.2.1 lists this set:
1963     //   "A-Za-z0-9!"#%&'()*+,_./:;<=>?[\]^_{|}~" as well as whitespace, which
1964     // is irrelevant here.
1965     bool isInvalid = false;
1966     if (Tok.is(tok::at)) // @ is not in the list above.
1967       isInvalid = true;
1968     else if (Tok.is(tok::unknown)) {
1969       // If we have an unknown token, it is something strange like "`".  Since
1970       // all of valid characters would have lexed into a single character
1971       // token of some sort, we know this is not a valid case.
1972       isInvalid = true;
1973     }
1974     if (isInvalid)
1975       Diag(Tok, diag::ext_missing_whitespace_after_macro_name);
1976     else
1977       Diag(Tok, diag::warn_missing_whitespace_after_macro_name);
1978   }
1979 
1980   if (!Tok.is(tok::eod))
1981     LastTok = Tok;
1982 
1983   // Read the rest of the macro body.
1984   if (MI->isObjectLike()) {
1985     // Object-like macros are very simple, just read their body.
1986     while (Tok.isNot(tok::eod)) {
1987       LastTok = Tok;
1988       MI->AddTokenToBody(Tok);
1989       // Get the next token of the macro.
1990       LexUnexpandedToken(Tok);
1991     }
1992 
1993   } else {
1994     // Otherwise, read the body of a function-like macro.  While we are at it,
1995     // check C99 6.10.3.2p1: ensure that # operators are followed by macro
1996     // parameters in function-like macro expansions.
1997     while (Tok.isNot(tok::eod)) {
1998       LastTok = Tok;
1999 
2000       if (Tok.isNot(tok::hash) && Tok.isNot(tok::hashhash)) {
2001         MI->AddTokenToBody(Tok);
2002 
2003         // Get the next token of the macro.
2004         LexUnexpandedToken(Tok);
2005         continue;
2006       }
2007 
2008       // If we're in -traditional mode, then we should ignore stringification
2009       // and token pasting. Mark the tokens as unknown so as not to confuse
2010       // things.
2011       if (getLangOpts().TraditionalCPP) {
2012         Tok.setKind(tok::unknown);
2013         MI->AddTokenToBody(Tok);
2014 
2015         // Get the next token of the macro.
2016         LexUnexpandedToken(Tok);
2017         continue;
2018       }
2019 
2020       if (Tok.is(tok::hashhash)) {
2021 
2022         // If we see token pasting, check if it looks like the gcc comma
2023         // pasting extension.  We'll use this information to suppress
2024         // diagnostics later on.
2025 
2026         // Get the next token of the macro.
2027         LexUnexpandedToken(Tok);
2028 
2029         if (Tok.is(tok::eod)) {
2030           MI->AddTokenToBody(LastTok);
2031           break;
2032         }
2033 
2034         unsigned NumTokens = MI->getNumTokens();
2035         if (NumTokens && Tok.getIdentifierInfo() == Ident__VA_ARGS__ &&
2036             MI->getReplacementToken(NumTokens-1).is(tok::comma))
2037           MI->setHasCommaPasting();
2038 
2039         // Things look ok, add the '##' token to the macro.
2040         MI->AddTokenToBody(LastTok);
2041         continue;
2042       }
2043 
2044       // Get the next token of the macro.
2045       LexUnexpandedToken(Tok);
2046 
2047       // Check for a valid macro arg identifier.
2048       if (Tok.getIdentifierInfo() == nullptr ||
2049           MI->getArgumentNum(Tok.getIdentifierInfo()) == -1) {
2050 
2051         // If this is assembler-with-cpp mode, we accept random gibberish after
2052         // the '#' because '#' is often a comment character.  However, change
2053         // the kind of the token to tok::unknown so that the preprocessor isn't
2054         // confused.
2055         if (getLangOpts().AsmPreprocessor && Tok.isNot(tok::eod)) {
2056           LastTok.setKind(tok::unknown);
2057           MI->AddTokenToBody(LastTok);
2058           continue;
2059         } else {
2060           Diag(Tok, diag::err_pp_stringize_not_parameter);
2061 
2062           // Disable __VA_ARGS__ again.
2063           Ident__VA_ARGS__->setIsPoisoned(true);
2064           return;
2065         }
2066       }
2067 
2068       // Things look ok, add the '#' and param name tokens to the macro.
2069       MI->AddTokenToBody(LastTok);
2070       MI->AddTokenToBody(Tok);
2071       LastTok = Tok;
2072 
2073       // Get the next token of the macro.
2074       LexUnexpandedToken(Tok);
2075     }
2076   }
2077 
2078 
2079   // Disable __VA_ARGS__ again.
2080   Ident__VA_ARGS__->setIsPoisoned(true);
2081 
2082   // Check that there is no paste (##) operator at the beginning or end of the
2083   // replacement list.
2084   unsigned NumTokens = MI->getNumTokens();
2085   if (NumTokens != 0) {
2086     if (MI->getReplacementToken(0).is(tok::hashhash)) {
2087       Diag(MI->getReplacementToken(0), diag::err_paste_at_start);
2088       return;
2089     }
2090     if (MI->getReplacementToken(NumTokens-1).is(tok::hashhash)) {
2091       Diag(MI->getReplacementToken(NumTokens-1), diag::err_paste_at_end);
2092       return;
2093     }
2094   }
2095 
2096   MI->setDefinitionEndLoc(LastTok.getLocation());
2097 
2098   // Finally, if this identifier already had a macro defined for it, verify that
2099   // the macro bodies are identical, and issue diagnostics if they are not.
2100   if (const MacroInfo *OtherMI=getMacroInfo(MacroNameTok.getIdentifierInfo())) {
2101     // It is very common for system headers to have tons of macro redefinitions
2102     // and for warnings to be disabled in system headers.  If this is the case,
2103     // then don't bother calling MacroInfo::isIdenticalTo.
2104     if (!getDiagnostics().getSuppressSystemWarnings() ||
2105         !SourceMgr.isInSystemHeader(DefineTok.getLocation())) {
2106       if (!OtherMI->isUsed() && OtherMI->isWarnIfUnused())
2107         Diag(OtherMI->getDefinitionLoc(), diag::pp_macro_not_used);
2108 
2109       // Warn if defining "__LINE__" and other builtins, per C99 6.10.8/4 and
2110       // C++ [cpp.predefined]p4, but allow it as an extension.
2111       if (OtherMI->isBuiltinMacro())
2112         Diag(MacroNameTok, diag::ext_pp_redef_builtin_macro);
2113       // Macros must be identical.  This means all tokens and whitespace
2114       // separation must be the same.  C99 6.10.3p2.
2115       else if (!OtherMI->isAllowRedefinitionsWithoutWarning() &&
2116                !MI->isIdenticalTo(*OtherMI, *this, /*Syntactic=*/LangOpts.MicrosoftExt)) {
2117         Diag(MI->getDefinitionLoc(), diag::ext_pp_macro_redef)
2118           << MacroNameTok.getIdentifierInfo();
2119         Diag(OtherMI->getDefinitionLoc(), diag::note_previous_definition);
2120       }
2121     }
2122     if (OtherMI->isWarnIfUnused())
2123       WarnUnusedMacroLocs.erase(OtherMI->getDefinitionLoc());
2124   }
2125 
2126   DefMacroDirective *MD =
2127       appendDefMacroDirective(MacroNameTok.getIdentifierInfo(), MI);
2128 
2129   assert(!MI->isUsed());
2130   // If we need warning for not using the macro, add its location in the
2131   // warn-because-unused-macro set. If it gets used it will be removed from set.
2132   if (getSourceManager().isInMainFile(MI->getDefinitionLoc()) &&
2133       !Diags->isIgnored(diag::pp_macro_not_used, MI->getDefinitionLoc())) {
2134     MI->setIsWarnIfUnused(true);
2135     WarnUnusedMacroLocs.insert(MI->getDefinitionLoc());
2136   }
2137 
2138   // If the callbacks want to know, tell them about the macro definition.
2139   if (Callbacks)
2140     Callbacks->MacroDefined(MacroNameTok, MD);
2141 }
2142 
2143 /// HandleUndefDirective - Implements \#undef.
2144 ///
2145 void Preprocessor::HandleUndefDirective(Token &UndefTok) {
2146   ++NumUndefined;
2147 
2148   Token MacroNameTok;
2149   ReadMacroName(MacroNameTok, MU_Undef);
2150 
2151   // Error reading macro name?  If so, diagnostic already issued.
2152   if (MacroNameTok.is(tok::eod))
2153     return;
2154 
2155   // Check to see if this is the last token on the #undef line.
2156   CheckEndOfDirective("undef");
2157 
2158   // Okay, we finally have a valid identifier to undef.
2159   MacroDirective *MD = getMacroDirective(MacroNameTok.getIdentifierInfo());
2160   const MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
2161 
2162   // If the callbacks want to know, tell them about the macro #undef.
2163   // Note: no matter if the macro was defined or not.
2164   if (Callbacks)
2165     Callbacks->MacroUndefined(MacroNameTok, MD);
2166 
2167   // If the macro is not defined, this is a noop undef, just return.
2168   if (!MI)
2169     return;
2170 
2171   if (!MI->isUsed() && MI->isWarnIfUnused())
2172     Diag(MI->getDefinitionLoc(), diag::pp_macro_not_used);
2173 
2174   if (MI->isWarnIfUnused())
2175     WarnUnusedMacroLocs.erase(MI->getDefinitionLoc());
2176 
2177   appendMacroDirective(MacroNameTok.getIdentifierInfo(),
2178                        AllocateUndefMacroDirective(MacroNameTok.getLocation()));
2179 }
2180 
2181 
2182 //===----------------------------------------------------------------------===//
2183 // Preprocessor Conditional Directive Handling.
2184 //===----------------------------------------------------------------------===//
2185 
2186 /// HandleIfdefDirective - Implements the \#ifdef/\#ifndef directive.  isIfndef
2187 /// is true when this is a \#ifndef directive.  ReadAnyTokensBeforeDirective is
2188 /// true if any tokens have been returned or pp-directives activated before this
2189 /// \#ifndef has been lexed.
2190 ///
2191 void Preprocessor::HandleIfdefDirective(Token &Result, bool isIfndef,
2192                                         bool ReadAnyTokensBeforeDirective) {
2193   ++NumIf;
2194   Token DirectiveTok = Result;
2195 
2196   Token MacroNameTok;
2197   ReadMacroName(MacroNameTok);
2198 
2199   // Error reading macro name?  If so, diagnostic already issued.
2200   if (MacroNameTok.is(tok::eod)) {
2201     // Skip code until we get to #endif.  This helps with recovery by not
2202     // emitting an error when the #endif is reached.
2203     SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2204                                  /*Foundnonskip*/false, /*FoundElse*/false);
2205     return;
2206   }
2207 
2208   // Check to see if this is the last token on the #if[n]def line.
2209   CheckEndOfDirective(isIfndef ? "ifndef" : "ifdef");
2210 
2211   IdentifierInfo *MII = MacroNameTok.getIdentifierInfo();
2212   MacroDirective *MD = getMacroDirective(MII);
2213   MacroInfo *MI = MD ? MD->getMacroInfo() : nullptr;
2214 
2215   if (CurPPLexer->getConditionalStackDepth() == 0) {
2216     // If the start of a top-level #ifdef and if the macro is not defined,
2217     // inform MIOpt that this might be the start of a proper include guard.
2218     // Otherwise it is some other form of unknown conditional which we can't
2219     // handle.
2220     if (!ReadAnyTokensBeforeDirective && !MI) {
2221       assert(isIfndef && "#ifdef shouldn't reach here");
2222       CurPPLexer->MIOpt.EnterTopLevelIfndef(MII, MacroNameTok.getLocation());
2223     } else
2224       CurPPLexer->MIOpt.EnterTopLevelConditional();
2225   }
2226 
2227   // If there is a macro, process it.
2228   if (MI)  // Mark it used.
2229     markMacroAsUsed(MI);
2230 
2231   if (Callbacks) {
2232     if (isIfndef)
2233       Callbacks->Ifndef(DirectiveTok.getLocation(), MacroNameTok, MD);
2234     else
2235       Callbacks->Ifdef(DirectiveTok.getLocation(), MacroNameTok, MD);
2236   }
2237 
2238   // Should we include the stuff contained by this directive?
2239   if (!MI == isIfndef) {
2240     // Yes, remember that we are inside a conditional, then lex the next token.
2241     CurPPLexer->pushConditionalLevel(DirectiveTok.getLocation(),
2242                                      /*wasskip*/false, /*foundnonskip*/true,
2243                                      /*foundelse*/false);
2244   } else {
2245     // No, skip the contents of this block.
2246     SkipExcludedConditionalBlock(DirectiveTok.getLocation(),
2247                                  /*Foundnonskip*/false,
2248                                  /*FoundElse*/false);
2249   }
2250 }
2251 
2252 /// HandleIfDirective - Implements the \#if directive.
2253 ///
2254 void Preprocessor::HandleIfDirective(Token &IfToken,
2255                                      bool ReadAnyTokensBeforeDirective) {
2256   ++NumIf;
2257 
2258   // Parse and evaluate the conditional expression.
2259   IdentifierInfo *IfNDefMacro = nullptr;
2260   const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
2261   const bool ConditionalTrue = EvaluateDirectiveExpression(IfNDefMacro);
2262   const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
2263 
2264   // If this condition is equivalent to #ifndef X, and if this is the first
2265   // directive seen, handle it for the multiple-include optimization.
2266   if (CurPPLexer->getConditionalStackDepth() == 0) {
2267     if (!ReadAnyTokensBeforeDirective && IfNDefMacro && ConditionalTrue)
2268       // FIXME: Pass in the location of the macro name, not the 'if' token.
2269       CurPPLexer->MIOpt.EnterTopLevelIfndef(IfNDefMacro, IfToken.getLocation());
2270     else
2271       CurPPLexer->MIOpt.EnterTopLevelConditional();
2272   }
2273 
2274   if (Callbacks)
2275     Callbacks->If(IfToken.getLocation(),
2276                   SourceRange(ConditionalBegin, ConditionalEnd),
2277                   (ConditionalTrue ? PPCallbacks::CVK_True : PPCallbacks::CVK_False));
2278 
2279   // Should we include the stuff contained by this directive?
2280   if (ConditionalTrue) {
2281     // Yes, remember that we are inside a conditional, then lex the next token.
2282     CurPPLexer->pushConditionalLevel(IfToken.getLocation(), /*wasskip*/false,
2283                                    /*foundnonskip*/true, /*foundelse*/false);
2284   } else {
2285     // No, skip the contents of this block.
2286     SkipExcludedConditionalBlock(IfToken.getLocation(), /*Foundnonskip*/false,
2287                                  /*FoundElse*/false);
2288   }
2289 }
2290 
2291 /// HandleEndifDirective - Implements the \#endif directive.
2292 ///
2293 void Preprocessor::HandleEndifDirective(Token &EndifToken) {
2294   ++NumEndif;
2295 
2296   // Check that this is the whole directive.
2297   CheckEndOfDirective("endif");
2298 
2299   PPConditionalInfo CondInfo;
2300   if (CurPPLexer->popConditionalLevel(CondInfo)) {
2301     // No conditionals on the stack: this is an #endif without an #if.
2302     Diag(EndifToken, diag::err_pp_endif_without_if);
2303     return;
2304   }
2305 
2306   // If this the end of a top-level #endif, inform MIOpt.
2307   if (CurPPLexer->getConditionalStackDepth() == 0)
2308     CurPPLexer->MIOpt.ExitTopLevelConditional();
2309 
2310   assert(!CondInfo.WasSkipping && !CurPPLexer->LexingRawMode &&
2311          "This code should only be reachable in the non-skipping case!");
2312 
2313   if (Callbacks)
2314     Callbacks->Endif(EndifToken.getLocation(), CondInfo.IfLoc);
2315 }
2316 
2317 /// HandleElseDirective - Implements the \#else directive.
2318 ///
2319 void Preprocessor::HandleElseDirective(Token &Result) {
2320   ++NumElse;
2321 
2322   // #else directive in a non-skipping conditional... start skipping.
2323   CheckEndOfDirective("else");
2324 
2325   PPConditionalInfo CI;
2326   if (CurPPLexer->popConditionalLevel(CI)) {
2327     Diag(Result, diag::pp_err_else_without_if);
2328     return;
2329   }
2330 
2331   // If this is a top-level #else, inform the MIOpt.
2332   if (CurPPLexer->getConditionalStackDepth() == 0)
2333     CurPPLexer->MIOpt.EnterTopLevelConditional();
2334 
2335   // If this is a #else with a #else before it, report the error.
2336   if (CI.FoundElse) Diag(Result, diag::pp_err_else_after_else);
2337 
2338   if (Callbacks)
2339     Callbacks->Else(Result.getLocation(), CI.IfLoc);
2340 
2341   // Finally, skip the rest of the contents of this block.
2342   SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
2343                                /*FoundElse*/true, Result.getLocation());
2344 }
2345 
2346 /// HandleElifDirective - Implements the \#elif directive.
2347 ///
2348 void Preprocessor::HandleElifDirective(Token &ElifToken) {
2349   ++NumElse;
2350 
2351   // #elif directive in a non-skipping conditional... start skipping.
2352   // We don't care what the condition is, because we will always skip it (since
2353   // the block immediately before it was included).
2354   const SourceLocation ConditionalBegin = CurPPLexer->getSourceLocation();
2355   DiscardUntilEndOfDirective();
2356   const SourceLocation ConditionalEnd = CurPPLexer->getSourceLocation();
2357 
2358   PPConditionalInfo CI;
2359   if (CurPPLexer->popConditionalLevel(CI)) {
2360     Diag(ElifToken, diag::pp_err_elif_without_if);
2361     return;
2362   }
2363 
2364   // If this is a top-level #elif, inform the MIOpt.
2365   if (CurPPLexer->getConditionalStackDepth() == 0)
2366     CurPPLexer->MIOpt.EnterTopLevelConditional();
2367 
2368   // If this is a #elif with a #else before it, report the error.
2369   if (CI.FoundElse) Diag(ElifToken, diag::pp_err_elif_after_else);
2370 
2371   if (Callbacks)
2372     Callbacks->Elif(ElifToken.getLocation(),
2373                     SourceRange(ConditionalBegin, ConditionalEnd),
2374                     PPCallbacks::CVK_NotEvaluated, CI.IfLoc);
2375 
2376   // Finally, skip the rest of the contents of this block.
2377   SkipExcludedConditionalBlock(CI.IfLoc, /*Foundnonskip*/true,
2378                                /*FoundElse*/CI.FoundElse,
2379                                ElifToken.getLocation());
2380 }
2381