Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DXIL] Add support for root signature flag element in DXContainer #123147

Merged
merged 72 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
72 commits
Select commit Hold shift + click to select a range
8adb678
adding rootsignature to obj2yaml
Jan 13, 2025
ba78f21
adding test
Jan 13, 2025
0a54559
removing old test
Jan 13, 2025
557075f
remove useless includes
Jan 13, 2025
e0d3dcd
addressing comments
Jan 14, 2025
80587dd
updating test
Jan 14, 2025
be3764d
removing useless header
Jan 15, 2025
7582ca6
fix formating
Jan 15, 2025
6aaa0a5
renaming test
Jan 15, 2025
916b2f1
addressing pr comments
Jan 16, 2025
d9bce0a
adding str to ROOT_ELEMENT_FLAG
Jan 16, 2025
e7676ed
formating
Jan 17, 2025
a0cee57
refactoring to follow llvm standards
Jan 18, 2025
1e7a1fe
addressing comments
Jan 27, 2025
0ed658a
clean up
Jan 27, 2025
932062e
remove version
Jan 30, 2025
628937c
fix pr
Jan 30, 2025
1378c9f
adding dxil-dis test
Jan 31, 2025
e3206c9
adding compatibility test
Jan 31, 2025
f93d42d
addressing test concerns
Feb 3, 2025
25e3f37
clean up
Feb 3, 2025
751cbdc
addressing comments
Feb 4, 2025
44532d6
adding fail test
Feb 4, 2025
ca21878
adding comment
Feb 4, 2025
987901c
adding few more tests
Feb 4, 2025
0fbe900
format
Feb 4, 2025
b771aea
cleanup
Feb 5, 2025
aabdfe7
adding metadata extraction
Jan 15, 2025
4f6f941
moving root signature to it's own pass
Jan 16, 2025
a7f7784
formating
Jan 16, 2025
bf3b2e0
removing useless imports
Jan 16, 2025
16b4d03
fixing pr changes
Jan 16, 2025
e043370
adding some asserts
Jan 16, 2025
57bf935
format
Jan 16, 2025
1f8c0a5
fixing assert
Jan 18, 2025
0905b83
cleaning
Jan 27, 2025
77e8544
clean up
Jan 29, 2025
1351fb0
addressing comments
Jan 30, 2025
09e645a
removing version
Jan 30, 2025
5a44b62
fix test
Jan 30, 2025
d1a79b3
addressing PR Comments
Jan 31, 2025
9f8e512
fix test
Feb 3, 2025
5c7ed7e
filtering root signatures not associated with entry function
Feb 4, 2025
93f7c4c
separating parsing and validation
Feb 4, 2025
5aac761
improve error handling
Feb 6, 2025
47b01f7
clean up
Feb 6, 2025
486ab88
clean up
Feb 6, 2025
852ac25
formating
Feb 6, 2025
74f7226
addressing comments and fix tests
Feb 7, 2025
7a82fa9
fixing tests
Feb 7, 2025
c67d039
formating
Feb 7, 2025
e80ef33
Merge branch 'main' into users/joaosaffran/123147
Feb 7, 2025
ef1ce8a
fix
Feb 7, 2025
b7f2716
Merge branch 'main' into users/joaosaffran/123147
Feb 10, 2025
83b0979
addressing pr comments
Feb 10, 2025
b175b65
addressing PR comments
Feb 11, 2025
01b49a7
addressing pr comments
Feb 11, 2025
7bba9d3
removing copies from root signature use in dx container globals
Feb 11, 2025
2809c2f
adding more tests
Feb 12, 2025
023dcb8
maybe fix test?
Feb 12, 2025
aedb446
fixing clang format
Feb 12, 2025
39e60c0
try fix format
Feb 12, 2025
3b135c6
removing test
Feb 12, 2025
ae3d03f
adding llvm unreachable and testing test
Feb 12, 2025
3d19f8b
stopping compilation if root signature error were emitted
Feb 12, 2025
5a3be7c
making sure Error tests fail
Feb 12, 2025
f64c608
refactoring root signature analysis to return a map instead
Feb 12, 2025
a5a2093
addressing pr comments
Feb 12, 2025
5b3fedc
clean up
Feb 12, 2025
605f225
addressing pr comments
Feb 13, 2025
e4bca2b
implementing find interface for RootSignatureAnalysisWrapper
Feb 13, 2025
825673f
adding test for null function
Feb 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 3 additions & 13 deletions llvm/include/llvm/BinaryFormat/DXContainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
#define LLVM_BINARYFORMAT_DXCONTAINER_H

#include "llvm/ADT/StringRef.h"
#include "llvm/Support/BinaryStreamError.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/SwapByteOrder.h"
#include "llvm/TargetParser/Triple.h"

Expand Down Expand Up @@ -550,18 +548,10 @@ static_assert(sizeof(ProgramSignatureElement) == 32,

struct RootSignatureValidations {

static Expected<uint32_t> validateRootFlag(uint32_t Flags) {
if ((Flags & ~0x80000fff) != 0)
return llvm::make_error<BinaryStreamError>("Invalid Root Signature flag");
return Flags;
}

static Expected<uint32_t> validateVersion(uint32_t Version) {
if (Version == 1 || Version == 2)
return Version;
static bool isValidRootFlag(uint32_t Flags) { return (Flags & ~0xfff) == 0; }

return llvm::make_error<BinaryStreamError>(
"Invalid Root Signature Version");
static bool isValidVersion(uint32_t Version) {
return (Version == 1 || Version == 2);
}
};

Expand Down
4 changes: 2 additions & 2 deletions llvm/include/llvm/MC/DXContainerRootSignature.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ namespace llvm {
class raw_ostream;

namespace mcdxbc {
struct RootSignatureHeader {
struct RootSignatureDesc {
uint32_t Version = 2;
uint32_t NumParameters = 0;
uint32_t RootParametersOffset = 0;
uint32_t NumStaticSamplers = 0;
uint32_t StaticSamplersOffset = 0;
uint32_t Flags = 0;

void write(raw_ostream &OS);
void write(raw_ostream &OS) const;
};
} // namespace mcdxbc
} // namespace llvm
12 changes: 6 additions & 6 deletions llvm/include/llvm/ObjectYAML/DXContainerYAML.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ struct ShaderHash {
};

#define ROOT_ELEMENT_FLAG(Num, Val) bool Val = false;
struct RootSignatureDesc {
RootSignatureDesc() = default;
RootSignatureDesc(const object::DirectX::RootSignature &Data);
struct RootSignatureYamlDesc {
RootSignatureYamlDesc() = default;
RootSignatureYamlDesc(const object::DirectX::RootSignature &Data);

uint32_t Version;
uint32_t NumParameters;
Expand Down Expand Up @@ -176,7 +176,7 @@ struct Part {
std::optional<ShaderHash> Hash;
std::optional<PSVInfo> Info;
std::optional<DXContainerYAML::Signature> Signature;
std::optional<DXContainerYAML::RootSignatureDesc> RootSignature;
std::optional<DXContainerYAML::RootSignatureYamlDesc> RootSignature;
};

struct Object {
Expand Down Expand Up @@ -259,9 +259,9 @@ template <> struct MappingTraits<DXContainerYAML::Signature> {
static void mapping(IO &IO, llvm::DXContainerYAML::Signature &El);
};

template <> struct MappingTraits<DXContainerYAML::RootSignatureDesc> {
template <> struct MappingTraits<DXContainerYAML::RootSignatureYamlDesc> {
static void mapping(IO &IO,
DXContainerYAML::RootSignatureDesc &RootSignature);
DXContainerYAML::RootSignatureYamlDesc &RootSignature);
};

} // namespace yaml
Expand Down
2 changes: 1 addition & 1 deletion llvm/lib/MC/DXContainerRootSignature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using namespace llvm;
using namespace llvm::mcdxbc;

void RootSignatureHeader::write(raw_ostream &OS) {
void RootSignatureDesc::write(raw_ostream &OS) const {

support::endian::write(OS, Version, llvm::endianness::little);
support::endian::write(OS, NumParameters, llvm::endianness::little);
Expand Down
22 changes: 12 additions & 10 deletions llvm/lib/Object/DXContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ static Error parseFailed(const Twine &Msg) {
return make_error<GenericBinaryError>(Msg.str(), object_error::parse_failed);
}

static Error validationFailed(const Twine &Msg) {
return make_error<StringError>(Msg.str(), inconvertibleErrorCode());
}

template <typename T>
static Error readStruct(StringRef Buffer, const char *Src, T &Struct) {
// Don't read before the beginning or past the end of the file
Expand Down Expand Up @@ -254,11 +258,10 @@ Error DirectX::RootSignature::parse(StringRef Data) {
support::endian::read<uint32_t, llvm::endianness::little>(Current);
Current += sizeof(uint32_t);

Expected<uint32_t> MaybeVersion =
dxbc::RootSignatureValidations::validateVersion(VValue);
if (Error E = MaybeVersion.takeError())
return E;
Version = MaybeVersion.get();
if (!dxbc::RootSignatureValidations::isValidVersion(VValue))
return validationFailed("unsupported root signature version read: " +
llvm::Twine(VValue));
Version = VValue;

NumParameters =
support::endian::read<uint32_t, llvm::endianness::little>(Current);
Expand All @@ -280,11 +283,10 @@ Error DirectX::RootSignature::parse(StringRef Data) {
support::endian::read<uint32_t, llvm::endianness::little>(Current);
Current += sizeof(uint32_t);

Expected<uint32_t> MaybeFlag =
dxbc::RootSignatureValidations::validateRootFlag(FValue);
if (Error E = MaybeFlag.takeError())
return E;
Flags = MaybeFlag.get();
if (!dxbc::RootSignatureValidations::isValidRootFlag(FValue))
return validationFailed("unsupported root signature flag value read: " +
llvm::Twine(FValue));
Flags = FValue;

return Error::success();
}
Expand Down
18 changes: 9 additions & 9 deletions llvm/lib/ObjectYAML/DXContainerEmitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,15 @@ void DXContainerWriter::writeParts(raw_ostream &OS) {
if (!P.RootSignature.has_value())
continue;

mcdxbc::RootSignatureHeader Header;
Header.Flags = P.RootSignature->getEncodedFlags();
Header.Version = P.RootSignature->Version;
Header.NumParameters = P.RootSignature->NumParameters;
Header.RootParametersOffset = P.RootSignature->RootParametersOffset;
Header.NumStaticSamplers = P.RootSignature->NumStaticSamplers;
Header.StaticSamplersOffset = P.RootSignature->StaticSamplersOffset;

Header.write(OS);
mcdxbc::RootSignatureDesc RS;
RS.Flags = P.RootSignature->getEncodedFlags();
RS.Version = P.RootSignature->Version;
RS.NumParameters = P.RootSignature->NumParameters;
RS.RootParametersOffset = P.RootSignature->RootParametersOffset;
RS.NumStaticSamplers = P.RootSignature->NumStaticSamplers;
RS.StaticSamplersOffset = P.RootSignature->StaticSamplersOffset;

RS.write(OS);
break;
}
uint64_t BytesWritten = OS.tell() - DataStart;
Expand Down
8 changes: 4 additions & 4 deletions llvm/lib/ObjectYAML/DXContainerYAML.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DXContainerYAML::ShaderFeatureFlags::ShaderFeatureFlags(uint64_t FlagData) {
#include "llvm/BinaryFormat/DXContainerConstants.def"
}

DXContainerYAML::RootSignatureDesc::RootSignatureDesc(
DXContainerYAML::RootSignatureYamlDesc::RootSignatureYamlDesc(
const object::DirectX::RootSignature &Data)
: Version(Data.getVersion()), NumParameters(Data.getNumParameters()),
RootParametersOffset(Data.getRootParametersOffset()),
Expand All @@ -41,7 +41,7 @@ DXContainerYAML::RootSignatureDesc::RootSignatureDesc(
#include "llvm/BinaryFormat/DXContainerConstants.def"
}

uint32_t DXContainerYAML::RootSignatureDesc::getEncodedFlags() {
uint32_t DXContainerYAML::RootSignatureYamlDesc::getEncodedFlags() {
uint64_t Flag = 0;
#define ROOT_ELEMENT_FLAG(Num, Val) \
if (Val) \
Expand Down Expand Up @@ -209,8 +209,8 @@ void MappingTraits<DXContainerYAML::Signature>::mapping(
IO.mapRequired("Parameters", S.Parameters);
}

void MappingTraits<DXContainerYAML::RootSignatureDesc>::mapping(
IO &IO, DXContainerYAML::RootSignatureDesc &S) {
void MappingTraits<DXContainerYAML::RootSignatureYamlDesc>::mapping(
IO &IO, DXContainerYAML::RootSignatureYamlDesc &S) {
IO.mapRequired("Version", S.Version);
IO.mapRequired("NumParameters", S.NumParameters);
IO.mapRequired("RootParametersOffset", S.RootParametersOffset);
Expand Down
3 changes: 2 additions & 1 deletion llvm/lib/Target/DirectX/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ add_llvm_target(DirectXCodeGen
DXILResourceAccess.cpp
DXILShaderFlags.cpp
DXILTranslateMetadata.cpp

DXILRootSignature.cpp

LINK_COMPONENTS
Analysis
AsmPrinter
Expand Down
36 changes: 36 additions & 0 deletions llvm/lib/Target/DirectX/DXContainerGlobals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
//
//===----------------------------------------------------------------------===//

#include "DXILRootSignature.h"
#include "DXILShaderFlags.h"
#include "DirectX.h"
#include "llvm/ADT/SmallVector.h"
Expand All @@ -25,7 +26,9 @@
#include "llvm/MC/DXContainerPSVInfo.h"
#include "llvm/Pass.h"
#include "llvm/Support/MD5.h"
#include "llvm/TargetParser/Triple.h"
#include "llvm/Transforms/Utils/ModuleUtils.h"
#include <optional>

using namespace llvm;
using namespace llvm::dxil;
Expand All @@ -41,6 +44,7 @@ class DXContainerGlobals : public llvm::ModulePass {
GlobalVariable *buildSignature(Module &M, Signature &Sig, StringRef Name,
StringRef SectionName);
void addSignature(Module &M, SmallVector<GlobalValue *> &Globals);
void addRootSignature(Module &M, SmallVector<GlobalValue *> &Globals);
void addResourcesForPSV(Module &M, PSVRuntimeInfo &PSV);
void addPipelineStateValidationInfo(Module &M,
SmallVector<GlobalValue *> &Globals);
Expand All @@ -60,6 +64,7 @@ class DXContainerGlobals : public llvm::ModulePass {
void getAnalysisUsage(AnalysisUsage &AU) const override {
AU.setPreservesAll();
AU.addRequired<ShaderFlagsAnalysisWrapper>();
AU.addRequired<RootSignatureAnalysisWrapper>();
AU.addRequired<DXILMetadataAnalysisWrapperPass>();
AU.addRequired<DXILResourceTypeWrapperPass>();
AU.addRequired<DXILResourceBindingWrapperPass>();
Expand All @@ -73,6 +78,7 @@ bool DXContainerGlobals::runOnModule(Module &M) {
Globals.push_back(getFeatureFlags(M));
Globals.push_back(computeShaderHash(M));
addSignature(M, Globals);
addRootSignature(M, Globals);
addPipelineStateValidationInfo(M, Globals);
appendToCompilerUsed(M, Globals);
return true;
Expand Down Expand Up @@ -144,6 +150,36 @@ void DXContainerGlobals::addSignature(Module &M,
Globals.emplace_back(buildSignature(M, OutputSig, "dx.osg1", "OSG1"));
}

void DXContainerGlobals::addRootSignature(Module &M,
SmallVector<GlobalValue *> &Globals) {

dxil::ModuleMetadataInfo &MMI =
getAnalysis<DXILMetadataAnalysisWrapperPass>().getModuleMetadata();
Comment on lines +156 to +157
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not something that needs to be changed for this PR, but accessing analysis results here shows that it's a bit concerning how DXContainer is designed - we'll need to do a lot of work to port it to the new pass manager.


// Root Signature in Library don't compile to DXContainer.
if (MMI.ShaderProfile == llvm::Triple::Library)
return;

assert(MMI.EntryPropertyVec.size() == 1);

auto &RSA = getAnalysis<RootSignatureAnalysisWrapper>();
const Function *EntryFunction = MMI.EntryPropertyVec[0].Entry;
const auto &FuncRs = RSA.find(EntryFunction);

if (FuncRs == RSA.end())
return;

const RootSignatureDesc &RS = FuncRs->second;
SmallString<256> Data;
raw_svector_ostream OS(Data);

RS.write(OS);

Constant *Constant =
ConstantDataArray::getString(M.getContext(), Data, /*AddNull*/ false);
Globals.emplace_back(buildContainerGlobal(M, Constant, "dx.rts0", "RTS0"));
}

void DXContainerGlobals::addResourcesForPSV(Module &M, PSVRuntimeInfo &PSV) {
const DXILBindingMap &DBM =
getAnalysis<DXILResourceBindingWrapperPass>().getBindingMap();
Expand Down
Loading