Preprocessor.h revision 277faca30c9f8f72b79f55695cbe3395ec246e7c
1//===--- Preprocessor.h - C Language Family Preprocessor --------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file defines the Preprocessor interface.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_LEX_PREPROCESSOR_H
15#define LLVM_CLANG_LEX_PREPROCESSOR_H
16
17#include "clang/Lex/Lexer.h"
18#include "clang/Lex/PTHLexer.h"
19#include "clang/Lex/PPCallbacks.h"
20#include "clang/Lex/TokenLexer.h"
21#include "clang/Lex/PTHManager.h"
22#include "clang/Basic/Diagnostic.h"
23#include "clang/Basic/IdentifierTable.h"
24#include "clang/Basic/SourceLocation.h"
25#include "llvm/ADT/DenseMap.h"
26#include "llvm/ADT/OwningPtr.h"
27#include "llvm/Support/Allocator.h"
28
29namespace clang {
30
31class SourceManager;
32class FileManager;
33class FileEntry;
34class HeaderSearch;
35class PragmaNamespace;
36class PragmaHandler;
37class ScratchBuffer;
38class TargetInfo;
39class PPCallbacks;
40class DirectoryLookup;
41
42/// Preprocessor - This object engages in a tight little dance with the lexer to
43/// efficiently preprocess tokens.  Lexers know only about tokens within a
44/// single source file, and don't know anything about preprocessor-level issues
45/// like the #include stack, token expansion, etc.
46///
47class Preprocessor {
48  Diagnostic        &Diags;
49  const LangOptions &Features;
50  TargetInfo        &Target;
51  FileManager       &FileMgr;
52  SourceManager     &SourceMgr;
53  ScratchBuffer     *ScratchBuf;
54  HeaderSearch      &HeaderInfo;
55
56  /// PTH - An optional PTHManager object used for getting tokens from
57  ///  a token cache rather than lexing the original source file.
58  llvm::OwningPtr<PTHManager> PTH;
59
60  /// BP - A BumpPtrAllocator object used to quickly allocate and release
61  ///  objects internal to the Preprocessor.
62  llvm::BumpPtrAllocator BP;
63
64  /// Identifiers for builtin macros and other builtins.
65  IdentifierInfo *Ident__LINE__, *Ident__FILE__;   // __LINE__, __FILE__
66  IdentifierInfo *Ident__DATE__, *Ident__TIME__;   // __DATE__, __TIME__
67  IdentifierInfo *Ident__INCLUDE_LEVEL__;          // __INCLUDE_LEVEL__
68  IdentifierInfo *Ident__BASE_FILE__;              // __BASE_FILE__
69  IdentifierInfo *Ident__TIMESTAMP__;              // __TIMESTAMP__
70  IdentifierInfo *Ident_Pragma, *Ident__VA_ARGS__; // _Pragma, __VA_ARGS__
71
72  SourceLocation DATELoc, TIMELoc;
73
74  enum {
75    /// MaxIncludeStackDepth - Maximum depth of #includes.
76    MaxAllowedIncludeStackDepth = 200
77  };
78
79  // State that is set before the preprocessor begins.
80  bool KeepComments : 1;
81  bool KeepMacroComments : 1;
82
83  // State that changes while the preprocessor runs:
84  bool DisableMacroExpansion : 1;  // True if macro expansion is disabled.
85  bool InMacroArgs : 1;            // True if parsing fn macro invocation args.
86
87  /// Identifiers - This is mapping/lookup information for all identifiers in
88  /// the program, including program keywords.
89  IdentifierTable Identifiers;
90
91  /// Selectors - This table contains all the selectors in the program. Unlike
92  /// IdentifierTable above, this table *isn't* populated by the preprocessor.
93  /// It is declared/instantiated here because it's role/lifetime is
94  /// conceptually similar the IdentifierTable. In addition, the current control
95  /// flow (in clang::ParseAST()), make it convenient to put here.
96  /// FIXME: Make sure the lifetime of Identifiers/Selectors *isn't* tied to
97  /// the lifetime fo the preprocessor.
98  SelectorTable Selectors;
99
100  /// PragmaHandlers - This tracks all of the pragmas that the client registered
101  /// with this preprocessor.
102  PragmaNamespace *PragmaHandlers;
103
104  /// CurLexer - This is the current top of the stack that we're lexing from if
105  /// not expanding a macro and we are lexing directly from source code.
106  ///  Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
107  llvm::OwningPtr<Lexer> CurLexer;
108
109  /// CurPTHLexer - This is the current top of stack that we're lexing from if
110  ///  not expanding from a macro and we are lexing from a PTH cache.
111  ///  Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
112  llvm::OwningPtr<PTHLexer> CurPTHLexer;
113
114  /// CurPPLexer - This is the current top of the stack what we're lexing from
115  ///  if not expanding a macro.  This is an alias for either CurLexer or
116  ///  CurPTHLexer.
117  PreprocessorLexer* CurPPLexer;
118
119  /// CurLookup - The DirectoryLookup structure used to find the current
120  /// FileEntry, if CurLexer is non-null and if applicable.  This allows us to
121  /// implement #include_next and find directory-specific properties.
122  const DirectoryLookup *CurDirLookup;
123
124  /// CurTokenLexer - This is the current macro we are expanding, if we are
125  /// expanding a macro.  One of CurLexer and CurTokenLexer must be null.
126  llvm::OwningPtr<TokenLexer> CurTokenLexer;
127
128  /// IncludeMacroStack - This keeps track of the stack of files currently
129  /// #included, and macros currently being expanded from, not counting
130  /// CurLexer/CurTokenLexer.
131  struct IncludeStackInfo {
132    Lexer                 *TheLexer;
133    PTHLexer              *ThePTHLexer;
134    PreprocessorLexer     *ThePPLexer;
135    TokenLexer            *TheTokenLexer;
136    const DirectoryLookup *TheDirLookup;
137
138    IncludeStackInfo(Lexer *L, PTHLexer* P, PreprocessorLexer* PPL,
139                     TokenLexer* TL, const DirectoryLookup *D)
140      : TheLexer(L), ThePTHLexer(P), ThePPLexer(PPL), TheTokenLexer(TL),
141        TheDirLookup(D) {}
142  };
143  std::vector<IncludeStackInfo> IncludeMacroStack;
144
145  /// Callbacks - These are actions invoked when some preprocessor activity is
146  /// encountered (e.g. a file is #included, etc).
147  PPCallbacks *Callbacks;
148
149  /// Macros - For each IdentifierInfo with 'HasMacro' set, we keep a mapping
150  /// to the actual definition of the macro.
151  llvm::DenseMap<IdentifierInfo*, MacroInfo*> Macros;
152
153  /// MICache - A "freelist" of MacroInfo objects that can be reused for quick
154  ///  allocation.
155  std::vector<MacroInfo*> MICache;
156
157  // Various statistics we track for performance analysis.
158  unsigned NumDirectives, NumIncluded, NumDefined, NumUndefined, NumPragma;
159  unsigned NumIf, NumElse, NumEndif;
160  unsigned NumEnteredSourceFiles, MaxIncludeStackDepth;
161  unsigned NumMacroExpanded, NumFnMacroExpanded, NumBuiltinMacroExpanded;
162  unsigned NumFastMacroExpanded, NumTokenPaste, NumFastTokenPaste;
163  unsigned NumSkipped;
164
165  /// Predefines - This string is the predefined macros that preprocessor
166  /// should use from the command line etc.
167  std::string Predefines;
168
169  /// TokenLexerCache - Cache macro expanders to reduce malloc traffic.
170  enum { TokenLexerCacheSize = 8 };
171  unsigned NumCachedTokenLexers;
172  TokenLexer *TokenLexerCache[TokenLexerCacheSize];
173
174private:  // Cached tokens state.
175  typedef std::vector<Token> CachedTokensTy;
176
177  /// CachedTokens - Cached tokens are stored here when we do backtracking or
178  /// lookahead. They are "lexed" by the CachingLex() method.
179  CachedTokensTy CachedTokens;
180
181  /// CachedLexPos - The position of the cached token that CachingLex() should
182  /// "lex" next. If it points beyond the CachedTokens vector, it means that
183  /// a normal Lex() should be invoked.
184  CachedTokensTy::size_type CachedLexPos;
185
186  /// BacktrackPositions - Stack of backtrack positions, allowing nested
187  /// backtracks. The EnableBacktrackAtThisPos() method pushes a position to
188  /// indicate where CachedLexPos should be set when the BackTrack() method is
189  /// invoked (at which point the last position is popped).
190  std::vector<CachedTokensTy::size_type> BacktrackPositions;
191
192public:
193  Preprocessor(Diagnostic &diags, const LangOptions &opts, TargetInfo &target,
194               SourceManager &SM, HeaderSearch &Headers,
195               IdentifierInfoLookup* IILookup = 0);
196
197  ~Preprocessor();
198
199  Diagnostic &getDiagnostics() const { return Diags; }
200  const LangOptions &getLangOptions() const { return Features; }
201  TargetInfo &getTargetInfo() const { return Target; }
202  FileManager &getFileManager() const { return FileMgr; }
203  SourceManager &getSourceManager() const { return SourceMgr; }
204  HeaderSearch &getHeaderSearchInfo() const { return HeaderInfo; }
205
206  IdentifierTable &getIdentifierTable() { return Identifiers; }
207  SelectorTable &getSelectorTable() { return Selectors; }
208
209  void setPTHManager(PTHManager* pm) { PTH.reset(pm); }
210
211  /// SetCommentRetentionState - Control whether or not the preprocessor retains
212  /// comments in output.
213  void SetCommentRetentionState(bool KeepComments, bool KeepMacroComments) {
214    this->KeepComments = KeepComments | KeepMacroComments;
215    this->KeepMacroComments = KeepMacroComments;
216  }
217
218  bool getCommentRetentionState() const { return KeepComments; }
219
220  /// isCurrentLexer - Return true if we are lexing directly from the specified
221  /// lexer.
222  bool isCurrentLexer(const PreprocessorLexer *L) const {
223    return CurPPLexer == L;
224  }
225
226  /// getCurrentLexer - Return the current file lexer being lexed from.  Note
227  /// that this ignores any potentially active macro expansions and _Pragma
228  /// expansions going on at the time.
229  PreprocessorLexer *getCurrentFileLexer() const;
230
231  /// getPPCallbacks/setPPCallbacks - Accessors for preprocessor callbacks.
232  /// Note that this class takes ownership of any PPCallbacks object given to
233  /// it.
234  PPCallbacks *getPPCallbacks() const { return Callbacks; }
235  void setPPCallbacks(PPCallbacks *C) {
236    delete Callbacks;
237    Callbacks = C;
238  }
239
240  /// getMacroInfo - Given an identifier, return the MacroInfo it is #defined to
241  /// or null if it isn't #define'd.
242  MacroInfo *getMacroInfo(IdentifierInfo *II) const {
243    return II->hasMacroDefinition() ? Macros.find(II)->second : 0;
244  }
245
246  /// setMacroInfo - Specify a macro for this identifier.
247  ///
248  void setMacroInfo(IdentifierInfo *II, MacroInfo *MI);
249
250  const std::string &getPredefines() const { return Predefines; }
251  /// setPredefines - Set the predefines for this Preprocessor.  These
252  /// predefines are automatically injected when parsing the main file.
253  void setPredefines(const char *P) { Predefines = P; }
254  void setPredefines(const std::string &P) { Predefines = P; }
255
256  /// getIdentifierInfo - Return information about the specified preprocessor
257  /// identifier token.  The version of this method that takes two character
258  /// pointers is preferred unless the identifier is already available as a
259  /// string (this avoids allocation and copying of memory to construct an
260  /// std::string).
261  IdentifierInfo *getIdentifierInfo(const char *NameStart,
262                                    const char *NameEnd) {
263    return &Identifiers.get(NameStart, NameEnd);
264  }
265  IdentifierInfo *getIdentifierInfo(const char *NameStr) {
266    return getIdentifierInfo(NameStr, NameStr+strlen(NameStr));
267  }
268
269  /// AddPragmaHandler - Add the specified pragma handler to the preprocessor.
270  /// If 'Namespace' is non-null, then it is a token required to exist on the
271  /// pragma line before the pragma string starts, e.g. "STDC" or "GCC".
272  void AddPragmaHandler(const char *Namespace, PragmaHandler *Handler);
273
274  /// RemovePragmaHandler - Remove the specific pragma handler from
275  /// the preprocessor. If \arg Namespace is non-null, then it should
276  /// be the namespace that \arg Handler was added to. It is an error
277  /// to remove a handler that has not been registered.
278  void RemovePragmaHandler(const char *Namespace, PragmaHandler *Handler);
279
280  /// EnterMainSourceFile - Enter the specified FileID as the main source file,
281  /// which implicitly adds the builtin defines etc.
282  void EnterMainSourceFile();
283
284  /// EnterSourceFile - Add a source file to the top of the include stack and
285  /// start lexing tokens from it instead of the current buffer.  If isMainFile
286  /// is true, this is the main file for the translation unit.
287  void EnterSourceFile(FileID CurFileID, const DirectoryLookup *Dir);
288
289  /// EnterMacro - Add a Macro to the top of the include stack and start lexing
290  /// tokens from it instead of the current buffer.  Args specifies the
291  /// tokens input to a function-like macro.
292  void EnterMacro(Token &Identifier, MacroArgs *Args);
293
294  /// EnterTokenStream - Add a "macro" context to the top of the include stack,
295  /// which will cause the lexer to start returning the specified tokens.
296  ///
297  /// If DisableMacroExpansion is true, tokens lexed from the token stream will
298  /// not be subject to further macro expansion.  Otherwise, these tokens will
299  /// be re-macro-expanded when/if expansion is enabled.
300  ///
301  /// If OwnsTokens is false, this method assumes that the specified stream of
302  /// tokens has a permanent owner somewhere, so they do not need to be copied.
303  /// If it is true, it assumes the array of tokens is allocated with new[] and
304  /// must be freed.
305  ///
306  void EnterTokenStream(const Token *Toks, unsigned NumToks,
307                        bool DisableMacroExpansion, bool OwnsTokens);
308
309  /// RemoveTopOfLexerStack - Pop the current lexer/macro exp off the top of the
310  /// lexer stack.  This should only be used in situations where the current
311  /// state of the top-of-stack lexer is known.
312  void RemoveTopOfLexerStack();
313
314  /// EnableBacktrackAtThisPos - From the point that this method is called, and
315  /// until CommitBacktrackedTokens() or Backtrack() is called, the Preprocessor
316  /// keeps track of the lexed tokens so that a subsequent Backtrack() call will
317  /// make the Preprocessor re-lex the same tokens.
318  ///
319  /// Nested backtracks are allowed, meaning that EnableBacktrackAtThisPos can
320  /// be called multiple times and CommitBacktrackedTokens/Backtrack calls will
321  /// be combined with the EnableBacktrackAtThisPos calls in reverse order.
322  ///
323  /// NOTE: *DO NOT* forget to call either CommitBacktrackedTokens or Backtrack
324  /// at some point after EnableBacktrackAtThisPos. If you don't, caching of
325  /// tokens will continue indefinitely.
326  ///
327  void EnableBacktrackAtThisPos();
328
329  /// CommitBacktrackedTokens - Disable the last EnableBacktrackAtThisPos call.
330  void CommitBacktrackedTokens();
331
332  /// Backtrack - Make Preprocessor re-lex the tokens that were lexed since
333  /// EnableBacktrackAtThisPos() was previously called.
334  void Backtrack();
335
336  /// isBacktrackEnabled - True if EnableBacktrackAtThisPos() was called and
337  /// caching of tokens is on.
338  bool isBacktrackEnabled() const { return !BacktrackPositions.empty(); }
339
340  /// Lex - To lex a token from the preprocessor, just pull a token from the
341  /// current lexer or macro object.
342  void Lex(Token &Result) {
343    if (CurLexer)
344      CurLexer->Lex(Result);
345    else if (CurPTHLexer)
346      CurPTHLexer->Lex(Result);
347    else if (CurTokenLexer)
348      CurTokenLexer->Lex(Result);
349    else
350      CachingLex(Result);
351  }
352
353  /// LexNonComment - Lex a token.  If it's a comment, keep lexing until we get
354  /// something not a comment.  This is useful in -E -C mode where comments
355  /// would foul up preprocessor directive handling.
356  void LexNonComment(Token &Result) {
357    do
358      Lex(Result);
359    while (Result.getKind() == tok::comment);
360  }
361
362  /// LexUnexpandedToken - This is just like Lex, but this disables macro
363  /// expansion of identifier tokens.
364  void LexUnexpandedToken(Token &Result) {
365    // Disable macro expansion.
366    bool OldVal = DisableMacroExpansion;
367    DisableMacroExpansion = true;
368    // Lex the token.
369    Lex(Result);
370
371    // Reenable it.
372    DisableMacroExpansion = OldVal;
373  }
374
375  /// LookAhead - This peeks ahead N tokens and returns that token without
376  /// consuming any tokens.  LookAhead(0) returns the next token that would be
377  /// returned by Lex(), LookAhead(1) returns the token after it, etc.  This
378  /// returns normal tokens after phase 5.  As such, it is equivalent to using
379  /// 'Lex', not 'LexUnexpandedToken'.
380  const Token &LookAhead(unsigned N) {
381    if (CachedLexPos + N < CachedTokens.size())
382      return CachedTokens[CachedLexPos+N];
383    else
384      return PeekAhead(N+1);
385  }
386
387  /// RevertCachedTokens - When backtracking is enabled and tokens are cached,
388  /// this allows to revert a specific number of tokens.
389  /// Note that the number of tokens being reverted should be up to the last
390  /// backtrack position, not more.
391  void RevertCachedTokens(unsigned N) {
392    assert(isBacktrackEnabled() &&
393           "Should only be called when tokens are cached for backtracking");
394    assert(signed(CachedLexPos) - signed(N) >= signed(BacktrackPositions.back())
395         && "Should revert tokens up to the last backtrack position, not more");
396    assert(signed(CachedLexPos) - signed(N) >= 0 &&
397           "Corrupted backtrack positions ?");
398    CachedLexPos -= N;
399  }
400
401  /// EnterToken - Enters a token in the token stream to be lexed next. If
402  /// BackTrack() is called afterwards, the token will remain at the insertion
403  /// point.
404  void EnterToken(const Token &Tok) {
405    EnterCachingLexMode();
406    CachedTokens.insert(CachedTokens.begin()+CachedLexPos, Tok);
407  }
408
409  /// AnnotateCachedTokens - We notify the Preprocessor that if it is caching
410  /// tokens (because backtrack is enabled) it should replace the most recent
411  /// cached tokens with the given annotation token. This function has no effect
412  /// if backtracking is not enabled.
413  ///
414  /// Note that the use of this function is just for optimization; so that the
415  /// cached tokens doesn't get re-parsed and re-resolved after a backtrack is
416  /// invoked.
417  void AnnotateCachedTokens(const Token &Tok) {
418    assert(Tok.isAnnotation() && "Expected annotation token");
419    if (CachedLexPos != 0 && isBacktrackEnabled())
420      AnnotatePreviousCachedTokens(Tok);
421  }
422
423  /// Diag - Forwarding function for diagnostics.  This emits a diagnostic at
424  /// the specified Token's location, translating the token's start
425  /// position in the current buffer into a SourcePosition object for rendering.
426  DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) {
427    return Diags.Report(FullSourceLoc(Loc, getSourceManager()), DiagID);
428  }
429
430  DiagnosticBuilder Diag(const Token &Tok, unsigned DiagID) {
431    return Diags.Report(FullSourceLoc(Tok.getLocation(), getSourceManager()),
432                        DiagID);
433  }
434
435  /// getSpelling() - Return the 'spelling' of the Tok token.  The spelling of a
436  /// token is the characters used to represent the token in the source file
437  /// after trigraph expansion and escaped-newline folding.  In particular, this
438  /// wants to get the true, uncanonicalized, spelling of things like digraphs
439  /// UCNs, etc.
440  std::string getSpelling(const Token &Tok) const;
441
442  /// getSpelling - This method is used to get the spelling of a token into a
443  /// preallocated buffer, instead of as an std::string.  The caller is required
444  /// to allocate enough space for the token, which is guaranteed to be at least
445  /// Tok.getLength() bytes long.  The length of the actual result is returned.
446  ///
447  /// Note that this method may do two possible things: it may either fill in
448  /// the buffer specified with characters, or it may *change the input pointer*
449  /// to point to a constant buffer with the data already in it (avoiding a
450  /// copy).  The caller is not allowed to modify the returned buffer pointer
451  /// if an internal buffer is returned.
452  unsigned getSpelling(const Token &Tok, const char *&Buffer) const;
453
454  /// getSpellingOfSingleCharacterNumericConstant - Tok is a numeric constant
455  /// with length 1, return the character.
456  char getSpellingOfSingleCharacterNumericConstant(const Token &Tok) const {
457    assert(Tok.is(tok::numeric_constant) &&
458           Tok.getLength() == 1 && "Called on unsupported token");
459    assert(!Tok.needsCleaning() && "Token can't need cleaning with length 1");
460
461    // If the token is carrying a literal data pointer, just use it.
462    if (const char *D = Tok.getLiteralData())
463      return *D;
464
465    // Otherwise, fall back on getCharacterData, which is slower, but always
466    // works.
467    return *SourceMgr.getCharacterData(Tok.getLocation());
468  }
469
470  /// CreateString - Plop the specified string into a scratch buffer and set the
471  /// specified token's location and length to it.  If specified, the source
472  /// location provides a location of the instantiation point of the token.
473  void CreateString(const char *Buf, unsigned Len,
474                    Token &Tok, SourceLocation SourceLoc = SourceLocation());
475
476  /// DumpToken - Print the token to stderr, used for debugging.
477  ///
478  void DumpToken(const Token &Tok, bool DumpFlags = false) const;
479  void DumpLocation(SourceLocation Loc) const;
480  void DumpMacro(const MacroInfo &MI) const;
481
482  /// AdvanceToTokenCharacter - Given a location that specifies the start of a
483  /// token, return a new location that specifies a character within the token.
484  SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart,unsigned Char);
485
486  /// IncrementPasteCounter - Increment the counters for the number of token
487  /// paste operations performed.  If fast was specified, this is a 'fast paste'
488  /// case we handled.
489  ///
490  void IncrementPasteCounter(bool isFast) {
491    if (isFast)
492      ++NumFastTokenPaste;
493    else
494      ++NumTokenPaste;
495  }
496
497  void PrintStats();
498
499  /// HandleMicrosoftCommentPaste - When the macro expander pastes together a
500  /// comment (/##/) in microsoft mode, this method handles updating the current
501  /// state, returning the token on the next source line.
502  void HandleMicrosoftCommentPaste(Token &Tok);
503
504  //===--------------------------------------------------------------------===//
505  // Preprocessor callback methods.  These are invoked by a lexer as various
506  // directives and events are found.
507
508  /// LookUpIdentifierInfo - Given a tok::identifier token, look up the
509  /// identifier information for the token and install it into the token.
510  IdentifierInfo *LookUpIdentifierInfo(Token &Identifier,
511                                       const char *BufPtr = 0);
512
513  /// HandleIdentifier - This callback is invoked when the lexer reads an
514  /// identifier and has filled in the tokens IdentifierInfo member.  This
515  /// callback potentially macro expands it or turns it into a named token (like
516  /// 'for').
517  void HandleIdentifier(Token &Identifier);
518
519
520  /// HandleEndOfFile - This callback is invoked when the lexer hits the end of
521  /// the current file.  This either returns the EOF token and returns true, or
522  /// pops a level off the include stack and returns false, at which point the
523  /// client should call lex again.
524  bool HandleEndOfFile(Token &Result, bool isEndOfMacro = false);
525
526  /// HandleEndOfTokenLexer - This callback is invoked when the current
527  /// TokenLexer hits the end of its token stream.
528  bool HandleEndOfTokenLexer(Token &Result);
529
530  /// HandleDirective - This callback is invoked when the lexer sees a # token
531  /// at the start of a line.  This consumes the directive, modifies the
532  /// lexer/preprocessor state, and advances the lexer(s) so that the next token
533  /// read is the correct one.
534  void HandleDirective(Token &Result);
535
536  /// CheckEndOfDirective - Ensure that the next token is a tok::eom token.  If
537  /// not, emit a diagnostic and consume up until the eom.
538  void CheckEndOfDirective(const char *Directive);
539
540  /// DiscardUntilEndOfDirective - Read and discard all tokens remaining on the
541  /// current line until the tok::eom token is found.
542  void DiscardUntilEndOfDirective();
543
544private:
545
546  void PushIncludeMacroStack() {
547    IncludeMacroStack.push_back(IncludeStackInfo(CurLexer.take(),
548                                                 CurPTHLexer.take(),
549                                                 CurPPLexer,
550                                                 CurTokenLexer.take(),
551                                                 CurDirLookup));
552    CurPPLexer = 0;
553  }
554
555  void PopIncludeMacroStack() {
556    CurLexer.reset(IncludeMacroStack.back().TheLexer);
557    CurPTHLexer.reset(IncludeMacroStack.back().ThePTHLexer);
558    CurPPLexer = IncludeMacroStack.back().ThePPLexer;
559    CurTokenLexer.reset(IncludeMacroStack.back().TheTokenLexer);
560    CurDirLookup  = IncludeMacroStack.back().TheDirLookup;
561    IncludeMacroStack.pop_back();
562  }
563
564  /// AllocateMacroInfo - Allocate a new MacroInfo object with the provide
565  ///  SourceLocation.
566  MacroInfo* AllocateMacroInfo(SourceLocation L);
567
568  /// ReleaseMacroInfo - Release the specified MacroInfo.  This memory will
569  ///  be reused for allocating new MacroInfo objects.
570  void ReleaseMacroInfo(MacroInfo* MI) {
571    MICache.push_back(MI);
572  }
573
574  /// isInPrimaryFile - Return true if we're in the top-level file, not in a
575  /// #include.
576  bool isInPrimaryFile() const;
577
578  /// ReadMacroName - Lex and validate a macro name, which occurs after a
579  /// #define or #undef.  This emits a diagnostic, sets the token kind to eom,
580  /// and discards the rest of the macro line if the macro name is invalid.
581  void ReadMacroName(Token &MacroNameTok, char isDefineUndef = 0);
582
583  /// ReadMacroDefinitionArgList - The ( starting an argument list of a macro
584  /// definition has just been read.  Lex the rest of the arguments and the
585  /// closing ), updating MI with what we learn.  Return true if an error occurs
586  /// parsing the arg list.
587  bool ReadMacroDefinitionArgList(MacroInfo *MI);
588
589  /// SkipExcludedConditionalBlock - We just read a #if or related directive and
590  /// decided that the subsequent tokens are in the #if'd out portion of the
591  /// file.  Lex the rest of the file, until we see an #endif.  If
592  /// FoundNonSkipPortion is true, then we have already emitted code for part of
593  /// this #if directive, so #else/#elif blocks should never be entered. If
594  /// FoundElse is false, then #else directives are ok, if not, then we have
595  /// already seen one so a #else directive is a duplicate.  When this returns,
596  /// the caller can lex the first valid token.
597  void SkipExcludedConditionalBlock(SourceLocation IfTokenLoc,
598                                    bool FoundNonSkipPortion, bool FoundElse);
599
600  /// PTHSkipExcludedConditionalBlock - A fast PTH version of
601  ///  SkipExcludedConditionalBlock.
602  void PTHSkipExcludedConditionalBlock();
603
604  /// EvaluateDirectiveExpression - Evaluate an integer constant expression that
605  /// may occur after a #if or #elif directive and return it as a bool.  If the
606  /// expression is equivalent to "!defined(X)" return X in IfNDefMacro.
607  bool EvaluateDirectiveExpression(IdentifierInfo *&IfNDefMacro);
608
609  /// RegisterBuiltinPragmas - Install the standard preprocessor pragmas:
610  /// #pragma GCC poison/system_header/dependency and #pragma once.
611  void RegisterBuiltinPragmas();
612
613  /// RegisterBuiltinMacros - Register builtin macros, such as __LINE__ with the
614  /// identifier table.
615  void RegisterBuiltinMacros();
616  IdentifierInfo *RegisterBuiltinMacro(const char *Name);
617
618  /// HandleMacroExpandedIdentifier - If an identifier token is read that is to
619  /// be expanded as a macro, handle it and return the next token as 'Tok'.  If
620  /// the macro should not be expanded return true, otherwise return false.
621  bool HandleMacroExpandedIdentifier(Token &Tok, MacroInfo *MI);
622
623  /// isNextPPTokenLParen - Determine whether the next preprocessor token to be
624  /// lexed is a '('.  If so, consume the token and return true, if not, this
625  /// method should have no observable side-effect on the lexed tokens.
626  bool isNextPPTokenLParen();
627
628  /// ReadFunctionLikeMacroArgs - After reading "MACRO(", this method is
629  /// invoked to read all of the formal arguments specified for the macro
630  /// invocation.  This returns null on error.
631  MacroArgs *ReadFunctionLikeMacroArgs(Token &MacroName, MacroInfo *MI);
632
633  /// ExpandBuiltinMacro - If an identifier token is read that is to be expanded
634  /// as a builtin macro, handle it and return the next token as 'Tok'.
635  void ExpandBuiltinMacro(Token &Tok);
636
637  /// Handle_Pragma - Read a _Pragma directive, slice it up, process it, then
638  /// return the first token after the directive.  The _Pragma token has just
639  /// been read into 'Tok'.
640  void Handle_Pragma(Token &Tok);
641
642  /// EnterSourceFileWithLexer - Add a lexer to the top of the include stack and
643  /// start lexing tokens from it instead of the current buffer.
644  void EnterSourceFileWithLexer(Lexer *TheLexer, const DirectoryLookup *Dir);
645
646  /// EnterSourceFileWithPTH - Add a lexer to the top of the include stack and
647  /// start getting tokens from it using the PTH cache.
648  void EnterSourceFileWithPTH(PTHLexer *PL, const DirectoryLookup *Dir);
649
650  /// GetIncludeFilenameSpelling - Turn the specified lexer token into a fully
651  /// checked and spelled filename, e.g. as an operand of #include. This returns
652  /// true if the input filename was in <>'s or false if it were in ""'s.  The
653  /// caller is expected to provide a buffer that is large enough to hold the
654  /// spelling of the filename, but is also expected to handle the case when
655  /// this method decides to use a different buffer.
656  bool GetIncludeFilenameSpelling(SourceLocation Loc,
657                                  const char *&BufStart, const char *&BufEnd);
658
659  /// LookupFile - Given a "foo" or <foo> reference, look up the indicated file,
660  /// return null on failure.  isAngled indicates whether the file reference is
661  /// for system #include's or not (i.e. using <> instead of "").
662  const FileEntry *LookupFile(const char *FilenameStart,const char *FilenameEnd,
663                              bool isAngled, const DirectoryLookup *FromDir,
664                              const DirectoryLookup *&CurDir);
665
666
667
668  /// IsFileLexer - Returns true if we are lexing from a file and not a
669  ///  pragma or a macro.
670  static bool IsFileLexer(const Lexer* L, const PreprocessorLexer* P) {
671    return L ? !L->isPragmaLexer() : P != 0;
672  }
673
674  static bool IsFileLexer(const IncludeStackInfo& I) {
675    return IsFileLexer(I.TheLexer, I.ThePPLexer);
676  }
677
678  bool IsFileLexer() const {
679    return IsFileLexer(CurLexer.get(), CurPPLexer);
680  }
681
682  //===--------------------------------------------------------------------===//
683  // Caching stuff.
684  void CachingLex(Token &Result);
685  bool InCachingLexMode() const { return CurPPLexer == 0 && CurTokenLexer == 0;}
686  void EnterCachingLexMode();
687  void ExitCachingLexMode() {
688    if (InCachingLexMode())
689      RemoveTopOfLexerStack();
690  }
691  const Token &PeekAhead(unsigned N);
692  void AnnotatePreviousCachedTokens(const Token &Tok);
693
694  //===--------------------------------------------------------------------===//
695  /// Handle*Directive - implement the various preprocessor directives.  These
696  /// should side-effect the current preprocessor object so that the next call
697  /// to Lex() will return the appropriate token next.
698  void HandleLineDirective(Token &Tok);
699  void HandleDigitDirective(Token &Tok);
700  void HandleUserDiagnosticDirective(Token &Tok, bool isWarning);
701  void HandleIdentSCCSDirective(Token &Tok);
702
703  // File inclusion.
704  void HandleIncludeDirective(Token &Tok,
705                              const DirectoryLookup *LookupFrom = 0,
706                              bool isImport = false);
707  void HandleIncludeNextDirective(Token &Tok);
708  void HandleImportDirective(Token &Tok);
709
710  // Macro handling.
711  void HandleDefineDirective(Token &Tok);
712  void HandleUndefDirective(Token &Tok);
713  // HandleAssertDirective(Token &Tok);
714  // HandleUnassertDirective(Token &Tok);
715
716  // Conditional Inclusion.
717  void HandleIfdefDirective(Token &Tok, bool isIfndef,
718                            bool ReadAnyTokensBeforeDirective);
719  void HandleIfDirective(Token &Tok, bool ReadAnyTokensBeforeDirective);
720  void HandleEndifDirective(Token &Tok);
721  void HandleElseDirective(Token &Tok);
722  void HandleElifDirective(Token &Tok);
723
724  // Pragmas.
725  void HandlePragmaDirective();
726public:
727  void HandlePragmaOnce(Token &OnceTok);
728  void HandlePragmaMark();
729  void HandlePragmaPoison(Token &PoisonTok);
730  void HandlePragmaSystemHeader(Token &SysHeaderTok);
731  void HandlePragmaDependency(Token &DependencyTok);
732  void HandlePragmaComment(Token &CommentTok);
733};
734
735/// PreprocessorFactory - A generic factory interface for lazily creating
736///  Preprocessor objects on-demand when they are needed.
737class PreprocessorFactory {
738public:
739  virtual ~PreprocessorFactory();
740  virtual Preprocessor* CreatePreprocessor() = 0;
741};
742
743}  // end namespace clang
744
745#endif
746