[llvm] ea058d2 - [VPlan] Use operands for printing of VPWidenMemoryInstructionRecipe.
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 12 08:52:45 PDT 2020
Author: Florian Hahn
Date: 2020-10-12T16:51:54+01:00
New Revision: ea058d289cbf54e5b33aac7f7a13d0d58625f1b9
URL: https://github.com/llvm/llvm-project/commit/ea058d289cbf54e5b33aac7f7a13d0d58625f1b9
DIFF: https://github.com/llvm/llvm-project/commit/ea058d289cbf54e5b33aac7f7a13d0d58625f1b9.diff
LOG: [VPlan] Use operands for printing of VPWidenMemoryInstructionRecipe.
Now that operands of the recipe are managed through VPUser, we can
simplify the printing by just using the operands.
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlan.cpp
llvm/lib/Transforms/Vectorize/VPlan.h
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.cpp b/llvm/lib/Transforms/Vectorize/VPlan.cpp
index a009393d029c..054920645a9a 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlan.cpp
@@ -790,7 +790,7 @@ void VPlanPrinter::dumpRegion(const VPRegionBlock *Region) {
dumpEdges(Region);
}
-void VPlanPrinter::printAsIngredient(raw_ostream &O, Value *V) {
+void VPlanPrinter::printAsIngredient(raw_ostream &O, const Value *V) {
std::string IngredientString;
raw_string_ostream RSO(IngredientString);
if (auto *Inst = dyn_cast<Instruction>(V)) {
@@ -903,13 +903,14 @@ void VPPredInstPHIRecipe::print(raw_ostream &O, const Twine &Indent,
void VPWidenMemoryInstructionRecipe::print(raw_ostream &O, const Twine &Indent,
VPSlotTracker &SlotTracker) const {
- O << "\"WIDEN " << VPlanIngredient(&Instr);
- O << ", ";
- getAddr()->printAsOperand(O, SlotTracker);
- VPValue *Mask = getMask();
- if (Mask) {
- O << ", ";
- Mask->printAsOperand(O, SlotTracker);
+ O << "\"WIDEN " << Instruction::getOpcodeName(Instr.getOpcode()) << " ";
+
+ bool First = true;
+ for (VPValue *Op : operands()) {
+ if (!First)
+ O << ", ";
+ Op->printAsOperand(O, SlotTracker);
+ First = false;
}
}
diff --git a/llvm/lib/Transforms/Vectorize/VPlan.h b/llvm/lib/Transforms/Vectorize/VPlan.h
index aa59904ea78e..30f984fd39d7 100644
--- a/llvm/lib/Transforms/Vectorize/VPlan.h
+++ b/llvm/lib/Transforms/Vectorize/VPlan.h
@@ -1778,7 +1778,7 @@ class VPlanPrinter {
void dump();
- static void printAsIngredient(raw_ostream &O, Value *V);
+ static void printAsIngredient(raw_ostream &O, const Value *V);
};
struct VPlanIngredient {
More information about the llvm-commits
mailing list