blob: 9ae38b134aeb35fb726bf6df12b71a86fb6207ca [file] [log] [blame]
Argyrios Kyrtzidis4b562cf2009-06-20 08:27:14 +00001//===--- ASTUnit.cpp - ASTUnit utility ------------------------------------===//
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 Implementation.
11//
12//===----------------------------------------------------------------------===//
13
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000014#include "clang/Frontend/ASTUnit.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000015#include "clang/AST/ASTContext.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000016#include "clang/AST/ASTConsumer.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000017#include "clang/AST/DeclVisitor.h"
Douglas Gregorf5586f62010-08-16 18:08:11 +000018#include "clang/AST/TypeOrdering.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000019#include "clang/AST/StmtVisitor.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000020#include "clang/Driver/Compilation.h"
21#include "clang/Driver/Driver.h"
22#include "clang/Driver/Job.h"
23#include "clang/Driver/Tool.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000024#include "clang/Frontend/CompilerInstance.h"
25#include "clang/Frontend/FrontendActions.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000026#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000027#include "clang/Frontend/FrontendOptions.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000028#include "clang/Serialization/ASTReader.h"
Sebastian Redl7faa2ec2010-08-18 23:56:37 +000029#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000030#include "clang/Lex/HeaderSearch.h"
31#include "clang/Lex/Preprocessor.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000032#include "clang/Basic/TargetOptions.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000033#include "clang/Basic/TargetInfo.h"
34#include "clang/Basic/Diagnostic.h"
Douglas Gregor349d38c2010-08-16 23:08:34 +000035#include "llvm/ADT/StringSet.h"
Douglas Gregor4db64a42010-01-23 00:14:00 +000036#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000037#include "llvm/System/Host.h"
Benjamin Kramer4a630d32009-10-18 11:34:14 +000038#include "llvm/System/Path.h"
Douglas Gregordf95a132010-08-09 20:45:32 +000039#include "llvm/Support/raw_ostream.h"
Douglas Gregor385103b2010-07-30 20:58:08 +000040#include "llvm/Support/Timer.h"
Douglas Gregor44c181a2010-07-23 00:33:23 +000041#include <cstdlib>
Zhongxing Xuad23ebe2010-07-23 02:15:08 +000042#include <cstdio>
Douglas Gregorcc5888d2010-07-31 00:40:00 +000043#include <sys/stat.h>
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000044using namespace clang;
45
Douglas Gregoreababfb2010-08-04 05:53:38 +000046/// \brief After failing to build a precompiled preamble (due to
47/// errors in the source that occurs in the preamble), the number of
48/// reparses during which we'll skip even trying to precompile the
49/// preamble.
50const unsigned DefaultPreambleRebuildInterval = 5;
51
Douglas Gregor3687e9d2010-04-05 21:10:19 +000052ASTUnit::ASTUnit(bool _MainFileIsAST)
Douglas Gregorabc563f2010-07-19 21:46:24 +000053 : CaptureDiagnostics(false), MainFileIsAST(_MainFileIsAST),
Douglas Gregordf95a132010-08-09 20:45:32 +000054 CompleteTranslationUnit(true), ConcurrencyCheckValue(CheckUnlocked),
Douglas Gregor671947b2010-08-19 01:33:06 +000055 PreambleRebuildCounter(0), SavedMainFileBuffer(0), PreambleBuffer(0),
Douglas Gregor727d93e2010-08-17 00:40:40 +000056 ShouldCacheCodeCompletionResults(false),
57 NumTopLevelDeclsAtLastCompletionCache(0),
Douglas Gregor8b1540c2010-08-19 00:45:44 +000058 CacheCodeCompletionCoolDown(0),
59 UnsafeToFree(false) {
Douglas Gregor385103b2010-07-30 20:58:08 +000060}
Douglas Gregor3687e9d2010-04-05 21:10:19 +000061
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000062ASTUnit::~ASTUnit() {
Douglas Gregorbdf60622010-03-05 21:16:25 +000063 ConcurrencyCheckValue = CheckLocked;
Douglas Gregorabc563f2010-07-19 21:46:24 +000064 CleanTemporaryFiles();
Douglas Gregor175c4a92010-07-23 23:58:40 +000065 if (!PreambleFile.empty())
Douglas Gregor385103b2010-07-30 20:58:08 +000066 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000067
68 // Free the buffers associated with remapped files. We are required to
69 // perform this operation here because we explicitly request that the
70 // compiler instance *not* free these buffers for each invocation of the
71 // parser.
72 if (Invocation.get()) {
73 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
74 for (PreprocessorOptions::remapped_file_buffer_iterator
75 FB = PPOpts.remapped_file_buffer_begin(),
76 FBEnd = PPOpts.remapped_file_buffer_end();
77 FB != FBEnd;
78 ++FB)
79 delete FB->second;
80 }
Douglas Gregor28233422010-07-27 14:52:07 +000081
82 delete SavedMainFileBuffer;
Douglas Gregor671947b2010-08-19 01:33:06 +000083 delete PreambleBuffer;
84
Douglas Gregor87c08a52010-08-13 22:48:40 +000085 ClearCachedCompletionResults();
86
Douglas Gregor8c8d5412010-09-24 21:18:36 +000087 if (TimerGroup)
88 TimerGroup->printAll(llvm::errs());
89
Douglas Gregor385103b2010-07-30 20:58:08 +000090 for (unsigned I = 0, N = Timers.size(); I != N; ++I)
91 delete Timers[I];
Douglas Gregorabc563f2010-07-19 21:46:24 +000092}
93
94void ASTUnit::CleanTemporaryFiles() {
Douglas Gregor313e26c2010-02-18 23:35:40 +000095 for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I)
96 TemporaryFiles[I].eraseFromDisk();
Douglas Gregorabc563f2010-07-19 21:46:24 +000097 TemporaryFiles.clear();
Steve Naroffe19944c2009-10-15 22:23:48 +000098}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000099
Douglas Gregor8071e422010-08-15 06:18:01 +0000100/// \brief Determine the set of code-completion contexts in which this
101/// declaration should be shown.
102static unsigned getDeclShowContexts(NamedDecl *ND,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000103 const LangOptions &LangOpts,
104 bool &IsNestedNameSpecifier) {
105 IsNestedNameSpecifier = false;
106
Douglas Gregor8071e422010-08-15 06:18:01 +0000107 if (isa<UsingShadowDecl>(ND))
108 ND = dyn_cast<NamedDecl>(ND->getUnderlyingDecl());
109 if (!ND)
110 return 0;
111
112 unsigned Contexts = 0;
113 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND) ||
114 isa<ClassTemplateDecl>(ND) || isa<TemplateTemplateParmDecl>(ND)) {
115 // Types can appear in these contexts.
116 if (LangOpts.CPlusPlus || !isa<TagDecl>(ND))
117 Contexts |= (1 << (CodeCompletionContext::CCC_TopLevel - 1))
118 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
119 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
120 | (1 << (CodeCompletionContext::CCC_Statement - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000121 | (1 << (CodeCompletionContext::CCC_Type - 1))
122 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000123
124 // In C++, types can appear in expressions contexts (for functional casts).
125 if (LangOpts.CPlusPlus)
126 Contexts |= (1 << (CodeCompletionContext::CCC_Expression - 1));
127
128 // In Objective-C, message sends can send interfaces. In Objective-C++,
129 // all types are available due to functional casts.
130 if (LangOpts.CPlusPlus || isa<ObjCInterfaceDecl>(ND))
131 Contexts |= (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
132
133 // Deal with tag names.
134 if (isa<EnumDecl>(ND)) {
135 Contexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1));
136
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000137 // Part of the nested-name-specifier in C++0x.
Douglas Gregor8071e422010-08-15 06:18:01 +0000138 if (LangOpts.CPlusPlus0x)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000139 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000140 } else if (RecordDecl *Record = dyn_cast<RecordDecl>(ND)) {
141 if (Record->isUnion())
142 Contexts |= (1 << (CodeCompletionContext::CCC_UnionTag - 1));
143 else
144 Contexts |= (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
145
Douglas Gregor8071e422010-08-15 06:18:01 +0000146 if (LangOpts.CPlusPlus)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000147 IsNestedNameSpecifier = true;
Douglas Gregor52779fb2010-09-23 23:01:17 +0000148 } else if (isa<ClassTemplateDecl>(ND))
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000149 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000150 } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
151 // Values can appear in these contexts.
152 Contexts = (1 << (CodeCompletionContext::CCC_Statement - 1))
153 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000154 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
Douglas Gregor8071e422010-08-15 06:18:01 +0000155 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
156 } else if (isa<ObjCProtocolDecl>(ND)) {
157 Contexts = (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1));
158 } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000159 Contexts = (1 << (CodeCompletionContext::CCC_Namespace - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000160
161 // Part of the nested-name-specifier.
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000162 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000163 }
164
165 return Contexts;
166}
167
Douglas Gregor87c08a52010-08-13 22:48:40 +0000168void ASTUnit::CacheCodeCompletionResults() {
169 if (!TheSema)
170 return;
171
172 llvm::Timer *CachingTimer = 0;
173 if (TimerGroup.get()) {
174 CachingTimer = new llvm::Timer("Cache global code completions",
175 *TimerGroup);
176 CachingTimer->startTimer();
177 Timers.push_back(CachingTimer);
178 }
179
180 // Clear out the previous results.
181 ClearCachedCompletionResults();
182
183 // Gather the set of global code completions.
John McCall0a2c5e22010-08-25 06:19:51 +0000184 typedef CodeCompletionResult Result;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000185 llvm::SmallVector<Result, 8> Results;
186 TheSema->GatherGlobalCodeCompletions(Results);
187
188 // Translate global code completions into cached completions.
Douglas Gregorf5586f62010-08-16 18:08:11 +0000189 llvm::DenseMap<CanQualType, unsigned> CompletionTypes;
190
Douglas Gregor87c08a52010-08-13 22:48:40 +0000191 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
192 switch (Results[I].Kind) {
Douglas Gregor8071e422010-08-15 06:18:01 +0000193 case Result::RK_Declaration: {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000194 bool IsNestedNameSpecifier = false;
Douglas Gregor8071e422010-08-15 06:18:01 +0000195 CachedCodeCompletionResult CachedResult;
196 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema);
197 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000198 Ctx->getLangOptions(),
199 IsNestedNameSpecifier);
Douglas Gregor8071e422010-08-15 06:18:01 +0000200 CachedResult.Priority = Results[I].Priority;
201 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000202 CachedResult.Availability = Results[I].Availability;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000203
Douglas Gregorf5586f62010-08-16 18:08:11 +0000204 // Keep track of the type of this completion in an ASTContext-agnostic
205 // way.
Douglas Gregorc4421e92010-08-16 16:46:30 +0000206 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
Douglas Gregorf5586f62010-08-16 18:08:11 +0000207 if (UsageType.isNull()) {
Douglas Gregorc4421e92010-08-16 16:46:30 +0000208 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000209 CachedResult.Type = 0;
210 } else {
211 CanQualType CanUsageType
212 = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
213 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
214
215 // Determine whether we have already seen this type. If so, we save
216 // ourselves the work of formatting the type string by using the
217 // temporary, CanQualType-based hash table to find the associated value.
218 unsigned &TypeValue = CompletionTypes[CanUsageType];
219 if (TypeValue == 0) {
220 TypeValue = CompletionTypes.size();
221 CachedCompletionTypes[QualType(CanUsageType).getAsString()]
222 = TypeValue;
223 }
224
225 CachedResult.Type = TypeValue;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000226 }
Douglas Gregorf5586f62010-08-16 18:08:11 +0000227
Douglas Gregor8071e422010-08-15 06:18:01 +0000228 CachedCompletionResults.push_back(CachedResult);
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000229
230 /// Handle nested-name-specifiers in C++.
231 if (TheSema->Context.getLangOptions().CPlusPlus &&
232 IsNestedNameSpecifier && !Results[I].StartsNestedNameSpecifier) {
233 // The contexts in which a nested-name-specifier can appear in C++.
234 unsigned NNSContexts
235 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
236 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
237 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
238 | (1 << (CodeCompletionContext::CCC_Statement - 1))
239 | (1 << (CodeCompletionContext::CCC_Expression - 1))
240 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
241 | (1 << (CodeCompletionContext::CCC_EnumTag - 1))
242 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
243 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1))
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000244 | (1 << (CodeCompletionContext::CCC_Type - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000245 | (1 << (CodeCompletionContext::CCC_PotentiallyQualifiedName - 1))
246 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000247
248 if (isa<NamespaceDecl>(Results[I].Declaration) ||
249 isa<NamespaceAliasDecl>(Results[I].Declaration))
250 NNSContexts |= (1 << (CodeCompletionContext::CCC_Namespace - 1));
251
252 if (unsigned RemainingContexts
253 = NNSContexts & ~CachedResult.ShowInContexts) {
254 // If there any contexts where this completion can be a
255 // nested-name-specifier but isn't already an option, create a
256 // nested-name-specifier completion.
257 Results[I].StartsNestedNameSpecifier = true;
258 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema);
259 CachedResult.ShowInContexts = RemainingContexts;
260 CachedResult.Priority = CCP_NestedNameSpecifier;
261 CachedResult.TypeClass = STC_Void;
262 CachedResult.Type = 0;
263 CachedCompletionResults.push_back(CachedResult);
264 }
265 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000266 break;
Douglas Gregor8071e422010-08-15 06:18:01 +0000267 }
268
Douglas Gregor87c08a52010-08-13 22:48:40 +0000269 case Result::RK_Keyword:
270 case Result::RK_Pattern:
271 // Ignore keywords and patterns; we don't care, since they are so
272 // easily regenerated.
273 break;
274
275 case Result::RK_Macro: {
276 CachedCodeCompletionResult CachedResult;
277 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema);
278 CachedResult.ShowInContexts
279 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
280 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
281 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
282 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
283 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
284 | (1 << (CodeCompletionContext::CCC_Statement - 1))
285 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000286 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
Douglas Gregorf29c5232010-08-24 22:20:20 +0000287 | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000288 | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1))
289 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
290
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000291
Douglas Gregor87c08a52010-08-13 22:48:40 +0000292 CachedResult.Priority = Results[I].Priority;
293 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000294 CachedResult.Availability = Results[I].Availability;
Douglas Gregor1827e102010-08-16 16:18:59 +0000295 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000296 CachedResult.Type = 0;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000297 CachedCompletionResults.push_back(CachedResult);
298 break;
299 }
300 }
301 Results[I].Destroy();
302 }
303
304 if (CachingTimer)
305 CachingTimer->stopTimer();
Douglas Gregor727d93e2010-08-17 00:40:40 +0000306
307 // Make a note of the state when we performed this caching.
308 NumTopLevelDeclsAtLastCompletionCache = top_level_size();
309 CacheCodeCompletionCoolDown = 15;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000310}
311
312void ASTUnit::ClearCachedCompletionResults() {
313 for (unsigned I = 0, N = CachedCompletionResults.size(); I != N; ++I)
314 delete CachedCompletionResults[I].Completion;
315 CachedCompletionResults.clear();
Douglas Gregorf5586f62010-08-16 18:08:11 +0000316 CachedCompletionTypes.clear();
Douglas Gregor87c08a52010-08-13 22:48:40 +0000317}
318
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000319namespace {
320
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000321/// \brief Gathers information from ASTReader that will be used to initialize
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000322/// a Preprocessor.
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000323class ASTInfoCollector : public ASTReaderListener {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000324 LangOptions &LangOpt;
325 HeaderSearch &HSI;
326 std::string &TargetTriple;
327 std::string &Predefines;
328 unsigned &Counter;
Mike Stump1eb44332009-09-09 15:08:12 +0000329
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000330 unsigned NumHeaderInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000331
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000332public:
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000333 ASTInfoCollector(LangOptions &LangOpt, HeaderSearch &HSI,
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000334 std::string &TargetTriple, std::string &Predefines,
335 unsigned &Counter)
336 : LangOpt(LangOpt), HSI(HSI), TargetTriple(TargetTriple),
337 Predefines(Predefines), Counter(Counter), NumHeaderInfos(0) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000339 virtual bool ReadLanguageOptions(const LangOptions &LangOpts) {
340 LangOpt = LangOpts;
341 return false;
342 }
Mike Stump1eb44332009-09-09 15:08:12 +0000343
Daniel Dunbardc3c0d22009-11-11 00:52:11 +0000344 virtual bool ReadTargetTriple(llvm::StringRef Triple) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000345 TargetTriple = Triple;
346 return false;
347 }
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000349 virtual bool ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000350 llvm::StringRef OriginalFileName,
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000351 std::string &SuggestedPredefines) {
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000352 Predefines = Buffers[0].Data;
353 for (unsigned I = 1, N = Buffers.size(); I != N; ++I) {
354 Predefines += Buffers[I].Data;
355 }
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000356 return false;
357 }
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Douglas Gregorec1afbf2010-03-16 19:09:18 +0000359 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000360 HSI.setHeaderFileInfoForUID(HFI, NumHeaderInfos++);
361 }
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000363 virtual void ReadCounter(unsigned Value) {
364 Counter = Value;
365 }
366};
367
Douglas Gregora88084b2010-02-18 18:08:43 +0000368class StoredDiagnosticClient : public DiagnosticClient {
369 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags;
370
371public:
372 explicit StoredDiagnosticClient(
373 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
374 : StoredDiags(StoredDiags) { }
375
376 virtual void HandleDiagnostic(Diagnostic::Level Level,
377 const DiagnosticInfo &Info);
378};
379
380/// \brief RAII object that optionally captures diagnostics, if
381/// there is no diagnostic client to capture them already.
382class CaptureDroppedDiagnostics {
383 Diagnostic &Diags;
384 StoredDiagnosticClient Client;
385 DiagnosticClient *PreviousClient;
386
387public:
388 CaptureDroppedDiagnostics(bool RequestCapture, Diagnostic &Diags,
389 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000390 : Diags(Diags), Client(StoredDiags), PreviousClient(0)
Douglas Gregora88084b2010-02-18 18:08:43 +0000391 {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000392 if (RequestCapture || Diags.getClient() == 0) {
393 PreviousClient = Diags.takeClient();
Douglas Gregora88084b2010-02-18 18:08:43 +0000394 Diags.setClient(&Client);
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000395 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000396 }
397
398 ~CaptureDroppedDiagnostics() {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000399 if (Diags.getClient() == &Client) {
400 Diags.takeClient();
401 Diags.setClient(PreviousClient);
402 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000403 }
404};
405
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000406} // anonymous namespace
407
Douglas Gregora88084b2010-02-18 18:08:43 +0000408void StoredDiagnosticClient::HandleDiagnostic(Diagnostic::Level Level,
409 const DiagnosticInfo &Info) {
410 StoredDiags.push_back(StoredDiagnostic(Level, Info));
411}
412
Steve Naroff77accc12009-09-03 18:19:54 +0000413const std::string &ASTUnit::getOriginalSourceFileName() {
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000414 return OriginalSourceFile;
Steve Naroff77accc12009-09-03 18:19:54 +0000415}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000416
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000417const std::string &ASTUnit::getASTFileName() {
418 assert(isMainFileAST() && "Not an ASTUnit from an AST file!");
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000419 return static_cast<ASTReader *>(Ctx->getExternalSource())->getFileName();
Steve Naroffe19944c2009-10-15 22:23:48 +0000420}
421
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000422ASTUnit *ASTUnit::LoadFromASTFile(const std::string &Filename,
Douglas Gregor28019772010-04-05 23:52:57 +0000423 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Ted Kremenek5cf48762009-10-17 00:34:24 +0000424 bool OnlyLocalDecls,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000425 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +0000426 unsigned NumRemappedFiles,
427 bool CaptureDiagnostics) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000428 llvm::OwningPtr<ASTUnit> AST(new ASTUnit(true));
429
Douglas Gregor28019772010-04-05 23:52:57 +0000430 if (!Diags.getPtr()) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000431 // No diagnostics engine was provided, so create our own diagnostics object
432 // with the default options.
433 DiagnosticOptions DiagOpts;
Douglas Gregor28019772010-04-05 23:52:57 +0000434 Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0);
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000435 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000436
437 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000438 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregor28019772010-04-05 23:52:57 +0000439 AST->Diagnostics = Diags;
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000440 AST->FileMgr.reset(new FileManager);
441 AST->SourceMgr.reset(new SourceManager(AST->getDiagnostics()));
Steve Naroff36c44642009-10-19 14:34:22 +0000442 AST->HeaderInfo.reset(new HeaderSearch(AST->getFileManager()));
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000443
Douglas Gregora88084b2010-02-18 18:08:43 +0000444 // If requested, capture diagnostics in the ASTUnit.
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000445 CaptureDroppedDiagnostics Capture(CaptureDiagnostics, AST->getDiagnostics(),
Douglas Gregor405634b2010-04-05 18:10:21 +0000446 AST->StoredDiagnostics);
Douglas Gregora88084b2010-02-18 18:08:43 +0000447
Douglas Gregor4db64a42010-01-23 00:14:00 +0000448 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
449 // Create the file entry for the file that we're mapping from.
450 const FileEntry *FromFile
451 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
452 RemappedFiles[I].second->getBufferSize(),
453 0);
454 if (!FromFile) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000455 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
Douglas Gregor4db64a42010-01-23 00:14:00 +0000456 << RemappedFiles[I].first;
Douglas Gregorc8dfe5e2010-02-27 01:32:48 +0000457 delete RemappedFiles[I].second;
Douglas Gregor4db64a42010-01-23 00:14:00 +0000458 continue;
459 }
460
461 // Override the contents of the "from" file with the contents of
462 // the "to" file.
463 AST->getSourceManager().overrideFileContents(FromFile,
464 RemappedFiles[I].second);
465 }
466
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000467 // Gather Info for preprocessor construction later on.
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000469 LangOptions LangInfo;
470 HeaderSearch &HeaderInfo = *AST->HeaderInfo.get();
471 std::string TargetTriple;
472 std::string Predefines;
473 unsigned Counter;
474
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000475 llvm::OwningPtr<ASTReader> Reader;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000476
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000477 Reader.reset(new ASTReader(AST->getSourceManager(), AST->getFileManager(),
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000478 AST->getDiagnostics()));
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000479 Reader->setListener(new ASTInfoCollector(LangInfo, HeaderInfo, TargetTriple,
Daniel Dunbarcc318932009-09-03 05:59:35 +0000480 Predefines, Counter));
481
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +0000482 switch (Reader->ReadAST(Filename, ASTReader::MainFile)) {
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000483 case ASTReader::Success:
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000484 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000486 case ASTReader::Failure:
487 case ASTReader::IgnorePCH:
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000488 AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000489 return NULL;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000490 }
Mike Stump1eb44332009-09-09 15:08:12 +0000491
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000492 AST->OriginalSourceFile = Reader->getOriginalSourceFile();
493
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000494 // AST file loaded successfully. Now create the preprocessor.
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000496 // Get information about the target being compiled for.
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000497 //
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000498 // FIXME: This is broken, we should store the TargetOptions in the AST file.
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000499 TargetOptions TargetOpts;
500 TargetOpts.ABI = "";
John McCall875ab102010-08-22 06:43:33 +0000501 TargetOpts.CXXABI = "";
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000502 TargetOpts.CPU = "";
503 TargetOpts.Features.clear();
504 TargetOpts.Triple = TargetTriple;
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000505 AST->Target.reset(TargetInfo::CreateTargetInfo(AST->getDiagnostics(),
506 TargetOpts));
507 AST->PP.reset(new Preprocessor(AST->getDiagnostics(), LangInfo,
508 *AST->Target.get(),
Daniel Dunbar31b87d82009-09-21 03:03:39 +0000509 AST->getSourceManager(), HeaderInfo));
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000510 Preprocessor &PP = *AST->PP.get();
511
Daniel Dunbard5b61262009-09-21 03:03:47 +0000512 PP.setPredefines(Reader->getSuggestedPredefines());
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000513 PP.setCounterValue(Counter);
Daniel Dunbarcc318932009-09-03 05:59:35 +0000514 Reader->setPreprocessor(PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000516 // Create and initialize the ASTContext.
517
518 AST->Ctx.reset(new ASTContext(LangInfo,
Daniel Dunbar31b87d82009-09-21 03:03:39 +0000519 AST->getSourceManager(),
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000520 *AST->Target.get(),
521 PP.getIdentifierTable(),
522 PP.getSelectorTable(),
523 PP.getBuiltinInfo(),
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000524 /* size_reserve = */0));
525 ASTContext &Context = *AST->Ctx.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000526
Daniel Dunbarcc318932009-09-03 05:59:35 +0000527 Reader->InitializeContext(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000529 // Attach the AST reader to the AST context as an external AST
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000530 // source, so that declarations will be deserialized from the
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000531 // AST file as needed.
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000532 ASTReader *ReaderPtr = Reader.get();
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000533 llvm::OwningPtr<ExternalASTSource> Source(Reader.take());
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000534 Context.setExternalSource(Source);
535
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000536 // Create an AST consumer, even though it isn't used.
537 AST->Consumer.reset(new ASTConsumer);
538
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000539 // Create a semantic analysis object and tell the AST reader about it.
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000540 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
541 AST->TheSema->Initialize();
542 ReaderPtr->InitializeSema(*AST->TheSema);
543
Mike Stump1eb44332009-09-09 15:08:12 +0000544 return AST.take();
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000545}
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000546
547namespace {
548
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000549class TopLevelDeclTrackerConsumer : public ASTConsumer {
550 ASTUnit &Unit;
551
552public:
553 TopLevelDeclTrackerConsumer(ASTUnit &_Unit) : Unit(_Unit) {}
554
555 void HandleTopLevelDecl(DeclGroupRef D) {
Ted Kremenekda5a4282010-05-03 20:16:35 +0000556 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
557 Decl *D = *it;
558 // FIXME: Currently ObjC method declarations are incorrectly being
559 // reported as top-level declarations, even though their DeclContext
560 // is the containing ObjC @interface/@implementation. This is a
561 // fundamental problem in the parser right now.
562 if (isa<ObjCMethodDecl>(D))
563 continue;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000564 Unit.addTopLevelDecl(D);
Ted Kremenekda5a4282010-05-03 20:16:35 +0000565 }
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000566 }
Sebastian Redl27372b42010-08-11 18:52:41 +0000567
568 // We're not interested in "interesting" decls.
569 void HandleInterestingDecl(DeclGroupRef) {}
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000570};
571
572class TopLevelDeclTrackerAction : public ASTFrontendAction {
573public:
574 ASTUnit &Unit;
575
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000576 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
577 llvm::StringRef InFile) {
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000578 return new TopLevelDeclTrackerConsumer(Unit);
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000579 }
580
581public:
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000582 TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
583
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000584 virtual bool hasCodeCompletionSupport() const { return false; }
Douglas Gregordf95a132010-08-09 20:45:32 +0000585 virtual bool usesCompleteTranslationUnit() {
586 return Unit.isCompleteTranslationUnit();
587 }
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000588};
589
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000590class PrecompilePreambleConsumer : public PCHGenerator {
591 ASTUnit &Unit;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000592 std::vector<Decl *> TopLevelDecls;
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000593
594public:
595 PrecompilePreambleConsumer(ASTUnit &Unit,
596 const Preprocessor &PP, bool Chaining,
597 const char *isysroot, llvm::raw_ostream *Out)
598 : PCHGenerator(PP, Chaining, isysroot, Out), Unit(Unit) { }
599
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000600 virtual void HandleTopLevelDecl(DeclGroupRef D) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000601 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
602 Decl *D = *it;
603 // FIXME: Currently ObjC method declarations are incorrectly being
604 // reported as top-level declarations, even though their DeclContext
605 // is the containing ObjC @interface/@implementation. This is a
606 // fundamental problem in the parser right now.
607 if (isa<ObjCMethodDecl>(D))
608 continue;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000609 TopLevelDecls.push_back(D);
610 }
611 }
612
613 virtual void HandleTranslationUnit(ASTContext &Ctx) {
614 PCHGenerator::HandleTranslationUnit(Ctx);
615 if (!Unit.getDiagnostics().hasErrorOccurred()) {
616 // Translate the top-level declarations we captured during
617 // parsing into declaration IDs in the precompiled
618 // preamble. This will allow us to deserialize those top-level
619 // declarations when requested.
620 for (unsigned I = 0, N = TopLevelDecls.size(); I != N; ++I)
621 Unit.addTopLevelDeclFromPreamble(
622 getWriter().getDeclID(TopLevelDecls[I]));
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000623 }
624 }
625};
626
627class PrecompilePreambleAction : public ASTFrontendAction {
628 ASTUnit &Unit;
629
630public:
631 explicit PrecompilePreambleAction(ASTUnit &Unit) : Unit(Unit) {}
632
633 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
634 llvm::StringRef InFile) {
635 std::string Sysroot;
636 llvm::raw_ostream *OS = 0;
637 bool Chaining;
638 if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot,
639 OS, Chaining))
640 return 0;
641
642 const char *isysroot = CI.getFrontendOpts().RelocatablePCH ?
643 Sysroot.c_str() : 0;
644 return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Chaining,
645 isysroot, OS);
646 }
647
648 virtual bool hasCodeCompletionSupport() const { return false; }
649 virtual bool hasASTFileSupport() const { return false; }
Douglas Gregordf95a132010-08-09 20:45:32 +0000650 virtual bool usesCompleteTranslationUnit() { return false; }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000651};
652
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000653}
654
Douglas Gregorabc563f2010-07-19 21:46:24 +0000655/// Parse the source file into a translation unit using the given compiler
656/// invocation, replacing the current translation unit.
657///
658/// \returns True if a failure occurred that causes the ASTUnit not to
659/// contain any translation-unit information, false otherwise.
Douglas Gregor754f3492010-07-24 00:38:13 +0000660bool ASTUnit::Parse(llvm::MemoryBuffer *OverrideMainBuffer) {
Douglas Gregor28233422010-07-27 14:52:07 +0000661 delete SavedMainFileBuffer;
662 SavedMainFileBuffer = 0;
663
Douglas Gregor671947b2010-08-19 01:33:06 +0000664 if (!Invocation.get()) {
665 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000666 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000667 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000668
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000669 // Create the compiler instance to use for building the AST.
Daniel Dunbarcb6dda12009-12-02 08:43:56 +0000670 CompilerInstance Clang;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000671 Clang.setInvocation(Invocation.take());
672 OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second;
673
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000674 // Set up diagnostics, capturing any diagnostics that would
675 // otherwise be dropped.
Douglas Gregorabc563f2010-07-19 21:46:24 +0000676 Clang.setDiagnostics(&getDiagnostics());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000677 CaptureDroppedDiagnostics Capture(CaptureDiagnostics,
678 getDiagnostics(),
679 StoredDiagnostics);
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000680
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000681 // Create the target instance.
682 Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(),
683 Clang.getTargetOpts()));
Douglas Gregor671947b2010-08-19 01:33:06 +0000684 if (!Clang.hasTarget()) {
685 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000686 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000687 }
688
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000689 // Inform the target of the language options.
690 //
691 // FIXME: We shouldn't need to do this, the target should be immutable once
692 // created. This complexity should be lifted elsewhere.
693 Clang.getTarget().setForcedLangOptions(Clang.getLangOpts());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000694
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000695 assert(Clang.getFrontendOpts().Inputs.size() == 1 &&
696 "Invocation must have exactly one source file!");
Daniel Dunbarc34ce3f2010-06-07 23:22:09 +0000697 assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST &&
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000698 "FIXME: AST inputs not yet supported here!");
Daniel Dunbarfaddc3e2010-06-07 23:26:47 +0000699 assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
700 "IR inputs not support here!");
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000701
Douglas Gregorabc563f2010-07-19 21:46:24 +0000702 // Configure the various subsystems.
703 // FIXME: Should we retain the previous file manager?
704 FileMgr.reset(new FileManager);
705 SourceMgr.reset(new SourceManager(getDiagnostics()));
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000706 TheSema.reset();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000707 Ctx.reset();
708 PP.reset();
709
710 // Clear out old caches and data.
711 TopLevelDecls.clear();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000712 CleanTemporaryFiles();
713 PreprocessedEntitiesByFile.clear();
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000714
Douglas Gregorf128fed2010-08-20 00:02:33 +0000715 if (!OverrideMainBuffer) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000716 StoredDiagnostics.clear();
Douglas Gregorf128fed2010-08-20 00:02:33 +0000717 TopLevelDeclsInPreamble.clear();
718 }
719
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000720 // Create a file manager object to provide access to and cache the filesystem.
Douglas Gregorabc563f2010-07-19 21:46:24 +0000721 Clang.setFileManager(&getFileManager());
722
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000723 // Create the source manager.
Douglas Gregorabc563f2010-07-19 21:46:24 +0000724 Clang.setSourceManager(&getSourceManager());
725
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000726 // If the main file has been overridden due to the use of a preamble,
727 // make that override happen and introduce the preamble.
728 PreprocessorOptions &PreprocessorOpts = Clang.getPreprocessorOpts();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000729 std::string PriorImplicitPCHInclude;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000730 if (OverrideMainBuffer) {
731 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
732 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
733 PreprocessorOpts.PrecompiledPreambleBytes.second
734 = PreambleEndsAtStartOfLine;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000735 PriorImplicitPCHInclude = PreprocessorOpts.ImplicitPCHInclude;
Douglas Gregor385103b2010-07-30 20:58:08 +0000736 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000737 PreprocessorOpts.DisablePCHValidation = true;
Douglas Gregor28233422010-07-27 14:52:07 +0000738
739 // Keep track of the override buffer;
740 SavedMainFileBuffer = OverrideMainBuffer;
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000741
742 // The stored diagnostic has the old source manager in it; update
743 // the locations to refer into the new source manager. Since we've
744 // been careful to make sure that the source manager's state
745 // before and after are identical, so that we can reuse the source
746 // location itself.
747 for (unsigned I = 0, N = StoredDiagnostics.size(); I != N; ++I) {
748 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(),
749 getSourceManager());
750 StoredDiagnostics[I].setLocation(Loc);
751 }
Douglas Gregorf128fed2010-08-20 00:02:33 +0000752 } else {
753 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
754 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000755 }
756
Douglas Gregorabc563f2010-07-19 21:46:24 +0000757 llvm::OwningPtr<TopLevelDeclTrackerAction> Act;
758 Act.reset(new TopLevelDeclTrackerAction(*this));
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000759 if (!Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second,
Daniel Dunbard3598a62010-06-07 23:23:06 +0000760 Clang.getFrontendOpts().Inputs[0].first))
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000761 goto error;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000762
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000763 Act->Execute();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000764
Daniel Dunbar64a32ba2009-12-01 21:57:33 +0000765 // Steal the created target, context, and preprocessor, and take back the
766 // source and file managers.
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000767 TheSema.reset(Clang.takeSema());
768 Consumer.reset(Clang.takeASTConsumer());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000769 Ctx.reset(Clang.takeASTContext());
770 PP.reset(Clang.takePreprocessor());
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000771 Clang.takeSourceManager();
772 Clang.takeFileManager();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000773 Target.reset(Clang.takeTarget());
774
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000775 Act->EndSourceFile();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000776
777 // Remove the overridden buffer we used for the preamble.
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000778 if (OverrideMainBuffer) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000779 PreprocessorOpts.eraseRemappedFile(
780 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000781 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
782 }
783
Douglas Gregorabc563f2010-07-19 21:46:24 +0000784 Invocation.reset(Clang.takeInvocation());
Douglas Gregor87c08a52010-08-13 22:48:40 +0000785
786 // If we were asked to cache code-completion results and don't have any
787 // results yet, do so now.
788 if (ShouldCacheCodeCompletionResults && CachedCompletionResults.empty())
789 CacheCodeCompletionResults();
790
Douglas Gregorabc563f2010-07-19 21:46:24 +0000791 return false;
792
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000793error:
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000794 // Remove the overridden buffer we used for the preamble.
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000795 if (OverrideMainBuffer) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000796 PreprocessorOpts.eraseRemappedFile(
797 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000798 PreprocessorOpts.DisablePCHValidation = true;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000799 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
Douglas Gregor671947b2010-08-19 01:33:06 +0000800 delete OverrideMainBuffer;
Douglas Gregor37cf6632010-10-06 21:11:08 +0000801 SavedMainFileBuffer = 0;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000802 }
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000803
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000804 Clang.takeSourceManager();
805 Clang.takeFileManager();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000806 Invocation.reset(Clang.takeInvocation());
807 return true;
808}
809
Douglas Gregor44c181a2010-07-23 00:33:23 +0000810/// \brief Simple function to retrieve a path for a preamble precompiled header.
811static std::string GetPreamblePCHPath() {
812 // FIXME: This is lame; sys::Path should provide this function (in particular,
813 // it should know how to find the temporary files dir).
814 // FIXME: This is really lame. I copied this code from the Driver!
Douglas Gregor424668c2010-09-11 18:05:19 +0000815 // FIXME: This is a hack so that we can override the preamble file during
816 // crash-recovery testing, which is the only case where the preamble files
817 // are not necessarily cleaned up.
818 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE");
819 if (TmpFile)
820 return TmpFile;
821
Douglas Gregor44c181a2010-07-23 00:33:23 +0000822 std::string Error;
823 const char *TmpDir = ::getenv("TMPDIR");
824 if (!TmpDir)
825 TmpDir = ::getenv("TEMP");
826 if (!TmpDir)
827 TmpDir = ::getenv("TMP");
Douglas Gregorc6cb2b02010-09-11 17:51:16 +0000828#ifdef LLVM_ON_WIN32
829 if (!TmpDir)
830 TmpDir = ::getenv("USERPROFILE");
831#endif
Douglas Gregor44c181a2010-07-23 00:33:23 +0000832 if (!TmpDir)
833 TmpDir = "/tmp";
834 llvm::sys::Path P(TmpDir);
Douglas Gregorc6cb2b02010-09-11 17:51:16 +0000835 P.createDirectoryOnDisk(true);
Douglas Gregor44c181a2010-07-23 00:33:23 +0000836 P.appendComponent("preamble");
Douglas Gregor6bf18302010-08-11 13:06:56 +0000837 P.appendSuffix("pch");
Douglas Gregor44c181a2010-07-23 00:33:23 +0000838 if (P.createTemporaryFileOnDisk())
839 return std::string();
840
Douglas Gregor44c181a2010-07-23 00:33:23 +0000841 return P.str();
842}
843
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000844/// \brief Compute the preamble for the main file, providing the source buffer
845/// that corresponds to the main file along with a pair (bytes, start-of-line)
846/// that describes the preamble.
847std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
Douglas Gregordf95a132010-08-09 20:45:32 +0000848ASTUnit::ComputePreamble(CompilerInvocation &Invocation,
849 unsigned MaxLines, bool &CreatedBuffer) {
Douglas Gregor175c4a92010-07-23 23:58:40 +0000850 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
Douglas Gregor44c181a2010-07-23 00:33:23 +0000851 PreprocessorOptions &PreprocessorOpts
Douglas Gregor175c4a92010-07-23 23:58:40 +0000852 = Invocation.getPreprocessorOpts();
853 CreatedBuffer = false;
854
Douglas Gregor44c181a2010-07-23 00:33:23 +0000855 // Try to determine if the main file has been remapped, either from the
856 // command line (to another file) or directly through the compiler invocation
857 // (to a memory buffer).
Douglas Gregor175c4a92010-07-23 23:58:40 +0000858 llvm::MemoryBuffer *Buffer = 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000859 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
860 if (const llvm::sys::FileStatus *MainFileStatus = MainFilePath.getFileStatus()) {
861 // Check whether there is a file-file remapping of the main file
862 for (PreprocessorOptions::remapped_file_iterator
Douglas Gregor175c4a92010-07-23 23:58:40 +0000863 M = PreprocessorOpts.remapped_file_begin(),
864 E = PreprocessorOpts.remapped_file_end();
Douglas Gregor44c181a2010-07-23 00:33:23 +0000865 M != E;
866 ++M) {
867 llvm::sys::PathWithStatus MPath(M->first);
868 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
869 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
870 // We found a remapping. Try to load the resulting, remapped source.
Douglas Gregor175c4a92010-07-23 23:58:40 +0000871 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +0000872 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +0000873 CreatedBuffer = false;
874 }
875
Douglas Gregor44c181a2010-07-23 00:33:23 +0000876 Buffer = llvm::MemoryBuffer::getFile(M->second);
877 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000878 return std::make_pair((llvm::MemoryBuffer*)0,
879 std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +0000880 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000881
Douglas Gregor175c4a92010-07-23 23:58:40 +0000882 // Remove this remapping. We've captured the buffer already.
Douglas Gregor44c181a2010-07-23 00:33:23 +0000883 M = PreprocessorOpts.eraseRemappedFile(M);
884 E = PreprocessorOpts.remapped_file_end();
Daniel Dunbarc1cf1582010-08-19 19:40:40 +0000885 if (M == E)
886 break;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000887 }
888 }
889 }
890
891 // Check whether there is a file-buffer remapping. It supercedes the
892 // file-file remapping.
893 for (PreprocessorOptions::remapped_file_buffer_iterator
894 M = PreprocessorOpts.remapped_file_buffer_begin(),
895 E = PreprocessorOpts.remapped_file_buffer_end();
896 M != E;
897 ++M) {
898 llvm::sys::PathWithStatus MPath(M->first);
899 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
900 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
901 // We found a remapping.
Douglas Gregor175c4a92010-07-23 23:58:40 +0000902 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +0000903 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +0000904 CreatedBuffer = false;
905 }
Douglas Gregor44c181a2010-07-23 00:33:23 +0000906
Douglas Gregor175c4a92010-07-23 23:58:40 +0000907 Buffer = const_cast<llvm::MemoryBuffer *>(M->second);
908
909 // Remove this remapping. We've captured the buffer already.
Douglas Gregor44c181a2010-07-23 00:33:23 +0000910 M = PreprocessorOpts.eraseRemappedFile(M);
911 E = PreprocessorOpts.remapped_file_buffer_end();
Daniel Dunbarc1cf1582010-08-19 19:40:40 +0000912 if (M == E)
913 break;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000914 }
915 }
Douglas Gregor175c4a92010-07-23 23:58:40 +0000916 }
Douglas Gregor44c181a2010-07-23 00:33:23 +0000917 }
918
919 // If the main source file was not remapped, load it now.
920 if (!Buffer) {
921 Buffer = llvm::MemoryBuffer::getFile(FrontendOpts.Inputs[0].second);
922 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000923 return std::make_pair((llvm::MemoryBuffer*)0, std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +0000924
925 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000926 }
927
Douglas Gregordf95a132010-08-09 20:45:32 +0000928 return std::make_pair(Buffer, Lexer::ComputePreamble(Buffer, MaxLines));
Douglas Gregor175c4a92010-07-23 23:58:40 +0000929}
930
Douglas Gregor754f3492010-07-24 00:38:13 +0000931static llvm::MemoryBuffer *CreatePaddedMainFileBuffer(llvm::MemoryBuffer *Old,
932 bool DeleteOld,
933 unsigned NewSize,
934 llvm::StringRef NewName) {
935 llvm::MemoryBuffer *Result
936 = llvm::MemoryBuffer::getNewUninitMemBuffer(NewSize, NewName);
937 memcpy(const_cast<char*>(Result->getBufferStart()),
938 Old->getBufferStart(), Old->getBufferSize());
939 memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000940 ' ', NewSize - Old->getBufferSize() - 1);
941 const_cast<char*>(Result->getBufferEnd())[-1] = '\n';
Douglas Gregor754f3492010-07-24 00:38:13 +0000942
943 if (DeleteOld)
944 delete Old;
945
946 return Result;
947}
948
Douglas Gregor175c4a92010-07-23 23:58:40 +0000949/// \brief Attempt to build or re-use a precompiled preamble when (re-)parsing
950/// the source file.
951///
952/// This routine will compute the preamble of the main source file. If a
953/// non-trivial preamble is found, it will precompile that preamble into a
954/// precompiled header so that the precompiled preamble can be used to reduce
955/// reparsing time. If a precompiled preamble has already been constructed,
956/// this routine will determine if it is still valid and, if so, avoid
957/// rebuilding the precompiled preamble.
958///
Douglas Gregordf95a132010-08-09 20:45:32 +0000959/// \param AllowRebuild When true (the default), this routine is
960/// allowed to rebuild the precompiled preamble if it is found to be
961/// out-of-date.
962///
963/// \param MaxLines When non-zero, the maximum number of lines that
964/// can occur within the preamble.
965///
Douglas Gregor754f3492010-07-24 00:38:13 +0000966/// \returns If the precompiled preamble can be used, returns a newly-allocated
967/// buffer that should be used in place of the main file when doing so.
968/// Otherwise, returns a NULL pointer.
Douglas Gregordf95a132010-08-09 20:45:32 +0000969llvm::MemoryBuffer *ASTUnit::getMainBufferWithPrecompiledPreamble(
Douglas Gregor2283d792010-08-20 00:59:43 +0000970 CompilerInvocation PreambleInvocation,
Douglas Gregordf95a132010-08-09 20:45:32 +0000971 bool AllowRebuild,
972 unsigned MaxLines) {
Douglas Gregor175c4a92010-07-23 23:58:40 +0000973 FrontendOptions &FrontendOpts = PreambleInvocation.getFrontendOpts();
974 PreprocessorOptions &PreprocessorOpts
975 = PreambleInvocation.getPreprocessorOpts();
976
977 bool CreatedPreambleBuffer = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000978 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > NewPreamble
Douglas Gregordf95a132010-08-09 20:45:32 +0000979 = ComputePreamble(PreambleInvocation, MaxLines, CreatedPreambleBuffer);
Douglas Gregor175c4a92010-07-23 23:58:40 +0000980
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000981 if (!NewPreamble.second.first) {
Douglas Gregor175c4a92010-07-23 23:58:40 +0000982 // We couldn't find a preamble in the main source. Clear out the current
983 // preamble, if we have one. It's obviously no good any more.
984 Preamble.clear();
985 if (!PreambleFile.empty()) {
Douglas Gregor385103b2010-07-30 20:58:08 +0000986 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregor175c4a92010-07-23 23:58:40 +0000987 PreambleFile.clear();
988 }
989 if (CreatedPreambleBuffer)
990 delete NewPreamble.first;
Douglas Gregoreababfb2010-08-04 05:53:38 +0000991
992 // The next time we actually see a preamble, precompile it.
993 PreambleRebuildCounter = 1;
Douglas Gregor754f3492010-07-24 00:38:13 +0000994 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +0000995 }
996
997 if (!Preamble.empty()) {
998 // We've previously computed a preamble. Check whether we have the same
999 // preamble now that we did before, and that there's enough space in
1000 // the main-file buffer within the precompiled preamble to fit the
1001 // new main file.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001002 if (Preamble.size() == NewPreamble.second.first &&
1003 PreambleEndsAtStartOfLine == NewPreamble.second.second &&
Douglas Gregor592508e2010-07-24 00:42:07 +00001004 NewPreamble.first->getBufferSize() < PreambleReservedSize-2 &&
Douglas Gregor175c4a92010-07-23 23:58:40 +00001005 memcmp(&Preamble[0], NewPreamble.first->getBufferStart(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001006 NewPreamble.second.first) == 0) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001007 // The preamble has not changed. We may be able to re-use the precompiled
1008 // preamble.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001009
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001010 // Check that none of the files used by the preamble have changed.
1011 bool AnyFileChanged = false;
1012
1013 // First, make a record of those files that have been overridden via
1014 // remapping or unsaved_files.
1015 llvm::StringMap<std::pair<off_t, time_t> > OverriddenFiles;
1016 for (PreprocessorOptions::remapped_file_iterator
1017 R = PreprocessorOpts.remapped_file_begin(),
1018 REnd = PreprocessorOpts.remapped_file_end();
1019 !AnyFileChanged && R != REnd;
1020 ++R) {
1021 struct stat StatBuf;
1022 if (stat(R->second.c_str(), &StatBuf)) {
1023 // If we can't stat the file we're remapping to, assume that something
1024 // horrible happened.
1025 AnyFileChanged = true;
1026 break;
1027 }
Douglas Gregor754f3492010-07-24 00:38:13 +00001028
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001029 OverriddenFiles[R->first] = std::make_pair(StatBuf.st_size,
1030 StatBuf.st_mtime);
1031 }
1032 for (PreprocessorOptions::remapped_file_buffer_iterator
1033 R = PreprocessorOpts.remapped_file_buffer_begin(),
1034 REnd = PreprocessorOpts.remapped_file_buffer_end();
1035 !AnyFileChanged && R != REnd;
1036 ++R) {
1037 // FIXME: Should we actually compare the contents of file->buffer
1038 // remappings?
1039 OverriddenFiles[R->first] = std::make_pair(R->second->getBufferSize(),
1040 0);
1041 }
1042
1043 // Check whether anything has changed.
1044 for (llvm::StringMap<std::pair<off_t, time_t> >::iterator
1045 F = FilesInPreamble.begin(), FEnd = FilesInPreamble.end();
1046 !AnyFileChanged && F != FEnd;
1047 ++F) {
1048 llvm::StringMap<std::pair<off_t, time_t> >::iterator Overridden
1049 = OverriddenFiles.find(F->first());
1050 if (Overridden != OverriddenFiles.end()) {
1051 // This file was remapped; check whether the newly-mapped file
1052 // matches up with the previous mapping.
1053 if (Overridden->second != F->second)
1054 AnyFileChanged = true;
1055 continue;
1056 }
1057
1058 // The file was not remapped; check whether it has changed on disk.
1059 struct stat StatBuf;
1060 if (stat(F->first(), &StatBuf)) {
1061 // If we can't stat the file, assume that something horrible happened.
1062 AnyFileChanged = true;
1063 } else if (StatBuf.st_size != F->second.first ||
1064 StatBuf.st_mtime != F->second.second)
1065 AnyFileChanged = true;
1066 }
1067
1068 if (!AnyFileChanged) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001069 // Okay! We can re-use the precompiled preamble.
1070
1071 // Set the state of the diagnostic object to mimic its state
1072 // after parsing the preamble.
1073 getDiagnostics().Reset();
1074 getDiagnostics().setNumWarnings(NumWarningsInPreamble);
1075 if (StoredDiagnostics.size() > NumStoredDiagnosticsInPreamble)
1076 StoredDiagnostics.erase(
1077 StoredDiagnostics.begin() + NumStoredDiagnosticsInPreamble,
1078 StoredDiagnostics.end());
1079
1080 // Create a version of the main file buffer that is padded to
1081 // buffer size we reserved when creating the preamble.
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001082 return CreatePaddedMainFileBuffer(NewPreamble.first,
1083 CreatedPreambleBuffer,
1084 PreambleReservedSize,
1085 FrontendOpts.Inputs[0].second);
1086 }
Douglas Gregor175c4a92010-07-23 23:58:40 +00001087 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001088
1089 // If we aren't allowed to rebuild the precompiled preamble, just
1090 // return now.
1091 if (!AllowRebuild)
1092 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001093
1094 // We can't reuse the previously-computed preamble. Build a new one.
1095 Preamble.clear();
Douglas Gregor385103b2010-07-30 20:58:08 +00001096 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001097 PreambleRebuildCounter = 1;
Douglas Gregordf95a132010-08-09 20:45:32 +00001098 } else if (!AllowRebuild) {
1099 // We aren't allowed to rebuild the precompiled preamble; just
1100 // return now.
1101 return 0;
1102 }
Douglas Gregoreababfb2010-08-04 05:53:38 +00001103
1104 // If the preamble rebuild counter > 1, it's because we previously
1105 // failed to build a preamble and we're not yet ready to try
1106 // again. Decrement the counter and return a failure.
1107 if (PreambleRebuildCounter > 1) {
1108 --PreambleRebuildCounter;
1109 return 0;
1110 }
1111
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001112 // Create a temporary file for the precompiled preamble. In rare
1113 // circumstances, this can fail.
1114 std::string PreamblePCHPath = GetPreamblePCHPath();
1115 if (PreamblePCHPath.empty()) {
1116 // Try again next time.
1117 PreambleRebuildCounter = 1;
1118 return 0;
1119 }
1120
Douglas Gregor175c4a92010-07-23 23:58:40 +00001121 // We did not previously compute a preamble, or it can't be reused anyway.
Douglas Gregor385103b2010-07-30 20:58:08 +00001122 llvm::Timer *PreambleTimer = 0;
1123 if (TimerGroup.get()) {
1124 PreambleTimer = new llvm::Timer("Precompiling preamble", *TimerGroup);
1125 PreambleTimer->startTimer();
1126 Timers.push_back(PreambleTimer);
1127 }
Douglas Gregor44c181a2010-07-23 00:33:23 +00001128
1129 // Create a new buffer that stores the preamble. The buffer also contains
1130 // extra space for the original contents of the file (which will be present
1131 // when we actually parse the file) along with more room in case the file
Douglas Gregor175c4a92010-07-23 23:58:40 +00001132 // grows.
1133 PreambleReservedSize = NewPreamble.first->getBufferSize();
1134 if (PreambleReservedSize < 4096)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001135 PreambleReservedSize = 8191;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001136 else
Douglas Gregor175c4a92010-07-23 23:58:40 +00001137 PreambleReservedSize *= 2;
1138
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001139 // Save the preamble text for later; we'll need to compare against it for
1140 // subsequent reparses.
1141 Preamble.assign(NewPreamble.first->getBufferStart(),
1142 NewPreamble.first->getBufferStart()
1143 + NewPreamble.second.first);
1144 PreambleEndsAtStartOfLine = NewPreamble.second.second;
1145
Douglas Gregor671947b2010-08-19 01:33:06 +00001146 delete PreambleBuffer;
1147 PreambleBuffer
Douglas Gregor175c4a92010-07-23 23:58:40 +00001148 = llvm::MemoryBuffer::getNewUninitMemBuffer(PreambleReservedSize,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001149 FrontendOpts.Inputs[0].second);
1150 memcpy(const_cast<char*>(PreambleBuffer->getBufferStart()),
Douglas Gregor175c4a92010-07-23 23:58:40 +00001151 NewPreamble.first->getBufferStart(), Preamble.size());
1152 memset(const_cast<char*>(PreambleBuffer->getBufferStart()) + Preamble.size(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001153 ' ', PreambleReservedSize - Preamble.size() - 1);
1154 const_cast<char*>(PreambleBuffer->getBufferEnd())[-1] = '\n';
Douglas Gregor44c181a2010-07-23 00:33:23 +00001155
1156 // Remap the main source file to the preamble buffer.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001157 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001158 PreprocessorOpts.addRemappedFile(MainFilePath.str(), PreambleBuffer);
1159
1160 // Tell the compiler invocation to generate a temporary precompiled header.
1161 FrontendOpts.ProgramAction = frontend::GeneratePCH;
Douglas Gregor85e51912010-10-01 01:05:22 +00001162 FrontendOpts.ChainedPCH = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001163 // FIXME: Generate the precompiled header into memory?
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001164 FrontendOpts.OutputFile = PreamblePCHPath;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001165
1166 // Create the compiler instance to use for building the precompiled preamble.
1167 CompilerInstance Clang;
1168 Clang.setInvocation(&PreambleInvocation);
1169 OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second;
1170
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001171 // Set up diagnostics, capturing all of the diagnostics produced.
Douglas Gregor44c181a2010-07-23 00:33:23 +00001172 Clang.setDiagnostics(&getDiagnostics());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001173 CaptureDroppedDiagnostics Capture(CaptureDiagnostics,
1174 getDiagnostics(),
1175 StoredDiagnostics);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001176
1177 // Create the target instance.
1178 Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(),
1179 Clang.getTargetOpts()));
1180 if (!Clang.hasTarget()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001181 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1182 Preamble.clear();
1183 if (CreatedPreambleBuffer)
1184 delete NewPreamble.first;
Douglas Gregor385103b2010-07-30 20:58:08 +00001185 if (PreambleTimer)
1186 PreambleTimer->stopTimer();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001187 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001188 PreprocessorOpts.eraseRemappedFile(
1189 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001190 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001191 }
1192
1193 // Inform the target of the language options.
1194 //
1195 // FIXME: We shouldn't need to do this, the target should be immutable once
1196 // created. This complexity should be lifted elsewhere.
1197 Clang.getTarget().setForcedLangOptions(Clang.getLangOpts());
1198
1199 assert(Clang.getFrontendOpts().Inputs.size() == 1 &&
1200 "Invocation must have exactly one source file!");
1201 assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST &&
1202 "FIXME: AST inputs not yet supported here!");
1203 assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1204 "IR inputs not support here!");
1205
1206 // Clear out old caches and data.
1207 StoredDiagnostics.clear();
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001208 TopLevelDecls.clear();
1209 TopLevelDeclsInPreamble.clear();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001210
1211 // Create a file manager object to provide access to and cache the filesystem.
1212 Clang.setFileManager(new FileManager);
1213
1214 // Create the source manager.
1215 Clang.setSourceManager(new SourceManager(getDiagnostics()));
1216
Douglas Gregor1d715ac2010-08-03 08:14:03 +00001217 llvm::OwningPtr<PrecompilePreambleAction> Act;
1218 Act.reset(new PrecompilePreambleAction(*this));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001219 if (!Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second,
1220 Clang.getFrontendOpts().Inputs[0].first)) {
Douglas Gregor44c181a2010-07-23 00:33:23 +00001221 Clang.takeInvocation();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001222 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1223 Preamble.clear();
1224 if (CreatedPreambleBuffer)
1225 delete NewPreamble.first;
Douglas Gregor385103b2010-07-30 20:58:08 +00001226 if (PreambleTimer)
1227 PreambleTimer->stopTimer();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001228 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001229 PreprocessorOpts.eraseRemappedFile(
1230 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001231 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001232 }
1233
1234 Act->Execute();
1235 Act->EndSourceFile();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001236 Clang.takeInvocation();
1237
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001238 if (Diagnostics->hasErrorOccurred()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001239 // There were errors parsing the preamble, so no precompiled header was
1240 // generated. Forget that we even tried.
Douglas Gregor06e50442010-09-27 16:43:25 +00001241 // FIXME: Should we leave a note for ourselves to try again?
Douglas Gregor175c4a92010-07-23 23:58:40 +00001242 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1243 Preamble.clear();
1244 if (CreatedPreambleBuffer)
1245 delete NewPreamble.first;
Douglas Gregor385103b2010-07-30 20:58:08 +00001246 if (PreambleTimer)
1247 PreambleTimer->stopTimer();
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001248 TopLevelDeclsInPreamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001249 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001250 PreprocessorOpts.eraseRemappedFile(
1251 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001252 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001253 }
1254
1255 // Keep track of the preamble we precompiled.
1256 PreambleFile = FrontendOpts.OutputFile;
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001257 NumStoredDiagnosticsInPreamble = StoredDiagnostics.size();
1258 NumWarningsInPreamble = getDiagnostics().getNumWarnings();
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001259
1260 // Keep track of all of the files that the source manager knows about,
1261 // so we can verify whether they have changed or not.
1262 FilesInPreamble.clear();
1263 SourceManager &SourceMgr = Clang.getSourceManager();
1264 const llvm::MemoryBuffer *MainFileBuffer
1265 = SourceMgr.getBuffer(SourceMgr.getMainFileID());
1266 for (SourceManager::fileinfo_iterator F = SourceMgr.fileinfo_begin(),
1267 FEnd = SourceMgr.fileinfo_end();
1268 F != FEnd;
1269 ++F) {
1270 const FileEntry *File = F->second->Entry;
1271 if (!File || F->second->getRawBuffer() == MainFileBuffer)
1272 continue;
1273
1274 FilesInPreamble[File->getName()]
1275 = std::make_pair(F->second->getSize(), File->getModificationTime());
1276 }
1277
Douglas Gregor385103b2010-07-30 20:58:08 +00001278 if (PreambleTimer)
1279 PreambleTimer->stopTimer();
Douglas Gregor06e50442010-09-27 16:43:25 +00001280
Douglas Gregoreababfb2010-08-04 05:53:38 +00001281 PreambleRebuildCounter = 1;
Douglas Gregor671947b2010-08-19 01:33:06 +00001282 PreprocessorOpts.eraseRemappedFile(
1283 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001284 return CreatePaddedMainFileBuffer(NewPreamble.first,
1285 CreatedPreambleBuffer,
1286 PreambleReservedSize,
1287 FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001288}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001289
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001290void ASTUnit::RealizeTopLevelDeclsFromPreamble() {
1291 std::vector<Decl *> Resolved;
1292 Resolved.reserve(TopLevelDeclsInPreamble.size());
1293 ExternalASTSource &Source = *getASTContext().getExternalSource();
1294 for (unsigned I = 0, N = TopLevelDeclsInPreamble.size(); I != N; ++I) {
1295 // Resolve the declaration ID to an actual declaration, possibly
1296 // deserializing the declaration in the process.
1297 Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]);
1298 if (D)
1299 Resolved.push_back(D);
1300 }
1301 TopLevelDeclsInPreamble.clear();
1302 TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
1303}
1304
1305unsigned ASTUnit::getMaxPCHLevel() const {
1306 if (!getOnlyLocalDecls())
1307 return Decl::MaxPCHLevel;
1308
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00001309 return 0;
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001310}
1311
Douglas Gregorabc563f2010-07-19 21:46:24 +00001312ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
1313 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
1314 bool OnlyLocalDecls,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001315 bool CaptureDiagnostics,
Douglas Gregordf95a132010-08-09 20:45:32 +00001316 bool PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001317 bool CompleteTranslationUnit,
1318 bool CacheCodeCompletionResults) {
Douglas Gregorabc563f2010-07-19 21:46:24 +00001319 if (!Diags.getPtr()) {
1320 // No diagnostics engine was provided, so create our own diagnostics object
1321 // with the default options.
1322 DiagnosticOptions DiagOpts;
1323 Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0);
1324 }
1325
1326 // Create the AST unit.
1327 llvm::OwningPtr<ASTUnit> AST;
1328 AST.reset(new ASTUnit(false));
1329 AST->Diagnostics = Diags;
1330 AST->CaptureDiagnostics = CaptureDiagnostics;
1331 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregordf95a132010-08-09 20:45:32 +00001332 AST->CompleteTranslationUnit = CompleteTranslationUnit;
Douglas Gregor87c08a52010-08-13 22:48:40 +00001333 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001334 AST->Invocation.reset(CI);
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001335 CI->getPreprocessorOpts().RetainRemappedFileBuffers = true;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001336
Douglas Gregor385103b2010-07-30 20:58:08 +00001337 if (getenv("LIBCLANG_TIMING"))
1338 AST->TimerGroup.reset(
1339 new llvm::TimerGroup(CI->getFrontendOpts().Inputs[0].second));
1340
1341
Douglas Gregor754f3492010-07-24 00:38:13 +00001342 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregorfd0b8702010-07-28 22:12:37 +00001343 // FIXME: When C++ PCH is ready, allow use of it for a precompiled preamble.
Douglas Gregoreababfb2010-08-04 05:53:38 +00001344 if (PrecompilePreamble && !CI->getLangOpts().CPlusPlus) {
1345 AST->PreambleRebuildCounter = 1;
Douglas Gregor2283d792010-08-20 00:59:43 +00001346 OverrideMainBuffer
1347 = AST->getMainBufferWithPrecompiledPreamble(*AST->Invocation);
Douglas Gregoreababfb2010-08-04 05:53:38 +00001348 }
Douglas Gregor44c181a2010-07-23 00:33:23 +00001349
Douglas Gregor385103b2010-07-30 20:58:08 +00001350 llvm::Timer *ParsingTimer = 0;
1351 if (AST->TimerGroup.get()) {
1352 ParsingTimer = new llvm::Timer("Initial parse", *AST->TimerGroup);
1353 ParsingTimer->startTimer();
1354 AST->Timers.push_back(ParsingTimer);
1355 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00001356
Douglas Gregor385103b2010-07-30 20:58:08 +00001357 bool Failed = AST->Parse(OverrideMainBuffer);
1358 if (ParsingTimer)
1359 ParsingTimer->stopTimer();
1360
1361 return Failed? 0 : AST.take();
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001362}
Daniel Dunbar7b556682009-12-02 03:23:45 +00001363
1364ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1365 const char **ArgEnd,
Douglas Gregor28019772010-04-05 23:52:57 +00001366 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Daniel Dunbar869824e2009-12-13 03:46:13 +00001367 llvm::StringRef ResourceFilesPath,
Daniel Dunbar7b556682009-12-02 03:23:45 +00001368 bool OnlyLocalDecls,
Douglas Gregor4db64a42010-01-23 00:14:00 +00001369 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +00001370 unsigned NumRemappedFiles,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001371 bool CaptureDiagnostics,
Douglas Gregordf95a132010-08-09 20:45:32 +00001372 bool PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001373 bool CompleteTranslationUnit,
1374 bool CacheCodeCompletionResults) {
Douglas Gregorbdbb0042010-08-18 22:29:43 +00001375 bool CreatedDiagnosticsObject = false;
1376
Douglas Gregor28019772010-04-05 23:52:57 +00001377 if (!Diags.getPtr()) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001378 // No diagnostics engine was provided, so create our own diagnostics object
1379 // with the default options.
1380 DiagnosticOptions DiagOpts;
Douglas Gregor28019772010-04-05 23:52:57 +00001381 Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0);
Douglas Gregorbdbb0042010-08-18 22:29:43 +00001382 CreatedDiagnosticsObject = true;
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001383 }
1384
Daniel Dunbar7b556682009-12-02 03:23:45 +00001385 llvm::SmallVector<const char *, 16> Args;
1386 Args.push_back("<clang>"); // FIXME: Remove dummy argument.
1387 Args.insert(Args.end(), ArgBegin, ArgEnd);
1388
1389 // FIXME: Find a cleaner way to force the driver into restricted modes. We
1390 // also want to force it to use clang.
1391 Args.push_back("-fsyntax-only");
1392
Daniel Dunbar869824e2009-12-13 03:46:13 +00001393 // FIXME: We shouldn't have to pass in the path info.
Daniel Dunbar0bbad512010-07-19 00:44:04 +00001394 driver::Driver TheDriver("clang", llvm::sys::getHostTriple(),
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001395 "a.out", false, false, *Diags);
Daniel Dunbar3bd54cc2010-01-25 00:44:02 +00001396
1397 // Don't check that inputs exist, they have been remapped.
1398 TheDriver.setCheckInputsExist(false);
1399
Daniel Dunbar7b556682009-12-02 03:23:45 +00001400 llvm::OwningPtr<driver::Compilation> C(
1401 TheDriver.BuildCompilation(Args.size(), Args.data()));
1402
1403 // We expect to get back exactly one command job, if we didn't something
1404 // failed.
1405 const driver::JobList &Jobs = C->getJobs();
1406 if (Jobs.size() != 1 || !isa<driver::Command>(Jobs.begin())) {
1407 llvm::SmallString<256> Msg;
1408 llvm::raw_svector_ostream OS(Msg);
1409 C->PrintJob(OS, C->getJobs(), "; ", true);
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001410 Diags->Report(diag::err_fe_expected_compiler_job) << OS.str();
Daniel Dunbar7b556682009-12-02 03:23:45 +00001411 return 0;
1412 }
1413
1414 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
1415 if (llvm::StringRef(Cmd->getCreator().getName()) != "clang") {
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001416 Diags->Report(diag::err_fe_expected_clang_command);
Daniel Dunbar7b556682009-12-02 03:23:45 +00001417 return 0;
1418 }
1419
1420 const driver::ArgStringList &CCArgs = Cmd->getArguments();
Daniel Dunbar807b0612010-01-30 21:47:16 +00001421 llvm::OwningPtr<CompilerInvocation> CI(new CompilerInvocation);
Dan Gohmancb421fa2010-04-19 16:39:44 +00001422 CompilerInvocation::CreateFromArgs(*CI,
1423 const_cast<const char **>(CCArgs.data()),
1424 const_cast<const char **>(CCArgs.data()) +
Douglas Gregor44c181a2010-07-23 00:33:23 +00001425 CCArgs.size(),
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001426 *Diags);
Daniel Dunbar1e69fe32009-12-13 03:45:58 +00001427
Douglas Gregor4db64a42010-01-23 00:14:00 +00001428 // Override any files that need remapping
1429 for (unsigned I = 0; I != NumRemappedFiles; ++I)
Daniel Dunbar807b0612010-01-30 21:47:16 +00001430 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
Daniel Dunbarb26d4832010-02-16 01:55:04 +00001431 RemappedFiles[I].second);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001432
Daniel Dunbar8b9adfe2009-12-15 00:06:45 +00001433 // Override the resources path.
Daniel Dunbar807b0612010-01-30 21:47:16 +00001434 CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
Daniel Dunbar7b556682009-12-02 03:23:45 +00001435
Douglas Gregorf4210892010-08-18 23:38:21 +00001436 CI->getFrontendOpts().DisableFree = false;
Douglas Gregora88084b2010-02-18 18:08:43 +00001437 return LoadFromCompilerInvocation(CI.take(), Diags, OnlyLocalDecls,
Douglas Gregordf95a132010-08-09 20:45:32 +00001438 CaptureDiagnostics, PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001439 CompleteTranslationUnit,
1440 CacheCodeCompletionResults);
Daniel Dunbar7b556682009-12-02 03:23:45 +00001441}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001442
1443bool ASTUnit::Reparse(RemappedFile *RemappedFiles, unsigned NumRemappedFiles) {
1444 if (!Invocation.get())
1445 return true;
1446
Douglas Gregor385103b2010-07-30 20:58:08 +00001447 llvm::Timer *ReparsingTimer = 0;
1448 if (TimerGroup.get()) {
1449 ReparsingTimer = new llvm::Timer("Reparse", *TimerGroup);
1450 ReparsingTimer->startTimer();
1451 Timers.push_back(ReparsingTimer);
1452 }
1453
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001454 // Remap files.
Douglas Gregorf128fed2010-08-20 00:02:33 +00001455 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1456 for (PreprocessorOptions::remapped_file_buffer_iterator
1457 R = PPOpts.remapped_file_buffer_begin(),
1458 REnd = PPOpts.remapped_file_buffer_end();
1459 R != REnd;
1460 ++R) {
1461 delete R->second;
1462 }
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001463 Invocation->getPreprocessorOpts().clearRemappedFiles();
1464 for (unsigned I = 0; I != NumRemappedFiles; ++I)
1465 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1466 RemappedFiles[I].second);
1467
Douglas Gregoreababfb2010-08-04 05:53:38 +00001468 // If we have a preamble file lying around, or if we might try to
1469 // build a precompiled preamble, do so now.
Douglas Gregor754f3492010-07-24 00:38:13 +00001470 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregoreababfb2010-08-04 05:53:38 +00001471 if (!PreambleFile.empty() || PreambleRebuildCounter > 0)
Douglas Gregor2283d792010-08-20 00:59:43 +00001472 OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(*Invocation);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001473
Douglas Gregorabc563f2010-07-19 21:46:24 +00001474 // Clear out the diagnostics state.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001475 if (!OverrideMainBuffer)
1476 getDiagnostics().Reset();
Douglas Gregorabc563f2010-07-19 21:46:24 +00001477
Douglas Gregor175c4a92010-07-23 23:58:40 +00001478 // Parse the sources
Douglas Gregor754f3492010-07-24 00:38:13 +00001479 bool Result = Parse(OverrideMainBuffer);
Douglas Gregor385103b2010-07-30 20:58:08 +00001480 if (ReparsingTimer)
1481 ReparsingTimer->stopTimer();
Douglas Gregor727d93e2010-08-17 00:40:40 +00001482
1483 if (ShouldCacheCodeCompletionResults) {
1484 if (CacheCodeCompletionCoolDown > 0)
1485 --CacheCodeCompletionCoolDown;
1486 else if (top_level_size() != NumTopLevelDeclsAtLastCompletionCache)
1487 CacheCodeCompletionResults();
1488 }
1489
Douglas Gregor175c4a92010-07-23 23:58:40 +00001490 return Result;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001491}
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001492
Douglas Gregor87c08a52010-08-13 22:48:40 +00001493//----------------------------------------------------------------------------//
1494// Code completion
1495//----------------------------------------------------------------------------//
1496
1497namespace {
1498 /// \brief Code completion consumer that combines the cached code-completion
1499 /// results from an ASTUnit with the code-completion results provided to it,
1500 /// then passes the result on to
1501 class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer {
1502 unsigned NormalContexts;
1503 ASTUnit &AST;
1504 CodeCompleteConsumer &Next;
1505
1506 public:
1507 AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next,
Douglas Gregor8071e422010-08-15 06:18:01 +00001508 bool IncludeMacros, bool IncludeCodePatterns,
1509 bool IncludeGlobals)
1510 : CodeCompleteConsumer(IncludeMacros, IncludeCodePatterns, IncludeGlobals,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001511 Next.isOutputBinary()), AST(AST), Next(Next)
1512 {
1513 // Compute the set of contexts in which we will look when we don't have
1514 // any information about the specific context.
1515 NormalContexts
1516 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
1517 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
1518 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
1519 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
1520 | (1 << (CodeCompletionContext::CCC_Statement - 1))
1521 | (1 << (CodeCompletionContext::CCC_Expression - 1))
1522 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
1523 | (1 << (CodeCompletionContext::CCC_MemberAccess - 1))
Douglas Gregor02688102010-09-14 23:59:36 +00001524 | (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1))
Douglas Gregor52779fb2010-09-23 23:01:17 +00001525 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
1526 | (1 << (CodeCompletionContext::CCC_Recovery - 1));
Douglas Gregor02688102010-09-14 23:59:36 +00001527
Douglas Gregor87c08a52010-08-13 22:48:40 +00001528 if (AST.getASTContext().getLangOptions().CPlusPlus)
1529 NormalContexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1))
1530 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
1531 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
1532 }
1533
1534 virtual void ProcessCodeCompleteResults(Sema &S,
1535 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00001536 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001537 unsigned NumResults);
Douglas Gregor87c08a52010-08-13 22:48:40 +00001538
1539 virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
1540 OverloadCandidate *Candidates,
1541 unsigned NumCandidates) {
1542 Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates);
1543 }
1544 };
1545}
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001546
Douglas Gregor5f808c22010-08-16 21:18:39 +00001547/// \brief Helper function that computes which global names are hidden by the
1548/// local code-completion results.
1549void CalculateHiddenNames(const CodeCompletionContext &Context,
John McCall0a2c5e22010-08-25 06:19:51 +00001550 CodeCompletionResult *Results,
Douglas Gregor5f808c22010-08-16 21:18:39 +00001551 unsigned NumResults,
1552 ASTContext &Ctx,
1553 llvm::StringSet<> &HiddenNames) {
1554 bool OnlyTagNames = false;
1555 switch (Context.getKind()) {
Douglas Gregor52779fb2010-09-23 23:01:17 +00001556 case CodeCompletionContext::CCC_Recovery:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001557 case CodeCompletionContext::CCC_TopLevel:
1558 case CodeCompletionContext::CCC_ObjCInterface:
1559 case CodeCompletionContext::CCC_ObjCImplementation:
1560 case CodeCompletionContext::CCC_ObjCIvarList:
1561 case CodeCompletionContext::CCC_ClassStructUnion:
1562 case CodeCompletionContext::CCC_Statement:
1563 case CodeCompletionContext::CCC_Expression:
1564 case CodeCompletionContext::CCC_ObjCMessageReceiver:
1565 case CodeCompletionContext::CCC_MemberAccess:
1566 case CodeCompletionContext::CCC_Namespace:
1567 case CodeCompletionContext::CCC_Type:
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001568 case CodeCompletionContext::CCC_Name:
1569 case CodeCompletionContext::CCC_PotentiallyQualifiedName:
Douglas Gregor02688102010-09-14 23:59:36 +00001570 case CodeCompletionContext::CCC_ParenthesizedExpression:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001571 break;
1572
1573 case CodeCompletionContext::CCC_EnumTag:
1574 case CodeCompletionContext::CCC_UnionTag:
1575 case CodeCompletionContext::CCC_ClassOrStructTag:
1576 OnlyTagNames = true;
1577 break;
1578
1579 case CodeCompletionContext::CCC_ObjCProtocolName:
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001580 case CodeCompletionContext::CCC_MacroName:
1581 case CodeCompletionContext::CCC_MacroNameUse:
Douglas Gregorf29c5232010-08-24 22:20:20 +00001582 case CodeCompletionContext::CCC_PreprocessorExpression:
Douglas Gregor721f3592010-08-25 18:41:16 +00001583 case CodeCompletionContext::CCC_PreprocessorDirective:
Douglas Gregor59a66942010-08-25 18:04:30 +00001584 case CodeCompletionContext::CCC_NaturalLanguage:
Douglas Gregor458433d2010-08-26 15:07:07 +00001585 case CodeCompletionContext::CCC_SelectorName:
Douglas Gregor1a480c42010-08-27 17:35:51 +00001586 case CodeCompletionContext::CCC_TypeQualifiers:
Douglas Gregor52779fb2010-09-23 23:01:17 +00001587 case CodeCompletionContext::CCC_Other:
Douglas Gregor721f3592010-08-25 18:41:16 +00001588 // We're looking for nothing, or we're looking for names that cannot
1589 // be hidden.
Douglas Gregor5f808c22010-08-16 21:18:39 +00001590 return;
1591 }
1592
John McCall0a2c5e22010-08-25 06:19:51 +00001593 typedef CodeCompletionResult Result;
Douglas Gregor5f808c22010-08-16 21:18:39 +00001594 for (unsigned I = 0; I != NumResults; ++I) {
1595 if (Results[I].Kind != Result::RK_Declaration)
1596 continue;
1597
1598 unsigned IDNS
1599 = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
1600
1601 bool Hiding = false;
1602 if (OnlyTagNames)
1603 Hiding = (IDNS & Decl::IDNS_Tag);
1604 else {
1605 unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member |
Douglas Gregora5fb7c32010-08-16 23:05:20 +00001606 Decl::IDNS_Namespace | Decl::IDNS_Ordinary |
1607 Decl::IDNS_NonMemberOperator);
Douglas Gregor5f808c22010-08-16 21:18:39 +00001608 if (Ctx.getLangOptions().CPlusPlus)
1609 HiddenIDNS |= Decl::IDNS_Tag;
1610 Hiding = (IDNS & HiddenIDNS);
1611 }
1612
1613 if (!Hiding)
1614 continue;
1615
1616 DeclarationName Name = Results[I].Declaration->getDeclName();
1617 if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo())
1618 HiddenNames.insert(Identifier->getName());
1619 else
1620 HiddenNames.insert(Name.getAsString());
1621 }
1622}
1623
1624
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001625void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
1626 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00001627 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001628 unsigned NumResults) {
1629 // Merge the results we were given with the results we cached.
1630 bool AddedResult = false;
Douglas Gregor5f808c22010-08-16 21:18:39 +00001631 unsigned InContexts
Douglas Gregor52779fb2010-09-23 23:01:17 +00001632 = (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts
Douglas Gregor5f808c22010-08-16 21:18:39 +00001633 : (1 << (Context.getKind() - 1)));
1634
1635 // Contains the set of names that are hidden by "local" completion results.
1636 llvm::StringSet<> HiddenNames;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001637 llvm::SmallVector<CodeCompletionString *, 4> StringsToDestroy;
John McCall0a2c5e22010-08-25 06:19:51 +00001638 typedef CodeCompletionResult Result;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001639 llvm::SmallVector<Result, 8> AllResults;
1640 for (ASTUnit::cached_completion_iterator
Douglas Gregor5535d572010-08-16 21:23:13 +00001641 C = AST.cached_completion_begin(),
1642 CEnd = AST.cached_completion_end();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001643 C != CEnd; ++C) {
1644 // If the context we are in matches any of the contexts we are
1645 // interested in, we'll add this result.
1646 if ((C->ShowInContexts & InContexts) == 0)
1647 continue;
1648
1649 // If we haven't added any results previously, do so now.
1650 if (!AddedResult) {
Douglas Gregor5f808c22010-08-16 21:18:39 +00001651 CalculateHiddenNames(Context, Results, NumResults, S.Context,
1652 HiddenNames);
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001653 AllResults.insert(AllResults.end(), Results, Results + NumResults);
1654 AddedResult = true;
1655 }
1656
Douglas Gregor5f808c22010-08-16 21:18:39 +00001657 // Determine whether this global completion result is hidden by a local
1658 // completion result. If so, skip it.
1659 if (C->Kind != CXCursor_MacroDefinition &&
1660 HiddenNames.count(C->Completion->getTypedText()))
1661 continue;
1662
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001663 // Adjust priority based on similar type classes.
1664 unsigned Priority = C->Priority;
Douglas Gregor4125c372010-08-25 18:03:13 +00001665 CXCursorKind CursorKind = C->Kind;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001666 CodeCompletionString *Completion = C->Completion;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001667 if (!Context.getPreferredType().isNull()) {
1668 if (C->Kind == CXCursor_MacroDefinition) {
1669 Priority = getMacroUsagePriority(C->Completion->getTypedText(),
Douglas Gregorb05496d2010-09-20 21:11:48 +00001670 S.getLangOptions(),
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001671 Context.getPreferredType()->isAnyPointerType());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001672 } else if (C->Type) {
1673 CanQualType Expected
Douglas Gregor5535d572010-08-16 21:23:13 +00001674 = S.Context.getCanonicalType(
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001675 Context.getPreferredType().getUnqualifiedType());
1676 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
1677 if (ExpectedSTC == C->TypeClass) {
1678 // We know this type is similar; check for an exact match.
1679 llvm::StringMap<unsigned> &CachedCompletionTypes
Douglas Gregor5535d572010-08-16 21:23:13 +00001680 = AST.getCachedCompletionTypes();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001681 llvm::StringMap<unsigned>::iterator Pos
Douglas Gregor5535d572010-08-16 21:23:13 +00001682 = CachedCompletionTypes.find(QualType(Expected).getAsString());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001683 if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
1684 Priority /= CCF_ExactTypeMatch;
1685 else
1686 Priority /= CCF_SimilarTypeMatch;
1687 }
1688 }
1689 }
1690
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001691 // Adjust the completion string, if required.
1692 if (C->Kind == CXCursor_MacroDefinition &&
1693 Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) {
1694 // Create a new code-completion string that just contains the
1695 // macro name, without its arguments.
1696 Completion = new CodeCompletionString;
1697 Completion->AddTypedTextChunk(C->Completion->getTypedText());
1698 StringsToDestroy.push_back(Completion);
Douglas Gregor4125c372010-08-25 18:03:13 +00001699 CursorKind = CXCursor_NotImplemented;
1700 Priority = CCP_CodePattern;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001701 }
1702
Douglas Gregor4125c372010-08-25 18:03:13 +00001703 AllResults.push_back(Result(Completion, Priority, CursorKind,
Douglas Gregor58ddb602010-08-23 23:00:57 +00001704 C->Availability));
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001705 }
1706
1707 // If we did not add any cached completion results, just forward the
1708 // results we were given to the next consumer.
1709 if (!AddedResult) {
1710 Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
1711 return;
1712 }
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001713
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001714 Next.ProcessCodeCompleteResults(S, Context, AllResults.data(),
1715 AllResults.size());
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001716
1717 for (unsigned I = 0, N = StringsToDestroy.size(); I != N; ++I)
1718 delete StringsToDestroy[I];
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001719}
1720
1721
1722
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001723void ASTUnit::CodeComplete(llvm::StringRef File, unsigned Line, unsigned Column,
1724 RemappedFile *RemappedFiles,
1725 unsigned NumRemappedFiles,
Douglas Gregorcee235c2010-08-05 09:09:23 +00001726 bool IncludeMacros,
1727 bool IncludeCodePatterns,
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001728 CodeCompleteConsumer &Consumer,
1729 Diagnostic &Diag, LangOptions &LangOpts,
1730 SourceManager &SourceMgr, FileManager &FileMgr,
Douglas Gregor2283d792010-08-20 00:59:43 +00001731 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
1732 llvm::SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) {
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001733 if (!Invocation.get())
1734 return;
1735
Douglas Gregordf95a132010-08-09 20:45:32 +00001736 llvm::Timer *CompletionTimer = 0;
1737 if (TimerGroup.get()) {
1738 llvm::SmallString<128> TimerName;
1739 llvm::raw_svector_ostream TimerNameOut(TimerName);
1740 TimerNameOut << "Code completion @ " << File << ":" << Line << ":"
1741 << Column;
1742 CompletionTimer = new llvm::Timer(TimerNameOut.str(), *TimerGroup);
1743 CompletionTimer->startTimer();
1744 Timers.push_back(CompletionTimer);
1745 }
1746
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001747 CompilerInvocation CCInvocation(*Invocation);
1748 FrontendOptions &FrontendOpts = CCInvocation.getFrontendOpts();
1749 PreprocessorOptions &PreprocessorOpts = CCInvocation.getPreprocessorOpts();
Douglas Gregorcee235c2010-08-05 09:09:23 +00001750
Douglas Gregor87c08a52010-08-13 22:48:40 +00001751 FrontendOpts.ShowMacrosInCodeCompletion
1752 = IncludeMacros && CachedCompletionResults.empty();
Douglas Gregorcee235c2010-08-05 09:09:23 +00001753 FrontendOpts.ShowCodePatternsInCodeCompletion = IncludeCodePatterns;
Douglas Gregor8071e422010-08-15 06:18:01 +00001754 FrontendOpts.ShowGlobalSymbolsInCodeCompletion
1755 = CachedCompletionResults.empty();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001756 FrontendOpts.CodeCompletionAt.FileName = File;
1757 FrontendOpts.CodeCompletionAt.Line = Line;
1758 FrontendOpts.CodeCompletionAt.Column = Column;
1759
Douglas Gregorcee235c2010-08-05 09:09:23 +00001760 // Turn on spell-checking when performing code completion. It leads
1761 // to better results.
1762 unsigned SpellChecking = CCInvocation.getLangOpts().SpellChecking;
1763 CCInvocation.getLangOpts().SpellChecking = 1;
1764
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001765 // Set the language options appropriately.
1766 LangOpts = CCInvocation.getLangOpts();
1767
1768 CompilerInstance Clang;
1769 Clang.setInvocation(&CCInvocation);
1770 OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second;
1771
1772 // Set up diagnostics, capturing any diagnostics produced.
1773 Clang.setDiagnostics(&Diag);
1774 CaptureDroppedDiagnostics Capture(true,
1775 Clang.getDiagnostics(),
1776 StoredDiagnostics);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001777
1778 // Create the target instance.
1779 Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(),
1780 Clang.getTargetOpts()));
1781 if (!Clang.hasTarget()) {
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001782 Clang.takeInvocation();
Douglas Gregorbdbb0042010-08-18 22:29:43 +00001783 CCInvocation.getLangOpts().SpellChecking = SpellChecking;
1784 return;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001785 }
1786
1787 // Inform the target of the language options.
1788 //
1789 // FIXME: We shouldn't need to do this, the target should be immutable once
1790 // created. This complexity should be lifted elsewhere.
1791 Clang.getTarget().setForcedLangOptions(Clang.getLangOpts());
1792
1793 assert(Clang.getFrontendOpts().Inputs.size() == 1 &&
1794 "Invocation must have exactly one source file!");
1795 assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST &&
1796 "FIXME: AST inputs not yet supported here!");
1797 assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1798 "IR inputs not support here!");
1799
1800
1801 // Use the source and file managers that we were given.
1802 Clang.setFileManager(&FileMgr);
1803 Clang.setSourceManager(&SourceMgr);
1804
1805 // Remap files.
1806 PreprocessorOpts.clearRemappedFiles();
Douglas Gregorb75d3df2010-08-04 17:07:00 +00001807 PreprocessorOpts.RetainRemappedFileBuffers = true;
Douglas Gregor2283d792010-08-20 00:59:43 +00001808 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001809 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first,
1810 RemappedFiles[I].second);
Douglas Gregor2283d792010-08-20 00:59:43 +00001811 OwnedBuffers.push_back(RemappedFiles[I].second);
1812 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001813
Douglas Gregor87c08a52010-08-13 22:48:40 +00001814 // Use the code completion consumer we were given, but adding any cached
1815 // code-completion results.
1816 AugmentedCodeCompleteConsumer
1817 AugmentedConsumer(*this, Consumer, FrontendOpts.ShowMacrosInCodeCompletion,
Douglas Gregor8071e422010-08-15 06:18:01 +00001818 FrontendOpts.ShowCodePatternsInCodeCompletion,
1819 FrontendOpts.ShowGlobalSymbolsInCodeCompletion);
Douglas Gregor87c08a52010-08-13 22:48:40 +00001820 Clang.setCodeCompletionConsumer(&AugmentedConsumer);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001821
Douglas Gregordf95a132010-08-09 20:45:32 +00001822 // If we have a precompiled preamble, try to use it. We only allow
1823 // the use of the precompiled preamble if we're if the completion
1824 // point is within the main file, after the end of the precompiled
1825 // preamble.
1826 llvm::MemoryBuffer *OverrideMainBuffer = 0;
1827 if (!PreambleFile.empty()) {
1828 using llvm::sys::FileStatus;
1829 llvm::sys::PathWithStatus CompleteFilePath(File);
1830 llvm::sys::PathWithStatus MainPath(OriginalSourceFile);
1831 if (const FileStatus *CompleteFileStatus = CompleteFilePath.getFileStatus())
1832 if (const FileStatus *MainStatus = MainPath.getFileStatus())
1833 if (CompleteFileStatus->getUniqueID() == MainStatus->getUniqueID())
Douglas Gregor2283d792010-08-20 00:59:43 +00001834 OverrideMainBuffer
Douglas Gregorc9c29a82010-08-25 18:04:15 +00001835 = getMainBufferWithPrecompiledPreamble(CCInvocation, false,
1836 Line - 1);
Douglas Gregordf95a132010-08-09 20:45:32 +00001837 }
1838
1839 // If the main file has been overridden due to the use of a preamble,
1840 // make that override happen and introduce the preamble.
1841 if (OverrideMainBuffer) {
1842 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
1843 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
1844 PreprocessorOpts.PrecompiledPreambleBytes.second
1845 = PreambleEndsAtStartOfLine;
1846 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
1847 PreprocessorOpts.DisablePCHValidation = true;
1848
1849 // The stored diagnostics have the old source manager. Copy them
1850 // to our output set of stored diagnostics, updating the source
1851 // manager to the one we were given.
1852 for (unsigned I = 0, N = this->StoredDiagnostics.size(); I != N; ++I) {
1853 StoredDiagnostics.push_back(this->StoredDiagnostics[I]);
1854 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(), SourceMgr);
1855 StoredDiagnostics[I].setLocation(Loc);
1856 }
Douglas Gregor2283d792010-08-20 00:59:43 +00001857
1858 OwnedBuffers.push_back(OverrideMainBuffer);
Douglas Gregorf128fed2010-08-20 00:02:33 +00001859 } else {
1860 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
1861 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregordf95a132010-08-09 20:45:32 +00001862 }
1863
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001864 llvm::OwningPtr<SyntaxOnlyAction> Act;
1865 Act.reset(new SyntaxOnlyAction);
1866 if (Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second,
1867 Clang.getFrontendOpts().Inputs[0].first)) {
1868 Act->Execute();
1869 Act->EndSourceFile();
1870 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001871
1872 if (CompletionTimer)
1873 CompletionTimer->stopTimer();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001874
1875 // Steal back our resources.
1876 Clang.takeFileManager();
1877 Clang.takeSourceManager();
1878 Clang.takeInvocation();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001879 Clang.takeCodeCompletionConsumer();
Douglas Gregorcee235c2010-08-05 09:09:23 +00001880 CCInvocation.getLangOpts().SpellChecking = SpellChecking;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001881}
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001882
1883bool ASTUnit::Save(llvm::StringRef File) {
1884 if (getDiagnostics().hasErrorOccurred())
1885 return true;
1886
1887 // FIXME: Can we somehow regenerate the stat cache here, or do we need to
1888 // unconditionally create a stat cache when we parse the file?
1889 std::string ErrorInfo;
Benjamin Kramer1395c5d2010-08-15 16:54:31 +00001890 llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo,
1891 llvm::raw_fd_ostream::F_Binary);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001892 if (!ErrorInfo.empty() || Out.has_error())
1893 return true;
1894
1895 std::vector<unsigned char> Buffer;
1896 llvm::BitstreamWriter Stream(Buffer);
Sebastian Redla4232eb2010-08-18 23:56:21 +00001897 ASTWriter Writer(Stream);
1898 Writer.WriteAST(getSema(), 0, 0);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001899
1900 // Write the generated bitstream to "Out".
Douglas Gregorbdbb0042010-08-18 22:29:43 +00001901 if (!Buffer.empty())
1902 Out.write((char *)&Buffer.front(), Buffer.size());
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001903 Out.close();
1904 return Out.has_error();
1905}