[PATCH] D129759: [AMDGPU] Set amdgpu-memory-bound if a basic block has dense global memory access
Abinav Puthan Purayil via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 18 00:35:48 PDT 2022
abinavpp marked an inline comment as done.
abinavpp added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp:201
+// Returns true if the global load `I` is used in its own basic block.
+bool AMDGPUPerfHint::isGlobalLoadUsedInBB(const Instruction &I) const {
+ const auto *Ld = dyn_cast<LoadInst>(&I);
----------------
abinavpp wrote:
> arsenm wrote:
> > Maybe this should be inverted to be if the value is live out?
> Did you mean to rename this in terms of live out, or return false if there's a
> use of I outside its block? I'm not sure if the live out is relevant here.
Are we good with this?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D129759/new/
https://reviews.llvm.org/D129759
More information about the llvm-commits
mailing list