[PATCH] D100176: [VPlan] Use recursive traversal iterator in VPSlotTracker.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 22 11:08:32 PDT 2021
fhahn updated this revision to Diff 339729.
fhahn added a comment.
rebased to use utility from D101093 <https://reviews.llvm.org/D101093> to create an iterator range that only contains VPBasicBlocks.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100176/new/
https://reviews.llvm.org/D100176
Files:
llvm/lib/Transforms/Vectorize/VPlan.cpp
llvm/lib/Transforms/Vectorize/VPlanValue.h
Index: llvm/lib/Transforms/Vectorize/VPlanValue.h
===================================================================
--- llvm/lib/Transforms/Vectorize/VPlanValue.h
+++ llvm/lib/Transforms/Vectorize/VPlanValue.h
@@ -372,11 +372,7 @@
DenseMap<const VPValue *, unsigned> Slots;
unsigned NextSlot = 0;
- void assignSlots(const VPBlockBase *VPBB);
- void assignSlots(const VPRegionBlock *Region);
- void assignSlots(const VPBasicBlock *VPBB);
void assignSlot(const VPValue *V);
-
void assignSlots(const VPlan &Plan);
public:
Index: llvm/lib/Transforms/Vectorize/VPlan.cpp
===================================================================
--- llvm/lib/Transforms/Vectorize/VPlan.cpp
+++ llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -1250,26 +1250,6 @@
Slots[V] = NextSlot++;
}
-void VPSlotTracker::assignSlots(const VPBlockBase *VPBB) {
- if (auto *Region = dyn_cast<VPRegionBlock>(VPBB))
- assignSlots(Region);
- else
- assignSlots(cast<VPBasicBlock>(VPBB));
-}
-
-void VPSlotTracker::assignSlots(const VPRegionBlock *Region) {
- ReversePostOrderTraversal<const VPBlockBase *> RPOT(Region->getEntry());
- for (const VPBlockBase *Block : RPOT)
- assignSlots(Block);
-}
-
-void VPSlotTracker::assignSlots(const VPBasicBlock *VPBB) {
- for (const VPRecipeBase &Recipe : *VPBB) {
- for (VPValue *Def : Recipe.definedValues())
- assignSlot(Def);
- }
-}
-
void VPSlotTracker::assignSlots(const VPlan &Plan) {
for (const VPValue *V : Plan.VPExternalDefs)
@@ -1278,7 +1258,12 @@
if (Plan.BackedgeTakenCount)
assignSlot(Plan.BackedgeTakenCount);
- ReversePostOrderTraversal<const VPBlockBase *> RPOT(Plan.getEntry());
- for (const VPBlockBase *Block : RPOT)
- assignSlots(Block);
+ ReversePostOrderTraversal<
+ VPBlockRecursiveTraversalWrapper<const VPBlockBase *>>
+ RPOT(VPBlockRecursiveTraversalWrapper<const VPBlockBase *>(
+ Plan.getEntry()));
+ for (const VPBasicBlock *VPBB: VPBlockUtils::constBasicBlocksOnly(RPOT))
+ for (const VPRecipeBase &Recipe : *VPBB) {
+ for (VPValue *Def : Recipe.definedValues())
+ assignSlot(Def);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100176.339729.patch
Type: text/x-patch
Size: 2130 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210422/5a8a162d/attachment.bin>
More information about the llvm-commits
mailing list