blob: d761f6ee458bfdc844f37a50a3e035af5c0971f5 [file] [log] [blame]
Ilya Biryukov200b3282017-06-21 10:24:58 +00001//===--- PrecompiledPreamble.cpp - Build precompiled preambles --*- C++ -*-===//
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// Helper class to build precompiled preamble.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Frontend/PrecompiledPreamble.h"
15#include "clang/AST/DeclObjC.h"
16#include "clang/Basic/TargetInfo.h"
17#include "clang/Basic/VirtualFileSystem.h"
18#include "clang/Frontend/CompilerInstance.h"
19#include "clang/Frontend/CompilerInvocation.h"
20#include "clang/Frontend/FrontendActions.h"
21#include "clang/Frontend/FrontendOptions.h"
22#include "clang/Lex/Lexer.h"
23#include "clang/Lex/PreprocessorOptions.h"
24#include "clang/Serialization/ASTWriter.h"
25#include "llvm/ADT/StringExtras.h"
26#include "llvm/ADT/StringSet.h"
Ilya Biryukovdd9ea752017-11-17 10:09:02 +000027#include "llvm/Config/llvm-config.h"
Ilya Biryukov200b3282017-06-21 10:24:58 +000028#include "llvm/Support/CrashRecoveryContext.h"
29#include "llvm/Support/FileSystem.h"
30#include "llvm/Support/Mutex.h"
31#include "llvm/Support/MutexGuard.h"
Ilya Biryukovb88de412017-08-10 16:10:40 +000032#include "llvm/Support/Process.h"
Ilya Biryukov923e3382017-12-21 14:04:39 +000033#include <limits>
Ilya Biryukov417085a2017-11-16 16:25:01 +000034#include <utility>
35
Ilya Biryukov200b3282017-06-21 10:24:58 +000036using namespace clang;
37
38namespace {
39
Ilya Biryukov417085a2017-11-16 16:25:01 +000040StringRef getInMemoryPreamblePath() {
41#if defined(LLVM_ON_UNIX)
42 return "/__clang_tmp/___clang_inmemory_preamble___";
43#elif defined(LLVM_ON_WIN32)
44 return "C:\\__clang_tmp\\___clang_inmemory_preamble___";
45#else
46#warning "Unknown platform. Defaulting to UNIX-style paths for in-memory PCHs"
47 return "/__clang_tmp/___clang_inmemory_preamble___";
48#endif
49}
50
51IntrusiveRefCntPtr<vfs::FileSystem>
52createVFSOverlayForPreamblePCH(StringRef PCHFilename,
53 std::unique_ptr<llvm::MemoryBuffer> PCHBuffer,
54 IntrusiveRefCntPtr<vfs::FileSystem> VFS) {
55 // We want only the PCH file from the real filesystem to be available,
56 // so we create an in-memory VFS with just that and overlay it on top.
57 IntrusiveRefCntPtr<vfs::InMemoryFileSystem> PCHFS(
58 new vfs::InMemoryFileSystem());
59 PCHFS->addFile(PCHFilename, 0, std::move(PCHBuffer));
60 IntrusiveRefCntPtr<vfs::OverlayFileSystem> Overlay(
61 new vfs::OverlayFileSystem(VFS));
62 Overlay->pushOverlay(PCHFS);
63 return Overlay;
64}
65
Ilya Biryukov200b3282017-06-21 10:24:58 +000066/// Keeps a track of files to be deleted in destructor.
67class TemporaryFiles {
68public:
69 // A static instance to be used by all clients.
70 static TemporaryFiles &getInstance();
71
72private:
73 // Disallow constructing the class directly.
74 TemporaryFiles() = default;
75 // Disallow copy.
76 TemporaryFiles(const TemporaryFiles &) = delete;
77
78public:
79 ~TemporaryFiles();
80
81 /// Adds \p File to a set of tracked files.
82 void addFile(StringRef File);
83
84 /// Remove \p File from disk and from the set of tracked files.
85 void removeFile(StringRef File);
86
87private:
88 llvm::sys::SmartMutex<false> Mutex;
89 llvm::StringSet<> Files;
90};
91
92TemporaryFiles &TemporaryFiles::getInstance() {
93 static TemporaryFiles Instance;
94 return Instance;
95}
96
97TemporaryFiles::~TemporaryFiles() {
98 llvm::MutexGuard Guard(Mutex);
99 for (const auto &File : Files)
100 llvm::sys::fs::remove(File.getKey());
101}
102
103void TemporaryFiles::addFile(StringRef File) {
104 llvm::MutexGuard Guard(Mutex);
105 auto IsInserted = Files.insert(File).second;
Haojian Wu53dd6442017-06-21 11:26:58 +0000106 (void)IsInserted;
Ilya Biryukov200b3282017-06-21 10:24:58 +0000107 assert(IsInserted && "File has already been added");
108}
109
110void TemporaryFiles::removeFile(StringRef File) {
111 llvm::MutexGuard Guard(Mutex);
112 auto WasPresent = Files.erase(File);
Haojian Wu53dd6442017-06-21 11:26:58 +0000113 (void)WasPresent;
Ilya Biryukov200b3282017-06-21 10:24:58 +0000114 assert(WasPresent && "File was not tracked");
115 llvm::sys::fs::remove(File);
116}
117
Ilya Biryukov200b3282017-06-21 10:24:58 +0000118class PrecompilePreambleAction : public ASTFrontendAction {
119public:
Ilya Biryukov417085a2017-11-16 16:25:01 +0000120 PrecompilePreambleAction(std::string *InMemStorage,
121 PreambleCallbacks &Callbacks)
122 : InMemStorage(InMemStorage), Callbacks(Callbacks) {}
Ilya Biryukov200b3282017-06-21 10:24:58 +0000123
124 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
125 StringRef InFile) override;
126
127 bool hasEmittedPreamblePCH() const { return HasEmittedPreamblePCH; }
128
129 void setEmittedPreamblePCH(ASTWriter &Writer) {
130 this->HasEmittedPreamblePCH = true;
131 Callbacks.AfterPCHEmitted(Writer);
132 }
133
134 bool shouldEraseOutputFiles() override { return !hasEmittedPreamblePCH(); }
135 bool hasCodeCompletionSupport() const override { return false; }
136 bool hasASTFileSupport() const override { return false; }
137 TranslationUnitKind getTranslationUnitKind() override { return TU_Prefix; }
138
139private:
140 friend class PrecompilePreambleConsumer;
141
142 bool HasEmittedPreamblePCH = false;
Ilya Biryukov417085a2017-11-16 16:25:01 +0000143 std::string *InMemStorage;
Ilya Biryukov200b3282017-06-21 10:24:58 +0000144 PreambleCallbacks &Callbacks;
145};
146
147class PrecompilePreambleConsumer : public PCHGenerator {
148public:
149 PrecompilePreambleConsumer(PrecompilePreambleAction &Action,
150 const Preprocessor &PP, StringRef isysroot,
151 std::unique_ptr<raw_ostream> Out)
152 : PCHGenerator(PP, "", isysroot, std::make_shared<PCHBuffer>(),
153 ArrayRef<std::shared_ptr<ModuleFileExtension>>(),
154 /*AllowASTWithErrors=*/true),
155 Action(Action), Out(std::move(Out)) {}
156
157 bool HandleTopLevelDecl(DeclGroupRef DG) override {
158 Action.Callbacks.HandleTopLevelDecl(DG);
159 return true;
160 }
161
162 void HandleTranslationUnit(ASTContext &Ctx) override {
163 PCHGenerator::HandleTranslationUnit(Ctx);
164 if (!hasEmittedPCH())
165 return;
166
167 // Write the generated bitstream to "Out".
168 *Out << getPCH();
169 // Make sure it hits disk now.
170 Out->flush();
171 // Free the buffer.
172 llvm::SmallVector<char, 0> Empty;
173 getPCH() = std::move(Empty);
174
175 Action.setEmittedPreamblePCH(getWriter());
176 }
177
178private:
179 PrecompilePreambleAction &Action;
180 std::unique_ptr<raw_ostream> Out;
181};
182
183std::unique_ptr<ASTConsumer>
184PrecompilePreambleAction::CreateASTConsumer(CompilerInstance &CI,
Ilya Biryukov200b3282017-06-21 10:24:58 +0000185 StringRef InFile) {
186 std::string Sysroot;
Ilya Biryukov417085a2017-11-16 16:25:01 +0000187 if (!GeneratePCHAction::ComputeASTConsumerArguments(CI, Sysroot))
188 return nullptr;
189
190 std::unique_ptr<llvm::raw_ostream> OS;
191 if (InMemStorage) {
192 OS = llvm::make_unique<llvm::raw_string_ostream>(*InMemStorage);
193 } else {
194 std::string OutputFile;
195 OS = GeneratePCHAction::CreateOutputFile(CI, InFile, OutputFile);
196 }
Ilya Biryukov200b3282017-06-21 10:24:58 +0000197 if (!OS)
198 return nullptr;
199
200 if (!CI.getFrontendOpts().RelocatablePCH)
201 Sysroot.clear();
202
Ilya Biryukov200b3282017-06-21 10:24:58 +0000203 return llvm::make_unique<PrecompilePreambleConsumer>(
204 *this, CI.getPreprocessor(), Sysroot, std::move(OS));
205}
206
207template <class T> bool moveOnNoError(llvm::ErrorOr<T> Val, T &Output) {
208 if (!Val)
209 return false;
210 Output = std::move(*Val);
211 return true;
212}
213
214} // namespace
215
216PreambleBounds clang::ComputePreambleBounds(const LangOptions &LangOpts,
217 llvm::MemoryBuffer *Buffer,
218 unsigned MaxLines) {
Cameron Desrochers84fd0642017-09-20 19:03:37 +0000219 return Lexer::ComputePreamble(Buffer->getBuffer(), LangOpts, MaxLines);
Ilya Biryukov200b3282017-06-21 10:24:58 +0000220}
221
222llvm::ErrorOr<PrecompiledPreamble> PrecompiledPreamble::Build(
223 const CompilerInvocation &Invocation,
224 const llvm::MemoryBuffer *MainFileBuffer, PreambleBounds Bounds,
225 DiagnosticsEngine &Diagnostics, IntrusiveRefCntPtr<vfs::FileSystem> VFS,
Ilya Biryukov417085a2017-11-16 16:25:01 +0000226 std::shared_ptr<PCHContainerOperations> PCHContainerOps, bool StoreInMemory,
Ilya Biryukov200b3282017-06-21 10:24:58 +0000227 PreambleCallbacks &Callbacks) {
228 assert(VFS && "VFS is null");
229
230 if (!Bounds.Size)
231 return BuildPreambleError::PreambleIsEmpty;
232
233 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
234 FrontendOptions &FrontendOpts = PreambleInvocation->getFrontendOpts();
235 PreprocessorOptions &PreprocessorOpts =
236 PreambleInvocation->getPreprocessorOpts();
237
Ilya Biryukov417085a2017-11-16 16:25:01 +0000238 llvm::Optional<TempPCHFile> TempFile;
239 if (!StoreInMemory) {
240 // Create a temporary file for the precompiled preamble. In rare
241 // circumstances, this can fail.
242 llvm::ErrorOr<PrecompiledPreamble::TempPCHFile> PreamblePCHFile =
243 PrecompiledPreamble::TempPCHFile::CreateNewPreamblePCHFile();
244 if (!PreamblePCHFile)
245 return BuildPreambleError::CouldntCreateTempFile;
246 TempFile = std::move(*PreamblePCHFile);
247 }
248
249 PCHStorage Storage = StoreInMemory ? PCHStorage(InMemoryPreamble())
250 : PCHStorage(std::move(*TempFile));
Ilya Biryukov200b3282017-06-21 10:24:58 +0000251
252 // Save the preamble text for later; we'll need to compare against it for
253 // subsequent reparses.
254 std::vector<char> PreambleBytes(MainFileBuffer->getBufferStart(),
255 MainFileBuffer->getBufferStart() +
256 Bounds.Size);
257 bool PreambleEndsAtStartOfLine = Bounds.PreambleEndsAtStartOfLine;
258
259 // Tell the compiler invocation to generate a temporary precompiled header.
260 FrontendOpts.ProgramAction = frontend::GeneratePCH;
Ilya Biryukov417085a2017-11-16 16:25:01 +0000261 FrontendOpts.OutputFile = StoreInMemory ? getInMemoryPreamblePath()
262 : Storage.asFile().getFilePath();
Ilya Biryukov200b3282017-06-21 10:24:58 +0000263 PreprocessorOpts.PrecompiledPreambleBytes.first = 0;
264 PreprocessorOpts.PrecompiledPreambleBytes.second = false;
Ilya Biryukoveb1ec872017-10-09 16:52:12 +0000265 // Inform preprocessor to record conditional stack when building the preamble.
266 PreprocessorOpts.GeneratePreamble = true;
Ilya Biryukov200b3282017-06-21 10:24:58 +0000267
268 // Create the compiler instance to use for building the precompiled preamble.
269 std::unique_ptr<CompilerInstance> Clang(
270 new CompilerInstance(std::move(PCHContainerOps)));
271
272 // Recover resources if we crash before exiting this method.
273 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance> CICleanup(
274 Clang.get());
275
276 Clang->setInvocation(std::move(PreambleInvocation));
277 Clang->setDiagnostics(&Diagnostics);
278
279 // Create the target instance.
280 Clang->setTarget(TargetInfo::CreateTargetInfo(
281 Clang->getDiagnostics(), Clang->getInvocation().TargetOpts));
282 if (!Clang->hasTarget())
283 return BuildPreambleError::CouldntCreateTargetInfo;
284
285 // Inform the target of the language options.
286 //
287 // FIXME: We shouldn't need to do this, the target should be immutable once
288 // created. This complexity should be lifted elsewhere.
289 Clang->getTarget().adjust(Clang->getLangOpts());
290
291 assert(Clang->getFrontendOpts().Inputs.size() == 1 &&
292 "Invocation must have exactly one source file!");
293 assert(Clang->getFrontendOpts().Inputs[0].getKind().getFormat() ==
294 InputKind::Source &&
295 "FIXME: AST inputs not yet supported here!");
296 assert(Clang->getFrontendOpts().Inputs[0].getKind().getLanguage() !=
297 InputKind::LLVM_IR &&
298 "IR inputs not support here!");
299
300 // Clear out old caches and data.
301 Diagnostics.Reset();
302 ProcessWarningOptions(Diagnostics, Clang->getDiagnosticOpts());
303
304 VFS =
305 createVFSFromCompilerInvocation(Clang->getInvocation(), Diagnostics, VFS);
306 if (!VFS)
307 return BuildPreambleError::CouldntCreateVFSOverlay;
308
309 // Create a file manager object to provide access to and cache the filesystem.
310 Clang->setFileManager(new FileManager(Clang->getFileSystemOpts(), VFS));
311
312 // Create the source manager.
313 Clang->setSourceManager(
314 new SourceManager(Diagnostics, Clang->getFileManager()));
315
316 auto PreambleDepCollector = std::make_shared<DependencyCollector>();
317 Clang->addDependencyCollector(PreambleDepCollector);
318
319 // Remap the main source file to the preamble buffer.
320 StringRef MainFilePath = FrontendOpts.Inputs[0].getFile();
321 auto PreambleInputBuffer = llvm::MemoryBuffer::getMemBufferCopy(
322 MainFileBuffer->getBuffer().slice(0, Bounds.Size), MainFilePath);
323 if (PreprocessorOpts.RetainRemappedFileBuffers) {
324 // MainFileBuffer will be deleted by unique_ptr after leaving the method.
325 PreprocessorOpts.addRemappedFile(MainFilePath, PreambleInputBuffer.get());
326 } else {
327 // In that case, remapped buffer will be deleted by CompilerInstance on
328 // BeginSourceFile, so we call release() to avoid double deletion.
329 PreprocessorOpts.addRemappedFile(MainFilePath,
330 PreambleInputBuffer.release());
331 }
332
333 std::unique_ptr<PrecompilePreambleAction> Act;
Ilya Biryukov417085a2017-11-16 16:25:01 +0000334 Act.reset(new PrecompilePreambleAction(
335 StoreInMemory ? &Storage.asMemory().Data : nullptr, Callbacks));
Ilya Biryukov1f8647d2017-12-20 16:48:56 +0000336 Callbacks.BeforeExecute(*Clang);
Ilya Biryukov200b3282017-06-21 10:24:58 +0000337 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0]))
338 return BuildPreambleError::BeginSourceFileFailed;
339
Ilya Biryukov41e90bc2017-12-15 11:27:51 +0000340 std::unique_ptr<PPCallbacks> DelegatedPPCallbacks =
341 Callbacks.createPPCallbacks();
342 if (DelegatedPPCallbacks)
343 Clang->getPreprocessor().addPPCallbacks(std::move(DelegatedPPCallbacks));
344
Ilya Biryukov200b3282017-06-21 10:24:58 +0000345 Act->Execute();
346
347 // Run the callbacks.
348 Callbacks.AfterExecute(*Clang);
349
350 Act->EndSourceFile();
351
352 if (!Act->hasEmittedPreamblePCH())
353 return BuildPreambleError::CouldntEmitPCH;
354
355 // Keep track of all of the files that the source manager knows about,
356 // so we can verify whether they have changed or not.
357 llvm::StringMap<PrecompiledPreamble::PreambleFileHash> FilesInPreamble;
358
359 SourceManager &SourceMgr = Clang->getSourceManager();
360 for (auto &Filename : PreambleDepCollector->getDependencies()) {
361 const FileEntry *File = Clang->getFileManager().getFile(Filename);
362 if (!File || File == SourceMgr.getFileEntryForID(SourceMgr.getMainFileID()))
363 continue;
364 if (time_t ModTime = File->getModificationTime()) {
365 FilesInPreamble[File->getName()] =
366 PrecompiledPreamble::PreambleFileHash::createForFile(File->getSize(),
367 ModTime);
368 } else {
369 llvm::MemoryBuffer *Buffer = SourceMgr.getMemoryBufferForFile(File);
370 FilesInPreamble[File->getName()] =
371 PrecompiledPreamble::PreambleFileHash::createForMemoryBuffer(Buffer);
372 }
373 }
374
Ilya Biryukov417085a2017-11-16 16:25:01 +0000375 return PrecompiledPreamble(std::move(Storage), std::move(PreambleBytes),
376 PreambleEndsAtStartOfLine,
377 std::move(FilesInPreamble));
Ilya Biryukov200b3282017-06-21 10:24:58 +0000378}
379
380PreambleBounds PrecompiledPreamble::getBounds() const {
381 return PreambleBounds(PreambleBytes.size(), PreambleEndsAtStartOfLine);
382}
383
Ilya Biryukov923e3382017-12-21 14:04:39 +0000384std::size_t PrecompiledPreamble::getSize() const {
385 switch (Storage.getKind()) {
386 case PCHStorage::Kind::Empty:
387 assert(false && "Calling getSize() on invalid PrecompiledPreamble. "
388 "Was it std::moved?");
389 return 0;
390 case PCHStorage::Kind::InMemory:
391 return Storage.asMemory().Data.size();
392 case PCHStorage::Kind::TempFile: {
393 uint64_t Result;
394 if (llvm::sys::fs::file_size(Storage.asFile().getFilePath(), Result))
395 return 0;
396
397 assert(Result <= std::numeric_limits<std::size_t>::max() &&
398 "file size did not fit into size_t");
399 return Result;
400 }
401 }
402 llvm_unreachable("Unhandled storage kind");
403}
404
Ilya Biryukov200b3282017-06-21 10:24:58 +0000405bool PrecompiledPreamble::CanReuse(const CompilerInvocation &Invocation,
406 const llvm::MemoryBuffer *MainFileBuffer,
407 PreambleBounds Bounds,
408 vfs::FileSystem *VFS) const {
409
410 assert(
411 Bounds.Size <= MainFileBuffer->getBufferSize() &&
412 "Buffer is too large. Bounds were calculated from a different buffer?");
413
414 auto PreambleInvocation = std::make_shared<CompilerInvocation>(Invocation);
415 PreprocessorOptions &PreprocessorOpts =
416 PreambleInvocation->getPreprocessorOpts();
417
418 if (!Bounds.Size)
419 return false;
420
421 // We've previously computed a preamble. Check whether we have the same
422 // preamble now that we did before, and that there's enough space in
423 // the main-file buffer within the precompiled preamble to fit the
424 // new main file.
425 if (PreambleBytes.size() != Bounds.Size ||
426 PreambleEndsAtStartOfLine != Bounds.PreambleEndsAtStartOfLine ||
427 memcmp(PreambleBytes.data(), MainFileBuffer->getBufferStart(),
428 Bounds.Size) != 0)
429 return false;
430 // The preamble has not changed. We may be able to re-use the precompiled
431 // preamble.
432
433 // Check that none of the files used by the preamble have changed.
434 // First, make a record of those files that have been overridden via
435 // remapping or unsaved_files.
436 std::map<llvm::sys::fs::UniqueID, PreambleFileHash> OverriddenFiles;
437 for (const auto &R : PreprocessorOpts.RemappedFiles) {
438 vfs::Status Status;
439 if (!moveOnNoError(VFS->status(R.second), Status)) {
440 // If we can't stat the file we're remapping to, assume that something
441 // horrible happened.
442 return false;
443 }
444
445 OverriddenFiles[Status.getUniqueID()] = PreambleFileHash::createForFile(
446 Status.getSize(), llvm::sys::toTimeT(Status.getLastModificationTime()));
447 }
448
449 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) {
450 vfs::Status Status;
451 if (!moveOnNoError(VFS->status(RB.first), Status))
452 return false;
453
454 OverriddenFiles[Status.getUniqueID()] =
455 PreambleFileHash::createForMemoryBuffer(RB.second);
456 }
457
458 // Check whether anything has changed.
459 for (const auto &F : FilesInPreamble) {
460 vfs::Status Status;
461 if (!moveOnNoError(VFS->status(F.first()), Status)) {
462 // If we can't stat the file, assume that something horrible happened.
463 return false;
464 }
465
466 std::map<llvm::sys::fs::UniqueID, PreambleFileHash>::iterator Overridden =
467 OverriddenFiles.find(Status.getUniqueID());
468 if (Overridden != OverriddenFiles.end()) {
469 // This file was remapped; check whether the newly-mapped file
470 // matches up with the previous mapping.
471 if (Overridden->second != F.second)
472 return false;
473 continue;
474 }
475
476 // The file was not remapped; check whether it has changed on disk.
477 if (Status.getSize() != uint64_t(F.second.Size) ||
478 llvm::sys::toTimeT(Status.getLastModificationTime()) !=
479 F.second.ModTime)
480 return false;
481 }
482 return true;
483}
484
485void PrecompiledPreamble::AddImplicitPreamble(
Ilya Biryukov417085a2017-11-16 16:25:01 +0000486 CompilerInvocation &CI, IntrusiveRefCntPtr<vfs::FileSystem> &VFS,
487 llvm::MemoryBuffer *MainFileBuffer) const {
Ilya Biryukov4a8f7532018-01-18 15:16:53 +0000488 PreambleBounds Bounds(PreambleBytes.size(), PreambleEndsAtStartOfLine);
489 configurePreamble(Bounds, CI, VFS, MainFileBuffer);
490}
Ilya Biryukov200b3282017-06-21 10:24:58 +0000491
Ilya Biryukov4a8f7532018-01-18 15:16:53 +0000492void PrecompiledPreamble::OverridePreamble(
493 CompilerInvocation &CI, IntrusiveRefCntPtr<vfs::FileSystem> &VFS,
494 llvm::MemoryBuffer *MainFileBuffer) const {
495 auto Bounds = ComputePreambleBounds(*CI.getLangOpts(), MainFileBuffer, 0);
496 configurePreamble(Bounds, CI, VFS, MainFileBuffer);
Ilya Biryukov200b3282017-06-21 10:24:58 +0000497}
498
499PrecompiledPreamble::PrecompiledPreamble(
Ilya Biryukov417085a2017-11-16 16:25:01 +0000500 PCHStorage Storage, std::vector<char> PreambleBytes,
Ilya Biryukov200b3282017-06-21 10:24:58 +0000501 bool PreambleEndsAtStartOfLine,
502 llvm::StringMap<PreambleFileHash> FilesInPreamble)
Ilya Biryukov417085a2017-11-16 16:25:01 +0000503 : Storage(std::move(Storage)), FilesInPreamble(std::move(FilesInPreamble)),
Ilya Biryukov200b3282017-06-21 10:24:58 +0000504 PreambleBytes(std::move(PreambleBytes)),
Ilya Biryukov417085a2017-11-16 16:25:01 +0000505 PreambleEndsAtStartOfLine(PreambleEndsAtStartOfLine) {
506 assert(this->Storage.getKind() != PCHStorage::Kind::Empty);
507}
Ilya Biryukov200b3282017-06-21 10:24:58 +0000508
509llvm::ErrorOr<PrecompiledPreamble::TempPCHFile>
510PrecompiledPreamble::TempPCHFile::CreateNewPreamblePCHFile() {
511 // FIXME: This is a hack so that we can override the preamble file during
512 // crash-recovery testing, which is the only case where the preamble files
513 // are not necessarily cleaned up.
514 const char *TmpFile = ::getenv("CINDEXTEST_PREAMBLE_FILE");
515 if (TmpFile)
516 return TempPCHFile::createFromCustomPath(TmpFile);
517 return TempPCHFile::createInSystemTempDir("preamble", "pch");
518}
519
520llvm::ErrorOr<PrecompiledPreamble::TempPCHFile>
521PrecompiledPreamble::TempPCHFile::createInSystemTempDir(const Twine &Prefix,
522 StringRef Suffix) {
523 llvm::SmallString<64> File;
Ilya Biryukovb88de412017-08-10 16:10:40 +0000524 // Using a version of createTemporaryFile with a file descriptor guarantees
Ilya Biryukov923e3382017-12-21 14:04:39 +0000525 // that we would never get a race condition in a multi-threaded setting
526 // (i.e., multiple threads getting the same temporary path).
Ilya Biryukovb88de412017-08-10 16:10:40 +0000527 int FD;
Ilya Biryukov417085a2017-11-16 16:25:01 +0000528 auto EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, FD, File);
Ilya Biryukov200b3282017-06-21 10:24:58 +0000529 if (EC)
530 return EC;
Ilya Biryukovb88de412017-08-10 16:10:40 +0000531 // We only needed to make sure the file exists, close the file right away.
532 llvm::sys::Process::SafelyCloseFileDescriptor(FD);
Ilya Biryukov200b3282017-06-21 10:24:58 +0000533 return TempPCHFile(std::move(File).str());
534}
535
536llvm::ErrorOr<PrecompiledPreamble::TempPCHFile>
537PrecompiledPreamble::TempPCHFile::createFromCustomPath(const Twine &Path) {
538 return TempPCHFile(Path.str());
539}
540
541PrecompiledPreamble::TempPCHFile::TempPCHFile(std::string FilePath)
542 : FilePath(std::move(FilePath)) {
543 TemporaryFiles::getInstance().addFile(*this->FilePath);
544}
545
546PrecompiledPreamble::TempPCHFile::TempPCHFile(TempPCHFile &&Other) {
547 FilePath = std::move(Other.FilePath);
548 Other.FilePath = None;
549}
550
551PrecompiledPreamble::TempPCHFile &PrecompiledPreamble::TempPCHFile::
552operator=(TempPCHFile &&Other) {
553 RemoveFileIfPresent();
554
555 FilePath = std::move(Other.FilePath);
556 Other.FilePath = None;
557 return *this;
558}
559
560PrecompiledPreamble::TempPCHFile::~TempPCHFile() { RemoveFileIfPresent(); }
561
562void PrecompiledPreamble::TempPCHFile::RemoveFileIfPresent() {
563 if (FilePath) {
564 TemporaryFiles::getInstance().removeFile(*FilePath);
565 FilePath = None;
566 }
567}
568
569llvm::StringRef PrecompiledPreamble::TempPCHFile::getFilePath() const {
570 assert(FilePath && "TempPCHFile doesn't have a FilePath. Had it been moved?");
571 return *FilePath;
572}
573
Ilya Biryukov417085a2017-11-16 16:25:01 +0000574PrecompiledPreamble::PCHStorage::PCHStorage(TempPCHFile File)
575 : StorageKind(Kind::TempFile) {
576 new (&asFile()) TempPCHFile(std::move(File));
577}
578
579PrecompiledPreamble::PCHStorage::PCHStorage(InMemoryPreamble Memory)
580 : StorageKind(Kind::InMemory) {
581 new (&asMemory()) InMemoryPreamble(std::move(Memory));
582}
583
584PrecompiledPreamble::PCHStorage::PCHStorage(PCHStorage &&Other) : PCHStorage() {
585 *this = std::move(Other);
586}
587
588PrecompiledPreamble::PCHStorage &PrecompiledPreamble::PCHStorage::
589operator=(PCHStorage &&Other) {
590 destroy();
591
592 StorageKind = Other.StorageKind;
593 switch (StorageKind) {
594 case Kind::Empty:
595 // do nothing;
596 break;
597 case Kind::TempFile:
598 new (&asFile()) TempPCHFile(std::move(Other.asFile()));
599 break;
600 case Kind::InMemory:
601 new (&asMemory()) InMemoryPreamble(std::move(Other.asMemory()));
602 break;
603 }
604
605 Other.setEmpty();
606 return *this;
607}
608
609PrecompiledPreamble::PCHStorage::~PCHStorage() { destroy(); }
610
611PrecompiledPreamble::PCHStorage::Kind
612PrecompiledPreamble::PCHStorage::getKind() const {
613 return StorageKind;
614}
615
616PrecompiledPreamble::TempPCHFile &PrecompiledPreamble::PCHStorage::asFile() {
617 assert(getKind() == Kind::TempFile);
618 return *reinterpret_cast<TempPCHFile *>(Storage.buffer);
619}
620
621const PrecompiledPreamble::TempPCHFile &
622PrecompiledPreamble::PCHStorage::asFile() const {
623 return const_cast<PCHStorage *>(this)->asFile();
624}
625
626PrecompiledPreamble::InMemoryPreamble &
627PrecompiledPreamble::PCHStorage::asMemory() {
628 assert(getKind() == Kind::InMemory);
629 return *reinterpret_cast<InMemoryPreamble *>(Storage.buffer);
630}
631
632const PrecompiledPreamble::InMemoryPreamble &
633PrecompiledPreamble::PCHStorage::asMemory() const {
634 return const_cast<PCHStorage *>(this)->asMemory();
635}
636
637void PrecompiledPreamble::PCHStorage::destroy() {
638 switch (StorageKind) {
639 case Kind::Empty:
640 return;
641 case Kind::TempFile:
642 asFile().~TempPCHFile();
643 return;
644 case Kind::InMemory:
645 asMemory().~InMemoryPreamble();
646 return;
647 }
648}
649
650void PrecompiledPreamble::PCHStorage::setEmpty() {
651 destroy();
652 StorageKind = Kind::Empty;
653}
654
Ilya Biryukov200b3282017-06-21 10:24:58 +0000655PrecompiledPreamble::PreambleFileHash
656PrecompiledPreamble::PreambleFileHash::createForFile(off_t Size,
657 time_t ModTime) {
658 PreambleFileHash Result;
659 Result.Size = Size;
660 Result.ModTime = ModTime;
661 Result.MD5 = {};
662 return Result;
663}
664
665PrecompiledPreamble::PreambleFileHash
666PrecompiledPreamble::PreambleFileHash::createForMemoryBuffer(
667 const llvm::MemoryBuffer *Buffer) {
668 PreambleFileHash Result;
669 Result.Size = Buffer->getBufferSize();
670 Result.ModTime = 0;
671
672 llvm::MD5 MD5Ctx;
673 MD5Ctx.update(Buffer->getBuffer().data());
674 MD5Ctx.final(Result.MD5);
675
676 return Result;
677}
678
Ilya Biryukov4a8f7532018-01-18 15:16:53 +0000679void PrecompiledPreamble::configurePreamble(
680 PreambleBounds Bounds, CompilerInvocation &CI,
681 IntrusiveRefCntPtr<vfs::FileSystem> &VFS,
682 llvm::MemoryBuffer *MainFileBuffer) const {
683 assert(VFS);
684
685 auto &PreprocessorOpts = CI.getPreprocessorOpts();
686
687 // Remap main file to point to MainFileBuffer.
688 auto MainFilePath = CI.getFrontendOpts().Inputs[0].getFile();
689 PreprocessorOpts.addRemappedFile(MainFilePath, MainFileBuffer);
690
691 // Configure ImpicitPCHInclude.
692 PreprocessorOpts.PrecompiledPreambleBytes.first = Bounds.Size;
693 PreprocessorOpts.PrecompiledPreambleBytes.second =
694 Bounds.PreambleEndsAtStartOfLine;
695 PreprocessorOpts.DisablePCHValidation = true;
696
697 setupPreambleStorage(Storage, PreprocessorOpts, VFS);
698}
699
Ilya Biryukov417085a2017-11-16 16:25:01 +0000700void PrecompiledPreamble::setupPreambleStorage(
701 const PCHStorage &Storage, PreprocessorOptions &PreprocessorOpts,
702 IntrusiveRefCntPtr<vfs::FileSystem> &VFS) {
703 if (Storage.getKind() == PCHStorage::Kind::TempFile) {
704 const TempPCHFile &PCHFile = Storage.asFile();
705 PreprocessorOpts.ImplicitPCHInclude = PCHFile.getFilePath();
706
707 // Make sure we can access the PCH file even if we're using a VFS
708 IntrusiveRefCntPtr<vfs::FileSystem> RealFS = vfs::getRealFileSystem();
709 auto PCHPath = PCHFile.getFilePath();
710 if (VFS == RealFS || VFS->exists(PCHPath))
711 return;
712 auto Buf = RealFS->getBufferForFile(PCHPath);
713 if (!Buf) {
714 // We can't read the file even from RealFS, this is clearly an error,
715 // but we'll just leave the current VFS as is and let clang's code
716 // figure out what to do with missing PCH.
717 return;
718 }
719
720 // We have a slight inconsistency here -- we're using the VFS to
721 // read files, but the PCH was generated in the real file system.
722 VFS = createVFSOverlayForPreamblePCH(PCHPath, std::move(*Buf), VFS);
723 } else {
724 assert(Storage.getKind() == PCHStorage::Kind::InMemory);
725 // For in-memory preamble, we have to provide a VFS overlay that makes it
726 // accessible.
727 StringRef PCHPath = getInMemoryPreamblePath();
728 PreprocessorOpts.ImplicitPCHInclude = PCHPath;
729
Ilya Biryukov8318f61b2017-11-24 13:12:38 +0000730 auto Buf = llvm::MemoryBuffer::getMemBuffer(Storage.asMemory().Data);
Ilya Biryukov417085a2017-11-16 16:25:01 +0000731 VFS = createVFSOverlayForPreamblePCH(PCHPath, std::move(Buf), VFS);
732 }
733}
734
Ilya Biryukov1f8647d2017-12-20 16:48:56 +0000735void PreambleCallbacks::BeforeExecute(CompilerInstance &CI) {}
Ilya Biryukov200b3282017-06-21 10:24:58 +0000736void PreambleCallbacks::AfterExecute(CompilerInstance &CI) {}
737void PreambleCallbacks::AfterPCHEmitted(ASTWriter &Writer) {}
738void PreambleCallbacks::HandleTopLevelDecl(DeclGroupRef DG) {}
Ilya Biryukov41e90bc2017-12-15 11:27:51 +0000739std::unique_ptr<PPCallbacks> PreambleCallbacks::createPPCallbacks() {
740 return nullptr;
741}
Ilya Biryukov200b3282017-06-21 10:24:58 +0000742
743std::error_code clang::make_error_code(BuildPreambleError Error) {
744 return std::error_code(static_cast<int>(Error), BuildPreambleErrorCategory());
745}
746
747const char *BuildPreambleErrorCategory::name() const noexcept {
748 return "build-preamble.error";
749}
750
751std::string BuildPreambleErrorCategory::message(int condition) const {
752 switch (static_cast<BuildPreambleError>(condition)) {
753 case BuildPreambleError::PreambleIsEmpty:
754 return "Preamble is empty";
755 case BuildPreambleError::CouldntCreateTempFile:
756 return "Could not create temporary file for PCH";
757 case BuildPreambleError::CouldntCreateTargetInfo:
758 return "CreateTargetInfo() return null";
759 case BuildPreambleError::CouldntCreateVFSOverlay:
760 return "Could not create VFS Overlay";
761 case BuildPreambleError::BeginSourceFileFailed:
762 return "BeginSourceFile() return an error";
763 case BuildPreambleError::CouldntEmitPCH:
764 return "Could not emit PCH";
765 }
766 llvm_unreachable("unexpected BuildPreambleError");
767}