Skip to content

Commit e1be8cf

Browse files
OCHyamstru
authored andcommitted
[RemoveDIs] Simplify spliceDebugInfo, fixing splice-to-end edge case (#105670)
Not quite NFC, fixes splitBasicBlockBefore case when we split before an instruction with debug records (but without the headBit set, i.e., we are splitting before the instruction but after the debug records that come before it). splitBasicBlockBefore splices the instructions before the split point into a new block. Prior to this patch, the debug records would get shifted up to the front of the spliced instructions (as seen in the modified unittest - I believe the unittest was checking erroneous behaviour). We instead want to leave those debug records at the end of the spliced instructions. The functionality of the deleted `else if` branch is covered by the remaining `if` now that `DestMarker` is set to the trailing marker if `Dest` is `end()`. Previously the "===" markers were sometimes detached, now we always detach them and always reattach them. Note: `deleteTrailingDbgRecords` only "unlinks" the tailing marker from the block, it doesn't delete anything. The trailing marker is still cleaned up properly inside the final `if` body with `DestMarker->eraseFromParent();`. Part 1 of 2 needed for #105571 (cherry picked from commit f581553)
1 parent 894ec4e commit e1be8cf

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

llvm/lib/IR/BasicBlock.cpp

+10-14
Original file line numberDiff line numberDiff line change
@@ -961,9 +961,13 @@ void BasicBlock::spliceDebugInfoImpl(BasicBlock::iterator Dest, BasicBlock *Src,
961961
// Detach the marker at Dest -- this lets us move the "====" DbgRecords
962962
// around.
963963
DbgMarker *DestMarker = nullptr;
964-
if (Dest != end()) {
965-
if ((DestMarker = getMarker(Dest)))
964+
if ((DestMarker = getMarker(Dest))) {
965+
if (Dest == end()) {
966+
assert(DestMarker == getTrailingDbgRecords());
967+
deleteTrailingDbgRecords();
968+
} else {
966969
DestMarker->removeFromParent();
970+
}
967971
}
968972

969973
// If we're moving the tail range of DbgRecords (":::"), absorb them into the
@@ -1005,22 +1009,14 @@ void BasicBlock::spliceDebugInfoImpl(BasicBlock::iterator Dest, BasicBlock *Src,
10051009
} else {
10061010
// Insert them right at the start of the range we moved, ahead of First
10071011
// and the "++++" DbgRecords.
1012+
// This also covers the rare circumstance where we insert at end(), and we
1013+
// did not generate the iterator with begin() / getFirstInsertionPt(),
1014+
// meaning any trailing debug-info at the end of the block would
1015+
// "normally" have been pushed in front of "First". We move it there now.
10081016
DbgMarker *FirstMarker = createMarker(First);
10091017
FirstMarker->absorbDebugValues(*DestMarker, true);
10101018
}
10111019
DestMarker->eraseFromParent();
1012-
} else if (Dest == end() && !InsertAtHead) {
1013-
// In the rare circumstance where we insert at end(), and we did not
1014-
// generate the iterator with begin() / getFirstInsertionPt(), it means
1015-
// any trailing debug-info at the end of the block would "normally" have
1016-
// been pushed in front of "First". Move it there now.
1017-
DbgMarker *TrailingDbgRecords = getTrailingDbgRecords();
1018-
if (TrailingDbgRecords) {
1019-
DbgMarker *FirstMarker = createMarker(First);
1020-
FirstMarker->absorbDebugValues(*TrailingDbgRecords, true);
1021-
TrailingDbgRecords->eraseFromParent();
1022-
deleteTrailingDbgRecords();
1023-
}
10241020
}
10251021
}
10261022

llvm/unittests/IR/BasicBlockDbgInfoTest.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@ TEST(BasicBlockDbgInfoTest, SplitBasicBlockBefore) {
141141
Function *F = M->getFunction("func");
142142

143143
BasicBlock &BB = F->getEntryBlock();
144-
auto I = std::prev(BB.end(), 2);
144+
auto I = std::prev(BB.end(), 2); // store i32 2, ptr %1.
145145
BB.splitBasicBlockBefore(I, "before");
146146

147147
BasicBlock &BBBefore = F->getEntryBlock();
148-
auto I2 = std::prev(BBBefore.end(), 2);
148+
auto I2 = std::prev(BBBefore.end()); // br label %1 (new).
149149
ASSERT_TRUE(I2->hasDbgRecords());
150150
}
151151

0 commit comments

Comments
 (0)