43 cl::desc(
"Write debug information to the given file, or automatically "
44 "named file in directory when ending in '/'"),
47 "dx-source-in-debug-module",
48 cl::desc(
"Embed source code into debug module on DirectX target"),
62 explicit WriteDXILPass(raw_ostream &o) : ModulePass(ID), OS(
o) {
66 StringRef getPassName()
const override {
return "Bitcode Writer"; }
68 bool runOnModule(
Module &M)
override {
73 void getAnalysisUsage(AnalysisUsage &AU)
const override {
78static void legalizeLifetimeIntrinsics(
Module &M) {
83 Intrinsic::lifetime_end};
93 Attr = Attr.addFnAttribute(Ctx, Attribute::NoUnwind);
102 "Expected user of a lifetime intrinsic function to be a CallInst");
116 "The pointer operand of a lifetime intrinsic call must be an "
118 std::optional<TypeSize> AllocSize =
120 assert(AllocSize.has_value() &&
121 "Expected the allocation size of AllocaInst to be known");
124 {ConstantInt::get(I64Ty, AllocSize.value().getFixedValue()),
133 F->eraseFromParent();
137static void removeLifetimeIntrinsics(
Module &M) {
139 Intrinsic::lifetime_end};
147 assert(CI &&
"Expected user of lifetime function to be a CallInst");
149 assert(BCI &&
"Expected pointer operand of CallInst to be a BitCastInst");
153 F->eraseFromParent();
163 M.getOrInsertNamedMetadata(Name)->addOperand(
170 llvm::raw_string_ostream OS(
Data);
176 LLVMContext &Ctx =
M.getContext();
178 replaceNamedMetadataArray(M,
"dx.source.contents",
179 {EmptyString, EmptyString});
180 replaceNamedMetadataArray(M,
"dx.source.defines", {});
181 replaceNamedMetadataArray(M,
"dx.source.mainFileName", {EmptyString});
182 replaceNamedMetadataArray(M,
"dx.source.args", {});
189 if (NamedMDNode *Flags =
M.getModuleFlagsMetadata()) {
191 M.getModuleFlagsMetadata(FlagEntries);
192 Flags->eraseFromParent();
193 for (llvm::Module::ModuleFlagEntry &Entry : FlagEntries) {
194 if (
Entry.Key->getString() ==
"Dwarf Version" ||
195 Entry.Key->getString() ==
"Debug Info Version") {
206#ifdef EXPENSIVE_CHECKS
209 "The module must not contain any debug info here."
210 "Shader modules with debug info must have !DICompileUnit metadata.");
218 GlobalVariable *createSectionGlobal(
Module &M, StringRef
Data,
219 StringRef GlobalName,
220 StringRef SectionName) {
223 auto *GV =
new llvm::GlobalVariable(M, ModuleConstant->
getType(),
true,
225 ModuleConstant, GlobalName);
226 GV->setSection(SectionName);
227 GV->setAlignment(
Align(4));
233 EmbedDXILPass() : ModulePass(ID) {
237 StringRef getPassName()
const override {
return "DXIL Embedder"; }
239 bool runOnModule(
Module &M)
override {
242 legalizeLifetimeIntrinsics(M);
244 bool HasDebugInfo = !
M.debug_compile_units().empty();
258 "Missing debug info for embedding into the container");
262 std::string ILDBData;
273 std::string DXILData =
279 removeLifetimeIntrinsics(M);
285 Globals.
emplace_back(createSectionGlobal(M, ILDBData,
"dx.ildb",
"ILDB"));
287 Globals.
emplace_back(createSectionGlobal(M, DXILData,
"dx.dxil",
"DXIL"));
292 void getAnalysisUsage(AnalysisUsage &AU)
const override {
298char WriteDXILPass::ID = 0;
306 return new WriteDXILPass(Str);
309char EmbedDXILPass::ID = 0;
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 > SourceInDebugModule("dx-source-in-debug-module", cl::desc("Embed source code into debug module on DirectX target"), cl::init(false))
cl::opt< bool > StripDebug
cl::opt< bool > SlimDebug
cl::opt< bool > EmbedDebug
cl::opt< std::string > PdbDebugPath("dx-pdb-path", cl::desc("Write debug information to the given file, or automatically " "named file in directory when ending in '/'"), cl::value_desc("filename"))
This file provides a bitcode writing pass.
This file defines the DenseMap class.
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
cl::opt< bool > EmbedDebug("dx-embed-debug", cl::desc("Embed PDB in shader container"))
cl::opt< bool > StripDebug("dx-strip-debug", cl::desc("Strip debug information from shader bytecode"))
cl::opt< bool > SlimDebug("dx-slim-debug", cl::desc("Generate slim PDB without ILDB part"))
Machine Check Debug Module
This is the interface to build a ModuleSummaryIndex for a module.
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
an instruction to allocate memory on the stack
LLVM_ABI std::optional< TypeSize > getAllocationSize(const DataLayout &DL) const
Get allocation size in bytes.
void setPreservesAll()
Set by analyses that do not transform their input at all.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Functions, function parameters, and return types can have attributes to indicate how they should be t...
This class represents a no-op cast from one type to another.
AttributeSet getParamAttributes(unsigned ArgNo) const
Return the param attributes for this call.
Value * getArgOperand(unsigned i) const
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
Adds the attribute to the indicated argument.
This class represents a function call, abstracting a target machine's calling convention.
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static LLVM_ABI CastInst * Create(Instruction::CastOps, Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Provides a way to construct any of the CastInst subclasses using an opcode instead of the subclass's ...
static Constant * get(LLVMContext &Context, ArrayRef< ElementTy > Elts)
get() constructor - Return a constant with array type with an element count and element type matching...
A handy container for a FunctionType+Callee-pointer pair, which can be passed around as a single enti...
@ PrivateLinkage
Like Internal, but omit from symbol table.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this instruction belongs to.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
This is an important class for using LLVM in a threaded context.
static LLVM_ABI MDString * get(LLVMContext &Context, StringRef Str)
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Legacy wrapper pass to provide the ModuleSummaryIndex object.
A Module instance is used to store all the information related to an LLVM module.
LLVM_ABI StringRef getName() const
LLVM_ABI void eraseFromParent()
Drop all references and remove the node from parent module.
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
static LLVM_ABI PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
reference emplace_back(ArgTypes &&... Args)
Represent a constant reference to a string, i.e.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
self_iterator getIterator()
This class implements an extremely fast bulk output stream that can only output to a stream.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
LLVM_ABI StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
LLVM_ABI StringRef getBaseName(ID id)
Return the LLVM name for an intrinsic, without encoded types for overloading, such as "llvm....
initializer< Ty > init(const Ty &Val)
DXILDebugInfoMap run(Module &M)
void WriteDXILToFile(const Module &M, raw_ostream &Out, const DXILDebugInfoMap &DebugInfo)
Write the specified module to the specified raw output stream.
This is an optimization pass for GlobalISel generic memory operations.
ArrayRef< CharT > arrayRefFromStringRef(StringRef Input)
Construct an array ref of bytes from a string ref.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
ModulePass * createDXILWriterPass(raw_ostream &Str)
Create and return a pass that writes the module to the specified ostream.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
LLVM_ABI size_t writeModule(const Module &M, uint8_t *Dest, size_t MaxSize)
Fuzzer friendly interface for the llvm bitcode printer.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
void initializeEmbedDXILPassPass(PassRegistry &)
Initializer for dxil embedder pass.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
LLVM_ABI bool StripDebugInfo(Module &M)
Strip debug info in the module if it exists.
LLVM_ABI void appendToCompilerUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.compiler.used list.
ModulePass * createDXILEmbedderPass()
Create and return a pass that writes the module to a global variable in the module for later emission...
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
void initializeWriteDXILPassPass(PassRegistry &)
Initializer for dxil writer pass.
LLVM_ABI std::unique_ptr< Module > CloneModule(const Module &M)
Return an exact copy of the specified module.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.