LLVM 24.0.0git
DXContainerPDB.cpp
Go to the documentation of this file.
1//===- DXContainerPDB.cpp - DirectX PDB writer pass -----------------------===//
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#include "DirectX.h"
10#include "llvm/ADT/ScopeExit.h"
11#include "llvm/ADT/StringSet.h"
17#include "llvm/IR/Constants.h"
18#include "llvm/IR/Module.h"
20#include "llvm/Pass.h"
25
26using namespace llvm;
27
29
30namespace {
31
32class DXContainerPDB : public ModulePass, MCDXContainerBaseWriter {
33 Module *M = nullptr;
35
36 void reset() {
37 M = nullptr;
38 Parts.clear();
39 }
40
41public:
42 static char ID;
43 DXContainerPDB() : ModulePass(ID) {}
44
45 StringRef getPassName() const override { return "DirectX PDB Emitter"; }
46
47 bool runOnModule(Module &M) override;
48
49 void getAnalysisUsage(AnalysisUsage &AU) const override {
50 AU.setPreservesAll();
51 }
52
53 bool shouldSkipSection(StringRef SectionName, size_t SectionSize) override;
54 ArrayRef<MCDXContainerPart> collectParts() override;
55};
56
57} // namespace
58
59bool DXContainerPDB::shouldSkipSection(StringRef SectionName,
60 size_t SectionSize) {
61 if (MCDXContainerBaseWriter::shouldSkipSection(SectionName, SectionSize))
62 return true;
63
64 // Skip sections that are irrelevant for debug info.
65 static const StringSet<> DebugSections{"ILDB", "ILDN", "HASH", "PDBI",
66 "SRCI", "STAT", "RDAT", "VERS"};
67 return !DebugSections.contains(SectionName);
68}
69
71 if (GV.hasInitializer())
72 if (const auto *Data =
74 return Data->getRawDataValues();
75 return {};
76}
77
78ArrayRef<MCDXContainerPart> DXContainerPDB::collectParts() {
79 Parts.clear();
80 for (const GlobalVariable &GV : M->globals()) {
81 StringRef Name = GV.getSection();
82 StringRef Data = getGlobalData(GV);
83
84 if (Data.empty())
85 continue;
86 if (shouldSkipSection(Name, Data.size()))
87 continue;
88
89 Parts.push_back({Name, Data});
90 }
91 return Parts;
92}
93
95 Constant *Content =
96 ConstantDataArray::getString(M.getContext(), Data, /*AddNull*/ false);
97 auto *GV =
98 new GlobalVariable(M, Content->getType(), true,
99 GlobalValue::PrivateLinkage, Content, "dx.priv");
100 GV->setSection("PRIV");
101 GV->setAlignment(Align(1));
102 return GV;
103}
104
105bool DXContainerPDB::runOnModule(Module &M) {
106 llvm::scope_exit Cleanup([&]() { reset(); });
107 this->M = &M;
108
109 SmallString<128> DebugFileName;
110 ArrayRef<char> ModuleHash;
111 for (const GlobalVariable &GV : M.globals()) {
112 if (GV.getSection() == PdbFileNameSectionName) {
113 assert(DebugFileName.empty() && "Duplicate PDBNAME section");
114 DebugFileName = getGlobalData(GV);
115 } else if (GV.getSection() == ModuleHashSectionName) {
116 assert(ModuleHash.empty() && "Duplicate PBDHASH section");
117 StringRef Data = getGlobalData(GV);
118 ModuleHash = ArrayRef(Data.data(), Data.size());
119 }
120 }
121
122 // PDB emission was not requested.
123 if (DebugFileName.empty() && !PdbInPrivate)
124 return false;
125 if (ModuleHash.empty())
126 report_fatal_error("Module hash for PDB not found");
127
128 bool DeleteAfterRead = false;
129 if (DebugFileName.empty()) {
130 if (std::error_code EC =
131 sys::fs::createTemporaryFile("dxil", "pdb", DebugFileName))
132 reportFatalInternalError("Failed to create temporary PDB file");
133 DeleteAfterRead = true;
134 }
135 llvm::scope_exit FileCleanup([&]() {
136 if (DeleteAfterRead)
137 sys::fs::remove(DebugFileName);
138 });
139
141 pdb::PDBFileBuilder Builder(Allocator);
142
143 // DirectXShaderCompiler uses block size 512.
144 if (Error Err = Builder.initialize(512))
145 reportFatalInternalError(std::move(Err));
146
147 // Reserved streams that should be empty.
148 static_assert(pdb::kSpecialStreamCount == 5 &&
149 "First 5 streams should be empty in DirectX PDB file");
150 for (uint32_t I = 0; I < pdb::kSpecialStreamCount; ++I) {
151 if (auto Err = Builder.getMsfBuilder().addStream(0).takeError())
152 reportFatalInternalError(std::move(Err));
153 }
154
155 // Add DXContainer stream.
156 if (auto Err = Builder.getMsfBuilder().addStream(0).takeError())
157 reportFatalInternalError(std::move(Err));
158
159 // InfoStream must be filled. Bitcode hash from HASH part is used for PDB
160 // GUID.
161 codeview::GUID PdbGuid;
162 assert(ModuleHash.size() == std::size(PdbGuid.Guid) &&
163 "Module hash length must be match GUID length");
164 std::copy_n(ModuleHash.begin(), std::size(PdbGuid.Guid), PdbGuid.Guid);
165
166 auto &InfoBuilder = Builder.getInfoBuilder();
167 InfoBuilder.setAge(1);
168 InfoBuilder.setGuid(PdbGuid);
169 InfoBuilder.setSignature(0);
170 InfoBuilder.setVersion(pdb::PdbRaw_ImplVer::PdbImplVC70);
171
172 // Write DXContainer.
173 raw_svector_ostream OS(*Builder.getDXContainerData());
174 write(OS, M.getTargetTriple());
175
176 // Write PDB file.
177 // FIXME(sandboxing): Remove this by routing PDB output through the VFS.
178 auto BypassSandbox = sys::sandbox::scopedDisable();
179 codeview::GUID IgnoredOutGuid;
180 if (Error Err = Builder.commit(DebugFileName, &IgnoredOutGuid))
181 reportFatalUsageError("Couldn't write to PDB file: " +
182 Twine(toString(std::move(Err))));
183
184 if (!PdbInPrivate)
185 return false;
186
187 ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getFile(
188 DebugFileName, /*IsText=*/false, /*RequiresNullTerminator=*/false);
189 if (!Buf)
190 reportFatalInternalError("Failed to read PDB for PRIV embedding");
191
192 appendToCompilerUsed(M, createPrivateDataGlobal(M, (*Buf)->getBuffer()));
193
194 return true;
195}
196
197char DXContainerPDB::ID = 0;
198INITIALIZE_PASS(DXContainerPDB, "dxil-pdb", "DirectX PDB Emitter", false, true)
199
200ModulePass *llvm::createDXContainerPDBPass() { return new DXContainerPDB(); }
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
cl::opt< bool > PdbInPrivate("dx-pdb-in-private", cl::desc("Store PDB in private user data"))
static StringRef getGlobalData(const GlobalVariable &GV)
static GlobalVariable * createPrivateDataGlobal(Module &M, StringRef Data)
ManagedStatic< HTTPClientCleanup > Cleanup
Module.h This file contains the declarations for the Module class.
#define I(x, y, z)
Definition MD5.cpp:57
Machine Check Debug Module
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
Basic Register Allocator
This file defines the scope_exit class, which executes user-defined cleanup logic at scope exit.
StringSet - A set-like wrapper for the StringMap.
void setPreservesAll()
Set by analyses that do not transform their input at all.
static LLVM_ABI Constant * getString(LLVMContext &Context, StringRef Initializer, bool AddNull=true, bool ByteString=false)
This method constructs a CDS and initializes it with a text string.
This is an important base class in LLVM.
Definition Constant.h:43
@ PrivateLinkage
Like Internal, but omit from symbol table.
Definition GlobalValue.h:61
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
virtual bool shouldSkipSection(StringRef SectionName, size_t SectionSize)
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFile(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful,...
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition Pass.h:255
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
void push_back(const T &Elt)
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
bool contains(StringRef key) const
Check if the set contains the given key.
Definition StringSet.h:60
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
@ kSpecialStreamCount
LLVM_ABI std::error_code remove(const Twine &path, bool IgnoreNonExisting=true)
Remove path.
LLVM_ABI std::error_code createTemporaryFile(const Twine &Prefix, StringRef Suffix, int &ResultFD, SmallVectorImpl< char > &ResultPath, OpenFlags Flags=OF_None)
Create a file in the system temporary directory.
Definition Path.cpp:936
ScopedSetting scopedDisable()
Definition IOSandbox.h:36
This is an optimization pass for GlobalISel generic memory operations.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
scope_exit(Callable) -> scope_exit< Callable >
std::array< uint32_t, 5 > ModuleHash
160 bits SHA1
LLVM_ABI void reportFatalInternalError(Error Err)
Report a fatal error that indicates a bug in LLVM.
Definition Error.cpp:173
static constexpr StringLiteral ModuleHashSectionName
Contains module hash.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
LLVM_ABI void appendToCompilerUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.compiler.used list.
ArrayRef(const T &OneElt) -> ArrayRef< T >
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
LLVM_ABI Error write(DWPWriter &Out, ArrayRef< std::string > Inputs, OnCuIndexOverflow OverflowOptValue, Dwarf64StrOffsetsPromotion StrOffsetsOptValue, raw_pwrite_stream *OS=nullptr)
Definition DWP.cpp:747
ModulePass * createDXContainerPDBPass()
Pass for emitting DirectX PDB files.
static constexpr StringLiteral PdbFileNameSectionName
Contains PDB output file name.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
uint8_t Guid[16]
Definition GUID.h:23