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