[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 09:55:29 PST 2025
================
@@ -770,6 +770,50 @@ void DXILBindingMap::print(raw_ostream &OS, DXILResourceTypeMap &DRTM,
}
}
+SmallVector<dxil::ResourceBindingInfo>
+DXILBindingMap::findByUse(const Value *Key) const {
+ const PHINode *Phi = dyn_cast<PHINode>(Key);
+ if (Phi) {
+ SmallVector<dxil::ResourceBindingInfo> Children;
+ for (const Value *V : Phi->operands()) {
+ Children.append(findByUse(V));
+ }
+ return Children;
+ }
+
+ const CallInst *CI = dyn_cast<CallInst>(Key);
+ if (!CI) {
+ return {};
+ }
----------------
V-FEXrt wrote:
ah yep, old habits die hard :)
https://github.com/llvm/llvm-project/pull/126556
More information about the llvm-commits
mailing list