[PATCH] D89525: [amdgpu] Enhance AMDGPU AA.
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 19 10:31:14 PDT 2020
arsenm added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp:108
+ // visible. Note that this even holds for regular functions.
+ if (LI->getPointerAddressSpace() == AMDGPUAS::CONSTANT_ADDRESS)
+ return NoAlias;
----------------
The discussion so far has been about loads from kernel arguments, but this check is far weaker. Would it be possible to construct a relocation in non-kernel memory that refers to LDS?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D89525/new/
https://reviews.llvm.org/D89525
More information about the llvm-commits
mailing list