ASTUnit.h revision 7247c88d1e41514a41085f83ebf03dd5220e054a
1//===--- ASTUnit.h - ASTUnit utility ----------------------------*- 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// ASTUnit utility class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_FRONTEND_ASTUNIT_H
15#define LLVM_CLANG_FRONTEND_ASTUNIT_H
16
17#include "clang-c/Index.h"
18#include "clang/AST/ASTContext.h"
19#include "clang/Basic/FileManager.h"
20#include "clang/Basic/FileSystemOptions.h"
21#include "clang/Basic/LangOptions.h"
22#include "clang/Basic/SourceManager.h"
23#include "clang/Basic/TargetOptions.h"
24#include "clang/Lex/HeaderSearchOptions.h"
25#include "clang/Lex/ModuleLoader.h"
26#include "clang/Lex/PreprocessingRecord.h"
27#include "clang/Sema/CodeCompleteConsumer.h"
28#include "clang/Sema/Sema.h"
29#include "clang/Serialization/ASTBitCodes.h"
30#include "llvm/ADT/IntrusiveRefCntPtr.h"
31#include "llvm/ADT/OwningPtr.h"
32#include "llvm/ADT/SmallVector.h"
33#include "llvm/ADT/StringMap.h"
34#include "llvm/Support/Path.h"
35#include <cassert>
36#include <map>
37#include <string>
38#include <sys/types.h>
39#include <utility>
40#include <vector>
41
42namespace llvm {
43  class MemoryBuffer;
44}
45
46namespace clang {
47class ASTContext;
48class ASTReader;
49class CodeCompleteConsumer;
50class CompilerInvocation;
51class CompilerInstance;
52class Decl;
53class DiagnosticsEngine;
54class FileEntry;
55class FileManager;
56class HeaderSearch;
57class Preprocessor;
58class SourceManager;
59class TargetInfo;
60class ASTFrontendAction;
61class ASTDeserializationListener;
62
63/// \brief Utility class for loading a ASTContext from an AST file.
64///
65class ASTUnit : public ModuleLoader {
66private:
67  IntrusiveRefCntPtr<LangOptions>         LangOpts;
68  IntrusiveRefCntPtr<DiagnosticsEngine>   Diagnostics;
69  IntrusiveRefCntPtr<FileManager>         FileMgr;
70  IntrusiveRefCntPtr<SourceManager>       SourceMgr;
71  OwningPtr<HeaderSearch>                 HeaderInfo;
72  IntrusiveRefCntPtr<TargetInfo>          Target;
73  IntrusiveRefCntPtr<Preprocessor>        PP;
74  IntrusiveRefCntPtr<ASTContext>          Ctx;
75  IntrusiveRefCntPtr<TargetOptions>       TargetOpts;
76  IntrusiveRefCntPtr<HeaderSearchOptions> HSOpts;
77  ASTReader *Reader;
78
79  struct ASTWriterData;
80  OwningPtr<ASTWriterData> WriterData;
81
82  FileSystemOptions FileSystemOpts;
83
84  /// \brief The AST consumer that received information about the translation
85  /// unit as it was parsed or loaded.
86  OwningPtr<ASTConsumer> Consumer;
87
88  /// \brief The semantic analysis object used to type-check the translation
89  /// unit.
90  OwningPtr<Sema> TheSema;
91
92  /// Optional owned invocation, just used to make the invocation used in
93  /// LoadFromCommandLine available.
94  IntrusiveRefCntPtr<CompilerInvocation> Invocation;
95
96  // OnlyLocalDecls - when true, walking this AST should only visit declarations
97  // that come from the AST itself, not from included precompiled headers.
98  // FIXME: This is temporary; eventually, CIndex will always do this.
99  bool                              OnlyLocalDecls;
100
101  /// \brief Whether to capture any diagnostics produced.
102  bool CaptureDiagnostics;
103
104  /// \brief Track whether the main file was loaded from an AST or not.
105  bool MainFileIsAST;
106
107  /// \brief What kind of translation unit this AST represents.
108  TranslationUnitKind TUKind;
109
110  /// \brief Whether we should time each operation.
111  bool WantTiming;
112
113  /// \brief Whether the ASTUnit should delete the remapped buffers.
114  bool OwnsRemappedFileBuffers;
115
116  /// Track the top-level decls which appeared in an ASTUnit which was loaded
117  /// from a source file.
118  //
119  // FIXME: This is just an optimization hack to avoid deserializing large parts
120  // of a PCH file when using the Index library on an ASTUnit loaded from
121  // source. In the long term we should make the Index library use efficient and
122  // more scalable search mechanisms.
123  std::vector<Decl*> TopLevelDecls;
124
125  /// \brief Sorted (by file offset) vector of pairs of file offset/Decl.
126  typedef SmallVector<std::pair<unsigned, Decl *>, 64> LocDeclsTy;
127  typedef llvm::DenseMap<FileID, LocDeclsTy *> FileDeclsTy;
128
129  /// \brief Map from FileID to the file-level declarations that it contains.
130  /// The files and decls are only local (and non-preamble) ones.
131  FileDeclsTy FileDecls;
132
133  /// The name of the original source file used to generate this ASTUnit.
134  std::string OriginalSourceFile;
135
136  /// \brief The set of diagnostics produced when creating the preamble.
137  SmallVector<StoredDiagnostic, 4> PreambleDiagnostics;
138
139  /// \brief The set of diagnostics produced when creating this
140  /// translation unit.
141  SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
142
143  /// \brief The set of diagnostics produced when failing to parse, e.g. due
144  /// to failure to load the PCH.
145  SmallVector<StoredDiagnostic, 4> FailedParseDiagnostics;
146
147  /// \brief The number of stored diagnostics that come from the driver
148  /// itself.
149  ///
150  /// Diagnostics that come from the driver are retained from one parse to
151  /// the next.
152  unsigned NumStoredDiagnosticsFromDriver;
153
154  /// \brief Counter that determines when we want to try building a
155  /// precompiled preamble.
156  ///
157  /// If zero, we will never build a precompiled preamble. Otherwise,
158  /// it's treated as a counter that decrements each time we reparse
159  /// without the benefit of a precompiled preamble. When it hits 1,
160  /// we'll attempt to rebuild the precompiled header. This way, if
161  /// building the precompiled preamble fails, we won't try again for
162  /// some number of calls.
163  unsigned PreambleRebuildCounter;
164
165public:
166  class PreambleData {
167    const FileEntry *File;
168    std::vector<char> Buffer;
169    mutable unsigned NumLines;
170
171  public:
172    PreambleData() : File(0), NumLines(0) { }
173
174    void assign(const FileEntry *F, const char *begin, const char *end) {
175      File = F;
176      Buffer.assign(begin, end);
177      NumLines = 0;
178    }
179
180    void clear() { Buffer.clear(); File = 0; NumLines = 0; }
181
182    size_t size() const { return Buffer.size(); }
183    bool empty() const { return Buffer.empty(); }
184
185    const char *getBufferStart() const { return &Buffer[0]; }
186
187    unsigned getNumLines() const {
188      if (NumLines)
189        return NumLines;
190      countLines();
191      return NumLines;
192    }
193
194    SourceRange getSourceRange(const SourceManager &SM) const {
195      SourceLocation FileLoc = SM.getLocForStartOfFile(SM.getPreambleFileID());
196      return SourceRange(FileLoc, FileLoc.getLocWithOffset(size()-1));
197    }
198
199  private:
200    void countLines() const;
201  };
202
203  const PreambleData &getPreambleData() const {
204    return Preamble;
205  }
206
207private:
208
209  /// \brief The contents of the preamble that has been precompiled to
210  /// \c PreambleFile.
211  PreambleData Preamble;
212
213  /// \brief Whether the preamble ends at the start of a new line.
214  ///
215  /// Used to inform the lexer as to whether it's starting at the beginning of
216  /// a line after skipping the preamble.
217  bool PreambleEndsAtStartOfLine;
218
219  /// \brief The size of the source buffer that we've reserved for the main
220  /// file within the precompiled preamble.
221  unsigned PreambleReservedSize;
222
223  /// \brief Keeps track of the files that were used when computing the
224  /// preamble, with both their buffer size and their modification time.
225  ///
226  /// If any of the files have changed from one compile to the next,
227  /// the preamble must be thrown away.
228  llvm::StringMap<std::pair<off_t, time_t> > FilesInPreamble;
229
230  /// \brief When non-NULL, this is the buffer used to store the contents of
231  /// the main file when it has been padded for use with the precompiled
232  /// preamble.
233  llvm::MemoryBuffer *SavedMainFileBuffer;
234
235  /// \brief When non-NULL, this is the buffer used to store the
236  /// contents of the preamble when it has been padded to build the
237  /// precompiled preamble.
238  llvm::MemoryBuffer *PreambleBuffer;
239
240  /// \brief The number of warnings that occurred while parsing the preamble.
241  ///
242  /// This value will be used to restore the state of the \c DiagnosticsEngine
243  /// object when re-using the precompiled preamble. Note that only the
244  /// number of warnings matters, since we will not save the preamble
245  /// when any errors are present.
246  unsigned NumWarningsInPreamble;
247
248  /// \brief A list of the serialization ID numbers for each of the top-level
249  /// declarations parsed within the precompiled preamble.
250  std::vector<serialization::DeclID> TopLevelDeclsInPreamble;
251
252  /// \brief Whether we should be caching code-completion results.
253  bool ShouldCacheCodeCompletionResults : 1;
254
255  /// \brief Whether to include brief documentation within the set of code
256  /// completions cached.
257  bool IncludeBriefCommentsInCodeCompletion : 1;
258
259  /// \brief True if non-system source files should be treated as volatile
260  /// (likely to change while trying to use them).
261  bool UserFilesAreVolatile : 1;
262
263  /// \brief The language options used when we load an AST file.
264  LangOptions ASTFileLangOpts;
265
266  static void ConfigureDiags(IntrusiveRefCntPtr<DiagnosticsEngine> &Diags,
267                             const char **ArgBegin, const char **ArgEnd,
268                             ASTUnit &AST, bool CaptureDiagnostics);
269
270  void TranslateStoredDiagnostics(ASTReader *MMan, StringRef ModName,
271                                  SourceManager &SrcMan,
272                      const SmallVectorImpl<StoredDiagnostic> &Diags,
273                            SmallVectorImpl<StoredDiagnostic> &Out);
274
275  void clearFileLevelDecls();
276
277public:
278  /// \brief A cached code-completion result, which may be introduced in one of
279  /// many different contexts.
280  struct CachedCodeCompletionResult {
281    /// \brief The code-completion string corresponding to this completion
282    /// result.
283    CodeCompletionString *Completion;
284
285    /// \brief A bitmask that indicates which code-completion contexts should
286    /// contain this completion result.
287    ///
288    /// The bits in the bitmask correspond to the values of
289    /// CodeCompleteContext::Kind. To map from a completion context kind to a
290    /// bit, shift 1 by that number of bits. Many completions can occur in
291    /// several different contexts.
292    uint64_t ShowInContexts;
293
294    /// \brief The priority given to this code-completion result.
295    unsigned Priority;
296
297    /// \brief The libclang cursor kind corresponding to this code-completion
298    /// result.
299    CXCursorKind Kind;
300
301    /// \brief The availability of this code-completion result.
302    CXAvailabilityKind Availability;
303
304    /// \brief The simplified type class for a non-macro completion result.
305    SimplifiedTypeClass TypeClass;
306
307    /// \brief The type of a non-macro completion result, stored as a unique
308    /// integer used by the string map of cached completion types.
309    ///
310    /// This value will be zero if the type is not known, or a unique value
311    /// determined by the formatted type string. Se \c CachedCompletionTypes
312    /// for more information.
313    unsigned Type;
314  };
315
316  /// \brief Retrieve the mapping from formatted type names to unique type
317  /// identifiers.
318  llvm::StringMap<unsigned> &getCachedCompletionTypes() {
319    return CachedCompletionTypes;
320  }
321
322  /// \brief Retrieve the allocator used to cache global code completions.
323  IntrusiveRefCntPtr<GlobalCodeCompletionAllocator>
324  getCachedCompletionAllocator() {
325    return CachedCompletionAllocator;
326  }
327
328  CodeCompletionTUInfo &getCodeCompletionTUInfo() {
329    if (!CCTUInfo)
330      CCTUInfo.reset(new CodeCompletionTUInfo(
331                                            new GlobalCodeCompletionAllocator));
332    return *CCTUInfo;
333  }
334
335private:
336  /// \brief Allocator used to store cached code completions.
337  IntrusiveRefCntPtr<GlobalCodeCompletionAllocator>
338    CachedCompletionAllocator;
339
340  OwningPtr<CodeCompletionTUInfo> CCTUInfo;
341
342  /// \brief The set of cached code-completion results.
343  std::vector<CachedCodeCompletionResult> CachedCompletionResults;
344
345  /// \brief A mapping from the formatted type name to a unique number for that
346  /// type, which is used for type equality comparisons.
347  llvm::StringMap<unsigned> CachedCompletionTypes;
348
349  /// \brief A string hash of the top-level declaration and macro definition
350  /// names processed the last time that we reparsed the file.
351  ///
352  /// This hash value is used to determine when we need to refresh the
353  /// global code-completion cache.
354  unsigned CompletionCacheTopLevelHashValue;
355
356  /// \brief A string hash of the top-level declaration and macro definition
357  /// names processed the last time that we reparsed the precompiled preamble.
358  ///
359  /// This hash value is used to determine when we need to refresh the
360  /// global code-completion cache after a rebuild of the precompiled preamble.
361  unsigned PreambleTopLevelHashValue;
362
363  /// \brief The current hash value for the top-level declaration and macro
364  /// definition names
365  unsigned CurrentTopLevelHashValue;
366
367  /// \brief Bit used by CIndex to mark when a translation unit may be in an
368  /// inconsistent state, and is not safe to free.
369  unsigned UnsafeToFree : 1;
370
371  /// \brief Cache any "global" code-completion results, so that we can avoid
372  /// recomputing them with each completion.
373  void CacheCodeCompletionResults();
374
375  /// \brief Clear out and deallocate
376  void ClearCachedCompletionResults();
377
378  ASTUnit(const ASTUnit &) LLVM_DELETED_FUNCTION;
379  void operator=(const ASTUnit &) LLVM_DELETED_FUNCTION;
380
381  explicit ASTUnit(bool MainFileIsAST);
382
383  void CleanTemporaryFiles();
384  bool Parse(llvm::MemoryBuffer *OverrideMainBuffer);
385
386  std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
387  ComputePreamble(CompilerInvocation &Invocation,
388                  unsigned MaxLines, bool &CreatedBuffer);
389
390  llvm::MemoryBuffer *getMainBufferWithPrecompiledPreamble(
391                               const CompilerInvocation &PreambleInvocationIn,
392                                                     bool AllowRebuild = true,
393                                                        unsigned MaxLines = 0);
394  void RealizeTopLevelDeclsFromPreamble();
395
396  /// \brief Transfers ownership of the objects (like SourceManager) from
397  /// \param CI to this ASTUnit.
398  void transferASTDataFromCompilerInstance(CompilerInstance &CI);
399
400  /// \brief Allows us to assert that ASTUnit is not being used concurrently,
401  /// which is not supported.
402  ///
403  /// Clients should create instances of the ConcurrencyCheck class whenever
404  /// using the ASTUnit in a way that isn't intended to be concurrent, which is
405  /// just about any usage.
406  /// Becomes a noop in release mode; only useful for debug mode checking.
407  class ConcurrencyState {
408#ifndef NDEBUG
409    void *Mutex; // a llvm::sys::MutexImpl in debug;
410#endif
411
412  public:
413    ConcurrencyState();
414    ~ConcurrencyState();
415
416    void start();
417    void finish();
418  };
419  ConcurrencyState ConcurrencyCheckValue;
420
421public:
422  class ConcurrencyCheck {
423    ASTUnit &Self;
424
425  public:
426    explicit ConcurrencyCheck(ASTUnit &Self)
427      : Self(Self)
428    {
429      Self.ConcurrencyCheckValue.start();
430    }
431    ~ConcurrencyCheck() {
432      Self.ConcurrencyCheckValue.finish();
433    }
434  };
435  friend class ConcurrencyCheck;
436
437  ~ASTUnit();
438
439  bool isMainFileAST() const { return MainFileIsAST; }
440
441  bool isUnsafeToFree() const { return UnsafeToFree; }
442  void setUnsafeToFree(bool Value) { UnsafeToFree = Value; }
443
444  const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; }
445  DiagnosticsEngine &getDiagnostics()             { return *Diagnostics; }
446
447  const SourceManager &getSourceManager() const { return *SourceMgr; }
448        SourceManager &getSourceManager()       { return *SourceMgr; }
449
450  const Preprocessor &getPreprocessor() const { return *PP; }
451        Preprocessor &getPreprocessor()       { return *PP; }
452
453  const ASTContext &getASTContext() const { return *Ctx; }
454        ASTContext &getASTContext()       { return *Ctx; }
455
456  void setASTContext(ASTContext *ctx) { Ctx = ctx; }
457  void setPreprocessor(Preprocessor *pp);
458
459  bool hasSema() const { return TheSema.isValid(); }
460  Sema &getSema() const {
461    assert(TheSema && "ASTUnit does not have a Sema object!");
462    return *TheSema;
463  }
464
465  const FileManager &getFileManager() const { return *FileMgr; }
466        FileManager &getFileManager()       { return *FileMgr; }
467
468  const FileSystemOptions &getFileSystemOpts() const { return FileSystemOpts; }
469
470  StringRef getOriginalSourceFileName() {
471    return OriginalSourceFile;
472  }
473
474  ASTMutationListener *getASTMutationListener();
475  ASTDeserializationListener *getDeserializationListener();
476
477  /// \brief Add a temporary file that the ASTUnit depends on.
478  ///
479  /// This file will be erased when the ASTUnit is destroyed.
480  void addTemporaryFile(const llvm::sys::Path &TempFile);
481
482  bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
483
484  bool getOwnsRemappedFileBuffers() const { return OwnsRemappedFileBuffers; }
485  void setOwnsRemappedFileBuffers(bool val) { OwnsRemappedFileBuffers = val; }
486
487  StringRef getMainFileName() const;
488
489  /// \brief If this ASTUnit came from an AST file, returns the filename for it.
490  StringRef getASTFileName() const;
491
492  typedef std::vector<Decl *>::iterator top_level_iterator;
493
494  top_level_iterator top_level_begin() {
495    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
496    if (!TopLevelDeclsInPreamble.empty())
497      RealizeTopLevelDeclsFromPreamble();
498    return TopLevelDecls.begin();
499  }
500
501  top_level_iterator top_level_end() {
502    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
503    if (!TopLevelDeclsInPreamble.empty())
504      RealizeTopLevelDeclsFromPreamble();
505    return TopLevelDecls.end();
506  }
507
508  std::size_t top_level_size() const {
509    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
510    return TopLevelDeclsInPreamble.size() + TopLevelDecls.size();
511  }
512
513  bool top_level_empty() const {
514    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
515    return TopLevelDeclsInPreamble.empty() && TopLevelDecls.empty();
516  }
517
518  /// \brief Add a new top-level declaration.
519  void addTopLevelDecl(Decl *D) {
520    TopLevelDecls.push_back(D);
521  }
522
523  /// \brief Add a new local file-level declaration.
524  void addFileLevelDecl(Decl *D);
525
526  /// \brief Get the decls that are contained in a file in the Offset/Length
527  /// range. \p Length can be 0 to indicate a point at \p Offset instead of
528  /// a range.
529  void findFileRegionDecls(FileID File, unsigned Offset, unsigned Length,
530                           SmallVectorImpl<Decl *> &Decls);
531
532  /// \brief Add a new top-level declaration, identified by its ID in
533  /// the precompiled preamble.
534  void addTopLevelDeclFromPreamble(serialization::DeclID D) {
535    TopLevelDeclsInPreamble.push_back(D);
536  }
537
538  /// \brief Retrieve a reference to the current top-level name hash value.
539  ///
540  /// Note: This is used internally by the top-level tracking action
541  unsigned &getCurrentTopLevelHashValue() { return CurrentTopLevelHashValue; }
542
543  /// \brief Get the source location for the given file:line:col triplet.
544  ///
545  /// The difference with SourceManager::getLocation is that this method checks
546  /// whether the requested location points inside the precompiled preamble
547  /// in which case the returned source location will be a "loaded" one.
548  SourceLocation getLocation(const FileEntry *File,
549                             unsigned Line, unsigned Col) const;
550
551  /// \brief Get the source location for the given file:offset pair.
552  SourceLocation getLocation(const FileEntry *File, unsigned Offset) const;
553
554  /// \brief If \p Loc is a loaded location from the preamble, returns
555  /// the corresponding local location of the main file, otherwise it returns
556  /// \p Loc.
557  SourceLocation mapLocationFromPreamble(SourceLocation Loc);
558
559  /// \brief If \p Loc is a local location of the main file but inside the
560  /// preamble chunk, returns the corresponding loaded location from the
561  /// preamble, otherwise it returns \p Loc.
562  SourceLocation mapLocationToPreamble(SourceLocation Loc);
563
564  bool isInPreambleFileID(SourceLocation Loc);
565  bool isInMainFileID(SourceLocation Loc);
566  SourceLocation getStartOfMainFileID();
567  SourceLocation getEndOfPreambleFileID();
568
569  /// \see mapLocationFromPreamble.
570  SourceRange mapRangeFromPreamble(SourceRange R) {
571    return SourceRange(mapLocationFromPreamble(R.getBegin()),
572                       mapLocationFromPreamble(R.getEnd()));
573  }
574
575  /// \see mapLocationToPreamble.
576  SourceRange mapRangeToPreamble(SourceRange R) {
577    return SourceRange(mapLocationToPreamble(R.getBegin()),
578                       mapLocationToPreamble(R.getEnd()));
579  }
580
581  // Retrieve the diagnostics associated with this AST
582  typedef StoredDiagnostic *stored_diag_iterator;
583  typedef const StoredDiagnostic *stored_diag_const_iterator;
584  stored_diag_const_iterator stored_diag_begin() const {
585    return StoredDiagnostics.begin();
586  }
587  stored_diag_iterator stored_diag_begin() {
588    return StoredDiagnostics.begin();
589  }
590  stored_diag_const_iterator stored_diag_end() const {
591    return StoredDiagnostics.end();
592  }
593  stored_diag_iterator stored_diag_end() {
594    return StoredDiagnostics.end();
595  }
596  unsigned stored_diag_size() const { return StoredDiagnostics.size(); }
597
598  stored_diag_iterator stored_diag_afterDriver_begin() {
599    if (NumStoredDiagnosticsFromDriver > StoredDiagnostics.size())
600      NumStoredDiagnosticsFromDriver = 0;
601    return StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver;
602  }
603
604  typedef std::vector<CachedCodeCompletionResult>::iterator
605    cached_completion_iterator;
606
607  cached_completion_iterator cached_completion_begin() {
608    return CachedCompletionResults.begin();
609  }
610
611  cached_completion_iterator cached_completion_end() {
612    return CachedCompletionResults.end();
613  }
614
615  unsigned cached_completion_size() const {
616    return CachedCompletionResults.size();
617  }
618
619  /// \brief Returns an iterator range for the local preprocessing entities
620  /// of the local Preprocessor, if this is a parsed source file, or the loaded
621  /// preprocessing entities of the primary module if this is an AST file.
622  std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
623    getLocalPreprocessingEntities() const;
624
625  /// \brief Type for a function iterating over a number of declarations.
626  /// \returns true to continue iteration and false to abort.
627  typedef bool (*DeclVisitorFn)(void *context, const Decl *D);
628
629  /// \brief Iterate over local declarations (locally parsed if this is a parsed
630  /// source file or the loaded declarations of the primary module if this is an
631  /// AST file).
632  /// \returns true if the iteration was complete or false if it was aborted.
633  bool visitLocalTopLevelDecls(void *context, DeclVisitorFn Fn);
634
635  /// \brief Get the PCH file if one was included.
636  const FileEntry *getPCHFile();
637
638  /// \brief Returns true if the ASTUnit was constructed from a serialized
639  /// module file.
640  bool isModuleFile();
641
642  llvm::MemoryBuffer *getBufferForFile(StringRef Filename,
643                                       std::string *ErrorStr = 0);
644
645  /// \brief Determine what kind of translation unit this AST represents.
646  TranslationUnitKind getTranslationUnitKind() const { return TUKind; }
647
648  typedef llvm::PointerUnion<const char *, const llvm::MemoryBuffer *>
649      FilenameOrMemBuf;
650  /// \brief A mapping from a file name to the memory buffer that stores the
651  /// remapped contents of that file.
652  typedef std::pair<std::string, FilenameOrMemBuf> RemappedFile;
653
654  /// \brief Create a ASTUnit. Gets ownership of the passed CompilerInvocation.
655  static ASTUnit *create(CompilerInvocation *CI,
656                         IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
657                         bool CaptureDiagnostics,
658                         bool UserFilesAreVolatile);
659
660  /// \brief Create a ASTUnit from an AST file.
661  ///
662  /// \param Filename - The AST file to load.
663  ///
664  /// \param Diags - The diagnostics engine to use for reporting errors; its
665  /// lifetime is expected to extend past that of the returned ASTUnit.
666  ///
667  /// \returns - The initialized ASTUnit or null if the AST failed to load.
668  static ASTUnit *LoadFromASTFile(const std::string &Filename,
669                              IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
670                                  const FileSystemOptions &FileSystemOpts,
671                                  bool OnlyLocalDecls = false,
672                                  RemappedFile *RemappedFiles = 0,
673                                  unsigned NumRemappedFiles = 0,
674                                  bool CaptureDiagnostics = false,
675                                  bool AllowPCHWithCompilerErrors = false,
676                                  bool UserFilesAreVolatile = false);
677
678private:
679  /// \brief Helper function for \c LoadFromCompilerInvocation() and
680  /// \c LoadFromCommandLine(), which loads an AST from a compiler invocation.
681  ///
682  /// \param PrecompilePreamble Whether to precompile the preamble of this
683  /// translation unit, to improve the performance of reparsing.
684  ///
685  /// \returns \c true if a catastrophic failure occurred (which means that the
686  /// \c ASTUnit itself is invalid), or \c false otherwise.
687  bool LoadFromCompilerInvocation(bool PrecompilePreamble);
688
689public:
690
691  /// \brief Create an ASTUnit from a source file, via a CompilerInvocation
692  /// object, by invoking the optionally provided ASTFrontendAction.
693  ///
694  /// \param CI - The compiler invocation to use; it must have exactly one input
695  /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
696  ///
697  /// \param Diags - The diagnostics engine to use for reporting errors; its
698  /// lifetime is expected to extend past that of the returned ASTUnit.
699  ///
700  /// \param Action - The ASTFrontendAction to invoke. Its ownership is not
701  /// transfered.
702  ///
703  /// \param Unit - optionally an already created ASTUnit. Its ownership is not
704  /// transfered.
705  ///
706  /// \param Persistent - if true the returned ASTUnit will be complete.
707  /// false means the caller is only interested in getting info through the
708  /// provided \see Action.
709  ///
710  /// \param ErrAST - If non-null and parsing failed without any AST to return
711  /// (e.g. because the PCH could not be loaded), this accepts the ASTUnit
712  /// mainly to allow the caller to see the diagnostics.
713  /// This will only receive an ASTUnit if a new one was created. If an already
714  /// created ASTUnit was passed in \p Unit then the caller can check that.
715  ///
716  static ASTUnit *LoadFromCompilerInvocationAction(CompilerInvocation *CI,
717                              IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
718                                             ASTFrontendAction *Action = 0,
719                                             ASTUnit *Unit = 0,
720                                             bool Persistent = true,
721                                      StringRef ResourceFilesPath = StringRef(),
722                                             bool OnlyLocalDecls = false,
723                                             bool CaptureDiagnostics = false,
724                                             bool PrecompilePreamble = false,
725                                       bool CacheCodeCompletionResults = false,
726                              bool IncludeBriefCommentsInCodeCompletion = false,
727                                       bool UserFilesAreVolatile = false,
728                                       OwningPtr<ASTUnit> *ErrAST = 0);
729
730  /// LoadFromCompilerInvocation - Create an ASTUnit from a source file, via a
731  /// CompilerInvocation object.
732  ///
733  /// \param CI - The compiler invocation to use; it must have exactly one input
734  /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
735  ///
736  /// \param Diags - The diagnostics engine to use for reporting errors; its
737  /// lifetime is expected to extend past that of the returned ASTUnit.
738  //
739  // FIXME: Move OnlyLocalDecls, UseBumpAllocator to setters on the ASTUnit, we
740  // shouldn't need to specify them at construction time.
741  static ASTUnit *LoadFromCompilerInvocation(CompilerInvocation *CI,
742                              IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
743                                             bool OnlyLocalDecls = false,
744                                             bool CaptureDiagnostics = false,
745                                             bool PrecompilePreamble = false,
746                                      TranslationUnitKind TUKind = TU_Complete,
747                                       bool CacheCodeCompletionResults = false,
748                            bool IncludeBriefCommentsInCodeCompletion = false,
749                                             bool UserFilesAreVolatile = false);
750
751  /// LoadFromCommandLine - Create an ASTUnit from a vector of command line
752  /// arguments, which must specify exactly one source file.
753  ///
754  /// \param ArgBegin - The beginning of the argument vector.
755  ///
756  /// \param ArgEnd - The end of the argument vector.
757  ///
758  /// \param Diags - The diagnostics engine to use for reporting errors; its
759  /// lifetime is expected to extend past that of the returned ASTUnit.
760  ///
761  /// \param ResourceFilesPath - The path to the compiler resource files.
762  ///
763  /// \param ErrAST - If non-null and parsing failed without any AST to return
764  /// (e.g. because the PCH could not be loaded), this accepts the ASTUnit
765  /// mainly to allow the caller to see the diagnostics.
766  ///
767  // FIXME: Move OnlyLocalDecls, UseBumpAllocator to setters on the ASTUnit, we
768  // shouldn't need to specify them at construction time.
769  static ASTUnit *LoadFromCommandLine(const char **ArgBegin,
770                                      const char **ArgEnd,
771                              IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
772                                      StringRef ResourceFilesPath,
773                                      bool OnlyLocalDecls = false,
774                                      bool CaptureDiagnostics = false,
775                                      RemappedFile *RemappedFiles = 0,
776                                      unsigned NumRemappedFiles = 0,
777                                      bool RemappedFilesKeepOriginalName = true,
778                                      bool PrecompilePreamble = false,
779                                      TranslationUnitKind TUKind = TU_Complete,
780                                      bool CacheCodeCompletionResults = false,
781                            bool IncludeBriefCommentsInCodeCompletion = false,
782                                      bool AllowPCHWithCompilerErrors = false,
783                                      bool SkipFunctionBodies = false,
784                                      bool UserFilesAreVolatile = false,
785                                      bool ForSerialization = false,
786                                      OwningPtr<ASTUnit> *ErrAST = 0);
787
788  /// \brief Reparse the source files using the same command-line options that
789  /// were originally used to produce this translation unit.
790  ///
791  /// \returns True if a failure occurred that causes the ASTUnit not to
792  /// contain any translation-unit information, false otherwise.
793  bool Reparse(RemappedFile *RemappedFiles = 0,
794               unsigned NumRemappedFiles = 0);
795
796  /// \brief Perform code completion at the given file, line, and
797  /// column within this translation unit.
798  ///
799  /// \param File The file in which code completion will occur.
800  ///
801  /// \param Line The line at which code completion will occur.
802  ///
803  /// \param Column The column at which code completion will occur.
804  ///
805  /// \param IncludeMacros Whether to include macros in the code-completion
806  /// results.
807  ///
808  /// \param IncludeCodePatterns Whether to include code patterns (such as a
809  /// for loop) in the code-completion results.
810  ///
811  /// \param IncludeBriefComments Whether to include brief documentation within
812  /// the set of code completions returned.
813  ///
814  /// FIXME: The Diag, LangOpts, SourceMgr, FileMgr, StoredDiagnostics, and
815  /// OwnedBuffers parameters are all disgusting hacks. They will go away.
816  void CodeComplete(StringRef File, unsigned Line, unsigned Column,
817                    RemappedFile *RemappedFiles, unsigned NumRemappedFiles,
818                    bool IncludeMacros, bool IncludeCodePatterns,
819                    bool IncludeBriefComments,
820                    CodeCompleteConsumer &Consumer,
821                    DiagnosticsEngine &Diag, LangOptions &LangOpts,
822                    SourceManager &SourceMgr, FileManager &FileMgr,
823                    SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
824              SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers);
825
826  /// \brief Save this translation unit to a file with the given name.
827  ///
828  /// \returns true if there was a file error or false if the save was
829  /// successful.
830  bool Save(StringRef File);
831
832  /// \brief Serialize this translation unit with the given output stream.
833  ///
834  /// \returns True if an error occurred, false otherwise.
835  bool serialize(raw_ostream &OS);
836
837  virtual ModuleLoadResult loadModule(SourceLocation ImportLoc,
838                                      ModuleIdPath Path,
839                                      Module::NameVisibilityKind Visibility,
840                                      bool IsInclusionDirective) {
841    // ASTUnit doesn't know how to load modules (not that this matters).
842    return ModuleLoadResult();
843  }
844
845  virtual void makeModuleVisible(Module *Mod,
846                                 Module::NameVisibilityKind Visibility,
847                                 SourceLocation ImportLoc,
848                                 bool Complain) { }
849
850};
851
852} // namespace clang
853
854#endif
855