[llvm] [HLSL] Analyze update counter usage (PR #130356)
Justin Bogner via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 17:56:30 PDT 2025
================
@@ -823,8 +827,153 @@ DXILBindingMap::findByUse(const Value *Key) const {
//===----------------------------------------------------------------------===//
+static bool isUpdateCounterIntrinsic(Function &F) {
+ return F.getIntrinsicID() == Intrinsic::dx_resource_updatecounter;
+}
+
+void DXILResourceCounterDirectionMap::populate(Module &M, DXILBindingMap &DBM) {
+ std::vector<std::tuple<dxil::ResourceBindingInfo, ResourceCounterDirection,
+ const Function *, const CallInst *>>
+ DiagCounterDirs;
----------------
bogner wrote:
Better to use `SmallVector` here rather than `std::vector`. Also I'm surprised this is holding a `dxil::ResourceBindingInfo` by value rather than reference - more on that below.
https://github.com/llvm/llvm-project/pull/130356
More information about the llvm-commits
mailing list