[llvm] [DirectX] adding support in obj2yaml and yaml2obj to root constants (PR #127840)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 11:25:27 PST 2025
================
@@ -546,13 +560,75 @@ struct ProgramSignatureElement {
static_assert(sizeof(ProgramSignatureElement) == 32,
"ProgramSignatureElement is misaligned");
+struct RootConstants {
+ uint32_t ShaderRegister = 0;
+ uint32_t RegisterSpace = 0;
+ uint32_t Num32BitValues = 0;
+
+ RootConstants() = default;
+
+ void swapBytes() {
+ sys::swapByteOrder(ShaderRegister);
+ sys::swapByteOrder(RegisterSpace);
+ sys::swapByteOrder(Num32BitValues);
+ }
+};
+
+struct RootParameter {
+ dxbc::RootParameterType ParameterType;
+ union {
+ dxbc::RootConstants Constants;
+ };
----------------
joaosaffran wrote:
Unions in C++ do not automatically call constructors for their members, that is my understanding.
https://github.com/llvm/llvm-project/pull/127840
More information about the llvm-commits
mailing list