Skip to content

Commit 6fa24b0

Browse files
committedJun 20, 2018
[Local] Add a utility to insert replacement dbg.values, NFC
The purpose of this utility is to make it easier for optimizations to insert replacement dbg.values for instructions they are deleting. This is useful in situations where salvageDebugInfo is inapplicable, say, because the new dbg.value cannot refer to an operand of the dying value. The utility is called insertReplacementDbgValues. It assumes that the instruction 'From' is going to be deleted, and inserts replacement dbg.values for each debug user of 'From'. The newly-inserted dbg.values refer to 'To' instead of 'From'. Each replacement dbg.value has the same location and variable as the debug user it replaces, has a DIExpression determined by the result of 'RewriteExpr' applied to an old debug user of 'From', and is placed before 'InsertBefore'. This should simplify future patches, like D48331. llvm-svn: 335144
1 parent 37fbb92 commit 6fa24b0

File tree

3 files changed

+35
-11
lines changed

3 files changed

+35
-11
lines changed
 

‎llvm/include/llvm/Transforms/Utils/Local.h

+11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#define LLVM_TRANSFORMS_UTILS_LOCAL_H
1717

1818
#include "llvm/ADT/ArrayRef.h"
19+
#include "llvm/ADT/STLExtras.h"
1920
#include "llvm/ADT/SmallPtrSet.h"
2021
#include "llvm/ADT/SmallVector.h"
2122
#include "llvm/ADT/TinyPtrVector.h"
@@ -333,6 +334,16 @@ void replaceDbgValueForAlloca(AllocaInst *AI, Value *NewAllocaAddress,
333334
/// DIExpression.
334335
void salvageDebugInfo(Instruction &I);
335336

337+
/// Assuming the instruction \p From is going to be deleted, insert replacement
338+
/// dbg.value intrinsics for each debug user of \p From. The newly-inserted
339+
/// dbg.values refer to \p To instead of \p From. Each replacement dbg.value
340+
/// has the same location and variable as the debug user it replaces, has a
341+
/// DIExpression determined by the result of \p RewriteExpr applied to an old
342+
/// debug user of \p From, and is placed before \p InsertBefore.
343+
void insertReplacementDbgValues(
344+
Instruction &From, Instruction &To, Instruction &InsertBefore,
345+
function_ref<DIExpression *(DbgInfoIntrinsic &OldDII)> RewriteExpr);
346+
336347
/// Remove all instructions from a basic block other than it's terminator
337348
/// and any present EH pad instructions.
338349
unsigned removeAllNonTerminatorAndEHPadInstructions(BasicBlock *BB);

‎llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp

+6-11
Original file line numberDiff line numberDiff line change
@@ -268,17 +268,12 @@ Instruction *InstCombiner::commonCastTransforms(CastInst &CI) {
268268
// the second cast (CI). CSrc will then have a good chance of being dead.
269269
auto *Res = CastInst::Create(NewOpc, CSrc->getOperand(0), CI.getType());
270270

271-
// If the eliminable cast has debug users, insert a debug value after the
272-
// cast pointing to the new Value.
273-
SmallVector<DbgInfoIntrinsic *, 1> CSrcDbgInsts;
274-
findDbgUsers(CSrcDbgInsts, CSrc);
275-
if (CSrcDbgInsts.size()) {
276-
DIBuilder DIB(*CI.getModule());
277-
for (auto *DII : CSrcDbgInsts)
278-
DIB.insertDbgValueIntrinsic(
279-
Res, DII->getVariable(), DII->getExpression(),
280-
DII->getDebugLoc().get(), &*std::next(CI.getIterator()));
281-
}
271+
// Replace debug users of the eliminable cast by emitting debug values
272+
// which refer to the new cast.
273+
insertReplacementDbgValues(
274+
*CSrc, *Res, *std::next(CI.getIterator()),
275+
[](DbgInfoIntrinsic &OldDII) { return OldDII.getExpression(); });
276+
282277
return Res;
283278
}
284279
}

‎llvm/lib/Transforms/Utils/Local.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -1671,6 +1671,24 @@ void llvm::salvageDebugInfo(Instruction &I) {
16711671
}
16721672
}
16731673

1674+
void llvm::insertReplacementDbgValues(
1675+
Instruction &From, Instruction &To, Instruction &InsertBefore,
1676+
function_ref<DIExpression *(DbgInfoIntrinsic &OldDII)> RewriteExpr) {
1677+
// Collect all debug users of From.
1678+
SmallVector<DbgInfoIntrinsic *, 1> Users;
1679+
findDbgUsers(Users, &From);
1680+
if (Users.empty())
1681+
return;
1682+
1683+
// Insert a replacement debug value for each old debug user. It's assumed
1684+
// that the old debug users will be erased later.
1685+
DIBuilder DIB(*From.getModule());
1686+
for (auto *OldDII : Users)
1687+
DIB.insertDbgValueIntrinsic(&To, OldDII->getVariable(),
1688+
RewriteExpr(*OldDII),
1689+
OldDII->getDebugLoc().get(), &InsertBefore);
1690+
}
1691+
16741692
unsigned llvm::removeAllNonTerminatorAndEHPadInstructions(BasicBlock *BB) {
16751693
unsigned NumDeadInst = 0;
16761694
// Delete the instructions backwards, as it has a reduced likelihood of

0 commit comments

Comments
 (0)
Please sign in to comment.