[llvm] 108e6bc - [SLP][NFC]Improve dump of the ScheduleData, NFC
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 06:25:16 PST 2025
Author: Alexey Bataev
Date: 2025-02-12T06:25:04-08:00
New Revision: 108e6bca693e5f44d2d17da5a6e06203a0290de7
URL: https://github.com/llvm/llvm-project/commit/108e6bca693e5f44d2d17da5a6e06203a0290de7
DIFF: https://github.com/llvm/llvm-project/commit/108e6bca693e5f44d2d17da5a6e06203a0290de7.diff
LOG: [SLP][NFC]Improve dump of the ScheduleData, NFC
Added:
Modified:
llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
index fb1054ee30aab..5dbaebca3cf13 100644
--- a/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
+++ b/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
@@ -3997,23 +3997,28 @@ class BoUpSLP {
return Sum;
}
- void dump(raw_ostream &os) const {
- if (!isSchedulingEntity()) {
- os << "/ " << *Inst;
- } else if (NextInBundle) {
- os << '[' << *Inst;
+ void dump(raw_ostream &OS) const {
+ if (isPartOfBundle()) {
+ if (!isSchedulingEntity()) {
+ OS << "/ " << *Inst << ", part of " << *FirstInBundle;
+ return;
+ }
+ OS << '[' << *Inst;
ScheduleData *SD = NextInBundle;
while (SD) {
- os << ';' << *SD->Inst;
+ OS << ';' << *SD->Inst;
SD = SD->NextInBundle;
}
- os << ']';
+ OS << ']';
} else {
- os << *Inst;
+ OS << *Inst;
}
}
- LLVM_DUMP_METHOD void dump() const { dump(dbgs()); }
+ LLVM_DUMP_METHOD void dump() const {
+ dump(dbgs());
+ dbgs() << '\n';
+ }
Instruction *Inst = nullptr;
More information about the llvm-commits
mailing list