blob: 8d2884f7507190476b4efec7e802dca18e4d0097 [file] [log] [blame]
Argyrios Kyrtzidis4b562cf2009-06-20 08:27:14 +00001//===--- ASTUnit.cpp - ASTUnit utility ------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// ASTUnit Implementation.
11//
12//===----------------------------------------------------------------------===//
13
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000014#include "clang/Frontend/ASTUnit.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000015#include "clang/AST/ASTContext.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000016#include "clang/AST/ASTConsumer.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000017#include "clang/AST/DeclVisitor.h"
Douglas Gregorf5586f62010-08-16 18:08:11 +000018#include "clang/AST/TypeOrdering.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000019#include "clang/AST/StmtVisitor.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000020#include "clang/Driver/Compilation.h"
21#include "clang/Driver/Driver.h"
22#include "clang/Driver/Job.h"
Argyrios Kyrtzidis4e03c2b2011-03-07 22:45:01 +000023#include "clang/Driver/ArgList.h"
24#include "clang/Driver/Options.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000025#include "clang/Driver/Tool.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000026#include "clang/Frontend/CompilerInstance.h"
27#include "clang/Frontend/FrontendActions.h"
Daniel Dunbar7b556682009-12-02 03:23:45 +000028#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000029#include "clang/Frontend/FrontendOptions.h"
Douglas Gregor32be4a52010-10-11 21:37:58 +000030#include "clang/Frontend/Utils.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000031#include "clang/Serialization/ASTReader.h"
Sebastian Redl7faa2ec2010-08-18 23:56:37 +000032#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000033#include "clang/Lex/HeaderSearch.h"
34#include "clang/Lex/Preprocessor.h"
Daniel Dunbard58c03f2009-11-15 06:48:46 +000035#include "clang/Basic/TargetOptions.h"
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000036#include "clang/Basic/TargetInfo.h"
37#include "clang/Basic/Diagnostic.h"
Chris Lattner7f9fc3f2011-03-23 04:04:01 +000038#include "llvm/ADT/ArrayRef.h"
Douglas Gregor9b7db622011-02-16 18:16:54 +000039#include "llvm/ADT/StringExtras.h"
Douglas Gregor349d38c2010-08-16 23:08:34 +000040#include "llvm/ADT/StringSet.h"
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +000041#include "llvm/Support/Atomic.h"
Douglas Gregor4db64a42010-01-23 00:14:00 +000042#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000043#include "llvm/Support/Host.h"
44#include "llvm/Support/Path.h"
Douglas Gregordf95a132010-08-09 20:45:32 +000045#include "llvm/Support/raw_ostream.h"
Douglas Gregor385103b2010-07-30 20:58:08 +000046#include "llvm/Support/Timer.h"
Argyrios Kyrtzidis9cca68d2011-07-21 18:44:49 +000047#include "llvm/Support/FileSystem.h"
Argyrios Kyrtzidisa696ece2011-10-10 21:57:12 +000048#include "llvm/Support/Mutex.h"
Ted Kremeneke055f8a2011-10-27 19:44:25 +000049#include "llvm/Support/MutexGuard.h"
Ted Kremenekb547eeb2011-03-18 02:06:56 +000050#include "llvm/Support/CrashRecoveryContext.h"
Douglas Gregor44c181a2010-07-23 00:33:23 +000051#include <cstdlib>
Zhongxing Xuad23ebe2010-07-23 02:15:08 +000052#include <cstdio>
Douglas Gregorcc5888d2010-07-31 00:40:00 +000053#include <sys/stat.h>
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +000054using namespace clang;
55
Douglas Gregor213f18b2010-10-28 15:44:59 +000056using llvm::TimeRecord;
57
58namespace {
59 class SimpleTimer {
60 bool WantTiming;
61 TimeRecord Start;
62 std::string Output;
63
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000064 public:
Douglas Gregor9dba61a2010-11-01 13:48:43 +000065 explicit SimpleTimer(bool WantTiming) : WantTiming(WantTiming) {
Douglas Gregor213f18b2010-10-28 15:44:59 +000066 if (WantTiming)
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000067 Start = TimeRecord::getCurrentTime();
Douglas Gregor213f18b2010-10-28 15:44:59 +000068 }
69
Chris Lattner5f9e2722011-07-23 10:55:15 +000070 void setOutput(const Twine &Output) {
Douglas Gregor213f18b2010-10-28 15:44:59 +000071 if (WantTiming)
Benjamin Krameredfb7ec2010-11-09 20:00:56 +000072 this->Output = Output.str();
Douglas Gregor213f18b2010-10-28 15:44:59 +000073 }
74
Douglas Gregor213f18b2010-10-28 15:44:59 +000075 ~SimpleTimer() {
76 if (WantTiming) {
77 TimeRecord Elapsed = TimeRecord::getCurrentTime();
78 Elapsed -= Start;
79 llvm::errs() << Output << ':';
80 Elapsed.print(Elapsed, llvm::errs());
81 llvm::errs() << '\n';
82 }
83 }
84 };
Ted Kremenek1872b312011-10-27 17:55:18 +000085
86 struct OnDiskData {
87 /// \brief The file in which the precompiled preamble is stored.
88 std::string PreambleFile;
89
90 /// \brief Temporary files that should be removed when the ASTUnit is
91 /// destroyed.
92 SmallVector<llvm::sys::Path, 4> TemporaryFiles;
93
94 /// \brief Erase temporary files.
95 void CleanTemporaryFiles();
96
97 /// \brief Erase the preamble file.
98 void CleanPreambleFile();
99
100 /// \brief Erase temporary files and the preamble file.
101 void Cleanup();
102 };
103}
104
Ted Kremeneke055f8a2011-10-27 19:44:25 +0000105static llvm::sys::SmartMutex<false> &getOnDiskMutex() {
106 static llvm::sys::SmartMutex<false> M(/* recursive = */ true);
107 return M;
108}
109
Ted Kremenek1872b312011-10-27 17:55:18 +0000110static void cleanupOnDiskMapAtExit(void);
111
112typedef llvm::DenseMap<const ASTUnit *, OnDiskData *> OnDiskDataMap;
113static OnDiskDataMap &getOnDiskDataMap() {
114 static OnDiskDataMap M;
115 static bool hasRegisteredAtExit = false;
116 if (!hasRegisteredAtExit) {
117 hasRegisteredAtExit = true;
118 atexit(cleanupOnDiskMapAtExit);
119 }
120 return M;
121}
122
123static void cleanupOnDiskMapAtExit(void) {
Ted Kremeneke055f8a2011-10-27 19:44:25 +0000124 // No mutex required here since we are leaving the program.
Ted Kremenek1872b312011-10-27 17:55:18 +0000125 OnDiskDataMap &M = getOnDiskDataMap();
126 for (OnDiskDataMap::iterator I = M.begin(), E = M.end(); I != E; ++I) {
127 // We don't worry about freeing the memory associated with OnDiskDataMap.
128 // All we care about is erasing stale files.
129 I->second->Cleanup();
130 }
131}
132
133static OnDiskData &getOnDiskData(const ASTUnit *AU) {
Ted Kremeneke055f8a2011-10-27 19:44:25 +0000134 // We require the mutex since we are modifying the structure of the
135 // DenseMap.
136 llvm::MutexGuard Guard(getOnDiskMutex());
Ted Kremenek1872b312011-10-27 17:55:18 +0000137 OnDiskDataMap &M = getOnDiskDataMap();
138 OnDiskData *&D = M[AU];
139 if (!D)
140 D = new OnDiskData();
141 return *D;
142}
143
144static void erasePreambleFile(const ASTUnit *AU) {
145 getOnDiskData(AU).CleanPreambleFile();
146}
147
148static void removeOnDiskEntry(const ASTUnit *AU) {
Ted Kremeneke055f8a2011-10-27 19:44:25 +0000149 // We require the mutex since we are modifying the structure of the
150 // DenseMap.
151 llvm::MutexGuard Guard(getOnDiskMutex());
Ted Kremenek1872b312011-10-27 17:55:18 +0000152 OnDiskDataMap &M = getOnDiskDataMap();
153 OnDiskDataMap::iterator I = M.find(AU);
154 if (I != M.end()) {
155 I->second->Cleanup();
156 delete I->second;
157 M.erase(AU);
158 }
159}
160
161static void setPreambleFile(const ASTUnit *AU, llvm::StringRef preambleFile) {
162 getOnDiskData(AU).PreambleFile = preambleFile;
163}
164
165static const std::string &getPreambleFile(const ASTUnit *AU) {
166 return getOnDiskData(AU).PreambleFile;
167}
168
169void OnDiskData::CleanTemporaryFiles() {
170 for (unsigned I = 0, N = TemporaryFiles.size(); I != N; ++I)
171 TemporaryFiles[I].eraseFromDisk();
172 TemporaryFiles.clear();
173}
174
175void OnDiskData::CleanPreambleFile() {
176 if (!PreambleFile.empty()) {
177 llvm::sys::Path(PreambleFile).eraseFromDisk();
178 PreambleFile.clear();
179 }
180}
181
182void OnDiskData::Cleanup() {
183 CleanTemporaryFiles();
184 CleanPreambleFile();
185}
186
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +0000187void ASTUnit::clearFileLevelDecls() {
188 for (FileDeclsTy::iterator
189 I = FileDecls.begin(), E = FileDecls.end(); I != E; ++I)
190 delete I->second;
191 FileDecls.clear();
192}
193
Ted Kremenek1872b312011-10-27 17:55:18 +0000194void ASTUnit::CleanTemporaryFiles() {
195 getOnDiskData(this).CleanTemporaryFiles();
196}
197
198void ASTUnit::addTemporaryFile(const llvm::sys::Path &TempFile) {
199 getOnDiskData(this).TemporaryFiles.push_back(TempFile);
Douglas Gregor213f18b2010-10-28 15:44:59 +0000200}
201
Douglas Gregoreababfb2010-08-04 05:53:38 +0000202/// \brief After failing to build a precompiled preamble (due to
203/// errors in the source that occurs in the preamble), the number of
204/// reparses during which we'll skip even trying to precompile the
205/// preamble.
206const unsigned DefaultPreambleRebuildInterval = 5;
207
Douglas Gregore3c60a72010-11-17 00:13:31 +0000208/// \brief Tracks the number of ASTUnit objects that are currently active.
209///
210/// Used for debugging purposes only.
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +0000211static llvm::sys::cas_flag ActiveASTUnitObjects;
Douglas Gregore3c60a72010-11-17 00:13:31 +0000212
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000213ASTUnit::ASTUnit(bool _MainFileIsAST)
Argyrios Kyrtzidis62ba9f62011-11-01 17:14:15 +0000214 : Reader(0), OnlyLocalDecls(false), CaptureDiagnostics(false),
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +0000215 MainFileIsAST(_MainFileIsAST),
Douglas Gregor467dc882011-08-25 22:30:56 +0000216 TUKind(TU_Complete), WantTiming(getenv("LIBCLANG_TIMING")),
Argyrios Kyrtzidis15727dd2011-03-05 01:03:48 +0000217 OwnsRemappedFileBuffers(true),
Douglas Gregor213f18b2010-10-28 15:44:59 +0000218 NumStoredDiagnosticsFromDriver(0),
Douglas Gregor671947b2010-08-19 01:33:06 +0000219 PreambleRebuildCounter(0), SavedMainFileBuffer(0), PreambleBuffer(0),
Douglas Gregor727d93e2010-08-17 00:40:40 +0000220 ShouldCacheCodeCompletionResults(false),
Chandler Carruthba7537f2011-07-14 09:02:10 +0000221 NestedMacroExpansions(true),
Douglas Gregor9b7db622011-02-16 18:16:54 +0000222 CompletionCacheTopLevelHashValue(0),
223 PreambleTopLevelHashValue(0),
224 CurrentTopLevelHashValue(0),
Douglas Gregor8b1540c2010-08-19 00:45:44 +0000225 UnsafeToFree(false) {
Douglas Gregore3c60a72010-11-17 00:13:31 +0000226 if (getenv("LIBCLANG_OBJTRACKING")) {
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +0000227 llvm::sys::AtomicIncrement(&ActiveASTUnitObjects);
Douglas Gregore3c60a72010-11-17 00:13:31 +0000228 fprintf(stderr, "+++ %d translation units\n", ActiveASTUnitObjects);
229 }
Douglas Gregor385103b2010-07-30 20:58:08 +0000230}
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000231
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000232ASTUnit::~ASTUnit() {
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +0000233 clearFileLevelDecls();
234
Ted Kremenek1872b312011-10-27 17:55:18 +0000235 // Clean up the temporary files and the preamble file.
236 removeOnDiskEntry(this);
237
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000238 // Free the buffers associated with remapped files. We are required to
239 // perform this operation here because we explicitly request that the
240 // compiler instance *not* free these buffers for each invocation of the
241 // parser.
Ted Kremenek4f327862011-03-21 18:40:17 +0000242 if (Invocation.getPtr() && OwnsRemappedFileBuffers) {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000243 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
244 for (PreprocessorOptions::remapped_file_buffer_iterator
245 FB = PPOpts.remapped_file_buffer_begin(),
246 FBEnd = PPOpts.remapped_file_buffer_end();
247 FB != FBEnd;
248 ++FB)
249 delete FB->second;
250 }
Douglas Gregor28233422010-07-27 14:52:07 +0000251
252 delete SavedMainFileBuffer;
Douglas Gregor671947b2010-08-19 01:33:06 +0000253 delete PreambleBuffer;
254
Douglas Gregor213f18b2010-10-28 15:44:59 +0000255 ClearCachedCompletionResults();
Douglas Gregore3c60a72010-11-17 00:13:31 +0000256
257 if (getenv("LIBCLANG_OBJTRACKING")) {
Douglas Gregor1fd9e0d2010-12-07 00:05:48 +0000258 llvm::sys::AtomicDecrement(&ActiveASTUnitObjects);
Douglas Gregore3c60a72010-11-17 00:13:31 +0000259 fprintf(stderr, "--- %d translation units\n", ActiveASTUnitObjects);
260 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000261}
262
Douglas Gregor8071e422010-08-15 06:18:01 +0000263/// \brief Determine the set of code-completion contexts in which this
264/// declaration should be shown.
265static unsigned getDeclShowContexts(NamedDecl *ND,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000266 const LangOptions &LangOpts,
267 bool &IsNestedNameSpecifier) {
268 IsNestedNameSpecifier = false;
269
Douglas Gregor8071e422010-08-15 06:18:01 +0000270 if (isa<UsingShadowDecl>(ND))
271 ND = dyn_cast<NamedDecl>(ND->getUnderlyingDecl());
272 if (!ND)
273 return 0;
274
275 unsigned Contexts = 0;
276 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND) ||
277 isa<ClassTemplateDecl>(ND) || isa<TemplateTemplateParmDecl>(ND)) {
278 // Types can appear in these contexts.
279 if (LangOpts.CPlusPlus || !isa<TagDecl>(ND))
280 Contexts |= (1 << (CodeCompletionContext::CCC_TopLevel - 1))
281 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
282 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
283 | (1 << (CodeCompletionContext::CCC_Statement - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000284 | (1 << (CodeCompletionContext::CCC_Type - 1))
285 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000286
287 // In C++, types can appear in expressions contexts (for functional casts).
288 if (LangOpts.CPlusPlus)
289 Contexts |= (1 << (CodeCompletionContext::CCC_Expression - 1));
290
291 // In Objective-C, message sends can send interfaces. In Objective-C++,
292 // all types are available due to functional casts.
293 if (LangOpts.CPlusPlus || isa<ObjCInterfaceDecl>(ND))
294 Contexts |= (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
Douglas Gregor3da626b2011-07-07 16:03:39 +0000295
296 // In Objective-C, you can only be a subclass of another Objective-C class
297 if (isa<ObjCInterfaceDecl>(ND))
Douglas Gregor0f91c8c2011-07-30 06:55:39 +0000298 Contexts |= (1 << (CodeCompletionContext::CCC_ObjCInterfaceName - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000299
300 // Deal with tag names.
301 if (isa<EnumDecl>(ND)) {
302 Contexts |= (1 << (CodeCompletionContext::CCC_EnumTag - 1));
303
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000304 // Part of the nested-name-specifier in C++0x.
Douglas Gregor8071e422010-08-15 06:18:01 +0000305 if (LangOpts.CPlusPlus0x)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000306 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000307 } else if (RecordDecl *Record = dyn_cast<RecordDecl>(ND)) {
308 if (Record->isUnion())
309 Contexts |= (1 << (CodeCompletionContext::CCC_UnionTag - 1));
310 else
311 Contexts |= (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
312
Douglas Gregor8071e422010-08-15 06:18:01 +0000313 if (LangOpts.CPlusPlus)
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000314 IsNestedNameSpecifier = true;
Douglas Gregor52779fb2010-09-23 23:01:17 +0000315 } else if (isa<ClassTemplateDecl>(ND))
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000316 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000317 } else if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
318 // Values can appear in these contexts.
319 Contexts = (1 << (CodeCompletionContext::CCC_Statement - 1))
320 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000321 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
Douglas Gregor8071e422010-08-15 06:18:01 +0000322 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1));
323 } else if (isa<ObjCProtocolDecl>(ND)) {
324 Contexts = (1 << (CodeCompletionContext::CCC_ObjCProtocolName - 1));
Douglas Gregor3da626b2011-07-07 16:03:39 +0000325 } else if (isa<ObjCCategoryDecl>(ND)) {
326 Contexts = (1 << (CodeCompletionContext::CCC_ObjCCategoryName - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000327 } else if (isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000328 Contexts = (1 << (CodeCompletionContext::CCC_Namespace - 1));
Douglas Gregor8071e422010-08-15 06:18:01 +0000329
330 // Part of the nested-name-specifier.
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000331 IsNestedNameSpecifier = true;
Douglas Gregor8071e422010-08-15 06:18:01 +0000332 }
333
334 return Contexts;
335}
336
Douglas Gregor87c08a52010-08-13 22:48:40 +0000337void ASTUnit::CacheCodeCompletionResults() {
338 if (!TheSema)
339 return;
340
Douglas Gregor213f18b2010-10-28 15:44:59 +0000341 SimpleTimer Timer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +0000342 Timer.setOutput("Cache global code completions for " + getMainFileName());
Douglas Gregor87c08a52010-08-13 22:48:40 +0000343
344 // Clear out the previous results.
345 ClearCachedCompletionResults();
346
347 // Gather the set of global code completions.
John McCall0a2c5e22010-08-25 06:19:51 +0000348 typedef CodeCompletionResult Result;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000349 SmallVector<Result, 8> Results;
Douglas Gregor48601b32011-02-16 19:08:06 +0000350 CachedCompletionAllocator = new GlobalCodeCompletionAllocator;
351 TheSema->GatherGlobalCodeCompletions(*CachedCompletionAllocator, Results);
Douglas Gregor87c08a52010-08-13 22:48:40 +0000352
353 // Translate global code completions into cached completions.
Douglas Gregorf5586f62010-08-16 18:08:11 +0000354 llvm::DenseMap<CanQualType, unsigned> CompletionTypes;
355
Douglas Gregor87c08a52010-08-13 22:48:40 +0000356 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
357 switch (Results[I].Kind) {
Douglas Gregor8071e422010-08-15 06:18:01 +0000358 case Result::RK_Declaration: {
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000359 bool IsNestedNameSpecifier = false;
Douglas Gregor8071e422010-08-15 06:18:01 +0000360 CachedCodeCompletionResult CachedResult;
Douglas Gregor218937c2011-02-01 19:23:04 +0000361 CachedResult.Completion = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor48601b32011-02-16 19:08:06 +0000362 *CachedCompletionAllocator);
Douglas Gregor8071e422010-08-15 06:18:01 +0000363 CachedResult.ShowInContexts = getDeclShowContexts(Results[I].Declaration,
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000364 Ctx->getLangOptions(),
365 IsNestedNameSpecifier);
Douglas Gregor8071e422010-08-15 06:18:01 +0000366 CachedResult.Priority = Results[I].Priority;
367 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000368 CachedResult.Availability = Results[I].Availability;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000369
Douglas Gregorf5586f62010-08-16 18:08:11 +0000370 // Keep track of the type of this completion in an ASTContext-agnostic
371 // way.
Douglas Gregorc4421e92010-08-16 16:46:30 +0000372 QualType UsageType = getDeclUsageType(*Ctx, Results[I].Declaration);
Douglas Gregorf5586f62010-08-16 18:08:11 +0000373 if (UsageType.isNull()) {
Douglas Gregorc4421e92010-08-16 16:46:30 +0000374 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000375 CachedResult.Type = 0;
376 } else {
377 CanQualType CanUsageType
378 = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
379 CachedResult.TypeClass = getSimplifiedTypeClass(CanUsageType);
380
381 // Determine whether we have already seen this type. If so, we save
382 // ourselves the work of formatting the type string by using the
383 // temporary, CanQualType-based hash table to find the associated value.
384 unsigned &TypeValue = CompletionTypes[CanUsageType];
385 if (TypeValue == 0) {
386 TypeValue = CompletionTypes.size();
387 CachedCompletionTypes[QualType(CanUsageType).getAsString()]
388 = TypeValue;
389 }
390
391 CachedResult.Type = TypeValue;
Douglas Gregorc4421e92010-08-16 16:46:30 +0000392 }
Douglas Gregorf5586f62010-08-16 18:08:11 +0000393
Douglas Gregor8071e422010-08-15 06:18:01 +0000394 CachedCompletionResults.push_back(CachedResult);
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000395
396 /// Handle nested-name-specifiers in C++.
397 if (TheSema->Context.getLangOptions().CPlusPlus &&
398 IsNestedNameSpecifier && !Results[I].StartsNestedNameSpecifier) {
399 // The contexts in which a nested-name-specifier can appear in C++.
400 unsigned NNSContexts
401 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
402 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
403 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
404 | (1 << (CodeCompletionContext::CCC_Statement - 1))
405 | (1 << (CodeCompletionContext::CCC_Expression - 1))
406 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
407 | (1 << (CodeCompletionContext::CCC_EnumTag - 1))
408 | (1 << (CodeCompletionContext::CCC_UnionTag - 1))
409 | (1 << (CodeCompletionContext::CCC_ClassOrStructTag - 1))
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000410 | (1 << (CodeCompletionContext::CCC_Type - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000411 | (1 << (CodeCompletionContext::CCC_PotentiallyQualifiedName - 1))
412 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1));
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000413
414 if (isa<NamespaceDecl>(Results[I].Declaration) ||
415 isa<NamespaceAliasDecl>(Results[I].Declaration))
416 NNSContexts |= (1 << (CodeCompletionContext::CCC_Namespace - 1));
417
418 if (unsigned RemainingContexts
419 = NNSContexts & ~CachedResult.ShowInContexts) {
420 // If there any contexts where this completion can be a
421 // nested-name-specifier but isn't already an option, create a
422 // nested-name-specifier completion.
423 Results[I].StartsNestedNameSpecifier = true;
Douglas Gregor218937c2011-02-01 19:23:04 +0000424 CachedResult.Completion
425 = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor48601b32011-02-16 19:08:06 +0000426 *CachedCompletionAllocator);
Douglas Gregora5fb7c32010-08-16 23:05:20 +0000427 CachedResult.ShowInContexts = RemainingContexts;
428 CachedResult.Priority = CCP_NestedNameSpecifier;
429 CachedResult.TypeClass = STC_Void;
430 CachedResult.Type = 0;
431 CachedCompletionResults.push_back(CachedResult);
432 }
433 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000434 break;
Douglas Gregor8071e422010-08-15 06:18:01 +0000435 }
436
Douglas Gregor87c08a52010-08-13 22:48:40 +0000437 case Result::RK_Keyword:
438 case Result::RK_Pattern:
439 // Ignore keywords and patterns; we don't care, since they are so
440 // easily regenerated.
441 break;
442
443 case Result::RK_Macro: {
444 CachedCodeCompletionResult CachedResult;
Douglas Gregor218937c2011-02-01 19:23:04 +0000445 CachedResult.Completion
446 = Results[I].CreateCodeCompletionString(*TheSema,
Douglas Gregor48601b32011-02-16 19:08:06 +0000447 *CachedCompletionAllocator);
Douglas Gregor87c08a52010-08-13 22:48:40 +0000448 CachedResult.ShowInContexts
449 = (1 << (CodeCompletionContext::CCC_TopLevel - 1))
450 | (1 << (CodeCompletionContext::CCC_ObjCInterface - 1))
451 | (1 << (CodeCompletionContext::CCC_ObjCImplementation - 1))
452 | (1 << (CodeCompletionContext::CCC_ObjCIvarList - 1))
453 | (1 << (CodeCompletionContext::CCC_ClassStructUnion - 1))
454 | (1 << (CodeCompletionContext::CCC_Statement - 1))
455 | (1 << (CodeCompletionContext::CCC_Expression - 1))
Douglas Gregor1fbb4472010-08-24 20:21:13 +0000456 | (1 << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
Douglas Gregorf29c5232010-08-24 22:20:20 +0000457 | (1 << (CodeCompletionContext::CCC_MacroNameUse - 1))
Douglas Gregor02688102010-09-14 23:59:36 +0000458 | (1 << (CodeCompletionContext::CCC_PreprocessorExpression - 1))
Douglas Gregor5c722c702011-02-18 23:30:37 +0000459 | (1 << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
460 | (1 << (CodeCompletionContext::CCC_OtherWithMacros - 1));
Douglas Gregor2ccccb32010-08-23 18:23:48 +0000461
Douglas Gregor87c08a52010-08-13 22:48:40 +0000462 CachedResult.Priority = Results[I].Priority;
463 CachedResult.Kind = Results[I].CursorKind;
Douglas Gregor58ddb602010-08-23 23:00:57 +0000464 CachedResult.Availability = Results[I].Availability;
Douglas Gregor1827e102010-08-16 16:18:59 +0000465 CachedResult.TypeClass = STC_Void;
Douglas Gregorf5586f62010-08-16 18:08:11 +0000466 CachedResult.Type = 0;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000467 CachedCompletionResults.push_back(CachedResult);
468 break;
469 }
470 }
Douglas Gregor87c08a52010-08-13 22:48:40 +0000471 }
Douglas Gregor9b7db622011-02-16 18:16:54 +0000472
473 // Save the current top-level hash value.
474 CompletionCacheTopLevelHashValue = CurrentTopLevelHashValue;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000475}
476
477void ASTUnit::ClearCachedCompletionResults() {
Douglas Gregor87c08a52010-08-13 22:48:40 +0000478 CachedCompletionResults.clear();
Douglas Gregorf5586f62010-08-16 18:08:11 +0000479 CachedCompletionTypes.clear();
Douglas Gregor48601b32011-02-16 19:08:06 +0000480 CachedCompletionAllocator = 0;
Douglas Gregor87c08a52010-08-13 22:48:40 +0000481}
482
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000483namespace {
484
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000485/// \brief Gathers information from ASTReader that will be used to initialize
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000486/// a Preprocessor.
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000487class ASTInfoCollector : public ASTReaderListener {
Douglas Gregor998b3d32011-09-01 23:39:15 +0000488 Preprocessor &PP;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000489 ASTContext &Context;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000490 LangOptions &LangOpt;
491 HeaderSearch &HSI;
Douglas Gregor998b3d32011-09-01 23:39:15 +0000492 llvm::IntrusiveRefCntPtr<TargetInfo> &Target;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000493 std::string &Predefines;
494 unsigned &Counter;
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000496 unsigned NumHeaderInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000497
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000498 bool InitializedLanguage;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000499public:
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000500 ASTInfoCollector(Preprocessor &PP, ASTContext &Context, LangOptions &LangOpt,
501 HeaderSearch &HSI,
Douglas Gregor998b3d32011-09-01 23:39:15 +0000502 llvm::IntrusiveRefCntPtr<TargetInfo> &Target,
503 std::string &Predefines,
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000504 unsigned &Counter)
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000505 : PP(PP), Context(Context), LangOpt(LangOpt), HSI(HSI), Target(Target),
Douglas Gregor998b3d32011-09-01 23:39:15 +0000506 Predefines(Predefines), Counter(Counter), NumHeaderInfos(0),
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000507 InitializedLanguage(false) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000508
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000509 virtual bool ReadLanguageOptions(const LangOptions &LangOpts) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000510 if (InitializedLanguage)
Douglas Gregor998b3d32011-09-01 23:39:15 +0000511 return false;
512
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000513 LangOpt = LangOpts;
Douglas Gregor998b3d32011-09-01 23:39:15 +0000514
515 // Initialize the preprocessor.
516 PP.Initialize(*Target);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000517
518 // Initialize the ASTContext
519 Context.InitBuiltinTypes(*Target);
520
521 InitializedLanguage = true;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000522 return false;
523 }
Mike Stump1eb44332009-09-09 15:08:12 +0000524
Chris Lattner5f9e2722011-07-23 10:55:15 +0000525 virtual bool ReadTargetTriple(StringRef Triple) {
Douglas Gregor998b3d32011-09-01 23:39:15 +0000526 // If we've already initialized the target, don't do it again.
527 if (Target)
528 return false;
529
530 // FIXME: This is broken, we should store the TargetOptions in the AST file.
531 TargetOptions TargetOpts;
532 TargetOpts.ABI = "";
533 TargetOpts.CXXABI = "";
534 TargetOpts.CPU = "";
535 TargetOpts.Features.clear();
536 TargetOpts.Triple = Triple;
537 Target = TargetInfo::CreateTargetInfo(PP.getDiagnostics(), TargetOpts);
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000538 return false;
539 }
Mike Stump1eb44332009-09-09 15:08:12 +0000540
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000541 virtual bool ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000542 StringRef OriginalFileName,
Nick Lewycky277a6e72011-02-23 21:16:44 +0000543 std::string &SuggestedPredefines,
544 FileManager &FileMgr) {
Sebastian Redlcb481aa2010-07-14 23:29:55 +0000545 Predefines = Buffers[0].Data;
546 for (unsigned I = 1, N = Buffers.size(); I != N; ++I) {
547 Predefines += Buffers[I].Data;
548 }
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000549 return false;
550 }
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Douglas Gregorec1afbf2010-03-16 19:09:18 +0000552 virtual void ReadHeaderFileInfo(const HeaderFileInfo &HFI, unsigned ID) {
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000553 HSI.setHeaderFileInfoForUID(HFI, NumHeaderInfos++);
554 }
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000556 virtual void ReadCounter(unsigned Value) {
557 Counter = Value;
558 }
559};
560
David Blaikie26e7a902011-09-26 00:01:39 +0000561class StoredDiagnosticConsumer : public DiagnosticConsumer {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000562 SmallVectorImpl<StoredDiagnostic> &StoredDiags;
Douglas Gregora88084b2010-02-18 18:08:43 +0000563
564public:
David Blaikie26e7a902011-09-26 00:01:39 +0000565 explicit StoredDiagnosticConsumer(
Chris Lattner5f9e2722011-07-23 10:55:15 +0000566 SmallVectorImpl<StoredDiagnostic> &StoredDiags)
Douglas Gregora88084b2010-02-18 18:08:43 +0000567 : StoredDiags(StoredDiags) { }
568
David Blaikied6471f72011-09-25 23:23:43 +0000569 virtual void HandleDiagnostic(DiagnosticsEngine::Level Level,
David Blaikie40847cf2011-09-26 01:18:08 +0000570 const Diagnostic &Info);
Douglas Gregoraee526e2011-09-29 00:38:00 +0000571
572 DiagnosticConsumer *clone(DiagnosticsEngine &Diags) const {
573 // Just drop any diagnostics that come from cloned consumers; they'll
574 // have different source managers anyway.
575 return new IgnoringDiagConsumer();
576 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000577};
578
579/// \brief RAII object that optionally captures diagnostics, if
580/// there is no diagnostic client to capture them already.
581class CaptureDroppedDiagnostics {
David Blaikied6471f72011-09-25 23:23:43 +0000582 DiagnosticsEngine &Diags;
David Blaikie26e7a902011-09-26 00:01:39 +0000583 StoredDiagnosticConsumer Client;
David Blaikie78ad0b92011-09-25 23:39:51 +0000584 DiagnosticConsumer *PreviousClient;
Douglas Gregora88084b2010-02-18 18:08:43 +0000585
586public:
David Blaikied6471f72011-09-25 23:23:43 +0000587 CaptureDroppedDiagnostics(bool RequestCapture, DiagnosticsEngine &Diags,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000588 SmallVectorImpl<StoredDiagnostic> &StoredDiags)
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000589 : Diags(Diags), Client(StoredDiags), PreviousClient(0)
Douglas Gregora88084b2010-02-18 18:08:43 +0000590 {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000591 if (RequestCapture || Diags.getClient() == 0) {
592 PreviousClient = Diags.takeClient();
Douglas Gregora88084b2010-02-18 18:08:43 +0000593 Diags.setClient(&Client);
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000594 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000595 }
596
597 ~CaptureDroppedDiagnostics() {
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000598 if (Diags.getClient() == &Client) {
599 Diags.takeClient();
600 Diags.setClient(PreviousClient);
601 }
Douglas Gregora88084b2010-02-18 18:08:43 +0000602 }
603};
604
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000605} // anonymous namespace
606
David Blaikie26e7a902011-09-26 00:01:39 +0000607void StoredDiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level Level,
David Blaikie40847cf2011-09-26 01:18:08 +0000608 const Diagnostic &Info) {
Argyrios Kyrtzidisf2224d82010-11-18 20:06:46 +0000609 // Default implementation (Warnings/errors count).
David Blaikie78ad0b92011-09-25 23:39:51 +0000610 DiagnosticConsumer::HandleDiagnostic(Level, Info);
Argyrios Kyrtzidisf2224d82010-11-18 20:06:46 +0000611
Douglas Gregora88084b2010-02-18 18:08:43 +0000612 StoredDiags.push_back(StoredDiagnostic(Level, Info));
613}
614
Steve Naroff77accc12009-09-03 18:19:54 +0000615const std::string &ASTUnit::getOriginalSourceFileName() {
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000616 return OriginalSourceFile;
Steve Naroff77accc12009-09-03 18:19:54 +0000617}
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000618
Chris Lattner5f9e2722011-07-23 10:55:15 +0000619llvm::MemoryBuffer *ASTUnit::getBufferForFile(StringRef Filename,
Chris Lattner75dfb652010-11-23 09:19:42 +0000620 std::string *ErrorStr) {
Chris Lattner39b49bc2010-11-23 08:35:12 +0000621 assert(FileMgr);
Chris Lattner75dfb652010-11-23 09:19:42 +0000622 return FileMgr->getBufferForFile(Filename, ErrorStr);
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000623}
624
Douglas Gregore47be3e2010-11-11 00:39:14 +0000625/// \brief Configure the diagnostics object for use with ASTUnit.
David Blaikied6471f72011-09-25 23:23:43 +0000626void ASTUnit::ConfigureDiags(llvm::IntrusiveRefCntPtr<DiagnosticsEngine> &Diags,
Douglas Gregor0b53cf82011-01-19 01:02:47 +0000627 const char **ArgBegin, const char **ArgEnd,
Douglas Gregore47be3e2010-11-11 00:39:14 +0000628 ASTUnit &AST, bool CaptureDiagnostics) {
629 if (!Diags.getPtr()) {
630 // No diagnostics engine was provided, so create our own diagnostics object
631 // with the default options.
632 DiagnosticOptions DiagOpts;
David Blaikie78ad0b92011-09-25 23:39:51 +0000633 DiagnosticConsumer *Client = 0;
Douglas Gregore47be3e2010-11-11 00:39:14 +0000634 if (CaptureDiagnostics)
David Blaikie26e7a902011-09-26 00:01:39 +0000635 Client = new StoredDiagnosticConsumer(AST.StoredDiagnostics);
Douglas Gregor0b53cf82011-01-19 01:02:47 +0000636 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgEnd- ArgBegin,
637 ArgBegin, Client);
Douglas Gregore47be3e2010-11-11 00:39:14 +0000638 } else if (CaptureDiagnostics) {
David Blaikie26e7a902011-09-26 00:01:39 +0000639 Diags->setClient(new StoredDiagnosticConsumer(AST.StoredDiagnostics));
Douglas Gregore47be3e2010-11-11 00:39:14 +0000640 }
641}
642
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000643ASTUnit *ASTUnit::LoadFromASTFile(const std::string &Filename,
David Blaikied6471f72011-09-25 23:23:43 +0000644 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000645 const FileSystemOptions &FileSystemOpts,
Ted Kremenek5cf48762009-10-17 00:34:24 +0000646 bool OnlyLocalDecls,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000647 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +0000648 unsigned NumRemappedFiles,
649 bool CaptureDiagnostics) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000650 llvm::OwningPtr<ASTUnit> AST(new ASTUnit(true));
Ted Kremenekb547eeb2011-03-18 02:06:56 +0000651
652 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +0000653 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
654 ASTUnitCleanup(AST.get());
David Blaikied6471f72011-09-25 23:23:43 +0000655 llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
656 llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine> >
Ted Kremenek25a11e12011-03-22 01:15:24 +0000657 DiagCleanup(Diags.getPtr());
Ted Kremenekb547eeb2011-03-18 02:06:56 +0000658
Douglas Gregor0b53cf82011-01-19 01:02:47 +0000659 ConfigureDiags(Diags, 0, 0, *AST, CaptureDiagnostics);
Douglas Gregorabc563f2010-07-19 21:46:24 +0000660
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000661 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +0000662 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor28019772010-04-05 23:52:57 +0000663 AST->Diagnostics = Diags;
Ted Kremenek4f327862011-03-21 18:40:17 +0000664 AST->FileMgr = new FileManager(FileSystemOpts);
665 AST->SourceMgr = new SourceManager(AST->getDiagnostics(),
666 AST->getFileManager());
Chris Lattner39b49bc2010-11-23 08:35:12 +0000667 AST->HeaderInfo.reset(new HeaderSearch(AST->getFileManager()));
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000668
Douglas Gregor4db64a42010-01-23 00:14:00 +0000669 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000670 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
671 if (const llvm::MemoryBuffer *
672 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
673 // Create the file entry for the file that we're mapping from.
674 const FileEntry *FromFile
675 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
676 memBuf->getBufferSize(),
677 0);
678 if (!FromFile) {
679 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
680 << RemappedFiles[I].first;
681 delete memBuf;
682 continue;
683 }
684
685 // Override the contents of the "from" file with the contents of
686 // the "to" file.
687 AST->getSourceManager().overrideFileContents(FromFile, memBuf);
688
689 } else {
690 const char *fname = fileOrBuf.get<const char *>();
691 const FileEntry *ToFile = AST->FileMgr->getFile(fname);
692 if (!ToFile) {
693 AST->getDiagnostics().Report(diag::err_fe_remap_missing_to_file)
694 << RemappedFiles[I].first << fname;
695 continue;
696 }
697
698 // Create the file entry for the file that we're mapping from.
699 const FileEntry *FromFile
700 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first,
701 ToFile->getSize(),
702 0);
703 if (!FromFile) {
704 AST->getDiagnostics().Report(diag::err_fe_remap_missing_from_file)
705 << RemappedFiles[I].first;
706 delete memBuf;
707 continue;
708 }
709
710 // Override the contents of the "from" file with the contents of
711 // the "to" file.
712 AST->getSourceManager().overrideFileContents(FromFile, ToFile);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000713 }
Douglas Gregor4db64a42010-01-23 00:14:00 +0000714 }
715
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000716 // Gather Info for preprocessor construction later on.
Mike Stump1eb44332009-09-09 15:08:12 +0000717
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000718 HeaderSearch &HeaderInfo = *AST->HeaderInfo.get();
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000719 std::string Predefines;
720 unsigned Counter;
721
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000722 llvm::OwningPtr<ASTReader> Reader;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000723
Douglas Gregor998b3d32011-09-01 23:39:15 +0000724 AST->PP = new Preprocessor(AST->getDiagnostics(), AST->ASTFileLangOpts,
725 /*Target=*/0, AST->getSourceManager(), HeaderInfo,
726 *AST,
727 /*IILookup=*/0,
728 /*OwnsHeaderSearch=*/false,
729 /*DelayInitialization=*/true);
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000730 Preprocessor &PP = *AST->PP;
731
732 AST->Ctx = new ASTContext(AST->ASTFileLangOpts,
733 AST->getSourceManager(),
734 /*Target=*/0,
735 PP.getIdentifierTable(),
736 PP.getSelectorTable(),
737 PP.getBuiltinInfo(),
738 /* size_reserve = */0,
739 /*DelayInitialization=*/true);
740 ASTContext &Context = *AST->Ctx;
Douglas Gregor998b3d32011-09-01 23:39:15 +0000741
Douglas Gregorf8a1e512011-09-02 00:26:20 +0000742 Reader.reset(new ASTReader(PP, Context));
Ted Kremenek8c647de2011-05-04 23:27:12 +0000743
744 // Recover resources if we crash before exiting this method.
745 llvm::CrashRecoveryContextCleanupRegistrar<ASTReader>
746 ReaderCleanup(Reader.get());
747
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000748 Reader->setListener(new ASTInfoCollector(*AST->PP, Context,
Douglas Gregor998b3d32011-09-01 23:39:15 +0000749 AST->ASTFileLangOpts, HeaderInfo,
750 AST->Target, Predefines, Counter));
Daniel Dunbarcc318932009-09-03 05:59:35 +0000751
Douglas Gregor72a9ae12011-07-22 16:00:58 +0000752 switch (Reader->ReadAST(Filename, serialization::MK_MainFile)) {
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000753 case ASTReader::Success:
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000754 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000755
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000756 case ASTReader::Failure:
757 case ASTReader::IgnorePCH:
Douglas Gregor3687e9d2010-04-05 21:10:19 +0000758 AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000759 return NULL;
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000760 }
Mike Stump1eb44332009-09-09 15:08:12 +0000761
Daniel Dunbar68d40e22009-12-02 08:44:16 +0000762 AST->OriginalSourceFile = Reader->getOriginalSourceFile();
763
Daniel Dunbard5b61262009-09-21 03:03:47 +0000764 PP.setPredefines(Reader->getSuggestedPredefines());
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000765 PP.setCounterValue(Counter);
Mike Stump1eb44332009-09-09 15:08:12 +0000766
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000767 // Attach the AST reader to the AST context as an external AST
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000768 // source, so that declarations will be deserialized from the
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000769 // AST file as needed.
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000770 ASTReader *ReaderPtr = Reader.get();
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000771 llvm::OwningPtr<ExternalASTSource> Source(Reader.take());
Ted Kremenek8c647de2011-05-04 23:27:12 +0000772
773 // Unregister the cleanup for ASTReader. It will get cleaned up
774 // by the ASTUnit cleanup.
775 ReaderCleanup.unregister();
776
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000777 Context.setExternalSource(Source);
778
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000779 // Create an AST consumer, even though it isn't used.
780 AST->Consumer.reset(new ASTConsumer);
781
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000782 // Create a semantic analysis object and tell the AST reader about it.
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000783 AST->TheSema.reset(new Sema(PP, Context, *AST->Consumer));
784 AST->TheSema->Initialize();
785 ReaderPtr->InitializeSema(*AST->TheSema);
Argyrios Kyrtzidis62ba9f62011-11-01 17:14:15 +0000786 AST->Reader = ReaderPtr;
Douglas Gregor914ed9d2010-08-13 03:15:25 +0000787
Mike Stump1eb44332009-09-09 15:08:12 +0000788 return AST.take();
Argyrios Kyrtzidis0853a022009-06-20 08:08:23 +0000789}
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000790
791namespace {
792
Douglas Gregor9b7db622011-02-16 18:16:54 +0000793/// \brief Preprocessor callback class that updates a hash value with the names
794/// of all macros that have been defined by the translation unit.
795class MacroDefinitionTrackerPPCallbacks : public PPCallbacks {
796 unsigned &Hash;
797
798public:
799 explicit MacroDefinitionTrackerPPCallbacks(unsigned &Hash) : Hash(Hash) { }
800
801 virtual void MacroDefined(const Token &MacroNameTok, const MacroInfo *MI) {
802 Hash = llvm::HashString(MacroNameTok.getIdentifierInfo()->getName(), Hash);
803 }
804};
805
806/// \brief Add the given declaration to the hash of all top-level entities.
807void AddTopLevelDeclarationToHash(Decl *D, unsigned &Hash) {
808 if (!D)
809 return;
810
811 DeclContext *DC = D->getDeclContext();
812 if (!DC)
813 return;
814
815 if (!(DC->isTranslationUnit() || DC->getLookupParent()->isTranslationUnit()))
816 return;
817
818 if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) {
819 if (ND->getIdentifier())
820 Hash = llvm::HashString(ND->getIdentifier()->getName(), Hash);
821 else if (DeclarationName Name = ND->getDeclName()) {
822 std::string NameStr = Name.getAsString();
823 Hash = llvm::HashString(NameStr, Hash);
824 }
825 return;
826 }
827
828 if (ObjCForwardProtocolDecl *Forward
829 = dyn_cast<ObjCForwardProtocolDecl>(D)) {
830 for (ObjCForwardProtocolDecl::protocol_iterator
831 P = Forward->protocol_begin(),
832 PEnd = Forward->protocol_end();
833 P != PEnd; ++P)
834 AddTopLevelDeclarationToHash(*P, Hash);
835 return;
836 }
837
Chris Lattner5f9e2722011-07-23 10:55:15 +0000838 if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(D)) {
Fariborz Jahanian95ed7782011-08-27 20:50:59 +0000839 AddTopLevelDeclarationToHash(Class->getForwardInterfaceDecl(), Hash);
Douglas Gregor9b7db622011-02-16 18:16:54 +0000840 return;
841 }
842}
843
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000844class TopLevelDeclTrackerConsumer : public ASTConsumer {
845 ASTUnit &Unit;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000846 unsigned &Hash;
847
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000848public:
Douglas Gregor9b7db622011-02-16 18:16:54 +0000849 TopLevelDeclTrackerConsumer(ASTUnit &_Unit, unsigned &Hash)
850 : Unit(_Unit), Hash(Hash) {
851 Hash = 0;
852 }
Douglas Gregor9b7db622011-02-16 18:16:54 +0000853
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +0000854 void handleTopLevelDecl(Decl *D) {
855 // FIXME: Currently ObjC method declarations are incorrectly being
856 // reported as top-level declarations, even though their DeclContext
857 // is the containing ObjC @interface/@implementation. This is a
858 // fundamental problem in the parser right now.
859 if (isa<ObjCMethodDecl>(D))
860 return;
861
862 AddTopLevelDeclarationToHash(D, Hash);
863 Unit.addTopLevelDecl(D);
864
865 handleFileLevelDecl(D);
866 }
867
868 void handleFileLevelDecl(Decl *D) {
869 Unit.addFileLevelDecl(D);
870 if (NamespaceDecl *NSD = dyn_cast<NamespaceDecl>(D)) {
871 for (NamespaceDecl::decl_iterator
872 I = NSD->decls_begin(), E = NSD->decls_end(); I != E; ++I)
873 handleFileLevelDecl(*I);
Ted Kremenekda5a4282010-05-03 20:16:35 +0000874 }
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000875 }
Sebastian Redl27372b42010-08-11 18:52:41 +0000876
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +0000877 void HandleTopLevelDecl(DeclGroupRef D) {
878 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it)
879 handleTopLevelDecl(*it);
880 }
881
Sebastian Redl27372b42010-08-11 18:52:41 +0000882 // We're not interested in "interesting" decls.
883 void HandleInterestingDecl(DeclGroupRef) {}
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +0000884
885 void HandleTopLevelDeclInObjCContainer(DeclGroupRef D) {
886 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it)
887 handleTopLevelDecl(*it);
888 }
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000889};
890
891class TopLevelDeclTrackerAction : public ASTFrontendAction {
892public:
893 ASTUnit &Unit;
894
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000895 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000896 StringRef InFile) {
Douglas Gregor9b7db622011-02-16 18:16:54 +0000897 CI.getPreprocessor().addPPCallbacks(
898 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
899 return new TopLevelDeclTrackerConsumer(Unit,
900 Unit.getCurrentTopLevelHashValue());
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000901 }
902
903public:
Daniel Dunbarf772d1e2009-12-04 08:17:33 +0000904 TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
905
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000906 virtual bool hasCodeCompletionSupport() const { return false; }
Douglas Gregor467dc882011-08-25 22:30:56 +0000907 virtual TranslationUnitKind getTranslationUnitKind() {
908 return Unit.getTranslationUnitKind();
Douglas Gregordf95a132010-08-09 20:45:32 +0000909 }
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000910};
911
Argyrios Kyrtzidis92ddef12011-09-19 20:40:48 +0000912class PrecompilePreambleConsumer : public PCHGenerator {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000913 ASTUnit &Unit;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000914 unsigned &Hash;
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000915 std::vector<Decl *> TopLevelDecls;
Douglas Gregor89d99802010-11-30 06:16:57 +0000916
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000917public:
Douglas Gregor9293ba82011-08-25 22:35:51 +0000918 PrecompilePreambleConsumer(ASTUnit &Unit, const Preprocessor &PP,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000919 StringRef isysroot, raw_ostream *Out)
Douglas Gregor7143aab2011-09-01 17:04:32 +0000920 : PCHGenerator(PP, "", /*IsModule=*/false, isysroot, Out), Unit(Unit),
Douglas Gregor9b7db622011-02-16 18:16:54 +0000921 Hash(Unit.getCurrentTopLevelHashValue()) {
922 Hash = 0;
923 }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000924
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000925 virtual void HandleTopLevelDecl(DeclGroupRef D) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000926 for (DeclGroupRef::iterator it = D.begin(), ie = D.end(); it != ie; ++it) {
927 Decl *D = *it;
928 // FIXME: Currently ObjC method declarations are incorrectly being
929 // reported as top-level declarations, even though their DeclContext
930 // is the containing ObjC @interface/@implementation. This is a
931 // fundamental problem in the parser right now.
932 if (isa<ObjCMethodDecl>(D))
933 continue;
Douglas Gregor9b7db622011-02-16 18:16:54 +0000934 AddTopLevelDeclarationToHash(D, Hash);
Douglas Gregoreb8837b2010-08-03 19:06:41 +0000935 TopLevelDecls.push_back(D);
936 }
937 }
938
939 virtual void HandleTranslationUnit(ASTContext &Ctx) {
940 PCHGenerator::HandleTranslationUnit(Ctx);
941 if (!Unit.getDiagnostics().hasErrorOccurred()) {
942 // Translate the top-level declarations we captured during
943 // parsing into declaration IDs in the precompiled
944 // preamble. This will allow us to deserialize those top-level
945 // declarations when requested.
946 for (unsigned I = 0, N = TopLevelDecls.size(); I != N; ++I)
947 Unit.addTopLevelDeclFromPreamble(
948 getWriter().getDeclID(TopLevelDecls[I]));
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000949 }
950 }
951};
952
953class PrecompilePreambleAction : public ASTFrontendAction {
954 ASTUnit &Unit;
955
956public:
957 explicit PrecompilePreambleAction(ASTUnit &Unit) : Unit(Unit) {}
958
959 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000960 StringRef InFile) {
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000961 std::string Sysroot;
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000962 std::string OutputFile;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000963 raw_ostream *OS = 0;
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000964 if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot,
965 OutputFile,
Douglas Gregor9293ba82011-08-25 22:35:51 +0000966 OS))
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000967 return 0;
968
Douglas Gregor832d6202011-07-22 16:35:34 +0000969 if (!CI.getFrontendOpts().RelocatablePCH)
970 Sysroot.clear();
971
Douglas Gregor9b7db622011-02-16 18:16:54 +0000972 CI.getPreprocessor().addPPCallbacks(
973 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
Douglas Gregor9293ba82011-08-25 22:35:51 +0000974 return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Sysroot,
975 OS);
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000976 }
977
978 virtual bool hasCodeCompletionSupport() const { return false; }
979 virtual bool hasASTFileSupport() const { return false; }
Douglas Gregor467dc882011-08-25 22:30:56 +0000980 virtual TranslationUnitKind getTranslationUnitKind() { return TU_Prefix; }
Douglas Gregor1d715ac2010-08-03 08:14:03 +0000981};
982
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000983}
984
Douglas Gregorabc563f2010-07-19 21:46:24 +0000985/// Parse the source file into a translation unit using the given compiler
986/// invocation, replacing the current translation unit.
987///
988/// \returns True if a failure occurred that causes the ASTUnit not to
989/// contain any translation-unit information, false otherwise.
Douglas Gregor754f3492010-07-24 00:38:13 +0000990bool ASTUnit::Parse(llvm::MemoryBuffer *OverrideMainBuffer) {
Douglas Gregor28233422010-07-27 14:52:07 +0000991 delete SavedMainFileBuffer;
992 SavedMainFileBuffer = 0;
993
Ted Kremenek4f327862011-03-21 18:40:17 +0000994 if (!Invocation) {
Douglas Gregor671947b2010-08-19 01:33:06 +0000995 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000996 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +0000997 }
Douglas Gregorabc563f2010-07-19 21:46:24 +0000998
Daniel Dunbar521bf9c2009-12-01 09:51:01 +0000999 // Create the compiler instance to use for building the AST.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001000 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1001
1002 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001003 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1004 CICleanup(Clang.get());
Ted Kremenek03201fb2011-03-21 18:40:07 +00001005
Argyrios Kyrtzidis26d43cd2011-09-12 18:09:38 +00001006 llvm::IntrusiveRefCntPtr<CompilerInvocation>
1007 CCInvocation(new CompilerInvocation(*Invocation));
1008
1009 Clang->setInvocation(CCInvocation.getPtr());
Ted Kremenek03201fb2011-03-21 18:40:07 +00001010 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001011
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001012 // Set up diagnostics, capturing any diagnostics that would
1013 // otherwise be dropped.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001014 Clang->setDiagnostics(&getDiagnostics());
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001015
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001016 // Create the target instance.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001017 Clang->getTargetOpts().Features = TargetFeatures;
1018 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
Ted Kremenek4f327862011-03-21 18:40:17 +00001019 Clang->getTargetOpts()));
Ted Kremenek03201fb2011-03-21 18:40:07 +00001020 if (!Clang->hasTarget()) {
Douglas Gregor671947b2010-08-19 01:33:06 +00001021 delete OverrideMainBuffer;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001022 return true;
Douglas Gregor671947b2010-08-19 01:33:06 +00001023 }
1024
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001025 // Inform the target of the language options.
1026 //
1027 // FIXME: We shouldn't need to do this, the target should be immutable once
1028 // created. This complexity should be lifted elsewhere.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001029 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregorabc563f2010-07-19 21:46:24 +00001030
Ted Kremenek03201fb2011-03-21 18:40:07 +00001031 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001032 "Invocation must have exactly one source file!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00001033 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001034 "FIXME: AST inputs not yet supported here!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00001035 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Daniel Dunbarfaddc3e2010-06-07 23:26:47 +00001036 "IR inputs not support here!");
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001037
Douglas Gregorabc563f2010-07-19 21:46:24 +00001038 // Configure the various subsystems.
1039 // FIXME: Should we retain the previous file manager?
Ted Kremenek03201fb2011-03-21 18:40:07 +00001040 FileSystemOpts = Clang->getFileSystemOpts();
Ted Kremenek4f327862011-03-21 18:40:17 +00001041 FileMgr = new FileManager(FileSystemOpts);
1042 SourceMgr = new SourceManager(getDiagnostics(), *FileMgr);
Douglas Gregor914ed9d2010-08-13 03:15:25 +00001043 TheSema.reset();
Ted Kremenek4f327862011-03-21 18:40:17 +00001044 Ctx = 0;
1045 PP = 0;
Argyrios Kyrtzidis62ba9f62011-11-01 17:14:15 +00001046 Reader = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001047
1048 // Clear out old caches and data.
1049 TopLevelDecls.clear();
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +00001050 clearFileLevelDecls();
Douglas Gregorabc563f2010-07-19 21:46:24 +00001051 CleanTemporaryFiles();
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001052
Douglas Gregorf128fed2010-08-20 00:02:33 +00001053 if (!OverrideMainBuffer) {
Argyrios Kyrtzidis3e9d3262011-10-24 17:25:20 +00001054 StoredDiagnostics.erase(stored_diag_afterDriver_begin(), stored_diag_end());
Douglas Gregorf128fed2010-08-20 00:02:33 +00001055 TopLevelDeclsInPreamble.clear();
1056 }
1057
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001058 // Create a file manager object to provide access to and cache the filesystem.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001059 Clang->setFileManager(&getFileManager());
Douglas Gregorabc563f2010-07-19 21:46:24 +00001060
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001061 // Create the source manager.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001062 Clang->setSourceManager(&getSourceManager());
Douglas Gregorabc563f2010-07-19 21:46:24 +00001063
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001064 // If the main file has been overridden due to the use of a preamble,
1065 // make that override happen and introduce the preamble.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001066 PreprocessorOptions &PreprocessorOpts = Clang->getPreprocessorOpts();
Chandler Carruthba7537f2011-07-14 09:02:10 +00001067 PreprocessorOpts.DetailedRecordIncludesNestedMacroExpansions
1068 = NestedMacroExpansions;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001069 if (OverrideMainBuffer) {
1070 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
1071 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
1072 PreprocessorOpts.PrecompiledPreambleBytes.second
1073 = PreambleEndsAtStartOfLine;
Ted Kremenek1872b312011-10-27 17:55:18 +00001074 PreprocessorOpts.ImplicitPCHInclude = getPreambleFile(this);
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001075 PreprocessorOpts.DisablePCHValidation = true;
Douglas Gregor28233422010-07-27 14:52:07 +00001076
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001077 // The stored diagnostic has the old source manager in it; update
1078 // the locations to refer into the new source manager. Since we've
1079 // been careful to make sure that the source manager's state
1080 // before and after are identical, so that we can reuse the source
1081 // location itself.
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001082 for (unsigned I = NumStoredDiagnosticsFromDriver,
1083 N = StoredDiagnostics.size();
1084 I < N; ++I) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001085 FullSourceLoc Loc(StoredDiagnostics[I].getLocation(),
1086 getSourceManager());
1087 StoredDiagnostics[I].setLocation(Loc);
1088 }
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001089
1090 // Keep track of the override buffer;
1091 SavedMainFileBuffer = OverrideMainBuffer;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001092 }
1093
Ted Kremenek25a11e12011-03-22 01:15:24 +00001094 llvm::OwningPtr<TopLevelDeclTrackerAction> Act(
1095 new TopLevelDeclTrackerAction(*this));
1096
1097 // Recover resources if we crash before exiting this method.
1098 llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
1099 ActCleanup(Act.get());
1100
Ted Kremenek03201fb2011-03-21 18:40:07 +00001101 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
1102 Clang->getFrontendOpts().Inputs[0].first))
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001103 goto error;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001104
1105 if (OverrideMainBuffer) {
Ted Kremenek1872b312011-10-27 17:55:18 +00001106 std::string ModName = getPreambleFile(this);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001107 TranslateStoredDiagnostics(Clang->getModuleManager(), ModName,
1108 getSourceManager(), PreambleDiagnostics,
1109 StoredDiagnostics);
1110 }
1111
Daniel Dunbarf772d1e2009-12-04 08:17:33 +00001112 Act->Execute();
Douglas Gregorabc563f2010-07-19 21:46:24 +00001113
Ted Kremenek4f327862011-03-21 18:40:17 +00001114 // Steal the created target, context, and preprocessor.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001115 TheSema.reset(Clang->takeSema());
1116 Consumer.reset(Clang->takeASTConsumer());
Ted Kremenek4f327862011-03-21 18:40:17 +00001117 Ctx = &Clang->getASTContext();
1118 PP = &Clang->getPreprocessor();
1119 Clang->setSourceManager(0);
1120 Clang->setFileManager(0);
1121 Target = &Clang->getTarget();
Argyrios Kyrtzidis62ba9f62011-11-01 17:14:15 +00001122 Reader = Clang->getModuleManager();
Douglas Gregorabc563f2010-07-19 21:46:24 +00001123
Daniel Dunbarf772d1e2009-12-04 08:17:33 +00001124 Act->EndSourceFile();
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001125
Douglas Gregorabc563f2010-07-19 21:46:24 +00001126 return false;
Ted Kremenek4f327862011-03-21 18:40:17 +00001127
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001128error:
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001129 // Remove the overridden buffer we used for the preamble.
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001130 if (OverrideMainBuffer) {
Douglas Gregor671947b2010-08-19 01:33:06 +00001131 delete OverrideMainBuffer;
Douglas Gregor37cf6632010-10-06 21:11:08 +00001132 SavedMainFileBuffer = 0;
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001133 }
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001134
Douglas Gregord54eb442010-10-12 16:25:54 +00001135 StoredDiagnostics.clear();
Argyrios Kyrtzidis3e9d3262011-10-24 17:25:20 +00001136 NumStoredDiagnosticsFromDriver = 0;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001137 return true;
1138}
1139
Douglas Gregor44c181a2010-07-23 00:33:23 +00001140/// \brief Simple function to retrieve a path for a preamble precompiled header.
1141static std::string GetPreamblePCHPath() {
1142 // FIXME: This is lame; sys::Path should provide this function (in particular,
1143 // it should know how to find the temporary files dir).
1144 // FIXME: This is really lame. I copied this code from the Driver!
Douglas Gregor424668c2010-09-11 18:05:19 +00001145 // FIXME: This is a hack so that we can override the preamble file during
1146 // crash-recovery testing, which is the only case where the preamble files
1147 // are not necessarily cleaned up.
1148 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE");
1149 if (TmpFile)
1150 return TmpFile;
1151
Douglas Gregor44c181a2010-07-23 00:33:23 +00001152 std::string Error;
1153 const char *TmpDir = ::getenv("TMPDIR");
1154 if (!TmpDir)
1155 TmpDir = ::getenv("TEMP");
1156 if (!TmpDir)
1157 TmpDir = ::getenv("TMP");
Douglas Gregorc6cb2b02010-09-11 17:51:16 +00001158#ifdef LLVM_ON_WIN32
1159 if (!TmpDir)
1160 TmpDir = ::getenv("USERPROFILE");
1161#endif
Douglas Gregor44c181a2010-07-23 00:33:23 +00001162 if (!TmpDir)
1163 TmpDir = "/tmp";
1164 llvm::sys::Path P(TmpDir);
Douglas Gregorc6cb2b02010-09-11 17:51:16 +00001165 P.createDirectoryOnDisk(true);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001166 P.appendComponent("preamble");
Douglas Gregor6bf18302010-08-11 13:06:56 +00001167 P.appendSuffix("pch");
Argyrios Kyrtzidisbc9d5a32011-07-21 18:44:46 +00001168 if (P.makeUnique(/*reuse_current=*/false, /*ErrMsg*/0))
Douglas Gregor44c181a2010-07-23 00:33:23 +00001169 return std::string();
1170
Douglas Gregor44c181a2010-07-23 00:33:23 +00001171 return P.str();
1172}
1173
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001174/// \brief Compute the preamble for the main file, providing the source buffer
1175/// that corresponds to the main file along with a pair (bytes, start-of-line)
1176/// that describes the preamble.
1177std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> >
Douglas Gregordf95a132010-08-09 20:45:32 +00001178ASTUnit::ComputePreamble(CompilerInvocation &Invocation,
1179 unsigned MaxLines, bool &CreatedBuffer) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001180 FrontendOptions &FrontendOpts = Invocation.getFrontendOpts();
Chris Lattner39b49bc2010-11-23 08:35:12 +00001181 PreprocessorOptions &PreprocessorOpts = Invocation.getPreprocessorOpts();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001182 CreatedBuffer = false;
1183
Douglas Gregor44c181a2010-07-23 00:33:23 +00001184 // Try to determine if the main file has been remapped, either from the
1185 // command line (to another file) or directly through the compiler invocation
1186 // (to a memory buffer).
Douglas Gregor175c4a92010-07-23 23:58:40 +00001187 llvm::MemoryBuffer *Buffer = 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001188 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
1189 if (const llvm::sys::FileStatus *MainFileStatus = MainFilePath.getFileStatus()) {
1190 // Check whether there is a file-file remapping of the main file
1191 for (PreprocessorOptions::remapped_file_iterator
Douglas Gregor175c4a92010-07-23 23:58:40 +00001192 M = PreprocessorOpts.remapped_file_begin(),
1193 E = PreprocessorOpts.remapped_file_end();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001194 M != E;
1195 ++M) {
1196 llvm::sys::PathWithStatus MPath(M->first);
1197 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
1198 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
1199 // We found a remapping. Try to load the resulting, remapped source.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001200 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +00001201 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001202 CreatedBuffer = false;
1203 }
1204
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00001205 Buffer = getBufferForFile(M->second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001206 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001207 return std::make_pair((llvm::MemoryBuffer*)0,
1208 std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +00001209 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001210 }
1211 }
1212 }
1213
1214 // Check whether there is a file-buffer remapping. It supercedes the
1215 // file-file remapping.
1216 for (PreprocessorOptions::remapped_file_buffer_iterator
1217 M = PreprocessorOpts.remapped_file_buffer_begin(),
1218 E = PreprocessorOpts.remapped_file_buffer_end();
1219 M != E;
1220 ++M) {
1221 llvm::sys::PathWithStatus MPath(M->first);
1222 if (const llvm::sys::FileStatus *MStatus = MPath.getFileStatus()) {
1223 if (MainFileStatus->uniqueID == MStatus->uniqueID) {
1224 // We found a remapping.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001225 if (CreatedBuffer) {
Douglas Gregor44c181a2010-07-23 00:33:23 +00001226 delete Buffer;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001227 CreatedBuffer = false;
1228 }
Douglas Gregor44c181a2010-07-23 00:33:23 +00001229
Douglas Gregor175c4a92010-07-23 23:58:40 +00001230 Buffer = const_cast<llvm::MemoryBuffer *>(M->second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001231 }
1232 }
Douglas Gregor175c4a92010-07-23 23:58:40 +00001233 }
Douglas Gregor44c181a2010-07-23 00:33:23 +00001234 }
1235
1236 // If the main source file was not remapped, load it now.
1237 if (!Buffer) {
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00001238 Buffer = getBufferForFile(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001239 if (!Buffer)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001240 return std::make_pair((llvm::MemoryBuffer*)0, std::make_pair(0, true));
Douglas Gregor175c4a92010-07-23 23:58:40 +00001241
1242 CreatedBuffer = true;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001243 }
1244
Argyrios Kyrtzidis03c107a2011-08-25 20:39:19 +00001245 return std::make_pair(Buffer, Lexer::ComputePreamble(Buffer,
1246 Invocation.getLangOpts(),
1247 MaxLines));
Douglas Gregor175c4a92010-07-23 23:58:40 +00001248}
1249
Douglas Gregor754f3492010-07-24 00:38:13 +00001250static llvm::MemoryBuffer *CreatePaddedMainFileBuffer(llvm::MemoryBuffer *Old,
Douglas Gregor754f3492010-07-24 00:38:13 +00001251 unsigned NewSize,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001252 StringRef NewName) {
Douglas Gregor754f3492010-07-24 00:38:13 +00001253 llvm::MemoryBuffer *Result
1254 = llvm::MemoryBuffer::getNewUninitMemBuffer(NewSize, NewName);
1255 memcpy(const_cast<char*>(Result->getBufferStart()),
1256 Old->getBufferStart(), Old->getBufferSize());
1257 memset(const_cast<char*>(Result->getBufferStart()) + Old->getBufferSize(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001258 ' ', NewSize - Old->getBufferSize() - 1);
1259 const_cast<char*>(Result->getBufferEnd())[-1] = '\n';
Douglas Gregor754f3492010-07-24 00:38:13 +00001260
Douglas Gregor754f3492010-07-24 00:38:13 +00001261 return Result;
1262}
1263
Douglas Gregor175c4a92010-07-23 23:58:40 +00001264/// \brief Attempt to build or re-use a precompiled preamble when (re-)parsing
1265/// the source file.
1266///
1267/// This routine will compute the preamble of the main source file. If a
1268/// non-trivial preamble is found, it will precompile that preamble into a
1269/// precompiled header so that the precompiled preamble can be used to reduce
1270/// reparsing time. If a precompiled preamble has already been constructed,
1271/// this routine will determine if it is still valid and, if so, avoid
1272/// rebuilding the precompiled preamble.
1273///
Douglas Gregordf95a132010-08-09 20:45:32 +00001274/// \param AllowRebuild When true (the default), this routine is
1275/// allowed to rebuild the precompiled preamble if it is found to be
1276/// out-of-date.
1277///
1278/// \param MaxLines When non-zero, the maximum number of lines that
1279/// can occur within the preamble.
1280///
Douglas Gregor754f3492010-07-24 00:38:13 +00001281/// \returns If the precompiled preamble can be used, returns a newly-allocated
1282/// buffer that should be used in place of the main file when doing so.
1283/// Otherwise, returns a NULL pointer.
Douglas Gregordf95a132010-08-09 20:45:32 +00001284llvm::MemoryBuffer *ASTUnit::getMainBufferWithPrecompiledPreamble(
Douglas Gregor01b6e312011-07-01 18:22:13 +00001285 const CompilerInvocation &PreambleInvocationIn,
Douglas Gregordf95a132010-08-09 20:45:32 +00001286 bool AllowRebuild,
1287 unsigned MaxLines) {
Douglas Gregor01b6e312011-07-01 18:22:13 +00001288
1289 llvm::IntrusiveRefCntPtr<CompilerInvocation>
1290 PreambleInvocation(new CompilerInvocation(PreambleInvocationIn));
1291 FrontendOptions &FrontendOpts = PreambleInvocation->getFrontendOpts();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001292 PreprocessorOptions &PreprocessorOpts
Douglas Gregor01b6e312011-07-01 18:22:13 +00001293 = PreambleInvocation->getPreprocessorOpts();
Douglas Gregor175c4a92010-07-23 23:58:40 +00001294
1295 bool CreatedPreambleBuffer = false;
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001296 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > NewPreamble
Douglas Gregor01b6e312011-07-01 18:22:13 +00001297 = ComputePreamble(*PreambleInvocation, MaxLines, CreatedPreambleBuffer);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001298
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001299 // If ComputePreamble() Take ownership of the preamble buffer.
Douglas Gregor73fc9122010-11-16 20:45:51 +00001300 llvm::OwningPtr<llvm::MemoryBuffer> OwnedPreambleBuffer;
1301 if (CreatedPreambleBuffer)
1302 OwnedPreambleBuffer.reset(NewPreamble.first);
1303
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001304 if (!NewPreamble.second.first) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001305 // We couldn't find a preamble in the main source. Clear out the current
1306 // preamble, if we have one. It's obviously no good any more.
1307 Preamble.clear();
Ted Kremenek1872b312011-10-27 17:55:18 +00001308 erasePreambleFile(this);
Douglas Gregoreababfb2010-08-04 05:53:38 +00001309
1310 // The next time we actually see a preamble, precompile it.
1311 PreambleRebuildCounter = 1;
Douglas Gregor754f3492010-07-24 00:38:13 +00001312 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001313 }
1314
1315 if (!Preamble.empty()) {
1316 // We've previously computed a preamble. Check whether we have the same
1317 // preamble now that we did before, and that there's enough space in
1318 // the main-file buffer within the precompiled preamble to fit the
1319 // new main file.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001320 if (Preamble.size() == NewPreamble.second.first &&
1321 PreambleEndsAtStartOfLine == NewPreamble.second.second &&
Douglas Gregor592508e2010-07-24 00:42:07 +00001322 NewPreamble.first->getBufferSize() < PreambleReservedSize-2 &&
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001323 memcmp(Preamble.getBufferStart(), NewPreamble.first->getBufferStart(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001324 NewPreamble.second.first) == 0) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001325 // The preamble has not changed. We may be able to re-use the precompiled
1326 // preamble.
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001327
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001328 // Check that none of the files used by the preamble have changed.
1329 bool AnyFileChanged = false;
1330
1331 // First, make a record of those files that have been overridden via
1332 // remapping or unsaved_files.
1333 llvm::StringMap<std::pair<off_t, time_t> > OverriddenFiles;
1334 for (PreprocessorOptions::remapped_file_iterator
1335 R = PreprocessorOpts.remapped_file_begin(),
1336 REnd = PreprocessorOpts.remapped_file_end();
1337 !AnyFileChanged && R != REnd;
1338 ++R) {
1339 struct stat StatBuf;
Anders Carlsson340415c2011-03-18 19:23:38 +00001340 if (FileMgr->getNoncachedStatValue(R->second, StatBuf)) {
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001341 // If we can't stat the file we're remapping to, assume that something
1342 // horrible happened.
1343 AnyFileChanged = true;
1344 break;
1345 }
Douglas Gregor754f3492010-07-24 00:38:13 +00001346
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001347 OverriddenFiles[R->first] = std::make_pair(StatBuf.st_size,
1348 StatBuf.st_mtime);
1349 }
1350 for (PreprocessorOptions::remapped_file_buffer_iterator
1351 R = PreprocessorOpts.remapped_file_buffer_begin(),
1352 REnd = PreprocessorOpts.remapped_file_buffer_end();
1353 !AnyFileChanged && R != REnd;
1354 ++R) {
1355 // FIXME: Should we actually compare the contents of file->buffer
1356 // remappings?
1357 OverriddenFiles[R->first] = std::make_pair(R->second->getBufferSize(),
1358 0);
1359 }
1360
1361 // Check whether anything has changed.
1362 for (llvm::StringMap<std::pair<off_t, time_t> >::iterator
1363 F = FilesInPreamble.begin(), FEnd = FilesInPreamble.end();
1364 !AnyFileChanged && F != FEnd;
1365 ++F) {
1366 llvm::StringMap<std::pair<off_t, time_t> >::iterator Overridden
1367 = OverriddenFiles.find(F->first());
1368 if (Overridden != OverriddenFiles.end()) {
1369 // This file was remapped; check whether the newly-mapped file
1370 // matches up with the previous mapping.
1371 if (Overridden->second != F->second)
1372 AnyFileChanged = true;
1373 continue;
1374 }
1375
1376 // The file was not remapped; check whether it has changed on disk.
1377 struct stat StatBuf;
Anders Carlsson340415c2011-03-18 19:23:38 +00001378 if (FileMgr->getNoncachedStatValue(F->first(), StatBuf)) {
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001379 // If we can't stat the file, assume that something horrible happened.
1380 AnyFileChanged = true;
1381 } else if (StatBuf.st_size != F->second.first ||
1382 StatBuf.st_mtime != F->second.second)
1383 AnyFileChanged = true;
1384 }
1385
1386 if (!AnyFileChanged) {
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001387 // Okay! We can re-use the precompiled preamble.
1388
1389 // Set the state of the diagnostic object to mimic its state
1390 // after parsing the preamble.
1391 getDiagnostics().Reset();
Douglas Gregor32be4a52010-10-11 21:37:58 +00001392 ProcessWarningOptions(getDiagnostics(),
Douglas Gregor01b6e312011-07-01 18:22:13 +00001393 PreambleInvocation->getDiagnosticOpts());
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001394 getDiagnostics().setNumWarnings(NumWarningsInPreamble);
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001395
1396 // Create a version of the main file buffer that is padded to
1397 // buffer size we reserved when creating the preamble.
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001398 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001399 PreambleReservedSize,
1400 FrontendOpts.Inputs[0].second);
1401 }
Douglas Gregor175c4a92010-07-23 23:58:40 +00001402 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001403
1404 // If we aren't allowed to rebuild the precompiled preamble, just
1405 // return now.
1406 if (!AllowRebuild)
1407 return 0;
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001408
Douglas Gregor175c4a92010-07-23 23:58:40 +00001409 // We can't reuse the previously-computed preamble. Build a new one.
1410 Preamble.clear();
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001411 PreambleDiagnostics.clear();
Ted Kremenek1872b312011-10-27 17:55:18 +00001412 erasePreambleFile(this);
Douglas Gregoreababfb2010-08-04 05:53:38 +00001413 PreambleRebuildCounter = 1;
Douglas Gregordf95a132010-08-09 20:45:32 +00001414 } else if (!AllowRebuild) {
1415 // We aren't allowed to rebuild the precompiled preamble; just
1416 // return now.
1417 return 0;
1418 }
Douglas Gregoreababfb2010-08-04 05:53:38 +00001419
1420 // If the preamble rebuild counter > 1, it's because we previously
1421 // failed to build a preamble and we're not yet ready to try
1422 // again. Decrement the counter and return a failure.
1423 if (PreambleRebuildCounter > 1) {
1424 --PreambleRebuildCounter;
1425 return 0;
1426 }
1427
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001428 // Create a temporary file for the precompiled preamble. In rare
1429 // circumstances, this can fail.
1430 std::string PreamblePCHPath = GetPreamblePCHPath();
1431 if (PreamblePCHPath.empty()) {
1432 // Try again next time.
1433 PreambleRebuildCounter = 1;
1434 return 0;
1435 }
1436
Douglas Gregor175c4a92010-07-23 23:58:40 +00001437 // We did not previously compute a preamble, or it can't be reused anyway.
Douglas Gregor213f18b2010-10-28 15:44:59 +00001438 SimpleTimer PreambleTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001439 PreambleTimer.setOutput("Precompiling preamble");
Douglas Gregor44c181a2010-07-23 00:33:23 +00001440
1441 // Create a new buffer that stores the preamble. The buffer also contains
1442 // extra space for the original contents of the file (which will be present
1443 // when we actually parse the file) along with more room in case the file
Douglas Gregor175c4a92010-07-23 23:58:40 +00001444 // grows.
1445 PreambleReservedSize = NewPreamble.first->getBufferSize();
1446 if (PreambleReservedSize < 4096)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001447 PreambleReservedSize = 8191;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001448 else
Douglas Gregor175c4a92010-07-23 23:58:40 +00001449 PreambleReservedSize *= 2;
1450
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001451 // Save the preamble text for later; we'll need to compare against it for
1452 // subsequent reparses.
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001453 StringRef MainFilename = PreambleInvocation->getFrontendOpts().Inputs[0].second;
1454 Preamble.assign(FileMgr->getFile(MainFilename),
1455 NewPreamble.first->getBufferStart(),
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001456 NewPreamble.first->getBufferStart()
1457 + NewPreamble.second.first);
1458 PreambleEndsAtStartOfLine = NewPreamble.second.second;
1459
Douglas Gregor671947b2010-08-19 01:33:06 +00001460 delete PreambleBuffer;
1461 PreambleBuffer
Douglas Gregor175c4a92010-07-23 23:58:40 +00001462 = llvm::MemoryBuffer::getNewUninitMemBuffer(PreambleReservedSize,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001463 FrontendOpts.Inputs[0].second);
1464 memcpy(const_cast<char*>(PreambleBuffer->getBufferStart()),
Douglas Gregor175c4a92010-07-23 23:58:40 +00001465 NewPreamble.first->getBufferStart(), Preamble.size());
1466 memset(const_cast<char*>(PreambleBuffer->getBufferStart()) + Preamble.size(),
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +00001467 ' ', PreambleReservedSize - Preamble.size() - 1);
1468 const_cast<char*>(PreambleBuffer->getBufferEnd())[-1] = '\n';
Douglas Gregor44c181a2010-07-23 00:33:23 +00001469
1470 // Remap the main source file to the preamble buffer.
Douglas Gregor175c4a92010-07-23 23:58:40 +00001471 llvm::sys::PathWithStatus MainFilePath(FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001472 PreprocessorOpts.addRemappedFile(MainFilePath.str(), PreambleBuffer);
1473
1474 // Tell the compiler invocation to generate a temporary precompiled header.
1475 FrontendOpts.ProgramAction = frontend::GeneratePCH;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001476 // FIXME: Generate the precompiled header into memory?
Douglas Gregor2cd4fd42010-09-11 17:56:52 +00001477 FrontendOpts.OutputFile = PreamblePCHPath;
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001478 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
1479 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001480
1481 // Create the compiler instance to use for building the precompiled preamble.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001482 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1483
1484 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001485 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1486 CICleanup(Clang.get());
Ted Kremenek03201fb2011-03-21 18:40:07 +00001487
Douglas Gregor01b6e312011-07-01 18:22:13 +00001488 Clang->setInvocation(&*PreambleInvocation);
Ted Kremenek03201fb2011-03-21 18:40:07 +00001489 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001490
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001491 // Set up diagnostics, capturing all of the diagnostics produced.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001492 Clang->setDiagnostics(&getDiagnostics());
Douglas Gregor44c181a2010-07-23 00:33:23 +00001493
1494 // Create the target instance.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001495 Clang->getTargetOpts().Features = TargetFeatures;
1496 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
1497 Clang->getTargetOpts()));
1498 if (!Clang->hasTarget()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001499 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1500 Preamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001501 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001502 PreprocessorOpts.eraseRemappedFile(
1503 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001504 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001505 }
1506
1507 // Inform the target of the language options.
1508 //
1509 // FIXME: We shouldn't need to do this, the target should be immutable once
1510 // created. This complexity should be lifted elsewhere.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001511 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregor44c181a2010-07-23 00:33:23 +00001512
Ted Kremenek03201fb2011-03-21 18:40:07 +00001513 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Douglas Gregor44c181a2010-07-23 00:33:23 +00001514 "Invocation must have exactly one source file!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00001515 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Douglas Gregor44c181a2010-07-23 00:33:23 +00001516 "FIXME: AST inputs not yet supported here!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00001517 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Douglas Gregor44c181a2010-07-23 00:33:23 +00001518 "IR inputs not support here!");
1519
1520 // Clear out old caches and data.
Douglas Gregoraa3e6ba2010-10-08 04:03:57 +00001521 getDiagnostics().Reset();
Ted Kremenek03201fb2011-03-21 18:40:07 +00001522 ProcessWarningOptions(getDiagnostics(), Clang->getDiagnosticOpts());
Argyrios Kyrtzidis3e9d3262011-10-24 17:25:20 +00001523 StoredDiagnostics.erase(stored_diag_afterDriver_begin(), stored_diag_end());
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001524 TopLevelDecls.clear();
1525 TopLevelDeclsInPreamble.clear();
Douglas Gregor44c181a2010-07-23 00:33:23 +00001526
1527 // Create a file manager object to provide access to and cache the filesystem.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001528 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts()));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001529
1530 // Create the source manager.
Ted Kremenek03201fb2011-03-21 18:40:07 +00001531 Clang->setSourceManager(new SourceManager(getDiagnostics(),
Ted Kremenek4f327862011-03-21 18:40:17 +00001532 Clang->getFileManager()));
Douglas Gregor44c181a2010-07-23 00:33:23 +00001533
Douglas Gregor1d715ac2010-08-03 08:14:03 +00001534 llvm::OwningPtr<PrecompilePreambleAction> Act;
1535 Act.reset(new PrecompilePreambleAction(*this));
Ted Kremenek03201fb2011-03-21 18:40:07 +00001536 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
1537 Clang->getFrontendOpts().Inputs[0].first)) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001538 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1539 Preamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001540 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001541 PreprocessorOpts.eraseRemappedFile(
1542 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001543 return 0;
Douglas Gregor44c181a2010-07-23 00:33:23 +00001544 }
1545
1546 Act->Execute();
1547 Act->EndSourceFile();
Ted Kremenek4f327862011-03-21 18:40:17 +00001548
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001549 if (Diagnostics->hasErrorOccurred()) {
Douglas Gregor175c4a92010-07-23 23:58:40 +00001550 // There were errors parsing the preamble, so no precompiled header was
1551 // generated. Forget that we even tried.
Douglas Gregor06e50442010-09-27 16:43:25 +00001552 // FIXME: Should we leave a note for ourselves to try again?
Douglas Gregor175c4a92010-07-23 23:58:40 +00001553 llvm::sys::Path(FrontendOpts.OutputFile).eraseFromDisk();
1554 Preamble.clear();
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001555 TopLevelDeclsInPreamble.clear();
Douglas Gregoreababfb2010-08-04 05:53:38 +00001556 PreambleRebuildCounter = DefaultPreambleRebuildInterval;
Douglas Gregor671947b2010-08-19 01:33:06 +00001557 PreprocessorOpts.eraseRemappedFile(
1558 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor754f3492010-07-24 00:38:13 +00001559 return 0;
Douglas Gregor175c4a92010-07-23 23:58:40 +00001560 }
1561
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001562 // Transfer any diagnostics generated when parsing the preamble into the set
1563 // of preamble diagnostics.
1564 PreambleDiagnostics.clear();
1565 PreambleDiagnostics.insert(PreambleDiagnostics.end(),
Argyrios Kyrtzidis3e9d3262011-10-24 17:25:20 +00001566 stored_diag_afterDriver_begin(), stored_diag_end());
1567 StoredDiagnostics.erase(stored_diag_afterDriver_begin(), stored_diag_end());
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001568
Douglas Gregor175c4a92010-07-23 23:58:40 +00001569 // Keep track of the preamble we precompiled.
Ted Kremenek1872b312011-10-27 17:55:18 +00001570 setPreambleFile(this, FrontendOpts.OutputFile);
Douglas Gregorc0659ec2010-08-02 20:51:39 +00001571 NumWarningsInPreamble = getDiagnostics().getNumWarnings();
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001572
1573 // Keep track of all of the files that the source manager knows about,
1574 // so we can verify whether they have changed or not.
1575 FilesInPreamble.clear();
Ted Kremenek03201fb2011-03-21 18:40:07 +00001576 SourceManager &SourceMgr = Clang->getSourceManager();
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001577 const llvm::MemoryBuffer *MainFileBuffer
1578 = SourceMgr.getBuffer(SourceMgr.getMainFileID());
1579 for (SourceManager::fileinfo_iterator F = SourceMgr.fileinfo_begin(),
1580 FEnd = SourceMgr.fileinfo_end();
1581 F != FEnd;
1582 ++F) {
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001583 const FileEntry *File = F->second->OrigEntry;
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001584 if (!File || F->second->getRawBuffer() == MainFileBuffer)
1585 continue;
1586
1587 FilesInPreamble[File->getName()]
1588 = std::make_pair(F->second->getSize(), File->getModificationTime());
1589 }
1590
Douglas Gregoreababfb2010-08-04 05:53:38 +00001591 PreambleRebuildCounter = 1;
Douglas Gregor671947b2010-08-19 01:33:06 +00001592 PreprocessorOpts.eraseRemappedFile(
1593 PreprocessorOpts.remapped_file_buffer_end() - 1);
Douglas Gregor9b7db622011-02-16 18:16:54 +00001594
1595 // If the hash of top-level entities differs from the hash of the top-level
1596 // entities the last time we rebuilt the preamble, clear out the completion
1597 // cache.
1598 if (CurrentTopLevelHashValue != PreambleTopLevelHashValue) {
1599 CompletionCacheTopLevelHashValue = 0;
1600 PreambleTopLevelHashValue = CurrentTopLevelHashValue;
1601 }
1602
Douglas Gregor754f3492010-07-24 00:38:13 +00001603 return CreatePaddedMainFileBuffer(NewPreamble.first,
Douglas Gregor754f3492010-07-24 00:38:13 +00001604 PreambleReservedSize,
1605 FrontendOpts.Inputs[0].second);
Douglas Gregor44c181a2010-07-23 00:33:23 +00001606}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001607
Douglas Gregoreb8837b2010-08-03 19:06:41 +00001608void ASTUnit::RealizeTopLevelDeclsFromPreamble() {
1609 std::vector<Decl *> Resolved;
1610 Resolved.reserve(TopLevelDeclsInPreamble.size());
1611 ExternalASTSource &Source = *getASTContext().getExternalSource();
1612 for (unsigned I = 0, N = TopLevelDeclsInPreamble.size(); I != N; ++I) {
1613 // Resolve the declaration ID to an actual declaration, possibly
1614 // deserializing the declaration in the process.
1615 Decl *D = Source.GetExternalDecl(TopLevelDeclsInPreamble[I]);
1616 if (D)
1617 Resolved.push_back(D);
1618 }
1619 TopLevelDeclsInPreamble.clear();
1620 TopLevelDecls.insert(TopLevelDecls.begin(), Resolved.begin(), Resolved.end());
1621}
1622
Chris Lattner5f9e2722011-07-23 10:55:15 +00001623StringRef ASTUnit::getMainFileName() const {
Douglas Gregor213f18b2010-10-28 15:44:59 +00001624 return Invocation->getFrontendOpts().Inputs[0].second;
1625}
1626
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00001627ASTUnit *ASTUnit::create(CompilerInvocation *CI,
David Blaikied6471f72011-09-25 23:23:43 +00001628 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags) {
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00001629 llvm::OwningPtr<ASTUnit> AST;
1630 AST.reset(new ASTUnit(false));
1631 ConfigureDiags(Diags, 0, 0, *AST, /*CaptureDiagnostics=*/false);
1632 AST->Diagnostics = Diags;
Ted Kremenek4f327862011-03-21 18:40:17 +00001633 AST->Invocation = CI;
Anders Carlsson0d8d7e62011-03-18 18:22:40 +00001634 AST->FileSystemOpts = CI->getFileSystemOpts();
Ted Kremenek4f327862011-03-21 18:40:17 +00001635 AST->FileMgr = new FileManager(AST->FileSystemOpts);
Argyrios Kyrtzidisabb5afa2011-10-14 21:22:05 +00001636 AST->SourceMgr = new SourceManager(AST->getDiagnostics(), *AST->FileMgr);
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00001637
1638 return AST.take();
1639}
1640
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001641ASTUnit *ASTUnit::LoadFromCompilerInvocationAction(CompilerInvocation *CI,
David Blaikied6471f72011-09-25 23:23:43 +00001642 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
Argyrios Kyrtzidisabb5afa2011-10-14 21:22:05 +00001643 ASTFrontendAction *Action,
1644 ASTUnit *Unit) {
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001645 assert(CI && "A CompilerInvocation is required");
1646
Argyrios Kyrtzidisabb5afa2011-10-14 21:22:05 +00001647 llvm::OwningPtr<ASTUnit> OwnAST;
1648 ASTUnit *AST = Unit;
1649 if (!AST) {
1650 // Create the AST unit.
1651 OwnAST.reset(create(CI, Diags));
1652 AST = OwnAST.get();
1653 }
1654
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001655 AST->OnlyLocalDecls = false;
1656 AST->CaptureDiagnostics = false;
Douglas Gregor467dc882011-08-25 22:30:56 +00001657 AST->TUKind = Action ? Action->getTranslationUnitKind() : TU_Complete;
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001658 AST->ShouldCacheCodeCompletionResults = false;
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001659
1660 // Recover resources if we crash before exiting this method.
1661 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
Argyrios Kyrtzidisabb5afa2011-10-14 21:22:05 +00001662 ASTUnitCleanup(OwnAST.get());
David Blaikied6471f72011-09-25 23:23:43 +00001663 llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
1664 llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine> >
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001665 DiagCleanup(Diags.getPtr());
1666
1667 // We'll manage file buffers ourselves.
1668 CI->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1669 CI->getFrontendOpts().DisableFree = false;
1670 ProcessWarningOptions(AST->getDiagnostics(), CI->getDiagnosticOpts());
1671
1672 // Save the target features.
1673 AST->TargetFeatures = CI->getTargetOpts().Features;
1674
1675 // Create the compiler instance to use for building the AST.
1676 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
1677
1678 // Recover resources if we crash before exiting this method.
1679 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
1680 CICleanup(Clang.get());
1681
1682 Clang->setInvocation(CI);
1683 AST->OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
1684
1685 // Set up diagnostics, capturing any diagnostics that would
1686 // otherwise be dropped.
1687 Clang->setDiagnostics(&AST->getDiagnostics());
1688
1689 // Create the target instance.
1690 Clang->getTargetOpts().Features = AST->TargetFeatures;
1691 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
1692 Clang->getTargetOpts()));
1693 if (!Clang->hasTarget())
1694 return 0;
1695
1696 // Inform the target of the language options.
1697 //
1698 // FIXME: We shouldn't need to do this, the target should be immutable once
1699 // created. This complexity should be lifted elsewhere.
1700 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
1701
1702 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
1703 "Invocation must have exactly one source file!");
1704 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
1705 "FIXME: AST inputs not yet supported here!");
1706 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
1707 "IR inputs not supported here!");
1708
1709 // Configure the various subsystems.
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001710 AST->TheSema.reset();
1711 AST->Ctx = 0;
1712 AST->PP = 0;
Argyrios Kyrtzidis62ba9f62011-11-01 17:14:15 +00001713 AST->Reader = 0;
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001714
1715 // Create a file manager object to provide access to and cache the filesystem.
1716 Clang->setFileManager(&AST->getFileManager());
1717
1718 // Create the source manager.
1719 Clang->setSourceManager(&AST->getSourceManager());
1720
1721 ASTFrontendAction *Act = Action;
1722
1723 llvm::OwningPtr<TopLevelDeclTrackerAction> TrackerAct;
1724 if (!Act) {
1725 TrackerAct.reset(new TopLevelDeclTrackerAction(*AST));
1726 Act = TrackerAct.get();
1727 }
1728
1729 // Recover resources if we crash before exiting this method.
1730 llvm::CrashRecoveryContextCleanupRegistrar<TopLevelDeclTrackerAction>
1731 ActCleanup(TrackerAct.get());
1732
1733 if (!Act->BeginSourceFile(*Clang.get(),
1734 Clang->getFrontendOpts().Inputs[0].second,
1735 Clang->getFrontendOpts().Inputs[0].first))
1736 return 0;
1737
1738 Act->Execute();
1739
1740 // Steal the created target, context, and preprocessor.
1741 AST->TheSema.reset(Clang->takeSema());
1742 AST->Consumer.reset(Clang->takeASTConsumer());
1743 AST->Ctx = &Clang->getASTContext();
1744 AST->PP = &Clang->getPreprocessor();
1745 Clang->setSourceManager(0);
1746 Clang->setFileManager(0);
1747 AST->Target = &Clang->getTarget();
Argyrios Kyrtzidis62ba9f62011-11-01 17:14:15 +00001748 AST->Reader = Clang->getModuleManager();
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001749
1750 Act->EndSourceFile();
1751
Argyrios Kyrtzidisabb5afa2011-10-14 21:22:05 +00001752 if (OwnAST)
1753 return OwnAST.take();
1754 else
1755 return AST;
Argyrios Kyrtzidisd808bd22011-05-03 23:26:34 +00001756}
1757
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001758bool ASTUnit::LoadFromCompilerInvocation(bool PrecompilePreamble) {
1759 if (!Invocation)
1760 return true;
1761
1762 // We'll manage file buffers ourselves.
1763 Invocation->getPreprocessorOpts().RetainRemappedFileBuffers = true;
1764 Invocation->getFrontendOpts().DisableFree = false;
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001765 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001766
Douglas Gregor1aa27302011-01-27 18:02:58 +00001767 // Save the target features.
1768 TargetFeatures = Invocation->getTargetOpts().Features;
1769
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001770 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Douglas Gregor99ba2022010-10-27 17:24:53 +00001771 if (PrecompilePreamble) {
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001772 PreambleRebuildCounter = 2;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001773 OverrideMainBuffer
1774 = getMainBufferWithPrecompiledPreamble(*Invocation);
1775 }
1776
Douglas Gregor213f18b2010-10-28 15:44:59 +00001777 SimpleTimer ParsingTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001778 ParsingTimer.setOutput("Parsing " + getMainFileName());
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001779
Ted Kremenek25a11e12011-03-22 01:15:24 +00001780 // Recover resources if we crash before exiting this method.
1781 llvm::CrashRecoveryContextCleanupRegistrar<llvm::MemoryBuffer>
1782 MemBufferCleanup(OverrideMainBuffer);
1783
Douglas Gregor213f18b2010-10-28 15:44:59 +00001784 return Parse(OverrideMainBuffer);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001785}
1786
Douglas Gregorabc563f2010-07-19 21:46:24 +00001787ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
David Blaikied6471f72011-09-25 23:23:43 +00001788 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
Douglas Gregorabc563f2010-07-19 21:46:24 +00001789 bool OnlyLocalDecls,
Douglas Gregor44c181a2010-07-23 00:33:23 +00001790 bool CaptureDiagnostics,
Douglas Gregordf95a132010-08-09 20:45:32 +00001791 bool PrecompilePreamble,
Douglas Gregor467dc882011-08-25 22:30:56 +00001792 TranslationUnitKind TUKind,
Douglas Gregordca8ee82011-05-06 16:33:08 +00001793 bool CacheCodeCompletionResults,
Chandler Carruthba7537f2011-07-14 09:02:10 +00001794 bool NestedMacroExpansions) {
Douglas Gregorabc563f2010-07-19 21:46:24 +00001795 // Create the AST unit.
1796 llvm::OwningPtr<ASTUnit> AST;
1797 AST.reset(new ASTUnit(false));
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001798 ConfigureDiags(Diags, 0, 0, *AST, CaptureDiagnostics);
Douglas Gregorabc563f2010-07-19 21:46:24 +00001799 AST->Diagnostics = Diags;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001800 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001801 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor467dc882011-08-25 22:30:56 +00001802 AST->TUKind = TUKind;
Douglas Gregor87c08a52010-08-13 22:48:40 +00001803 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
Ted Kremenek4f327862011-03-21 18:40:17 +00001804 AST->Invocation = CI;
Chandler Carruthba7537f2011-07-14 09:02:10 +00001805 AST->NestedMacroExpansions = NestedMacroExpansions;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001806
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001807 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001808 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1809 ASTUnitCleanup(AST.get());
David Blaikied6471f72011-09-25 23:23:43 +00001810 llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
1811 llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine> >
Ted Kremenek25a11e12011-03-22 01:15:24 +00001812 DiagCleanup(Diags.getPtr());
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001813
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001814 return AST->LoadFromCompilerInvocation(PrecompilePreamble)? 0 : AST.take();
Daniel Dunbar521bf9c2009-12-01 09:51:01 +00001815}
Daniel Dunbar7b556682009-12-02 03:23:45 +00001816
1817ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1818 const char **ArgEnd,
David Blaikied6471f72011-09-25 23:23:43 +00001819 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001820 StringRef ResourceFilesPath,
Daniel Dunbar7b556682009-12-02 03:23:45 +00001821 bool OnlyLocalDecls,
Douglas Gregore47be3e2010-11-11 00:39:14 +00001822 bool CaptureDiagnostics,
Douglas Gregor4db64a42010-01-23 00:14:00 +00001823 RemappedFile *RemappedFiles,
Douglas Gregora88084b2010-02-18 18:08:43 +00001824 unsigned NumRemappedFiles,
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +00001825 bool RemappedFilesKeepOriginalName,
Douglas Gregordf95a132010-08-09 20:45:32 +00001826 bool PrecompilePreamble,
Douglas Gregor467dc882011-08-25 22:30:56 +00001827 TranslationUnitKind TUKind,
Douglas Gregor99ba2022010-10-27 17:24:53 +00001828 bool CacheCodeCompletionResults,
Chandler Carruthba7537f2011-07-14 09:02:10 +00001829 bool NestedMacroExpansions) {
Douglas Gregor28019772010-04-05 23:52:57 +00001830 if (!Diags.getPtr()) {
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001831 // No diagnostics engine was provided, so create our own diagnostics object
1832 // with the default options.
1833 DiagnosticOptions DiagOpts;
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001834 Diags = CompilerInstance::createDiagnostics(DiagOpts, ArgEnd - ArgBegin,
1835 ArgBegin);
Douglas Gregor3687e9d2010-04-05 21:10:19 +00001836 }
Daniel Dunbar7b556682009-12-02 03:23:45 +00001837
Chris Lattner5f9e2722011-07-23 10:55:15 +00001838 SmallVector<StoredDiagnostic, 4> StoredDiagnostics;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001839
Ted Kremenek4f327862011-03-21 18:40:17 +00001840 llvm::IntrusiveRefCntPtr<CompilerInvocation> CI;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001841
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001842 {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001843
Douglas Gregore47be3e2010-11-11 00:39:14 +00001844 CaptureDroppedDiagnostics Capture(CaptureDiagnostics, *Diags,
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001845 StoredDiagnostics);
Daniel Dunbar3bd54cc2010-01-25 00:44:02 +00001846
Argyrios Kyrtzidis832316e2011-04-04 23:11:45 +00001847 CI = clang::createInvocationFromCommandLine(
Frits van Bommele9c02652011-07-18 12:00:32 +00001848 llvm::makeArrayRef(ArgBegin, ArgEnd),
1849 Diags);
Argyrios Kyrtzidis054e4f52011-04-04 21:38:51 +00001850 if (!CI)
Argyrios Kyrtzidis4e03c2b2011-03-07 22:45:01 +00001851 return 0;
Daniel Dunbar7b556682009-12-02 03:23:45 +00001852 }
Douglas Gregore47be3e2010-11-11 00:39:14 +00001853
Douglas Gregor4db64a42010-01-23 00:14:00 +00001854 // Override any files that need remapping
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001855 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
1856 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
1857 if (const llvm::MemoryBuffer *
1858 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
1859 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, memBuf);
1860 } else {
1861 const char *fname = fileOrBuf.get<const char *>();
1862 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, fname);
1863 }
1864 }
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +00001865 CI->getPreprocessorOpts().RemappedFilesKeepOriginalName =
1866 RemappedFilesKeepOriginalName;
Douglas Gregor4db64a42010-01-23 00:14:00 +00001867
Daniel Dunbar8b9adfe2009-12-15 00:06:45 +00001868 // Override the resources path.
Daniel Dunbar807b0612010-01-30 21:47:16 +00001869 CI->getHeaderSearchOpts().ResourceDir = ResourceFilesPath;
Daniel Dunbar7b556682009-12-02 03:23:45 +00001870
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001871 // Create the AST unit.
1872 llvm::OwningPtr<ASTUnit> AST;
1873 AST.reset(new ASTUnit(false));
Douglas Gregor0b53cf82011-01-19 01:02:47 +00001874 ConfigureDiags(Diags, ArgBegin, ArgEnd, *AST, CaptureDiagnostics);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001875 AST->Diagnostics = Diags;
Anders Carlsson0d8d7e62011-03-18 18:22:40 +00001876
1877 AST->FileSystemOpts = CI->getFileSystemOpts();
Ted Kremenek4f327862011-03-21 18:40:17 +00001878 AST->FileMgr = new FileManager(AST->FileSystemOpts);
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001879 AST->OnlyLocalDecls = OnlyLocalDecls;
Douglas Gregore47be3e2010-11-11 00:39:14 +00001880 AST->CaptureDiagnostics = CaptureDiagnostics;
Douglas Gregor467dc882011-08-25 22:30:56 +00001881 AST->TUKind = TUKind;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001882 AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1883 AST->NumStoredDiagnosticsFromDriver = StoredDiagnostics.size();
Douglas Gregor4cd912a2010-10-12 00:50:20 +00001884 AST->StoredDiagnostics.swap(StoredDiagnostics);
Ted Kremenek4f327862011-03-21 18:40:17 +00001885 AST->Invocation = CI;
Chandler Carruthba7537f2011-07-14 09:02:10 +00001886 AST->NestedMacroExpansions = NestedMacroExpansions;
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001887
1888 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00001889 llvm::CrashRecoveryContextCleanupRegistrar<ASTUnit>
1890 ASTUnitCleanup(AST.get());
1891 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInvocation,
1892 llvm::CrashRecoveryContextReleaseRefCleanup<CompilerInvocation> >
1893 CICleanup(CI.getPtr());
David Blaikied6471f72011-09-25 23:23:43 +00001894 llvm::CrashRecoveryContextCleanupRegistrar<DiagnosticsEngine,
1895 llvm::CrashRecoveryContextReleaseRefCleanup<DiagnosticsEngine> >
Ted Kremenek25a11e12011-03-22 01:15:24 +00001896 DiagCleanup(Diags.getPtr());
Ted Kremenekb547eeb2011-03-18 02:06:56 +00001897
Chris Lattner39b49bc2010-11-23 08:35:12 +00001898 return AST->LoadFromCompilerInvocation(PrecompilePreamble) ? 0 : AST.take();
Daniel Dunbar7b556682009-12-02 03:23:45 +00001899}
Douglas Gregorabc563f2010-07-19 21:46:24 +00001900
1901bool ASTUnit::Reparse(RemappedFile *RemappedFiles, unsigned NumRemappedFiles) {
Ted Kremenek4f327862011-03-21 18:40:17 +00001902 if (!Invocation)
Douglas Gregorabc563f2010-07-19 21:46:24 +00001903 return true;
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +00001904
1905 clearFileLevelDecls();
Douglas Gregorabc563f2010-07-19 21:46:24 +00001906
Douglas Gregor213f18b2010-10-28 15:44:59 +00001907 SimpleTimer ParsingTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00001908 ParsingTimer.setOutput("Reparsing " + getMainFileName());
Douglas Gregor213f18b2010-10-28 15:44:59 +00001909
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001910 // Remap files.
Douglas Gregorf128fed2010-08-20 00:02:33 +00001911 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00001912 PPOpts.DisableStatCache = true;
Douglas Gregorf128fed2010-08-20 00:02:33 +00001913 for (PreprocessorOptions::remapped_file_buffer_iterator
1914 R = PPOpts.remapped_file_buffer_begin(),
1915 REnd = PPOpts.remapped_file_buffer_end();
1916 R != REnd;
1917 ++R) {
1918 delete R->second;
1919 }
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001920 Invocation->getPreprocessorOpts().clearRemappedFiles();
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001921 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
1922 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
1923 if (const llvm::MemoryBuffer *
1924 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
1925 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1926 memBuf);
1927 } else {
1928 const char *fname = fileOrBuf.get<const char *>();
1929 Invocation->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first,
1930 fname);
1931 }
1932 }
Douglas Gregorcc5888d2010-07-31 00:40:00 +00001933
Douglas Gregoreababfb2010-08-04 05:53:38 +00001934 // If we have a preamble file lying around, or if we might try to
1935 // build a precompiled preamble, do so now.
Douglas Gregor754f3492010-07-24 00:38:13 +00001936 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Ted Kremenek1872b312011-10-27 17:55:18 +00001937 if (!getPreambleFile(this).empty() || PreambleRebuildCounter > 0)
Douglas Gregor2283d792010-08-20 00:59:43 +00001938 OverrideMainBuffer = getMainBufferWithPrecompiledPreamble(*Invocation);
Douglas Gregor175c4a92010-07-23 23:58:40 +00001939
Douglas Gregorabc563f2010-07-19 21:46:24 +00001940 // Clear out the diagnostics state.
Argyrios Kyrtzidise6825d32011-11-03 20:28:19 +00001941 getDiagnostics().Reset();
1942 ProcessWarningOptions(getDiagnostics(), Invocation->getDiagnosticOpts());
Argyrios Kyrtzidis27368f92011-11-03 20:57:33 +00001943 if (OverrideMainBuffer)
1944 getDiagnostics().setNumWarnings(NumWarningsInPreamble);
Argyrios Kyrtzidise6825d32011-11-03 20:28:19 +00001945
Douglas Gregor175c4a92010-07-23 23:58:40 +00001946 // Parse the sources
Douglas Gregor9b7db622011-02-16 18:16:54 +00001947 bool Result = Parse(OverrideMainBuffer);
Argyrios Kyrtzidis2fe17fc2011-10-31 21:25:31 +00001948
1949 // If we're caching global code-completion results, and the top-level
1950 // declarations have changed, clear out the code-completion cache.
1951 if (!Result && ShouldCacheCodeCompletionResults &&
1952 CurrentTopLevelHashValue != CompletionCacheTopLevelHashValue)
1953 CacheCodeCompletionResults();
Douglas Gregor9b7db622011-02-16 18:16:54 +00001954
Douglas Gregor8fa0a802011-08-04 20:04:59 +00001955 // We now need to clear out the completion allocator for
1956 // clang_getCursorCompletionString; it'll be recreated if necessary.
1957 CursorCompletionAllocator = 0;
1958
Douglas Gregor175c4a92010-07-23 23:58:40 +00001959 return Result;
Douglas Gregorabc563f2010-07-19 21:46:24 +00001960}
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00001961
Douglas Gregor87c08a52010-08-13 22:48:40 +00001962//----------------------------------------------------------------------------//
1963// Code completion
1964//----------------------------------------------------------------------------//
1965
1966namespace {
1967 /// \brief Code completion consumer that combines the cached code-completion
1968 /// results from an ASTUnit with the code-completion results provided to it,
1969 /// then passes the result on to
1970 class AugmentedCodeCompleteConsumer : public CodeCompleteConsumer {
Douglas Gregor3da626b2011-07-07 16:03:39 +00001971 unsigned long long NormalContexts;
Douglas Gregor87c08a52010-08-13 22:48:40 +00001972 ASTUnit &AST;
1973 CodeCompleteConsumer &Next;
1974
1975 public:
1976 AugmentedCodeCompleteConsumer(ASTUnit &AST, CodeCompleteConsumer &Next,
Douglas Gregor8071e422010-08-15 06:18:01 +00001977 bool IncludeMacros, bool IncludeCodePatterns,
1978 bool IncludeGlobals)
1979 : CodeCompleteConsumer(IncludeMacros, IncludeCodePatterns, IncludeGlobals,
Douglas Gregor87c08a52010-08-13 22:48:40 +00001980 Next.isOutputBinary()), AST(AST), Next(Next)
1981 {
1982 // Compute the set of contexts in which we will look when we don't have
1983 // any information about the specific context.
1984 NormalContexts
Douglas Gregor3da626b2011-07-07 16:03:39 +00001985 = (1LL << (CodeCompletionContext::CCC_TopLevel - 1))
1986 | (1LL << (CodeCompletionContext::CCC_ObjCInterface - 1))
1987 | (1LL << (CodeCompletionContext::CCC_ObjCImplementation - 1))
1988 | (1LL << (CodeCompletionContext::CCC_ObjCIvarList - 1))
1989 | (1LL << (CodeCompletionContext::CCC_Statement - 1))
1990 | (1LL << (CodeCompletionContext::CCC_Expression - 1))
1991 | (1LL << (CodeCompletionContext::CCC_ObjCMessageReceiver - 1))
1992 | (1LL << (CodeCompletionContext::CCC_DotMemberAccess - 1))
1993 | (1LL << (CodeCompletionContext::CCC_ArrowMemberAccess - 1))
1994 | (1LL << (CodeCompletionContext::CCC_ObjCPropertyAccess - 1))
1995 | (1LL << (CodeCompletionContext::CCC_ObjCProtocolName - 1))
1996 | (1LL << (CodeCompletionContext::CCC_ParenthesizedExpression - 1))
1997 | (1LL << (CodeCompletionContext::CCC_Recovery - 1));
Douglas Gregor02688102010-09-14 23:59:36 +00001998
Douglas Gregor87c08a52010-08-13 22:48:40 +00001999 if (AST.getASTContext().getLangOptions().CPlusPlus)
Douglas Gregor3da626b2011-07-07 16:03:39 +00002000 NormalContexts |= (1LL << (CodeCompletionContext::CCC_EnumTag - 1))
2001 | (1LL << (CodeCompletionContext::CCC_UnionTag - 1))
2002 | (1LL << (CodeCompletionContext::CCC_ClassOrStructTag - 1));
Douglas Gregor87c08a52010-08-13 22:48:40 +00002003 }
2004
2005 virtual void ProcessCodeCompleteResults(Sema &S,
2006 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00002007 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002008 unsigned NumResults);
Douglas Gregor87c08a52010-08-13 22:48:40 +00002009
2010 virtual void ProcessOverloadCandidates(Sema &S, unsigned CurrentArg,
2011 OverloadCandidate *Candidates,
2012 unsigned NumCandidates) {
2013 Next.ProcessOverloadCandidates(S, CurrentArg, Candidates, NumCandidates);
2014 }
Douglas Gregor218937c2011-02-01 19:23:04 +00002015
Douglas Gregordae68752011-02-01 22:57:45 +00002016 virtual CodeCompletionAllocator &getAllocator() {
Douglas Gregor218937c2011-02-01 19:23:04 +00002017 return Next.getAllocator();
2018 }
Douglas Gregor87c08a52010-08-13 22:48:40 +00002019 };
2020}
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002021
Douglas Gregor5f808c22010-08-16 21:18:39 +00002022/// \brief Helper function that computes which global names are hidden by the
2023/// local code-completion results.
Ted Kremenekc198f612010-11-07 06:11:36 +00002024static void CalculateHiddenNames(const CodeCompletionContext &Context,
2025 CodeCompletionResult *Results,
2026 unsigned NumResults,
2027 ASTContext &Ctx,
2028 llvm::StringSet<llvm::BumpPtrAllocator> &HiddenNames){
Douglas Gregor5f808c22010-08-16 21:18:39 +00002029 bool OnlyTagNames = false;
2030 switch (Context.getKind()) {
Douglas Gregor52779fb2010-09-23 23:01:17 +00002031 case CodeCompletionContext::CCC_Recovery:
Douglas Gregor5f808c22010-08-16 21:18:39 +00002032 case CodeCompletionContext::CCC_TopLevel:
2033 case CodeCompletionContext::CCC_ObjCInterface:
2034 case CodeCompletionContext::CCC_ObjCImplementation:
2035 case CodeCompletionContext::CCC_ObjCIvarList:
2036 case CodeCompletionContext::CCC_ClassStructUnion:
2037 case CodeCompletionContext::CCC_Statement:
2038 case CodeCompletionContext::CCC_Expression:
2039 case CodeCompletionContext::CCC_ObjCMessageReceiver:
Douglas Gregor3da626b2011-07-07 16:03:39 +00002040 case CodeCompletionContext::CCC_DotMemberAccess:
2041 case CodeCompletionContext::CCC_ArrowMemberAccess:
2042 case CodeCompletionContext::CCC_ObjCPropertyAccess:
Douglas Gregor5f808c22010-08-16 21:18:39 +00002043 case CodeCompletionContext::CCC_Namespace:
2044 case CodeCompletionContext::CCC_Type:
Douglas Gregor2ccccb32010-08-23 18:23:48 +00002045 case CodeCompletionContext::CCC_Name:
2046 case CodeCompletionContext::CCC_PotentiallyQualifiedName:
Douglas Gregor02688102010-09-14 23:59:36 +00002047 case CodeCompletionContext::CCC_ParenthesizedExpression:
Douglas Gregor0f91c8c2011-07-30 06:55:39 +00002048 case CodeCompletionContext::CCC_ObjCInterfaceName:
Douglas Gregor5f808c22010-08-16 21:18:39 +00002049 break;
2050
2051 case CodeCompletionContext::CCC_EnumTag:
2052 case CodeCompletionContext::CCC_UnionTag:
2053 case CodeCompletionContext::CCC_ClassOrStructTag:
2054 OnlyTagNames = true;
2055 break;
2056
2057 case CodeCompletionContext::CCC_ObjCProtocolName:
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002058 case CodeCompletionContext::CCC_MacroName:
2059 case CodeCompletionContext::CCC_MacroNameUse:
Douglas Gregorf29c5232010-08-24 22:20:20 +00002060 case CodeCompletionContext::CCC_PreprocessorExpression:
Douglas Gregor721f3592010-08-25 18:41:16 +00002061 case CodeCompletionContext::CCC_PreprocessorDirective:
Douglas Gregor59a66942010-08-25 18:04:30 +00002062 case CodeCompletionContext::CCC_NaturalLanguage:
Douglas Gregor458433d2010-08-26 15:07:07 +00002063 case CodeCompletionContext::CCC_SelectorName:
Douglas Gregor1a480c42010-08-27 17:35:51 +00002064 case CodeCompletionContext::CCC_TypeQualifiers:
Douglas Gregor52779fb2010-09-23 23:01:17 +00002065 case CodeCompletionContext::CCC_Other:
Douglas Gregor5c722c702011-02-18 23:30:37 +00002066 case CodeCompletionContext::CCC_OtherWithMacros:
Douglas Gregor3da626b2011-07-07 16:03:39 +00002067 case CodeCompletionContext::CCC_ObjCInstanceMessage:
2068 case CodeCompletionContext::CCC_ObjCClassMessage:
2069 case CodeCompletionContext::CCC_ObjCCategoryName:
Douglas Gregor721f3592010-08-25 18:41:16 +00002070 // We're looking for nothing, or we're looking for names that cannot
2071 // be hidden.
Douglas Gregor5f808c22010-08-16 21:18:39 +00002072 return;
2073 }
2074
John McCall0a2c5e22010-08-25 06:19:51 +00002075 typedef CodeCompletionResult Result;
Douglas Gregor5f808c22010-08-16 21:18:39 +00002076 for (unsigned I = 0; I != NumResults; ++I) {
2077 if (Results[I].Kind != Result::RK_Declaration)
2078 continue;
2079
2080 unsigned IDNS
2081 = Results[I].Declaration->getUnderlyingDecl()->getIdentifierNamespace();
2082
2083 bool Hiding = false;
2084 if (OnlyTagNames)
2085 Hiding = (IDNS & Decl::IDNS_Tag);
2086 else {
2087 unsigned HiddenIDNS = (Decl::IDNS_Type | Decl::IDNS_Member |
Douglas Gregora5fb7c32010-08-16 23:05:20 +00002088 Decl::IDNS_Namespace | Decl::IDNS_Ordinary |
2089 Decl::IDNS_NonMemberOperator);
Douglas Gregor5f808c22010-08-16 21:18:39 +00002090 if (Ctx.getLangOptions().CPlusPlus)
2091 HiddenIDNS |= Decl::IDNS_Tag;
2092 Hiding = (IDNS & HiddenIDNS);
2093 }
2094
2095 if (!Hiding)
2096 continue;
2097
2098 DeclarationName Name = Results[I].Declaration->getDeclName();
2099 if (IdentifierInfo *Identifier = Name.getAsIdentifierInfo())
2100 HiddenNames.insert(Identifier->getName());
2101 else
2102 HiddenNames.insert(Name.getAsString());
2103 }
2104}
2105
2106
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002107void AugmentedCodeCompleteConsumer::ProcessCodeCompleteResults(Sema &S,
2108 CodeCompletionContext Context,
John McCall0a2c5e22010-08-25 06:19:51 +00002109 CodeCompletionResult *Results,
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002110 unsigned NumResults) {
2111 // Merge the results we were given with the results we cached.
2112 bool AddedResult = false;
Douglas Gregor5f808c22010-08-16 21:18:39 +00002113 unsigned InContexts
Douglas Gregor52779fb2010-09-23 23:01:17 +00002114 = (Context.getKind() == CodeCompletionContext::CCC_Recovery? NormalContexts
NAKAMURA Takumi01a429a2011-08-17 01:46:16 +00002115 : (1ULL << (Context.getKind() - 1)));
Douglas Gregor5f808c22010-08-16 21:18:39 +00002116 // Contains the set of names that are hidden by "local" completion results.
Ted Kremenekc198f612010-11-07 06:11:36 +00002117 llvm::StringSet<llvm::BumpPtrAllocator> HiddenNames;
John McCall0a2c5e22010-08-25 06:19:51 +00002118 typedef CodeCompletionResult Result;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002119 SmallVector<Result, 8> AllResults;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002120 for (ASTUnit::cached_completion_iterator
Douglas Gregor5535d572010-08-16 21:23:13 +00002121 C = AST.cached_completion_begin(),
2122 CEnd = AST.cached_completion_end();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002123 C != CEnd; ++C) {
2124 // If the context we are in matches any of the contexts we are
2125 // interested in, we'll add this result.
2126 if ((C->ShowInContexts & InContexts) == 0)
2127 continue;
2128
2129 // If we haven't added any results previously, do so now.
2130 if (!AddedResult) {
Douglas Gregor5f808c22010-08-16 21:18:39 +00002131 CalculateHiddenNames(Context, Results, NumResults, S.Context,
2132 HiddenNames);
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002133 AllResults.insert(AllResults.end(), Results, Results + NumResults);
2134 AddedResult = true;
2135 }
2136
Douglas Gregor5f808c22010-08-16 21:18:39 +00002137 // Determine whether this global completion result is hidden by a local
2138 // completion result. If so, skip it.
2139 if (C->Kind != CXCursor_MacroDefinition &&
2140 HiddenNames.count(C->Completion->getTypedText()))
2141 continue;
2142
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002143 // Adjust priority based on similar type classes.
2144 unsigned Priority = C->Priority;
Douglas Gregor4125c372010-08-25 18:03:13 +00002145 CXCursorKind CursorKind = C->Kind;
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002146 CodeCompletionString *Completion = C->Completion;
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002147 if (!Context.getPreferredType().isNull()) {
2148 if (C->Kind == CXCursor_MacroDefinition) {
2149 Priority = getMacroUsagePriority(C->Completion->getTypedText(),
Douglas Gregorb05496d2010-09-20 21:11:48 +00002150 S.getLangOptions(),
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002151 Context.getPreferredType()->isAnyPointerType());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002152 } else if (C->Type) {
2153 CanQualType Expected
Douglas Gregor5535d572010-08-16 21:23:13 +00002154 = S.Context.getCanonicalType(
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002155 Context.getPreferredType().getUnqualifiedType());
2156 SimplifiedTypeClass ExpectedSTC = getSimplifiedTypeClass(Expected);
2157 if (ExpectedSTC == C->TypeClass) {
2158 // We know this type is similar; check for an exact match.
2159 llvm::StringMap<unsigned> &CachedCompletionTypes
Douglas Gregor5535d572010-08-16 21:23:13 +00002160 = AST.getCachedCompletionTypes();
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002161 llvm::StringMap<unsigned>::iterator Pos
Douglas Gregor5535d572010-08-16 21:23:13 +00002162 = CachedCompletionTypes.find(QualType(Expected).getAsString());
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002163 if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
2164 Priority /= CCF_ExactTypeMatch;
2165 else
2166 Priority /= CCF_SimilarTypeMatch;
2167 }
2168 }
2169 }
2170
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002171 // Adjust the completion string, if required.
2172 if (C->Kind == CXCursor_MacroDefinition &&
2173 Context.getKind() == CodeCompletionContext::CCC_MacroNameUse) {
2174 // Create a new code-completion string that just contains the
2175 // macro name, without its arguments.
Douglas Gregor218937c2011-02-01 19:23:04 +00002176 CodeCompletionBuilder Builder(getAllocator(), CCP_CodePattern,
2177 C->Availability);
2178 Builder.AddTypedTextChunk(C->Completion->getTypedText());
Douglas Gregor4125c372010-08-25 18:03:13 +00002179 CursorKind = CXCursor_NotImplemented;
2180 Priority = CCP_CodePattern;
Douglas Gregor218937c2011-02-01 19:23:04 +00002181 Completion = Builder.TakeString();
Douglas Gregor1fbb4472010-08-24 20:21:13 +00002182 }
2183
Douglas Gregor4125c372010-08-25 18:03:13 +00002184 AllResults.push_back(Result(Completion, Priority, CursorKind,
Douglas Gregor58ddb602010-08-23 23:00:57 +00002185 C->Availability));
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002186 }
2187
2188 // If we did not add any cached completion results, just forward the
2189 // results we were given to the next consumer.
2190 if (!AddedResult) {
2191 Next.ProcessCodeCompleteResults(S, Context, Results, NumResults);
2192 return;
2193 }
Douglas Gregor1e5e6682010-08-26 13:48:20 +00002194
Douglas Gregor697ca6d2010-08-16 20:01:48 +00002195 Next.ProcessCodeCompleteResults(S, Context, AllResults.data(),
2196 AllResults.size());
2197}
2198
2199
2200
Chris Lattner5f9e2722011-07-23 10:55:15 +00002201void ASTUnit::CodeComplete(StringRef File, unsigned Line, unsigned Column,
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002202 RemappedFile *RemappedFiles,
2203 unsigned NumRemappedFiles,
Douglas Gregorcee235c2010-08-05 09:09:23 +00002204 bool IncludeMacros,
2205 bool IncludeCodePatterns,
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002206 CodeCompleteConsumer &Consumer,
David Blaikied6471f72011-09-25 23:23:43 +00002207 DiagnosticsEngine &Diag, LangOptions &LangOpts,
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002208 SourceManager &SourceMgr, FileManager &FileMgr,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002209 SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics,
2210 SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers) {
Ted Kremenek4f327862011-03-21 18:40:17 +00002211 if (!Invocation)
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002212 return;
2213
Douglas Gregor213f18b2010-10-28 15:44:59 +00002214 SimpleTimer CompletionTimer(WantTiming);
Benjamin Krameredfb7ec2010-11-09 20:00:56 +00002215 CompletionTimer.setOutput("Code completion @ " + File + ":" +
Chris Lattner5f9e2722011-07-23 10:55:15 +00002216 Twine(Line) + ":" + Twine(Column));
Douglas Gregordf95a132010-08-09 20:45:32 +00002217
Ted Kremenek4f327862011-03-21 18:40:17 +00002218 llvm::IntrusiveRefCntPtr<CompilerInvocation>
2219 CCInvocation(new CompilerInvocation(*Invocation));
2220
2221 FrontendOptions &FrontendOpts = CCInvocation->getFrontendOpts();
2222 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts();
Douglas Gregorcee235c2010-08-05 09:09:23 +00002223
Douglas Gregor87c08a52010-08-13 22:48:40 +00002224 FrontendOpts.ShowMacrosInCodeCompletion
2225 = IncludeMacros && CachedCompletionResults.empty();
Douglas Gregorcee235c2010-08-05 09:09:23 +00002226 FrontendOpts.ShowCodePatternsInCodeCompletion = IncludeCodePatterns;
Douglas Gregor8071e422010-08-15 06:18:01 +00002227 FrontendOpts.ShowGlobalSymbolsInCodeCompletion
2228 = CachedCompletionResults.empty();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002229 FrontendOpts.CodeCompletionAt.FileName = File;
2230 FrontendOpts.CodeCompletionAt.Line = Line;
2231 FrontendOpts.CodeCompletionAt.Column = Column;
2232
2233 // Set the language options appropriately.
Ted Kremenek4f327862011-03-21 18:40:17 +00002234 LangOpts = CCInvocation->getLangOpts();
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002235
Ted Kremenek03201fb2011-03-21 18:40:07 +00002236 llvm::OwningPtr<CompilerInstance> Clang(new CompilerInstance());
2237
2238 // Recover resources if we crash before exiting this method.
Ted Kremenek25a11e12011-03-22 01:15:24 +00002239 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance>
2240 CICleanup(Clang.get());
Ted Kremenek03201fb2011-03-21 18:40:07 +00002241
Ted Kremenek4f327862011-03-21 18:40:17 +00002242 Clang->setInvocation(&*CCInvocation);
Ted Kremenek03201fb2011-03-21 18:40:07 +00002243 OriginalSourceFile = Clang->getFrontendOpts().Inputs[0].second;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002244
2245 // Set up diagnostics, capturing any diagnostics produced.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002246 Clang->setDiagnostics(&Diag);
Ted Kremenek4f327862011-03-21 18:40:17 +00002247 ProcessWarningOptions(Diag, CCInvocation->getDiagnosticOpts());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002248 CaptureDroppedDiagnostics Capture(true,
Ted Kremenek03201fb2011-03-21 18:40:07 +00002249 Clang->getDiagnostics(),
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002250 StoredDiagnostics);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002251
2252 // Create the target instance.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002253 Clang->getTargetOpts().Features = TargetFeatures;
2254 Clang->setTarget(TargetInfo::CreateTargetInfo(Clang->getDiagnostics(),
2255 Clang->getTargetOpts()));
2256 if (!Clang->hasTarget()) {
Ted Kremenek4f327862011-03-21 18:40:17 +00002257 Clang->setInvocation(0);
Douglas Gregorbdbb0042010-08-18 22:29:43 +00002258 return;
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002259 }
2260
2261 // Inform the target of the language options.
2262 //
2263 // FIXME: We shouldn't need to do this, the target should be immutable once
2264 // created. This complexity should be lifted elsewhere.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002265 Clang->getTarget().setForcedLangOptions(Clang->getLangOpts());
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002266
Ted Kremenek03201fb2011-03-21 18:40:07 +00002267 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002268 "Invocation must have exactly one source file!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00002269 assert(Clang->getFrontendOpts().Inputs[0].first != IK_AST &&
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002270 "FIXME: AST inputs not yet supported here!");
Ted Kremenek03201fb2011-03-21 18:40:07 +00002271 assert(Clang->getFrontendOpts().Inputs[0].first != IK_LLVM_IR &&
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002272 "IR inputs not support here!");
2273
2274
2275 // Use the source and file managers that we were given.
Ted Kremenek03201fb2011-03-21 18:40:07 +00002276 Clang->setFileManager(&FileMgr);
2277 Clang->setSourceManager(&SourceMgr);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002278
2279 // Remap files.
2280 PreprocessorOpts.clearRemappedFiles();
Douglas Gregorb75d3df2010-08-04 17:07:00 +00002281 PreprocessorOpts.RetainRemappedFileBuffers = true;
Douglas Gregor2283d792010-08-20 00:59:43 +00002282 for (unsigned I = 0; I != NumRemappedFiles; ++I) {
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00002283 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second;
2284 if (const llvm::MemoryBuffer *
2285 memBuf = fileOrBuf.dyn_cast<const llvm::MemoryBuffer *>()) {
2286 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, memBuf);
2287 OwnedBuffers.push_back(memBuf);
2288 } else {
2289 const char *fname = fileOrBuf.get<const char *>();
2290 PreprocessorOpts.addRemappedFile(RemappedFiles[I].first, fname);
2291 }
Douglas Gregor2283d792010-08-20 00:59:43 +00002292 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002293
Douglas Gregor87c08a52010-08-13 22:48:40 +00002294 // Use the code completion consumer we were given, but adding any cached
2295 // code-completion results.
Douglas Gregor7f946ad2010-11-29 16:13:56 +00002296 AugmentedCodeCompleteConsumer *AugmentedConsumer
2297 = new AugmentedCodeCompleteConsumer(*this, Consumer,
2298 FrontendOpts.ShowMacrosInCodeCompletion,
2299 FrontendOpts.ShowCodePatternsInCodeCompletion,
2300 FrontendOpts.ShowGlobalSymbolsInCodeCompletion);
Ted Kremenek03201fb2011-03-21 18:40:07 +00002301 Clang->setCodeCompletionConsumer(AugmentedConsumer);
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002302
Douglas Gregordf95a132010-08-09 20:45:32 +00002303 // If we have a precompiled preamble, try to use it. We only allow
2304 // the use of the precompiled preamble if we're if the completion
2305 // point is within the main file, after the end of the precompiled
2306 // preamble.
2307 llvm::MemoryBuffer *OverrideMainBuffer = 0;
Ted Kremenek1872b312011-10-27 17:55:18 +00002308 if (!getPreambleFile(this).empty()) {
Douglas Gregordf95a132010-08-09 20:45:32 +00002309 using llvm::sys::FileStatus;
2310 llvm::sys::PathWithStatus CompleteFilePath(File);
2311 llvm::sys::PathWithStatus MainPath(OriginalSourceFile);
2312 if (const FileStatus *CompleteFileStatus = CompleteFilePath.getFileStatus())
2313 if (const FileStatus *MainStatus = MainPath.getFileStatus())
Argyrios Kyrtzidisc8c97a02011-09-04 03:32:04 +00002314 if (CompleteFileStatus->getUniqueID() == MainStatus->getUniqueID() &&
2315 Line > 1)
Douglas Gregor2283d792010-08-20 00:59:43 +00002316 OverrideMainBuffer
Ted Kremenek4f327862011-03-21 18:40:17 +00002317 = getMainBufferWithPrecompiledPreamble(*CCInvocation, false,
Douglas Gregorc9c29a82010-08-25 18:04:15 +00002318 Line - 1);
Douglas Gregordf95a132010-08-09 20:45:32 +00002319 }
2320
2321 // If the main file has been overridden due to the use of a preamble,
2322 // make that override happen and introduce the preamble.
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00002323 PreprocessorOpts.DisableStatCache = true;
Douglas Gregor4cd912a2010-10-12 00:50:20 +00002324 StoredDiagnostics.insert(StoredDiagnostics.end(),
Argyrios Kyrtzidis3e9d3262011-10-24 17:25:20 +00002325 stored_diag_begin(),
2326 stored_diag_afterDriver_begin());
Douglas Gregordf95a132010-08-09 20:45:32 +00002327 if (OverrideMainBuffer) {
2328 PreprocessorOpts.addRemappedFile(OriginalSourceFile, OverrideMainBuffer);
2329 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size();
2330 PreprocessorOpts.PrecompiledPreambleBytes.second
2331 = PreambleEndsAtStartOfLine;
Ted Kremenek1872b312011-10-27 17:55:18 +00002332 PreprocessorOpts.ImplicitPCHInclude = getPreambleFile(this);
Douglas Gregordf95a132010-08-09 20:45:32 +00002333 PreprocessorOpts.DisablePCHValidation = true;
2334
Douglas Gregor2283d792010-08-20 00:59:43 +00002335 OwnedBuffers.push_back(OverrideMainBuffer);
Douglas Gregorf128fed2010-08-20 00:02:33 +00002336 } else {
2337 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
2338 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Douglas Gregordf95a132010-08-09 20:45:32 +00002339 }
2340
Douglas Gregordca8ee82011-05-06 16:33:08 +00002341 // Disable the preprocessing record
2342 PreprocessorOpts.DetailedRecord = false;
2343
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002344 llvm::OwningPtr<SyntaxOnlyAction> Act;
2345 Act.reset(new SyntaxOnlyAction);
Ted Kremenek03201fb2011-03-21 18:40:07 +00002346 if (Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0].second,
2347 Clang->getFrontendOpts().Inputs[0].first)) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002348 if (OverrideMainBuffer) {
Ted Kremenek1872b312011-10-27 17:55:18 +00002349 std::string ModName = getPreambleFile(this);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002350 TranslateStoredDiagnostics(Clang->getModuleManager(), ModName,
2351 getSourceManager(), PreambleDiagnostics,
2352 StoredDiagnostics);
2353 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002354 Act->Execute();
2355 Act->EndSourceFile();
2356 }
Douglas Gregor1abc6bc2010-08-04 16:47:14 +00002357}
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002358
Chris Lattner5f9e2722011-07-23 10:55:15 +00002359CXSaveError ASTUnit::Save(StringRef File) {
Douglas Gregor85bea972011-07-06 17:40:26 +00002360 if (getDiagnostics().hasUnrecoverableErrorOccurred())
Douglas Gregor39c411f2011-07-06 16:43:36 +00002361 return CXSaveError_TranslationErrors;
Argyrios Kyrtzidis9cca68d2011-07-21 18:44:49 +00002362
2363 // Write to a temporary file and later rename it to the actual file, to avoid
2364 // possible race conditions.
Argyrios Kyrtzidis7e909852011-07-28 00:45:10 +00002365 llvm::SmallString<128> TempPath;
2366 TempPath = File;
2367 TempPath += "-%%%%%%%%";
2368 int fd;
2369 if (llvm::sys::fs::unique_file(TempPath.str(), fd, TempPath,
2370 /*makeAbsolute=*/false))
Argyrios Kyrtzidis9cca68d2011-07-21 18:44:49 +00002371 return CXSaveError_Unknown;
Argyrios Kyrtzidis9cca68d2011-07-21 18:44:49 +00002372
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002373 // FIXME: Can we somehow regenerate the stat cache here, or do we need to
2374 // unconditionally create a stat cache when we parse the file?
Argyrios Kyrtzidis7e909852011-07-28 00:45:10 +00002375 llvm::raw_fd_ostream Out(fd, /*shouldClose=*/true);
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002376
2377 serialize(Out);
2378 Out.close();
Argyrios Kyrtzidis9cca68d2011-07-21 18:44:49 +00002379 if (Out.has_error())
2380 return CXSaveError_Unknown;
2381
2382 if (llvm::error_code ec = llvm::sys::fs::rename(TempPath.str(), File)) {
2383 bool exists;
2384 llvm::sys::fs::remove(TempPath.str(), exists);
2385 return CXSaveError_Unknown;
2386 }
2387
2388 return CXSaveError_None;
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002389}
2390
Chris Lattner5f9e2722011-07-23 10:55:15 +00002391bool ASTUnit::serialize(raw_ostream &OS) {
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002392 if (getDiagnostics().hasErrorOccurred())
2393 return true;
2394
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002395 std::vector<unsigned char> Buffer;
2396 llvm::BitstreamWriter Stream(Buffer);
Sebastian Redla4232eb2010-08-18 23:56:21 +00002397 ASTWriter Writer(Stream);
Douglas Gregor7143aab2011-09-01 17:04:32 +00002398 // FIXME: Handle modules
2399 Writer.WriteAST(getSema(), 0, std::string(), /*IsModule=*/false, "");
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002400
2401 // Write the generated bitstream to "Out".
Douglas Gregorbdbb0042010-08-18 22:29:43 +00002402 if (!Buffer.empty())
Argyrios Kyrtzidisb0f4b9a2011-03-09 17:21:42 +00002403 OS.write((char *)&Buffer.front(), Buffer.size());
2404
2405 return false;
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00002406}
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002407
2408typedef ContinuousRangeMap<unsigned, int, 2> SLocRemap;
2409
2410static void TranslateSLoc(SourceLocation &L, SLocRemap &Remap) {
2411 unsigned Raw = L.getRawEncoding();
2412 const unsigned MacroBit = 1U << 31;
2413 L = SourceLocation::getFromRawEncoding((Raw & MacroBit) |
2414 ((Raw & ~MacroBit) + Remap.find(Raw & ~MacroBit)->second));
2415}
2416
2417void ASTUnit::TranslateStoredDiagnostics(
2418 ASTReader *MMan,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002419 StringRef ModName,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002420 SourceManager &SrcMgr,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002421 const SmallVectorImpl<StoredDiagnostic> &Diags,
2422 SmallVectorImpl<StoredDiagnostic> &Out) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002423 // The stored diagnostic has the old source manager in it; update
2424 // the locations to refer into the new source manager. We also need to remap
2425 // all the locations to the new view. This includes the diag location, any
2426 // associated source ranges, and the source ranges of associated fix-its.
2427 // FIXME: There should be a cleaner way to do this.
2428
Chris Lattner5f9e2722011-07-23 10:55:15 +00002429 SmallVector<StoredDiagnostic, 4> Result;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002430 Result.reserve(Diags.size());
2431 assert(MMan && "Don't have a module manager");
Jonathan D. Turner48d2c3f2011-07-26 18:21:30 +00002432 serialization::Module *Mod = MMan->ModuleMgr.lookup(ModName);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002433 assert(Mod && "Don't have preamble module");
2434 SLocRemap &Remap = Mod->SLocRemap;
2435 for (unsigned I = 0, N = Diags.size(); I != N; ++I) {
2436 // Rebuild the StoredDiagnostic.
2437 const StoredDiagnostic &SD = Diags[I];
2438 SourceLocation L = SD.getLocation();
2439 TranslateSLoc(L, Remap);
2440 FullSourceLoc Loc(L, SrcMgr);
2441
Chris Lattner5f9e2722011-07-23 10:55:15 +00002442 SmallVector<CharSourceRange, 4> Ranges;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002443 Ranges.reserve(SD.range_size());
2444 for (StoredDiagnostic::range_iterator I = SD.range_begin(),
2445 E = SD.range_end();
2446 I != E; ++I) {
2447 SourceLocation BL = I->getBegin();
2448 TranslateSLoc(BL, Remap);
2449 SourceLocation EL = I->getEnd();
2450 TranslateSLoc(EL, Remap);
2451 Ranges.push_back(CharSourceRange(SourceRange(BL, EL), I->isTokenRange()));
2452 }
2453
Chris Lattner5f9e2722011-07-23 10:55:15 +00002454 SmallVector<FixItHint, 2> FixIts;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002455 FixIts.reserve(SD.fixit_size());
2456 for (StoredDiagnostic::fixit_iterator I = SD.fixit_begin(),
2457 E = SD.fixit_end();
2458 I != E; ++I) {
2459 FixIts.push_back(FixItHint());
2460 FixItHint &FH = FixIts.back();
2461 FH.CodeToInsert = I->CodeToInsert;
2462 SourceLocation BL = I->RemoveRange.getBegin();
2463 TranslateSLoc(BL, Remap);
2464 SourceLocation EL = I->RemoveRange.getEnd();
2465 TranslateSLoc(EL, Remap);
2466 FH.RemoveRange = CharSourceRange(SourceRange(BL, EL),
2467 I->RemoveRange.isTokenRange());
2468 }
2469
2470 Result.push_back(StoredDiagnostic(SD.getLevel(), SD.getID(),
2471 SD.getMessage(), Loc, Ranges, FixIts));
2472 }
2473 Result.swap(Out);
2474}
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002475
Argyrios Kyrtzidis332cb9b2011-10-31 07:19:59 +00002476static inline bool compLocDecl(std::pair<unsigned, Decl *> L,
2477 std::pair<unsigned, Decl *> R) {
2478 return L.first < R.first;
2479}
2480
2481void ASTUnit::addFileLevelDecl(Decl *D) {
2482 assert(D);
2483 assert(!D->isFromASTFile() && "This is only for local decl");
2484
2485 SourceManager &SM = *SourceMgr;
2486 SourceLocation Loc = D->getLocation();
2487 if (Loc.isInvalid() || !SM.isLocalSourceLocation(Loc))
2488 return;
2489
2490 // We only keep track of the file-level declarations of each file.
2491 if (!D->getLexicalDeclContext()->isFileContext())
2492 return;
2493
2494 SourceLocation FileLoc = SM.getFileLoc(Loc);
2495 assert(SM.isLocalSourceLocation(FileLoc));
2496 FileID FID;
2497 unsigned Offset;
2498 llvm::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc);
2499 if (FID.isInvalid())
2500 return;
2501
2502 LocDeclsTy *&Decls = FileDecls[FID];
2503 if (!Decls)
2504 Decls = new LocDeclsTy();
2505
2506 std::pair<unsigned, Decl *> LocDecl(Offset, D);
2507
2508 if (Decls->empty() || Decls->back().first <= Offset) {
2509 Decls->push_back(LocDecl);
2510 return;
2511 }
2512
2513 LocDeclsTy::iterator
2514 I = std::upper_bound(Decls->begin(), Decls->end(), LocDecl, compLocDecl);
2515
2516 Decls->insert(I, LocDecl);
2517}
2518
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00002519void ASTUnit::findFileRegionDecls(FileID File, unsigned Offset, unsigned Length,
2520 SmallVectorImpl<Decl *> &Decls) {
2521 if (File.isInvalid())
2522 return;
2523
2524 if (SourceMgr->isLoadedFileID(File)) {
2525 assert(Ctx->getExternalSource() && "No external source!");
2526 return Ctx->getExternalSource()->FindFileRegionDecls(File, Offset, Length,
2527 Decls);
2528 }
2529
2530 FileDeclsTy::iterator I = FileDecls.find(File);
2531 if (I == FileDecls.end())
2532 return;
2533
2534 LocDeclsTy &LocDecls = *I->second;
2535 if (LocDecls.empty())
2536 return;
2537
2538 LocDeclsTy::iterator
2539 BeginIt = std::lower_bound(LocDecls.begin(), LocDecls.end(),
2540 std::make_pair(Offset, (Decl*)0), compLocDecl);
2541 if (BeginIt != LocDecls.begin())
2542 --BeginIt;
2543
2544 LocDeclsTy::iterator
2545 EndIt = std::upper_bound(LocDecls.begin(), LocDecls.end(),
2546 std::make_pair(Offset+Length, (Decl*)0),
2547 compLocDecl);
2548 if (EndIt != LocDecls.end())
2549 ++EndIt;
2550
2551 for (LocDeclsTy::iterator DIt = BeginIt; DIt != EndIt; ++DIt)
2552 Decls.push_back(DIt->second);
2553}
2554
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002555SourceLocation ASTUnit::getLocation(const FileEntry *File,
2556 unsigned Line, unsigned Col) const {
2557 const SourceManager &SM = getSourceManager();
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00002558 SourceLocation Loc = SM.translateFileLineCol(File, Line, Col);
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002559 return SM.getMacroArgExpandedLocation(Loc);
2560}
2561
2562SourceLocation ASTUnit::getLocation(const FileEntry *File,
2563 unsigned Offset) const {
2564 const SourceManager &SM = getSourceManager();
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00002565 SourceLocation FileLoc = SM.translateFileLineCol(File, 1, 1);
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002566 return SM.getMacroArgExpandedLocation(FileLoc.getLocWithOffset(Offset));
2567}
2568
Argyrios Kyrtzidisee0f84f2011-09-26 08:01:41 +00002569/// \brief If \arg Loc is a loaded location from the preamble, returns
2570/// the corresponding local location of the main file, otherwise it returns
2571/// \arg Loc.
2572SourceLocation ASTUnit::mapLocationFromPreamble(SourceLocation Loc) {
2573 FileID PreambleID;
2574 if (SourceMgr)
2575 PreambleID = SourceMgr->getPreambleFileID();
2576
2577 if (Loc.isInvalid() || Preamble.empty() || PreambleID.isInvalid())
2578 return Loc;
2579
2580 unsigned Offs;
2581 if (SourceMgr->isInFileID(Loc, PreambleID, &Offs) && Offs < Preamble.size()) {
2582 SourceLocation FileLoc
2583 = SourceMgr->getLocForStartOfFile(SourceMgr->getMainFileID());
2584 return FileLoc.getLocWithOffset(Offs);
2585 }
2586
2587 return Loc;
2588}
2589
2590/// \brief If \arg Loc is a local location of the main file but inside the
2591/// preamble chunk, returns the corresponding loaded location from the
2592/// preamble, otherwise it returns \arg Loc.
2593SourceLocation ASTUnit::mapLocationToPreamble(SourceLocation Loc) {
2594 FileID PreambleID;
2595 if (SourceMgr)
2596 PreambleID = SourceMgr->getPreambleFileID();
2597
2598 if (Loc.isInvalid() || Preamble.empty() || PreambleID.isInvalid())
2599 return Loc;
2600
2601 unsigned Offs;
2602 if (SourceMgr->isInFileID(Loc, SourceMgr->getMainFileID(), &Offs) &&
2603 Offs < Preamble.size()) {
2604 SourceLocation FileLoc = SourceMgr->getLocForStartOfFile(PreambleID);
2605 return FileLoc.getLocWithOffset(Offs);
2606 }
2607
2608 return Loc;
2609}
2610
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00002611bool ASTUnit::isInPreambleFileID(SourceLocation Loc) {
2612 FileID FID;
2613 if (SourceMgr)
2614 FID = SourceMgr->getPreambleFileID();
2615
2616 if (Loc.isInvalid() || FID.isInvalid())
2617 return false;
2618
2619 return SourceMgr->isInFileID(Loc, FID);
2620}
2621
2622bool ASTUnit::isInMainFileID(SourceLocation Loc) {
2623 FileID FID;
2624 if (SourceMgr)
2625 FID = SourceMgr->getMainFileID();
2626
2627 if (Loc.isInvalid() || FID.isInvalid())
2628 return false;
2629
2630 return SourceMgr->isInFileID(Loc, FID);
2631}
2632
2633SourceLocation ASTUnit::getEndOfPreambleFileID() {
2634 FileID FID;
2635 if (SourceMgr)
2636 FID = SourceMgr->getPreambleFileID();
2637
2638 if (FID.isInvalid())
2639 return SourceLocation();
2640
2641 return SourceMgr->getLocForEndOfFile(FID);
2642}
2643
2644SourceLocation ASTUnit::getStartOfMainFileID() {
2645 FileID FID;
2646 if (SourceMgr)
2647 FID = SourceMgr->getMainFileID();
2648
2649 if (FID.isInvalid())
2650 return SourceLocation();
2651
2652 return SourceMgr->getLocForStartOfFile(FID);
2653}
2654
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002655void ASTUnit::PreambleData::countLines() const {
2656 NumLines = 0;
2657 if (empty())
2658 return;
2659
2660 for (std::vector<char>::const_iterator
2661 I = Buffer.begin(), E = Buffer.end(); I != E; ++I) {
2662 if (*I == '\n')
2663 ++NumLines;
2664 }
2665 if (Buffer.back() != '\n')
2666 ++NumLines;
2667}
Argyrios Kyrtzidisa696ece2011-10-10 21:57:12 +00002668
2669#ifndef NDEBUG
2670ASTUnit::ConcurrencyState::ConcurrencyState() {
2671 Mutex = new llvm::sys::MutexImpl(/*recursive=*/true);
2672}
2673
2674ASTUnit::ConcurrencyState::~ConcurrencyState() {
2675 delete static_cast<llvm::sys::MutexImpl *>(Mutex);
2676}
2677
2678void ASTUnit::ConcurrencyState::start() {
2679 bool acquired = static_cast<llvm::sys::MutexImpl *>(Mutex)->tryacquire();
2680 assert(acquired && "Concurrent access to ASTUnit!");
2681}
2682
2683void ASTUnit::ConcurrencyState::finish() {
2684 static_cast<llvm::sys::MutexImpl *>(Mutex)->release();
2685}
2686
2687#else // NDEBUG
2688
2689ASTUnit::ConcurrencyState::ConcurrencyState() {}
2690ASTUnit::ConcurrencyState::~ConcurrencyState() {}
2691void ASTUnit::ConcurrencyState::start() {}
2692void ASTUnit::ConcurrencyState::finish() {}
2693
2694#endif