[llvm] [LoopUtils] Cache VFs in addDiffRuntimeChecks (NFC) (PR #130157)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 07:58:42 PST 2025
================
@@ -2048,12 +2048,18 @@ Value *llvm::addDiffRuntimeChecks(
// Map to keep track of created compares, The key is the pair of operands for
// the compare, to allow detecting and re-using redundant compares.
DenseMap<std::pair<Value *, Value *>, Value *> SeenCompares;
+ // Map to detect redundant values returned by GetVF.
+ DenseMap<Type *, Value *> SeenVFs;
for (const auto &[SrcStart, SinkStart, AccessSize, NeedsFreeze] : Checks) {
Type *Ty = SinkStart->getType();
+ Value *VF = SeenVFs.lookup(Ty);
----------------
artagnon wrote:
As https://github.com/llvm/llvm-project/pull/130295 demonstrates, this patch is an NFC. Updated commit message as well.
https://github.com/llvm/llvm-project/pull/130157
More information about the llvm-commits
mailing list