[llvm] LAA: use make_early_inc_range to simplify code (NFC) (PR #125488)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 04:54:59 PST 2025
================
@@ -3078,20 +3078,16 @@ const LoopAccessInfo &LoopAccessInfoManager::getInfo(Loop &L) {
return *It->second;
}
void LoopAccessInfoManager::clear() {
- SmallVector<Loop *> ToRemove;
// Collect LoopAccessInfo entries that may keep references to IR outside the
// analyzed loop or SCEVs that may have been modified or invalidated. At the
// moment, that is loops requiring memory or SCEV runtime checks, as those cache
// SCEVs, e.g. for pointer expressions.
- for (const auto &[L, LAI] : LoopAccessInfoMap) {
+ for (const auto &[L, LAI] : make_early_inc_range(LoopAccessInfoMap)) {
----------------
fhahn wrote:
Not 100% sure, but I guess the reason this works out is that `DenseMap` doesn't erase any buckets when erasing an element, so the iterators stay valid? But then do we even need the early increment?
https://github.com/llvm/llvm-project/pull/125488
More information about the llvm-commits
mailing list