/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/Serialization/GeneratePCH.cpp
Line | Count | Source (jump to first uncovered line) |
1 | | //===--- GeneratePCH.cpp - Sema Consumer for PCH Generation -----*- C++ -*-===// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | // |
9 | | // This file defines the PCHGenerator, which as a SemaConsumer that generates |
10 | | // a PCH file. |
11 | | // |
12 | | //===----------------------------------------------------------------------===// |
13 | | |
14 | | #include "clang/AST/ASTContext.h" |
15 | | #include "clang/Lex/HeaderSearch.h" |
16 | | #include "clang/Lex/Preprocessor.h" |
17 | | #include "clang/Sema/SemaConsumer.h" |
18 | | #include "clang/Serialization/ASTWriter.h" |
19 | | #include "llvm/Bitstream/BitstreamWriter.h" |
20 | | |
21 | | using namespace clang; |
22 | | |
23 | | PCHGenerator::PCHGenerator( |
24 | | const Preprocessor &PP, InMemoryModuleCache &ModuleCache, |
25 | | StringRef OutputFile, StringRef isysroot, std::shared_ptr<PCHBuffer> Buffer, |
26 | | ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions, |
27 | | bool AllowASTWithErrors, bool IncludeTimestamps, |
28 | | bool BuildingImplicitModule, bool ShouldCacheASTInMemory) |
29 | | : PP(PP), OutputFile(OutputFile), isysroot(isysroot.str()), |
30 | | SemaPtr(nullptr), Buffer(std::move(Buffer)), Stream(this->Buffer->Data), |
31 | | Writer(Stream, this->Buffer->Data, ModuleCache, Extensions, |
32 | | IncludeTimestamps, BuildingImplicitModule), |
33 | | AllowASTWithErrors(AllowASTWithErrors), |
34 | 7.39k | ShouldCacheASTInMemory(ShouldCacheASTInMemory) { |
35 | 7.39k | this->Buffer->IsComplete = false; |
36 | 7.39k | } |
37 | | |
38 | 7.39k | PCHGenerator::~PCHGenerator() { |
39 | 7.39k | } |
40 | | |
41 | 7.39k | void PCHGenerator::HandleTranslationUnit(ASTContext &Ctx) { |
42 | | // Don't create a PCH if there were fatal failures during module loading. |
43 | 7.39k | if (PP.getModuleLoader().HadFatalFailure) |
44 | 0 | return; |
45 | | |
46 | 7.39k | bool hasErrors = PP.getDiagnostics().hasErrorOccurred(); |
47 | 7.39k | if (hasErrors && !AllowASTWithErrors290 ) |
48 | 251 | return; |
49 | | |
50 | 7.13k | Module *Module = nullptr; |
51 | 7.13k | if (PP.getLangOpts().isCompilingModule()) { |
52 | 3.47k | Module = PP.getHeaderSearchInfo().lookupModule( |
53 | 3.47k | PP.getLangOpts().CurrentModule, SourceLocation(), |
54 | 3.47k | /*AllowSearch*/ false); |
55 | 3.47k | if (!Module) { |
56 | 0 | assert(hasErrors && "emitting module but current module doesn't exist"); |
57 | 0 | return; |
58 | 0 | } |
59 | 3.47k | } |
60 | | |
61 | | // Errors that do not prevent the PCH from being written should not cause the |
62 | | // overall compilation to fail either. |
63 | 7.13k | if (AllowASTWithErrors) |
64 | 178 | PP.getDiagnostics().getClient()->clear(); |
65 | | |
66 | | // Emit the PCH file to the Buffer. |
67 | 7.13k | assert(SemaPtr && "No Sema?"); |
68 | 7.13k | Buffer->Signature = |
69 | 7.13k | Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, |
70 | | // For serialization we are lenient if the errors were |
71 | | // only warn-as-error kind. |
72 | 7.13k | PP.getDiagnostics().hasUncompilableErrorOccurred(), |
73 | 7.13k | ShouldCacheASTInMemory); |
74 | | |
75 | 7.13k | Buffer->IsComplete = true; |
76 | 7.13k | } |
77 | | |
78 | 7.41k | ASTMutationListener *PCHGenerator::GetASTMutationListener() { |
79 | 7.41k | return &Writer; |
80 | 7.41k | } |
81 | | |
82 | 7.28k | ASTDeserializationListener *PCHGenerator::GetASTDeserializationListener() { |
83 | 7.28k | return &Writer; |
84 | 7.28k | } |