[llvm] [SLP][NFC] Redesign schedule bundle, separate from schedule data, NFC (PR #131625)
Gaëtan Bossu via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 07:45:58 PDT 2025
================
@@ -3781,22 +3782,23 @@ class BoUpSLP {
}
}
// Update the scheduler bundle to point to this TreeEntry.
- ScheduleData *BundleMember = *Bundle;
- assert((BundleMember || isa<PHINode>(S.getMainOp()) ||
+ assert((!Bundle.getBundle().empty() || isa<PHINode>(S.getMainOp()) ||
isVectorLikeInstWithConstOps(S.getMainOp()) ||
doesNotNeedToSchedule(VL)) &&
"Bundle and VL out of sync");
- if (BundleMember) {
+ if (!Bundle.getBundle().empty()) {
+ auto *BundleMember = Bundle.getBundle().begin();
for (Value *V : VL) {
if (doesNotNeedToBeScheduled(V))
continue;
- if (!BundleMember)
+ if (BundleMember == Bundle.getBundle().end())
----------------
gbossu wrote:
Can this case actually happen? Doesn't this mean that there is a value to be scheduled, but it is not part of `Bundle`? That sounds dangerous, but I probably just do not understand the code base 😄
https://github.com/llvm/llvm-project/pull/131625
More information about the llvm-commits
mailing list