ASTUnit.h revision c4421e966d77a18f815284175b3fcbb46f36fa39
14b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//===--- ASTUnit.h - ASTUnit utility ----------------------------*- C++ -*-===//
24b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//
34b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//                     The LLVM Compiler Infrastructure
44b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//
54b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis// This file is distributed under the University of Illinois Open Source
64b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis// License. See LICENSE.TXT for details.
74b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//
84b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//===----------------------------------------------------------------------===//
94b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//
104b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis// ASTUnit utility class.
114b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//
124b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis//===----------------------------------------------------------------------===//
134b562cf889bc59e1914dd2c5d9fbd7e7bfa1ad77Argyrios Kyrtzidis
140853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis#ifndef LLVM_CLANG_FRONTEND_ASTUNIT_H
150853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis#define LLVM_CLANG_FRONTEND_ASTUNIT_H
160853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
17eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor#include "clang/Index/ASTLocation.h"
18eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor#include "clang/Frontend/PCHBitCodes.h"
19914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor#include "clang/Sema/Sema.h"
204ae8f298b1ea51b4c2234f9148e2e4349c9bdd23Douglas Gregor#include "clang/Lex/PreprocessingRecord.h"
2131b87d8006d4863dd9b17e515ac720941efc38e3Daniel Dunbar#include "clang/Basic/SourceManager.h"
22eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor#include "clang/Basic/FileManager.h"
2387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor#include "clang-c/Index.h"
2428019772db70d4547be05a042eb950bc910f134fDouglas Gregor#include "llvm/ADT/IntrusiveRefCntPtr.h"
250853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis#include "llvm/ADT/OwningPtr.h"
26a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor#include "llvm/ADT/SmallVector.h"
27cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor#include "llvm/ADT/StringMap.h"
28313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor#include "llvm/System/Path.h"
29385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor#include "llvm/Support/Timer.h"
30788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor#include <map>
310853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis#include <string>
32f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar#include <vector>
33f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar#include <cassert>
344db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor#include <utility>
35cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor#include <sys/types.h>
364db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor
374db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregornamespace llvm {
384db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor  class MemoryBuffer;
394db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor}
400853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
410853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidisnamespace clang {
42521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass ASTContext;
431abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregorclass CodeCompleteConsumer;
44521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass CompilerInvocation;
45521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass Decl;
46521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass Diagnostic;
47521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass FileEntry;
48521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass FileManager;
49521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass HeaderSearch;
50521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass Preprocessor;
51521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass SourceManager;
52521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbarclass TargetInfo;
530853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
54f96b524306ccfa623235d375deee79637bd38f29Steve Naroffusing namespace idx;
5544c181aec37789f25f6c15543c164416f72e562aDouglas Gregor
560853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis/// \brief Utility class for loading a ASTContext from a PCH file.
570853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis///
580853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidisclass ASTUnit {
59788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregorpublic:
60788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  typedef std::map<FileID, std::vector<PreprocessedEntity *> >
61788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor    PreprocessedEntitiesByFileMap;
62788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregorprivate:
6328019772db70d4547be05a042eb950bc910f134fDouglas Gregor  llvm::IntrusiveRefCntPtr<Diagnostic> Diagnostics;
64405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  llvm::OwningPtr<FileManager>      FileMgr;
65405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  llvm::OwningPtr<SourceManager>    SourceMgr;
660853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  llvm::OwningPtr<HeaderSearch>     HeaderInfo;
670853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  llvm::OwningPtr<TargetInfo>       Target;
680853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  llvm::OwningPtr<Preprocessor>     PP;
690853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  llvm::OwningPtr<ASTContext>       Ctx;
704ae8f298b1ea51b4c2234f9148e2e4349c9bdd23Douglas Gregor
71914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  /// \brief The AST consumer that received information about the translation
72914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  /// unit as it was parsed or loaded.
73914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  llvm::OwningPtr<ASTConsumer> Consumer;
74914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor
75914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  /// \brief The semantic analysis object used to type-check the translation
76914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  /// unit.
77914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  llvm::OwningPtr<Sema> TheSema;
78914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor
79807b06157a1a5c050520fc194d32f16d22d423a8Daniel Dunbar  /// Optional owned invocation, just used to make the invocation used in
80807b06157a1a5c050520fc194d32f16d22d423a8Daniel Dunbar  /// LoadFromCommandLine available.
81807b06157a1a5c050520fc194d32f16d22d423a8Daniel Dunbar  llvm::OwningPtr<CompilerInvocation> Invocation;
82914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor
837d1d49d2971b20a97b3c2a301470b9eaaa130137Douglas Gregor  // OnlyLocalDecls - when true, walking this AST should only visit declarations
847d1d49d2971b20a97b3c2a301470b9eaaa130137Douglas Gregor  // that come from the AST itself, not from included precompiled headers.
857d1d49d2971b20a97b3c2a301470b9eaaa130137Douglas Gregor  // FIXME: This is temporary; eventually, CIndex will always do this.
867d1d49d2971b20a97b3c2a301470b9eaaa130137Douglas Gregor  bool                              OnlyLocalDecls;
87c7822dbf3c01a2a5f837cff82ba7889ea755dacaDaniel Dunbar
88abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// \brief Whether to capture any diagnostics produced.
89abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  bool CaptureDiagnostics;
90abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor
91df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  /// \brief Track whether the main file was loaded from an AST or not.
92c7822dbf3c01a2a5f837cff82ba7889ea755dacaDaniel Dunbar  bool MainFileIsAST;
93c7822dbf3c01a2a5f837cff82ba7889ea755dacaDaniel Dunbar
94df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  /// \brief Whether this AST represents a complete translation unit.
95df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  bool CompleteTranslationUnit;
96df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor
97f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  /// Track the top-level decls which appeared in an ASTUnit which was loaded
98f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  /// from a source file.
99f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  //
100f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  // FIXME: This is just an optimization hack to avoid deserializing large parts
101f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  // of a PCH file when using the Index library on an ASTUnit loaded from
102f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  // source. In the long term we should make the Index library use efficient and
103f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  // more scalable search mechanisms.
104f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  std::vector<Decl*> TopLevelDecls;
105f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar
10668d40e2d16b9fadba386853d6bbb60089291fdc5Daniel Dunbar  /// The name of the original source file used to generate this ASTUnit.
10768d40e2d16b9fadba386853d6bbb60089291fdc5Daniel Dunbar  std::string OriginalSourceFile;
10868d40e2d16b9fadba386853d6bbb60089291fdc5Daniel Dunbar
109f96b524306ccfa623235d375deee79637bd38f29Steve Naroff  // Critical optimization when using clang_getCursor().
110f96b524306ccfa623235d375deee79637bd38f29Steve Naroff  ASTLocation LastLoc;
111f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar
112a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  /// \brief The set of diagnostics produced when creating this
113a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  /// translation unit.
114405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  llvm::SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
115a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
116313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  /// \brief Temporary files that should be removed when the ASTUnit is
117313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  /// destroyed.
118313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  llvm::SmallVector<llvm::sys::Path, 4> TemporaryFiles;
119bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor
120788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// \brief A mapping from file IDs to the set of preprocessed entities
121788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// stored in that file.
122788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  ///
123788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// FIXME: This is just an optimization hack to avoid searching through
124788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// many preprocessed entities during cursor traversal in the CIndex library.
125788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// Ideally, we would just be able to perform a binary search within the
126788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// list of preprocessed entities.
127788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  PreprocessedEntitiesByFileMap PreprocessedEntitiesByFile;
128788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor
129bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  /// \brief Simple hack to allow us to assert that ASTUnit is not being
130bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  /// used concurrently, which is not supported.
131bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  ///
132bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  /// Clients should create instances of the ConcurrencyCheck class whenever
133bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  /// using the ASTUnit in a way that isn't intended to be concurrent, which is
134bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  /// just about any usage.
135bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  unsigned int ConcurrencyCheckValue;
136bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  static const unsigned int CheckLocked = 28573289;
137bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  static const unsigned int CheckUnlocked = 9803453;
138175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor
139eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// \brief Counter that determines when we want to try building a
140eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// precompiled preamble.
141eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  ///
142eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// If zero, we will never build a precompiled preamble. Otherwise,
143eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// it's treated as a counter that decrements each time we reparse
144eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// without the benefit of a precompiled preamble. When it hits 1,
145eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// we'll attempt to rebuild the precompiled header. This way, if
146eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// building the precompiled preamble fails, we won't try again for
147eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  /// some number of calls.
148eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor  unsigned PreambleRebuildCounter;
149eababfbddb74d186f78783a9731a78ad371c9800Douglas Gregor
150175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  /// \brief The file in which the precompiled preamble is stored.
151385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor  std::string PreambleFile;
152175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor
153175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  /// \brief The contents of the preamble that has been precompiled to
154175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  /// \c PreambleFile.
155175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  std::vector<char> Preamble;
156175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor
157f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  /// \brief Whether the preamble ends at the start of a new line.
158f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  ///
159f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  /// Used to inform the lexer as to whether it's starting at the beginning of
160f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  /// a line after skipping the preamble.
161f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  bool PreambleEndsAtStartOfLine;
162f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor
163175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  /// \brief The size of the source buffer that we've reserved for the main
164175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  /// file within the precompiled preamble.
165175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor  unsigned PreambleReservedSize;
166cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor
167cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  /// \brief Keeps track of the files that were used when computing the
168cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  /// preamble, with both their buffer size and their modification time.
169cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  ///
170cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  /// If any of the files have changed from one compile to the next,
171cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  /// the preamble must be thrown away.
172cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  llvm::StringMap<std::pair<off_t, time_t> > FilesInPreamble;
173cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor
17428233428da1ebec20c893d6297ae3191318940ddDouglas Gregor  /// \brief When non-NULL, this is the buffer used to store the contents of
17528233428da1ebec20c893d6297ae3191318940ddDouglas Gregor  /// the main file when it has been padded for use with the precompiled
17628233428da1ebec20c893d6297ae3191318940ddDouglas Gregor  /// preamble.
17728233428da1ebec20c893d6297ae3191318940ddDouglas Gregor  llvm::MemoryBuffer *SavedMainFileBuffer;
178c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor
179c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// \brief The number of warnings that occurred while parsing the preamble.
180c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  ///
181c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// This value will be used to restore the state of the \c Diagnostic object
182c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// when re-using the precompiled preamble. Note that only the
183c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// number of warnings matters, since we will not save the preamble
184c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// when any errors are present.
185c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  unsigned NumWarningsInPreamble;
186c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor
187c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// \brief The number of diagnostics that were stored when parsing
188c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// the precompiled preamble.
189c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  ///
190c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// This value is used to determine how many of the stored
191c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// diagnostics should be retained when reparsing in the presence of
192c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  /// a precompiled preamble.
193c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor  unsigned NumStoredDiagnosticsInPreamble;
194c0659ec614c428c7d15746fcad15d50a2703751dDouglas Gregor
195385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor  /// \brief The group of timers associated with this translation unit.
196cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor  llvm::OwningPtr<llvm::TimerGroup> TimerGroup;
197eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
198eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// \brief A list of the PCH ID numbers for each of the top-level
199eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// declarations parsed within the precompiled preamble.
200eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  std::vector<pch::DeclID> TopLevelDeclsInPreamble;
201eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
20287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  ///
20387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \defgroup CodeCompleteCaching Code-completion caching
20487c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  ///
20587c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \{
20687c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  ///
20787c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
20887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \brief Whether we should be caching code-completion results.
20987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  bool ShouldCacheCodeCompletionResults;
21087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
21187c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregorpublic:
21287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \brief A cached code-completion result, which may be introduced in one of
21387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// many different contexts.
21487c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  struct CachedCodeCompletionResult {
21587c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// \brief The code-completion string corresponding to this completion
21687c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// result.
21787c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    CodeCompletionString *Completion;
21887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
21987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// \brief A bitmask that indicates which code-completion contexts should
22087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// contain this completion result.
22187c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    ///
22287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// The bits in the bitmask correspond to the values of
22387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// CodeCompleteContext::Kind. To map from a completion context kind to a
22487c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// bit, subtract one from the completion context kind and shift 1 by that
22587c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// number of bits. Many completions can occur in several different
22687c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// contexts.
22787c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    unsigned ShowInContexts;
22887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
22987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// \brief The priority given to this code-completion result.
23087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    unsigned Priority;
23187c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
23287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// \brief The libclang cursor kind corresponding to this code-completion
23387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    /// result.
23487c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    CXCursorKind Kind;
2351827e10051638770ad9ccf3e285caf95f995afd1Douglas Gregor
2361827e10051638770ad9ccf3e285caf95f995afd1Douglas Gregor    /// \brief The simplified type class for a non-macro completion result.
2371827e10051638770ad9ccf3e285caf95f995afd1Douglas Gregor    SimplifiedTypeClass TypeClass;
23887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  };
23987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
24087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregorprivate:
24187c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \brief The set of cached code-completion results.
24287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  std::vector<CachedCodeCompletionResult> CachedCompletionResults;
24387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
244c4421e966d77a18f815284175b3fcbb46f36fa39Douglas Gregor  /// \brief Cache any "global" code-completion results, so that we can avoid
245c4421e966d77a18f815284175b3fcbb46f36fa39Douglas Gregor  /// recomputing them with each completion.
24687c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  void CacheCodeCompletionResults();
24787c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
24887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \brief Clear out and deallocate
24987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  void ClearCachedCompletionResults();
25087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
25187c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  ///
25287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  /// \}
25387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  ///
25487c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
255385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor  /// \brief The timers we've created from the various parses, reparses, etc.
256385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor  /// involved in this translation unit.
257385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor  std::vector<llvm::Timer *> Timers;
258385103b79c5338a2be5da0ca70652400bc267371Douglas Gregor
25931b87d8006d4863dd9b17e515ac720941efc38e3Daniel Dunbar  ASTUnit(const ASTUnit&); // DO NOT IMPLEMENT
26031b87d8006d4863dd9b17e515ac720941efc38e3Daniel Dunbar  ASTUnit &operator=(const ASTUnit &); // DO NOT IMPLEMENT
261bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor
2623687e9d3a5dbfa9963af02a49a2b139d91310813Douglas Gregor  explicit ASTUnit(bool MainFileIsAST);
2638b96253907c47141af0b7b2a44a368748d006a87Douglas Gregor
264abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  void CleanTemporaryFiles();
265754f3490c5b0f5d83361f001bc87944f23644abbDouglas Gregor  bool Parse(llvm::MemoryBuffer *OverrideMainBuffer);
266175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor
267f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
268df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  ComputePreamble(CompilerInvocation &Invocation,
269df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor                  unsigned MaxLines, bool &CreatedBuffer);
270175c4a9aa61f4449f27b729737e4438684ac6d92Douglas Gregor
271df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  llvm::MemoryBuffer *getMainBufferWithPrecompiledPreamble(
272df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor                                                     bool AllowRebuild = true,
273df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor                                                        unsigned MaxLines = 0);
274eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  void RealizeTopLevelDeclsFromPreamble();
275eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
2760853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidispublic:
277bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  class ConcurrencyCheck {
278bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor    volatile ASTUnit &Self;
279bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor
280bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  public:
281bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor    explicit ConcurrencyCheck(ASTUnit &Self)
282bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor      : Self(Self)
283bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor    {
284bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor      assert(Self.ConcurrencyCheckValue == CheckUnlocked &&
285bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor             "Concurrent access to ASTUnit!");
286bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor      Self.ConcurrencyCheckValue = CheckLocked;
287bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor    }
288bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor
289bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor    ~ConcurrencyCheck() {
290bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor      Self.ConcurrencyCheckValue = CheckUnlocked;
291bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor    }
292bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  };
293bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor  friend class ConcurrencyCheck;
294bdf6062bc10aa3b73b16402b440b8073310acd06Douglas Gregor
2950853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  ~ASTUnit();
2960853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
297c7822dbf3c01a2a5f837cff82ba7889ea755dacaDaniel Dunbar  bool isMainFileAST() const { return MainFileIsAST; }
298c7822dbf3c01a2a5f837cff82ba7889ea755dacaDaniel Dunbar
2993687e9d3a5dbfa9963af02a49a2b139d91310813Douglas Gregor  const Diagnostic &getDiagnostics() const { return *Diagnostics; }
3003687e9d3a5dbfa9963af02a49a2b139d91310813Douglas Gregor  Diagnostic &getDiagnostics()             { return *Diagnostics; }
3013687e9d3a5dbfa9963af02a49a2b139d91310813Douglas Gregor
302405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  const SourceManager &getSourceManager() const { return *SourceMgr; }
303405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor        SourceManager &getSourceManager()       { return *SourceMgr; }
3040853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
3050853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  const Preprocessor &getPreprocessor() const { return *PP.get(); }
3060853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis        Preprocessor &getPreprocessor()       { return *PP.get(); }
3071eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3080853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  const ASTContext &getASTContext() const { return *Ctx.get(); }
3090853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis        ASTContext &getASTContext()       { return *Ctx.get(); }
3100853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
311914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  bool hasSema() const { return TheSema; }
312914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  Sema &getSema() const {
313914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor    assert(TheSema && "ASTUnit does not have a Sema object!");
314914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor    return *TheSema;
315914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor  }
316914ed9d30e9abf829a62aa996b083b1e47c19ff6Douglas Gregor
317405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  const FileManager &getFileManager() const { return *FileMgr; }
318405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor        FileManager &getFileManager()       { return *FileMgr; }
319f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar
32077accc11f04ed4ff9afd4e27d430144d4714be56Steve Naroff  const std::string &getOriginalSourceFileName();
321e19944c93961b7618f4f3f3185f698f46369ea54Steve Naroff  const std::string &getPCHFileName();
322b85bca2676b433ae555db09de4dd2823ff13b856Zhongxing Xu
323313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  /// \brief Add a temporary file that the ASTUnit depends on.
324313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  ///
325313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  /// This file will be erased when the ASTUnit is destroyed.
326313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  void addTemporaryFile(const llvm::sys::Path &TempFile) {
327313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor    TemporaryFiles.push_back(TempFile);
328313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor  }
329313e26c4e81f0e467490a530548450f4c824a6c4Douglas Gregor
3307d1d49d2971b20a97b3c2a301470b9eaaa130137Douglas Gregor  bool getOnlyLocalDecls() const { return OnlyLocalDecls; }
331f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar
332eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// \brief Retrieve the maximum PCH level of declarations that a
333eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// traversal of the translation unit should consider.
334eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  unsigned getMaxPCHLevel() const;
335eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
336f96b524306ccfa623235d375deee79637bd38f29Steve Naroff  void setLastASTLocation(ASTLocation ALoc) { LastLoc = ALoc; }
337f96b524306ccfa623235d375deee79637bd38f29Steve Naroff  ASTLocation getLastASTLocation() const { return LastLoc; }
338f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar
339eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  typedef std::vector<Decl *>::iterator top_level_iterator;
340eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
341eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  top_level_iterator top_level_begin() {
342f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
343eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    if (!TopLevelDeclsInPreamble.empty())
344eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor      RealizeTopLevelDeclsFromPreamble();
345eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    return TopLevelDecls.begin();
346f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  }
347eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
348eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  top_level_iterator top_level_end() {
349f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
350eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    if (!TopLevelDeclsInPreamble.empty())
351eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor      RealizeTopLevelDeclsFromPreamble();
352eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    return TopLevelDecls.end();
353eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  }
354eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
355eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  std::size_t top_level_size() const {
356eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
357eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    return TopLevelDeclsInPreamble.size() + TopLevelDecls.size();
358eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  }
359eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
360eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  bool top_level_empty() const {
361eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!");
362eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    return TopLevelDeclsInPreamble.empty() && TopLevelDecls.empty();
363eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  }
364eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
365eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// \brief Add a new top-level declaration.
366eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  void addTopLevelDecl(Decl *D) {
367eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    TopLevelDecls.push_back(D);
368eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  }
369eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor
370eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// \brief Add a new top-level declaration, identified by its ID in
371eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  /// the precompiled preamble.
372eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor  void addTopLevelDeclFromPreamble(pch::DeclID D) {
373eb8837b88c18631c69ac75f64ab1853762063180Douglas Gregor    TopLevelDeclsInPreamble.push_back(D);
374f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar  }
375f772d1e2a5688572d07f42896a50ac57a4a41fe8Daniel Dunbar
376788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// \brief Retrieve the mapping from File IDs to the preprocessed entities
377788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  /// within that file.
378788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  PreprocessedEntitiesByFileMap &getPreprocessedEntitiesByFile() {
379788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor    return PreprocessedEntitiesByFile;
380788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor  }
381788f5a1242c04762f91eaa7565c07b9865846d88Douglas Gregor
382a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  // Retrieve the diagnostics associated with this AST
383405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  typedef const StoredDiagnostic *stored_diag_iterator;
384405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  stored_diag_iterator stored_diag_begin() const {
385405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor    return StoredDiagnostics.begin();
386405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  }
387405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  stored_diag_iterator stored_diag_end() const {
388405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor    return StoredDiagnostics.end();
389405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  }
390405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  unsigned stored_diag_size() const { return StoredDiagnostics.size(); }
391405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor
392405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor  llvm::SmallVector<StoredDiagnostic, 4> &getStoredDiagnostics() {
393405634b215f19eec7183bd8005e34aa5a02f64a1Douglas Gregor    return StoredDiagnostics;
394a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor  }
395a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor
39687c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  typedef std::vector<CachedCodeCompletionResult>::iterator
39787c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    cached_completion_iterator;
39887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
39987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  cached_completion_iterator cached_completion_begin() {
40087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    return CachedCompletionResults.begin();
40187c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  }
40287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
40387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  cached_completion_iterator cached_completion_end() {
40487c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    return CachedCompletionResults.end();
40587c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  }
40687c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
40787c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  unsigned cached_completion_size() const {
40887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor    return CachedCompletionResults.size();
40987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor  }
41087c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor
411df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  /// \brief Whether this AST represents a complete translation unit.
412df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  ///
413df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  /// If false, this AST is only a partial translation unit, e.g., one
414df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  /// that might still be used as a precompiled header or preamble.
415df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor  bool isCompleteTranslationUnit() const { return CompleteTranslationUnit; }
416df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor
4174db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor  /// \brief A mapping from a file name to the memory buffer that stores the
4184db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor  /// remapped contents of that file.
4194db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor  typedef std::pair<std::string, const llvm::MemoryBuffer *> RemappedFile;
4204db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor
4210853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  /// \brief Create a ASTUnit from a PCH file.
4220853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  ///
42331b87d8006d4863dd9b17e515ac720941efc38e3Daniel Dunbar  /// \param Filename - The PCH file to load.
4240853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  ///
4255262fda30b876c8aae95f2eb92e349418d6b14bbDaniel Dunbar  /// \param Diags - The diagnostics engine to use for reporting errors; its
4265262fda30b876c8aae95f2eb92e349418d6b14bbDaniel Dunbar  /// lifetime is expected to extend past that of the returned ASTUnit.
42731b87d8006d4863dd9b17e515ac720941efc38e3Daniel Dunbar  ///
42831b87d8006d4863dd9b17e515ac720941efc38e3Daniel Dunbar  /// \returns - The initialized ASTUnit or null if the PCH failed to load.
4290853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis  static ASTUnit *LoadFromPCHFile(const std::string &Filename,
43028019772db70d4547be05a042eb950bc910f134fDouglas Gregor                                  llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
4315cf48766d626ff6b223acc9d4b7e415ca8480836Ted Kremenek                                  bool OnlyLocalDecls = false,
4324db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor                                  RemappedFile *RemappedFiles = 0,
433a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor                                  unsigned NumRemappedFiles = 0,
434a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor                                  bool CaptureDiagnostics = false);
435521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar
436521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  /// LoadFromCompilerInvocation - Create an ASTUnit from a source file, via a
437521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  /// CompilerInvocation object.
438521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  ///
439521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  /// \param CI - The compiler invocation to use; it must have exactly one input
440f7acc37450d59ef751df73acb91de73850cc6517Daniel Dunbar  /// source file. The ASTUnit takes ownership of the CompilerInvocation object.
441521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  ///
4425262fda30b876c8aae95f2eb92e349418d6b14bbDaniel Dunbar  /// \param Diags - The diagnostics engine to use for reporting errors; its
4435262fda30b876c8aae95f2eb92e349418d6b14bbDaniel Dunbar  /// lifetime is expected to extend past that of the returned ASTUnit.
444521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  //
445521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  // FIXME: Move OnlyLocalDecls, UseBumpAllocator to setters on the ASTUnit, we
446521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar  // shouldn't need to specify them at construction time.
447f7acc37450d59ef751df73acb91de73850cc6517Daniel Dunbar  static ASTUnit *LoadFromCompilerInvocation(CompilerInvocation *CI,
44828019772db70d4547be05a042eb950bc910f134fDouglas Gregor                                     llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
449a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor                                             bool OnlyLocalDecls = false,
45044c181aec37789f25f6c15543c164416f72e562aDouglas Gregor                                             bool CaptureDiagnostics = false,
451df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor                                             bool PrecompilePreamble = false,
45287c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor                                          bool CompleteTranslationUnit = true,
45387c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor                                       bool CacheCodeCompletionResults = false);
454521bf9c529e653ab28896d027352d3e16e2672d5Daniel Dunbar
4557b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  /// LoadFromCommandLine - Create an ASTUnit from a vector of command line
4567b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  /// arguments, which must specify exactly one source file.
4577b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  ///
4587b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  /// \param ArgBegin - The beginning of the argument vector.
4597b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  ///
4607b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  /// \param ArgEnd - The end of the argument vector.
4617b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  ///
4625262fda30b876c8aae95f2eb92e349418d6b14bbDaniel Dunbar  /// \param Diags - The diagnostics engine to use for reporting errors; its
4635262fda30b876c8aae95f2eb92e349418d6b14bbDaniel Dunbar  /// lifetime is expected to extend past that of the returned ASTUnit.
4647b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  ///
465869824e87940f97b87064db2df2861e82e08a8c6Daniel Dunbar  /// \param ResourceFilesPath - The path to the compiler resource files.
4667b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  //
4677b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  // FIXME: Move OnlyLocalDecls, UseBumpAllocator to setters on the ASTUnit, we
4687b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  // shouldn't need to specify them at construction time.
4697b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar  static ASTUnit *LoadFromCommandLine(const char **ArgBegin,
4707b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar                                      const char **ArgEnd,
47128019772db70d4547be05a042eb950bc910f134fDouglas Gregor                                    llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
472869824e87940f97b87064db2df2861e82e08a8c6Daniel Dunbar                                      llvm::StringRef ResourceFilesPath,
4737b55668db7618334cc40011d3c1e128524d89462Daniel Dunbar                                      bool OnlyLocalDecls = false,
4744db64a461cb3442934afe43c83ed3f17f7c11c1dDouglas Gregor                                      RemappedFile *RemappedFiles = 0,
475a88084b78fd4ca5d3d858c14b02414f8cc399f02Douglas Gregor                                      unsigned NumRemappedFiles = 0,
47644c181aec37789f25f6c15543c164416f72e562aDouglas Gregor                                      bool CaptureDiagnostics = false,
477df95a13ec73d2cdaea79555cb412d767f4963120Douglas Gregor                                      bool PrecompilePreamble = false,
47887c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor                                      bool CompleteTranslationUnit = true,
47987c08a5d6b9e1e44ae6f554df40139d3a6f60b33Douglas Gregor                                      bool CacheCodeCompletionResults = false);
480abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor
481abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// \brief Reparse the source files using the same command-line options that
482abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// were originally used to produce this translation unit.
483abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  ///
484abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// \returns True if a failure occurred that causes the ASTUnit not to
485abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  /// contain any translation-unit information, false otherwise.
486abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor  bool Reparse(RemappedFile *RemappedFiles = 0,
487abc563f554951259bbe0315055cad92ee14d87e4Douglas Gregor               unsigned NumRemappedFiles = 0);
4881abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor
4891abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  /// \brief Perform code completion at the given file, line, and
4901abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  /// column within this translation unit.
4911abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  ///
492cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// \param File The file in which code completion will occur.
493cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  ///
494cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// \param Line The line at which code completion will occur.
495cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  ///
496cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// \param Column The column at which code completion will occur.
497cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  ///
498cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// \param IncludeMacros Whether to include macros in the code-completion
499cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// results.
500cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  ///
501cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// \param IncludeCodePatterns Whether to include code patterns (such as a
502cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor  /// for loop) in the code-completion results.
5031abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  ///
5041abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  /// FIXME: The Diag, LangOpts, SourceMgr, FileMgr, and
5051abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  /// StoredDiagnostics parameters are all disgusting hacks. They will
5061abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  /// go away.
5071abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor  void CodeComplete(llvm::StringRef File, unsigned Line, unsigned Column,
5081abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor                    RemappedFile *RemappedFiles, unsigned NumRemappedFiles,
509cee235cdf0b8047761ffac598c4c3a32ab7411a2Douglas Gregor                    bool IncludeMacros, bool IncludeCodePatterns,
5101abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor                    CodeCompleteConsumer &Consumer,
5111abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor                    Diagnostic &Diag, LangOptions &LangOpts,
5121abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor                    SourceManager &SourceMgr, FileManager &FileMgr,
5131abc6bca3d7fb0e7b1e40fbcad6cfb5e10594548Douglas Gregor                    llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics);
5147ae2faafd30524ef5f863bb3b8701977888839bbDouglas Gregor
5157ae2faafd30524ef5f863bb3b8701977888839bbDouglas Gregor  /// \brief Save this translation unit to a file with the given name.
5167ae2faafd30524ef5f863bb3b8701977888839bbDouglas Gregor  ///
5177ae2faafd30524ef5f863bb3b8701977888839bbDouglas Gregor  /// \returns True if an error occurred, false otherwise.
5187ae2faafd30524ef5f863bb3b8701977888839bbDouglas Gregor  bool Save(llvm::StringRef File);
5190853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis};
5200853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
5210853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis} // namespace clang
5220853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis
5230853a02c3b04d96a3c432b883e403175c954cd81Argyrios Kyrtzidis#endif
524