blob: 8f61d6a8c2dee576271904c6bc5ec75ce875f155 [file] [log] [blame]
Argyrios Kyrtzidis3a08ec12009-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 Kyrtzidisce379752009-06-20 08:08:23 +000014#include "clang/Frontend/ASTUnit.h"
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +000015#include "clang/AST/ASTContext.h"
Daniel Dunbar764c0822009-12-01 09:51:01 +000016#include "clang/AST/ASTConsumer.h"
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +000017#include "clang/AST/DeclVisitor.h"
Douglas Gregorb61c07a2010-08-16 18:08:11 +000018#include "clang/AST/TypeOrdering.h"
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +000019#include "clang/AST/StmtVisitor.h"
Daniel Dunbar55a17b62009-12-02 03:23:45 +000020#include "clang/Driver/Compilation.h"
21#include "clang/Driver/Driver.h"
22#include "clang/Driver/Job.h"
Argyrios Kyrtzidisbc1f48f2011-03-07 22:45:01 +000023#include "clang/Driver/ArgList.h"
24#include "clang/Driver/Options.h"
Daniel Dunbar55a17b62009-12-02 03:23:45 +000025#include "clang/Driver/Tool.h"
Daniel Dunbar764c0822009-12-01 09:51:01 +000026#include "clang/Frontend/CompilerInstance.h"
27#include "clang/Frontend/FrontendActions.h"
Daniel Dunbar55a17b62009-12-02 03:23:45 +000028#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar764c0822009-12-01 09:51:01 +000029#include "clang/Frontend/FrontendOptions.h"
Douglas Gregor36e3b5c2010-10-11 21:37:58 +000030#include "clang/Frontend/Utils.h"
Sebastian Redlf5b13462010-08-18 23:57:17 +000031#include "clang/Serialization/ASTReader.h"
Douglas Gregorf88e35b2010-11-30 06:16:57 +000032#include "clang/Serialization/ASTSerializationListener.h"
Sebastian Redl1914c6f2010-08-18 23:56:37 +000033#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +000034#include "clang/Lex/HeaderSearch.h"
35#include "clang/Lex/Preprocessor.h"
Daniel Dunbarb9bbd542009-11-15 06:48:46 +000036#include "clang/Basic/TargetOptions.h"
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +000037#include "clang/Basic/TargetInfo.h"
38#include "clang/Basic/Diagnostic.h"
Chris Lattnerce6c42f2011-03-23 04:04:01 +000039#include "llvm/ADT/ArrayRef.h"
Douglas Gregordf7a79a2011-02-16 18:16:54 +000040#include "llvm/ADT/StringExtras.h"
Douglas Gregor40a5a7d2010-08-16 23:08:34 +000041#include "llvm/ADT/StringSet.h"
Douglas Gregor9aeaa4d2010-12-07 00:05:48 +000042#include "llvm/Support/Atomic.h"
Douglas Gregoraa98ed92010-01-23 00:14:00 +000043#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer8aaf4992010-11-29 18:12:39 +000044#include "llvm/Support/Host.h"
45#include "llvm/Support/Path.h"
Douglas Gregor028d3e42010-08-09 20:45:32 +000046#include "llvm/Support/raw_ostream.h"
Douglas Gregor15ba0b32010-07-30 20:58:08 +000047#include "llvm/Support/Timer.h"
Ted Kremenek4422bfe2011-03-18 02:06:56 +000048#include "llvm/Support/CrashRecoveryContext.h"
Douglas Gregorbe2d8c62010-07-23 00:33:23 +000049#include <cstdlib>
Zhongxing Xu318e4032010-07-23 02:15:08 +000050#include <cstdio>
Douglas Gregor0e119552010-07-31 00:40:00 +000051#include <sys/stat.h>
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +000052using namespace clang;
53
Douglas Gregor16896c42010-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 Kramerf2e5a912010-11-09 20:00:56 +000062 public:
Douglas Gregor1cbdd952010-11-01 13:48:43 +000063 explicit SimpleTimer(bool WantTiming) : WantTiming(WantTiming) {
Douglas Gregor16896c42010-10-28 15:44:59 +000064 if (WantTiming)
Benjamin Kramerf2e5a912010-11-09 20:00:56 +000065 Start = TimeRecord::getCurrentTime();
Douglas Gregor16896c42010-10-28 15:44:59 +000066 }
67
Benjamin Kramerf2e5a912010-11-09 20:00:56 +000068 void setOutput(const llvm::Twine &Output) {
Douglas Gregor16896c42010-10-28 15:44:59 +000069 if (WantTiming)
Benjamin Kramerf2e5a912010-11-09 20:00:56 +000070 this->Output = Output.str();
Douglas Gregor16896c42010-10-28 15:44:59 +000071 }
72
Douglas Gregor16896c42010-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 Gregorbb420ab2010-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 Gregor68dbaea2010-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 Gregor9aeaa4d2010-12-07 00:05:48 +000094static llvm::sys::cas_flag ActiveASTUnitObjects;
Douglas Gregor68dbaea2010-11-17 00:13:31 +000095
Douglas Gregord03e8232010-04-05 21:10:19 +000096ASTUnit::ASTUnit(bool _MainFileIsAST)
Argyrios Kyrtzidis35dcda72011-03-09 17:21:42 +000097 : OnlyLocalDecls(false), CaptureDiagnostics(false),
98 MainFileIsAST(_MainFileIsAST),
Douglas Gregor16896c42010-10-28 15:44:59 +000099 CompleteTranslationUnit(true), WantTiming(getenv("LIBCLANG_TIMING")),
Argyrios Kyrtzidis4954bc12011-03-05 01:03:48 +0000100 OwnsRemappedFileBuffers(true),
Douglas Gregor16896c42010-10-28 15:44:59 +0000101 NumStoredDiagnosticsFromDriver(0),
Douglas Gregor7bb8af62010-10-12 00:50:20 +0000102 ConcurrencyCheckValue(CheckUnlocked),
Douglas Gregora0734c52010-08-19 01:33:06 +0000103 PreambleRebuildCounter(0), SavedMainFileBuffer(0), PreambleBuffer(0),
Douglas Gregor2c8bd472010-08-17 00:40:40 +0000104 ShouldCacheCodeCompletionResults(false),
Douglas Gregor998caea2011-05-06 16:33:08 +0000105 NestedMacroInstantiations(true),
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000106 CompletionCacheTopLevelHashValue(0),
107 PreambleTopLevelHashValue(0),
108 CurrentTopLevelHashValue(0),
Douglas Gregor4740c452010-08-19 00:45:44 +0000109 UnsafeToFree(false) {
Douglas Gregor68dbaea2010-11-17 00:13:31 +0000110 if (getenv("LIBCLANG_OBJTRACKING")) {
Douglas Gregor9aeaa4d2010-12-07 00:05:48 +0000111 llvm::sys::AtomicIncrement(&ActiveASTUnitObjects);
Douglas Gregor68dbaea2010-11-17 00:13:31 +0000112 fprintf(stderr, "+++ %d translation units\n", ActiveASTUnitObjects);
113 }
Douglas Gregor15ba0b32010-07-30 20:58:08 +0000114}
Douglas Gregord03e8232010-04-05 21:10:19 +0000115
Daniel Dunbar764c0822009-12-01 09:51:01 +0000116ASTUnit::~ASTUnit() {
Douglas Gregor0c7c2f82010-03-05 21:16:25 +0000117 ConcurrencyCheckValue = CheckLocked;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000118 CleanTemporaryFiles();
Douglas Gregor4dde7492010-07-23 23:58:40 +0000119 if (!PreambleFile.empty())
Douglas Gregor15ba0b32010-07-30 20:58:08 +0000120 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregor3f4bea02010-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 Kremenek5e14d392011-03-21 18:40:17 +0000126 if (Invocation.getPtr() && OwnsRemappedFileBuffers) {
Douglas Gregor3f4bea02010-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 Gregor96c04262010-07-27 14:52:07 +0000135
136 delete SavedMainFileBuffer;
Douglas Gregora0734c52010-08-19 01:33:06 +0000137 delete PreambleBuffer;
138
Douglas Gregor16896c42010-10-28 15:44:59 +0000139 ClearCachedCompletionResults();
Douglas Gregor68dbaea2010-11-17 00:13:31 +0000140
141 if (getenv("LIBCLANG_OBJTRACKING")) {
Douglas Gregor9aeaa4d2010-12-07 00:05:48 +0000142 llvm::sys::AtomicDecrement(&ActiveASTUnitObjects);
Douglas Gregor68dbaea2010-11-17 00:13:31 +0000143 fprintf(stderr, "--- %d translation units\n", ActiveASTUnitObjects);
144 }
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000145}
146
147void ASTUnit::CleanTemporaryFiles() {
Douglas Gregor6cb5ba42010-02-18 23:35:40 +0000148 for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I)
149 TemporaryFiles[I].eraseFromDisk();
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000150 TemporaryFiles.clear();
Steve Naroff44cd60e2009-10-15 22:23:48 +0000151}
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000152
Douglas Gregor39982192010-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 Gregor59cab552010-08-16 23:05:20 +0000156 const LangOptions &LangOpts,
157 bool &IsNestedNameSpecifier) {
158 IsNestedNameSpecifier = false;
159
Douglas Gregor39982192010-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 Gregor5e35d592010-09-14 23:59:36 +0000174 | (1 << (CodeCompletionContext::CCC_Type - 1))
175 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregor39982192010-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));
185
186 // Deal with tag names.
187 if (isa<EnumDecl>(ND)) {
188 Contexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1));
189
Douglas Gregor59cab552010-08-16 23:05:20 +0000190 // Part of the nested-name-specifier in C++0x.
Douglas Gregor39982192010-08-15 06:18:01 +0000191 if (LangOpts.CPlusPlus0x)
Douglas Gregor59cab552010-08-16 23:05:20 +0000192 IsNestedNameSpecifier = true;
Douglas Gregor39982192010-08-15 06:18:01 +0000193 } else if (RecordDecl *Record = dyn_cast<RecordDecl>(ND)) {
194 if (Record->isUnion())
195 Contexts |= (1 << (CodeCompletionContext::CCC_UnionTag - 1));
196 else
197 Contexts |= (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
198
Douglas Gregor39982192010-08-15 06:18:01 +0000199 if (LangOpts.CPlusPlus)
Douglas Gregor59cab552010-08-16 23:05:20 +0000200 IsNestedNameSpecifier = true;
Douglas Gregor0ac41382010-09-23 23:01:17 +0000201 } else if (isa<ClassTemplateDecl>(ND))
Douglas Gregor59cab552010-08-16 23:05:20 +0000202 IsNestedNameSpecifier = true;
Douglas Gregor39982192010-08-15 06:18:01 +0000203 } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
204 // Values can appear in these contexts.
205 Contexts = (1 << (CodeCompletionContext::CCC_Statement - 1))
206 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor5e35d592010-09-14 23:59:36 +0000207 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
Douglas Gregor39982192010-08-15 06:18:01 +0000208 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
209 } else if (isa<ObjCProtocolDecl>(ND)) {
210 Contexts = (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1));
211 } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) {
Douglas Gregor59cab552010-08-16 23:05:20 +0000212 Contexts = (1 << (CodeCompletionContext::CCC_Namespace - 1));
Douglas Gregor39982192010-08-15 06:18:01 +0000213
214 // Part of the nested-name-specifier.
Douglas Gregor59cab552010-08-16 23:05:20 +0000215 IsNestedNameSpecifier = true;
Douglas Gregor39982192010-08-15 06:18:01 +0000216 }
217
218 return Contexts;
219}
220
Douglas Gregorb14904c2010-08-13 22:48:40 +0000221void ASTUnit::CacheCodeCompletionResults() {
222 if (!TheSema)
223 return;
224
Douglas Gregor16896c42010-10-28 15:44:59 +0000225 SimpleTimer Timer(WantTiming);
Benjamin Kramerf2e5a912010-11-09 20:00:56 +0000226 Timer.setOutput("Cache global code completions for " + getMainFileName());
Douglas Gregorb14904c2010-08-13 22:48:40 +0000227
228 // Clear out the previous results.
229 ClearCachedCompletionResults();
230
231 // Gather the set of global code completions.
John McCall276321a2010-08-25 06:19:51 +0000232 typedef CodeCompletionResult Result;
Douglas Gregorb14904c2010-08-13 22:48:40 +0000233 llvm::SmallVector<Result, 8> Results;
Douglas Gregor162b7122011-02-16 19:08:06 +0000234 CachedCompletionAllocator = new GlobalCodeCompletionAllocator;
235 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator, Results);
Douglas Gregorb14904c2010-08-13 22:48:40 +0000236
237 // Translate global code completions into cached completions.
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000238 llvm::DenseMap<CanQualType, unsigned> CompletionTypes;
239
Douglas Gregorb14904c2010-08-13 22:48:40 +0000240 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
241 switch (Results[I].Kind) {
Douglas Gregor39982192010-08-15 06:18:01 +0000242 case Result::RK_Declaration: {
Douglas Gregor59cab552010-08-16 23:05:20 +0000243 bool IsNestedNameSpecifier = false;
Douglas Gregor39982192010-08-15 06:18:01 +0000244 CachedCodeCompletionResult CachedResult;
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000245 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor162b7122011-02-16 19:08:06 +0000246 *CachedCompletionAllocator);
Douglas Gregor39982192010-08-15 06:18:01 +0000247 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
Douglas Gregor59cab552010-08-16 23:05:20 +0000248 Ctx->getLangOptions(),
249 IsNestedNameSpecifier);
Douglas Gregor39982192010-08-15 06:18:01 +0000250 CachedResult.Priority = Results[I].Priority;
251 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregorf757a122010-08-23 23:00:57 +0000252 CachedResult.Availability = Results[I].Availability;
Douglas Gregor24747402010-08-16 16:46:30 +0000253
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000254 // Keep track of the type of this completion in an ASTContext-agnostic
255 // way.
Douglas Gregor24747402010-08-16 16:46:30 +0000256 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000257 if (UsageType.isNull()) {
Douglas Gregor24747402010-08-16 16:46:30 +0000258 CachedResult.TypeClass = STC_Void;
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000259 CachedResult.Type = 0;
260 } else {
261 CanQualType CanUsageType
262 = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
263 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
264
265 // Determine whether we have already seen this type. If so, we save
266 // ourselves the work of formatting the type string by using the
267 // temporary, CanQualType-based hash table to find the associated value.
268 unsigned &TypeValue = CompletionTypes[CanUsageType];
269 if (TypeValue == 0) {
270 TypeValue = CompletionTypes.size();
271 CachedCompletionTypes[QualType(CanUsageType).getAsString()]
272 = TypeValue;
273 }
274
275 CachedResult.Type = TypeValue;
Douglas Gregor24747402010-08-16 16:46:30 +0000276 }
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000277
Douglas Gregor39982192010-08-15 06:18:01 +0000278 CachedCompletionResults.push_back(CachedResult);
Douglas Gregor59cab552010-08-16 23:05:20 +0000279
280 /// Handle nested-name-specifiers in C++.
281 if (TheSema->Context.getLangOptions().CPlusPlus &&
282 IsNestedNameSpecifier && !Results[I].StartsNestedNameSpecifier) {
283 // The contexts in which a nested-name-specifier can appear in C++.
284 unsigned NNSContexts
285 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
286 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
287 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
288 | (1 << (CodeCompletionContext::CCC_Statement - 1))
289 | (1 << (CodeCompletionContext::CCC_Expression - 1))
290 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
291 | (1 << (CodeCompletionContext::CCC_EnumTag - 1))
292 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
293 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1))
Douglas Gregorc49f5b22010-08-23 18:23:48 +0000294 | (1 << (CodeCompletionContext::CCC_Type - 1))
Douglas Gregor5e35d592010-09-14 23:59:36 +0000295 | (1 << (CodeCompletionContext::CCC_PotentiallyQualifiedName - 1))
296 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregor59cab552010-08-16 23:05:20 +0000297
298 if (isa<NamespaceDecl>(Results[I].Declaration) ||
299 isa<NamespaceAliasDecl>(Results[I].Declaration))
300 NNSContexts |= (1 << (CodeCompletionContext::CCC_Namespace - 1));
301
302 if (unsigned RemainingContexts
303 = NNSContexts & ~CachedResult.ShowInContexts) {
304 // If there any contexts where this completion can be a
305 // nested-name-specifier but isn't already an option, create a
306 // nested-name-specifier completion.
307 Results[I].StartsNestedNameSpecifier = true;
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000308 CachedResult.Completion
309 = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor162b7122011-02-16 19:08:06 +0000310 *CachedCompletionAllocator);
Douglas Gregor59cab552010-08-16 23:05:20 +0000311 CachedResult.ShowInContexts = RemainingContexts;
312 CachedResult.Priority = CCP_NestedNameSpecifier;
313 CachedResult.TypeClass = STC_Void;
314 CachedResult.Type = 0;
315 CachedCompletionResults.push_back(CachedResult);
316 }
317 }
Douglas Gregorb14904c2010-08-13 22:48:40 +0000318 break;
Douglas Gregor39982192010-08-15 06:18:01 +0000319 }
320
Douglas Gregorb14904c2010-08-13 22:48:40 +0000321 case Result::RK_Keyword:
322 case Result::RK_Pattern:
323 // Ignore keywords and patterns; we don't care, since they are so
324 // easily regenerated.
325 break;
326
327 case Result::RK_Macro: {
328 CachedCodeCompletionResult CachedResult;
Douglas Gregorb278aaf2011-02-01 19:23:04 +0000329 CachedResult.Completion
330 = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor162b7122011-02-16 19:08:06 +0000331 *CachedCompletionAllocator);
Douglas Gregorb14904c2010-08-13 22:48:40 +0000332 CachedResult.ShowInContexts
333 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
334 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
335 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
336 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
337 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
338 | (1 << (CodeCompletionContext::CCC_Statement - 1))
339 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor12785102010-08-24 20:21:13 +0000340 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
Douglas Gregorec00a262010-08-24 22:20:20 +0000341 | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1))
Douglas Gregor5e35d592010-09-14 23:59:36 +0000342 | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1))
Douglas Gregor3a69eaf2011-02-18 23:30:37 +0000343 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
344 | (1 << (CodeCompletionContext::CCC_OtherWithMacros - 1));
Douglas Gregorc49f5b22010-08-23 18:23:48 +0000345
Douglas Gregorb14904c2010-08-13 22:48:40 +0000346 CachedResult.Priority = Results[I].Priority;
347 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregorf757a122010-08-23 23:00:57 +0000348 CachedResult.Availability = Results[I].Availability;
Douglas Gregor6e240332010-08-16 16:18:59 +0000349 CachedResult.TypeClass = STC_Void;
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000350 CachedResult.Type = 0;
Douglas Gregorb14904c2010-08-13 22:48:40 +0000351 CachedCompletionResults.push_back(CachedResult);
352 break;
353 }
354 }
Douglas Gregorb14904c2010-08-13 22:48:40 +0000355 }
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000356
357 // Save the current top-level hash value.
358 CompletionCacheTopLevelHashValue = CurrentTopLevelHashValue;
Douglas Gregorb14904c2010-08-13 22:48:40 +0000359}
360
361void ASTUnit::ClearCachedCompletionResults() {
Douglas Gregorb14904c2010-08-13 22:48:40 +0000362 CachedCompletionResults.clear();
Douglas Gregorb61c07a2010-08-16 18:08:11 +0000363 CachedCompletionTypes.clear();
Douglas Gregor162b7122011-02-16 19:08:06 +0000364 CachedCompletionAllocator = 0;
Douglas Gregorb14904c2010-08-13 22:48:40 +0000365}
366
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000367namespace {
368
Sebastian Redl2c499f62010-08-18 23:56:43 +0000369/// \brief Gathers information from ASTReader that will be used to initialize
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000370/// a Preprocessor.
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000371class ASTInfoCollector : public ASTReaderListener {
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000372 LangOptions &LangOpt;
373 HeaderSearch &HSI;
374 std::string &TargetTriple;
375 std::string &Predefines;
376 unsigned &Counter;
Mike Stump11289f42009-09-09 15:08:12 +0000377
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000378 unsigned NumHeaderInfos;
Mike Stump11289f42009-09-09 15:08:12 +0000379
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000380public:
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000381 ASTInfoCollector(LangOptions &LangOpt, HeaderSearch &HSI,
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000382 std::string &TargetTriple, std::string &Predefines,
383 unsigned &Counter)
384 : LangOpt(LangOpt), HSI(HSI), TargetTriple(TargetTriple),
385 Predefines(Predefines), Counter(Counter), NumHeaderInfos(0) {}
Mike Stump11289f42009-09-09 15:08:12 +0000386
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000387 virtual bool ReadLanguageOptions(const LangOptions &LangOpts) {
388 LangOpt = LangOpts;
389 return false;
390 }
Mike Stump11289f42009-09-09 15:08:12 +0000391
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000392 virtual bool ReadTargetTriple(llvm::StringRef Triple) {
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000393 TargetTriple = Triple;
394 return false;
395 }
Mike Stump11289f42009-09-09 15:08:12 +0000396
Sebastian Redl8b41f302010-07-14 23:29:55 +0000397 virtual bool ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000398 llvm::StringRef OriginalFileName,
Nick Lewycky36079892011-02-23 21:16:44 +0000399 std::string &SuggestedPredefines,
400 FileManager &FileMgr) {
Sebastian Redl8b41f302010-07-14 23:29:55 +0000401 Predefines = Buffers[0].Data;
402 for (unsigned I = 1, N = Buffers.size(); I != N; ++I) {
403 Predefines += Buffers[I].Data;
404 }
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000405 return false;
406 }
Mike Stump11289f42009-09-09 15:08:12 +0000407
Douglas Gregora2f49452010-03-16 19:09:18 +0000408 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) {
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000409 HSI.setHeaderFileInfoForUID(HFI, NumHeaderInfos++);
410 }
Mike Stump11289f42009-09-09 15:08:12 +0000411
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000412 virtual void ReadCounter(unsigned Value) {
413 Counter = Value;
414 }
415};
416
Douglas Gregor33cdd812010-02-18 18:08:43 +0000417class StoredDiagnosticClient : public DiagnosticClient {
418 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags;
419
420public:
421 explicit StoredDiagnosticClient(
422 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
423 : StoredDiags(StoredDiags) { }
424
425 virtual void HandleDiagnostic(Diagnostic::Level Level,
426 const DiagnosticInfo &Info);
427};
428
429/// \brief RAII object that optionally captures diagnostics, if
430/// there is no diagnostic client to capture them already.
431class CaptureDroppedDiagnostics {
432 Diagnostic &Diags;
433 StoredDiagnosticClient Client;
434 DiagnosticClient *PreviousClient;
435
436public:
437 CaptureDroppedDiagnostics(bool RequestCapture, Diagnostic &Diags,
Douglas Gregor44c6ee72010-11-11 00:39:14 +0000438 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiags)
Douglas Gregor2dd19f12010-08-18 22:29:43 +0000439 : Diags(Diags), Client(StoredDiags), PreviousClient(0)
Douglas Gregor33cdd812010-02-18 18:08:43 +0000440 {
Douglas Gregor2dd19f12010-08-18 22:29:43 +0000441 if (RequestCapture || Diags.getClient() == 0) {
442 PreviousClient = Diags.takeClient();
Douglas Gregor33cdd812010-02-18 18:08:43 +0000443 Diags.setClient(&Client);
Douglas Gregor2dd19f12010-08-18 22:29:43 +0000444 }
Douglas Gregor33cdd812010-02-18 18:08:43 +0000445 }
446
447 ~CaptureDroppedDiagnostics() {
Douglas Gregor2dd19f12010-08-18 22:29:43 +0000448 if (Diags.getClient() == &Client) {
449 Diags.takeClient();
450 Diags.setClient(PreviousClient);
451 }
Douglas Gregor33cdd812010-02-18 18:08:43 +0000452 }
453};
454
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000455} // anonymous namespace
456
Douglas Gregor33cdd812010-02-18 18:08:43 +0000457void StoredDiagnosticClient::HandleDiagnostic(Diagnostic::Level Level,
458 const DiagnosticInfo &Info) {
Argyrios Kyrtzidisc79346a2010-11-18 20:06:46 +0000459 // Default implementation (Warnings/errors count).
460 DiagnosticClient::HandleDiagnostic(Level, Info);
461
Douglas Gregor33cdd812010-02-18 18:08:43 +0000462 StoredDiags.push_back(StoredDiagnostic(Level, Info));
463}
464
Steve Naroffc0683b92009-09-03 18:19:54 +0000465const std::string &ASTUnit::getOriginalSourceFileName() {
Daniel Dunbara8a50932009-12-02 08:44:16 +0000466 return OriginalSourceFile;
Steve Naroffc0683b92009-09-03 18:19:54 +0000467}
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000468
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000469const std::string &ASTUnit::getASTFileName() {
470 assert(isMainFileAST() && "Not an ASTUnit from an AST file!");
Sebastian Redl2c499f62010-08-18 23:56:43 +0000471 return static_cast<ASTReader *>(Ctx->getExternalSource())->getFileName();
Steve Naroff44cd60e2009-10-15 22:23:48 +0000472}
473
Argyrios Kyrtzidis71731d62010-11-03 22:45:23 +0000474llvm::MemoryBuffer *ASTUnit::getBufferForFile(llvm::StringRef Filename,
Chris Lattner26b5c192010-11-23 09:19:42 +0000475 std::string *ErrorStr) {
Chris Lattner5159f612010-11-23 08:35:12 +0000476 assert(FileMgr);
Chris Lattner26b5c192010-11-23 09:19:42 +0000477 return FileMgr->getBufferForFile(Filename, ErrorStr);
Argyrios Kyrtzidis71731d62010-11-03 22:45:23 +0000478}
479
Douglas Gregor44c6ee72010-11-11 00:39:14 +0000480/// \brief Configure the diagnostics object for use with ASTUnit.
481void ASTUnit::ConfigureDiags(llvm::IntrusiveRefCntPtr<Diagnostic> &Diags,
Douglas Gregor345c1bc2011-01-19 01:02:47 +0000482 const char **ArgBegin, const char **ArgEnd,
Douglas Gregor44c6ee72010-11-11 00:39:14 +0000483 ASTUnit &AST, bool CaptureDiagnostics) {
484 if (!Diags.getPtr()) {
485 // No diagnostics engine was provided, so create our own diagnostics object
486 // with the default options.
487 DiagnosticOptions DiagOpts;
488 DiagnosticClient *Client = 0;
489 if (CaptureDiagnostics)
490 Client = new StoredDiagnosticClient(AST.StoredDiagnostics);
Douglas Gregor345c1bc2011-01-19 01:02:47 +0000491 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgEnd- ArgBegin,
492 ArgBegin, Client);
Douglas Gregor44c6ee72010-11-11 00:39:14 +0000493 } else if (CaptureDiagnostics) {
494 Diags->setClient(new StoredDiagnosticClient(AST.StoredDiagnostics));
495 }
496}
497
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000498ASTUnit *ASTUnit::LoadFromASTFile(const std::string &Filename,
Douglas Gregor7f95d262010-04-05 23:52:57 +0000499 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Argyrios Kyrtzidis71731d62010-11-03 22:45:23 +0000500 const FileSystemOptions &FileSystemOpts,
Ted Kremenek8bcb1c62009-10-17 00:34:24 +0000501 bool OnlyLocalDecls,
Douglas Gregoraa98ed92010-01-23 00:14:00 +0000502 RemappedFile *RemappedFiles,
Douglas Gregor33cdd812010-02-18 18:08:43 +0000503 unsigned NumRemappedFiles,
504 bool CaptureDiagnostics) {
Douglas Gregord03e8232010-04-05 21:10:19 +0000505 llvm::OwningPtr<ASTUnit> AST(new ASTUnit(true));
Ted Kremenek4422bfe2011-03-18 02:06:56 +0000506
507 // Recover resources if we crash before exiting this method.
Ted Kremenek022a4902011-03-22 01:15:24 +0000508 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
509 ASTUnitCleanup(AST.get());
510 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
511 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
512 DiagCleanup(Diags.getPtr());
Ted Kremenek4422bfe2011-03-18 02:06:56 +0000513
Douglas Gregor345c1bc2011-01-19 01:02:47 +0000514 ConfigureDiags(Diags, 0, 0, *AST, CaptureDiagnostics);
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000515
Douglas Gregor16bef852009-10-16 20:01:17 +0000516 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregor44c6ee72010-11-11 00:39:14 +0000517 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor7f95d262010-04-05 23:52:57 +0000518 AST->Diagnostics = Diags;
Ted Kremenek5e14d392011-03-21 18:40:17 +0000519 AST->FileMgr = new FileManager(FileSystemOpts);
520 AST->SourceMgr = new SourceManager(AST->getDiagnostics(),
521 AST->getFileManager());
Chris Lattner5159f612010-11-23 08:35:12 +0000522 AST->HeaderInfo.reset(new HeaderSearch(AST->getFileManager()));
Douglas Gregor6fd55e02010-08-13 03:15:25 +0000523
Douglas Gregoraa98ed92010-01-23 00:14:00 +0000524 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +0000525 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
526 if (const llvm::MemoryBuffer *
527 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
528 // Create the file entry for the file that we're mapping from.
529 const FileEntry *FromFile
530 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
531 memBuf->getBufferSize(),
532 0);
533 if (!FromFile) {
534 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
535 << RemappedFiles[I].first;
536 delete memBuf;
537 continue;
538 }
539
540 // Override the contents of the "from" file with the contents of
541 // the "to" file.
542 AST->getSourceManager().overrideFileContents(FromFile, memBuf);
543
544 } else {
545 const char *fname = fileOrBuf.get<const char *>();
546 const FileEntry *ToFile = AST->FileMgr->getFile(fname);
547 if (!ToFile) {
548 AST->getDiagnostics().Report(diag::err_fe_remap_missing_to_file)
549 << RemappedFiles[I].first << fname;
550 continue;
551 }
552
553 // Create the file entry for the file that we're mapping from.
554 const FileEntry *FromFile
555 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
556 ToFile->getSize(),
557 0);
558 if (!FromFile) {
559 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
560 << RemappedFiles[I].first;
561 delete memBuf;
562 continue;
563 }
564
565 // Override the contents of the "from" file with the contents of
566 // the "to" file.
567 AST->getSourceManager().overrideFileContents(FromFile, ToFile);
Douglas Gregoraa98ed92010-01-23 00:14:00 +0000568 }
Douglas Gregoraa98ed92010-01-23 00:14:00 +0000569 }
570
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000571 // Gather Info for preprocessor construction later on.
Mike Stump11289f42009-09-09 15:08:12 +0000572
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000573 LangOptions LangInfo;
574 HeaderSearch &HeaderInfo = *AST->HeaderInfo.get();
575 std::string TargetTriple;
576 std::string Predefines;
577 unsigned Counter;
578
Sebastian Redl2c499f62010-08-18 23:56:43 +0000579 llvm::OwningPtr<ASTReader> Reader;
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000580
Sebastian Redl2c499f62010-08-18 23:56:43 +0000581 Reader.reset(new ASTReader(AST->getSourceManager(), AST->getFileManager(),
Chris Lattner5159f612010-11-23 08:35:12 +0000582 AST->getDiagnostics()));
Ted Kremenek2159b8d2011-05-04 23:27:12 +0000583
584 // Recover resources if we crash before exiting this method.
585 llvm::CrashRecoveryContextCleanupRegistrar<ASTReader>
586 ReaderCleanup(Reader.get());
587
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000588 Reader->setListener(new ASTInfoCollector(LangInfo, HeaderInfo, TargetTriple,
Daniel Dunbar2d9c7402009-09-03 05:59:35 +0000589 Predefines, Counter));
590
Sebastian Redl009e7f22010-10-05 16:15:19 +0000591 switch (Reader->ReadAST(Filename, ASTReader::MainFile)) {
Sebastian Redl2c499f62010-08-18 23:56:43 +0000592 case ASTReader::Success:
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000593 break;
Mike Stump11289f42009-09-09 15:08:12 +0000594
Sebastian Redl2c499f62010-08-18 23:56:43 +0000595 case ASTReader::Failure:
596 case ASTReader::IgnorePCH:
Douglas Gregord03e8232010-04-05 21:10:19 +0000597 AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000598 return NULL;
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000599 }
Mike Stump11289f42009-09-09 15:08:12 +0000600
Daniel Dunbara8a50932009-12-02 08:44:16 +0000601 AST->OriginalSourceFile = Reader->getOriginalSourceFile();
602
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000603 // AST file loaded successfully. Now create the preprocessor.
Mike Stump11289f42009-09-09 15:08:12 +0000604
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000605 // Get information about the target being compiled for.
Daniel Dunbarb9bbd542009-11-15 06:48:46 +0000606 //
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000607 // FIXME: This is broken, we should store the TargetOptions in the AST file.
Daniel Dunbarb9bbd542009-11-15 06:48:46 +0000608 TargetOptions TargetOpts;
609 TargetOpts.ABI = "";
John McCall1c456c82010-08-22 06:43:33 +0000610 TargetOpts.CXXABI = "";
Daniel Dunbarb9bbd542009-11-15 06:48:46 +0000611 TargetOpts.CPU = "";
612 TargetOpts.Features.clear();
613 TargetOpts.Triple = TargetTriple;
Ted Kremenek5e14d392011-03-21 18:40:17 +0000614 AST->Target = TargetInfo::CreateTargetInfo(AST->getDiagnostics(),
615 TargetOpts);
616 AST->PP = new Preprocessor(AST->getDiagnostics(), LangInfo, *AST->Target,
617 AST->getSourceManager(), HeaderInfo);
618 Preprocessor &PP = *AST->PP;
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000619
Daniel Dunbarb7bbfdd2009-09-21 03:03:47 +0000620 PP.setPredefines(Reader->getSuggestedPredefines());
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000621 PP.setCounterValue(Counter);
Daniel Dunbar2d9c7402009-09-03 05:59:35 +0000622 Reader->setPreprocessor(PP);
Mike Stump11289f42009-09-09 15:08:12 +0000623
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000624 // Create and initialize the ASTContext.
625
Ted Kremenek5e14d392011-03-21 18:40:17 +0000626 AST->Ctx = new ASTContext(LangInfo,
627 AST->getSourceManager(),
628 *AST->Target,
629 PP.getIdentifierTable(),
630 PP.getSelectorTable(),
631 PP.getBuiltinInfo(),
632 /* size_reserve = */0);
633 ASTContext &Context = *AST->Ctx;
Mike Stump11289f42009-09-09 15:08:12 +0000634
Daniel Dunbar2d9c7402009-09-03 05:59:35 +0000635 Reader->InitializeContext(Context);
Mike Stump11289f42009-09-09 15:08:12 +0000636
Sebastian Redl2c499f62010-08-18 23:56:43 +0000637 // Attach the AST reader to the AST context as an external AST
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000638 // source, so that declarations will be deserialized from the
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000639 // AST file as needed.
Sebastian Redl2c499f62010-08-18 23:56:43 +0000640 ASTReader *ReaderPtr = Reader.get();
Douglas Gregor6fd55e02010-08-13 03:15:25 +0000641 llvm::OwningPtr<ExternalASTSource> Source(Reader.take());
Ted Kremenek2159b8d2011-05-04 23:27:12 +0000642
643 // Unregister the cleanup for ASTReader. It will get cleaned up
644 // by the ASTUnit cleanup.
645 ReaderCleanup.unregister();
646
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000647 Context.setExternalSource(Source);
648
Douglas Gregor6fd55e02010-08-13 03:15:25 +0000649 // Create an AST consumer, even though it isn't used.
650 AST->Consumer.reset(new ASTConsumer);
651
Sebastian Redl2c499f62010-08-18 23:56:43 +0000652 // Create a semantic analysis object and tell the AST reader about it.
Douglas Gregor6fd55e02010-08-13 03:15:25 +0000653 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
654 AST->TheSema->Initialize();
655 ReaderPtr->InitializeSema(*AST->TheSema);
656
Mike Stump11289f42009-09-09 15:08:12 +0000657 return AST.take();
Argyrios Kyrtzidisce379752009-06-20 08:08:23 +0000658}
Daniel Dunbar764c0822009-12-01 09:51:01 +0000659
660namespace {
661
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000662/// \brief Preprocessor callback class that updates a hash value with the names
663/// of all macros that have been defined by the translation unit.
664class MacroDefinitionTrackerPPCallbacks : public PPCallbacks {
665 unsigned &Hash;
666
667public:
668 explicit MacroDefinitionTrackerPPCallbacks(unsigned &Hash) : Hash(Hash) { }
669
670 virtual void MacroDefined(const Token &MacroNameTok, const MacroInfo *MI) {
671 Hash = llvm::HashString(MacroNameTok.getIdentifierInfo()->getName(), Hash);
672 }
673};
674
675/// \brief Add the given declaration to the hash of all top-level entities.
676void AddTopLevelDeclarationToHash(Decl *D, unsigned &Hash) {
677 if (!D)
678 return;
679
680 DeclContext *DC = D->getDeclContext();
681 if (!DC)
682 return;
683
684 if (!(DC->isTranslationUnit() || DC->getLookupParent()->isTranslationUnit()))
685 return;
686
687 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
688 if (ND->getIdentifier())
689 Hash = llvm::HashString(ND->getIdentifier()->getName(), Hash);
690 else if (DeclarationName Name = ND->getDeclName()) {
691 std::string NameStr = Name.getAsString();
692 Hash = llvm::HashString(NameStr, Hash);
693 }
694 return;
695 }
696
697 if (ObjCForwardProtocolDecl *Forward
698 = dyn_cast<ObjCForwardProtocolDecl>(D)) {
699 for (ObjCForwardProtocolDecl::protocol_iterator
700 P = Forward->protocol_begin(),
701 PEnd = Forward->protocol_end();
702 P != PEnd; ++P)
703 AddTopLevelDeclarationToHash(*P, Hash);
704 return;
705 }
706
707 if (ObjCClassDecl *Class = llvm::dyn_cast<ObjCClassDecl>(D)) {
708 for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end();
709 I != IEnd; ++I)
710 AddTopLevelDeclarationToHash(I->getInterface(), Hash);
711 return;
712 }
713}
714
Daniel Dunbar644dca02009-12-04 08:17:33 +0000715class TopLevelDeclTrackerConsumer : public ASTConsumer {
716 ASTUnit &Unit;
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000717 unsigned &Hash;
718
Daniel Dunbar644dca02009-12-04 08:17:33 +0000719public:
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000720 TopLevelDeclTrackerConsumer(ASTUnit &_Unit, unsigned &Hash)
721 : Unit(_Unit), Hash(Hash) {
722 Hash = 0;
723 }
724
Daniel Dunbar644dca02009-12-04 08:17:33 +0000725 void HandleTopLevelDecl(DeclGroupRef D) {
Ted Kremenekacc59c32010-05-03 20:16:35 +0000726 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
727 Decl *D = *it;
728 // FIXME: Currently ObjC method declarations are incorrectly being
729 // reported as top-level declarations, even though their DeclContext
730 // is the containing ObjC @interface/@implementation. This is a
731 // fundamental problem in the parser right now.
732 if (isa<ObjCMethodDecl>(D))
733 continue;
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000734
735 AddTopLevelDeclarationToHash(D, Hash);
Douglas Gregore9db88f2010-08-03 19:06:41 +0000736 Unit.addTopLevelDecl(D);
Ted Kremenekacc59c32010-05-03 20:16:35 +0000737 }
Daniel Dunbar644dca02009-12-04 08:17:33 +0000738 }
Sebastian Redleaa4ade2010-08-11 18:52:41 +0000739
740 // We're not interested in "interesting" decls.
741 void HandleInterestingDecl(DeclGroupRef) {}
Daniel Dunbar644dca02009-12-04 08:17:33 +0000742};
743
744class TopLevelDeclTrackerAction : public ASTFrontendAction {
745public:
746 ASTUnit &Unit;
747
Daniel Dunbar764c0822009-12-01 09:51:01 +0000748 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
749 llvm::StringRef InFile) {
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000750 CI.getPreprocessor().addPPCallbacks(
751 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
752 return new TopLevelDeclTrackerConsumer(Unit,
753 Unit.getCurrentTopLevelHashValue());
Daniel Dunbar764c0822009-12-01 09:51:01 +0000754 }
755
756public:
Daniel Dunbar644dca02009-12-04 08:17:33 +0000757 TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
758
Daniel Dunbar764c0822009-12-01 09:51:01 +0000759 virtual bool hasCodeCompletionSupport() const { return false; }
Douglas Gregor028d3e42010-08-09 20:45:32 +0000760 virtual bool usesCompleteTranslationUnit() {
761 return Unit.isCompleteTranslationUnit();
762 }
Daniel Dunbar764c0822009-12-01 09:51:01 +0000763};
764
Douglas Gregorf88e35b2010-11-30 06:16:57 +0000765class PrecompilePreambleConsumer : public PCHGenerator,
766 public ASTSerializationListener {
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000767 ASTUnit &Unit;
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000768 unsigned &Hash;
Douglas Gregore9db88f2010-08-03 19:06:41 +0000769 std::vector<Decl *> TopLevelDecls;
Douglas Gregorf88e35b2010-11-30 06:16:57 +0000770
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000771public:
772 PrecompilePreambleConsumer(ASTUnit &Unit,
773 const Preprocessor &PP, bool Chaining,
774 const char *isysroot, llvm::raw_ostream *Out)
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000775 : PCHGenerator(PP, "", Chaining, isysroot, Out), Unit(Unit),
776 Hash(Unit.getCurrentTopLevelHashValue()) {
777 Hash = 0;
778 }
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000779
Douglas Gregore9db88f2010-08-03 19:06:41 +0000780 virtual void HandleTopLevelDecl(DeclGroupRef D) {
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000781 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
782 Decl *D = *it;
783 // FIXME: Currently ObjC method declarations are incorrectly being
784 // reported as top-level declarations, even though their DeclContext
785 // is the containing ObjC @interface/@implementation. This is a
786 // fundamental problem in the parser right now.
787 if (isa<ObjCMethodDecl>(D))
788 continue;
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000789 AddTopLevelDeclarationToHash(D, Hash);
Douglas Gregore9db88f2010-08-03 19:06:41 +0000790 TopLevelDecls.push_back(D);
791 }
792 }
793
794 virtual void HandleTranslationUnit(ASTContext &Ctx) {
795 PCHGenerator::HandleTranslationUnit(Ctx);
796 if (!Unit.getDiagnostics().hasErrorOccurred()) {
797 // Translate the top-level declarations we captured during
798 // parsing into declaration IDs in the precompiled
799 // preamble. This will allow us to deserialize those top-level
800 // declarations when requested.
801 for (unsigned I = 0, N = TopLevelDecls.size(); I != N; ++I)
802 Unit.addTopLevelDeclFromPreamble(
803 getWriter().getDeclID(TopLevelDecls[I]));
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000804 }
805 }
Douglas Gregorf88e35b2010-11-30 06:16:57 +0000806
807 virtual void SerializedPreprocessedEntity(PreprocessedEntity *Entity,
808 uint64_t Offset) {
809 Unit.addPreprocessedEntityFromPreamble(Offset);
810 }
811
812 virtual ASTSerializationListener *GetASTSerializationListener() {
813 return this;
814 }
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000815};
816
817class PrecompilePreambleAction : public ASTFrontendAction {
818 ASTUnit &Unit;
819
820public:
821 explicit PrecompilePreambleAction(ASTUnit &Unit) : Unit(Unit) {}
822
823 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
824 llvm::StringRef InFile) {
825 std::string Sysroot;
Argyrios Kyrtzidis10b23682011-02-15 17:54:22 +0000826 std::string OutputFile;
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000827 llvm::raw_ostream *OS = 0;
828 bool Chaining;
Argyrios Kyrtzidis10b23682011-02-15 17:54:22 +0000829 if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot,
830 OutputFile,
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000831 OS, Chaining))
832 return 0;
833
834 const char *isysroot = CI.getFrontendOpts().RelocatablePCH ?
835 Sysroot.c_str() : 0;
Douglas Gregordf7a79a2011-02-16 18:16:54 +0000836 CI.getPreprocessor().addPPCallbacks(
837 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000838 return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Chaining,
839 isysroot, OS);
840 }
841
842 virtual bool hasCodeCompletionSupport() const { return false; }
843 virtual bool hasASTFileSupport() const { return false; }
Douglas Gregor028d3e42010-08-09 20:45:32 +0000844 virtual bool usesCompleteTranslationUnit() { return false; }
Douglas Gregor48c8cd32010-08-03 08:14:03 +0000845};
846
Daniel Dunbar764c0822009-12-01 09:51:01 +0000847}
848
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000849/// Parse the source file into a translation unit using the given compiler
850/// invocation, replacing the current translation unit.
851///
852/// \returns True if a failure occurred that causes the ASTUnit not to
853/// contain any translation-unit information, false otherwise.
Douglas Gregor6481ef12010-07-24 00:38:13 +0000854bool ASTUnit::Parse(llvm::MemoryBuffer *OverrideMainBuffer) {
Douglas Gregor96c04262010-07-27 14:52:07 +0000855 delete SavedMainFileBuffer;
856 SavedMainFileBuffer = 0;
857
Ted Kremenek5e14d392011-03-21 18:40:17 +0000858 if (!Invocation) {
Douglas Gregora0734c52010-08-19 01:33:06 +0000859 delete OverrideMainBuffer;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000860 return true;
Douglas Gregora0734c52010-08-19 01:33:06 +0000861 }
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000862
Daniel Dunbar764c0822009-12-01 09:51:01 +0000863 // Create the compiler instance to use for building the AST.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000864 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
865
866 // Recover resources if we crash before exiting this method.
Ted Kremenek022a4902011-03-22 01:15:24 +0000867 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
868 CICleanup(Clang.get());
Ted Kremenek84de4a12011-03-21 18:40:07 +0000869
Ted Kremenek5e14d392011-03-21 18:40:17 +0000870 Clang->setInvocation(&*Invocation);
Ted Kremenek84de4a12011-03-21 18:40:07 +0000871 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000872
Douglas Gregor8e984da2010-08-04 16:47:14 +0000873 // Set up diagnostics, capturing any diagnostics that would
874 // otherwise be dropped.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000875 Clang->setDiagnostics(&getDiagnostics());
Douglas Gregord03e8232010-04-05 21:10:19 +0000876
Daniel Dunbar764c0822009-12-01 09:51:01 +0000877 // Create the target instance.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000878 Clang->getTargetOpts().Features = TargetFeatures;
879 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
Ted Kremenek5e14d392011-03-21 18:40:17 +0000880 Clang->getTargetOpts()));
Ted Kremenek84de4a12011-03-21 18:40:07 +0000881 if (!Clang->hasTarget()) {
Douglas Gregora0734c52010-08-19 01:33:06 +0000882 delete OverrideMainBuffer;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000883 return true;
Douglas Gregora0734c52010-08-19 01:33:06 +0000884 }
885
Daniel Dunbar764c0822009-12-01 09:51:01 +0000886 // Inform the target of the language options.
887 //
888 // FIXME: We shouldn't need to do this, the target should be immutable once
889 // created. This complexity should be lifted elsewhere.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000890 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000891
Ted Kremenek84de4a12011-03-21 18:40:07 +0000892 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Daniel Dunbar764c0822009-12-01 09:51:01 +0000893 "Invocation must have exactly one source file!");
Ted Kremenek84de4a12011-03-21 18:40:07 +0000894 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Daniel Dunbar764c0822009-12-01 09:51:01 +0000895 "FIXME: AST inputs not yet supported here!");
Ted Kremenek84de4a12011-03-21 18:40:07 +0000896 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Daniel Dunbar9507f9c2010-06-07 23:26:47 +0000897 "IR inputs not support here!");
Daniel Dunbar764c0822009-12-01 09:51:01 +0000898
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000899 // Configure the various subsystems.
900 // FIXME: Should we retain the previous file manager?
Ted Kremenek84de4a12011-03-21 18:40:07 +0000901 FileSystemOpts = Clang->getFileSystemOpts();
Ted Kremenek5e14d392011-03-21 18:40:17 +0000902 FileMgr = new FileManager(FileSystemOpts);
903 SourceMgr = new SourceManager(getDiagnostics(), *FileMgr);
Douglas Gregor6fd55e02010-08-13 03:15:25 +0000904 TheSema.reset();
Ted Kremenek5e14d392011-03-21 18:40:17 +0000905 Ctx = 0;
906 PP = 0;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000907
908 // Clear out old caches and data.
909 TopLevelDecls.clear();
Douglas Gregorf88e35b2010-11-30 06:16:57 +0000910 PreprocessedEntities.clear();
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000911 CleanTemporaryFiles();
912 PreprocessedEntitiesByFile.clear();
Douglas Gregord9a30af2010-08-02 20:51:39 +0000913
Douglas Gregor7b02b582010-08-20 00:02:33 +0000914 if (!OverrideMainBuffer) {
Douglas Gregor7bb8af62010-10-12 00:50:20 +0000915 StoredDiagnostics.erase(
916 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
917 StoredDiagnostics.end());
Douglas Gregor7b02b582010-08-20 00:02:33 +0000918 TopLevelDeclsInPreamble.clear();
Douglas Gregorf88e35b2010-11-30 06:16:57 +0000919 PreprocessedEntitiesInPreamble.clear();
Douglas Gregor7b02b582010-08-20 00:02:33 +0000920 }
921
Daniel Dunbar764c0822009-12-01 09:51:01 +0000922 // Create a file manager object to provide access to and cache the filesystem.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000923 Clang->setFileManager(&getFileManager());
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000924
Daniel Dunbar764c0822009-12-01 09:51:01 +0000925 // Create the source manager.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000926 Clang->setSourceManager(&getSourceManager());
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000927
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000928 // If the main file has been overridden due to the use of a preamble,
929 // make that override happen and introduce the preamble.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000930 PreprocessorOptions &PreprocessorOpts = Clang->getPreprocessorOpts();
Douglas Gregor998caea2011-05-06 16:33:08 +0000931 PreprocessorOpts.DetailedRecordIncludesNestedMacroInstantiations
932 = NestedMacroInstantiations;
Douglas Gregor8e984da2010-08-04 16:47:14 +0000933 std::string PriorImplicitPCHInclude;
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000934 if (OverrideMainBuffer) {
935 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
936 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
937 PreprocessorOpts.PrecompiledPreambleBytes.second
938 = PreambleEndsAtStartOfLine;
Douglas Gregor8e984da2010-08-04 16:47:14 +0000939 PriorImplicitPCHInclude = PreprocessorOpts.ImplicitPCHInclude;
Douglas Gregor15ba0b32010-07-30 20:58:08 +0000940 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
Douglas Gregorce3a8292010-07-27 00:27:13 +0000941 PreprocessorOpts.DisablePCHValidation = true;
Douglas Gregor96c04262010-07-27 14:52:07 +0000942
Douglas Gregord9a30af2010-08-02 20:51:39 +0000943 // The stored diagnostic has the old source manager in it; update
944 // the locations to refer into the new source manager. Since we've
945 // been careful to make sure that the source manager's state
946 // before and after are identical, so that we can reuse the source
947 // location itself.
Douglas Gregor7bb8af62010-10-12 00:50:20 +0000948 for (unsigned I = NumStoredDiagnosticsFromDriver,
949 N = StoredDiagnostics.size();
950 I < N; ++I) {
Douglas Gregord9a30af2010-08-02 20:51:39 +0000951 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(),
952 getSourceManager());
953 StoredDiagnostics[I].setLocation(Loc);
954 }
Douglas Gregor7bb8af62010-10-12 00:50:20 +0000955
956 // Keep track of the override buffer;
957 SavedMainFileBuffer = OverrideMainBuffer;
Douglas Gregor7b02b582010-08-20 00:02:33 +0000958 } else {
959 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
960 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000961 }
962
Ted Kremenek022a4902011-03-22 01:15:24 +0000963 llvm::OwningPtr<TopLevelDeclTrackerAction> Act(
964 new TopLevelDeclTrackerAction(*this));
965
966 // Recover resources if we crash before exiting this method.
967 llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
968 ActCleanup(Act.get());
969
Ted Kremenek84de4a12011-03-21 18:40:07 +0000970 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
971 Clang->getFrontendOpts().Inputs[0].first))
Daniel Dunbar764c0822009-12-01 09:51:01 +0000972 goto error;
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000973
Daniel Dunbar644dca02009-12-04 08:17:33 +0000974 Act->Execute();
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000975
Ted Kremenek5e14d392011-03-21 18:40:17 +0000976 // Steal the created target, context, and preprocessor.
Ted Kremenek84de4a12011-03-21 18:40:07 +0000977 TheSema.reset(Clang->takeSema());
978 Consumer.reset(Clang->takeASTConsumer());
Ted Kremenek5e14d392011-03-21 18:40:17 +0000979 Ctx = &Clang->getASTContext();
980 PP = &Clang->getPreprocessor();
981 Clang->setSourceManager(0);
982 Clang->setFileManager(0);
983 Target = &Clang->getTarget();
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000984
Daniel Dunbar644dca02009-12-04 08:17:33 +0000985 Act->EndSourceFile();
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000986
987 // Remove the overridden buffer we used for the preamble.
Douglas Gregor8e984da2010-08-04 16:47:14 +0000988 if (OverrideMainBuffer) {
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000989 PreprocessorOpts.eraseRemappedFile(
990 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor8e984da2010-08-04 16:47:14 +0000991 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
992 }
993
Douglas Gregoraa21cc42010-07-19 21:46:24 +0000994 return false;
Ted Kremenek5e14d392011-03-21 18:40:17 +0000995
Daniel Dunbar764c0822009-12-01 09:51:01 +0000996error:
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000997 // Remove the overridden buffer we used for the preamble.
Douglas Gregorce3a8292010-07-27 00:27:13 +0000998 if (OverrideMainBuffer) {
Douglas Gregor3f4bea02010-07-26 21:36:20 +0000999 PreprocessorOpts.eraseRemappedFile(
1000 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor8e984da2010-08-04 16:47:14 +00001001 PreprocessorOpts.ImplicitPCHInclude = PriorImplicitPCHInclude;
Douglas Gregora0734c52010-08-19 01:33:06 +00001002 delete OverrideMainBuffer;
Douglas Gregora3d3ba12010-10-06 21:11:08 +00001003 SavedMainFileBuffer = 0;
Douglas Gregorce3a8292010-07-27 00:27:13 +00001004 }
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001005
Douglas Gregorefc46952010-10-12 16:25:54 +00001006 StoredDiagnostics.clear();
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001007 return true;
1008}
1009
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001010/// \brief Simple function to retrieve a path for a preamble precompiled header.
1011static std::string GetPreamblePCHPath() {
1012 // FIXME: This is lame; sys::Path should provide this function (in particular,
1013 // it should know how to find the temporary files dir).
1014 // FIXME: This is really lame. I copied this code from the Driver!
Douglas Gregor250ab1d2010-09-11 18:05:19 +00001015 // FIXME: This is a hack so that we can override the preamble file during
1016 // crash-recovery testing, which is the only case where the preamble files
1017 // are not necessarily cleaned up.
1018 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE");
1019 if (TmpFile)
1020 return TmpFile;
1021
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001022 std::string Error;
1023 const char *TmpDir = ::getenv("TMPDIR");
1024 if (!TmpDir)
1025 TmpDir = ::getenv("TEMP");
1026 if (!TmpDir)
1027 TmpDir = ::getenv("TMP");
Douglas Gregorce3449f2010-09-11 17:51:16 +00001028#ifdef LLVM_ON_WIN32
1029 if (!TmpDir)
1030 TmpDir = ::getenv("USERPROFILE");
1031#endif
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001032 if (!TmpDir)
1033 TmpDir = "/tmp";
1034 llvm::sys::Path P(TmpDir);
Douglas Gregorce3449f2010-09-11 17:51:16 +00001035 P.createDirectoryOnDisk(true);
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001036 P.appendComponent("preamble");
Douglas Gregor20975b22010-08-11 13:06:56 +00001037 P.appendSuffix("pch");
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001038 if (P.createTemporaryFileOnDisk())
1039 return std::string();
1040
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001041 return P.str();
1042}
1043
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001044/// \brief Compute the preamble for the main file, providing the source buffer
1045/// that corresponds to the main file along with a pair (bytes, start-of-line)
1046/// that describes the preamble.
1047std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
Douglas Gregor028d3e42010-08-09 20:45:32 +00001048ASTUnit::ComputePreamble(CompilerInvocation &Invocation,
1049 unsigned MaxLines, bool &CreatedBuffer) {
Douglas Gregor4dde7492010-07-23 23:58:40 +00001050 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
Chris Lattner5159f612010-11-23 08:35:12 +00001051 PreprocessorOptions &PreprocessorOpts = Invocation.getPreprocessorOpts();
Douglas Gregor4dde7492010-07-23 23:58:40 +00001052 CreatedBuffer = false;
1053
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001054 // Try to determine if the main file has been remapped, either from the
1055 // command line (to another file) or directly through the compiler invocation
1056 // (to a memory buffer).
Douglas Gregor4dde7492010-07-23 23:58:40 +00001057 llvm::MemoryBuffer *Buffer = 0;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001058 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
1059 if (const llvm::sys::FileStatus *MainFileStatus = MainFilePath.getFileStatus()) {
1060 // Check whether there is a file-file remapping of the main file
1061 for (PreprocessorOptions::remapped_file_iterator
Douglas Gregor4dde7492010-07-23 23:58:40 +00001062 M = PreprocessorOpts.remapped_file_begin(),
1063 E = PreprocessorOpts.remapped_file_end();
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001064 M != E;
1065 ++M) {
1066 llvm::sys::PathWithStatus MPath(M->first);
1067 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
1068 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
1069 // We found a remapping. Try to load the resulting, remapped source.
Douglas Gregor4dde7492010-07-23 23:58:40 +00001070 if (CreatedBuffer) {
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001071 delete Buffer;
Douglas Gregor4dde7492010-07-23 23:58:40 +00001072 CreatedBuffer = false;
1073 }
1074
Argyrios Kyrtzidis71731d62010-11-03 22:45:23 +00001075 Buffer = getBufferForFile(M->second);
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001076 if (!Buffer)
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001077 return std::make_pair((llvm::MemoryBuffer*)0,
1078 std::make_pair(0, true));
Douglas Gregor4dde7492010-07-23 23:58:40 +00001079 CreatedBuffer = true;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001080 }
1081 }
1082 }
1083
1084 // Check whether there is a file-buffer remapping. It supercedes the
1085 // file-file remapping.
1086 for (PreprocessorOptions::remapped_file_buffer_iterator
1087 M = PreprocessorOpts.remapped_file_buffer_begin(),
1088 E = PreprocessorOpts.remapped_file_buffer_end();
1089 M != E;
1090 ++M) {
1091 llvm::sys::PathWithStatus MPath(M->first);
1092 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
1093 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
1094 // We found a remapping.
Douglas Gregor4dde7492010-07-23 23:58:40 +00001095 if (CreatedBuffer) {
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001096 delete Buffer;
Douglas Gregor4dde7492010-07-23 23:58:40 +00001097 CreatedBuffer = false;
1098 }
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001099
Douglas Gregor4dde7492010-07-23 23:58:40 +00001100 Buffer = const_cast<llvm::MemoryBuffer *>(M->second);
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001101 }
1102 }
Douglas Gregor4dde7492010-07-23 23:58:40 +00001103 }
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001104 }
1105
1106 // If the main source file was not remapped, load it now.
1107 if (!Buffer) {
Argyrios Kyrtzidis71731d62010-11-03 22:45:23 +00001108 Buffer = getBufferForFile(FrontendOpts.Inputs[0].second);
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001109 if (!Buffer)
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001110 return std::make_pair((llvm::MemoryBuffer*)0, std::make_pair(0, true));
Douglas Gregor4dde7492010-07-23 23:58:40 +00001111
1112 CreatedBuffer = true;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001113 }
1114
Douglas Gregor028d3e42010-08-09 20:45:32 +00001115 return std::make_pair(Buffer, Lexer::ComputePreamble(Buffer, MaxLines));
Douglas Gregor4dde7492010-07-23 23:58:40 +00001116}
1117
Douglas Gregor6481ef12010-07-24 00:38:13 +00001118static llvm::MemoryBuffer *CreatePaddedMainFileBuffer(llvm::MemoryBuffer *Old,
Douglas Gregor6481ef12010-07-24 00:38:13 +00001119 unsigned NewSize,
1120 llvm::StringRef NewName) {
1121 llvm::MemoryBuffer *Result
1122 = llvm::MemoryBuffer::getNewUninitMemBuffer(NewSize, NewName);
1123 memcpy(const_cast<char*>(Result->getBufferStart()),
1124 Old->getBufferStart(), Old->getBufferSize());
1125 memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(),
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001126 ' ', NewSize - Old->getBufferSize() - 1);
1127 const_cast<char*>(Result->getBufferEnd())[-1] = '\n';
Douglas Gregor6481ef12010-07-24 00:38:13 +00001128
Douglas Gregor6481ef12010-07-24 00:38:13 +00001129 return Result;
1130}
1131
Douglas Gregor4dde7492010-07-23 23:58:40 +00001132/// \brief Attempt to build or re-use a precompiled preamble when (re-)parsing
1133/// the source file.
1134///
1135/// This routine will compute the preamble of the main source file. If a
1136/// non-trivial preamble is found, it will precompile that preamble into a
1137/// precompiled header so that the precompiled preamble can be used to reduce
1138/// reparsing time. If a precompiled preamble has already been constructed,
1139/// this routine will determine if it is still valid and, if so, avoid
1140/// rebuilding the precompiled preamble.
1141///
Douglas Gregor028d3e42010-08-09 20:45:32 +00001142/// \param AllowRebuild When true (the default), this routine is
1143/// allowed to rebuild the precompiled preamble if it is found to be
1144/// out-of-date.
1145///
1146/// \param MaxLines When non-zero, the maximum number of lines that
1147/// can occur within the preamble.
1148///
Douglas Gregor6481ef12010-07-24 00:38:13 +00001149/// \returns If the precompiled preamble can be used, returns a newly-allocated
1150/// buffer that should be used in place of the main file when doing so.
1151/// Otherwise, returns a NULL pointer.
Douglas Gregor028d3e42010-08-09 20:45:32 +00001152llvm::MemoryBuffer *ASTUnit::getMainBufferWithPrecompiledPreamble(
Douglas Gregor3cc15812011-07-01 18:22:13 +00001153 const CompilerInvocation &PreambleInvocationIn,
Douglas Gregor028d3e42010-08-09 20:45:32 +00001154 bool AllowRebuild,
1155 unsigned MaxLines) {
Douglas Gregor3cc15812011-07-01 18:22:13 +00001156
1157 llvm::IntrusiveRefCntPtr<CompilerInvocation>
1158 PreambleInvocation(new CompilerInvocation(PreambleInvocationIn));
1159 FrontendOptions &FrontendOpts = PreambleInvocation->getFrontendOpts();
Douglas Gregor4dde7492010-07-23 23:58:40 +00001160 PreprocessorOptions &PreprocessorOpts
Douglas Gregor3cc15812011-07-01 18:22:13 +00001161 = PreambleInvocation->getPreprocessorOpts();
Douglas Gregor4dde7492010-07-23 23:58:40 +00001162
1163 bool CreatedPreambleBuffer = false;
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001164 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > NewPreamble
Douglas Gregor3cc15812011-07-01 18:22:13 +00001165 = ComputePreamble(*PreambleInvocation, MaxLines, CreatedPreambleBuffer);
Douglas Gregor4dde7492010-07-23 23:58:40 +00001166
Douglas Gregor3edb1672010-11-16 20:45:51 +00001167 // If ComputePreamble() Take ownership of the
1168 llvm::OwningPtr<llvm::MemoryBuffer> OwnedPreambleBuffer;
1169 if (CreatedPreambleBuffer)
1170 OwnedPreambleBuffer.reset(NewPreamble.first);
1171
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001172 if (!NewPreamble.second.first) {
Douglas Gregor4dde7492010-07-23 23:58:40 +00001173 // We couldn't find a preamble in the main source. Clear out the current
1174 // preamble, if we have one. It's obviously no good any more.
1175 Preamble.clear();
1176 if (!PreambleFile.empty()) {
Douglas Gregor15ba0b32010-07-30 20:58:08 +00001177 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregor4dde7492010-07-23 23:58:40 +00001178 PreambleFile.clear();
1179 }
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001180
1181 // The next time we actually see a preamble, precompile it.
1182 PreambleRebuildCounter = 1;
Douglas Gregor6481ef12010-07-24 00:38:13 +00001183 return 0;
Douglas Gregor4dde7492010-07-23 23:58:40 +00001184 }
1185
1186 if (!Preamble.empty()) {
1187 // We've previously computed a preamble. Check whether we have the same
1188 // preamble now that we did before, and that there's enough space in
1189 // the main-file buffer within the precompiled preamble to fit the
1190 // new main file.
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001191 if (Preamble.size() == NewPreamble.second.first &&
1192 PreambleEndsAtStartOfLine == NewPreamble.second.second &&
Douglas Gregorf5275a82010-07-24 00:42:07 +00001193 NewPreamble.first->getBufferSize() < PreambleReservedSize-2 &&
Douglas Gregor4dde7492010-07-23 23:58:40 +00001194 memcmp(&Preamble[0], NewPreamble.first->getBufferStart(),
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001195 NewPreamble.second.first) == 0) {
Douglas Gregor4dde7492010-07-23 23:58:40 +00001196 // The preamble has not changed. We may be able to re-use the precompiled
1197 // preamble.
Douglas Gregord9a30af2010-08-02 20:51:39 +00001198
Douglas Gregor0e119552010-07-31 00:40:00 +00001199 // Check that none of the files used by the preamble have changed.
1200 bool AnyFileChanged = false;
1201
1202 // First, make a record of those files that have been overridden via
1203 // remapping or unsaved_files.
1204 llvm::StringMap<std::pair<off_t, time_t> > OverriddenFiles;
1205 for (PreprocessorOptions::remapped_file_iterator
1206 R = PreprocessorOpts.remapped_file_begin(),
1207 REnd = PreprocessorOpts.remapped_file_end();
1208 !AnyFileChanged && R != REnd;
1209 ++R) {
1210 struct stat StatBuf;
Anders Carlsson9583f792011-03-18 19:23:38 +00001211 if (FileMgr->getNoncachedStatValue(R->second, StatBuf)) {
Douglas Gregor0e119552010-07-31 00:40:00 +00001212 // If we can't stat the file we're remapping to, assume that something
1213 // horrible happened.
1214 AnyFileChanged = true;
1215 break;
1216 }
Douglas Gregor6481ef12010-07-24 00:38:13 +00001217
Douglas Gregor0e119552010-07-31 00:40:00 +00001218 OverriddenFiles[R->first] = std::make_pair(StatBuf.st_size,
1219 StatBuf.st_mtime);
1220 }
1221 for (PreprocessorOptions::remapped_file_buffer_iterator
1222 R = PreprocessorOpts.remapped_file_buffer_begin(),
1223 REnd = PreprocessorOpts.remapped_file_buffer_end();
1224 !AnyFileChanged && R != REnd;
1225 ++R) {
1226 // FIXME: Should we actually compare the contents of file->buffer
1227 // remappings?
1228 OverriddenFiles[R->first] = std::make_pair(R->second->getBufferSize(),
1229 0);
1230 }
1231
1232 // Check whether anything has changed.
1233 for (llvm::StringMap<std::pair<off_t, time_t> >::iterator
1234 F = FilesInPreamble.begin(), FEnd = FilesInPreamble.end();
1235 !AnyFileChanged && F != FEnd;
1236 ++F) {
1237 llvm::StringMap<std::pair<off_t, time_t> >::iterator Overridden
1238 = OverriddenFiles.find(F->first());
1239 if (Overridden != OverriddenFiles.end()) {
1240 // This file was remapped; check whether the newly-mapped file
1241 // matches up with the previous mapping.
1242 if (Overridden->second != F->second)
1243 AnyFileChanged = true;
1244 continue;
1245 }
1246
1247 // The file was not remapped; check whether it has changed on disk.
1248 struct stat StatBuf;
Anders Carlsson9583f792011-03-18 19:23:38 +00001249 if (FileMgr->getNoncachedStatValue(F->first(), StatBuf)) {
Douglas Gregor0e119552010-07-31 00:40:00 +00001250 // If we can't stat the file, assume that something horrible happened.
1251 AnyFileChanged = true;
1252 } else if (StatBuf.st_size != F->second.first ||
1253 StatBuf.st_mtime != F->second.second)
1254 AnyFileChanged = true;
1255 }
1256
1257 if (!AnyFileChanged) {
Douglas Gregord9a30af2010-08-02 20:51:39 +00001258 // Okay! We can re-use the precompiled preamble.
1259
1260 // Set the state of the diagnostic object to mimic its state
1261 // after parsing the preamble.
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00001262 // FIXME: This won't catch any #pragma push warning changes that
1263 // have occurred in the preamble.
Douglas Gregord9a30af2010-08-02 20:51:39 +00001264 getDiagnostics().Reset();
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00001265 ProcessWarningOptions(getDiagnostics(),
Douglas Gregor3cc15812011-07-01 18:22:13 +00001266 PreambleInvocation->getDiagnosticOpts());
Douglas Gregord9a30af2010-08-02 20:51:39 +00001267 getDiagnostics().setNumWarnings(NumWarningsInPreamble);
1268 if (StoredDiagnostics.size() > NumStoredDiagnosticsInPreamble)
1269 StoredDiagnostics.erase(
1270 StoredDiagnostics.begin() + NumStoredDiagnosticsInPreamble,
1271 StoredDiagnostics.end());
1272
1273 // Create a version of the main file buffer that is padded to
1274 // buffer size we reserved when creating the preamble.
Douglas Gregor0e119552010-07-31 00:40:00 +00001275 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregor0e119552010-07-31 00:40:00 +00001276 PreambleReservedSize,
1277 FrontendOpts.Inputs[0].second);
1278 }
Douglas Gregor4dde7492010-07-23 23:58:40 +00001279 }
Douglas Gregor028d3e42010-08-09 20:45:32 +00001280
1281 // If we aren't allowed to rebuild the precompiled preamble, just
1282 // return now.
1283 if (!AllowRebuild)
1284 return 0;
Douglas Gregorbb6a8812010-10-08 04:03:57 +00001285
Douglas Gregor4dde7492010-07-23 23:58:40 +00001286 // We can't reuse the previously-computed preamble. Build a new one.
1287 Preamble.clear();
Douglas Gregor15ba0b32010-07-30 20:58:08 +00001288 llvm::sys::Path(PreambleFile).eraseFromDisk();
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001289 PreambleRebuildCounter = 1;
Douglas Gregor028d3e42010-08-09 20:45:32 +00001290 } else if (!AllowRebuild) {
1291 // We aren't allowed to rebuild the precompiled preamble; just
1292 // return now.
1293 return 0;
1294 }
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001295
1296 // If the preamble rebuild counter > 1, it's because we previously
1297 // failed to build a preamble and we're not yet ready to try
1298 // again. Decrement the counter and return a failure.
1299 if (PreambleRebuildCounter > 1) {
1300 --PreambleRebuildCounter;
1301 return 0;
1302 }
1303
Douglas Gregore10f0e52010-09-11 17:56:52 +00001304 // Create a temporary file for the precompiled preamble. In rare
1305 // circumstances, this can fail.
1306 std::string PreamblePCHPath = GetPreamblePCHPath();
1307 if (PreamblePCHPath.empty()) {
1308 // Try again next time.
1309 PreambleRebuildCounter = 1;
1310 return 0;
1311 }
1312
Douglas Gregor4dde7492010-07-23 23:58:40 +00001313 // We did not previously compute a preamble, or it can't be reused anyway.
Douglas Gregor16896c42010-10-28 15:44:59 +00001314 SimpleTimer PreambleTimer(WantTiming);
Benjamin Kramerf2e5a912010-11-09 20:00:56 +00001315 PreambleTimer.setOutput("Precompiling preamble");
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001316
1317 // Create a new buffer that stores the preamble. The buffer also contains
1318 // extra space for the original contents of the file (which will be present
1319 // when we actually parse the file) along with more room in case the file
Douglas Gregor4dde7492010-07-23 23:58:40 +00001320 // grows.
1321 PreambleReservedSize = NewPreamble.first->getBufferSize();
1322 if (PreambleReservedSize < 4096)
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001323 PreambleReservedSize = 8191;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001324 else
Douglas Gregor4dde7492010-07-23 23:58:40 +00001325 PreambleReservedSize *= 2;
1326
Douglas Gregord9a30af2010-08-02 20:51:39 +00001327 // Save the preamble text for later; we'll need to compare against it for
1328 // subsequent reparses.
1329 Preamble.assign(NewPreamble.first->getBufferStart(),
1330 NewPreamble.first->getBufferStart()
1331 + NewPreamble.second.first);
1332 PreambleEndsAtStartOfLine = NewPreamble.second.second;
1333
Douglas Gregora0734c52010-08-19 01:33:06 +00001334 delete PreambleBuffer;
1335 PreambleBuffer
Douglas Gregor4dde7492010-07-23 23:58:40 +00001336 = llvm::MemoryBuffer::getNewUninitMemBuffer(PreambleReservedSize,
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001337 FrontendOpts.Inputs[0].second);
1338 memcpy(const_cast<char*>(PreambleBuffer->getBufferStart()),
Douglas Gregor4dde7492010-07-23 23:58:40 +00001339 NewPreamble.first->getBufferStart(), Preamble.size());
1340 memset(const_cast<char*>(PreambleBuffer->getBufferStart()) + Preamble.size(),
Douglas Gregor3f4bea02010-07-26 21:36:20 +00001341 ' ', PreambleReservedSize - Preamble.size() - 1);
1342 const_cast<char*>(PreambleBuffer->getBufferEnd())[-1] = '\n';
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001343
1344 // Remap the main source file to the preamble buffer.
Douglas Gregor4dde7492010-07-23 23:58:40 +00001345 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001346 PreprocessorOpts.addRemappedFile(MainFilePath.str(), PreambleBuffer);
1347
1348 // Tell the compiler invocation to generate a temporary precompiled header.
1349 FrontendOpts.ProgramAction = frontend::GeneratePCH;
Douglas Gregor9e136b52010-10-01 01:05:22 +00001350 FrontendOpts.ChainedPCH = true;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001351 // FIXME: Generate the precompiled header into memory?
Douglas Gregore10f0e52010-09-11 17:56:52 +00001352 FrontendOpts.OutputFile = PreamblePCHPath;
Douglas Gregorbb6a8812010-10-08 04:03:57 +00001353 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
1354 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001355
1356 // Create the compiler instance to use for building the precompiled preamble.
Ted Kremenek84de4a12011-03-21 18:40:07 +00001357 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1358
1359 // Recover resources if we crash before exiting this method.
Ted Kremenek022a4902011-03-22 01:15:24 +00001360 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1361 CICleanup(Clang.get());
Ted Kremenek84de4a12011-03-21 18:40:07 +00001362
Douglas Gregor3cc15812011-07-01 18:22:13 +00001363 Clang->setInvocation(&*PreambleInvocation);
Ted Kremenek84de4a12011-03-21 18:40:07 +00001364 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001365
Douglas Gregor8e984da2010-08-04 16:47:14 +00001366 // Set up diagnostics, capturing all of the diagnostics produced.
Ted Kremenek84de4a12011-03-21 18:40:07 +00001367 Clang->setDiagnostics(&getDiagnostics());
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001368
1369 // Create the target instance.
Ted Kremenek84de4a12011-03-21 18:40:07 +00001370 Clang->getTargetOpts().Features = TargetFeatures;
1371 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
1372 Clang->getTargetOpts()));
1373 if (!Clang->hasTarget()) {
Douglas Gregor4dde7492010-07-23 23:58:40 +00001374 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1375 Preamble.clear();
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001376 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregora0734c52010-08-19 01:33:06 +00001377 PreprocessorOpts.eraseRemappedFile(
1378 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor6481ef12010-07-24 00:38:13 +00001379 return 0;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001380 }
1381
1382 // Inform the target of the language options.
1383 //
1384 // FIXME: We shouldn't need to do this, the target should be immutable once
1385 // created. This complexity should be lifted elsewhere.
Ted Kremenek84de4a12011-03-21 18:40:07 +00001386 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001387
Ted Kremenek84de4a12011-03-21 18:40:07 +00001388 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001389 "Invocation must have exactly one source file!");
Ted Kremenek84de4a12011-03-21 18:40:07 +00001390 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001391 "FIXME: AST inputs not yet supported here!");
Ted Kremenek84de4a12011-03-21 18:40:07 +00001392 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001393 "IR inputs not support here!");
1394
1395 // Clear out old caches and data.
Douglas Gregorbb6a8812010-10-08 04:03:57 +00001396 getDiagnostics().Reset();
Ted Kremenek84de4a12011-03-21 18:40:07 +00001397 ProcessWarningOptions(getDiagnostics(), Clang->getDiagnosticOpts());
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001398 StoredDiagnostics.erase(
1399 StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver,
1400 StoredDiagnostics.end());
Douglas Gregore9db88f2010-08-03 19:06:41 +00001401 TopLevelDecls.clear();
1402 TopLevelDeclsInPreamble.clear();
Douglas Gregorf88e35b2010-11-30 06:16:57 +00001403 PreprocessedEntities.clear();
1404 PreprocessedEntitiesInPreamble.clear();
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001405
1406 // Create a file manager object to provide access to and cache the filesystem.
Ted Kremenek84de4a12011-03-21 18:40:07 +00001407 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts()));
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001408
1409 // Create the source manager.
Ted Kremenek84de4a12011-03-21 18:40:07 +00001410 Clang->setSourceManager(new SourceManager(getDiagnostics(),
Ted Kremenek5e14d392011-03-21 18:40:17 +00001411 Clang->getFileManager()));
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001412
Douglas Gregor48c8cd32010-08-03 08:14:03 +00001413 llvm::OwningPtr<PrecompilePreambleAction> Act;
1414 Act.reset(new PrecompilePreambleAction(*this));
Ted Kremenek84de4a12011-03-21 18:40:07 +00001415 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
1416 Clang->getFrontendOpts().Inputs[0].first)) {
Douglas Gregor4dde7492010-07-23 23:58:40 +00001417 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1418 Preamble.clear();
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001419 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregora0734c52010-08-19 01:33:06 +00001420 PreprocessorOpts.eraseRemappedFile(
1421 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor6481ef12010-07-24 00:38:13 +00001422 return 0;
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001423 }
1424
1425 Act->Execute();
1426 Act->EndSourceFile();
Ted Kremenek5e14d392011-03-21 18:40:17 +00001427
Douglas Gregore9db88f2010-08-03 19:06:41 +00001428 if (Diagnostics->hasErrorOccurred()) {
Douglas Gregor4dde7492010-07-23 23:58:40 +00001429 // There were errors parsing the preamble, so no precompiled header was
1430 // generated. Forget that we even tried.
Douglas Gregora6f74e22010-09-27 16:43:25 +00001431 // FIXME: Should we leave a note for ourselves to try again?
Douglas Gregor4dde7492010-07-23 23:58:40 +00001432 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1433 Preamble.clear();
Douglas Gregore9db88f2010-08-03 19:06:41 +00001434 TopLevelDeclsInPreamble.clear();
Douglas Gregorf88e35b2010-11-30 06:16:57 +00001435 PreprocessedEntities.clear();
1436 PreprocessedEntitiesInPreamble.clear();
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001437 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregora0734c52010-08-19 01:33:06 +00001438 PreprocessorOpts.eraseRemappedFile(
1439 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor6481ef12010-07-24 00:38:13 +00001440 return 0;
Douglas Gregor4dde7492010-07-23 23:58:40 +00001441 }
1442
1443 // Keep track of the preamble we precompiled.
1444 PreambleFile = FrontendOpts.OutputFile;
Douglas Gregord9a30af2010-08-02 20:51:39 +00001445 NumStoredDiagnosticsInPreamble = StoredDiagnostics.size();
1446 NumWarningsInPreamble = getDiagnostics().getNumWarnings();
Douglas Gregor0e119552010-07-31 00:40:00 +00001447
1448 // Keep track of all of the files that the source manager knows about,
1449 // so we can verify whether they have changed or not.
1450 FilesInPreamble.clear();
Ted Kremenek84de4a12011-03-21 18:40:07 +00001451 SourceManager &SourceMgr = Clang->getSourceManager();
Douglas Gregor0e119552010-07-31 00:40:00 +00001452 const llvm::MemoryBuffer *MainFileBuffer
1453 = SourceMgr.getBuffer(SourceMgr.getMainFileID());
1454 for (SourceManager::fileinfo_iterator F = SourceMgr.fileinfo_begin(),
1455 FEnd = SourceMgr.fileinfo_end();
1456 F != FEnd;
1457 ++F) {
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +00001458 const FileEntry *File = F->second->OrigEntry;
Douglas Gregor0e119552010-07-31 00:40:00 +00001459 if (!File || F->second->getRawBuffer() == MainFileBuffer)
1460 continue;
1461
1462 FilesInPreamble[File->getName()]
1463 = std::make_pair(F->second->getSize(), File->getModificationTime());
1464 }
1465
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001466 PreambleRebuildCounter = 1;
Douglas Gregora0734c52010-08-19 01:33:06 +00001467 PreprocessorOpts.eraseRemappedFile(
1468 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregordf7a79a2011-02-16 18:16:54 +00001469
1470 // If the hash of top-level entities differs from the hash of the top-level
1471 // entities the last time we rebuilt the preamble, clear out the completion
1472 // cache.
1473 if (CurrentTopLevelHashValue != PreambleTopLevelHashValue) {
1474 CompletionCacheTopLevelHashValue = 0;
1475 PreambleTopLevelHashValue = CurrentTopLevelHashValue;
1476 }
1477
Douglas Gregor6481ef12010-07-24 00:38:13 +00001478 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregor6481ef12010-07-24 00:38:13 +00001479 PreambleReservedSize,
1480 FrontendOpts.Inputs[0].second);
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001481}
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001482
Douglas Gregore9db88f2010-08-03 19:06:41 +00001483void ASTUnit::RealizeTopLevelDeclsFromPreamble() {
1484 std::vector<Decl *> Resolved;
1485 Resolved.reserve(TopLevelDeclsInPreamble.size());
1486 ExternalASTSource &Source = *getASTContext().getExternalSource();
1487 for (unsigned I = 0, N = TopLevelDeclsInPreamble.size(); I != N; ++I) {
1488 // Resolve the declaration ID to an actual declaration, possibly
1489 // deserializing the declaration in the process.
1490 Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]);
1491 if (D)
1492 Resolved.push_back(D);
1493 }
1494 TopLevelDeclsInPreamble.clear();
1495 TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
1496}
1497
Douglas Gregorf88e35b2010-11-30 06:16:57 +00001498void ASTUnit::RealizePreprocessedEntitiesFromPreamble() {
1499 if (!PP)
1500 return;
1501
1502 PreprocessingRecord *PPRec = PP->getPreprocessingRecord();
1503 if (!PPRec)
1504 return;
1505
1506 ExternalPreprocessingRecordSource *External = PPRec->getExternalSource();
1507 if (!External)
1508 return;
1509
1510 for (unsigned I = 0, N = PreprocessedEntitiesInPreamble.size(); I != N; ++I) {
1511 if (PreprocessedEntity *PE
Douglas Gregor46c50012011-02-11 19:46:30 +00001512 = External->ReadPreprocessedEntityAtOffset(
1513 PreprocessedEntitiesInPreamble[I]))
Douglas Gregorf88e35b2010-11-30 06:16:57 +00001514 PreprocessedEntities.push_back(PE);
1515 }
1516
1517 if (PreprocessedEntities.empty())
1518 return;
1519
1520 PreprocessedEntities.insert(PreprocessedEntities.end(),
1521 PPRec->begin(true), PPRec->end(true));
1522}
1523
1524ASTUnit::pp_entity_iterator ASTUnit::pp_entity_begin() {
1525 if (!PreprocessedEntitiesInPreamble.empty() &&
1526 PreprocessedEntities.empty())
1527 RealizePreprocessedEntitiesFromPreamble();
1528
1529 if (PreprocessedEntities.empty())
1530 if (PreprocessingRecord *PPRec = PP->getPreprocessingRecord())
1531 return PPRec->begin(true);
1532
1533 return PreprocessedEntities.begin();
1534}
1535
1536ASTUnit::pp_entity_iterator ASTUnit::pp_entity_end() {
1537 if (!PreprocessedEntitiesInPreamble.empty() &&
1538 PreprocessedEntities.empty())
1539 RealizePreprocessedEntitiesFromPreamble();
1540
1541 if (PreprocessedEntities.empty())
1542 if (PreprocessingRecord *PPRec = PP->getPreprocessingRecord())
1543 return PPRec->end(true);
1544
1545 return PreprocessedEntities.end();
1546}
1547
Douglas Gregore9db88f2010-08-03 19:06:41 +00001548unsigned ASTUnit::getMaxPCHLevel() const {
1549 if (!getOnlyLocalDecls())
1550 return Decl::MaxPCHLevel;
1551
Sebastian Redl009e7f22010-10-05 16:15:19 +00001552 return 0;
Douglas Gregore9db88f2010-08-03 19:06:41 +00001553}
1554
Douglas Gregor16896c42010-10-28 15:44:59 +00001555llvm::StringRef ASTUnit::getMainFileName() const {
1556 return Invocation->getFrontendOpts().Inputs[0].second;
1557}
1558
Argyrios Kyrtzidis35dcda72011-03-09 17:21:42 +00001559ASTUnit *ASTUnit::create(CompilerInvocation *CI,
1560 llvm::IntrusiveRefCntPtr<Diagnostic> Diags) {
1561 llvm::OwningPtr<ASTUnit> AST;
1562 AST.reset(new ASTUnit(false));
1563 ConfigureDiags(Diags, 0, 0, *AST, /*CaptureDiagnostics=*/false);
1564 AST->Diagnostics = Diags;
Ted Kremenek5e14d392011-03-21 18:40:17 +00001565 AST->Invocation = CI;
Anders Carlssonc30dcec2011-03-18 18:22:40 +00001566 AST->FileSystemOpts = CI->getFileSystemOpts();
Ted Kremenek5e14d392011-03-21 18:40:17 +00001567 AST->FileMgr = new FileManager(AST->FileSystemOpts);
1568 AST->SourceMgr = new SourceManager(*Diags, *AST->FileMgr);
Argyrios Kyrtzidis35dcda72011-03-09 17:21:42 +00001569
1570 return AST.take();
1571}
1572
Argyrios Kyrtzidisf1f67592011-05-03 23:26:34 +00001573ASTUnit *ASTUnit::LoadFromCompilerInvocationAction(CompilerInvocation *CI,
1574 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
1575 ASTFrontendAction *Action) {
1576 assert(CI && "A CompilerInvocation is required");
1577
1578 // Create the AST unit.
1579 llvm::OwningPtr<ASTUnit> AST;
1580 AST.reset(new ASTUnit(false));
1581 ConfigureDiags(Diags, 0, 0, *AST, /*CaptureDiagnostics*/false);
1582 AST->Diagnostics = Diags;
1583 AST->OnlyLocalDecls = false;
1584 AST->CaptureDiagnostics = false;
1585 AST->CompleteTranslationUnit = Action ? Action->usesCompleteTranslationUnit()
1586 : true;
1587 AST->ShouldCacheCodeCompletionResults = false;
1588 AST->Invocation = CI;
1589
1590 // Recover resources if we crash before exiting this method.
1591 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1592 ASTUnitCleanup(AST.get());
1593 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
1594 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
1595 DiagCleanup(Diags.getPtr());
1596
1597 // We'll manage file buffers ourselves.
1598 CI->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1599 CI->getFrontendOpts().DisableFree = false;
1600 ProcessWarningOptions(AST->getDiagnostics(), CI->getDiagnosticOpts());
1601
1602 // Save the target features.
1603 AST->TargetFeatures = CI->getTargetOpts().Features;
1604
1605 // Create the compiler instance to use for building the AST.
1606 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1607
1608 // Recover resources if we crash before exiting this method.
1609 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1610 CICleanup(Clang.get());
1611
1612 Clang->setInvocation(CI);
1613 AST->OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
1614
1615 // Set up diagnostics, capturing any diagnostics that would
1616 // otherwise be dropped.
1617 Clang->setDiagnostics(&AST->getDiagnostics());
1618
1619 // Create the target instance.
1620 Clang->getTargetOpts().Features = AST->TargetFeatures;
1621 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
1622 Clang->getTargetOpts()));
1623 if (!Clang->hasTarget())
1624 return 0;
1625
1626 // Inform the target of the language options.
1627 //
1628 // FIXME: We shouldn't need to do this, the target should be immutable once
1629 // created. This complexity should be lifted elsewhere.
1630 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
1631
1632 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
1633 "Invocation must have exactly one source file!");
1634 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
1635 "FIXME: AST inputs not yet supported here!");
1636 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1637 "IR inputs not supported here!");
1638
1639 // Configure the various subsystems.
1640 AST->FileSystemOpts = Clang->getFileSystemOpts();
1641 AST->FileMgr = new FileManager(AST->FileSystemOpts);
1642 AST->SourceMgr = new SourceManager(AST->getDiagnostics(), *AST->FileMgr);
1643 AST->TheSema.reset();
1644 AST->Ctx = 0;
1645 AST->PP = 0;
1646
1647 // Create a file manager object to provide access to and cache the filesystem.
1648 Clang->setFileManager(&AST->getFileManager());
1649
1650 // Create the source manager.
1651 Clang->setSourceManager(&AST->getSourceManager());
1652
1653 ASTFrontendAction *Act = Action;
1654
1655 llvm::OwningPtr<TopLevelDeclTrackerAction> TrackerAct;
1656 if (!Act) {
1657 TrackerAct.reset(new TopLevelDeclTrackerAction(*AST));
1658 Act = TrackerAct.get();
1659 }
1660
1661 // Recover resources if we crash before exiting this method.
1662 llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
1663 ActCleanup(TrackerAct.get());
1664
1665 if (!Act->BeginSourceFile(*Clang.get(),
1666 Clang->getFrontendOpts().Inputs[0].second,
1667 Clang->getFrontendOpts().Inputs[0].first))
1668 return 0;
1669
1670 Act->Execute();
1671
1672 // Steal the created target, context, and preprocessor.
1673 AST->TheSema.reset(Clang->takeSema());
1674 AST->Consumer.reset(Clang->takeASTConsumer());
1675 AST->Ctx = &Clang->getASTContext();
1676 AST->PP = &Clang->getPreprocessor();
1677 Clang->setSourceManager(0);
1678 Clang->setFileManager(0);
1679 AST->Target = &Clang->getTarget();
1680
1681 Act->EndSourceFile();
1682
1683 return AST.take();
1684}
1685
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001686bool ASTUnit::LoadFromCompilerInvocation(bool PrecompilePreamble) {
1687 if (!Invocation)
1688 return true;
1689
1690 // We'll manage file buffers ourselves.
1691 Invocation->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1692 Invocation->getFrontendOpts().DisableFree = false;
Douglas Gregor345c1bc2011-01-19 01:02:47 +00001693 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001694
Douglas Gregorffd6dc42011-01-27 18:02:58 +00001695 // Save the target features.
1696 TargetFeatures = Invocation->getTargetOpts().Features;
1697
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001698 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregorf5a18542010-10-27 17:24:53 +00001699 if (PrecompilePreamble) {
Douglas Gregorc6592922010-11-15 23:00:34 +00001700 PreambleRebuildCounter = 2;
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001701 OverrideMainBuffer
1702 = getMainBufferWithPrecompiledPreamble(*Invocation);
1703 }
1704
Douglas Gregor16896c42010-10-28 15:44:59 +00001705 SimpleTimer ParsingTimer(WantTiming);
Benjamin Kramerf2e5a912010-11-09 20:00:56 +00001706 ParsingTimer.setOutput("Parsing " + getMainFileName());
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001707
Ted Kremenek022a4902011-03-22 01:15:24 +00001708 // Recover resources if we crash before exiting this method.
1709 llvm::CrashRecoveryContextCleanupRegistrar<llvm::MemoryBuffer>
1710 MemBufferCleanup(OverrideMainBuffer);
1711
Douglas Gregor16896c42010-10-28 15:44:59 +00001712 return Parse(OverrideMainBuffer);
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001713}
1714
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001715ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
1716 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
1717 bool OnlyLocalDecls,
Douglas Gregorbe2d8c62010-07-23 00:33:23 +00001718 bool CaptureDiagnostics,
Douglas Gregor028d3e42010-08-09 20:45:32 +00001719 bool PrecompilePreamble,
Douglas Gregorb14904c2010-08-13 22:48:40 +00001720 bool CompleteTranslationUnit,
Douglas Gregor998caea2011-05-06 16:33:08 +00001721 bool CacheCodeCompletionResults,
1722 bool NestedMacroInstantiations) {
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001723 // Create the AST unit.
1724 llvm::OwningPtr<ASTUnit> AST;
1725 AST.reset(new ASTUnit(false));
Douglas Gregor345c1bc2011-01-19 01:02:47 +00001726 ConfigureDiags(Diags, 0, 0, *AST, CaptureDiagnostics);
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001727 AST->Diagnostics = Diags;
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001728 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregor44c6ee72010-11-11 00:39:14 +00001729 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor028d3e42010-08-09 20:45:32 +00001730 AST->CompleteTranslationUnit = CompleteTranslationUnit;
Douglas Gregorb14904c2010-08-13 22:48:40 +00001731 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
Ted Kremenek5e14d392011-03-21 18:40:17 +00001732 AST->Invocation = CI;
Douglas Gregor998caea2011-05-06 16:33:08 +00001733 AST->NestedMacroInstantiations = NestedMacroInstantiations;
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001734
Ted Kremenek4422bfe2011-03-18 02:06:56 +00001735 // Recover resources if we crash before exiting this method.
Ted Kremenek022a4902011-03-22 01:15:24 +00001736 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1737 ASTUnitCleanup(AST.get());
1738 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
1739 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
1740 DiagCleanup(Diags.getPtr());
Ted Kremenek4422bfe2011-03-18 02:06:56 +00001741
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001742 return AST->LoadFromCompilerInvocation(PrecompilePreamble)? 0 : AST.take();
Daniel Dunbar764c0822009-12-01 09:51:01 +00001743}
Daniel Dunbar55a17b62009-12-02 03:23:45 +00001744
1745ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1746 const char **ArgEnd,
Douglas Gregor7f95d262010-04-05 23:52:57 +00001747 llvm::IntrusiveRefCntPtr<Diagnostic> Diags,
Daniel Dunbar8d4a2022009-12-13 03:46:13 +00001748 llvm::StringRef ResourceFilesPath,
Daniel Dunbar55a17b62009-12-02 03:23:45 +00001749 bool OnlyLocalDecls,
Douglas Gregor44c6ee72010-11-11 00:39:14 +00001750 bool CaptureDiagnostics,
Douglas Gregoraa98ed92010-01-23 00:14:00 +00001751 RemappedFile *RemappedFiles,
Douglas Gregor33cdd812010-02-18 18:08:43 +00001752 unsigned NumRemappedFiles,
Argyrios Kyrtzidis97d3a382011-03-08 23:35:24 +00001753 bool RemappedFilesKeepOriginalName,
Douglas Gregor028d3e42010-08-09 20:45:32 +00001754 bool PrecompilePreamble,
Douglas Gregorb14904c2010-08-13 22:48:40 +00001755 bool CompleteTranslationUnit,
Douglas Gregorf5a18542010-10-27 17:24:53 +00001756 bool CacheCodeCompletionResults,
1757 bool CXXPrecompilePreamble,
Douglas Gregor998caea2011-05-06 16:33:08 +00001758 bool CXXChainedPCH,
1759 bool NestedMacroInstantiations) {
Douglas Gregor7f95d262010-04-05 23:52:57 +00001760 if (!Diags.getPtr()) {
Douglas Gregord03e8232010-04-05 21:10:19 +00001761 // No diagnostics engine was provided, so create our own diagnostics object
1762 // with the default options.
1763 DiagnosticOptions DiagOpts;
Douglas Gregor345c1bc2011-01-19 01:02:47 +00001764 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgEnd - ArgBegin,
1765 ArgBegin);
Douglas Gregord03e8232010-04-05 21:10:19 +00001766 }
Daniel Dunbar55a17b62009-12-02 03:23:45 +00001767
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001768 llvm::SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
1769
Ted Kremenek5e14d392011-03-21 18:40:17 +00001770 llvm::IntrusiveRefCntPtr<CompilerInvocation> CI;
Douglas Gregor44c6ee72010-11-11 00:39:14 +00001771
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001772 {
Douglas Gregor44c6ee72010-11-11 00:39:14 +00001773 CaptureDroppedDiagnostics Capture(CaptureDiagnostics, *Diags,
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001774 StoredDiagnostics);
Daniel Dunbarfcf2d422010-01-25 00:44:02 +00001775
Argyrios Kyrtzidis5cf423e2011-04-04 23:11:45 +00001776 CI = clang::createInvocationFromCommandLine(
Argyrios Kyrtzidisf606b822011-04-04 21:38:51 +00001777 llvm::ArrayRef<const char *>(ArgBegin, ArgEnd-ArgBegin),
1778 Diags);
1779 if (!CI)
Argyrios Kyrtzidisbc1f48f2011-03-07 22:45:01 +00001780 return 0;
Daniel Dunbar55a17b62009-12-02 03:23:45 +00001781 }
Douglas Gregor44c6ee72010-11-11 00:39:14 +00001782
Douglas Gregoraa98ed92010-01-23 00:14:00 +00001783 // Override any files that need remapping
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +00001784 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
1785 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
1786 if (const llvm::MemoryBuffer *
1787 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
1788 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, memBuf);
1789 } else {
1790 const char *fname = fileOrBuf.get<const char *>();
1791 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, fname);
1792 }
1793 }
Argyrios Kyrtzidis97d3a382011-03-08 23:35:24 +00001794 CI->getPreprocessorOpts().RemappedFilesKeepOriginalName =
1795 RemappedFilesKeepOriginalName;
Douglas Gregoraa98ed92010-01-23 00:14:00 +00001796
Daniel Dunbara5a166d2009-12-15 00:06:45 +00001797 // Override the resources path.
Daniel Dunbar6b03ece2010-01-30 21:47:16 +00001798 CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
Daniel Dunbar55a17b62009-12-02 03:23:45 +00001799
Douglas Gregorf5a18542010-10-27 17:24:53 +00001800 // Check whether we should precompile the preamble and/or use chained PCH.
1801 // FIXME: This is a temporary hack while we debug C++ chained PCH.
1802 if (CI->getLangOpts().CPlusPlus) {
1803 PrecompilePreamble = PrecompilePreamble && CXXPrecompilePreamble;
1804
1805 if (PrecompilePreamble && !CXXChainedPCH &&
1806 !CI->getPreprocessorOpts().ImplicitPCHInclude.empty())
1807 PrecompilePreamble = false;
1808 }
1809
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001810 // Create the AST unit.
1811 llvm::OwningPtr<ASTUnit> AST;
1812 AST.reset(new ASTUnit(false));
Douglas Gregor345c1bc2011-01-19 01:02:47 +00001813 ConfigureDiags(Diags, ArgBegin, ArgEnd, *AST, CaptureDiagnostics);
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001814 AST->Diagnostics = Diags;
Anders Carlssonc30dcec2011-03-18 18:22:40 +00001815
1816 AST->FileSystemOpts = CI->getFileSystemOpts();
Ted Kremenek5e14d392011-03-21 18:40:17 +00001817 AST->FileMgr = new FileManager(AST->FileSystemOpts);
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001818 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregor44c6ee72010-11-11 00:39:14 +00001819 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor7bb8af62010-10-12 00:50:20 +00001820 AST->CompleteTranslationUnit = CompleteTranslationUnit;
1821 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1822 AST->NumStoredDiagnosticsFromDriver = StoredDiagnostics.size();
1823 AST->NumStoredDiagnosticsInPreamble = StoredDiagnostics.size();
1824 AST->StoredDiagnostics.swap(StoredDiagnostics);
Ted Kremenek5e14d392011-03-21 18:40:17 +00001825 AST->Invocation = CI;
Douglas Gregor998caea2011-05-06 16:33:08 +00001826 AST->NestedMacroInstantiations = NestedMacroInstantiations;
Ted Kremenek4422bfe2011-03-18 02:06:56 +00001827
1828 // Recover resources if we crash before exiting this method.
Ted Kremenek022a4902011-03-22 01:15:24 +00001829 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1830 ASTUnitCleanup(AST.get());
1831 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInvocation,
1832 llvm::CrashRecoveryContextReleaseRefCleanup<CompilerInvocation> >
1833 CICleanup(CI.getPtr());
1834 llvm::CrashRecoveryContextCleanupRegistrar<Diagnostic,
1835 llvm::CrashRecoveryContextReleaseRefCleanup<Diagnostic> >
1836 DiagCleanup(Diags.getPtr());
Ted Kremenek4422bfe2011-03-18 02:06:56 +00001837
Chris Lattner5159f612010-11-23 08:35:12 +00001838 return AST->LoadFromCompilerInvocation(PrecompilePreamble) ? 0 : AST.take();
Daniel Dunbar55a17b62009-12-02 03:23:45 +00001839}
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001840
1841bool ASTUnit::Reparse(RemappedFile *RemappedFiles, unsigned NumRemappedFiles) {
Ted Kremenek5e14d392011-03-21 18:40:17 +00001842 if (!Invocation)
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001843 return true;
1844
Douglas Gregor16896c42010-10-28 15:44:59 +00001845 SimpleTimer ParsingTimer(WantTiming);
Benjamin Kramerf2e5a912010-11-09 20:00:56 +00001846 ParsingTimer.setOutput("Reparsing " + getMainFileName());
Douglas Gregor16896c42010-10-28 15:44:59 +00001847
Douglas Gregor0e119552010-07-31 00:40:00 +00001848 // Remap files.
Douglas Gregor7b02b582010-08-20 00:02:33 +00001849 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
Douglas Gregor606c4ac2011-02-05 19:42:43 +00001850 PPOpts.DisableStatCache = true;
Douglas Gregor7b02b582010-08-20 00:02:33 +00001851 for (PreprocessorOptions::remapped_file_buffer_iterator
1852 R = PPOpts.remapped_file_buffer_begin(),
1853 REnd = PPOpts.remapped_file_buffer_end();
1854 R != REnd;
1855 ++R) {
1856 delete R->second;
1857 }
Douglas Gregor0e119552010-07-31 00:40:00 +00001858 Invocation->getPreprocessorOpts().clearRemappedFiles();
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +00001859 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
1860 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
1861 if (const llvm::MemoryBuffer *
1862 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
1863 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1864 memBuf);
1865 } else {
1866 const char *fname = fileOrBuf.get<const char *>();
1867 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1868 fname);
1869 }
1870 }
Douglas Gregor0e119552010-07-31 00:40:00 +00001871
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001872 // If we have a preamble file lying around, or if we might try to
1873 // build a precompiled preamble, do so now.
Douglas Gregor6481ef12010-07-24 00:38:13 +00001874 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregorbb420ab2010-08-04 05:53:38 +00001875 if (!PreambleFile.empty() || PreambleRebuildCounter > 0)
Douglas Gregorb97b6662010-08-20 00:59:43 +00001876 OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(*Invocation);
Douglas Gregor4dde7492010-07-23 23:58:40 +00001877
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001878 // Clear out the diagnostics state.
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00001879 if (!OverrideMainBuffer) {
Douglas Gregord9a30af2010-08-02 20:51:39 +00001880 getDiagnostics().Reset();
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00001881 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
1882 }
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001883
Douglas Gregor4dde7492010-07-23 23:58:40 +00001884 // Parse the sources
Douglas Gregordf7a79a2011-02-16 18:16:54 +00001885 bool Result = Parse(OverrideMainBuffer);
1886
1887 // If we're caching global code-completion results, and the top-level
1888 // declarations have changed, clear out the code-completion cache.
1889 if (!Result && ShouldCacheCodeCompletionResults &&
1890 CurrentTopLevelHashValue != CompletionCacheTopLevelHashValue)
1891 CacheCodeCompletionResults();
1892
Douglas Gregor4dde7492010-07-23 23:58:40 +00001893 return Result;
Douglas Gregoraa21cc42010-07-19 21:46:24 +00001894}
Douglas Gregor8e984da2010-08-04 16:47:14 +00001895
Douglas Gregorb14904c2010-08-13 22:48:40 +00001896//----------------------------------------------------------------------------//
1897// Code completion
1898//----------------------------------------------------------------------------//
1899
1900namespace {
1901 /// \brief Code completion consumer that combines the cached code-completion
1902 /// results from an ASTUnit with the code-completion results provided to it,
1903 /// then passes the result on to
1904 class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer {
1905 unsigned NormalContexts;
1906 ASTUnit &AST;
1907 CodeCompleteConsumer &Next;
1908
1909 public:
1910 AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next,
Douglas Gregor39982192010-08-15 06:18:01 +00001911 bool IncludeMacros, bool IncludeCodePatterns,
1912 bool IncludeGlobals)
1913 : CodeCompleteConsumer(IncludeMacros, IncludeCodePatterns, IncludeGlobals,
Douglas Gregorb14904c2010-08-13 22:48:40 +00001914 Next.isOutputBinary()), AST(AST), Next(Next)
1915 {
1916 // Compute the set of contexts in which we will look when we don't have
1917 // any information about the specific context.
1918 NormalContexts
1919 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
1920 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
1921 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
1922 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
1923 | (1 << (CodeCompletionContext::CCC_Statement - 1))
1924 | (1 << (CodeCompletionContext::CCC_Expression - 1))
1925 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
1926 | (1 << (CodeCompletionContext::CCC_MemberAccess - 1))
Douglas Gregor5e35d592010-09-14 23:59:36 +00001927 | (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1))
Douglas Gregor0ac41382010-09-23 23:01:17 +00001928 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
1929 | (1 << (CodeCompletionContext::CCC_Recovery - 1));
Douglas Gregor5e35d592010-09-14 23:59:36 +00001930
Douglas Gregorb14904c2010-08-13 22:48:40 +00001931 if (AST.getASTContext().getLangOptions().CPlusPlus)
1932 NormalContexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1))
1933 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
1934 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
1935 }
1936
1937 virtual void ProcessCodeCompleteResults(Sema &S,
1938 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00001939 CodeCompletionResult *Results,
Douglas Gregord46cf182010-08-16 20:01:48 +00001940 unsigned NumResults);
Douglas Gregorb14904c2010-08-13 22:48:40 +00001941
1942 virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
1943 OverloadCandidate *Candidates,
1944 unsigned NumCandidates) {
1945 Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates);
1946 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001947
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00001948 virtual CodeCompletionAllocator &getAllocator() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001949 return Next.getAllocator();
1950 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00001951 };
1952}
Douglas Gregord46cf182010-08-16 20:01:48 +00001953
Douglas Gregor6199f2d2010-08-16 21:18:39 +00001954/// \brief Helper function that computes which global names are hidden by the
1955/// local code-completion results.
Ted Kremenek6a153372010-11-07 06:11:36 +00001956static void CalculateHiddenNames(const CodeCompletionContext &Context,
1957 CodeCompletionResult *Results,
1958 unsigned NumResults,
1959 ASTContext &Ctx,
1960 llvm::StringSet<llvm::BumpPtrAllocator> &HiddenNames){
Douglas Gregor6199f2d2010-08-16 21:18:39 +00001961 bool OnlyTagNames = false;
1962 switch (Context.getKind()) {
Douglas Gregor0ac41382010-09-23 23:01:17 +00001963 case CodeCompletionContext::CCC_Recovery:
Douglas Gregor6199f2d2010-08-16 21:18:39 +00001964 case CodeCompletionContext::CCC_TopLevel:
1965 case CodeCompletionContext::CCC_ObjCInterface:
1966 case CodeCompletionContext::CCC_ObjCImplementation:
1967 case CodeCompletionContext::CCC_ObjCIvarList:
1968 case CodeCompletionContext::CCC_ClassStructUnion:
1969 case CodeCompletionContext::CCC_Statement:
1970 case CodeCompletionContext::CCC_Expression:
1971 case CodeCompletionContext::CCC_ObjCMessageReceiver:
1972 case CodeCompletionContext::CCC_MemberAccess:
1973 case CodeCompletionContext::CCC_Namespace:
1974 case CodeCompletionContext::CCC_Type:
Douglas Gregorc49f5b22010-08-23 18:23:48 +00001975 case CodeCompletionContext::CCC_Name:
1976 case CodeCompletionContext::CCC_PotentiallyQualifiedName:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001977 case CodeCompletionContext::CCC_ParenthesizedExpression:
Douglas Gregor6199f2d2010-08-16 21:18:39 +00001978 break;
1979
1980 case CodeCompletionContext::CCC_EnumTag:
1981 case CodeCompletionContext::CCC_UnionTag:
1982 case CodeCompletionContext::CCC_ClassOrStructTag:
1983 OnlyTagNames = true;
1984 break;
1985
1986 case CodeCompletionContext::CCC_ObjCProtocolName:
Douglas Gregor12785102010-08-24 20:21:13 +00001987 case CodeCompletionContext::CCC_MacroName:
1988 case CodeCompletionContext::CCC_MacroNameUse:
Douglas Gregorec00a262010-08-24 22:20:20 +00001989 case CodeCompletionContext::CCC_PreprocessorExpression:
Douglas Gregor0de55ce2010-08-25 18:41:16 +00001990 case CodeCompletionContext::CCC_PreprocessorDirective:
Douglas Gregorea147052010-08-25 18:04:30 +00001991 case CodeCompletionContext::CCC_NaturalLanguage:
Douglas Gregor67c692c2010-08-26 15:07:07 +00001992 case CodeCompletionContext::CCC_SelectorName:
Douglas Gregor28c78432010-08-27 17:35:51 +00001993 case CodeCompletionContext::CCC_TypeQualifiers:
Douglas Gregor0ac41382010-09-23 23:01:17 +00001994 case CodeCompletionContext::CCC_Other:
Douglas Gregor3a69eaf2011-02-18 23:30:37 +00001995 case CodeCompletionContext::CCC_OtherWithMacros:
Douglas Gregor0de55ce2010-08-25 18:41:16 +00001996 // We're looking for nothing, or we're looking for names that cannot
1997 // be hidden.
Douglas Gregor6199f2d2010-08-16 21:18:39 +00001998 return;
1999 }
2000
John McCall276321a2010-08-25 06:19:51 +00002001 typedef CodeCompletionResult Result;
Douglas Gregor6199f2d2010-08-16 21:18:39 +00002002 for (unsigned I = 0; I != NumResults; ++I) {
2003 if (Results[I].Kind != Result::RK_Declaration)
2004 continue;
2005
2006 unsigned IDNS
2007 = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
2008
2009 bool Hiding = false;
2010 if (OnlyTagNames)
2011 Hiding = (IDNS & Decl::IDNS_Tag);
2012 else {
2013 unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member |
Douglas Gregor59cab552010-08-16 23:05:20 +00002014 Decl::IDNS_Namespace | Decl::IDNS_Ordinary |
2015 Decl::IDNS_NonMemberOperator);
Douglas Gregor6199f2d2010-08-16 21:18:39 +00002016 if (Ctx.getLangOptions().CPlusPlus)
2017 HiddenIDNS |= Decl::IDNS_Tag;
2018 Hiding = (IDNS & HiddenIDNS);
2019 }
2020
2021 if (!Hiding)
2022 continue;
2023
2024 DeclarationName Name = Results[I].Declaration->getDeclName();
2025 if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo())
2026 HiddenNames.insert(Identifier->getName());
2027 else
2028 HiddenNames.insert(Name.getAsString());
2029 }
2030}
2031
2032
Douglas Gregord46cf182010-08-16 20:01:48 +00002033void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
2034 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00002035 CodeCompletionResult *Results,
Douglas Gregord46cf182010-08-16 20:01:48 +00002036 unsigned NumResults) {
2037 // Merge the results we were given with the results we cached.
2038 bool AddedResult = false;
Douglas Gregor6199f2d2010-08-16 21:18:39 +00002039 unsigned InContexts
Douglas Gregor0ac41382010-09-23 23:01:17 +00002040 = (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts
Douglas Gregor6199f2d2010-08-16 21:18:39 +00002041 : (1 << (Context.getKind() - 1)));
2042
2043 // Contains the set of names that are hidden by "local" completion results.
Ted Kremenek6a153372010-11-07 06:11:36 +00002044 llvm::StringSet<llvm::BumpPtrAllocator> HiddenNames;
John McCall276321a2010-08-25 06:19:51 +00002045 typedef CodeCompletionResult Result;
Douglas Gregord46cf182010-08-16 20:01:48 +00002046 llvm::SmallVector<Result, 8> AllResults;
2047 for (ASTUnit::cached_completion_iterator
Douglas Gregordf239672010-08-16 21:23:13 +00002048 C = AST.cached_completion_begin(),
2049 CEnd = AST.cached_completion_end();
Douglas Gregord46cf182010-08-16 20:01:48 +00002050 C != CEnd; ++C) {
2051 // If the context we are in matches any of the contexts we are
2052 // interested in, we'll add this result.
2053 if ((C->ShowInContexts & InContexts) == 0)
2054 continue;
2055
2056 // If we haven't added any results previously, do so now.
2057 if (!AddedResult) {
Douglas Gregor6199f2d2010-08-16 21:18:39 +00002058 CalculateHiddenNames(Context, Results, NumResults, S.Context,
2059 HiddenNames);
Douglas Gregord46cf182010-08-16 20:01:48 +00002060 AllResults.insert(AllResults.end(), Results, Results + NumResults);
2061 AddedResult = true;
2062 }
2063
Douglas Gregor6199f2d2010-08-16 21:18:39 +00002064 // Determine whether this global completion result is hidden by a local
2065 // completion result. If so, skip it.
2066 if (C->Kind != CXCursor_MacroDefinition &&
2067 HiddenNames.count(C->Completion->getTypedText()))
2068 continue;
2069
Douglas Gregord46cf182010-08-16 20:01:48 +00002070 // Adjust priority based on similar type classes.
2071 unsigned Priority = C->Priority;
Douglas Gregor8850aa32010-08-25 18:03:13 +00002072 CXCursorKind CursorKind = C->Kind;
Douglas Gregor12785102010-08-24 20:21:13 +00002073 CodeCompletionString *Completion = C->Completion;
Douglas Gregord46cf182010-08-16 20:01:48 +00002074 if (!Context.getPreferredType().isNull()) {
2075 if (C->Kind == CXCursor_MacroDefinition) {
2076 Priority = getMacroUsagePriority(C->Completion->getTypedText(),
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002077 S.getLangOptions(),
Douglas Gregor12785102010-08-24 20:21:13 +00002078 Context.getPreferredType()->isAnyPointerType());
Douglas Gregord46cf182010-08-16 20:01:48 +00002079 } else if (C->Type) {
2080 CanQualType Expected
Douglas Gregordf239672010-08-16 21:23:13 +00002081 = S.Context.getCanonicalType(
Douglas Gregord46cf182010-08-16 20:01:48 +00002082 Context.getPreferredType().getUnqualifiedType());
2083 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
2084 if (ExpectedSTC == C->TypeClass) {
2085 // We know this type is similar; check for an exact match.
2086 llvm::StringMap<unsigned> &CachedCompletionTypes
Douglas Gregordf239672010-08-16 21:23:13 +00002087 = AST.getCachedCompletionTypes();
Douglas Gregord46cf182010-08-16 20:01:48 +00002088 llvm::StringMap<unsigned>::iterator Pos
Douglas Gregordf239672010-08-16 21:23:13 +00002089 = CachedCompletionTypes.find(QualType(Expected).getAsString());
Douglas Gregord46cf182010-08-16 20:01:48 +00002090 if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
2091 Priority /= CCF_ExactTypeMatch;
2092 else
2093 Priority /= CCF_SimilarTypeMatch;
2094 }
2095 }
2096 }
2097
Douglas Gregor12785102010-08-24 20:21:13 +00002098 // Adjust the completion string, if required.
2099 if (C->Kind == CXCursor_MacroDefinition &&
2100 Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) {
2101 // Create a new code-completion string that just contains the
2102 // macro name, without its arguments.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002103 CodeCompletionBuilder Builder(getAllocator(), CCP_CodePattern,
2104 C->Availability);
2105 Builder.AddTypedTextChunk(C->Completion->getTypedText());
Douglas Gregor8850aa32010-08-25 18:03:13 +00002106 CursorKind = CXCursor_NotImplemented;
2107 Priority = CCP_CodePattern;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002108 Completion = Builder.TakeString();
Douglas Gregor12785102010-08-24 20:21:13 +00002109 }
2110
Douglas Gregor8850aa32010-08-25 18:03:13 +00002111 AllResults.push_back(Result(Completion, Priority, CursorKind,
Douglas Gregorf757a122010-08-23 23:00:57 +00002112 C->Availability));
Douglas Gregord46cf182010-08-16 20:01:48 +00002113 }
2114
2115 // If we did not add any cached completion results, just forward the
2116 // results we were given to the next consumer.
2117 if (!AddedResult) {
2118 Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
2119 return;
2120 }
Douglas Gregor49f67ce2010-08-26 13:48:20 +00002121
Douglas Gregord46cf182010-08-16 20:01:48 +00002122 Next.ProcessCodeCompleteResults(S, Context, AllResults.data(),
2123 AllResults.size());
2124}
2125
2126
2127
Douglas Gregor8e984da2010-08-04 16:47:14 +00002128void ASTUnit::CodeComplete(llvm::StringRef File, unsigned Line, unsigned Column,
2129 RemappedFile *RemappedFiles,
2130 unsigned NumRemappedFiles,
Douglas Gregorb68bc592010-08-05 09:09:23 +00002131 bool IncludeMacros,
2132 bool IncludeCodePatterns,
Douglas Gregor8e984da2010-08-04 16:47:14 +00002133 CodeCompleteConsumer &Consumer,
2134 Diagnostic &Diag, LangOptions &LangOpts,
2135 SourceManager &SourceMgr, FileManager &FileMgr,
Douglas Gregorb97b6662010-08-20 00:59:43 +00002136 llvm::SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
2137 llvm::SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) {
Ted Kremenek5e14d392011-03-21 18:40:17 +00002138 if (!Invocation)
Douglas Gregor8e984da2010-08-04 16:47:14 +00002139 return;
2140
Douglas Gregor16896c42010-10-28 15:44:59 +00002141 SimpleTimer CompletionTimer(WantTiming);
Benjamin Kramerf2e5a912010-11-09 20:00:56 +00002142 CompletionTimer.setOutput("Code completion @ " + File + ":" +
2143 llvm::Twine(Line) + ":" + llvm::Twine(Column));
Douglas Gregor028d3e42010-08-09 20:45:32 +00002144
Ted Kremenek5e14d392011-03-21 18:40:17 +00002145 llvm::IntrusiveRefCntPtr<CompilerInvocation>
2146 CCInvocation(new CompilerInvocation(*Invocation));
2147
2148 FrontendOptions &FrontendOpts = CCInvocation->getFrontendOpts();
2149 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts();
Douglas Gregorb68bc592010-08-05 09:09:23 +00002150
Douglas Gregorb14904c2010-08-13 22:48:40 +00002151 FrontendOpts.ShowMacrosInCodeCompletion
2152 = IncludeMacros && CachedCompletionResults.empty();
Douglas Gregorb68bc592010-08-05 09:09:23 +00002153 FrontendOpts.ShowCodePatternsInCodeCompletion = IncludeCodePatterns;
Douglas Gregor39982192010-08-15 06:18:01 +00002154 FrontendOpts.ShowGlobalSymbolsInCodeCompletion
2155 = CachedCompletionResults.empty();
Douglas Gregor8e984da2010-08-04 16:47:14 +00002156 FrontendOpts.CodeCompletionAt.FileName = File;
2157 FrontendOpts.CodeCompletionAt.Line = Line;
2158 FrontendOpts.CodeCompletionAt.Column = Column;
2159
2160 // Set the language options appropriately.
Ted Kremenek5e14d392011-03-21 18:40:17 +00002161 LangOpts = CCInvocation->getLangOpts();
Douglas Gregor8e984da2010-08-04 16:47:14 +00002162
Ted Kremenek84de4a12011-03-21 18:40:07 +00002163 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
2164
2165 // Recover resources if we crash before exiting this method.
Ted Kremenek022a4902011-03-22 01:15:24 +00002166 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
2167 CICleanup(Clang.get());
Ted Kremenek84de4a12011-03-21 18:40:07 +00002168
Ted Kremenek5e14d392011-03-21 18:40:17 +00002169 Clang->setInvocation(&*CCInvocation);
Ted Kremenek84de4a12011-03-21 18:40:07 +00002170 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregor8e984da2010-08-04 16:47:14 +00002171
2172 // Set up diagnostics, capturing any diagnostics produced.
Ted Kremenek84de4a12011-03-21 18:40:07 +00002173 Clang->setDiagnostics(&Diag);
Ted Kremenek5e14d392011-03-21 18:40:17 +00002174 ProcessWarningOptions(Diag, CCInvocation->getDiagnosticOpts());
Douglas Gregor8e984da2010-08-04 16:47:14 +00002175 CaptureDroppedDiagnostics Capture(true,
Ted Kremenek84de4a12011-03-21 18:40:07 +00002176 Clang->getDiagnostics(),
Douglas Gregor8e984da2010-08-04 16:47:14 +00002177 StoredDiagnostics);
Douglas Gregor8e984da2010-08-04 16:47:14 +00002178
2179 // Create the target instance.
Ted Kremenek84de4a12011-03-21 18:40:07 +00002180 Clang->getTargetOpts().Features = TargetFeatures;
2181 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
2182 Clang->getTargetOpts()));
2183 if (!Clang->hasTarget()) {
Ted Kremenek5e14d392011-03-21 18:40:17 +00002184 Clang->setInvocation(0);
Douglas Gregor2dd19f12010-08-18 22:29:43 +00002185 return;
Douglas Gregor8e984da2010-08-04 16:47:14 +00002186 }
2187
2188 // Inform the target of the language options.
2189 //
2190 // FIXME: We shouldn't need to do this, the target should be immutable once
2191 // created. This complexity should be lifted elsewhere.
Ted Kremenek84de4a12011-03-21 18:40:07 +00002192 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregor8e984da2010-08-04 16:47:14 +00002193
Ted Kremenek84de4a12011-03-21 18:40:07 +00002194 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Douglas Gregor8e984da2010-08-04 16:47:14 +00002195 "Invocation must have exactly one source file!");
Ted Kremenek84de4a12011-03-21 18:40:07 +00002196 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Douglas Gregor8e984da2010-08-04 16:47:14 +00002197 "FIXME: AST inputs not yet supported here!");
Ted Kremenek84de4a12011-03-21 18:40:07 +00002198 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Douglas Gregor8e984da2010-08-04 16:47:14 +00002199 "IR inputs not support here!");
2200
2201
2202 // Use the source and file managers that we were given.
Ted Kremenek84de4a12011-03-21 18:40:07 +00002203 Clang->setFileManager(&FileMgr);
2204 Clang->setSourceManager(&SourceMgr);
Douglas Gregor8e984da2010-08-04 16:47:14 +00002205
2206 // Remap files.
2207 PreprocessorOpts.clearRemappedFiles();
Douglas Gregord8a5dba2010-08-04 17:07:00 +00002208 PreprocessorOpts.RetainRemappedFileBuffers = true;
Douglas Gregorb97b6662010-08-20 00:59:43 +00002209 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Argyrios Kyrtzidis11e6f0a2011-03-05 01:03:53 +00002210 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
2211 if (const llvm::MemoryBuffer *
2212 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
2213 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, memBuf);
2214 OwnedBuffers.push_back(memBuf);
2215 } else {
2216 const char *fname = fileOrBuf.get<const char *>();
2217 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, fname);
2218 }
Douglas Gregorb97b6662010-08-20 00:59:43 +00002219 }
Douglas Gregor8e984da2010-08-04 16:47:14 +00002220
Douglas Gregorb14904c2010-08-13 22:48:40 +00002221 // Use the code completion consumer we were given, but adding any cached
2222 // code-completion results.
Douglas Gregore9186e62010-11-29 16:13:56 +00002223 AugmentedCodeCompleteConsumer *AugmentedConsumer
2224 = new AugmentedCodeCompleteConsumer(*this, Consumer,
2225 FrontendOpts.ShowMacrosInCodeCompletion,
2226 FrontendOpts.ShowCodePatternsInCodeCompletion,
2227 FrontendOpts.ShowGlobalSymbolsInCodeCompletion);
Ted Kremenek84de4a12011-03-21 18:40:07 +00002228 Clang->setCodeCompletionConsumer(AugmentedConsumer);
Douglas Gregor8e984da2010-08-04 16:47:14 +00002229
Douglas Gregor028d3e42010-08-09 20:45:32 +00002230 // If we have a precompiled preamble, try to use it. We only allow
2231 // the use of the precompiled preamble if we're if the completion
2232 // point is within the main file, after the end of the precompiled
2233 // preamble.
2234 llvm::MemoryBuffer *OverrideMainBuffer = 0;
2235 if (!PreambleFile.empty()) {
2236 using llvm::sys::FileStatus;
2237 llvm::sys::PathWithStatus CompleteFilePath(File);
2238 llvm::sys::PathWithStatus MainPath(OriginalSourceFile);
2239 if (const FileStatus *CompleteFileStatus = CompleteFilePath.getFileStatus())
2240 if (const FileStatus *MainStatus = MainPath.getFileStatus())
2241 if (CompleteFileStatus->getUniqueID() == MainStatus->getUniqueID())
Douglas Gregorb97b6662010-08-20 00:59:43 +00002242 OverrideMainBuffer
Ted Kremenek5e14d392011-03-21 18:40:17 +00002243 = getMainBufferWithPrecompiledPreamble(*CCInvocation, false,
Douglas Gregor8e817b62010-08-25 18:04:15 +00002244 Line - 1);
Douglas Gregor028d3e42010-08-09 20:45:32 +00002245 }
2246
2247 // If the main file has been overridden due to the use of a preamble,
2248 // make that override happen and introduce the preamble.
Douglas Gregor606c4ac2011-02-05 19:42:43 +00002249 PreprocessorOpts.DisableStatCache = true;
Douglas Gregor7bb8af62010-10-12 00:50:20 +00002250 StoredDiagnostics.insert(StoredDiagnostics.end(),
2251 this->StoredDiagnostics.begin(),
2252 this->StoredDiagnostics.begin() + NumStoredDiagnosticsFromDriver);
Douglas Gregor028d3e42010-08-09 20:45:32 +00002253 if (OverrideMainBuffer) {
2254 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
2255 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
2256 PreprocessorOpts.PrecompiledPreambleBytes.second
2257 = PreambleEndsAtStartOfLine;
2258 PreprocessorOpts.ImplicitPCHInclude = PreambleFile;
2259 PreprocessorOpts.DisablePCHValidation = true;
2260
2261 // The stored diagnostics have the old source manager. Copy them
2262 // to our output set of stored diagnostics, updating the source
2263 // manager to the one we were given.
Douglas Gregor7bb8af62010-10-12 00:50:20 +00002264 for (unsigned I = NumStoredDiagnosticsFromDriver,
2265 N = this->StoredDiagnostics.size();
2266 I < N; ++I) {
Douglas Gregor028d3e42010-08-09 20:45:32 +00002267 StoredDiagnostics.push_back(this->StoredDiagnostics[I]);
2268 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(), SourceMgr);
2269 StoredDiagnostics[I].setLocation(Loc);
2270 }
Douglas Gregor7bb8af62010-10-12 00:50:20 +00002271
Douglas Gregorb97b6662010-08-20 00:59:43 +00002272 OwnedBuffers.push_back(OverrideMainBuffer);
Douglas Gregor7b02b582010-08-20 00:02:33 +00002273 } else {
2274 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
2275 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregor028d3e42010-08-09 20:45:32 +00002276 }
2277
Douglas Gregor998caea2011-05-06 16:33:08 +00002278 // Disable the preprocessing record
2279 PreprocessorOpts.DetailedRecord = false;
2280
Douglas Gregor8e984da2010-08-04 16:47:14 +00002281 llvm::OwningPtr<SyntaxOnlyAction> Act;
2282 Act.reset(new SyntaxOnlyAction);
Ted Kremenek84de4a12011-03-21 18:40:07 +00002283 if (Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
2284 Clang->getFrontendOpts().Inputs[0].first)) {
Douglas Gregor8e984da2010-08-04 16:47:14 +00002285 Act->Execute();
2286 Act->EndSourceFile();
2287 }
Douglas Gregor8e984da2010-08-04 16:47:14 +00002288}
Douglas Gregore9386682010-08-13 05:36:37 +00002289
Douglas Gregor30c80fa2011-07-06 16:43:36 +00002290CXSaveError ASTUnit::Save(llvm::StringRef File) {
Douglas Gregore9386682010-08-13 05:36:37 +00002291 if (getDiagnostics().hasErrorOccurred())
Douglas Gregor30c80fa2011-07-06 16:43:36 +00002292 return CXSaveError_TranslationErrors;
Douglas Gregore9386682010-08-13 05:36:37 +00002293
2294 // FIXME: Can we somehow regenerate the stat cache here, or do we need to
2295 // unconditionally create a stat cache when we parse the file?
2296 std::string ErrorInfo;
Benjamin Kramer340045b2010-08-15 16:54:31 +00002297 llvm::raw_fd_ostream Out(File.str().c_str(), ErrorInfo,
2298 llvm::raw_fd_ostream::F_Binary);
Douglas Gregore9386682010-08-13 05:36:37 +00002299 if (!ErrorInfo.empty() || Out.has_error())
Douglas Gregor30c80fa2011-07-06 16:43:36 +00002300 return CXSaveError_Unknown;
Argyrios Kyrtzidis35dcda72011-03-09 17:21:42 +00002301
2302 serialize(Out);
2303 Out.close();
Douglas Gregor30c80fa2011-07-06 16:43:36 +00002304 return Out.has_error()? CXSaveError_Unknown : CXSaveError_None;
Argyrios Kyrtzidis35dcda72011-03-09 17:21:42 +00002305}
2306
2307bool ASTUnit::serialize(llvm::raw_ostream &OS) {
2308 if (getDiagnostics().hasErrorOccurred())
2309 return true;
2310
Douglas Gregore9386682010-08-13 05:36:37 +00002311 std::vector<unsigned char> Buffer;
2312 llvm::BitstreamWriter Stream(Buffer);
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002313 ASTWriter Writer(Stream);
Argyrios Kyrtzidis10b23682011-02-15 17:54:22 +00002314 Writer.WriteAST(getSema(), 0, std::string(), 0);
Douglas Gregore9386682010-08-13 05:36:37 +00002315
2316 // Write the generated bitstream to "Out".
Douglas Gregor2dd19f12010-08-18 22:29:43 +00002317 if (!Buffer.empty())
Argyrios Kyrtzidis35dcda72011-03-09 17:21:42 +00002318 OS.write((char *)&Buffer.front(), Buffer.size());
2319
2320 return false;
Douglas Gregore9386682010-08-13 05:36:37 +00002321}