[llvm] [HLSL] Add support to lookup a ResourceBindingInfo from its use (PR #126556)
Justin Bogner via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 14 15:39:05 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 {};
+ }
----------------
bogner wrote:
LLVM style generally omits the braces on single statement blocks
https://github.com/llvm/llvm-project/pull/126556
More information about the llvm-commits
mailing list