[PATCH] D107513: [MemCpyOpt/MemorySSA] Do not run the pass for prohibitively large number of memory accesses.
Alina Sbirlea via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 6 00:51:07 PDT 2021
asbirlea added a comment.
This is not related to optimized uses.
The issue is when making a change in the IR, in this case inserting a memset. This triggers updating all the accesses found below that access. The renaming phase will traverse all the accesses in a block (see `MemorySSA::renameBlock`).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107513/new/
https://reviews.llvm.org/D107513
More information about the llvm-commits
mailing list