blob: 26a880829ecb228d27754dec6a6428910e43e8b9 [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"
Argyrios Kyrtzidis4e03c2b2011-03-07 22:45:01 +000023#include "clang/Driver/ArgList.h"
24#include "clang/Driver/Options.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000025#include "clang/Driver/Tool.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000026#include "clang/Frontend/CompilerInstance.h"
27#include "clang/Frontend/FrontendActions.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000028#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000029#include "clang/Frontend/FrontendOptions.h"
Douglas Gregor32be4a52010-10-11 21:37:58 +000030#include "clang/Frontend/Utils.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000031#include "clang/Serialization/ASTReader.h"
Douglas Gregor89d99802010-11-30 06:16:57 +000032#include "clang/Serialization/ASTSerializationListener.h"
Sebastian Redl7faa2ec2010-08-18 23:56:37 +000033#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000034#include "clang/Lex/HeaderSearch.h"
35#include "clang/Lex/Preprocessor.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000036#include "clang/Basic/TargetOptions.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000037#include "clang/Basic/TargetInfo.h"
38#include "clang/Basic/Diagnostic.h"
Chris Lattner7f9fc3f2011-03-23 04:04:01 +000039#include "llvm/ADT/ArrayRef.h"
Douglas Gregor9b7db622011-02-16 18:16:54 +000040#include "llvm/ADT/StringExtras.h"
Douglas Gregor349d38c2010-08-16 23:08:34 +000041#include "llvm/ADT/StringSet.h"
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +000042#include "llvm/Support/Atomic.h"
Douglas Gregor4db64a42010-01-23 00:14:00 +000043#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000044#include "llvm/Support/Host.h"
45#include "llvm/Support/Path.h"
Douglas Gregordf95a132010-08-09 20:45:32 +000046#include "llvm/Support/raw_ostream.h"
Douglas Gregor385103b2010-07-30 20:58:08 +000047#include "llvm/Support/Timer.h"
Ted Kremenekb547eeb2011-03-18 02:06:56 +000048#include "llvm/Support/CrashRecoveryContext.h"
Douglas Gregor44c181a2010-07-23 00:33:23 +000049#include <cstdlib>
Zhongxing Xuad23ebe2010-07-23 02:15:08 +000050#include <cstdio>
Douglas Gregorcc5888d2010-07-31 00:40:00 +000051#include <sys/stat.h>
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000052using namespace clang;
53
Douglas Gregor213f18b2010-10-28 15:44:59 +000054using llvm::TimeRecord;
55
56namespace {
57 class SimpleTimer {
58 bool WantTiming;
59 TimeRecord Start;
60 std::string Output;
61
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000062 public:
Douglas Gregor9dba61a2010-11-01 13:48:43 +000063 explicit SimpleTimer(bool WantTiming) : WantTiming(WantTiming) {
Douglas Gregor213f18b2010-10-28 15:44:59 +000064 if (WantTiming)
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000065 Start = TimeRecord::getCurrentTime();
Douglas Gregor213f18b2010-10-28 15:44:59 +000066 }
67
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000068 void setOutput(const llvm::Twine &Output) {
Douglas Gregor213f18b2010-10-28 15:44:59 +000069 if (WantTiming)
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000070 this->Output = Output.str();
Douglas Gregor213f18b2010-10-28 15:44:59 +000071 }
72
Douglas Gregor213f18b2010-10-28 15:44:59 +000073 ~SimpleTimer() {
74 if (WantTiming) {
75 TimeRecord Elapsed = TimeRecord::getCurrentTime();
76 Elapsed -= Start;
77 llvm::errs() << Output << ':';
78 Elapsed.print(Elapsed, llvm::errs());
79 llvm::errs() << '\n';
80 }
81 }
82 };
83}
84
Douglas Gregoreababfb2010-08-04 05:53:38 +000085/// \brief After failing to build a precompiled preamble (due to
86/// errors in the source that occurs in the preamble), the number of
87/// reparses during which we'll skip even trying to precompile the
88/// preamble.
89const unsigned DefaultPreambleRebuildInterval = 5;
90
Douglas Gregore3c60a72010-11-17 00:13:31 +000091/// \brief Tracks the number of ASTUnit objects that are currently active.
92///
93/// Used for debugging purposes only.
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +000094static llvm::sys::cas_flag ActiveASTUnitObjects;
Douglas Gregore3c60a72010-11-17 00:13:31 +000095
Douglas Gregor3687e9d2010-04-05 21:10:19 +000096ASTUnit::ASTUnit(bool _MainFileIsAST)
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +000097 : OnlyLocalDecls(false), CaptureDiagnostics(false),
98 MainFileIsAST(_MainFileIsAST),
Douglas Gregor213f18b2010-10-28 15:44:59 +000099 CompleteTranslationUnit(true), WantTiming(getenv("LIBCLANG_TIMING")),
Argyrios Kyrtzidis15727dd2011-03-05 01:03:48 +0000100 OwnsRemappedFileBuffers(true),
Douglas Gregor213f18b2010-10-28 15:44:59 +0000101 NumStoredDiagnosticsFromDriver(0),
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000102 ConcurrencyCheckValue(CheckUnlocked),
Douglas Gregor671947b2010-08-19 01:33:06 +0000103 PreambleRebuildCounter(0), SavedMainFileBuffer(0), PreambleBuffer(0),
Douglas Gregor727d93e2010-08-17 00:40:40 +0000104 ShouldCacheCodeCompletionResults(false),
Chandler Carruthba7537f2011-07-14 09:02:10 +0000105 NestedMacroExpansions(true),
Douglas Gregor9b7db622011-02-16 18:16:54 +0000106 CompletionCacheTopLevelHashValue(0),
107 PreambleTopLevelHashValue(0),
108 CurrentTopLevelHashValue(0),
Douglas Gregor8b1540c2010-08-19 00:45:44 +0000109 UnsafeToFree(false) {
Douglas Gregore3c60a72010-11-17 00:13:31 +0000110 if (getenv("LIBCLANG_OBJTRACKING")) {
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +0000111 llvm::sys::AtomicIncrement(&ActiveASTUnitObjects);
Douglas Gregore3c60a72010-11-17 00:13:31 +0000112 fprintf(stderr, "+++ %d translation units\n", ActiveASTUnitObjects);
113 }
Douglas Gregor385103b2010-07-30 20:58:08 +0000114}
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000115
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000116ASTUnit::~ASTUnit() {
Douglas Gregorbdf60622010-03-05 21:16:25 +0000117 ConcurrencyCheckValue = CheckLocked;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000118 CleanTemporaryFiles();
Douglas Gregor175c4a92010-07-23 23:58:40 +0000119 if (!PreambleFile.empty())
Douglas Gregor385103b2010-07-30 20:58:08 +0000120 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000121
122 // Free the buffers associated with remapped files. We are required to
123 // perform this operation here because we explicitly request that the
124 // compiler instance *not* free these buffers for each invocation of the
125 // parser.
Ted Kremenek4f327862011-03-21 18:40:17 +0000126 if (Invocation.getPtr() && OwnsRemappedFileBuffers) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000127 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
128 for (PreprocessorOptions::remapped_file_buffer_iterator
129 FB = PPOpts.remapped_file_buffer_begin(),
130 FBEnd = PPOpts.remapped_file_buffer_end();
131 FB != FBEnd;
132 ++FB)
133 delete FB->second;
134 }
Douglas Gregor28233422010-07-27 14:52:07 +0000135
136 delete SavedMainFileBuffer;
Douglas Gregor671947b2010-08-19 01:33:06 +0000137 delete PreambleBuffer;
138
Douglas Gregor213f18b2010-10-28 15:44:59 +0000139 ClearCachedCompletionResults();
Douglas Gregore3c60a72010-11-17 00:13:31 +0000140
141 if (getenv("LIBCLANG_OBJTRACKING")) {
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +0000142 llvm::sys::AtomicDecrement(&ActiveASTUnitObjects);
Douglas Gregore3c60a72010-11-17 00:13:31 +0000143 fprintf(stderr, "--- %d translation units\n", ActiveASTUnitObjects);
144 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000145}
146
147void ASTUnit::CleanTemporaryFiles() {
Douglas Gregor313e26c2010-02-18 23:35:40 +0000148 for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I)
149 TemporaryFiles[I].eraseFromDisk();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000150 TemporaryFiles.clear();
Steve Naroffe19944c2009-10-15 22:23:48 +0000151}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000152
Douglas Gregor8071e422010-08-15 06:18:01 +0000153/// \brief Determine the set of code-completion contexts in which this
154/// declaration should be shown.
155static unsigned getDeclShowContexts(NamedDecl *ND,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000156 const LangOptions &LangOpts,
157 bool &IsNestedNameSpecifier) {
158 IsNestedNameSpecifier = false;
159
Douglas Gregor8071e422010-08-15 06:18:01 +0000160 if (isa<UsingShadowDecl>(ND))
161 ND = dyn_cast<NamedDecl>(ND->getUnderlyingDecl());
162 if (!ND)
163 return 0;
164
165 unsigned Contexts = 0;
166 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND) ||
167 isa<ClassTemplateDecl>(ND) || isa<TemplateTemplateParmDecl>(ND)) {
168 // Types can appear in these contexts.
169 if (LangOpts.CPlusPlus || !isa<TagDecl>(ND))
170 Contexts |= (1 << (CodeCompletionContext::CCC_TopLevel - 1))
171 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
172 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
173 | (1 << (CodeCompletionContext::CCC_Statement - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000174 | (1 << (CodeCompletionContext::CCC_Type - 1))
175 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000176
177 // In C++, types can appear in expressions contexts (for functional casts).
178 if (LangOpts.CPlusPlus)
179 Contexts |= (1 << (CodeCompletionContext::CCC_Expression - 1));
180
181 // In Objective-C, message sends can send interfaces. In Objective-C++,
182 // all types are available due to functional casts.
183 if (LangOpts.CPlusPlus || isa<ObjCInterfaceDecl>(ND))
184 Contexts |= (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
Douglas Gregor3da626b2011-07-07 16:03:39 +0000185
186 // In Objective-C, you can only be a subclass of another Objective-C class
187 if (isa<ObjCInterfaceDecl>(ND))
188 Contexts |= (1 << (CodeCompletionContext::CCC_ObjCSuperclass - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000189
190 // Deal with tag names.
191 if (isa<EnumDecl>(ND)) {
192 Contexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1));
193
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000194 // Part of the nested-name-specifier in C++0x.
Douglas Gregor8071e422010-08-15 06:18:01 +0000195 if (LangOpts.CPlusPlus0x)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000196 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000197 } else if (RecordDecl *Record = dyn_cast<RecordDecl>(ND)) {
198 if (Record->isUnion())
199 Contexts |= (1 << (CodeCompletionContext::CCC_UnionTag - 1));
200 else
201 Contexts |= (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
202
Douglas Gregor8071e422010-08-15 06:18:01 +0000203 if (LangOpts.CPlusPlus)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000204 IsNestedNameSpecifier = true;
Douglas Gregor52779fb2010-09-23 23:01:17 +0000205 } else if (isa<ClassTemplateDecl>(ND))
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000206 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000207 } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
208 // Values can appear in these contexts.
209 Contexts = (1 << (CodeCompletionContext::CCC_Statement - 1))
210 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000211 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
Douglas Gregor8071e422010-08-15 06:18:01 +0000212 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
213 } else if (isa<ObjCProtocolDecl>(ND)) {
214 Contexts = (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1));
Douglas Gregor3da626b2011-07-07 16:03:39 +0000215 } else if (isa<ObjCCategoryDecl>(ND)) {
216 Contexts = (1 << (CodeCompletionContext::CCC_ObjCCategoryName - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000217 } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000218 Contexts = (1 << (CodeCompletionContext::CCC_Namespace - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000219
220 // Part of the nested-name-specifier.
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000221 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000222 }
223
224 return Contexts;
225}
226
Douglas Gregor87c08a52010-08-13 22:48:40 +0000227void ASTUnit::CacheCodeCompletionResults() {
228 if (!TheSema)
229 return;
230
Douglas Gregor213f18b2010-10-28 15:44:59 +0000231 SimpleTimer Timer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +0000232 Timer.setOutput("Cache global code completions for " + getMainFileName());
Douglas Gregor87c08a52010-08-13 22:48:40 +0000233
234 // Clear out the previous results.
235 ClearCachedCompletionResults();
236
237 // Gather the set of global code completions.
John McCall0a2c5e22010-08-25 06:19:51 +0000238 typedef CodeCompletionResult Result;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000239 llvm::SmallVector<Result, 8> Results;
Douglas Gregor48601b32011-02-16 19:08:06 +0000240 CachedCompletionAllocator = new GlobalCodeCompletionAllocator;
241 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator, Results);
Douglas Gregor87c08a52010-08-13 22:48:40 +0000242
243 // Translate global code completions into cached completions.
Douglas Gregorf5586f62010-08-16 18:08:11 +0000244 llvm::DenseMap<CanQualType, unsigned> CompletionTypes;
245
Douglas Gregor87c08a52010-08-13 22:48:40 +0000246 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
247 switch (Results[I].Kind) {
Douglas Gregor8071e422010-08-15 06:18:01 +0000248 case Result::RK_Declaration: {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000249 bool IsNestedNameSpecifier = false;
Douglas Gregor8071e422010-08-15 06:18:01 +0000250 CachedCodeCompletionResult CachedResult;
Douglas Gregor218937c2011-02-01 19:23:04 +0000251 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor48601b32011-02-16 19:08:06 +0000252 *CachedCompletionAllocator);
Douglas Gregor8071e422010-08-15 06:18:01 +0000253 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000254 Ctx->getLangOptions(),
255 IsNestedNameSpecifier);
Douglas Gregor8071e422010-08-15 06:18:01 +0000256 CachedResult.Priority = Results[I].Priority;
257 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000258 CachedResult.Availability = Results[I].Availability;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000259
Douglas Gregorf5586f62010-08-16 18:08:11 +0000260 // Keep track of the type of this completion in an ASTContext-agnostic
261 // way.
Douglas Gregorc4421e92010-08-16 16:46:30 +0000262 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
Douglas Gregorf5586f62010-08-16 18:08:11 +0000263 if (UsageType.isNull()) {
Douglas Gregorc4421e92010-08-16 16:46:30 +0000264 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000265 CachedResult.Type = 0;
266 } else {
267 CanQualType CanUsageType
268 = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
269 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
270
271 // Determine whether we have already seen this type. If so, we save
272 // ourselves the work of formatting the type string by using the
273 // temporary, CanQualType-based hash table to find the associated value.
274 unsigned &TypeValue = CompletionTypes[CanUsageType];
275 if (TypeValue == 0) {
276 TypeValue = CompletionTypes.size();
277 CachedCompletionTypes[QualType(CanUsageType).getAsString()]
278 = TypeValue;
279 }
280
281 CachedResult.Type = TypeValue;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000282 }
Douglas Gregorf5586f62010-08-16 18:08:11 +0000283
Douglas Gregor8071e422010-08-15 06:18:01 +0000284 CachedCompletionResults.push_back(CachedResult);
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000285
286 /// Handle nested-name-specifiers in C++.
287 if (TheSema->Context.getLangOptions().CPlusPlus &&
288 IsNestedNameSpecifier && !Results[I].StartsNestedNameSpecifier) {
289 // The contexts in which a nested-name-specifier can appear in C++.
290 unsigned NNSContexts
291 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
292 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
293 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
294 | (1 << (CodeCompletionContext::CCC_Statement - 1))
295 | (1 << (CodeCompletionContext::CCC_Expression - 1))
296 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
297 | (1 << (CodeCompletionContext::CCC_EnumTag - 1))
298 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
299 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1))
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000300 | (1 << (CodeCompletionContext::CCC_Type - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000301 | (1 << (CodeCompletionContext::CCC_PotentiallyQualifiedName - 1))
302 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000303
304 if (isa<NamespaceDecl>(Results[I].Declaration) ||
305 isa<NamespaceAliasDecl>(Results[I].Declaration))
306 NNSContexts |= (1 << (CodeCompletionContext::CCC_Namespace - 1));
307
308 if (unsigned RemainingContexts
309 = NNSContexts & ~CachedResult.ShowInContexts) {
310 // If there any contexts where this completion can be a
311 // nested-name-specifier but isn't already an option, create a
312 // nested-name-specifier completion.
313 Results[I].StartsNestedNameSpecifier = true;
Douglas Gregor218937c2011-02-01 19:23:04 +0000314 CachedResult.Completion
315 = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor48601b32011-02-16 19:08:06 +0000316 *CachedCompletionAllocator);
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000317 CachedResult.ShowInContexts = RemainingContexts;
318 CachedResult.Priority = CCP_NestedNameSpecifier;
319 CachedResult.TypeClass = STC_Void;
320 CachedResult.Type = 0;
321 CachedCompletionResults.push_back(CachedResult);
322 }
323 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000324 break;
Douglas Gregor8071e422010-08-15 06:18:01 +0000325 }
326
Douglas Gregor87c08a52010-08-13 22:48:40 +0000327 case Result::RK_Keyword:
328 case Result::RK_Pattern:
329 // Ignore keywords and patterns; we don't care, since they are so
330 // easily regenerated.
331 break;
332
333 case Result::RK_Macro: {
334 CachedCodeCompletionResult CachedResult;
Douglas Gregor218937c2011-02-01 19:23:04 +0000335 CachedResult.Completion
336 = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor48601b32011-02-16 19:08:06 +0000337 *CachedCompletionAllocator);
Douglas Gregor87c08a52010-08-13 22:48:40 +0000338 CachedResult.ShowInContexts
339 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
340 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
341 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
342 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
343 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
344 | (1 << (CodeCompletionContext::CCC_Statement - 1))
345 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000346 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
Douglas Gregorf29c5232010-08-24 22:20:20 +0000347 | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000348 | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1))
Douglas Gregor5c722c702011-02-18 23:30:37 +0000349 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
350 | (1 << (CodeCompletionContext::CCC_OtherWithMacros - 1));
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000351
Douglas Gregor87c08a52010-08-13 22:48:40 +0000352 CachedResult.Priority = Results[I].Priority;
353 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000354 CachedResult.Availability = Results[I].Availability;
Douglas Gregor1827e102010-08-16 16:18:59 +0000355 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000356 CachedResult.Type = 0;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000357 CachedCompletionResults.push_back(CachedResult);
358 break;
359 }
360 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000361 }
Douglas Gregor9b7db622011-02-16 18:16:54 +0000362
363 // Save the current top-level hash value.
364 CompletionCacheTopLevelHashValue = CurrentTopLevelHashValue;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000365}
366
367void ASTUnit::ClearCachedCompletionResults() {
Douglas Gregor87c08a52010-08-13 22:48:40 +0000368 CachedCompletionResults.clear();
Douglas Gregorf5586f62010-08-16 18:08:11 +0000369 CachedCompletionTypes.clear();
Douglas Gregor48601b32011-02-16 19:08:06 +0000370 CachedCompletionAllocator = 0;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000371}
372
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000373namespace {
374
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000375/// \brief Gathers information from ASTReader that will be used to initialize
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000376/// a Preprocessor.
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000377class ASTInfoCollector : public ASTReaderListener {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000378 LangOptions &LangOpt;
379 HeaderSearch &HSI;
380 std::string &TargetTriple;
381 std::string &Predefines;
382 unsigned &Counter;
Mike Stump1eb44332009-09-09 15:08:12 +0000383
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000384 unsigned NumHeaderInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000385
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000386public:
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000387 ASTInfoCollector(LangOptions &LangOpt, HeaderSearch &HSI,
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000388 std::string &TargetTriple, std::string &Predefines,
389 unsigned &Counter)
390 : LangOpt(LangOpt), HSI(HSI), TargetTriple(TargetTriple),
391 Predefines(Predefines), Counter(Counter), NumHeaderInfos(0) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000392
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000393 virtual bool ReadLanguageOptions(const LangOptions &LangOpts) {
394 LangOpt = LangOpts;
395 return false;
396 }
Mike Stump1eb44332009-09-09 15:08:12 +0000397
Daniel Dunbardc3c0d22009-11-11 00:52:11 +0000398 virtual bool ReadTargetTriple(llvm::StringRef Triple) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000399 TargetTriple = Triple;
400 return false;
401 }
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000403 virtual bool ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000404 llvm::StringRef OriginalFileName,
Nick Lewycky277a6e72011-02-23 21:16:44 +0000405 std::string &SuggestedPredefines,
406 FileManager &FileMgr) {
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000407 Predefines = Buffers[0].Data;
408 for (unsigned I = 1, N = Buffers.size(); I != N; ++I) {
409 Predefines += Buffers[I].Data;
410 }
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000411 return false;
412 }
Mike Stump1eb44332009-09-09 15:08:12 +0000413
Douglas Gregorec1afbf2010-03-16 19:09:18 +0000414 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000415 HSI.setHeaderFileInfoForUID(HFI, NumHeaderInfos++);
416 }
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000418 virtual void ReadCounter(unsigned Value) {
419 Counter = Value;
420 }
421};
422
Douglas Gregora88084b2010-02-18 18:08:43 +0000423class StoredDiagnosticClient : public DiagnosticClient {
424 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags;
425
426public:
427 explicit StoredDiagnosticClient(
428 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
429 : StoredDiags(StoredDiags) { }
430
431 virtual void HandleDiagnostic(Diagnostic::Level Level,
432 const DiagnosticInfo &Info);
433};
434
435/// \brief RAII object that optionally captures diagnostics, if
436/// there is no diagnostic client to capture them already.
437class CaptureDroppedDiagnostics {
438 Diagnostic &Diags;
439 StoredDiagnosticClient Client;
440 DiagnosticClient *PreviousClient;
441
442public:
443 CaptureDroppedDiagnostics(bool RequestCapture, Diagnostic &Diags,
Douglas Gregore47be3e2010-11-11 00:39:14 +0000444 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000445 : Diags(Diags), Client(StoredDiags), PreviousClient(0)
Douglas Gregora88084b2010-02-18 18:08:43 +0000446 {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000447 if (RequestCapture || Diags.getClient() == 0) {
448 PreviousClient = Diags.takeClient();
Douglas Gregora88084b2010-02-18 18:08:43 +0000449 Diags.setClient(&Client);
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000450 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000451 }
452
453 ~CaptureDroppedDiagnostics() {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000454 if (Diags.getClient() == &Client) {
455 Diags.takeClient();
456 Diags.setClient(PreviousClient);
457 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000458 }
459};
460
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000461} // anonymous namespace
462
Douglas Gregora88084b2010-02-18 18:08:43 +0000463void StoredDiagnosticClient::HandleDiagnostic(Diagnostic::Level Level,
464 const DiagnosticInfo &Info) {
Argyrios Kyrtzidisf2224d82010-11-18 20:06:46 +0000465 // Default implementation (Warnings/errors count).
466 DiagnosticClient::HandleDiagnostic(Level, Info);
467
Douglas Gregora88084b2010-02-18 18:08:43 +0000468 StoredDiags.push_back(StoredDiagnostic(Level, Info));
469}
470
Steve Naroff77accc12009-09-03 18:19:54 +0000471const std::string &ASTUnit::getOriginalSourceFileName() {
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000472 return OriginalSourceFile;
Steve Naroff77accc12009-09-03 18:19:54 +0000473}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000474
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000475const std::string &ASTUnit::getASTFileName() {
476 assert(isMainFileAST() && "Not an ASTUnit from an AST file!");
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000477 return static_cast<ASTReader *>(Ctx->getExternalSource())->getFileName();
Steve Naroffe19944c2009-10-15 22:23:48 +0000478}
479
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000480llvm::MemoryBuffer *ASTUnit::getBufferForFile(llvm::StringRef Filename,
Chris Lattner75dfb652010-11-23 09:19:42 +0000481 std::string *ErrorStr) {
Chris Lattner39b49bc2010-11-23 08:35:12 +0000482 assert(FileMgr);
Chris Lattner75dfb652010-11-23 09:19:42 +0000483 return FileMgr->getBufferForFile(Filename, ErrorStr);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000484}
485
Douglas Gregore47be3e2010-11-11 00:39:14 +0000486/// \brief Configure the diagnostics object for use with ASTUnit.
487void ASTUnit::ConfigureDiags(llvm::IntrusiveRefCntPtr<Diagnostic> &Diags,
Douglas Gregor0b53cf82011-01-19 01:02:47 +0000488 const char **ArgBegin, const char **ArgEnd,
Douglas Gregore47be3e2010-11-11 00:39:14 +0000489 ASTUnit &AST, bool CaptureDiagnostics) {
490 if (!Diags.getPtr()) {
491 // No diagnostics engine was provided, so create our own diagnostics object
492 // with the default options.
493 DiagnosticOptions DiagOpts;
494 DiagnosticClient *Client = 0;
495 if (CaptureDiagnostics)
496 Client = new StoredDiagnosticClient(AST.StoredDiagnostics);
Douglas Gregor0b53cf82011-01-19 01:02:47 +0000497 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgEnd- ArgBegin,
498 ArgBegin, Client);
Douglas Gregore47be3e2010-11-11 00:39:14 +0000499 } else if (CaptureDiagnostics) {
500 Diags->setClient(new StoredDiagnosticClient(AST.StoredDiagnostics));
501 }
502}
503
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000504ASTUnit *ASTUnit::LoadFromASTFile(const std::string &Filename,
Douglas Gregor28019772010-04-05 23:52:57 +0000505 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000506 const FileSystemOptions &FileSystemOpts,
Ted Kremenek5cf48762009-10-17 00:34:24 +0000507 bool OnlyLocalDecls,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000508 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +0000509 unsigned NumRemappedFiles,
510 bool CaptureDiagnostics) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000511 llvm::OwningPtr<ASTUnit> AST(new ASTUnit(true));
Ted Kremenekb547eeb2011-03-18 02:06:56 +0000512
513 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +0000514 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
515 ASTUnitCleanup(AST.get());
516 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
517 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
518 DiagCleanup(Diags.getPtr());
Ted Kremenekb547eeb2011-03-18 02:06:56 +0000519
Douglas Gregor0b53cf82011-01-19 01:02:47 +0000520 ConfigureDiags(Diags, 0, 0, *AST, CaptureDiagnostics);
Douglas Gregorabc563f2010-07-19 21:46:24 +0000521
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000522 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +0000523 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor28019772010-04-05 23:52:57 +0000524 AST->Diagnostics = Diags;
Ted Kremenek4f327862011-03-21 18:40:17 +0000525 AST->FileMgr = new FileManager(FileSystemOpts);
526 AST->SourceMgr = new SourceManager(AST->getDiagnostics(),
527 AST->getFileManager());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000528 AST->HeaderInfo.reset(new HeaderSearch(AST->getFileManager()));
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000529
Douglas Gregor4db64a42010-01-23 00:14:00 +0000530 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000531 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
532 if (const llvm::MemoryBuffer *
533 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
534 // Create the file entry for the file that we're mapping from.
535 const FileEntry *FromFile
536 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
537 memBuf->getBufferSize(),
538 0);
539 if (!FromFile) {
540 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
541 << RemappedFiles[I].first;
542 delete memBuf;
543 continue;
544 }
545
546 // Override the contents of the "from" file with the contents of
547 // the "to" file.
548 AST->getSourceManager().overrideFileContents(FromFile, memBuf);
549
550 } else {
551 const char *fname = fileOrBuf.get<const char *>();
552 const FileEntry *ToFile = AST->FileMgr->getFile(fname);
553 if (!ToFile) {
554 AST->getDiagnostics().Report(diag::err_fe_remap_missing_to_file)
555 << RemappedFiles[I].first << fname;
556 continue;
557 }
558
559 // Create the file entry for the file that we're mapping from.
560 const FileEntry *FromFile
561 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
562 ToFile->getSize(),
563 0);
564 if (!FromFile) {
565 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
566 << RemappedFiles[I].first;
567 delete memBuf;
568 continue;
569 }
570
571 // Override the contents of the "from" file with the contents of
572 // the "to" file.
573 AST->getSourceManager().overrideFileContents(FromFile, ToFile);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000574 }
Douglas Gregor4db64a42010-01-23 00:14:00 +0000575 }
576
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000577 // Gather Info for preprocessor construction later on.
Mike Stump1eb44332009-09-09 15:08:12 +0000578
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000579 LangOptions LangInfo;
580 HeaderSearch &HeaderInfo = *AST->HeaderInfo.get();
581 std::string TargetTriple;
582 std::string Predefines;
583 unsigned Counter;
584
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000585 llvm::OwningPtr<ASTReader> Reader;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000586
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000587 Reader.reset(new ASTReader(AST->getSourceManager(), AST->getFileManager(),
Chris Lattner39b49bc2010-11-23 08:35:12 +0000588 AST->getDiagnostics()));
Ted Kremenek8c647de2011-05-04 23:27:12 +0000589
590 // Recover resources if we crash before exiting this method.
591 llvm::CrashRecoveryContextCleanupRegistrar<ASTReader>
592 ReaderCleanup(Reader.get());
593
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000594 Reader->setListener(new ASTInfoCollector(LangInfo, HeaderInfo, TargetTriple,
Daniel Dunbarcc318932009-09-03 05:59:35 +0000595 Predefines, Counter));
596
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +0000597 switch (Reader->ReadAST(Filename, ASTReader::MainFile)) {
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000598 case ASTReader::Success:
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000599 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000601 case ASTReader::Failure:
602 case ASTReader::IgnorePCH:
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000603 AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000604 return NULL;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000605 }
Mike Stump1eb44332009-09-09 15:08:12 +0000606
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000607 AST->OriginalSourceFile = Reader->getOriginalSourceFile();
608
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000609 // AST file loaded successfully. Now create the preprocessor.
Mike Stump1eb44332009-09-09 15:08:12 +0000610
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000611 // Get information about the target being compiled for.
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000612 //
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000613 // FIXME: This is broken, we should store the TargetOptions in the AST file.
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000614 TargetOptions TargetOpts;
615 TargetOpts.ABI = "";
John McCall875ab102010-08-22 06:43:33 +0000616 TargetOpts.CXXABI = "";
Daniel Dunbard58c03f2009-11-15 06:48:46 +0000617 TargetOpts.CPU = "";
618 TargetOpts.Features.clear();
619 TargetOpts.Triple = TargetTriple;
Ted Kremenek4f327862011-03-21 18:40:17 +0000620 AST->Target = TargetInfo::CreateTargetInfo(AST->getDiagnostics(),
621 TargetOpts);
622 AST->PP = new Preprocessor(AST->getDiagnostics(), LangInfo, *AST->Target,
623 AST->getSourceManager(), HeaderInfo);
624 Preprocessor &PP = *AST->PP;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000625
Daniel Dunbard5b61262009-09-21 03:03:47 +0000626 PP.setPredefines(Reader->getSuggestedPredefines());
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000627 PP.setCounterValue(Counter);
Daniel Dunbarcc318932009-09-03 05:59:35 +0000628 Reader->setPreprocessor(PP);
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000630 // Create and initialize the ASTContext.
631
Ted Kremenek4f327862011-03-21 18:40:17 +0000632 AST->Ctx = new ASTContext(LangInfo,
633 AST->getSourceManager(),
634 *AST->Target,
635 PP.getIdentifierTable(),
636 PP.getSelectorTable(),
637 PP.getBuiltinInfo(),
638 /* size_reserve = */0);
639 ASTContext &Context = *AST->Ctx;
Mike Stump1eb44332009-09-09 15:08:12 +0000640
Daniel Dunbarcc318932009-09-03 05:59:35 +0000641 Reader->InitializeContext(Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000643 // Attach the AST reader to the AST context as an external AST
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000644 // source, so that declarations will be deserialized from the
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000645 // AST file as needed.
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000646 ASTReader *ReaderPtr = Reader.get();
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000647 llvm::OwningPtr<ExternalASTSource> Source(Reader.take());
Ted Kremenek8c647de2011-05-04 23:27:12 +0000648
649 // Unregister the cleanup for ASTReader. It will get cleaned up
650 // by the ASTUnit cleanup.
651 ReaderCleanup.unregister();
652
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000653 Context.setExternalSource(Source);
654
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000655 // Create an AST consumer, even though it isn't used.
656 AST->Consumer.reset(new ASTConsumer);
657
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000658 // Create a semantic analysis object and tell the AST reader about it.
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000659 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
660 AST->TheSema->Initialize();
661 ReaderPtr->InitializeSema(*AST->TheSema);
662
Mike Stump1eb44332009-09-09 15:08:12 +0000663 return AST.take();
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000664}
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000665
666namespace {
667
Douglas Gregor9b7db622011-02-16 18:16:54 +0000668/// \brief Preprocessor callback class that updates a hash value with the names
669/// of all macros that have been defined by the translation unit.
670class MacroDefinitionTrackerPPCallbacks : public PPCallbacks {
671 unsigned &Hash;
672
673public:
674 explicit MacroDefinitionTrackerPPCallbacks(unsigned &Hash) : Hash(Hash) { }
675
676 virtual void MacroDefined(const Token &MacroNameTok, const MacroInfo *MI) {
677 Hash = llvm::HashString(MacroNameTok.getIdentifierInfo()->getName(), Hash);
678 }
679};
680
681/// \brief Add the given declaration to the hash of all top-level entities.
682void AddTopLevelDeclarationToHash(Decl *D, unsigned &Hash) {
683 if (!D)
684 return;
685
686 DeclContext *DC = D->getDeclContext();
687 if (!DC)
688 return;
689
690 if (!(DC->isTranslationUnit() || DC->getLookupParent()->isTranslationUnit()))
691 return;
692
693 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
694 if (ND->getIdentifier())
695 Hash = llvm::HashString(ND->getIdentifier()->getName(), Hash);
696 else if (DeclarationName Name = ND->getDeclName()) {
697 std::string NameStr = Name.getAsString();
698 Hash = llvm::HashString(NameStr, Hash);
699 }
700 return;
701 }
702
703 if (ObjCForwardProtocolDecl *Forward
704 = dyn_cast<ObjCForwardProtocolDecl>(D)) {
705 for (ObjCForwardProtocolDecl::protocol_iterator
706 P = Forward->protocol_begin(),
707 PEnd = Forward->protocol_end();
708 P != PEnd; ++P)
709 AddTopLevelDeclarationToHash(*P, Hash);
710 return;
711 }
712
713 if (ObjCClassDecl *Class = llvm::dyn_cast<ObjCClassDecl>(D)) {
714 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
715 I != IEnd; ++I)
716 AddTopLevelDeclarationToHash(I->getInterface(), Hash);
717 return;
718 }
719}
720
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000721class TopLevelDeclTrackerConsumer : public ASTConsumer {
722 ASTUnit &Unit;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000723 unsigned &Hash;
724
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000725public:
Douglas Gregor9b7db622011-02-16 18:16:54 +0000726 TopLevelDeclTrackerConsumer(ASTUnit &_Unit, unsigned &Hash)
727 : Unit(_Unit), Hash(Hash) {
728 Hash = 0;
729 }
730
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000731 void HandleTopLevelDecl(DeclGroupRef D) {
Ted Kremenekda5a4282010-05-03 20:16:35 +0000732 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
733 Decl *D = *it;
734 // FIXME: Currently ObjC method declarations are incorrectly being
735 // reported as top-level declarations, even though their DeclContext
736 // is the containing ObjC @interface/@implementation. This is a
737 // fundamental problem in the parser right now.
738 if (isa<ObjCMethodDecl>(D))
739 continue;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000740
741 AddTopLevelDeclarationToHash(D, Hash);
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000742 Unit.addTopLevelDecl(D);
Ted Kremenekda5a4282010-05-03 20:16:35 +0000743 }
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000744 }
Sebastian Redl27372b42010-08-11 18:52:41 +0000745
746 // We're not interested in "interesting" decls.
747 void HandleInterestingDecl(DeclGroupRef) {}
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000748};
749
750class TopLevelDeclTrackerAction : public ASTFrontendAction {
751public:
752 ASTUnit &Unit;
753
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000754 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
755 llvm::StringRef InFile) {
Douglas Gregor9b7db622011-02-16 18:16:54 +0000756 CI.getPreprocessor().addPPCallbacks(
757 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
758 return new TopLevelDeclTrackerConsumer(Unit,
759 Unit.getCurrentTopLevelHashValue());
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000760 }
761
762public:
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000763 TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
764
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000765 virtual bool hasCodeCompletionSupport() const { return false; }
Douglas Gregordf95a132010-08-09 20:45:32 +0000766 virtual bool usesCompleteTranslationUnit() {
767 return Unit.isCompleteTranslationUnit();
768 }
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000769};
770
Douglas Gregor89d99802010-11-30 06:16:57 +0000771class PrecompilePreambleConsumer : public PCHGenerator,
772 public ASTSerializationListener {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000773 ASTUnit &Unit;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000774 unsigned &Hash;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000775 std::vector<Decl *> TopLevelDecls;
Douglas Gregor89d99802010-11-30 06:16:57 +0000776
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000777public:
778 PrecompilePreambleConsumer(ASTUnit &Unit,
779 const Preprocessor &PP, bool Chaining,
780 const char *isysroot, llvm::raw_ostream *Out)
Douglas Gregor9b7db622011-02-16 18:16:54 +0000781 : PCHGenerator(PP, "", Chaining, isysroot, Out), Unit(Unit),
782 Hash(Unit.getCurrentTopLevelHashValue()) {
783 Hash = 0;
784 }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000785
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000786 virtual void HandleTopLevelDecl(DeclGroupRef D) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000787 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
788 Decl *D = *it;
789 // FIXME: Currently ObjC method declarations are incorrectly being
790 // reported as top-level declarations, even though their DeclContext
791 // is the containing ObjC @interface/@implementation. This is a
792 // fundamental problem in the parser right now.
793 if (isa<ObjCMethodDecl>(D))
794 continue;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000795 AddTopLevelDeclarationToHash(D, Hash);
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000796 TopLevelDecls.push_back(D);
797 }
798 }
799
800 virtual void HandleTranslationUnit(ASTContext &Ctx) {
801 PCHGenerator::HandleTranslationUnit(Ctx);
802 if (!Unit.getDiagnostics().hasErrorOccurred()) {
803 // Translate the top-level declarations we captured during
804 // parsing into declaration IDs in the precompiled
805 // preamble. This will allow us to deserialize those top-level
806 // declarations when requested.
807 for (unsigned I = 0, N = TopLevelDecls.size(); I != N; ++I)
808 Unit.addTopLevelDeclFromPreamble(
809 getWriter().getDeclID(TopLevelDecls[I]));
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000810 }
811 }
Douglas Gregor89d99802010-11-30 06:16:57 +0000812
813 virtual void SerializedPreprocessedEntity(PreprocessedEntity *Entity,
814 uint64_t Offset) {
815 Unit.addPreprocessedEntityFromPreamble(Offset);
816 }
817
818 virtual ASTSerializationListener *GetASTSerializationListener() {
819 return this;
820 }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000821};
822
823class PrecompilePreambleAction : public ASTFrontendAction {
824 ASTUnit &Unit;
825
826public:
827 explicit PrecompilePreambleAction(ASTUnit &Unit) : Unit(Unit) {}
828
829 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
830 llvm::StringRef InFile) {
831 std::string Sysroot;
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000832 std::string OutputFile;
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000833 llvm::raw_ostream *OS = 0;
834 bool Chaining;
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000835 if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot,
836 OutputFile,
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000837 OS, Chaining))
838 return 0;
839
840 const char *isysroot = CI.getFrontendOpts().RelocatablePCH ?
841 Sysroot.c_str() : 0;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000842 CI.getPreprocessor().addPPCallbacks(
843 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000844 return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Chaining,
845 isysroot, OS);
846 }
847
848 virtual bool hasCodeCompletionSupport() const { return false; }
849 virtual bool hasASTFileSupport() const { return false; }
Douglas Gregordf95a132010-08-09 20:45:32 +0000850 virtual bool usesCompleteTranslationUnit() { return false; }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000851};
852
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000853}
854
Douglas Gregorabc563f2010-07-19 21:46:24 +0000855/// Parse the source file into a translation unit using the given compiler
856/// invocation, replacing the current translation unit.
857///
858/// \returns True if a failure occurred that causes the ASTUnit not to
859/// contain any translation-unit information, false otherwise.
Douglas Gregor754f3492010-07-24 00:38:13 +0000860bool ASTUnit::Parse(llvm::MemoryBuffer *OverrideMainBuffer) {
Douglas Gregor28233422010-07-27 14:52:07 +0000861 delete SavedMainFileBuffer;
862 SavedMainFileBuffer = 0;
863
Ted Kremenek4f327862011-03-21 18:40:17 +0000864 if (!Invocation) {
Douglas Gregor671947b2010-08-19 01:33:06 +0000865 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000866 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000867 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000868
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000869 // Create the compiler instance to use for building the AST.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000870 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
871
872 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +0000873 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
874 CICleanup(Clang.get());
Ted Kremenek03201fb2011-03-21 18:40:07 +0000875
Ted Kremenek4f327862011-03-21 18:40:17 +0000876 Clang->setInvocation(&*Invocation);
Ted Kremenek03201fb2011-03-21 18:40:07 +0000877 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000878
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000879 // Set up diagnostics, capturing any diagnostics that would
880 // otherwise be dropped.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000881 Clang->setDiagnostics(&getDiagnostics());
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000882
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000883 // Create the target instance.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000884 Clang->getTargetOpts().Features = TargetFeatures;
885 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
Ted Kremenek4f327862011-03-21 18:40:17 +0000886 Clang->getTargetOpts()));
Ted Kremenek03201fb2011-03-21 18:40:07 +0000887 if (!Clang->hasTarget()) {
Douglas Gregor671947b2010-08-19 01:33:06 +0000888 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000889 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000890 }
891
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000892 // Inform the target of the language options.
893 //
894 // FIXME: We shouldn't need to do this, the target should be immutable once
895 // created. This complexity should be lifted elsewhere.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000896 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000897
Ted Kremenek03201fb2011-03-21 18:40:07 +0000898 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000899 "Invocation must have exactly one source file!");
Ted Kremenek03201fb2011-03-21 18:40:07 +0000900 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000901 "FIXME: AST inputs not yet supported here!");
Ted Kremenek03201fb2011-03-21 18:40:07 +0000902 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Daniel Dunbarfaddc3e2010-06-07 23:26:47 +0000903 "IR inputs not support here!");
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000904
Douglas Gregorabc563f2010-07-19 21:46:24 +0000905 // Configure the various subsystems.
906 // FIXME: Should we retain the previous file manager?
Ted Kremenek03201fb2011-03-21 18:40:07 +0000907 FileSystemOpts = Clang->getFileSystemOpts();
Ted Kremenek4f327862011-03-21 18:40:17 +0000908 FileMgr = new FileManager(FileSystemOpts);
909 SourceMgr = new SourceManager(getDiagnostics(), *FileMgr);
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000910 TheSema.reset();
Ted Kremenek4f327862011-03-21 18:40:17 +0000911 Ctx = 0;
912 PP = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000913
914 // Clear out old caches and data.
915 TopLevelDecls.clear();
Douglas Gregor89d99802010-11-30 06:16:57 +0000916 PreprocessedEntities.clear();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000917 CleanTemporaryFiles();
918 PreprocessedEntitiesByFile.clear();
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000919
Douglas Gregorf128fed2010-08-20 00:02:33 +0000920 if (!OverrideMainBuffer) {
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000921 StoredDiagnostics.erase(
922 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
923 StoredDiagnostics.end());
Douglas Gregorf128fed2010-08-20 00:02:33 +0000924 TopLevelDeclsInPreamble.clear();
Douglas Gregor89d99802010-11-30 06:16:57 +0000925 PreprocessedEntitiesInPreamble.clear();
Douglas Gregorf128fed2010-08-20 00:02:33 +0000926 }
927
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000928 // Create a file manager object to provide access to and cache the filesystem.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000929 Clang->setFileManager(&getFileManager());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000930
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000931 // Create the source manager.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000932 Clang->setSourceManager(&getSourceManager());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000933
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000934 // If the main file has been overridden due to the use of a preamble,
935 // make that override happen and introduce the preamble.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000936 PreprocessorOptions &PreprocessorOpts = Clang->getPreprocessorOpts();
Chandler Carruthba7537f2011-07-14 09:02:10 +0000937 PreprocessorOpts.DetailedRecordIncludesNestedMacroExpansions
938 = NestedMacroExpansions;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000939 std::string PriorImplicitPCHInclude;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000940 if (OverrideMainBuffer) {
941 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
942 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
943 PreprocessorOpts.PrecompiledPreambleBytes.second
944 = PreambleEndsAtStartOfLine;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +0000945 PriorImplicitPCHInclude = PreprocessorOpts.ImplicitPCHInclude;
Douglas Gregor385103b2010-07-30 20:58:08 +0000946 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +0000947 PreprocessorOpts.DisablePCHValidation = true;
Douglas Gregor28233422010-07-27 14:52:07 +0000948
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000949 // The stored diagnostic has the old source manager in it; update
950 // the locations to refer into the new source manager. Since we've
951 // been careful to make sure that the source manager's state
952 // before and after are identical, so that we can reuse the source
953 // location itself.
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000954 for (unsigned I = NumStoredDiagnosticsFromDriver,
955 N = StoredDiagnostics.size();
956 I < N; ++I) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +0000957 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(),
958 getSourceManager());
959 StoredDiagnostics[I].setLocation(Loc);
960 }
Douglas Gregor4cd912a2010-10-12 00:50:20 +0000961
962 // Keep track of the override buffer;
963 SavedMainFileBuffer = OverrideMainBuffer;
Douglas Gregorf128fed2010-08-20 00:02:33 +0000964 } else {
965 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
966 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000967 }
968
Ted Kremenek25a11e12011-03-22 01:15:24 +0000969 llvm::OwningPtr<TopLevelDeclTrackerAction> Act(
970 new TopLevelDeclTrackerAction(*this));
971
972 // Recover resources if we crash before exiting this method.
973 llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
974 ActCleanup(Act.get());
975
Ted Kremenek03201fb2011-03-21 18:40:07 +0000976 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
977 Clang->getFrontendOpts().Inputs[0].first))
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000978 goto error;
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000979
980 if (OverrideMainBuffer) {
981 std::string ModName = "$" + PreambleFile;
982 TranslateStoredDiagnostics(Clang->getModuleManager(), ModName,
983 getSourceManager(), PreambleDiagnostics,
984 StoredDiagnostics);
985 }
986
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000987 Act->Execute();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000988
Ted Kremenek4f327862011-03-21 18:40:17 +0000989 // Steal the created target, context, and preprocessor.
Ted Kremenek03201fb2011-03-21 18:40:07 +0000990 TheSema.reset(Clang->takeSema());
991 Consumer.reset(Clang->takeASTConsumer());
Ted Kremenek4f327862011-03-21 18:40:17 +0000992 Ctx = &Clang->getASTContext();
993 PP = &Clang->getPreprocessor();
994 Clang->setSourceManager(0);
995 Clang->setFileManager(0);
996 Target = &Clang->getTarget();
Douglas Gregorabc563f2010-07-19 21:46:24 +0000997
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000998 Act->EndSourceFile();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000999
1000 // Remove the overridden buffer we used for the preamble.
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001001 if (OverrideMainBuffer) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001002 PreprocessorOpts.eraseRemappedFile(
1003 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001004 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
1005 }
1006
Douglas Gregorabc563f2010-07-19 21:46:24 +00001007 return false;
Ted Kremenek4f327862011-03-21 18:40:17 +00001008
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001009error:
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001010 // Remove the overridden buffer we used for the preamble.
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001011 if (OverrideMainBuffer) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001012 PreprocessorOpts.eraseRemappedFile(
1013 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001014 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
Douglas Gregor671947b2010-08-19 01:33:06 +00001015 delete OverrideMainBuffer;
Douglas Gregor37cf6632010-10-06 21:11:08 +00001016 SavedMainFileBuffer = 0;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001017 }
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001018
Douglas Gregord54eb442010-10-12 16:25:54 +00001019 StoredDiagnostics.clear();
Douglas Gregorabc563f2010-07-19 21:46:24 +00001020 return true;
1021}
1022
Douglas Gregor44c181a2010-07-23 00:33:23 +00001023/// \brief Simple function to retrieve a path for a preamble precompiled header.
1024static std::string GetPreamblePCHPath() {
1025 // FIXME: This is lame; sys::Path should provide this function (in particular,
1026 // it should know how to find the temporary files dir).
1027 // FIXME: This is really lame. I copied this code from the Driver!
Douglas Gregor424668c2010-09-11 18:05:19 +00001028 // FIXME: This is a hack so that we can override the preamble file during
1029 // crash-recovery testing, which is the only case where the preamble files
1030 // are not necessarily cleaned up.
1031 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE");
1032 if (TmpFile)
1033 return TmpFile;
1034
Douglas Gregor44c181a2010-07-23 00:33:23 +00001035 std::string Error;
1036 const char *TmpDir = ::getenv("TMPDIR");
1037 if (!TmpDir)
1038 TmpDir = ::getenv("TEMP");
1039 if (!TmpDir)
1040 TmpDir = ::getenv("TMP");
Douglas Gregorc6cb2b02010-09-11 17:51:16 +00001041#ifdef LLVM_ON_WIN32
1042 if (!TmpDir)
1043 TmpDir = ::getenv("USERPROFILE");
1044#endif
Douglas Gregor44c181a2010-07-23 00:33:23 +00001045 if (!TmpDir)
1046 TmpDir = "/tmp";
1047 llvm::sys::Path P(TmpDir);
Douglas Gregorc6cb2b02010-09-11 17:51:16 +00001048 P.createDirectoryOnDisk(true);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001049 P.appendComponent("preamble");
Douglas Gregor6bf18302010-08-11 13:06:56 +00001050 P.appendSuffix("pch");
Douglas Gregor44c181a2010-07-23 00:33:23 +00001051 if (P.createTemporaryFileOnDisk())
1052 return std::string();
1053
Douglas Gregor44c181a2010-07-23 00:33:23 +00001054 return P.str();
1055}
1056
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001057/// \brief Compute the preamble for the main file, providing the source buffer
1058/// that corresponds to the main file along with a pair (bytes, start-of-line)
1059/// that describes the preamble.
1060std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
Douglas Gregordf95a132010-08-09 20:45:32 +00001061ASTUnit::ComputePreamble(CompilerInvocation &Invocation,
1062 unsigned MaxLines, bool &CreatedBuffer) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001063 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
Chris Lattner39b49bc2010-11-23 08:35:12 +00001064 PreprocessorOptions &PreprocessorOpts = Invocation.getPreprocessorOpts();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001065 CreatedBuffer = false;
1066
Douglas Gregor44c181a2010-07-23 00:33:23 +00001067 // Try to determine if the main file has been remapped, either from the
1068 // command line (to another file) or directly through the compiler invocation
1069 // (to a memory buffer).
Douglas Gregor175c4a92010-07-23 23:58:40 +00001070 llvm::MemoryBuffer *Buffer = 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001071 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
1072 if (const llvm::sys::FileStatus *MainFileStatus = MainFilePath.getFileStatus()) {
1073 // Check whether there is a file-file remapping of the main file
1074 for (PreprocessorOptions::remapped_file_iterator
Douglas Gregor175c4a92010-07-23 23:58:40 +00001075 M = PreprocessorOpts.remapped_file_begin(),
1076 E = PreprocessorOpts.remapped_file_end();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001077 M != E;
1078 ++M) {
1079 llvm::sys::PathWithStatus MPath(M->first);
1080 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
1081 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
1082 // We found a remapping. Try to load the resulting, remapped source.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001083 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +00001084 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001085 CreatedBuffer = false;
1086 }
1087
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00001088 Buffer = getBufferForFile(M->second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001089 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001090 return std::make_pair((llvm::MemoryBuffer*)0,
1091 std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +00001092 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001093 }
1094 }
1095 }
1096
1097 // Check whether there is a file-buffer remapping. It supercedes the
1098 // file-file remapping.
1099 for (PreprocessorOptions::remapped_file_buffer_iterator
1100 M = PreprocessorOpts.remapped_file_buffer_begin(),
1101 E = PreprocessorOpts.remapped_file_buffer_end();
1102 M != E;
1103 ++M) {
1104 llvm::sys::PathWithStatus MPath(M->first);
1105 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
1106 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
1107 // We found a remapping.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001108 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +00001109 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001110 CreatedBuffer = false;
1111 }
Douglas Gregor44c181a2010-07-23 00:33:23 +00001112
Douglas Gregor175c4a92010-07-23 23:58:40 +00001113 Buffer = const_cast<llvm::MemoryBuffer *>(M->second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001114 }
1115 }
Douglas Gregor175c4a92010-07-23 23:58:40 +00001116 }
Douglas Gregor44c181a2010-07-23 00:33:23 +00001117 }
1118
1119 // If the main source file was not remapped, load it now.
1120 if (!Buffer) {
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00001121 Buffer = getBufferForFile(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001122 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001123 return std::make_pair((llvm::MemoryBuffer*)0, std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +00001124
1125 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001126 }
1127
Douglas Gregordf95a132010-08-09 20:45:32 +00001128 return std::make_pair(Buffer, Lexer::ComputePreamble(Buffer, MaxLines));
Douglas Gregor175c4a92010-07-23 23:58:40 +00001129}
1130
Douglas Gregor754f3492010-07-24 00:38:13 +00001131static llvm::MemoryBuffer *CreatePaddedMainFileBuffer(llvm::MemoryBuffer *Old,
Douglas Gregor754f3492010-07-24 00:38:13 +00001132 unsigned NewSize,
1133 llvm::StringRef NewName) {
1134 llvm::MemoryBuffer *Result
1135 = llvm::MemoryBuffer::getNewUninitMemBuffer(NewSize, NewName);
1136 memcpy(const_cast<char*>(Result->getBufferStart()),
1137 Old->getBufferStart(), Old->getBufferSize());
1138 memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001139 ' ', NewSize - Old->getBufferSize() - 1);
1140 const_cast<char*>(Result->getBufferEnd())[-1] = '\n';
Douglas Gregor754f3492010-07-24 00:38:13 +00001141
Douglas Gregor754f3492010-07-24 00:38:13 +00001142 return Result;
1143}
1144
Douglas Gregor175c4a92010-07-23 23:58:40 +00001145/// \brief Attempt to build or re-use a precompiled preamble when (re-)parsing
1146/// the source file.
1147///
1148/// This routine will compute the preamble of the main source file. If a
1149/// non-trivial preamble is found, it will precompile that preamble into a
1150/// precompiled header so that the precompiled preamble can be used to reduce
1151/// reparsing time. If a precompiled preamble has already been constructed,
1152/// this routine will determine if it is still valid and, if so, avoid
1153/// rebuilding the precompiled preamble.
1154///
Douglas Gregordf95a132010-08-09 20:45:32 +00001155/// \param AllowRebuild When true (the default), this routine is
1156/// allowed to rebuild the precompiled preamble if it is found to be
1157/// out-of-date.
1158///
1159/// \param MaxLines When non-zero, the maximum number of lines that
1160/// can occur within the preamble.
1161///
Douglas Gregor754f3492010-07-24 00:38:13 +00001162/// \returns If the precompiled preamble can be used, returns a newly-allocated
1163/// buffer that should be used in place of the main file when doing so.
1164/// Otherwise, returns a NULL pointer.
Douglas Gregordf95a132010-08-09 20:45:32 +00001165llvm::MemoryBuffer *ASTUnit::getMainBufferWithPrecompiledPreamble(
Douglas Gregor01b6e312011-07-01 18:22:13 +00001166 const CompilerInvocation &PreambleInvocationIn,
Douglas Gregordf95a132010-08-09 20:45:32 +00001167 bool AllowRebuild,
1168 unsigned MaxLines) {
Douglas Gregor01b6e312011-07-01 18:22:13 +00001169
1170 llvm::IntrusiveRefCntPtr<CompilerInvocation>
1171 PreambleInvocation(new CompilerInvocation(PreambleInvocationIn));
1172 FrontendOptions &FrontendOpts = PreambleInvocation->getFrontendOpts();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001173 PreprocessorOptions &PreprocessorOpts
Douglas Gregor01b6e312011-07-01 18:22:13 +00001174 = PreambleInvocation->getPreprocessorOpts();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001175
1176 bool CreatedPreambleBuffer = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001177 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > NewPreamble
Douglas Gregor01b6e312011-07-01 18:22:13 +00001178 = ComputePreamble(*PreambleInvocation, MaxLines, CreatedPreambleBuffer);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001179
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001180 // If ComputePreamble() Take ownership of the preamble buffer.
Douglas Gregor73fc9122010-11-16 20:45:51 +00001181 llvm::OwningPtr<llvm::MemoryBuffer> OwnedPreambleBuffer;
1182 if (CreatedPreambleBuffer)
1183 OwnedPreambleBuffer.reset(NewPreamble.first);
1184
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001185 if (!NewPreamble.second.first) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001186 // We couldn't find a preamble in the main source. Clear out the current
1187 // preamble, if we have one. It's obviously no good any more.
1188 Preamble.clear();
1189 if (!PreambleFile.empty()) {
Douglas Gregor385103b2010-07-30 20:58:08 +00001190 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001191 PreambleFile.clear();
1192 }
Douglas Gregoreababfb2010-08-04 05:53:38 +00001193
1194 // The next time we actually see a preamble, precompile it.
1195 PreambleRebuildCounter = 1;
Douglas Gregor754f3492010-07-24 00:38:13 +00001196 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001197 }
1198
1199 if (!Preamble.empty()) {
1200 // We've previously computed a preamble. Check whether we have the same
1201 // preamble now that we did before, and that there's enough space in
1202 // the main-file buffer within the precompiled preamble to fit the
1203 // new main file.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001204 if (Preamble.size() == NewPreamble.second.first &&
1205 PreambleEndsAtStartOfLine == NewPreamble.second.second &&
Douglas Gregor592508e2010-07-24 00:42:07 +00001206 NewPreamble.first->getBufferSize() < PreambleReservedSize-2 &&
Douglas Gregor175c4a92010-07-23 23:58:40 +00001207 memcmp(&Preamble[0], NewPreamble.first->getBufferStart(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001208 NewPreamble.second.first) == 0) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001209 // The preamble has not changed. We may be able to re-use the precompiled
1210 // preamble.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001211
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001212 // Check that none of the files used by the preamble have changed.
1213 bool AnyFileChanged = false;
1214
1215 // First, make a record of those files that have been overridden via
1216 // remapping or unsaved_files.
1217 llvm::StringMap<std::pair<off_t, time_t> > OverriddenFiles;
1218 for (PreprocessorOptions::remapped_file_iterator
1219 R = PreprocessorOpts.remapped_file_begin(),
1220 REnd = PreprocessorOpts.remapped_file_end();
1221 !AnyFileChanged && R != REnd;
1222 ++R) {
1223 struct stat StatBuf;
Anders Carlsson340415c2011-03-18 19:23:38 +00001224 if (FileMgr->getNoncachedStatValue(R->second, StatBuf)) {
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001225 // If we can't stat the file we're remapping to, assume that something
1226 // horrible happened.
1227 AnyFileChanged = true;
1228 break;
1229 }
Douglas Gregor754f3492010-07-24 00:38:13 +00001230
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001231 OverriddenFiles[R->first] = std::make_pair(StatBuf.st_size,
1232 StatBuf.st_mtime);
1233 }
1234 for (PreprocessorOptions::remapped_file_buffer_iterator
1235 R = PreprocessorOpts.remapped_file_buffer_begin(),
1236 REnd = PreprocessorOpts.remapped_file_buffer_end();
1237 !AnyFileChanged && R != REnd;
1238 ++R) {
1239 // FIXME: Should we actually compare the contents of file->buffer
1240 // remappings?
1241 OverriddenFiles[R->first] = std::make_pair(R->second->getBufferSize(),
1242 0);
1243 }
1244
1245 // Check whether anything has changed.
1246 for (llvm::StringMap<std::pair<off_t, time_t> >::iterator
1247 F = FilesInPreamble.begin(), FEnd = FilesInPreamble.end();
1248 !AnyFileChanged && F != FEnd;
1249 ++F) {
1250 llvm::StringMap<std::pair<off_t, time_t> >::iterator Overridden
1251 = OverriddenFiles.find(F->first());
1252 if (Overridden != OverriddenFiles.end()) {
1253 // This file was remapped; check whether the newly-mapped file
1254 // matches up with the previous mapping.
1255 if (Overridden->second != F->second)
1256 AnyFileChanged = true;
1257 continue;
1258 }
1259
1260 // The file was not remapped; check whether it has changed on disk.
1261 struct stat StatBuf;
Anders Carlsson340415c2011-03-18 19:23:38 +00001262 if (FileMgr->getNoncachedStatValue(F->first(), StatBuf)) {
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001263 // If we can't stat the file, assume that something horrible happened.
1264 AnyFileChanged = true;
1265 } else if (StatBuf.st_size != F->second.first ||
1266 StatBuf.st_mtime != F->second.second)
1267 AnyFileChanged = true;
1268 }
1269
1270 if (!AnyFileChanged) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001271 // Okay! We can re-use the precompiled preamble.
1272
1273 // Set the state of the diagnostic object to mimic its state
1274 // after parsing the preamble.
Douglas Gregor32be4a52010-10-11 21:37:58 +00001275 // FIXME: This won't catch any #pragma push warning changes that
1276 // have occurred in the preamble.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001277 getDiagnostics().Reset();
Douglas Gregor32be4a52010-10-11 21:37:58 +00001278 ProcessWarningOptions(getDiagnostics(),
Douglas Gregor01b6e312011-07-01 18:22:13 +00001279 PreambleInvocation->getDiagnosticOpts());
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001280 getDiagnostics().setNumWarnings(NumWarningsInPreamble);
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001281
1282 // Create a version of the main file buffer that is padded to
1283 // buffer size we reserved when creating the preamble.
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001284 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001285 PreambleReservedSize,
1286 FrontendOpts.Inputs[0].second);
1287 }
Douglas Gregor175c4a92010-07-23 23:58:40 +00001288 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001289
1290 // If we aren't allowed to rebuild the precompiled preamble, just
1291 // return now.
1292 if (!AllowRebuild)
1293 return 0;
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001294
Douglas Gregor175c4a92010-07-23 23:58:40 +00001295 // We can't reuse the previously-computed preamble. Build a new one.
1296 Preamble.clear();
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001297 PreambleDiagnostics.clear();
Douglas Gregor385103b2010-07-30 20:58:08 +00001298 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001299 PreambleRebuildCounter = 1;
Douglas Gregordf95a132010-08-09 20:45:32 +00001300 } else if (!AllowRebuild) {
1301 // We aren't allowed to rebuild the precompiled preamble; just
1302 // return now.
1303 return 0;
1304 }
Douglas Gregoreababfb2010-08-04 05:53:38 +00001305
1306 // If the preamble rebuild counter > 1, it's because we previously
1307 // failed to build a preamble and we're not yet ready to try
1308 // again. Decrement the counter and return a failure.
1309 if (PreambleRebuildCounter > 1) {
1310 --PreambleRebuildCounter;
1311 return 0;
1312 }
1313
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001314 // Create a temporary file for the precompiled preamble. In rare
1315 // circumstances, this can fail.
1316 std::string PreamblePCHPath = GetPreamblePCHPath();
1317 if (PreamblePCHPath.empty()) {
1318 // Try again next time.
1319 PreambleRebuildCounter = 1;
1320 return 0;
1321 }
1322
Douglas Gregor175c4a92010-07-23 23:58:40 +00001323 // We did not previously compute a preamble, or it can't be reused anyway.
Douglas Gregor213f18b2010-10-28 15:44:59 +00001324 SimpleTimer PreambleTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001325 PreambleTimer.setOutput("Precompiling preamble");
Douglas Gregor44c181a2010-07-23 00:33:23 +00001326
1327 // Create a new buffer that stores the preamble. The buffer also contains
1328 // extra space for the original contents of the file (which will be present
1329 // when we actually parse the file) along with more room in case the file
Douglas Gregor175c4a92010-07-23 23:58:40 +00001330 // grows.
1331 PreambleReservedSize = NewPreamble.first->getBufferSize();
1332 if (PreambleReservedSize < 4096)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001333 PreambleReservedSize = 8191;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001334 else
Douglas Gregor175c4a92010-07-23 23:58:40 +00001335 PreambleReservedSize *= 2;
1336
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001337 // Save the preamble text for later; we'll need to compare against it for
1338 // subsequent reparses.
1339 Preamble.assign(NewPreamble.first->getBufferStart(),
1340 NewPreamble.first->getBufferStart()
1341 + NewPreamble.second.first);
1342 PreambleEndsAtStartOfLine = NewPreamble.second.second;
1343
Douglas Gregor671947b2010-08-19 01:33:06 +00001344 delete PreambleBuffer;
1345 PreambleBuffer
Douglas Gregor175c4a92010-07-23 23:58:40 +00001346 = llvm::MemoryBuffer::getNewUninitMemBuffer(PreambleReservedSize,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001347 FrontendOpts.Inputs[0].second);
1348 memcpy(const_cast<char*>(PreambleBuffer->getBufferStart()),
Douglas Gregor175c4a92010-07-23 23:58:40 +00001349 NewPreamble.first->getBufferStart(), Preamble.size());
1350 memset(const_cast<char*>(PreambleBuffer->getBufferStart()) + Preamble.size(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001351 ' ', PreambleReservedSize - Preamble.size() - 1);
1352 const_cast<char*>(PreambleBuffer->getBufferEnd())[-1] = '\n';
Douglas Gregor44c181a2010-07-23 00:33:23 +00001353
1354 // Remap the main source file to the preamble buffer.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001355 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001356 PreprocessorOpts.addRemappedFile(MainFilePath.str(), PreambleBuffer);
1357
1358 // Tell the compiler invocation to generate a temporary precompiled header.
1359 FrontendOpts.ProgramAction = frontend::GeneratePCH;
Douglas Gregor85e51912010-10-01 01:05:22 +00001360 FrontendOpts.ChainedPCH = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001361 // FIXME: Generate the precompiled header into memory?
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001362 FrontendOpts.OutputFile = PreamblePCHPath;
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001363 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
1364 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001365
1366 // Create the compiler instance to use for building the precompiled preamble.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001367 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1368
1369 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001370 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1371 CICleanup(Clang.get());
Ted Kremenek03201fb2011-03-21 18:40:07 +00001372
Douglas Gregor01b6e312011-07-01 18:22:13 +00001373 Clang->setInvocation(&*PreambleInvocation);
Ted Kremenek03201fb2011-03-21 18:40:07 +00001374 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001375
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001376 // Set up diagnostics, capturing all of the diagnostics produced.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001377 Clang->setDiagnostics(&getDiagnostics());
Douglas Gregor44c181a2010-07-23 00:33:23 +00001378
1379 // Create the target instance.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001380 Clang->getTargetOpts().Features = TargetFeatures;
1381 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
1382 Clang->getTargetOpts()));
1383 if (!Clang->hasTarget()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001384 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1385 Preamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001386 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001387 PreprocessorOpts.eraseRemappedFile(
1388 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001389 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001390 }
1391
1392 // Inform the target of the language options.
1393 //
1394 // FIXME: We shouldn't need to do this, the target should be immutable once
1395 // created. This complexity should be lifted elsewhere.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001396 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregor44c181a2010-07-23 00:33:23 +00001397
Ted Kremenek03201fb2011-03-21 18:40:07 +00001398 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Douglas Gregor44c181a2010-07-23 00:33:23 +00001399 "Invocation must have exactly one source file!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00001400 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Douglas Gregor44c181a2010-07-23 00:33:23 +00001401 "FIXME: AST inputs not yet supported here!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00001402 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Douglas Gregor44c181a2010-07-23 00:33:23 +00001403 "IR inputs not support here!");
1404
1405 // Clear out old caches and data.
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001406 getDiagnostics().Reset();
Ted Kremenek03201fb2011-03-21 18:40:07 +00001407 ProcessWarningOptions(getDiagnostics(), Clang->getDiagnosticOpts());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001408 StoredDiagnostics.erase(
1409 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
1410 StoredDiagnostics.end());
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001411 TopLevelDecls.clear();
1412 TopLevelDeclsInPreamble.clear();
Douglas Gregor89d99802010-11-30 06:16:57 +00001413 PreprocessedEntities.clear();
1414 PreprocessedEntitiesInPreamble.clear();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001415
1416 // Create a file manager object to provide access to and cache the filesystem.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001417 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts()));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001418
1419 // Create the source manager.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001420 Clang->setSourceManager(new SourceManager(getDiagnostics(),
Ted Kremenek4f327862011-03-21 18:40:17 +00001421 Clang->getFileManager()));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001422
Douglas Gregor1d715ac2010-08-03 08:14:03 +00001423 llvm::OwningPtr<PrecompilePreambleAction> Act;
1424 Act.reset(new PrecompilePreambleAction(*this));
Ted Kremenek03201fb2011-03-21 18:40:07 +00001425 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
1426 Clang->getFrontendOpts().Inputs[0].first)) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001427 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1428 Preamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001429 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001430 PreprocessorOpts.eraseRemappedFile(
1431 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001432 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001433 }
1434
1435 Act->Execute();
1436 Act->EndSourceFile();
Ted Kremenek4f327862011-03-21 18:40:17 +00001437
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001438 if (Diagnostics->hasErrorOccurred()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001439 // There were errors parsing the preamble, so no precompiled header was
1440 // generated. Forget that we even tried.
Douglas Gregor06e50442010-09-27 16:43:25 +00001441 // FIXME: Should we leave a note for ourselves to try again?
Douglas Gregor175c4a92010-07-23 23:58:40 +00001442 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1443 Preamble.clear();
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001444 TopLevelDeclsInPreamble.clear();
Douglas Gregor89d99802010-11-30 06:16:57 +00001445 PreprocessedEntities.clear();
1446 PreprocessedEntitiesInPreamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001447 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001448 PreprocessorOpts.eraseRemappedFile(
1449 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001450 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001451 }
1452
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001453 // Transfer any diagnostics generated when parsing the preamble into the set
1454 // of preamble diagnostics.
1455 PreambleDiagnostics.clear();
1456 PreambleDiagnostics.insert(PreambleDiagnostics.end(),
1457 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
1458 StoredDiagnostics.end());
1459 StoredDiagnostics.erase(
1460 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
1461 StoredDiagnostics.end());
1462
Douglas Gregor175c4a92010-07-23 23:58:40 +00001463 // Keep track of the preamble we precompiled.
1464 PreambleFile = FrontendOpts.OutputFile;
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001465 NumWarningsInPreamble = getDiagnostics().getNumWarnings();
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001466
1467 // Keep track of all of the files that the source manager knows about,
1468 // so we can verify whether they have changed or not.
1469 FilesInPreamble.clear();
Ted Kremenek03201fb2011-03-21 18:40:07 +00001470 SourceManager &SourceMgr = Clang->getSourceManager();
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001471 const llvm::MemoryBuffer *MainFileBuffer
1472 = SourceMgr.getBuffer(SourceMgr.getMainFileID());
1473 for (SourceManager::fileinfo_iterator F = SourceMgr.fileinfo_begin(),
1474 FEnd = SourceMgr.fileinfo_end();
1475 F != FEnd;
1476 ++F) {
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001477 const FileEntry *File = F->second->OrigEntry;
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001478 if (!File || F->second->getRawBuffer() == MainFileBuffer)
1479 continue;
1480
1481 FilesInPreamble[File->getName()]
1482 = std::make_pair(F->second->getSize(), File->getModificationTime());
1483 }
1484
Douglas Gregoreababfb2010-08-04 05:53:38 +00001485 PreambleRebuildCounter = 1;
Douglas Gregor671947b2010-08-19 01:33:06 +00001486 PreprocessorOpts.eraseRemappedFile(
1487 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor9b7db622011-02-16 18:16:54 +00001488
1489 // If the hash of top-level entities differs from the hash of the top-level
1490 // entities the last time we rebuilt the preamble, clear out the completion
1491 // cache.
1492 if (CurrentTopLevelHashValue != PreambleTopLevelHashValue) {
1493 CompletionCacheTopLevelHashValue = 0;
1494 PreambleTopLevelHashValue = CurrentTopLevelHashValue;
1495 }
1496
Douglas Gregor754f3492010-07-24 00:38:13 +00001497 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregor754f3492010-07-24 00:38:13 +00001498 PreambleReservedSize,
1499 FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001500}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001501
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001502void ASTUnit::RealizeTopLevelDeclsFromPreamble() {
1503 std::vector<Decl *> Resolved;
1504 Resolved.reserve(TopLevelDeclsInPreamble.size());
1505 ExternalASTSource &Source = *getASTContext().getExternalSource();
1506 for (unsigned I = 0, N = TopLevelDeclsInPreamble.size(); I != N; ++I) {
1507 // Resolve the declaration ID to an actual declaration, possibly
1508 // deserializing the declaration in the process.
1509 Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]);
1510 if (D)
1511 Resolved.push_back(D);
1512 }
1513 TopLevelDeclsInPreamble.clear();
1514 TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
1515}
1516
Douglas Gregor89d99802010-11-30 06:16:57 +00001517void ASTUnit::RealizePreprocessedEntitiesFromPreamble() {
1518 if (!PP)
1519 return;
1520
1521 PreprocessingRecord *PPRec = PP->getPreprocessingRecord();
1522 if (!PPRec)
1523 return;
1524
1525 ExternalPreprocessingRecordSource *External = PPRec->getExternalSource();
1526 if (!External)
1527 return;
1528
1529 for (unsigned I = 0, N = PreprocessedEntitiesInPreamble.size(); I != N; ++I) {
1530 if (PreprocessedEntity *PE
Douglas Gregor0a480292011-02-11 19:46:30 +00001531 = External->ReadPreprocessedEntityAtOffset(
1532 PreprocessedEntitiesInPreamble[I]))
Douglas Gregor89d99802010-11-30 06:16:57 +00001533 PreprocessedEntities.push_back(PE);
1534 }
1535
1536 if (PreprocessedEntities.empty())
1537 return;
1538
1539 PreprocessedEntities.insert(PreprocessedEntities.end(),
1540 PPRec->begin(true), PPRec->end(true));
1541}
1542
1543ASTUnit::pp_entity_iterator ASTUnit::pp_entity_begin() {
1544 if (!PreprocessedEntitiesInPreamble.empty() &&
1545 PreprocessedEntities.empty())
1546 RealizePreprocessedEntitiesFromPreamble();
1547
Douglas Gregor89d99802010-11-30 06:16:57 +00001548 return PreprocessedEntities.begin();
1549}
1550
1551ASTUnit::pp_entity_iterator ASTUnit::pp_entity_end() {
1552 if (!PreprocessedEntitiesInPreamble.empty() &&
1553 PreprocessedEntities.empty())
1554 RealizePreprocessedEntitiesFromPreamble();
Douglas Gregor4c30bb12011-07-21 00:47:40 +00001555
Douglas Gregor89d99802010-11-30 06:16:57 +00001556 return PreprocessedEntities.end();
1557}
1558
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001559unsigned ASTUnit::getMaxPCHLevel() const {
1560 if (!getOnlyLocalDecls())
1561 return Decl::MaxPCHLevel;
1562
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00001563 return 0;
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001564}
1565
Douglas Gregor213f18b2010-10-28 15:44:59 +00001566llvm::StringRef ASTUnit::getMainFileName() const {
1567 return Invocation->getFrontendOpts().Inputs[0].second;
1568}
1569
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00001570ASTUnit *ASTUnit::create(CompilerInvocation *CI,
1571 llvm::IntrusiveRefCntPtr<Diagnostic> Diags) {
1572 llvm::OwningPtr<ASTUnit> AST;
1573 AST.reset(new ASTUnit(false));
1574 ConfigureDiags(Diags, 0, 0, *AST, /*CaptureDiagnostics=*/false);
1575 AST->Diagnostics = Diags;
Ted Kremenek4f327862011-03-21 18:40:17 +00001576 AST->Invocation = CI;
Anders Carlsson0d8d7e62011-03-18 18:22:40 +00001577 AST->FileSystemOpts = CI->getFileSystemOpts();
Ted Kremenek4f327862011-03-21 18:40:17 +00001578 AST->FileMgr = new FileManager(AST->FileSystemOpts);
1579 AST->SourceMgr = new SourceManager(*Diags, *AST->FileMgr);
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00001580
1581 return AST.take();
1582}
1583
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001584ASTUnit *ASTUnit::LoadFromCompilerInvocationAction(CompilerInvocation *CI,
1585 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
1586 ASTFrontendAction *Action) {
1587 assert(CI && "A CompilerInvocation is required");
1588
1589 // Create the AST unit.
1590 llvm::OwningPtr<ASTUnit> AST;
1591 AST.reset(new ASTUnit(false));
1592 ConfigureDiags(Diags, 0, 0, *AST, /*CaptureDiagnostics*/false);
1593 AST->Diagnostics = Diags;
1594 AST->OnlyLocalDecls = false;
1595 AST->CaptureDiagnostics = false;
1596 AST->CompleteTranslationUnit = Action ? Action->usesCompleteTranslationUnit()
1597 : true;
1598 AST->ShouldCacheCodeCompletionResults = false;
1599 AST->Invocation = CI;
1600
1601 // Recover resources if we crash before exiting this method.
1602 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1603 ASTUnitCleanup(AST.get());
1604 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
1605 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
1606 DiagCleanup(Diags.getPtr());
1607
1608 // We'll manage file buffers ourselves.
1609 CI->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1610 CI->getFrontendOpts().DisableFree = false;
1611 ProcessWarningOptions(AST->getDiagnostics(), CI->getDiagnosticOpts());
1612
1613 // Save the target features.
1614 AST->TargetFeatures = CI->getTargetOpts().Features;
1615
1616 // Create the compiler instance to use for building the AST.
1617 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1618
1619 // Recover resources if we crash before exiting this method.
1620 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1621 CICleanup(Clang.get());
1622
1623 Clang->setInvocation(CI);
1624 AST->OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
1625
1626 // Set up diagnostics, capturing any diagnostics that would
1627 // otherwise be dropped.
1628 Clang->setDiagnostics(&AST->getDiagnostics());
1629
1630 // Create the target instance.
1631 Clang->getTargetOpts().Features = AST->TargetFeatures;
1632 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
1633 Clang->getTargetOpts()));
1634 if (!Clang->hasTarget())
1635 return 0;
1636
1637 // Inform the target of the language options.
1638 //
1639 // FIXME: We shouldn't need to do this, the target should be immutable once
1640 // created. This complexity should be lifted elsewhere.
1641 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
1642
1643 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
1644 "Invocation must have exactly one source file!");
1645 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
1646 "FIXME: AST inputs not yet supported here!");
1647 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1648 "IR inputs not supported here!");
1649
1650 // Configure the various subsystems.
1651 AST->FileSystemOpts = Clang->getFileSystemOpts();
1652 AST->FileMgr = new FileManager(AST->FileSystemOpts);
1653 AST->SourceMgr = new SourceManager(AST->getDiagnostics(), *AST->FileMgr);
1654 AST->TheSema.reset();
1655 AST->Ctx = 0;
1656 AST->PP = 0;
1657
1658 // Create a file manager object to provide access to and cache the filesystem.
1659 Clang->setFileManager(&AST->getFileManager());
1660
1661 // Create the source manager.
1662 Clang->setSourceManager(&AST->getSourceManager());
1663
1664 ASTFrontendAction *Act = Action;
1665
1666 llvm::OwningPtr<TopLevelDeclTrackerAction> TrackerAct;
1667 if (!Act) {
1668 TrackerAct.reset(new TopLevelDeclTrackerAction(*AST));
1669 Act = TrackerAct.get();
1670 }
1671
1672 // Recover resources if we crash before exiting this method.
1673 llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
1674 ActCleanup(TrackerAct.get());
1675
1676 if (!Act->BeginSourceFile(*Clang.get(),
1677 Clang->getFrontendOpts().Inputs[0].second,
1678 Clang->getFrontendOpts().Inputs[0].first))
1679 return 0;
1680
1681 Act->Execute();
1682
1683 // Steal the created target, context, and preprocessor.
1684 AST->TheSema.reset(Clang->takeSema());
1685 AST->Consumer.reset(Clang->takeASTConsumer());
1686 AST->Ctx = &Clang->getASTContext();
1687 AST->PP = &Clang->getPreprocessor();
1688 Clang->setSourceManager(0);
1689 Clang->setFileManager(0);
1690 AST->Target = &Clang->getTarget();
1691
1692 Act->EndSourceFile();
1693
1694 return AST.take();
1695}
1696
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001697bool ASTUnit::LoadFromCompilerInvocation(bool PrecompilePreamble) {
1698 if (!Invocation)
1699 return true;
1700
1701 // We'll manage file buffers ourselves.
1702 Invocation->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1703 Invocation->getFrontendOpts().DisableFree = false;
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001704 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001705
Douglas Gregor1aa27302011-01-27 18:02:58 +00001706 // Save the target features.
1707 TargetFeatures = Invocation->getTargetOpts().Features;
1708
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001709 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregor99ba2022010-10-27 17:24:53 +00001710 if (PrecompilePreamble) {
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001711 PreambleRebuildCounter = 2;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001712 OverrideMainBuffer
1713 = getMainBufferWithPrecompiledPreamble(*Invocation);
1714 }
1715
Douglas Gregor213f18b2010-10-28 15:44:59 +00001716 SimpleTimer ParsingTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001717 ParsingTimer.setOutput("Parsing " + getMainFileName());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001718
Ted Kremenek25a11e12011-03-22 01:15:24 +00001719 // Recover resources if we crash before exiting this method.
1720 llvm::CrashRecoveryContextCleanupRegistrar<llvm::MemoryBuffer>
1721 MemBufferCleanup(OverrideMainBuffer);
1722
Douglas Gregor213f18b2010-10-28 15:44:59 +00001723 return Parse(OverrideMainBuffer);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001724}
1725
Douglas Gregorabc563f2010-07-19 21:46:24 +00001726ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
1727 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
1728 bool OnlyLocalDecls,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001729 bool CaptureDiagnostics,
Douglas Gregordf95a132010-08-09 20:45:32 +00001730 bool PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001731 bool CompleteTranslationUnit,
Douglas Gregordca8ee82011-05-06 16:33:08 +00001732 bool CacheCodeCompletionResults,
Chandler Carruthba7537f2011-07-14 09:02:10 +00001733 bool NestedMacroExpansions) {
Douglas Gregorabc563f2010-07-19 21:46:24 +00001734 // Create the AST unit.
1735 llvm::OwningPtr<ASTUnit> AST;
1736 AST.reset(new ASTUnit(false));
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001737 ConfigureDiags(Diags, 0, 0, *AST, CaptureDiagnostics);
Douglas Gregorabc563f2010-07-19 21:46:24 +00001738 AST->Diagnostics = Diags;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001739 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001740 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregordf95a132010-08-09 20:45:32 +00001741 AST->CompleteTranslationUnit = CompleteTranslationUnit;
Douglas Gregor87c08a52010-08-13 22:48:40 +00001742 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
Ted Kremenek4f327862011-03-21 18:40:17 +00001743 AST->Invocation = CI;
Chandler Carruthba7537f2011-07-14 09:02:10 +00001744 AST->NestedMacroExpansions = NestedMacroExpansions;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001745
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001746 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001747 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1748 ASTUnitCleanup(AST.get());
1749 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
1750 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
1751 DiagCleanup(Diags.getPtr());
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001752
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001753 return AST->LoadFromCompilerInvocation(PrecompilePreamble)? 0 : AST.take();
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001754}
Daniel Dunbar7b556682009-12-02 03:23:45 +00001755
1756ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1757 const char **ArgEnd,
Douglas Gregor28019772010-04-05 23:52:57 +00001758 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Daniel Dunbar869824e2009-12-13 03:46:13 +00001759 llvm::StringRef ResourceFilesPath,
Daniel Dunbar7b556682009-12-02 03:23:45 +00001760 bool OnlyLocalDecls,
Douglas Gregore47be3e2010-11-11 00:39:14 +00001761 bool CaptureDiagnostics,
Douglas Gregor4db64a42010-01-23 00:14:00 +00001762 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +00001763 unsigned NumRemappedFiles,
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +00001764 bool RemappedFilesKeepOriginalName,
Douglas Gregordf95a132010-08-09 20:45:32 +00001765 bool PrecompilePreamble,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001766 bool CompleteTranslationUnit,
Douglas Gregor99ba2022010-10-27 17:24:53 +00001767 bool CacheCodeCompletionResults,
1768 bool CXXPrecompilePreamble,
Douglas Gregordca8ee82011-05-06 16:33:08 +00001769 bool CXXChainedPCH,
Chandler Carruthba7537f2011-07-14 09:02:10 +00001770 bool NestedMacroExpansions) {
Douglas Gregor28019772010-04-05 23:52:57 +00001771 if (!Diags.getPtr()) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001772 // No diagnostics engine was provided, so create our own diagnostics object
1773 // with the default options.
1774 DiagnosticOptions DiagOpts;
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001775 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgEnd - ArgBegin,
1776 ArgBegin);
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001777 }
Daniel Dunbar7b556682009-12-02 03:23:45 +00001778
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001779 llvm::SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
1780
Ted Kremenek4f327862011-03-21 18:40:17 +00001781 llvm::IntrusiveRefCntPtr<CompilerInvocation> CI;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001782
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001783 {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001784
Douglas Gregore47be3e2010-11-11 00:39:14 +00001785 CaptureDroppedDiagnostics Capture(CaptureDiagnostics, *Diags,
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001786 StoredDiagnostics);
Daniel Dunbar3bd54cc2010-01-25 00:44:02 +00001787
Argyrios Kyrtzidis832316e2011-04-04 23:11:45 +00001788 CI = clang::createInvocationFromCommandLine(
Frits van Bommele9c02652011-07-18 12:00:32 +00001789 llvm::makeArrayRef(ArgBegin, ArgEnd),
1790 Diags);
Argyrios Kyrtzidis054e4f52011-04-04 21:38:51 +00001791 if (!CI)
Argyrios Kyrtzidis4e03c2b2011-03-07 22:45:01 +00001792 return 0;
Daniel Dunbar7b556682009-12-02 03:23:45 +00001793 }
Douglas Gregore47be3e2010-11-11 00:39:14 +00001794
Douglas Gregor4db64a42010-01-23 00:14:00 +00001795 // Override any files that need remapping
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001796 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
1797 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
1798 if (const llvm::MemoryBuffer *
1799 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
1800 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, memBuf);
1801 } else {
1802 const char *fname = fileOrBuf.get<const char *>();
1803 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, fname);
1804 }
1805 }
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +00001806 CI->getPreprocessorOpts().RemappedFilesKeepOriginalName =
1807 RemappedFilesKeepOriginalName;
Douglas Gregor4db64a42010-01-23 00:14:00 +00001808
Daniel Dunbar8b9adfe2009-12-15 00:06:45 +00001809 // Override the resources path.
Daniel Dunbar807b0612010-01-30 21:47:16 +00001810 CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
Daniel Dunbar7b556682009-12-02 03:23:45 +00001811
Douglas Gregor99ba2022010-10-27 17:24:53 +00001812 // Check whether we should precompile the preamble and/or use chained PCH.
1813 // FIXME: This is a temporary hack while we debug C++ chained PCH.
1814 if (CI->getLangOpts().CPlusPlus) {
1815 PrecompilePreamble = PrecompilePreamble && CXXPrecompilePreamble;
1816
1817 if (PrecompilePreamble && !CXXChainedPCH &&
1818 !CI->getPreprocessorOpts().ImplicitPCHInclude.empty())
1819 PrecompilePreamble = false;
1820 }
1821
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001822 // Create the AST unit.
1823 llvm::OwningPtr<ASTUnit> AST;
1824 AST.reset(new ASTUnit(false));
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001825 ConfigureDiags(Diags, ArgBegin, ArgEnd, *AST, CaptureDiagnostics);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001826 AST->Diagnostics = Diags;
Anders Carlsson0d8d7e62011-03-18 18:22:40 +00001827
1828 AST->FileSystemOpts = CI->getFileSystemOpts();
Ted Kremenek4f327862011-03-21 18:40:17 +00001829 AST->FileMgr = new FileManager(AST->FileSystemOpts);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001830 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001831 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001832 AST->CompleteTranslationUnit = CompleteTranslationUnit;
1833 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1834 AST->NumStoredDiagnosticsFromDriver = StoredDiagnostics.size();
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001835 AST->StoredDiagnostics.swap(StoredDiagnostics);
Ted Kremenek4f327862011-03-21 18:40:17 +00001836 AST->Invocation = CI;
Chandler Carruthba7537f2011-07-14 09:02:10 +00001837 AST->NestedMacroExpansions = NestedMacroExpansions;
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001838
1839 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001840 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1841 ASTUnitCleanup(AST.get());
1842 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInvocation,
1843 llvm::CrashRecoveryContextReleaseRefCleanup<CompilerInvocation> >
1844 CICleanup(CI.getPtr());
1845 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
1846 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
1847 DiagCleanup(Diags.getPtr());
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001848
Chris Lattner39b49bc2010-11-23 08:35:12 +00001849 return AST->LoadFromCompilerInvocation(PrecompilePreamble) ? 0 : AST.take();
Daniel Dunbar7b556682009-12-02 03:23:45 +00001850}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001851
1852bool ASTUnit::Reparse(RemappedFile *RemappedFiles, unsigned NumRemappedFiles) {
Ted Kremenek4f327862011-03-21 18:40:17 +00001853 if (!Invocation)
Douglas Gregorabc563f2010-07-19 21:46:24 +00001854 return true;
1855
Douglas Gregor213f18b2010-10-28 15:44:59 +00001856 SimpleTimer ParsingTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001857 ParsingTimer.setOutput("Reparsing " + getMainFileName());
Douglas Gregor213f18b2010-10-28 15:44:59 +00001858
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001859 // Remap files.
Douglas Gregorf128fed2010-08-20 00:02:33 +00001860 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00001861 PPOpts.DisableStatCache = true;
Douglas Gregorf128fed2010-08-20 00:02:33 +00001862 for (PreprocessorOptions::remapped_file_buffer_iterator
1863 R = PPOpts.remapped_file_buffer_begin(),
1864 REnd = PPOpts.remapped_file_buffer_end();
1865 R != REnd;
1866 ++R) {
1867 delete R->second;
1868 }
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001869 Invocation->getPreprocessorOpts().clearRemappedFiles();
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001870 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
1871 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
1872 if (const llvm::MemoryBuffer *
1873 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
1874 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1875 memBuf);
1876 } else {
1877 const char *fname = fileOrBuf.get<const char *>();
1878 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1879 fname);
1880 }
1881 }
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001882
Douglas Gregoreababfb2010-08-04 05:53:38 +00001883 // If we have a preamble file lying around, or if we might try to
1884 // build a precompiled preamble, do so now.
Douglas Gregor754f3492010-07-24 00:38:13 +00001885 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregoreababfb2010-08-04 05:53:38 +00001886 if (!PreambleFile.empty() || PreambleRebuildCounter > 0)
Douglas Gregor2283d792010-08-20 00:59:43 +00001887 OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(*Invocation);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001888
Douglas Gregorabc563f2010-07-19 21:46:24 +00001889 // Clear out the diagnostics state.
Douglas Gregor32be4a52010-10-11 21:37:58 +00001890 if (!OverrideMainBuffer) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001891 getDiagnostics().Reset();
Douglas Gregor32be4a52010-10-11 21:37:58 +00001892 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
1893 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00001894
Douglas Gregor175c4a92010-07-23 23:58:40 +00001895 // Parse the sources
Douglas Gregor9b7db622011-02-16 18:16:54 +00001896 bool Result = Parse(OverrideMainBuffer);
1897
1898 // If we're caching global code-completion results, and the top-level
1899 // declarations have changed, clear out the code-completion cache.
1900 if (!Result && ShouldCacheCodeCompletionResults &&
1901 CurrentTopLevelHashValue != CompletionCacheTopLevelHashValue)
1902 CacheCodeCompletionResults();
1903
Douglas Gregor175c4a92010-07-23 23:58:40 +00001904 return Result;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001905}
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001906
Douglas Gregor87c08a52010-08-13 22:48:40 +00001907//----------------------------------------------------------------------------//
1908// Code completion
1909//----------------------------------------------------------------------------//
1910
1911namespace {
1912 /// \brief Code completion consumer that combines the cached code-completion
1913 /// results from an ASTUnit with the code-completion results provided to it,
1914 /// then passes the result on to
1915 class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer {
Douglas Gregor3da626b2011-07-07 16:03:39 +00001916 unsigned long long NormalContexts;
Douglas Gregor87c08a52010-08-13 22:48:40 +00001917 ASTUnit &AST;
1918 CodeCompleteConsumer &Next;
1919
1920 public:
1921 AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next,
Douglas Gregor8071e422010-08-15 06:18:01 +00001922 bool IncludeMacros, bool IncludeCodePatterns,
1923 bool IncludeGlobals)
1924 : CodeCompleteConsumer(IncludeMacros, IncludeCodePatterns, IncludeGlobals,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001925 Next.isOutputBinary()), AST(AST), Next(Next)
1926 {
1927 // Compute the set of contexts in which we will look when we don't have
1928 // any information about the specific context.
1929 NormalContexts
Douglas Gregor3da626b2011-07-07 16:03:39 +00001930 = (1LL << (CodeCompletionContext::CCC_TopLevel - 1))
1931 | (1LL << (CodeCompletionContext::CCC_ObjCInterface - 1))
1932 | (1LL << (CodeCompletionContext::CCC_ObjCImplementation - 1))
1933 | (1LL << (CodeCompletionContext::CCC_ObjCIvarList - 1))
1934 | (1LL << (CodeCompletionContext::CCC_Statement - 1))
1935 | (1LL << (CodeCompletionContext::CCC_Expression - 1))
1936 | (1LL << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
1937 | (1LL << (CodeCompletionContext::CCC_DotMemberAccess - 1))
1938 | (1LL << (CodeCompletionContext::CCC_ArrowMemberAccess - 1))
1939 | (1LL << (CodeCompletionContext::CCC_ObjCPropertyAccess - 1))
1940 | (1LL << (CodeCompletionContext::CCC_ObjCProtocolName - 1))
1941 | (1LL << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
1942 | (1LL << (CodeCompletionContext::CCC_Recovery - 1));
Douglas Gregor02688102010-09-14 23:59:36 +00001943
Douglas Gregor87c08a52010-08-13 22:48:40 +00001944 if (AST.getASTContext().getLangOptions().CPlusPlus)
Douglas Gregor3da626b2011-07-07 16:03:39 +00001945 NormalContexts |= (1LL << (CodeCompletionContext::CCC_EnumTag - 1))
1946 | (1LL << (CodeCompletionContext::CCC_UnionTag - 1))
1947 | (1LL << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
Douglas Gregor87c08a52010-08-13 22:48:40 +00001948 }
1949
1950 virtual void ProcessCodeCompleteResults(Sema &S,
1951 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00001952 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001953 unsigned NumResults);
Douglas Gregor87c08a52010-08-13 22:48:40 +00001954
1955 virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
1956 OverloadCandidate *Candidates,
1957 unsigned NumCandidates) {
1958 Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates);
1959 }
Douglas Gregor218937c2011-02-01 19:23:04 +00001960
Douglas Gregordae68752011-02-01 22:57:45 +00001961 virtual CodeCompletionAllocator &getAllocator() {
Douglas Gregor218937c2011-02-01 19:23:04 +00001962 return Next.getAllocator();
1963 }
Douglas Gregor87c08a52010-08-13 22:48:40 +00001964 };
1965}
Douglas Gregor697ca6d2010-08-16 20:01:48 +00001966
Douglas Gregor5f808c22010-08-16 21:18:39 +00001967/// \brief Helper function that computes which global names are hidden by the
1968/// local code-completion results.
Ted Kremenekc198f612010-11-07 06:11:36 +00001969static void CalculateHiddenNames(const CodeCompletionContext &Context,
1970 CodeCompletionResult *Results,
1971 unsigned NumResults,
1972 ASTContext &Ctx,
1973 llvm::StringSet<llvm::BumpPtrAllocator> &HiddenNames){
Douglas Gregor5f808c22010-08-16 21:18:39 +00001974 bool OnlyTagNames = false;
1975 switch (Context.getKind()) {
Douglas Gregor52779fb2010-09-23 23:01:17 +00001976 case CodeCompletionContext::CCC_Recovery:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001977 case CodeCompletionContext::CCC_TopLevel:
1978 case CodeCompletionContext::CCC_ObjCInterface:
1979 case CodeCompletionContext::CCC_ObjCImplementation:
1980 case CodeCompletionContext::CCC_ObjCIvarList:
1981 case CodeCompletionContext::CCC_ClassStructUnion:
1982 case CodeCompletionContext::CCC_Statement:
1983 case CodeCompletionContext::CCC_Expression:
1984 case CodeCompletionContext::CCC_ObjCMessageReceiver:
Douglas Gregor3da626b2011-07-07 16:03:39 +00001985 case CodeCompletionContext::CCC_DotMemberAccess:
1986 case CodeCompletionContext::CCC_ArrowMemberAccess:
1987 case CodeCompletionContext::CCC_ObjCPropertyAccess:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001988 case CodeCompletionContext::CCC_Namespace:
1989 case CodeCompletionContext::CCC_Type:
Douglas Gregor2ccccb32010-08-23 18:23:48 +00001990 case CodeCompletionContext::CCC_Name:
1991 case CodeCompletionContext::CCC_PotentiallyQualifiedName:
Douglas Gregor02688102010-09-14 23:59:36 +00001992 case CodeCompletionContext::CCC_ParenthesizedExpression:
Douglas Gregor3da626b2011-07-07 16:03:39 +00001993 case CodeCompletionContext::CCC_ObjCSuperclass:
Douglas Gregor5f808c22010-08-16 21:18:39 +00001994 break;
1995
1996 case CodeCompletionContext::CCC_EnumTag:
1997 case CodeCompletionContext::CCC_UnionTag:
1998 case CodeCompletionContext::CCC_ClassOrStructTag:
1999 OnlyTagNames = true;
2000 break;
2001
2002 case CodeCompletionContext::CCC_ObjCProtocolName:
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002003 case CodeCompletionContext::CCC_MacroName:
2004 case CodeCompletionContext::CCC_MacroNameUse:
Douglas Gregorf29c5232010-08-24 22:20:20 +00002005 case CodeCompletionContext::CCC_PreprocessorExpression:
Douglas Gregor721f3592010-08-25 18:41:16 +00002006 case CodeCompletionContext::CCC_PreprocessorDirective:
Douglas Gregor59a66942010-08-25 18:04:30 +00002007 case CodeCompletionContext::CCC_NaturalLanguage:
Douglas Gregor458433d2010-08-26 15:07:07 +00002008 case CodeCompletionContext::CCC_SelectorName:
Douglas Gregor1a480c42010-08-27 17:35:51 +00002009 case CodeCompletionContext::CCC_TypeQualifiers:
Douglas Gregor52779fb2010-09-23 23:01:17 +00002010 case CodeCompletionContext::CCC_Other:
Douglas Gregor5c722c702011-02-18 23:30:37 +00002011 case CodeCompletionContext::CCC_OtherWithMacros:
Douglas Gregor3da626b2011-07-07 16:03:39 +00002012 case CodeCompletionContext::CCC_ObjCInstanceMessage:
2013 case CodeCompletionContext::CCC_ObjCClassMessage:
2014 case CodeCompletionContext::CCC_ObjCCategoryName:
Douglas Gregor721f3592010-08-25 18:41:16 +00002015 // We're looking for nothing, or we're looking for names that cannot
2016 // be hidden.
Douglas Gregor5f808c22010-08-16 21:18:39 +00002017 return;
2018 }
2019
John McCall0a2c5e22010-08-25 06:19:51 +00002020 typedef CodeCompletionResult Result;
Douglas Gregor5f808c22010-08-16 21:18:39 +00002021 for (unsigned I = 0; I != NumResults; ++I) {
2022 if (Results[I].Kind != Result::RK_Declaration)
2023 continue;
2024
2025 unsigned IDNS
2026 = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
2027
2028 bool Hiding = false;
2029 if (OnlyTagNames)
2030 Hiding = (IDNS & Decl::IDNS_Tag);
2031 else {
2032 unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member |
Douglas Gregora5fb7c32010-08-16 23:05:20 +00002033 Decl::IDNS_Namespace | Decl::IDNS_Ordinary |
2034 Decl::IDNS_NonMemberOperator);
Douglas Gregor5f808c22010-08-16 21:18:39 +00002035 if (Ctx.getLangOptions().CPlusPlus)
2036 HiddenIDNS |= Decl::IDNS_Tag;
2037 Hiding = (IDNS & HiddenIDNS);
2038 }
2039
2040 if (!Hiding)
2041 continue;
2042
2043 DeclarationName Name = Results[I].Declaration->getDeclName();
2044 if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo())
2045 HiddenNames.insert(Identifier->getName());
2046 else
2047 HiddenNames.insert(Name.getAsString());
2048 }
2049}
2050
2051
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002052void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
2053 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00002054 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002055 unsigned NumResults) {
2056 // Merge the results we were given with the results we cached.
2057 bool AddedResult = false;
Douglas Gregor5f808c22010-08-16 21:18:39 +00002058 unsigned InContexts
Douglas Gregor52779fb2010-09-23 23:01:17 +00002059 = (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts
Douglas Gregor5f808c22010-08-16 21:18:39 +00002060 : (1 << (Context.getKind() - 1)));
2061
2062 // Contains the set of names that are hidden by "local" completion results.
Ted Kremenekc198f612010-11-07 06:11:36 +00002063 llvm::StringSet<llvm::BumpPtrAllocator> HiddenNames;
John McCall0a2c5e22010-08-25 06:19:51 +00002064 typedef CodeCompletionResult Result;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002065 llvm::SmallVector<Result, 8> AllResults;
2066 for (ASTUnit::cached_completion_iterator
Douglas Gregor5535d572010-08-16 21:23:13 +00002067 C = AST.cached_completion_begin(),
2068 CEnd = AST.cached_completion_end();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002069 C != CEnd; ++C) {
2070 // If the context we are in matches any of the contexts we are
2071 // interested in, we'll add this result.
2072 if ((C->ShowInContexts & InContexts) == 0)
2073 continue;
2074
2075 // If we haven't added any results previously, do so now.
2076 if (!AddedResult) {
Douglas Gregor5f808c22010-08-16 21:18:39 +00002077 CalculateHiddenNames(Context, Results, NumResults, S.Context,
2078 HiddenNames);
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002079 AllResults.insert(AllResults.end(), Results, Results + NumResults);
2080 AddedResult = true;
2081 }
2082
Douglas Gregor5f808c22010-08-16 21:18:39 +00002083 // Determine whether this global completion result is hidden by a local
2084 // completion result. If so, skip it.
2085 if (C->Kind != CXCursor_MacroDefinition &&
2086 HiddenNames.count(C->Completion->getTypedText()))
2087 continue;
2088
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002089 // Adjust priority based on similar type classes.
2090 unsigned Priority = C->Priority;
Douglas Gregor4125c372010-08-25 18:03:13 +00002091 CXCursorKind CursorKind = C->Kind;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002092 CodeCompletionString *Completion = C->Completion;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002093 if (!Context.getPreferredType().isNull()) {
2094 if (C->Kind == CXCursor_MacroDefinition) {
2095 Priority = getMacroUsagePriority(C->Completion->getTypedText(),
Douglas Gregorb05496d2010-09-20 21:11:48 +00002096 S.getLangOptions(),
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002097 Context.getPreferredType()->isAnyPointerType());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002098 } else if (C->Type) {
2099 CanQualType Expected
Douglas Gregor5535d572010-08-16 21:23:13 +00002100 = S.Context.getCanonicalType(
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002101 Context.getPreferredType().getUnqualifiedType());
2102 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
2103 if (ExpectedSTC == C->TypeClass) {
2104 // We know this type is similar; check for an exact match.
2105 llvm::StringMap<unsigned> &CachedCompletionTypes
Douglas Gregor5535d572010-08-16 21:23:13 +00002106 = AST.getCachedCompletionTypes();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002107 llvm::StringMap<unsigned>::iterator Pos
Douglas Gregor5535d572010-08-16 21:23:13 +00002108 = CachedCompletionTypes.find(QualType(Expected).getAsString());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002109 if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
2110 Priority /= CCF_ExactTypeMatch;
2111 else
2112 Priority /= CCF_SimilarTypeMatch;
2113 }
2114 }
2115 }
2116
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002117 // Adjust the completion string, if required.
2118 if (C->Kind == CXCursor_MacroDefinition &&
2119 Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) {
2120 // Create a new code-completion string that just contains the
2121 // macro name, without its arguments.
Douglas Gregor218937c2011-02-01 19:23:04 +00002122 CodeCompletionBuilder Builder(getAllocator(), CCP_CodePattern,
2123 C->Availability);
2124 Builder.AddTypedTextChunk(C->Completion->getTypedText());
Douglas Gregor4125c372010-08-25 18:03:13 +00002125 CursorKind = CXCursor_NotImplemented;
2126 Priority = CCP_CodePattern;
Douglas Gregor218937c2011-02-01 19:23:04 +00002127 Completion = Builder.TakeString();
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002128 }
2129
Douglas Gregor4125c372010-08-25 18:03:13 +00002130 AllResults.push_back(Result(Completion, Priority, CursorKind,
Douglas Gregor58ddb602010-08-23 23:00:57 +00002131 C->Availability));
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002132 }
2133
2134 // If we did not add any cached completion results, just forward the
2135 // results we were given to the next consumer.
2136 if (!AddedResult) {
2137 Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
2138 return;
2139 }
Douglas Gregor1e5e6682010-08-26 13:48:20 +00002140
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002141 Next.ProcessCodeCompleteResults(S, Context, AllResults.data(),
2142 AllResults.size());
2143}
2144
2145
2146
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002147void ASTUnit::CodeComplete(llvm::StringRef File, unsigned Line, unsigned Column,
2148 RemappedFile *RemappedFiles,
2149 unsigned NumRemappedFiles,
Douglas Gregorcee235c2010-08-05 09:09:23 +00002150 bool IncludeMacros,
2151 bool IncludeCodePatterns,
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002152 CodeCompleteConsumer &Consumer,
2153 Diagnostic &Diag, LangOptions &LangOpts,
2154 SourceManager &SourceMgr, FileManager &FileMgr,
Douglas Gregor2283d792010-08-20 00:59:43 +00002155 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
2156 llvm::SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) {
Ted Kremenek4f327862011-03-21 18:40:17 +00002157 if (!Invocation)
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002158 return;
2159
Douglas Gregor213f18b2010-10-28 15:44:59 +00002160 SimpleTimer CompletionTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00002161 CompletionTimer.setOutput("Code completion @ " + File + ":" +
2162 llvm::Twine(Line) + ":" + llvm::Twine(Column));
Douglas Gregordf95a132010-08-09 20:45:32 +00002163
Ted Kremenek4f327862011-03-21 18:40:17 +00002164 llvm::IntrusiveRefCntPtr<CompilerInvocation>
2165 CCInvocation(new CompilerInvocation(*Invocation));
2166
2167 FrontendOptions &FrontendOpts = CCInvocation->getFrontendOpts();
2168 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts();
Douglas Gregorcee235c2010-08-05 09:09:23 +00002169
Douglas Gregor87c08a52010-08-13 22:48:40 +00002170 FrontendOpts.ShowMacrosInCodeCompletion
2171 = IncludeMacros && CachedCompletionResults.empty();
Douglas Gregorcee235c2010-08-05 09:09:23 +00002172 FrontendOpts.ShowCodePatternsInCodeCompletion = IncludeCodePatterns;
Douglas Gregor8071e422010-08-15 06:18:01 +00002173 FrontendOpts.ShowGlobalSymbolsInCodeCompletion
2174 = CachedCompletionResults.empty();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002175 FrontendOpts.CodeCompletionAt.FileName = File;
2176 FrontendOpts.CodeCompletionAt.Line = Line;
2177 FrontendOpts.CodeCompletionAt.Column = Column;
2178
2179 // Set the language options appropriately.
Ted Kremenek4f327862011-03-21 18:40:17 +00002180 LangOpts = CCInvocation->getLangOpts();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002181
Ted Kremenek03201fb2011-03-21 18:40:07 +00002182 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
2183
2184 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00002185 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
2186 CICleanup(Clang.get());
Ted Kremenek03201fb2011-03-21 18:40:07 +00002187
Ted Kremenek4f327862011-03-21 18:40:17 +00002188 Clang->setInvocation(&*CCInvocation);
Ted Kremenek03201fb2011-03-21 18:40:07 +00002189 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002190
2191 // Set up diagnostics, capturing any diagnostics produced.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002192 Clang->setDiagnostics(&Diag);
Ted Kremenek4f327862011-03-21 18:40:17 +00002193 ProcessWarningOptions(Diag, CCInvocation->getDiagnosticOpts());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002194 CaptureDroppedDiagnostics Capture(true,
Ted Kremenek03201fb2011-03-21 18:40:07 +00002195 Clang->getDiagnostics(),
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002196 StoredDiagnostics);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002197
2198 // Create the target instance.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002199 Clang->getTargetOpts().Features = TargetFeatures;
2200 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
2201 Clang->getTargetOpts()));
2202 if (!Clang->hasTarget()) {
Ted Kremenek4f327862011-03-21 18:40:17 +00002203 Clang->setInvocation(0);
Douglas Gregorbdbb0042010-08-18 22:29:43 +00002204 return;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002205 }
2206
2207 // Inform the target of the language options.
2208 //
2209 // FIXME: We shouldn't need to do this, the target should be immutable once
2210 // created. This complexity should be lifted elsewhere.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002211 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002212
Ted Kremenek03201fb2011-03-21 18:40:07 +00002213 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002214 "Invocation must have exactly one source file!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00002215 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002216 "FIXME: AST inputs not yet supported here!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00002217 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002218 "IR inputs not support here!");
2219
2220
2221 // Use the source and file managers that we were given.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002222 Clang->setFileManager(&FileMgr);
2223 Clang->setSourceManager(&SourceMgr);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002224
2225 // Remap files.
2226 PreprocessorOpts.clearRemappedFiles();
Douglas Gregorb75d3df2010-08-04 17:07:00 +00002227 PreprocessorOpts.RetainRemappedFileBuffers = true;
Douglas Gregor2283d792010-08-20 00:59:43 +00002228 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00002229 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
2230 if (const llvm::MemoryBuffer *
2231 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
2232 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, memBuf);
2233 OwnedBuffers.push_back(memBuf);
2234 } else {
2235 const char *fname = fileOrBuf.get<const char *>();
2236 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, fname);
2237 }
Douglas Gregor2283d792010-08-20 00:59:43 +00002238 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002239
Douglas Gregor87c08a52010-08-13 22:48:40 +00002240 // Use the code completion consumer we were given, but adding any cached
2241 // code-completion results.
Douglas Gregor7f946ad2010-11-29 16:13:56 +00002242 AugmentedCodeCompleteConsumer *AugmentedConsumer
2243 = new AugmentedCodeCompleteConsumer(*this, Consumer,
2244 FrontendOpts.ShowMacrosInCodeCompletion,
2245 FrontendOpts.ShowCodePatternsInCodeCompletion,
2246 FrontendOpts.ShowGlobalSymbolsInCodeCompletion);
Ted Kremenek03201fb2011-03-21 18:40:07 +00002247 Clang->setCodeCompletionConsumer(AugmentedConsumer);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002248
Douglas Gregordf95a132010-08-09 20:45:32 +00002249 // If we have a precompiled preamble, try to use it. We only allow
2250 // the use of the precompiled preamble if we're if the completion
2251 // point is within the main file, after the end of the precompiled
2252 // preamble.
2253 llvm::MemoryBuffer *OverrideMainBuffer = 0;
2254 if (!PreambleFile.empty()) {
2255 using llvm::sys::FileStatus;
2256 llvm::sys::PathWithStatus CompleteFilePath(File);
2257 llvm::sys::PathWithStatus MainPath(OriginalSourceFile);
2258 if (const FileStatus *CompleteFileStatus = CompleteFilePath.getFileStatus())
2259 if (const FileStatus *MainStatus = MainPath.getFileStatus())
2260 if (CompleteFileStatus->getUniqueID() == MainStatus->getUniqueID())
Douglas Gregor2283d792010-08-20 00:59:43 +00002261 OverrideMainBuffer
Ted Kremenek4f327862011-03-21 18:40:17 +00002262 = getMainBufferWithPrecompiledPreamble(*CCInvocation, false,
Douglas Gregorc9c29a82010-08-25 18:04:15 +00002263 Line - 1);
Douglas Gregordf95a132010-08-09 20:45:32 +00002264 }
2265
2266 // If the main file has been overridden due to the use of a preamble,
2267 // make that override happen and introduce the preamble.
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00002268 PreprocessorOpts.DisableStatCache = true;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00002269 StoredDiagnostics.insert(StoredDiagnostics.end(),
2270 this->StoredDiagnostics.begin(),
2271 this->StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver);
Douglas Gregordf95a132010-08-09 20:45:32 +00002272 if (OverrideMainBuffer) {
2273 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
2274 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
2275 PreprocessorOpts.PrecompiledPreambleBytes.second
2276 = PreambleEndsAtStartOfLine;
2277 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
2278 PreprocessorOpts.DisablePCHValidation = true;
2279
Douglas Gregor2283d792010-08-20 00:59:43 +00002280 OwnedBuffers.push_back(OverrideMainBuffer);
Douglas Gregorf128fed2010-08-20 00:02:33 +00002281 } else {
2282 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
2283 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregordf95a132010-08-09 20:45:32 +00002284 }
2285
Douglas Gregordca8ee82011-05-06 16:33:08 +00002286 // Disable the preprocessing record
2287 PreprocessorOpts.DetailedRecord = false;
2288
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002289 llvm::OwningPtr<SyntaxOnlyAction> Act;
2290 Act.reset(new SyntaxOnlyAction);
Ted Kremenek03201fb2011-03-21 18:40:07 +00002291 if (Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
2292 Clang->getFrontendOpts().Inputs[0].first)) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002293 if (OverrideMainBuffer) {
2294 std::string ModName = "$" + PreambleFile;
2295 TranslateStoredDiagnostics(Clang->getModuleManager(), ModName,
2296 getSourceManager(), PreambleDiagnostics,
2297 StoredDiagnostics);
2298 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002299 Act->Execute();
2300 Act->EndSourceFile();
2301 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002302}
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002303
Douglas Gregor39c411f2011-07-06 16:43:36 +00002304CXSaveError ASTUnit::Save(llvm::StringRef File) {
Douglas Gregor85bea972011-07-06 17:40:26 +00002305 if (getDiagnostics().hasUnrecoverableErrorOccurred())
Douglas Gregor39c411f2011-07-06 16:43:36 +00002306 return CXSaveError_TranslationErrors;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002307
2308 // FIXME: Can we somehow regenerate the stat cache here, or do we need to
2309 // unconditionally create a stat cache when we parse the file?
2310 std::string ErrorInfo;
Benjamin Kramer1395c5d2010-08-15 16:54:31 +00002311 llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo,
2312 llvm::raw_fd_ostream::F_Binary);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002313 if (!ErrorInfo.empty() || Out.has_error())
Douglas Gregor39c411f2011-07-06 16:43:36 +00002314 return CXSaveError_Unknown;
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002315
2316 serialize(Out);
2317 Out.close();
Douglas Gregor39c411f2011-07-06 16:43:36 +00002318 return Out.has_error()? CXSaveError_Unknown : CXSaveError_None;
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002319}
2320
2321bool ASTUnit::serialize(llvm::raw_ostream &OS) {
2322 if (getDiagnostics().hasErrorOccurred())
2323 return true;
2324
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002325 std::vector<unsigned char> Buffer;
2326 llvm::BitstreamWriter Stream(Buffer);
Sebastian Redla4232eb2010-08-18 23:56:21 +00002327 ASTWriter Writer(Stream);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002328 Writer.WriteAST(getSema(), 0, std::string(), 0);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002329
2330 // Write the generated bitstream to "Out".
Douglas Gregorbdbb0042010-08-18 22:29:43 +00002331 if (!Buffer.empty())
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002332 OS.write((char *)&Buffer.front(), Buffer.size());
2333
2334 return false;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002335}
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002336
2337typedef ContinuousRangeMap<unsigned, int, 2> SLocRemap;
2338
2339static void TranslateSLoc(SourceLocation &L, SLocRemap &Remap) {
2340 unsigned Raw = L.getRawEncoding();
2341 const unsigned MacroBit = 1U << 31;
2342 L = SourceLocation::getFromRawEncoding((Raw & MacroBit) |
2343 ((Raw & ~MacroBit) + Remap.find(Raw & ~MacroBit)->second));
2344}
2345
2346void ASTUnit::TranslateStoredDiagnostics(
2347 ASTReader *MMan,
2348 llvm::StringRef ModName,
2349 SourceManager &SrcMgr,
2350 const llvm::SmallVectorImpl<StoredDiagnostic> &Diags,
2351 llvm::SmallVectorImpl<StoredDiagnostic> &Out) {
2352 // The stored diagnostic has the old source manager in it; update
2353 // the locations to refer into the new source manager. We also need to remap
2354 // all the locations to the new view. This includes the diag location, any
2355 // associated source ranges, and the source ranges of associated fix-its.
2356 // FIXME: There should be a cleaner way to do this.
2357
2358 llvm::SmallVector<StoredDiagnostic, 4> Result;
2359 Result.reserve(Diags.size());
2360 assert(MMan && "Don't have a module manager");
2361 ASTReader::PerFileData *Mod = MMan->Modules.lookup(ModName);
2362 assert(Mod && "Don't have preamble module");
2363 SLocRemap &Remap = Mod->SLocRemap;
2364 for (unsigned I = 0, N = Diags.size(); I != N; ++I) {
2365 // Rebuild the StoredDiagnostic.
2366 const StoredDiagnostic &SD = Diags[I];
2367 SourceLocation L = SD.getLocation();
2368 TranslateSLoc(L, Remap);
2369 FullSourceLoc Loc(L, SrcMgr);
2370
2371 llvm::SmallVector<CharSourceRange, 4> Ranges;
2372 Ranges.reserve(SD.range_size());
2373 for (StoredDiagnostic::range_iterator I = SD.range_begin(),
2374 E = SD.range_end();
2375 I != E; ++I) {
2376 SourceLocation BL = I->getBegin();
2377 TranslateSLoc(BL, Remap);
2378 SourceLocation EL = I->getEnd();
2379 TranslateSLoc(EL, Remap);
2380 Ranges.push_back(CharSourceRange(SourceRange(BL, EL), I->isTokenRange()));
2381 }
2382
2383 llvm::SmallVector<FixItHint, 2> FixIts;
2384 FixIts.reserve(SD.fixit_size());
2385 for (StoredDiagnostic::fixit_iterator I = SD.fixit_begin(),
2386 E = SD.fixit_end();
2387 I != E; ++I) {
2388 FixIts.push_back(FixItHint());
2389 FixItHint &FH = FixIts.back();
2390 FH.CodeToInsert = I->CodeToInsert;
2391 SourceLocation BL = I->RemoveRange.getBegin();
2392 TranslateSLoc(BL, Remap);
2393 SourceLocation EL = I->RemoveRange.getEnd();
2394 TranslateSLoc(EL, Remap);
2395 FH.RemoveRange = CharSourceRange(SourceRange(BL, EL),
2396 I->RemoveRange.isTokenRange());
2397 }
2398
2399 Result.push_back(StoredDiagnostic(SD.getLevel(), SD.getID(),
2400 SD.getMessage(), Loc, Ranges, FixIts));
2401 }
2402 Result.swap(Out);
2403}