[llvm] [HLSL] Analyze update counter usage (PR #130356)

Ashley Coleman via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 09:29:44 PDT 2025


================
@@ -407,6 +411,77 @@ class DXILResourceTypeMap {
   }
 };
 
+enum ResourceCounterDirection {
+  Increment,
+  Decrement,
+  Unknown,
+};
+
+class DXILResourceCounterDirectionMap {
+  std::vector<std::pair<dxil::ResourceBindingInfo, ResourceCounterDirection>>
----------------
V-FEXrt wrote:

Actually the recomendation to use a vector is taken directly from that same link :)

https://llvm.org/docs/ProgrammersManual.html#dss-sortedvectormap

https://github.com/llvm/llvm-project/pull/130356


More information about the llvm-commits mailing list