[llvm] 8e390de - [EquivalenceClasses] Replace findValue with contains (NFC).
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 31 12:11:34 PDT 2025
Author: Florian Hahn
Date: 2025-03-31T20:11:00+01:00
New Revision: 8e390dedd71d0c2bcbe8775aee2e234ef7a5b787
URL: https://github.com/llvm/llvm-project/commit/8e390dedd71d0c2bcbe8775aee2e234ef7a5b787
DIFF: https://github.com/llvm/llvm-project/commit/8e390dedd71d0c2bcbe8775aee2e234ef7a5b787.diff
LOG: [EquivalenceClasses] Replace findValue with contains (NFC).
Replace remaining use of findValue with more compact and limited
contains().
Added:
Modified:
llvm/include/llvm/ADT/EquivalenceClasses.h
llvm/lib/Analysis/LoopAccessAnalysis.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/ADT/EquivalenceClasses.h b/llvm/include/llvm/ADT/EquivalenceClasses.h
index c375d6e77b12a..f9c7819f18806 100644
--- a/llvm/include/llvm/ADT/EquivalenceClasses.h
+++ b/llvm/include/llvm/ADT/EquivalenceClasses.h
@@ -179,10 +179,9 @@ class EquivalenceClasses {
return member_iterator(nullptr);
}
- /// findValue - Return an iterator to the specified value. If it does not
- /// exist, end() is returned.
- iterator findValue(const ElemTy &V) const {
- return TheMapping.find(V);
+ /// Returns true if \p V is contained an equivalence class.
+ bool contains(const ElemTy &V) const {
+ return TheMapping.find(V) != TheMapping.end();
}
/// getLeaderValue - Return the leader for the specified value that is in the
diff --git a/llvm/lib/Analysis/LoopAccessAnalysis.cpp b/llvm/lib/Analysis/LoopAccessAnalysis.cpp
index e7d6984caeba3..47ff31b9a0525 100644
--- a/llvm/lib/Analysis/LoopAccessAnalysis.cpp
+++ b/llvm/lib/Analysis/LoopAccessAnalysis.cpp
@@ -1230,7 +1230,7 @@ bool AccessAnalysis::canCheckPtrAtRT(
[this](const Value *Ptr) {
MemAccessInfo AccessWrite(const_cast<Value *>(Ptr),
true);
- return DepCands.findValue(AccessWrite) == DepCands.end();
+ return !DepCands.contains(AccessWrite);
})) &&
"Can only skip updating CanDoRT below, if all entries in AS "
"are reads or there is at most 1 entry");
More information about the llvm-commits
mailing list