[llvm] [LV] Strengthen calls to collectInstsToScalarize (NFC) (PR #130642)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 08:33:13 PDT 2025


================
@@ -5393,20 +5393,21 @@ bool LoopVectorizationCostModel::useEmulatedMaskMemRefHack(Instruction *I,
 }
 
 void LoopVectorizationCostModel::collectInstsToScalarize(ElementCount VF) {
-  // If we aren't vectorizing the loop, or if we've already collected the
-  // instructions to scalarize, there's nothing to do. Collection may already
-  // have occurred if we have a user-selected VF and are now computing the
-  // expected cost for interleaving.
-  if (VF.isScalar() || VF.isZero() || InstsToScalarize.contains(VF))
+  assert(VF.isVector() && "Expected VF >= 2");
+
+  // If we've already collected the instructions to scalarize or the predicated
+  // BBs after vectorization, there's nothing to do. Collection may already have
+  // occurred if we have a user-selected VF and are now computing the expected
+  // cost for interleaving.
+  if (InstsToScalarize.contains(VF) ||
+      PredicatedBBsAfterVectorization.contains(VF))
     return;
 
   // Initialize a mapping for VF in InstsToScalalarize. If we find that it's
   // not profitable to scalarize any instructions, the presence of VF in the
   // map will indicate that we've analyzed it already.
   ScalarCostsTy &ScalarCostsVF = InstsToScalarize[VF];
 
-  PredicatedBBsAfterVectorization[VF].clear();
----------------
david-arm wrote:

Perhaps I'm wrong, but I thought that `PredicatedBBsAfterVectorization[VF].clear()` created an entry in the map simply because you tried to access it via `PredicatedBBsAfterVectorization[VF]`, whereas `PredicatedBBsAfterVectorization.contains` only looks to see if there is an existing entry, without actually creating one. For example, the definition of `contains` in DenseMap seems to be:

```
  /// Return true if the specified key is in the map, false otherwise.
  bool contains(const_arg_type_t<KeyT> Val) const {
    return doFind(Val) != nullptr;
  }
```

whereas the `[]` operator does this:

```
  ValueT &operator[](const KeyT &Key) {
    BucketT *TheBucket;
    if (LookupBucketFor(Key, TheBucket))
      return TheBucket->second;

    return InsertIntoBucket(TheBucket, Key)->second;
  }
```

https://github.com/llvm/llvm-project/pull/130642


More information about the llvm-commits mailing list