[llvm] d2d052b - [DirectX] Use "texture" not "SRV" when pretty printing resources (#130230)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 09:29:41 PDT 2025


Author: Justin Bogner
Date: 2025-03-13T09:29:37-07:00
New Revision: d2d052b3e665542a3ef1b8d4dad43fe18dcbde14

URL: https://github.com/llvm/llvm-project/commit/d2d052b3e665542a3ef1b8d4dad43fe18dcbde14
DIFF: https://github.com/llvm/llvm-project/commit/d2d052b3e665542a3ef1b8d4dad43fe18dcbde14.diff

LOG: [DirectX] Use "texture" not "SRV" when pretty printing resources (#130230)

We're printing "SRV" here when DXC would print "texture". Fix this to be
consistent.

Fixes #130227.

Added: 
    

Modified: 
    llvm/lib/Target/DirectX/DXILPrettyPrinter.cpp
    llvm/test/CodeGen/DirectX/CreateHandle.ll
    llvm/test/CodeGen/DirectX/CreateHandleFromBinding.ll

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/DirectX/DXILPrettyPrinter.cpp b/llvm/lib/Target/DirectX/DXILPrettyPrinter.cpp
index c1f2483044693..4d1832f44bb63 100644
--- a/llvm/lib/Target/DirectX/DXILPrettyPrinter.cpp
+++ b/llvm/lib/Target/DirectX/DXILPrettyPrinter.cpp
@@ -22,7 +22,7 @@ using namespace llvm;
 static StringRef getRCName(dxil::ResourceClass RC) {
   switch (RC) {
   case dxil::ResourceClass::SRV:
-    return "SRV";
+    return "texture";
   case dxil::ResourceClass::UAV:
     return "UAV";
   case dxil::ResourceClass::CBuffer:

diff  --git a/llvm/test/CodeGen/DirectX/CreateHandle.ll b/llvm/test/CodeGen/DirectX/CreateHandle.ll
index c4e02fb02733d..048e57c091142 100644
--- a/llvm/test/CodeGen/DirectX/CreateHandle.ll
+++ b/llvm/test/CodeGen/DirectX/CreateHandle.ll
@@ -3,10 +3,10 @@
 
 ; CHECK-PRETTY:       Type  Format         Dim      ID      HLSL Bind     Count
 ; CHECK-PRETTY: ---------- ------- ----------- ------- -------------- ---------
-; CHECK-PRETTY:        SRV     f32         buf      T0      t7        unbounded
-; CHECK-PRETTY:        SRV    byte         r/o      T1      t8,space1         1
-; CHECK-PRETTY:        SRV  struct         r/o      T2      t2,space4         1
-; CHECK-PRETTY:        SRV     u32         buf      T3      t3,space5        24
+; CHECK-PRETTY:    texture     f32         buf      T0      t7        unbounded
+; CHECK-PRETTY:    texture    byte         r/o      T1      t8,space1         1
+; CHECK-PRETTY:    texture  struct         r/o      T2      t2,space4         1
+; CHECK-PRETTY:    texture     u32         buf      T3      t3,space5        24
 ; CHECK-PRETTY:        UAV     i32         buf      U0      u7,space2         1
 ; CHECK-PRETTY:        UAV     f32         buf      U1      u5,space3         1
 

diff  --git a/llvm/test/CodeGen/DirectX/CreateHandleFromBinding.ll b/llvm/test/CodeGen/DirectX/CreateHandleFromBinding.ll
index 9919a3f2dbd25..089b6eaa563ca 100644
--- a/llvm/test/CodeGen/DirectX/CreateHandleFromBinding.ll
+++ b/llvm/test/CodeGen/DirectX/CreateHandleFromBinding.ll
@@ -3,10 +3,10 @@
 
 ; CHECK-PRETTY:       Type  Format         Dim      ID      HLSL Bind     Count
 ; CHECK-PRETTY: ---------- ------- ----------- ------- -------------- ---------
-; CHECK-PRETTY:        SRV     f32         buf      T0      t7        unbounded
-; CHECK-PRETTY:        SRV    byte         r/o      T1      t8,space1         1
-; CHECK-PRETTY:        SRV  struct         r/o      T2      t2,space4         1
-; CHECK-PRETTY:        SRV     u32         buf      T3      t3,space5        24
+; CHECK-PRETTY:    texture     f32         buf      T0      t7        unbounded
+; CHECK-PRETTY:    texture    byte         r/o      T1      t8,space1         1
+; CHECK-PRETTY:    texture  struct         r/o      T2      t2,space4         1
+; CHECK-PRETTY:    texture     u32         buf      T3      t3,space5        24
 ; CHECK-PRETTY:        UAV     i32         buf      U0      u7,space2         1
 ; CHECK-PRETTY:        UAV     f32         buf      U1      u5,space3         1
 ; CHECK-PRETTY:    cbuffer      NA          NA     CB0            cb0         1


        


More information about the llvm-commits mailing list