blob: fb93fca84a3f0691b0174eaef2ca81ba2c266a13 [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"
Douglas Gregor32be4a52010-10-11 21:37:58 +000028#include "clang/Frontend/Utils.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000029#include "clang/Serialization/ASTReader.h"
Sebastian Redl7faa2ec2010-08-18 23:56:37 +000030#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000031#include "clang/Lex/HeaderSearch.h"
32#include "clang/Lex/Preprocessor.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000033#include "clang/Basic/TargetOptions.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000034#include "clang/Basic/TargetInfo.h"
35#include "clang/Basic/Diagnostic.h"
Douglas Gregor349d38c2010-08-16 23:08:34 +000036#include "llvm/ADT/StringSet.h"
Douglas Gregor4db64a42010-01-23 00:14:00 +000037#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000038#include "llvm/System/Host.h"
Benjamin Kramer4a630d32009-10-18 11:34:14 +000039#include "llvm/System/Path.h"
Douglas Gregordf95a132010-08-09 20:45:32 +000040#include "llvm/Support/raw_ostream.h"
Douglas Gregor385103b2010-07-30 20:58:08 +000041#include "llvm/Support/Timer.h"
Douglas Gregor44c181a2010-07-23 00:33:23 +000042#include <cstdlib>
Zhongxing Xuad23ebe2010-07-23 02:15:08 +000043#include <cstdio>
Douglas Gregorcc5888d2010-07-31 00:40:00 +000044#include <sys/stat.h>
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000045using namespace clang;
46
Douglas Gregor213f18b2010-10-28 15:44:59 +000047using llvm::TimeRecord;
48
49namespace {
50 class SimpleTimer {
51 bool WantTiming;
52 TimeRecord Start;
53 std::string Output;
54
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000055 public:
Douglas Gregor9dba61a2010-11-01 13:48:43 +000056 explicit SimpleTimer(bool WantTiming) : WantTiming(WantTiming) {
Douglas Gregor213f18b2010-10-28 15:44:59 +000057 if (WantTiming)
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000058 Start = TimeRecord::getCurrentTime();
Douglas Gregor213f18b2010-10-28 15:44:59 +000059 }
60
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000061 void setOutput(const llvm::Twine &Output) {
Douglas Gregor213f18b2010-10-28 15:44:59 +000062 if (WantTiming)
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000063 this->Output = Output.str();
Douglas Gregor213f18b2010-10-28 15:44:59 +000064 }
65
Douglas Gregor213f18b2010-10-28 15:44:59 +000066 ~SimpleTimer() {
67 if (WantTiming) {
68 TimeRecord Elapsed = TimeRecord::getCurrentTime();
69 Elapsed -= Start;
70 llvm::errs() << Output << ':';
71 Elapsed.print(Elapsed, llvm::errs());
72 llvm::errs() << '\n';
73 }
74 }
75 };
76}
77
Douglas Gregoreababfb2010-08-04 05:53:38 +000078/// \brief After failing to build a precompiled preamble (due to
79/// errors in the source that occurs in the preamble), the number of
80/// reparses during which we'll skip even trying to precompile the
81/// preamble.
82const unsigned DefaultPreambleRebuildInterval = 5;
83
Douglas Gregore3c60a72010-11-17 00:13:31 +000084/// \brief Tracks the number of ASTUnit objects that are currently active.
85///
86/// Used for debugging purposes only.
87static unsigned ActiveASTUnitObjects;
88
Douglas Gregor3687e9d2010-04-05 21:10:19 +000089ASTUnit::ASTUnit(bool _MainFileIsAST)
Douglas Gregorabc563f2010-07-19 21:46:24 +000090 : CaptureDiagnostics(false), MainFileIsAST(_MainFileIsAST),
Douglas Gregor213f18b2010-10-28 15:44:59 +000091 CompleteTranslationUnit(true), WantTiming(getenv("LIBCLANG_TIMING")),
92 NumStoredDiagnosticsFromDriver(0),
Douglas Gregor4cd912a2010-10-12 00:50:20 +000093 ConcurrencyCheckValue(CheckUnlocked),
Douglas Gregor671947b2010-08-19 01:33:06 +000094 PreambleRebuildCounter(0), SavedMainFileBuffer(0), PreambleBuffer(0),
Douglas Gregor727d93e2010-08-17 00:40:40 +000095 ShouldCacheCodeCompletionResults(false),
96 NumTopLevelDeclsAtLastCompletionCache(0),
Douglas Gregor8b1540c2010-08-19 00:45:44 +000097 CacheCodeCompletionCoolDown(0),
98 UnsafeToFree(false) {
Douglas Gregore3c60a72010-11-17 00:13:31 +000099 if (getenv("LIBCLANG_OBJTRACKING")) {
100 ++ActiveASTUnitObjects;
101 fprintf(stderr, "+++ %d translation units\n", ActiveASTUnitObjects);
102 }
Douglas Gregor385103b2010-07-30 20:58:08 +0000103}
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000104
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000105ASTUnit::~ASTUnit() {
Douglas Gregorbdf60622010-03-05 21:16:25 +0000106 ConcurrencyCheckValue = CheckLocked;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000107 CleanTemporaryFiles();
Douglas Gregor175c4a92010-07-23 23:58:40 +0000108 if (!PreambleFile.empty())
Douglas Gregor385103b2010-07-30 20:58:08 +0000109 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000110
111 // Free the buffers associated with remapped files. We are required to
112 // perform this operation here because we explicitly request that the
113 // compiler instance *not* free these buffers for each invocation of the
114 // parser.
115 if (Invocation.get()) {
116 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
117 for (PreprocessorOptions::remapped_file_buffer_iterator
118 FB = PPOpts.remapped_file_buffer_begin(),
119 FBEnd = PPOpts.remapped_file_buffer_end();
120 FB != FBEnd;
121 ++FB)
122 delete FB->second;
123 }
Douglas Gregor28233422010-07-27 14:52:07 +0000124
125 delete SavedMainFileBuffer;
Douglas Gregor671947b2010-08-19 01:33:06 +0000126 delete PreambleBuffer;
127
Douglas Gregor213f18b2010-10-28 15:44:59 +0000128 ClearCachedCompletionResults();
Douglas Gregore3c60a72010-11-17 00:13:31 +0000129
130 if (getenv("LIBCLANG_OBJTRACKING")) {
131 --ActiveASTUnitObjects;
132 fprintf(stderr, "--- %d translation units\n", ActiveASTUnitObjects);
133 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000134}
135
136void ASTUnit::CleanTemporaryFiles() {
Douglas Gregor313e26c2010-02-18 23:35:40 +0000137 for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I)
138 TemporaryFiles[I].eraseFromDisk();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000139 TemporaryFiles.clear();
Steve Naroffe19944c2009-10-15 22:23:48 +0000140}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000141
Douglas Gregor8071e422010-08-15 06:18:01 +0000142/// \brief Determine the set of code-completion contexts in which this
143/// declaration should be shown.
144static unsigned getDeclShowContexts(NamedDecl *ND,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000145 const LangOptions &LangOpts,
146 bool &IsNestedNameSpecifier) {
147 IsNestedNameSpecifier = false;
148
Douglas Gregor8071e422010-08-15 06:18:01 +0000149 if (isa<UsingShadowDecl>(ND))
150 ND = dyn_cast<NamedDecl>(ND->getUnderlyingDecl());
151 if (!ND)
152 return 0;
153
154 unsigned Contexts = 0;
155 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND) ||
156 isa<ClassTemplateDecl>(ND) || isa<TemplateTemplateParmDecl>(ND)) {
157 // Types can appear in these contexts.
158 if (LangOpts.CPlusPlus || !isa<TagDecl>(ND))
159 Contexts |= (1 << (CodeCompletionContext::CCC_TopLevel - 1))
160 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
161 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
162 | (1 << (CodeCompletionContext::CCC_Statement - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000163 | (1 << (CodeCompletionContext::CCC_Type - 1))
164 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000165
166 // In C++, types can appear in expressions contexts (for functional casts).
167 if (LangOpts.CPlusPlus)
168 Contexts |= (1 << (CodeCompletionContext::CCC_Expression - 1));
169
170 // In Objective-C, message sends can send interfaces. In Objective-C++,
171 // all types are available due to functional casts.
172 if (LangOpts.CPlusPlus || isa<ObjCInterfaceDecl>(ND))
173 Contexts |= (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
174
175 // Deal with tag names.
176 if (isa<EnumDecl>(ND)) {
177 Contexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1));
178
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000179 // Part of the nested-name-specifier in C++0x.
Douglas Gregor8071e422010-08-15 06:18:01 +0000180 if (LangOpts.CPlusPlus0x)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000181 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000182 } else if (RecordDecl *Record = dyn_cast<RecordDecl>(ND)) {
183 if (Record->isUnion())
184 Contexts |= (1 << (CodeCompletionContext::CCC_UnionTag - 1));
185 else
186 Contexts |= (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
187
Douglas Gregor8071e422010-08-15 06:18:01 +0000188 if (LangOpts.CPlusPlus)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000189 IsNestedNameSpecifier = true;
Douglas Gregor52779fb2010-09-23 23:01:17 +0000190 } else if (isa<ClassTemplateDecl>(ND))
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000191 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000192 } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
193 // Values can appear in these contexts.
194 Contexts = (1 << (CodeCompletionContext::CCC_Statement - 1))
195 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000196 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
Douglas Gregor8071e422010-08-15 06:18:01 +0000197 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
198 } else if (isa<ObjCProtocolDecl>(ND)) {
199 Contexts = (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1));
200 } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000201 Contexts = (1 << (CodeCompletionContext::CCC_Namespace - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000202
203 // Part of the nested-name-specifier.
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000204 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000205 }
206
207 return Contexts;
208}
209
Douglas Gregor87c08a52010-08-13 22:48:40 +0000210void ASTUnit::CacheCodeCompletionResults() {
211 if (!TheSema)
212 return;
213
Douglas Gregor213f18b2010-10-28 15:44:59 +0000214 SimpleTimer Timer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +0000215 Timer.setOutput("Cache global code completions for " + getMainFileName());
Douglas Gregor87c08a52010-08-13 22:48:40 +0000216
217 // Clear out the previous results.
218 ClearCachedCompletionResults();
219
220 // Gather the set of global code completions.
John McCall0a2c5e22010-08-25 06:19:51 +0000221 typedef CodeCompletionResult Result;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000222 llvm::SmallVector<Result, 8> Results;
223 TheSema->GatherGlobalCodeCompletions(Results);
224
225 // Translate global code completions into cached completions.
Douglas Gregorf5586f62010-08-16 18:08:11 +0000226 llvm::DenseMap<CanQualType, unsigned> CompletionTypes;
227
Douglas Gregor87c08a52010-08-13 22:48:40 +0000228 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
229 switch (Results[I].Kind) {
Douglas Gregor8071e422010-08-15 06:18:01 +0000230 case Result::RK_Declaration: {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000231 bool IsNestedNameSpecifier = false;
Douglas Gregor8071e422010-08-15 06:18:01 +0000232 CachedCodeCompletionResult CachedResult;
233 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema);
234 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000235 Ctx->getLangOptions(),
236 IsNestedNameSpecifier);
Douglas Gregor8071e422010-08-15 06:18:01 +0000237 CachedResult.Priority = Results[I].Priority;
238 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000239 CachedResult.Availability = Results[I].Availability;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000240
Douglas Gregorf5586f62010-08-16 18:08:11 +0000241 // Keep track of the type of this completion in an ASTContext-agnostic
242 // way.
Douglas Gregorc4421e92010-08-16 16:46:30 +0000243 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
Douglas Gregorf5586f62010-08-16 18:08:11 +0000244 if (UsageType.isNull()) {
Douglas Gregorc4421e92010-08-16 16:46:30 +0000245 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000246 CachedResult.Type = 0;
247 } else {
248 CanQualType CanUsageType
249 = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
250 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
251
252 // Determine whether we have already seen this type. If so, we save
253 // ourselves the work of formatting the type string by using the
254 // temporary, CanQualType-based hash table to find the associated value.
255 unsigned &TypeValue = CompletionTypes[CanUsageType];
256 if (TypeValue == 0) {
257 TypeValue = CompletionTypes.size();
258 CachedCompletionTypes[QualType(CanUsageType).getAsString()]
259 = TypeValue;
260 }
261
262 CachedResult.Type = TypeValue;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000263 }
Douglas Gregorf5586f62010-08-16 18:08:11 +0000264
Douglas Gregor8071e422010-08-15 06:18:01 +0000265 CachedCompletionResults.push_back(CachedResult);
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000266
267 /// Handle nested-name-specifiers in C++.
268 if (TheSema->Context.getLangOptions().CPlusPlus &&
269 IsNestedNameSpecifier && !Results[I].StartsNestedNameSpecifier) {
270 // The contexts in which a nested-name-specifier can appear in C++.
271 unsigned NNSContexts
272 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
273 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
274 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
275 | (1 << (CodeCompletionContext::CCC_Statement - 1))
276 | (1 << (CodeCompletionContext::CCC_Expression - 1))
277 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
278 | (1 << (CodeCompletionContext::CCC_EnumTag - 1))
279 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
280 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1))
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000281 | (1 << (CodeCompletionContext::CCC_Type - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000282 | (1 << (CodeCompletionContext::CCC_PotentiallyQualifiedName - 1))
283 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000284
285 if (isa<NamespaceDecl>(Results[I].Declaration) ||
286 isa<NamespaceAliasDecl>(Results[I].Declaration))
287 NNSContexts |= (1 << (CodeCompletionContext::CCC_Namespace - 1));
288
289 if (unsigned RemainingContexts
290 = NNSContexts & ~CachedResult.ShowInContexts) {
291 // If there any contexts where this completion can be a
292 // nested-name-specifier but isn't already an option, create a
293 // nested-name-specifier completion.
294 Results[I].StartsNestedNameSpecifier = true;
295 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema);
296 CachedResult.ShowInContexts = RemainingContexts;
297 CachedResult.Priority = CCP_NestedNameSpecifier;
298 CachedResult.TypeClass = STC_Void;
299 CachedResult.Type = 0;
300 CachedCompletionResults.push_back(CachedResult);
301 }
302 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000303 break;
Douglas Gregor8071e422010-08-15 06:18:01 +0000304 }
305
Douglas Gregor87c08a52010-08-13 22:48:40 +0000306 case Result::RK_Keyword:
307 case Result::RK_Pattern:
308 // Ignore keywords and patterns; we don't care, since they are so
309 // easily regenerated.
310 break;
311
312 case Result::RK_Macro: {
313 CachedCodeCompletionResult CachedResult;
314 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema);
315 CachedResult.ShowInContexts
316 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
317 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
318 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
319 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
320 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
321 | (1 << (CodeCompletionContext::CCC_Statement - 1))
322 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000323 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
Douglas Gregorf29c5232010-08-24 22:20:20 +0000324 | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000325 | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1))
326 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
327
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000328
Douglas Gregor87c08a52010-08-13 22:48:40 +0000329 CachedResult.Priority = Results[I].Priority;
330 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000331 CachedResult.Availability = Results[I].Availability;
Douglas Gregor1827e102010-08-16 16:18:59 +0000332 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000333 CachedResult.Type = 0;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000334 CachedCompletionResults.push_back(CachedResult);
335 break;
336 }
337 }
338 Results[I].Destroy();
339 }
340
Douglas Gregor727d93e2010-08-17 00:40:40 +0000341 // Make a note of the state when we performed this caching.
342 NumTopLevelDeclsAtLastCompletionCache = top_level_size();
Douglas Gregor87c08a52010-08-13 22:48:40 +0000343}
344
345void ASTUnit::ClearCachedCompletionResults() {
346 for (unsigned I = 0, N = CachedCompletionResults.size(); I != N; ++I)
347 delete CachedCompletionResults[I].Completion;
348 CachedCompletionResults.clear();
Douglas Gregorf5586f62010-08-16 18:08:11 +0000349 CachedCompletionTypes.clear();
Douglas Gregor87c08a52010-08-13 22:48:40 +0000350}
351
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000352namespace {
353
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000354/// \brief Gathers information from ASTReader that will be used to initialize
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000355/// a Preprocessor.
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000356class ASTInfoCollector : public ASTReaderListener {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000357 LangOptions &LangOpt;
358 HeaderSearch &HSI;
359 std::string &TargetTriple;
360 std::string &Predefines;
361 unsigned &Counter;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000363 unsigned NumHeaderInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000364
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000365public:
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000366 ASTInfoCollector(LangOptions &LangOpt, HeaderSearch &HSI,
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000367 std::string &TargetTriple, std::string &Predefines,
368 unsigned &Counter)
369 : LangOpt(LangOpt), HSI(HSI), TargetTriple(TargetTriple),
370 Predefines(Predefines), Counter(Counter), NumHeaderInfos(0) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000372 virtual bool ReadLanguageOptions(const LangOptions &LangOpts) {
373 LangOpt = LangOpts;
374 return false;
375 }
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Daniel Dunbardc3c0d22009-11-11 00:52:11 +0000377 virtual bool ReadTargetTriple(llvm::StringRef Triple) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000378 TargetTriple = Triple;
379 return false;
380 }
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000382 virtual bool ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000383 llvm::StringRef OriginalFileName,
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000384 std::string &SuggestedPredefines) {
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000385 Predefines = Buffers[0].Data;
386 for (unsigned I = 1, N = Buffers.size(); I != N; ++I) {
387 Predefines += Buffers[I].Data;
388 }
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000389 return false;
390 }
Mike Stump1eb44332009-09-09 15:08:12 +0000391
Douglas Gregorec1afbf2010-03-16 19:09:18 +0000392 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000393 HSI.setHeaderFileInfoForUID(HFI, NumHeaderInfos++);
394 }
Mike Stump1eb44332009-09-09 15:08:12 +0000395
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000396 virtual void ReadCounter(unsigned Value) {
397 Counter = Value;
398 }
399};
400
Douglas Gregora88084b2010-02-18 18:08:43 +0000401class StoredDiagnosticClient : public DiagnosticClient {
402 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags;
403
404public:
405 explicit StoredDiagnosticClient(
406 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
407 : StoredDiags(StoredDiags) { }
408
409 virtual void HandleDiagnostic(Diagnostic::Level Level,
410 const DiagnosticInfo &Info);
411};
412
413/// \brief RAII object that optionally captures diagnostics, if
414/// there is no diagnostic client to capture them already.
415class CaptureDroppedDiagnostics {
416 Diagnostic &Diags;
417 StoredDiagnosticClient Client;
418 DiagnosticClient *PreviousClient;
419
420public:
421 CaptureDroppedDiagnostics(bool RequestCapture, Diagnostic &Diags,
Douglas Gregore47be3e2010-11-11 00:39:14 +0000422 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000423 : Diags(Diags), Client(StoredDiags), PreviousClient(0)
Douglas Gregora88084b2010-02-18 18:08:43 +0000424 {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000425 if (RequestCapture || Diags.getClient() == 0) {
426 PreviousClient = Diags.takeClient();
Douglas Gregora88084b2010-02-18 18:08:43 +0000427 Diags.setClient(&Client);
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000428 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000429 }
430
431 ~CaptureDroppedDiagnostics() {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000432 if (Diags.getClient() == &Client) {
433 Diags.takeClient();
434 Diags.setClient(PreviousClient);
435 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000436 }
437};
438
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000439} // anonymous namespace
440
Douglas Gregora88084b2010-02-18 18:08:43 +0000441void StoredDiagnosticClient::HandleDiagnostic(Diagnostic::Level Level,
442 const DiagnosticInfo &Info) {
443 StoredDiags.push_back(StoredDiagnostic(Level, Info));
444}
445
Steve Naroff77accc12009-09-03 18:19:54 +0000446const std::string &ASTUnit::getOriginalSourceFileName() {
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000447 return OriginalSourceFile;
Steve Naroff77accc12009-09-03 18:19:54 +0000448}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000449
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000450const std::string &ASTUnit::getASTFileName() {
451 assert(isMainFileAST() && "Not an ASTUnit from an AST file!");
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000452 return static_cast<ASTReader *>(Ctx->getExternalSource())->getFileName();
Steve Naroffe19944c2009-10-15 22:23:48 +0000453}
454
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000455llvm::MemoryBuffer *ASTUnit::getBufferForFile(llvm::StringRef Filename,
456 std::string *ErrorStr,
457 int64_t FileSize,
458 struct stat *FileInfo) {
459 return FileMgr->getBufferForFile(Filename, FileSystemOpts,
460 ErrorStr, FileSize, FileInfo);
461}
462
Douglas Gregore47be3e2010-11-11 00:39:14 +0000463/// \brief Configure the diagnostics object for use with ASTUnit.
464void ASTUnit::ConfigureDiags(llvm::IntrusiveRefCntPtr<Diagnostic> &Diags,
465 ASTUnit &AST, bool CaptureDiagnostics) {
466 if (!Diags.getPtr()) {
467 // No diagnostics engine was provided, so create our own diagnostics object
468 // with the default options.
469 DiagnosticOptions DiagOpts;
470 DiagnosticClient *Client = 0;
471 if (CaptureDiagnostics)
472 Client = new StoredDiagnosticClient(AST.StoredDiagnostics);
473 Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0, Client);
474 } else if (CaptureDiagnostics) {
475 Diags->setClient(new StoredDiagnosticClient(AST.StoredDiagnostics));
476 }
477}
478
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000479ASTUnit *ASTUnit::LoadFromASTFile(const std::string &Filename,
Douglas Gregor28019772010-04-05 23:52:57 +0000480 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000481 const FileSystemOptions &FileSystemOpts,
Ted Kremenek5cf48762009-10-17 00:34:24 +0000482 bool OnlyLocalDecls,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000483 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +0000484 unsigned NumRemappedFiles,
485 bool CaptureDiagnostics) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000486 llvm::OwningPtr<ASTUnit> AST(new ASTUnit(true));
Douglas Gregore47be3e2010-11-11 00:39:14 +0000487 ConfigureDiags(Diags, *AST, CaptureDiagnostics);
Douglas Gregorabc563f2010-07-19 21:46:24 +0000488
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000489 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +0000490 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor28019772010-04-05 23:52:57 +0000491 AST->Diagnostics = Diags;
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000492 AST->FileSystemOpts = FileSystemOpts;
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000493 AST->FileMgr.reset(new FileManager);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000494 AST->SourceMgr.reset(new SourceManager(AST->getDiagnostics(),
495 AST->getFileManager(),
496 AST->getFileSystemOpts()));
497 AST->HeaderInfo.reset(new HeaderSearch(AST->getFileManager(),
498 AST->getFileSystemOpts()));
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000499
Douglas Gregor4db64a42010-01-23 00:14:00 +0000500 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
501 // Create the file entry for the file that we're mapping from.
502 const FileEntry *FromFile
503 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
504 RemappedFiles[I].second->getBufferSize(),
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000505 0,
506 AST->getFileSystemOpts());
Douglas Gregor4db64a42010-01-23 00:14:00 +0000507 if (!FromFile) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000508 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
Douglas Gregor4db64a42010-01-23 00:14:00 +0000509 << RemappedFiles[I].first;
Douglas Gregorc8dfe5e2010-02-27 01:32:48 +0000510 delete RemappedFiles[I].second;
Douglas Gregor4db64a42010-01-23 00:14:00 +0000511 continue;
512 }
513
514 // Override the contents of the "from" file with the contents of
515 // the "to" file.
516 AST->getSourceManager().overrideFileContents(FromFile,
517 RemappedFiles[I].second);
518 }
519
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000520 // Gather Info for preprocessor construction later on.
Mike Stump1eb44332009-09-09 15:08:12 +0000521
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000522 LangOptions LangInfo;
523 HeaderSearch &HeaderInfo = *AST->HeaderInfo.get();
524 std::string TargetTriple;
525 std::string Predefines;
526 unsigned Counter;
527
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000528 llvm::OwningPtr<ASTReader> Reader;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000529
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000530 Reader.reset(new ASTReader(AST->getSourceManager(), AST->getFileManager(),
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000531 AST->getFileSystemOpts(), AST->getDiagnostics()));
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000532 Reader->setListener(new ASTInfoCollector(LangInfo, HeaderInfo, TargetTriple,
Daniel Dunbarcc318932009-09-03 05:59:35 +0000533 Predefines, Counter));
534
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +0000535 switch (Reader->ReadAST(Filename, ASTReader::MainFile)) {
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000536 case ASTReader::Success:
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000537 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000538
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000539 case ASTReader::Failure:
540 case ASTReader::IgnorePCH:
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000541 AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000542 return NULL;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000543 }
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000545 AST->OriginalSourceFile = Reader->getOriginalSourceFile();
546
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000547 // AST file loaded successfully. Now create the preprocessor.
Mike Stump1eb44332009-09-09 15:08:12 +0000548
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000549 // Get information about the target being compiled for.
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000550 //
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000551 // FIXME: This is broken, we should store the TargetOptions in the AST file.
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000552 TargetOptions TargetOpts;
553 TargetOpts.ABI = "";
John McCall875ab102010-08-22 06:43:33 +0000554 TargetOpts.CXXABI = "";
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000555 TargetOpts.CPU = "";
556 TargetOpts.Features.clear();
557 TargetOpts.Triple = TargetTriple;
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000558 AST->Target.reset(TargetInfo::CreateTargetInfo(AST->getDiagnostics(),
559 TargetOpts));
560 AST->PP.reset(new Preprocessor(AST->getDiagnostics(), LangInfo,
561 *AST->Target.get(),
Daniel Dunbar31b87d82009-09-21 03:03:39 +0000562 AST->getSourceManager(), HeaderInfo));
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000563 Preprocessor &PP = *AST->PP.get();
564
Daniel Dunbard5b61262009-09-21 03:03:47 +0000565 PP.setPredefines(Reader->getSuggestedPredefines());
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000566 PP.setCounterValue(Counter);
Daniel Dunbarcc318932009-09-03 05:59:35 +0000567 Reader->setPreprocessor(PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000568
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000569 // Create and initialize the ASTContext.
570
571 AST->Ctx.reset(new ASTContext(LangInfo,
Daniel Dunbar31b87d82009-09-21 03:03:39 +0000572 AST->getSourceManager(),
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000573 *AST->Target.get(),
574 PP.getIdentifierTable(),
575 PP.getSelectorTable(),
576 PP.getBuiltinInfo(),
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000577 /* size_reserve = */0));
578 ASTContext &Context = *AST->Ctx.get();
Mike Stump1eb44332009-09-09 15:08:12 +0000579
Daniel Dunbarcc318932009-09-03 05:59:35 +0000580 Reader->InitializeContext(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000581
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000582 // Attach the AST reader to the AST context as an external AST
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000583 // source, so that declarations will be deserialized from the
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000584 // AST file as needed.
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000585 ASTReader *ReaderPtr = Reader.get();
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000586 llvm::OwningPtr<ExternalASTSource> Source(Reader.take());
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000587 Context.setExternalSource(Source);
588
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000589 // Create an AST consumer, even though it isn't used.
590 AST->Consumer.reset(new ASTConsumer);
591
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000592 // Create a semantic analysis object and tell the AST reader about it.
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000593 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
594 AST->TheSema->Initialize();
595 ReaderPtr->InitializeSema(*AST->TheSema);
596
Mike Stump1eb44332009-09-09 15:08:12 +0000597 return AST.take();
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000598}
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000599
600namespace {
601
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000602class TopLevelDeclTrackerConsumer : public ASTConsumer {
603 ASTUnit &Unit;
604
605public:
606 TopLevelDeclTrackerConsumer(ASTUnit &_Unit) : Unit(_Unit) {}
607
608 void HandleTopLevelDecl(DeclGroupRef D) {
Ted Kremenekda5a4282010-05-03 20:16:35 +0000609 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
610 Decl *D = *it;
611 // FIXME: Currently ObjC method declarations are incorrectly being
612 // reported as top-level declarations, even though their DeclContext
613 // is the containing ObjC @interface/@implementation. This is a
614 // fundamental problem in the parser right now.
615 if (isa<ObjCMethodDecl>(D))
616 continue;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000617 Unit.addTopLevelDecl(D);
Ted Kremenekda5a4282010-05-03 20:16:35 +0000618 }
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000619 }
Sebastian Redl27372b42010-08-11 18:52:41 +0000620
621 // We're not interested in "interesting" decls.
622 void HandleInterestingDecl(DeclGroupRef) {}
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000623};
624
625class TopLevelDeclTrackerAction : public ASTFrontendAction {
626public:
627 ASTUnit &Unit;
628
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000629 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
630 llvm::StringRef InFile) {
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000631 return new TopLevelDeclTrackerConsumer(Unit);
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000632 }
633
634public:
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000635 TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
636
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000637 virtual bool hasCodeCompletionSupport() const { return false; }
Douglas Gregordf95a132010-08-09 20:45:32 +0000638 virtual bool usesCompleteTranslationUnit() {
639 return Unit.isCompleteTranslationUnit();
640 }
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000641};
642
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000643class PrecompilePreambleConsumer : public PCHGenerator {
644 ASTUnit &Unit;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000645 std::vector<Decl *> TopLevelDecls;
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000646
647public:
648 PrecompilePreambleConsumer(ASTUnit &Unit,
649 const Preprocessor &PP, bool Chaining,
650 const char *isysroot, llvm::raw_ostream *Out)
651 : PCHGenerator(PP, Chaining, isysroot, Out), Unit(Unit) { }
652
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000653 virtual void HandleTopLevelDecl(DeclGroupRef D) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000654 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
655 Decl *D = *it;
656 // FIXME: Currently ObjC method declarations are incorrectly being
657 // reported as top-level declarations, even though their DeclContext
658 // is the containing ObjC @interface/@implementation. This is a
659 // fundamental problem in the parser right now.
660 if (isa<ObjCMethodDecl>(D))
661 continue;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000662 TopLevelDecls.push_back(D);
663 }
664 }
665
666 virtual void HandleTranslationUnit(ASTContext &Ctx) {
667 PCHGenerator::HandleTranslationUnit(Ctx);
668 if (!Unit.getDiagnostics().hasErrorOccurred()) {
669 // Translate the top-level declarations we captured during
670 // parsing into declaration IDs in the precompiled
671 // preamble. This will allow us to deserialize those top-level
672 // declarations when requested.
673 for (unsigned I = 0, N = TopLevelDecls.size(); I != N; ++I)
674 Unit.addTopLevelDeclFromPreamble(
675 getWriter().getDeclID(TopLevelDecls[I]));
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000676 }
677 }
678};
679
680class PrecompilePreambleAction : public ASTFrontendAction {
681 ASTUnit &Unit;
682
683public:
684 explicit PrecompilePreambleAction(ASTUnit &Unit) : Unit(Unit) {}
685
686 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
687 llvm::StringRef InFile) {
688 std::string Sysroot;
689 llvm::raw_ostream *OS = 0;
690 bool Chaining;
691 if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot,
692 OS, Chaining))
693 return 0;
694
695 const char *isysroot = CI.getFrontendOpts().RelocatablePCH ?
696 Sysroot.c_str() : 0;
697 return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Chaining,
698 isysroot, OS);
699 }
700
701 virtual bool hasCodeCompletionSupport() const { return false; }
702 virtual bool hasASTFileSupport() const { return false; }
Douglas Gregordf95a132010-08-09 20:45:32 +0000703 virtual bool usesCompleteTranslationUnit() { return false; }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000704};
705
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000706}
707
Douglas Gregorabc563f2010-07-19 21:46:24 +0000708/// Parse the source file into a translation unit using the given compiler
709/// invocation, replacing the current translation unit.
710///
711/// \returns True if a failure occurred that causes the ASTUnit not to
712/// contain any translation-unit information, false otherwise.
Douglas Gregor754f3492010-07-24 00:38:13 +0000713bool ASTUnit::Parse(llvm::MemoryBuffer *OverrideMainBuffer) {
Douglas Gregor28233422010-07-27 14:52:07 +0000714 delete SavedMainFileBuffer;
715 SavedMainFileBuffer = 0;
716
Douglas Gregor671947b2010-08-19 01:33:06 +0000717 if (!Invocation.get()) {
718 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000719 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000720 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000721
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000722 // Create the compiler instance to use for building the AST.
Daniel Dunbarcb6dda12009-12-02 08:43:56 +0000723 CompilerInstance Clang;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000724 Clang.setInvocation(Invocation.take());
725 OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second;
726
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000727 // Set up diagnostics, capturing any diagnostics that would
728 // otherwise be dropped.
Douglas Gregorabc563f2010-07-19 21:46:24 +0000729 Clang.setDiagnostics(&getDiagnostics());
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000730
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000731 // Create the target instance.
732 Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(),
733 Clang.getTargetOpts()));
Douglas Gregor671947b2010-08-19 01:33:06 +0000734 if (!Clang.hasTarget()) {
735 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000736 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000737 }
738
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000739 // Inform the target of the language options.
740 //
741 // FIXME: We shouldn't need to do this, the target should be immutable once
742 // created. This complexity should be lifted elsewhere.
743 Clang.getTarget().setForcedLangOptions(Clang.getLangOpts());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000744
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000745 assert(Clang.getFrontendOpts().Inputs.size() == 1 &&
746 "Invocation must have exactly one source file!");
Daniel Dunbarc34ce3f2010-06-07 23:22:09 +0000747 assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST &&
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000748 "FIXME: AST inputs not yet supported here!");
Daniel Dunbarfaddc3e2010-06-07 23:26:47 +0000749 assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
750 "IR inputs not support here!");
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000751
Douglas Gregorabc563f2010-07-19 21:46:24 +0000752 // Configure the various subsystems.
753 // FIXME: Should we retain the previous file manager?
754 FileMgr.reset(new FileManager);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000755 FileSystemOpts = Clang.getFileSystemOpts();
756 SourceMgr.reset(new SourceManager(getDiagnostics(), *FileMgr, FileSystemOpts));
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000757 TheSema.reset();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000758 Ctx.reset();
759 PP.reset();
760
761 // Clear out old caches and data.
762 TopLevelDecls.clear();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000763 CleanTemporaryFiles();
764 PreprocessedEntitiesByFile.clear();
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000765
Douglas Gregorf128fed2010-08-20 00:02:33 +0000766 if (!OverrideMainBuffer) {
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000767 StoredDiagnostics.erase(
768 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
769 StoredDiagnostics.end());
Douglas Gregorf128fed2010-08-20 00:02:33 +0000770 TopLevelDeclsInPreamble.clear();
771 }
772
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000773 // Create a file manager object to provide access to and cache the filesystem.
Douglas Gregorabc563f2010-07-19 21:46:24 +0000774 Clang.setFileManager(&getFileManager());
775
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000776 // Create the source manager.
Douglas Gregorabc563f2010-07-19 21:46:24 +0000777 Clang.setSourceManager(&getSourceManager());
778
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000779 // If the main file has been overridden due to the use of a preamble,
780 // make that override happen and introduce the preamble.
781 PreprocessorOptions &PreprocessorOpts = Clang.getPreprocessorOpts();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000782 std::string PriorImplicitPCHInclude;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000783 if (OverrideMainBuffer) {
784 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
785 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
786 PreprocessorOpts.PrecompiledPreambleBytes.second
787 = PreambleEndsAtStartOfLine;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000788 PriorImplicitPCHInclude = PreprocessorOpts.ImplicitPCHInclude;
Douglas Gregor385103b2010-07-30 20:58:08 +0000789 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000790 PreprocessorOpts.DisablePCHValidation = true;
Douglas Gregor28233422010-07-27 14:52:07 +0000791
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000792 // The stored diagnostic has the old source manager in it; update
793 // the locations to refer into the new source manager. Since we've
794 // been careful to make sure that the source manager's state
795 // before and after are identical, so that we can reuse the source
796 // location itself.
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000797 for (unsigned I = NumStoredDiagnosticsFromDriver,
798 N = StoredDiagnostics.size();
799 I < N; ++I) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000800 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(),
801 getSourceManager());
802 StoredDiagnostics[I].setLocation(Loc);
803 }
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000804
805 // Keep track of the override buffer;
806 SavedMainFileBuffer = OverrideMainBuffer;
Douglas Gregorf128fed2010-08-20 00:02:33 +0000807 } else {
808 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
809 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000810 }
811
Douglas Gregorabc563f2010-07-19 21:46:24 +0000812 llvm::OwningPtr<TopLevelDeclTrackerAction> Act;
813 Act.reset(new TopLevelDeclTrackerAction(*this));
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000814 if (!Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second,
Daniel Dunbard3598a62010-06-07 23:23:06 +0000815 Clang.getFrontendOpts().Inputs[0].first))
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000816 goto error;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000817
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000818 Act->Execute();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000819
Daniel Dunbar64a32ba2009-12-01 21:57:33 +0000820 // Steal the created target, context, and preprocessor, and take back the
821 // source and file managers.
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000822 TheSema.reset(Clang.takeSema());
823 Consumer.reset(Clang.takeASTConsumer());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000824 Ctx.reset(Clang.takeASTContext());
825 PP.reset(Clang.takePreprocessor());
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000826 Clang.takeSourceManager();
827 Clang.takeFileManager();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000828 Target.reset(Clang.takeTarget());
829
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000830 Act->EndSourceFile();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000831
832 // Remove the overridden buffer we used for the preamble.
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000833 if (OverrideMainBuffer) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000834 PreprocessorOpts.eraseRemappedFile(
835 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000836 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
837 }
838
Douglas Gregorabc563f2010-07-19 21:46:24 +0000839 Invocation.reset(Clang.takeInvocation());
840 return false;
841
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000842error:
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000843 // Remove the overridden buffer we used for the preamble.
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000844 if (OverrideMainBuffer) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000845 PreprocessorOpts.eraseRemappedFile(
846 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000847 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
Douglas Gregor671947b2010-08-19 01:33:06 +0000848 delete OverrideMainBuffer;
Douglas Gregor37cf6632010-10-06 21:11:08 +0000849 SavedMainFileBuffer = 0;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000850 }
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000851
Douglas Gregord54eb442010-10-12 16:25:54 +0000852 StoredDiagnostics.clear();
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000853 Clang.takeSourceManager();
854 Clang.takeFileManager();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000855 Invocation.reset(Clang.takeInvocation());
856 return true;
857}
858
Douglas Gregor44c181a2010-07-23 00:33:23 +0000859/// \brief Simple function to retrieve a path for a preamble precompiled header.
860static std::string GetPreamblePCHPath() {
861 // FIXME: This is lame; sys::Path should provide this function (in particular,
862 // it should know how to find the temporary files dir).
863 // FIXME: This is really lame. I copied this code from the Driver!
Douglas Gregor424668c2010-09-11 18:05:19 +0000864 // FIXME: This is a hack so that we can override the preamble file during
865 // crash-recovery testing, which is the only case where the preamble files
866 // are not necessarily cleaned up.
867 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE");
868 if (TmpFile)
869 return TmpFile;
870
Douglas Gregor44c181a2010-07-23 00:33:23 +0000871 std::string Error;
872 const char *TmpDir = ::getenv("TMPDIR");
873 if (!TmpDir)
874 TmpDir = ::getenv("TEMP");
875 if (!TmpDir)
876 TmpDir = ::getenv("TMP");
Douglas Gregorc6cb2b02010-09-11 17:51:16 +0000877#ifdef LLVM_ON_WIN32
878 if (!TmpDir)
879 TmpDir = ::getenv("USERPROFILE");
880#endif
Douglas Gregor44c181a2010-07-23 00:33:23 +0000881 if (!TmpDir)
882 TmpDir = "/tmp";
883 llvm::sys::Path P(TmpDir);
Douglas Gregorc6cb2b02010-09-11 17:51:16 +0000884 P.createDirectoryOnDisk(true);
Douglas Gregor44c181a2010-07-23 00:33:23 +0000885 P.appendComponent("preamble");
Douglas Gregor6bf18302010-08-11 13:06:56 +0000886 P.appendSuffix("pch");
Douglas Gregor44c181a2010-07-23 00:33:23 +0000887 if (P.createTemporaryFileOnDisk())
888 return std::string();
889
Douglas Gregor44c181a2010-07-23 00:33:23 +0000890 return P.str();
891}
892
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000893/// \brief Compute the preamble for the main file, providing the source buffer
894/// that corresponds to the main file along with a pair (bytes, start-of-line)
895/// that describes the preamble.
896std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
Douglas Gregordf95a132010-08-09 20:45:32 +0000897ASTUnit::ComputePreamble(CompilerInvocation &Invocation,
898 unsigned MaxLines, bool &CreatedBuffer) {
Douglas Gregor175c4a92010-07-23 23:58:40 +0000899 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
Douglas Gregor44c181a2010-07-23 00:33:23 +0000900 PreprocessorOptions &PreprocessorOpts
Douglas Gregor175c4a92010-07-23 23:58:40 +0000901 = Invocation.getPreprocessorOpts();
902 CreatedBuffer = false;
903
Douglas Gregor44c181a2010-07-23 00:33:23 +0000904 // Try to determine if the main file has been remapped, either from the
905 // command line (to another file) or directly through the compiler invocation
906 // (to a memory buffer).
Douglas Gregor175c4a92010-07-23 23:58:40 +0000907 llvm::MemoryBuffer *Buffer = 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000908 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
909 if (const llvm::sys::FileStatus *MainFileStatus = MainFilePath.getFileStatus()) {
910 // Check whether there is a file-file remapping of the main file
911 for (PreprocessorOptions::remapped_file_iterator
Douglas Gregor175c4a92010-07-23 23:58:40 +0000912 M = PreprocessorOpts.remapped_file_begin(),
913 E = PreprocessorOpts.remapped_file_end();
Douglas Gregor44c181a2010-07-23 00:33:23 +0000914 M != E;
915 ++M) {
916 llvm::sys::PathWithStatus MPath(M->first);
917 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
918 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
919 // We found a remapping. Try to load the resulting, remapped source.
Douglas Gregor175c4a92010-07-23 23:58:40 +0000920 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +0000921 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +0000922 CreatedBuffer = false;
923 }
924
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000925 Buffer = getBufferForFile(M->second);
Douglas Gregor44c181a2010-07-23 00:33:23 +0000926 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000927 return std::make_pair((llvm::MemoryBuffer*)0,
928 std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +0000929 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000930 }
931 }
932 }
933
934 // Check whether there is a file-buffer remapping. It supercedes the
935 // file-file remapping.
936 for (PreprocessorOptions::remapped_file_buffer_iterator
937 M = PreprocessorOpts.remapped_file_buffer_begin(),
938 E = PreprocessorOpts.remapped_file_buffer_end();
939 M != E;
940 ++M) {
941 llvm::sys::PathWithStatus MPath(M->first);
942 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
943 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
944 // We found a remapping.
Douglas Gregor175c4a92010-07-23 23:58:40 +0000945 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +0000946 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +0000947 CreatedBuffer = false;
948 }
Douglas Gregor44c181a2010-07-23 00:33:23 +0000949
Douglas Gregor175c4a92010-07-23 23:58:40 +0000950 Buffer = const_cast<llvm::MemoryBuffer *>(M->second);
Douglas Gregor44c181a2010-07-23 00:33:23 +0000951 }
952 }
Douglas Gregor175c4a92010-07-23 23:58:40 +0000953 }
Douglas Gregor44c181a2010-07-23 00:33:23 +0000954 }
955
956 // If the main source file was not remapped, load it now.
957 if (!Buffer) {
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000958 Buffer = getBufferForFile(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +0000959 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000960 return std::make_pair((llvm::MemoryBuffer*)0, std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +0000961
962 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +0000963 }
964
Douglas Gregordf95a132010-08-09 20:45:32 +0000965 return std::make_pair(Buffer, Lexer::ComputePreamble(Buffer, MaxLines));
Douglas Gregor175c4a92010-07-23 23:58:40 +0000966}
967
Douglas Gregor754f3492010-07-24 00:38:13 +0000968static llvm::MemoryBuffer *CreatePaddedMainFileBuffer(llvm::MemoryBuffer *Old,
Douglas Gregor754f3492010-07-24 00:38:13 +0000969 unsigned NewSize,
970 llvm::StringRef NewName) {
971 llvm::MemoryBuffer *Result
972 = llvm::MemoryBuffer::getNewUninitMemBuffer(NewSize, NewName);
973 memcpy(const_cast<char*>(Result->getBufferStart()),
974 Old->getBufferStart(), Old->getBufferSize());
975 memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000976 ' ', NewSize - Old->getBufferSize() - 1);
977 const_cast<char*>(Result->getBufferEnd())[-1] = '\n';
Douglas Gregor754f3492010-07-24 00:38:13 +0000978
Douglas Gregor754f3492010-07-24 00:38:13 +0000979 return Result;
980}
981
Douglas Gregor175c4a92010-07-23 23:58:40 +0000982/// \brief Attempt to build or re-use a precompiled preamble when (re-)parsing
983/// the source file.
984///
985/// This routine will compute the preamble of the main source file. If a
986/// non-trivial preamble is found, it will precompile that preamble into a
987/// precompiled header so that the precompiled preamble can be used to reduce
988/// reparsing time. If a precompiled preamble has already been constructed,
989/// this routine will determine if it is still valid and, if so, avoid
990/// rebuilding the precompiled preamble.
991///
Douglas Gregordf95a132010-08-09 20:45:32 +0000992/// \param AllowRebuild When true (the default), this routine is
993/// allowed to rebuild the precompiled preamble if it is found to be
994/// out-of-date.
995///
996/// \param MaxLines When non-zero, the maximum number of lines that
997/// can occur within the preamble.
998///
Douglas Gregor754f3492010-07-24 00:38:13 +0000999/// \returns If the precompiled preamble can be used, returns a newly-allocated
1000/// buffer that should be used in place of the main file when doing so.
1001/// Otherwise, returns a NULL pointer.
Douglas Gregordf95a132010-08-09 20:45:32 +00001002llvm::MemoryBuffer *ASTUnit::getMainBufferWithPrecompiledPreamble(
Douglas Gregor2283d792010-08-20 00:59:43 +00001003 CompilerInvocation PreambleInvocation,
Douglas Gregordf95a132010-08-09 20:45:32 +00001004 bool AllowRebuild,
1005 unsigned MaxLines) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001006 FrontendOptions &FrontendOpts = PreambleInvocation.getFrontendOpts();
1007 PreprocessorOptions &PreprocessorOpts
1008 = PreambleInvocation.getPreprocessorOpts();
1009
1010 bool CreatedPreambleBuffer = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001011 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > NewPreamble
Douglas Gregordf95a132010-08-09 20:45:32 +00001012 = ComputePreamble(PreambleInvocation, MaxLines, CreatedPreambleBuffer);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001013
Douglas Gregor73fc9122010-11-16 20:45:51 +00001014 // If ComputePreamble() Take ownership of the
1015 llvm::OwningPtr<llvm::MemoryBuffer> OwnedPreambleBuffer;
1016 if (CreatedPreambleBuffer)
1017 OwnedPreambleBuffer.reset(NewPreamble.first);
1018
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001019 if (!NewPreamble.second.first) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001020 // We couldn't find a preamble in the main source. Clear out the current
1021 // preamble, if we have one. It's obviously no good any more.
1022 Preamble.clear();
1023 if (!PreambleFile.empty()) {
Douglas Gregor385103b2010-07-30 20:58:08 +00001024 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001025 PreambleFile.clear();
1026 }
Douglas Gregoreababfb2010-08-04 05:53:38 +00001027
1028 // The next time we actually see a preamble, precompile it.
1029 PreambleRebuildCounter = 1;
Douglas Gregor754f3492010-07-24 00:38:13 +00001030 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001031 }
1032
1033 if (!Preamble.empty()) {
1034 // We've previously computed a preamble. Check whether we have the same
1035 // preamble now that we did before, and that there's enough space in
1036 // the main-file buffer within the precompiled preamble to fit the
1037 // new main file.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001038 if (Preamble.size() == NewPreamble.second.first &&
1039 PreambleEndsAtStartOfLine == NewPreamble.second.second &&
Douglas Gregor592508e2010-07-24 00:42:07 +00001040 NewPreamble.first->getBufferSize() < PreambleReservedSize-2 &&
Douglas Gregor175c4a92010-07-23 23:58:40 +00001041 memcmp(&Preamble[0], NewPreamble.first->getBufferStart(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001042 NewPreamble.second.first) == 0) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001043 // The preamble has not changed. We may be able to re-use the precompiled
1044 // preamble.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001045
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001046 // Check that none of the files used by the preamble have changed.
1047 bool AnyFileChanged = false;
1048
1049 // First, make a record of those files that have been overridden via
1050 // remapping or unsaved_files.
1051 llvm::StringMap<std::pair<off_t, time_t> > OverriddenFiles;
1052 for (PreprocessorOptions::remapped_file_iterator
1053 R = PreprocessorOpts.remapped_file_begin(),
1054 REnd = PreprocessorOpts.remapped_file_end();
1055 !AnyFileChanged && R != REnd;
1056 ++R) {
1057 struct stat StatBuf;
1058 if (stat(R->second.c_str(), &StatBuf)) {
1059 // If we can't stat the file we're remapping to, assume that something
1060 // horrible happened.
1061 AnyFileChanged = true;
1062 break;
1063 }
Douglas Gregor754f3492010-07-24 00:38:13 +00001064
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001065 OverriddenFiles[R->first] = std::make_pair(StatBuf.st_size,
1066 StatBuf.st_mtime);
1067 }
1068 for (PreprocessorOptions::remapped_file_buffer_iterator
1069 R = PreprocessorOpts.remapped_file_buffer_begin(),
1070 REnd = PreprocessorOpts.remapped_file_buffer_end();
1071 !AnyFileChanged && R != REnd;
1072 ++R) {
1073 // FIXME: Should we actually compare the contents of file->buffer
1074 // remappings?
1075 OverriddenFiles[R->first] = std::make_pair(R->second->getBufferSize(),
1076 0);
1077 }
1078
1079 // Check whether anything has changed.
1080 for (llvm::StringMap<std::pair<off_t, time_t> >::iterator
1081 F = FilesInPreamble.begin(), FEnd = FilesInPreamble.end();
1082 !AnyFileChanged && F != FEnd;
1083 ++F) {
1084 llvm::StringMap<std::pair<off_t, time_t> >::iterator Overridden
1085 = OverriddenFiles.find(F->first());
1086 if (Overridden != OverriddenFiles.end()) {
1087 // This file was remapped; check whether the newly-mapped file
1088 // matches up with the previous mapping.
1089 if (Overridden->second != F->second)
1090 AnyFileChanged = true;
1091 continue;
1092 }
1093
1094 // The file was not remapped; check whether it has changed on disk.
1095 struct stat StatBuf;
1096 if (stat(F->first(), &StatBuf)) {
1097 // If we can't stat the file, assume that something horrible happened.
1098 AnyFileChanged = true;
1099 } else if (StatBuf.st_size != F->second.first ||
1100 StatBuf.st_mtime != F->second.second)
1101 AnyFileChanged = true;
1102 }
1103
1104 if (!AnyFileChanged) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001105 // Okay! We can re-use the precompiled preamble.
1106
1107 // Set the state of the diagnostic object to mimic its state
1108 // after parsing the preamble.
Douglas Gregor32be4a52010-10-11 21:37:58 +00001109 // FIXME: This won't catch any #pragma push warning changes that
1110 // have occurred in the preamble.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001111 getDiagnostics().Reset();
Douglas Gregor32be4a52010-10-11 21:37:58 +00001112 ProcessWarningOptions(getDiagnostics(),
1113 PreambleInvocation.getDiagnosticOpts());
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001114 getDiagnostics().setNumWarnings(NumWarningsInPreamble);
1115 if (StoredDiagnostics.size() > NumStoredDiagnosticsInPreamble)
1116 StoredDiagnostics.erase(
1117 StoredDiagnostics.begin() + NumStoredDiagnosticsInPreamble,
1118 StoredDiagnostics.end());
1119
1120 // Create a version of the main file buffer that is padded to
1121 // buffer size we reserved when creating the preamble.
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001122 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001123 PreambleReservedSize,
1124 FrontendOpts.Inputs[0].second);
1125 }
Douglas Gregor175c4a92010-07-23 23:58:40 +00001126 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001127
1128 // If we aren't allowed to rebuild the precompiled preamble, just
1129 // return now.
1130 if (!AllowRebuild)
1131 return 0;
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001132
Douglas Gregor175c4a92010-07-23 23:58:40 +00001133 // We can't reuse the previously-computed preamble. Build a new one.
1134 Preamble.clear();
Douglas Gregor385103b2010-07-30 20:58:08 +00001135 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001136 PreambleRebuildCounter = 1;
Douglas Gregordf95a132010-08-09 20:45:32 +00001137 } else if (!AllowRebuild) {
1138 // We aren't allowed to rebuild the precompiled preamble; just
1139 // return now.
1140 return 0;
1141 }
Douglas Gregoreababfb2010-08-04 05:53:38 +00001142
1143 // If the preamble rebuild counter > 1, it's because we previously
1144 // failed to build a preamble and we're not yet ready to try
1145 // again. Decrement the counter and return a failure.
1146 if (PreambleRebuildCounter > 1) {
1147 --PreambleRebuildCounter;
1148 return 0;
1149 }
1150
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001151 // Create a temporary file for the precompiled preamble. In rare
1152 // circumstances, this can fail.
1153 std::string PreamblePCHPath = GetPreamblePCHPath();
1154 if (PreamblePCHPath.empty()) {
1155 // Try again next time.
1156 PreambleRebuildCounter = 1;
1157 return 0;
1158 }
1159
Douglas Gregor175c4a92010-07-23 23:58:40 +00001160 // We did not previously compute a preamble, or it can't be reused anyway.
Douglas Gregor213f18b2010-10-28 15:44:59 +00001161 SimpleTimer PreambleTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001162 PreambleTimer.setOutput("Precompiling preamble");
Douglas Gregor44c181a2010-07-23 00:33:23 +00001163
1164 // Create a new buffer that stores the preamble. The buffer also contains
1165 // extra space for the original contents of the file (which will be present
1166 // when we actually parse the file) along with more room in case the file
Douglas Gregor175c4a92010-07-23 23:58:40 +00001167 // grows.
1168 PreambleReservedSize = NewPreamble.first->getBufferSize();
1169 if (PreambleReservedSize < 4096)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001170 PreambleReservedSize = 8191;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001171 else
Douglas Gregor175c4a92010-07-23 23:58:40 +00001172 PreambleReservedSize *= 2;
1173
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001174 // Save the preamble text for later; we'll need to compare against it for
1175 // subsequent reparses.
1176 Preamble.assign(NewPreamble.first->getBufferStart(),
1177 NewPreamble.first->getBufferStart()
1178 + NewPreamble.second.first);
1179 PreambleEndsAtStartOfLine = NewPreamble.second.second;
1180
Douglas Gregor671947b2010-08-19 01:33:06 +00001181 delete PreambleBuffer;
1182 PreambleBuffer
Douglas Gregor175c4a92010-07-23 23:58:40 +00001183 = llvm::MemoryBuffer::getNewUninitMemBuffer(PreambleReservedSize,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001184 FrontendOpts.Inputs[0].second);
1185 memcpy(const_cast<char*>(PreambleBuffer->getBufferStart()),
Douglas Gregor175c4a92010-07-23 23:58:40 +00001186 NewPreamble.first->getBufferStart(), Preamble.size());
1187 memset(const_cast<char*>(PreambleBuffer->getBufferStart()) + Preamble.size(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001188 ' ', PreambleReservedSize - Preamble.size() - 1);
1189 const_cast<char*>(PreambleBuffer->getBufferEnd())[-1] = '\n';
Douglas Gregor44c181a2010-07-23 00:33:23 +00001190
1191 // Remap the main source file to the preamble buffer.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001192 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001193 PreprocessorOpts.addRemappedFile(MainFilePath.str(), PreambleBuffer);
1194
1195 // Tell the compiler invocation to generate a temporary precompiled header.
1196 FrontendOpts.ProgramAction = frontend::GeneratePCH;
Douglas Gregor85e51912010-10-01 01:05:22 +00001197 FrontendOpts.ChainedPCH = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001198 // FIXME: Generate the precompiled header into memory?
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001199 FrontendOpts.OutputFile = PreamblePCHPath;
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001200 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
1201 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001202
1203 // Create the compiler instance to use for building the precompiled preamble.
1204 CompilerInstance Clang;
1205 Clang.setInvocation(&PreambleInvocation);
1206 OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second;
1207
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001208 // Set up diagnostics, capturing all of the diagnostics produced.
Douglas Gregor44c181a2010-07-23 00:33:23 +00001209 Clang.setDiagnostics(&getDiagnostics());
Douglas Gregor44c181a2010-07-23 00:33:23 +00001210
1211 // Create the target instance.
1212 Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(),
1213 Clang.getTargetOpts()));
1214 if (!Clang.hasTarget()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001215 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1216 Preamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001217 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001218 PreprocessorOpts.eraseRemappedFile(
1219 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001220 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001221 }
1222
1223 // Inform the target of the language options.
1224 //
1225 // FIXME: We shouldn't need to do this, the target should be immutable once
1226 // created. This complexity should be lifted elsewhere.
1227 Clang.getTarget().setForcedLangOptions(Clang.getLangOpts());
1228
1229 assert(Clang.getFrontendOpts().Inputs.size() == 1 &&
1230 "Invocation must have exactly one source file!");
1231 assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST &&
1232 "FIXME: AST inputs not yet supported here!");
1233 assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1234 "IR inputs not support here!");
1235
1236 // Clear out old caches and data.
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001237 getDiagnostics().Reset();
Douglas Gregor32be4a52010-10-11 21:37:58 +00001238 ProcessWarningOptions(getDiagnostics(), Clang.getDiagnosticOpts());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001239 StoredDiagnostics.erase(
1240 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
1241 StoredDiagnostics.end());
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001242 TopLevelDecls.clear();
1243 TopLevelDeclsInPreamble.clear();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001244
1245 // Create a file manager object to provide access to and cache the filesystem.
1246 Clang.setFileManager(new FileManager);
1247
1248 // Create the source manager.
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00001249 Clang.setSourceManager(new SourceManager(getDiagnostics(),
1250 Clang.getFileManager(),
1251 Clang.getFileSystemOpts()));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001252
Douglas Gregor1d715ac2010-08-03 08:14:03 +00001253 llvm::OwningPtr<PrecompilePreambleAction> Act;
1254 Act.reset(new PrecompilePreambleAction(*this));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001255 if (!Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second,
1256 Clang.getFrontendOpts().Inputs[0].first)) {
Douglas Gregor44c181a2010-07-23 00:33:23 +00001257 Clang.takeInvocation();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001258 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1259 Preamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001260 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001261 PreprocessorOpts.eraseRemappedFile(
1262 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001263 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001264 }
1265
1266 Act->Execute();
1267 Act->EndSourceFile();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001268 Clang.takeInvocation();
1269
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001270 if (Diagnostics->hasErrorOccurred()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001271 // There were errors parsing the preamble, so no precompiled header was
1272 // generated. Forget that we even tried.
Douglas Gregor06e50442010-09-27 16:43:25 +00001273 // FIXME: Should we leave a note for ourselves to try again?
Douglas Gregor175c4a92010-07-23 23:58:40 +00001274 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1275 Preamble.clear();
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001276 TopLevelDeclsInPreamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001277 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001278 PreprocessorOpts.eraseRemappedFile(
1279 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001280 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001281 }
1282
1283 // Keep track of the preamble we precompiled.
1284 PreambleFile = FrontendOpts.OutputFile;
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001285 NumStoredDiagnosticsInPreamble = StoredDiagnostics.size();
1286 NumWarningsInPreamble = getDiagnostics().getNumWarnings();
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001287
1288 // Keep track of all of the files that the source manager knows about,
1289 // so we can verify whether they have changed or not.
1290 FilesInPreamble.clear();
1291 SourceManager &SourceMgr = Clang.getSourceManager();
1292 const llvm::MemoryBuffer *MainFileBuffer
1293 = SourceMgr.getBuffer(SourceMgr.getMainFileID());
1294 for (SourceManager::fileinfo_iterator F = SourceMgr.fileinfo_begin(),
1295 FEnd = SourceMgr.fileinfo_end();
1296 F != FEnd;
1297 ++F) {
1298 const FileEntry *File = F->second->Entry;
1299 if (!File || F->second->getRawBuffer() == MainFileBuffer)
1300 continue;
1301
1302 FilesInPreamble[File->getName()]
1303 = std::make_pair(F->second->getSize(), File->getModificationTime());
1304 }
1305
Douglas Gregoreababfb2010-08-04 05:53:38 +00001306 PreambleRebuildCounter = 1;
Douglas Gregor671947b2010-08-19 01:33:06 +00001307 PreprocessorOpts.eraseRemappedFile(
1308 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001309 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregor754f3492010-07-24 00:38:13 +00001310 PreambleReservedSize,
1311 FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001312}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001313
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001314void ASTUnit::RealizeTopLevelDeclsFromPreamble() {
1315 std::vector<Decl *> Resolved;
1316 Resolved.reserve(TopLevelDeclsInPreamble.size());
1317 ExternalASTSource &Source = *getASTContext().getExternalSource();
1318 for (unsigned I = 0, N = TopLevelDeclsInPreamble.size(); I != N; ++I) {
1319 // Resolve the declaration ID to an actual declaration, possibly
1320 // deserializing the declaration in the process.
1321 Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]);
1322 if (D)
1323 Resolved.push_back(D);
1324 }
1325 TopLevelDeclsInPreamble.clear();
1326 TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
1327}
1328
1329unsigned ASTUnit::getMaxPCHLevel() const {
1330 if (!getOnlyLocalDecls())
1331 return Decl::MaxPCHLevel;
1332
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00001333 return 0;
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001334}
1335
Douglas Gregor213f18b2010-10-28 15:44:59 +00001336llvm::StringRef ASTUnit::getMainFileName() const {
1337 return Invocation->getFrontendOpts().Inputs[0].second;
1338}
1339
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001340bool ASTUnit::LoadFromCompilerInvocation(bool PrecompilePreamble) {
1341 if (!Invocation)
1342 return true;
1343
1344 // We'll manage file buffers ourselves.
1345 Invocation->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1346 Invocation->getFrontendOpts().DisableFree = false;
1347
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001348 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregor99ba2022010-10-27 17:24:53 +00001349 if (PrecompilePreamble) {
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001350 PreambleRebuildCounter = 2;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001351 OverrideMainBuffer
1352 = getMainBufferWithPrecompiledPreamble(*Invocation);
1353 }
1354
Douglas Gregor213f18b2010-10-28 15:44:59 +00001355 SimpleTimer ParsingTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001356 ParsingTimer.setOutput("Parsing " + getMainFileName());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001357
Douglas Gregor213f18b2010-10-28 15:44:59 +00001358 return Parse(OverrideMainBuffer);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001359}
1360
Douglas Gregorabc563f2010-07-19 21:46:24 +00001361ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
1362 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
1363 bool OnlyLocalDecls,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001364 bool CaptureDiagnostics,
Douglas Gregordf95a132010-08-09 20:45:32 +00001365 bool PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001366 bool CompleteTranslationUnit,
Douglas Gregore47be3e2010-11-11 00:39:14 +00001367 bool CacheCodeCompletionResults) {
Douglas Gregorabc563f2010-07-19 21:46:24 +00001368 // Create the AST unit.
1369 llvm::OwningPtr<ASTUnit> AST;
1370 AST.reset(new ASTUnit(false));
Douglas Gregore47be3e2010-11-11 00:39:14 +00001371 ConfigureDiags(Diags, *AST, CaptureDiagnostics);
Douglas Gregorabc563f2010-07-19 21:46:24 +00001372 AST->Diagnostics = Diags;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001373 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001374 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregordf95a132010-08-09 20:45:32 +00001375 AST->CompleteTranslationUnit = CompleteTranslationUnit;
Douglas Gregor87c08a52010-08-13 22:48:40 +00001376 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001377 AST->CacheCodeCompletionCoolDown = 1;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001378 AST->Invocation.reset(CI);
1379
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001380 return AST->LoadFromCompilerInvocation(PrecompilePreamble)? 0 : AST.take();
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001381}
Daniel Dunbar7b556682009-12-02 03:23:45 +00001382
1383ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1384 const char **ArgEnd,
Douglas Gregor28019772010-04-05 23:52:57 +00001385 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Daniel Dunbar869824e2009-12-13 03:46:13 +00001386 llvm::StringRef ResourceFilesPath,
Daniel Dunbar7b556682009-12-02 03:23:45 +00001387 bool OnlyLocalDecls,
Douglas Gregore47be3e2010-11-11 00:39:14 +00001388 bool CaptureDiagnostics,
Douglas Gregor4db64a42010-01-23 00:14:00 +00001389 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +00001390 unsigned NumRemappedFiles,
Douglas Gregordf95a132010-08-09 20:45:32 +00001391 bool PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001392 bool CompleteTranslationUnit,
Douglas Gregor99ba2022010-10-27 17:24:53 +00001393 bool CacheCodeCompletionResults,
1394 bool CXXPrecompilePreamble,
1395 bool CXXChainedPCH) {
Douglas Gregor28019772010-04-05 23:52:57 +00001396 if (!Diags.getPtr()) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001397 // No diagnostics engine was provided, so create our own diagnostics object
1398 // with the default options.
1399 DiagnosticOptions DiagOpts;
Douglas Gregor28019772010-04-05 23:52:57 +00001400 Diags = CompilerInstance::createDiagnostics(DiagOpts, 0, 0);
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001401 }
1402
Daniel Dunbar7b556682009-12-02 03:23:45 +00001403 llvm::SmallVector<const char *, 16> Args;
1404 Args.push_back("<clang>"); // FIXME: Remove dummy argument.
1405 Args.insert(Args.end(), ArgBegin, ArgEnd);
1406
1407 // FIXME: Find a cleaner way to force the driver into restricted modes. We
1408 // also want to force it to use clang.
1409 Args.push_back("-fsyntax-only");
1410
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001411 llvm::SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
1412
1413 llvm::OwningPtr<CompilerInvocation> CI;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001414
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001415 {
Douglas Gregore47be3e2010-11-11 00:39:14 +00001416 CaptureDroppedDiagnostics Capture(CaptureDiagnostics, *Diags,
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001417 StoredDiagnostics);
Daniel Dunbar3bd54cc2010-01-25 00:44:02 +00001418
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001419 // FIXME: We shouldn't have to pass in the path info.
1420 driver::Driver TheDriver("clang", llvm::sys::getHostTriple(),
1421 "a.out", false, false, *Diags);
Daniel Dunbar3bd54cc2010-01-25 00:44:02 +00001422
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001423 // Don't check that inputs exist, they have been remapped.
1424 TheDriver.setCheckInputsExist(false);
Daniel Dunbar7b556682009-12-02 03:23:45 +00001425
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001426 llvm::OwningPtr<driver::Compilation> C(
1427 TheDriver.BuildCompilation(Args.size(), Args.data()));
1428
1429 // We expect to get back exactly one command job, if we didn't something
1430 // failed.
1431 const driver::JobList &Jobs = C->getJobs();
1432 if (Jobs.size() != 1 || !isa<driver::Command>(Jobs.begin())) {
1433 llvm::SmallString<256> Msg;
1434 llvm::raw_svector_ostream OS(Msg);
1435 C->PrintJob(OS, C->getJobs(), "; ", true);
1436 Diags->Report(diag::err_fe_expected_compiler_job) << OS.str();
1437 return 0;
1438 }
1439
1440 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
1441 if (llvm::StringRef(Cmd->getCreator().getName()) != "clang") {
1442 Diags->Report(diag::err_fe_expected_clang_command);
1443 return 0;
1444 }
1445
1446 const driver::ArgStringList &CCArgs = Cmd->getArguments();
1447 CI.reset(new CompilerInvocation);
1448 CompilerInvocation::CreateFromArgs(*CI,
Douglas Gregore47be3e2010-11-11 00:39:14 +00001449 const_cast<const char **>(CCArgs.data()),
1450 const_cast<const char **>(CCArgs.data()) +
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001451 CCArgs.size(),
1452 *Diags);
Daniel Dunbar7b556682009-12-02 03:23:45 +00001453 }
Douglas Gregore47be3e2010-11-11 00:39:14 +00001454
Douglas Gregor4db64a42010-01-23 00:14:00 +00001455 // Override any files that need remapping
1456 for (unsigned I = 0; I != NumRemappedFiles; ++I)
Daniel Dunbar807b0612010-01-30 21:47:16 +00001457 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
Daniel Dunbarb26d4832010-02-16 01:55:04 +00001458 RemappedFiles[I].second);
Douglas Gregor4db64a42010-01-23 00:14:00 +00001459
Daniel Dunbar8b9adfe2009-12-15 00:06:45 +00001460 // Override the resources path.
Daniel Dunbar807b0612010-01-30 21:47:16 +00001461 CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
Daniel Dunbar7b556682009-12-02 03:23:45 +00001462
Douglas Gregor99ba2022010-10-27 17:24:53 +00001463 // Check whether we should precompile the preamble and/or use chained PCH.
1464 // FIXME: This is a temporary hack while we debug C++ chained PCH.
1465 if (CI->getLangOpts().CPlusPlus) {
1466 PrecompilePreamble = PrecompilePreamble && CXXPrecompilePreamble;
1467
1468 if (PrecompilePreamble && !CXXChainedPCH &&
1469 !CI->getPreprocessorOpts().ImplicitPCHInclude.empty())
1470 PrecompilePreamble = false;
1471 }
1472
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001473 // Create the AST unit.
1474 llvm::OwningPtr<ASTUnit> AST;
1475 AST.reset(new ASTUnit(false));
Douglas Gregore47be3e2010-11-11 00:39:14 +00001476 ConfigureDiags(Diags, *AST, CaptureDiagnostics);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001477 AST->Diagnostics = Diags;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001478 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001479 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001480 AST->CompleteTranslationUnit = CompleteTranslationUnit;
1481 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001482 AST->CacheCodeCompletionCoolDown = 1;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001483 AST->NumStoredDiagnosticsFromDriver = StoredDiagnostics.size();
1484 AST->NumStoredDiagnosticsInPreamble = StoredDiagnostics.size();
1485 AST->StoredDiagnostics.swap(StoredDiagnostics);
1486 AST->Invocation.reset(CI.take());
1487 return AST->LoadFromCompilerInvocation(PrecompilePreamble)? 0 : AST.take();
Daniel Dunbar7b556682009-12-02 03:23:45 +00001488}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001489
1490bool ASTUnit::Reparse(RemappedFile *RemappedFiles, unsigned NumRemappedFiles) {
1491 if (!Invocation.get())
1492 return true;
1493
Douglas Gregor213f18b2010-10-28 15:44:59 +00001494 SimpleTimer ParsingTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001495 ParsingTimer.setOutput("Reparsing " + getMainFileName());
Douglas Gregor213f18b2010-10-28 15:44:59 +00001496
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001497 // Remap files.
Douglas Gregorf128fed2010-08-20 00:02:33 +00001498 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1499 for (PreprocessorOptions::remapped_file_buffer_iterator
1500 R = PPOpts.remapped_file_buffer_begin(),
1501 REnd = PPOpts.remapped_file_buffer_end();
1502 R != REnd;
1503 ++R) {
1504 delete R->second;
1505 }
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001506 Invocation->getPreprocessorOpts().clearRemappedFiles();
1507 for (unsigned I = 0; I != NumRemappedFiles; ++I)
1508 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1509 RemappedFiles[I].second);
1510
Douglas Gregoreababfb2010-08-04 05:53:38 +00001511 // If we have a preamble file lying around, or if we might try to
1512 // build a precompiled preamble, do so now.
Douglas Gregor754f3492010-07-24 00:38:13 +00001513 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregoreababfb2010-08-04 05:53:38 +00001514 if (!PreambleFile.empty() || PreambleRebuildCounter > 0)
Douglas Gregor2283d792010-08-20 00:59:43 +00001515 OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(*Invocation);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001516
Douglas Gregorabc563f2010-07-19 21:46:24 +00001517 // Clear out the diagnostics state.
Douglas Gregor32be4a52010-10-11 21:37:58 +00001518 if (!OverrideMainBuffer) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001519 getDiagnostics().Reset();
Douglas Gregor32be4a52010-10-11 21:37:58 +00001520 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
1521 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00001522
Douglas Gregor175c4a92010-07-23 23:58:40 +00001523 // Parse the sources
Douglas Gregor754f3492010-07-24 00:38:13 +00001524 bool Result = Parse(OverrideMainBuffer);
Douglas Gregor727d93e2010-08-17 00:40:40 +00001525
1526 if (ShouldCacheCodeCompletionResults) {
1527 if (CacheCodeCompletionCoolDown > 0)
1528 --CacheCodeCompletionCoolDown;
1529 else if (top_level_size() != NumTopLevelDeclsAtLastCompletionCache)
1530 CacheCodeCompletionResults();
1531 }
1532
Douglas Gregor175c4a92010-07-23 23:58:40 +00001533 return Result;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001534}
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001535
Douglas Gregor87c08a52010-08-13 22:48:40 +00001536//----------------------------------------------------------------------------//
1537// Code completion
1538//----------------------------------------------------------------------------//
1539
1540namespace {
1541 /// \brief Code completion consumer that combines the cached code-completion
1542 /// results from an ASTUnit with the code-completion results provided to it,
1543 /// then passes the result on to
1544 class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer {
1545 unsigned NormalContexts;
1546 ASTUnit &AST;
1547 CodeCompleteConsumer &Next;
1548
1549 public:
1550 AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next,
Douglas Gregor8071e422010-08-15 06:18:01 +00001551 bool IncludeMacros, bool IncludeCodePatterns,
1552 bool IncludeGlobals)
1553 : CodeCompleteConsumer(IncludeMacros, IncludeCodePatterns, IncludeGlobals,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001554 Next.isOutputBinary()), AST(AST), Next(Next)
1555 {
1556 // Compute the set of contexts in which we will look when we don't have
1557 // any information about the specific context.
1558 NormalContexts
1559 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
1560 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
1561 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
1562 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
1563 | (1 << (CodeCompletionContext::CCC_Statement - 1))
1564 | (1 << (CodeCompletionContext::CCC_Expression - 1))
1565 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
1566 | (1 << (CodeCompletionContext::CCC_MemberAccess - 1))
Douglas Gregor02688102010-09-14 23:59:36 +00001567 | (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1))
Douglas Gregor52779fb2010-09-23 23:01:17 +00001568 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
1569 | (1 << (CodeCompletionContext::CCC_Recovery - 1));
Douglas Gregor02688102010-09-14 23:59:36 +00001570
Douglas Gregor87c08a52010-08-13 22:48:40 +00001571 if (AST.getASTContext().getLangOptions().CPlusPlus)
1572 NormalContexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1))
1573 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
1574 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
1575 }
1576
1577 virtual void ProcessCodeCompleteResults(Sema &S,
1578 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00001579 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001580 unsigned NumResults);
Douglas Gregor87c08a52010-08-13 22:48:40 +00001581
1582 virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
1583 OverloadCandidate *Candidates,
1584 unsigned NumCandidates) {
1585 Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates);
1586 }
1587 };
1588}
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001589
Douglas Gregor5f808c22010-08-16 21:18:39 +00001590/// \brief Helper function that computes which global names are hidden by the
1591/// local code-completion results.
Ted Kremenekc198f612010-11-07 06:11:36 +00001592static void CalculateHiddenNames(const CodeCompletionContext &Context,
1593 CodeCompletionResult *Results,
1594 unsigned NumResults,
1595 ASTContext &Ctx,
1596 llvm::StringSet<llvm::BumpPtrAllocator> &HiddenNames){
Douglas Gregor5f808c22010-08-16 21:18:39 +00001597 bool OnlyTagNames = false;
1598 switch (Context.getKind()) {
Douglas Gregor52779fb2010-09-23 23:01:17 +00001599 case CodeCompletionContext::CCC_Recovery:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001600 case CodeCompletionContext::CCC_TopLevel:
1601 case CodeCompletionContext::CCC_ObjCInterface:
1602 case CodeCompletionContext::CCC_ObjCImplementation:
1603 case CodeCompletionContext::CCC_ObjCIvarList:
1604 case CodeCompletionContext::CCC_ClassStructUnion:
1605 case CodeCompletionContext::CCC_Statement:
1606 case CodeCompletionContext::CCC_Expression:
1607 case CodeCompletionContext::CCC_ObjCMessageReceiver:
1608 case CodeCompletionContext::CCC_MemberAccess:
1609 case CodeCompletionContext::CCC_Namespace:
1610 case CodeCompletionContext::CCC_Type:
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001611 case CodeCompletionContext::CCC_Name:
1612 case CodeCompletionContext::CCC_PotentiallyQualifiedName:
Douglas Gregor02688102010-09-14 23:59:36 +00001613 case CodeCompletionContext::CCC_ParenthesizedExpression:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001614 break;
1615
1616 case CodeCompletionContext::CCC_EnumTag:
1617 case CodeCompletionContext::CCC_UnionTag:
1618 case CodeCompletionContext::CCC_ClassOrStructTag:
1619 OnlyTagNames = true;
1620 break;
1621
1622 case CodeCompletionContext::CCC_ObjCProtocolName:
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001623 case CodeCompletionContext::CCC_MacroName:
1624 case CodeCompletionContext::CCC_MacroNameUse:
Douglas Gregorf29c5232010-08-24 22:20:20 +00001625 case CodeCompletionContext::CCC_PreprocessorExpression:
Douglas Gregor721f3592010-08-25 18:41:16 +00001626 case CodeCompletionContext::CCC_PreprocessorDirective:
Douglas Gregor59a66942010-08-25 18:04:30 +00001627 case CodeCompletionContext::CCC_NaturalLanguage:
Douglas Gregor458433d2010-08-26 15:07:07 +00001628 case CodeCompletionContext::CCC_SelectorName:
Douglas Gregor1a480c42010-08-27 17:35:51 +00001629 case CodeCompletionContext::CCC_TypeQualifiers:
Douglas Gregor52779fb2010-09-23 23:01:17 +00001630 case CodeCompletionContext::CCC_Other:
Douglas Gregor721f3592010-08-25 18:41:16 +00001631 // We're looking for nothing, or we're looking for names that cannot
1632 // be hidden.
Douglas Gregor5f808c22010-08-16 21:18:39 +00001633 return;
1634 }
1635
John McCall0a2c5e22010-08-25 06:19:51 +00001636 typedef CodeCompletionResult Result;
Douglas Gregor5f808c22010-08-16 21:18:39 +00001637 for (unsigned I = 0; I != NumResults; ++I) {
1638 if (Results[I].Kind != Result::RK_Declaration)
1639 continue;
1640
1641 unsigned IDNS
1642 = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
1643
1644 bool Hiding = false;
1645 if (OnlyTagNames)
1646 Hiding = (IDNS & Decl::IDNS_Tag);
1647 else {
1648 unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member |
Douglas Gregora5fb7c32010-08-16 23:05:20 +00001649 Decl::IDNS_Namespace | Decl::IDNS_Ordinary |
1650 Decl::IDNS_NonMemberOperator);
Douglas Gregor5f808c22010-08-16 21:18:39 +00001651 if (Ctx.getLangOptions().CPlusPlus)
1652 HiddenIDNS |= Decl::IDNS_Tag;
1653 Hiding = (IDNS & HiddenIDNS);
1654 }
1655
1656 if (!Hiding)
1657 continue;
1658
1659 DeclarationName Name = Results[I].Declaration->getDeclName();
1660 if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo())
1661 HiddenNames.insert(Identifier->getName());
1662 else
1663 HiddenNames.insert(Name.getAsString());
1664 }
1665}
1666
1667
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001668void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
1669 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00001670 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001671 unsigned NumResults) {
1672 // Merge the results we were given with the results we cached.
1673 bool AddedResult = false;
Douglas Gregor5f808c22010-08-16 21:18:39 +00001674 unsigned InContexts
Douglas Gregor52779fb2010-09-23 23:01:17 +00001675 = (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts
Douglas Gregor5f808c22010-08-16 21:18:39 +00001676 : (1 << (Context.getKind() - 1)));
1677
1678 // Contains the set of names that are hidden by "local" completion results.
Ted Kremenekc198f612010-11-07 06:11:36 +00001679 llvm::StringSet<llvm::BumpPtrAllocator> HiddenNames;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001680 llvm::SmallVector<CodeCompletionString *, 4> StringsToDestroy;
John McCall0a2c5e22010-08-25 06:19:51 +00001681 typedef CodeCompletionResult Result;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001682 llvm::SmallVector<Result, 8> AllResults;
1683 for (ASTUnit::cached_completion_iterator
Douglas Gregor5535d572010-08-16 21:23:13 +00001684 C = AST.cached_completion_begin(),
1685 CEnd = AST.cached_completion_end();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001686 C != CEnd; ++C) {
1687 // If the context we are in matches any of the contexts we are
1688 // interested in, we'll add this result.
1689 if ((C->ShowInContexts & InContexts) == 0)
1690 continue;
1691
1692 // If we haven't added any results previously, do so now.
1693 if (!AddedResult) {
Douglas Gregor5f808c22010-08-16 21:18:39 +00001694 CalculateHiddenNames(Context, Results, NumResults, S.Context,
1695 HiddenNames);
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001696 AllResults.insert(AllResults.end(), Results, Results + NumResults);
1697 AddedResult = true;
1698 }
1699
Douglas Gregor5f808c22010-08-16 21:18:39 +00001700 // Determine whether this global completion result is hidden by a local
1701 // completion result. If so, skip it.
1702 if (C->Kind != CXCursor_MacroDefinition &&
1703 HiddenNames.count(C->Completion->getTypedText()))
1704 continue;
1705
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001706 // Adjust priority based on similar type classes.
1707 unsigned Priority = C->Priority;
Douglas Gregor4125c372010-08-25 18:03:13 +00001708 CXCursorKind CursorKind = C->Kind;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001709 CodeCompletionString *Completion = C->Completion;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001710 if (!Context.getPreferredType().isNull()) {
1711 if (C->Kind == CXCursor_MacroDefinition) {
1712 Priority = getMacroUsagePriority(C->Completion->getTypedText(),
Douglas Gregorb05496d2010-09-20 21:11:48 +00001713 S.getLangOptions(),
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001714 Context.getPreferredType()->isAnyPointerType());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001715 } else if (C->Type) {
1716 CanQualType Expected
Douglas Gregor5535d572010-08-16 21:23:13 +00001717 = S.Context.getCanonicalType(
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001718 Context.getPreferredType().getUnqualifiedType());
1719 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
1720 if (ExpectedSTC == C->TypeClass) {
1721 // We know this type is similar; check for an exact match.
1722 llvm::StringMap<unsigned> &CachedCompletionTypes
Douglas Gregor5535d572010-08-16 21:23:13 +00001723 = AST.getCachedCompletionTypes();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001724 llvm::StringMap<unsigned>::iterator Pos
Douglas Gregor5535d572010-08-16 21:23:13 +00001725 = CachedCompletionTypes.find(QualType(Expected).getAsString());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001726 if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
1727 Priority /= CCF_ExactTypeMatch;
1728 else
1729 Priority /= CCF_SimilarTypeMatch;
1730 }
1731 }
1732 }
1733
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001734 // Adjust the completion string, if required.
1735 if (C->Kind == CXCursor_MacroDefinition &&
1736 Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) {
1737 // Create a new code-completion string that just contains the
1738 // macro name, without its arguments.
1739 Completion = new CodeCompletionString;
1740 Completion->AddTypedTextChunk(C->Completion->getTypedText());
1741 StringsToDestroy.push_back(Completion);
Douglas Gregor4125c372010-08-25 18:03:13 +00001742 CursorKind = CXCursor_NotImplemented;
1743 Priority = CCP_CodePattern;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001744 }
1745
Douglas Gregor4125c372010-08-25 18:03:13 +00001746 AllResults.push_back(Result(Completion, Priority, CursorKind,
Douglas Gregor58ddb602010-08-23 23:00:57 +00001747 C->Availability));
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001748 }
1749
1750 // If we did not add any cached completion results, just forward the
1751 // results we were given to the next consumer.
1752 if (!AddedResult) {
1753 Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
1754 return;
1755 }
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001756
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001757 Next.ProcessCodeCompleteResults(S, Context, AllResults.data(),
1758 AllResults.size());
Douglas Gregor1fbb4472010-08-24 20:21:13 +00001759
1760 for (unsigned I = 0, N = StringsToDestroy.size(); I != N; ++I)
1761 delete StringsToDestroy[I];
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001762}
1763
1764
1765
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001766void ASTUnit::CodeComplete(llvm::StringRef File, unsigned Line, unsigned Column,
1767 RemappedFile *RemappedFiles,
1768 unsigned NumRemappedFiles,
Douglas Gregorcee235c2010-08-05 09:09:23 +00001769 bool IncludeMacros,
1770 bool IncludeCodePatterns,
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001771 CodeCompleteConsumer &Consumer,
1772 Diagnostic &Diag, LangOptions &LangOpts,
1773 SourceManager &SourceMgr, FileManager &FileMgr,
Douglas Gregor2283d792010-08-20 00:59:43 +00001774 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
1775 llvm::SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) {
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001776 if (!Invocation.get())
1777 return;
1778
Douglas Gregor213f18b2010-10-28 15:44:59 +00001779 SimpleTimer CompletionTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001780 CompletionTimer.setOutput("Code completion @ " + File + ":" +
1781 llvm::Twine(Line) + ":" + llvm::Twine(Column));
Douglas Gregordf95a132010-08-09 20:45:32 +00001782
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001783 CompilerInvocation CCInvocation(*Invocation);
1784 FrontendOptions &FrontendOpts = CCInvocation.getFrontendOpts();
1785 PreprocessorOptions &PreprocessorOpts = CCInvocation.getPreprocessorOpts();
Douglas Gregorcee235c2010-08-05 09:09:23 +00001786
Douglas Gregor87c08a52010-08-13 22:48:40 +00001787 FrontendOpts.ShowMacrosInCodeCompletion
1788 = IncludeMacros && CachedCompletionResults.empty();
Douglas Gregorcee235c2010-08-05 09:09:23 +00001789 FrontendOpts.ShowCodePatternsInCodeCompletion = IncludeCodePatterns;
Douglas Gregor8071e422010-08-15 06:18:01 +00001790 FrontendOpts.ShowGlobalSymbolsInCodeCompletion
1791 = CachedCompletionResults.empty();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001792 FrontendOpts.CodeCompletionAt.FileName = File;
1793 FrontendOpts.CodeCompletionAt.Line = Line;
1794 FrontendOpts.CodeCompletionAt.Column = Column;
1795
1796 // Set the language options appropriately.
1797 LangOpts = CCInvocation.getLangOpts();
1798
1799 CompilerInstance Clang;
1800 Clang.setInvocation(&CCInvocation);
1801 OriginalSourceFile = Clang.getFrontendOpts().Inputs[0].second;
1802
1803 // Set up diagnostics, capturing any diagnostics produced.
1804 Clang.setDiagnostics(&Diag);
Douglas Gregor32be4a52010-10-11 21:37:58 +00001805 ProcessWarningOptions(Diag, CCInvocation.getDiagnosticOpts());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001806 CaptureDroppedDiagnostics Capture(true,
Douglas Gregore47be3e2010-11-11 00:39:14 +00001807 Clang.getDiagnostics(),
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001808 StoredDiagnostics);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001809
1810 // Create the target instance.
1811 Clang.setTarget(TargetInfo::CreateTargetInfo(Clang.getDiagnostics(),
1812 Clang.getTargetOpts()));
1813 if (!Clang.hasTarget()) {
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001814 Clang.takeInvocation();
Douglas Gregorbdbb0042010-08-18 22:29:43 +00001815 return;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001816 }
1817
1818 // Inform the target of the language options.
1819 //
1820 // FIXME: We shouldn't need to do this, the target should be immutable once
1821 // created. This complexity should be lifted elsewhere.
1822 Clang.getTarget().setForcedLangOptions(Clang.getLangOpts());
1823
1824 assert(Clang.getFrontendOpts().Inputs.size() == 1 &&
1825 "Invocation must have exactly one source file!");
1826 assert(Clang.getFrontendOpts().Inputs[0].first != IK_AST &&
1827 "FIXME: AST inputs not yet supported here!");
1828 assert(Clang.getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1829 "IR inputs not support here!");
1830
1831
1832 // Use the source and file managers that we were given.
1833 Clang.setFileManager(&FileMgr);
1834 Clang.setSourceManager(&SourceMgr);
1835
1836 // Remap files.
1837 PreprocessorOpts.clearRemappedFiles();
Douglas Gregorb75d3df2010-08-04 17:07:00 +00001838 PreprocessorOpts.RetainRemappedFileBuffers = true;
Douglas Gregor2283d792010-08-20 00:59:43 +00001839 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001840 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first,
1841 RemappedFiles[I].second);
Douglas Gregor2283d792010-08-20 00:59:43 +00001842 OwnedBuffers.push_back(RemappedFiles[I].second);
1843 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001844
Douglas Gregor87c08a52010-08-13 22:48:40 +00001845 // Use the code completion consumer we were given, but adding any cached
1846 // code-completion results.
1847 AugmentedCodeCompleteConsumer
1848 AugmentedConsumer(*this, Consumer, FrontendOpts.ShowMacrosInCodeCompletion,
Douglas Gregor8071e422010-08-15 06:18:01 +00001849 FrontendOpts.ShowCodePatternsInCodeCompletion,
1850 FrontendOpts.ShowGlobalSymbolsInCodeCompletion);
Douglas Gregor87c08a52010-08-13 22:48:40 +00001851 Clang.setCodeCompletionConsumer(&AugmentedConsumer);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001852
Douglas Gregordf95a132010-08-09 20:45:32 +00001853 // If we have a precompiled preamble, try to use it. We only allow
1854 // the use of the precompiled preamble if we're if the completion
1855 // point is within the main file, after the end of the precompiled
1856 // preamble.
1857 llvm::MemoryBuffer *OverrideMainBuffer = 0;
1858 if (!PreambleFile.empty()) {
1859 using llvm::sys::FileStatus;
1860 llvm::sys::PathWithStatus CompleteFilePath(File);
1861 llvm::sys::PathWithStatus MainPath(OriginalSourceFile);
1862 if (const FileStatus *CompleteFileStatus = CompleteFilePath.getFileStatus())
1863 if (const FileStatus *MainStatus = MainPath.getFileStatus())
1864 if (CompleteFileStatus->getUniqueID() == MainStatus->getUniqueID())
Douglas Gregor2283d792010-08-20 00:59:43 +00001865 OverrideMainBuffer
Douglas Gregorc9c29a82010-08-25 18:04:15 +00001866 = getMainBufferWithPrecompiledPreamble(CCInvocation, false,
1867 Line - 1);
Douglas Gregordf95a132010-08-09 20:45:32 +00001868 }
1869
1870 // If the main file has been overridden due to the use of a preamble,
1871 // make that override happen and introduce the preamble.
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001872 StoredDiagnostics.insert(StoredDiagnostics.end(),
1873 this->StoredDiagnostics.begin(),
1874 this->StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver);
Douglas Gregordf95a132010-08-09 20:45:32 +00001875 if (OverrideMainBuffer) {
1876 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
1877 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
1878 PreprocessorOpts.PrecompiledPreambleBytes.second
1879 = PreambleEndsAtStartOfLine;
1880 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
1881 PreprocessorOpts.DisablePCHValidation = true;
1882
1883 // The stored diagnostics have the old source manager. Copy them
1884 // to our output set of stored diagnostics, updating the source
1885 // manager to the one we were given.
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001886 for (unsigned I = NumStoredDiagnosticsFromDriver,
1887 N = this->StoredDiagnostics.size();
1888 I < N; ++I) {
Douglas Gregordf95a132010-08-09 20:45:32 +00001889 StoredDiagnostics.push_back(this->StoredDiagnostics[I]);
1890 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(), SourceMgr);
1891 StoredDiagnostics[I].setLocation(Loc);
1892 }
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001893
Douglas Gregor2283d792010-08-20 00:59:43 +00001894 OwnedBuffers.push_back(OverrideMainBuffer);
Douglas Gregorf128fed2010-08-20 00:02:33 +00001895 } else {
1896 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
1897 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregordf95a132010-08-09 20:45:32 +00001898 }
1899
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001900 llvm::OwningPtr<SyntaxOnlyAction> Act;
1901 Act.reset(new SyntaxOnlyAction);
1902 if (Act->BeginSourceFile(Clang, Clang.getFrontendOpts().Inputs[0].second,
1903 Clang.getFrontendOpts().Inputs[0].first)) {
1904 Act->Execute();
1905 Act->EndSourceFile();
1906 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001907
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001908 // Steal back our resources.
1909 Clang.takeFileManager();
1910 Clang.takeSourceManager();
1911 Clang.takeInvocation();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001912 Clang.takeCodeCompletionConsumer();
1913}
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001914
1915bool ASTUnit::Save(llvm::StringRef File) {
1916 if (getDiagnostics().hasErrorOccurred())
1917 return true;
1918
1919 // FIXME: Can we somehow regenerate the stat cache here, or do we need to
1920 // unconditionally create a stat cache when we parse the file?
1921 std::string ErrorInfo;
Benjamin Kramer1395c5d2010-08-15 16:54:31 +00001922 llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo,
1923 llvm::raw_fd_ostream::F_Binary);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001924 if (!ErrorInfo.empty() || Out.has_error())
1925 return true;
1926
1927 std::vector<unsigned char> Buffer;
1928 llvm::BitstreamWriter Stream(Buffer);
Sebastian Redla4232eb2010-08-18 23:56:21 +00001929 ASTWriter Writer(Stream);
1930 Writer.WriteAST(getSema(), 0, 0);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001931
1932 // Write the generated bitstream to "Out".
Douglas Gregorbdbb0042010-08-18 22:29:43 +00001933 if (!Buffer.empty())
1934 Out.write((char *)&Buffer.front(), Buffer.size());
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001935 Out.close();
1936 return Out.has_error();
1937}