[llvm] [LoopVectorize] Don't replicate blocks with optsize (PR #129265)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 13:37:28 PDT 2025
================
@@ -4546,6 +4546,12 @@ static bool willGenerateVectors(VPlan &Plan, ElementCount VF,
return false;
}
+static bool hasReplicatorRegion(VPlan &Plan) {
+ return any_of(VPBlockUtils::blocksOnly<VPRegionBlock>(
+ vp_depth_first_deep(Plan.getEntry())),
----------------
fhahn wrote:
Ah sorry, it would need to be starting at the entry of the vector loop region I think, something like
```suggestion
vp_depth_first_shallow(Plan.getVectorLoopRegion()->getEntry())),
```
https://github.com/llvm/llvm-project/pull/129265
More information about the llvm-commits
mailing list