[llvm] [HLSL] Add support to lookup a ResourceBindingInfo from its use (PR #126556)

Ashley Coleman via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 15:01:28 PST 2025


================
@@ -446,6 +446,14 @@ class DXILBindingMap {
     return Pos == CallMap.end() ? Infos.end() : (Infos.begin() + Pos->second);
   }
 
+  /// Resolves a resource handle into a vector of ResourceBindingInfos that
+  /// represent the possible unique creations of the handle. Certain cases are
+  /// ambiguous so mulitple creation instructions may be returned. The resulting
+  /// ResourceBindingInfo can be used to depuplicate unique handles that
+  /// reference the same resource
+  SmallVector<dxil::ResourceBindingInfo>
+  findCreationInfo(const Value *Key) const;
----------------
V-FEXrt wrote:

Since I need to fix the typo anyways I'll just go back to the original name and keep it in the back of my mind for improvement. We still have to touch the function at least one more time so there will be another opportunity to review the name

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


More information about the llvm-commits mailing list