Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 38fa705

Browse files
committed
[BasicBlockUtils] Use getFirstNonPHIOrDbg to set debugloc for instructions created in SplitBlockPredecessors
Summary: When setting debugloc for instructions created in SplitBlockPredecessors, current implementation copies debugloc from the first-non-phi instruction of the original basic block. However, if the first-non-phi instruction is a call for @llvm.dbg.value, the debugloc of the instruction may point the location outside of the block itself. For the example code of ``` 1 typedef struct _node_t { 2 struct _node_t *next; 3 } node_t; 4 5 extern node_t *root; 6 7 int foo() { 8 node_t *node, *tmp; 9 int ret = 0; 10 11 node = tmp = root->next; 12 while (node != root) { 13 while (node) { 14 tmp = node; 15 node = node->next; 16 ret++; 17 } 18 } 19 20 return ret; 21 } ``` , below is the basicblock corresponding to line 12 after Reassociate expressions pass: ``` while.cond: ; preds = %while.cond2, %entry %node.0 = phi %struct._node_t* [ %1, %entry ], [ null, %while.cond2 ] %ret.0 = phi i32 [ 0, %entry ], [ %ret.1, %while.cond2 ] tail call void @llvm.dbg.value(metadata i32 %ret.0, i64 0, metadata !19, metadata !20), !dbg !21 tail call void @llvm.dbg.value(metadata %struct._node_t* %node.0, i64 0, metadata !11, metadata !20), !dbg !31 %cmp = icmp eq %struct._node_t* %node.0, %0, !dbg !33 br i1 %cmp, label %while.end5, label %while.cond2, !dbg !35 ``` As you can see, the first-non-phi instruction is a call for @llvm.dbg.value, and the debugloc is ``` !21 = !DILocation(line: 9, column: 7, scope: !6) ``` , which is a definition of 'ret' variable and outside of the scope of the basicblock itself. However, current implementation picks up this debugloc for the instructions created in SplitBlockPredecessors. This patch addresses this problem by picking up debugloc from the first-non-phi-non-dbg instruction. Reviewers: dblaikie, samsonov, eugenis Reviewed By: eugenis Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29867 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295106 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent f3470b1 commit 38fa705

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

lib/Transforms/Utils/BasicBlockUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ BasicBlock *llvm::SplitBlockPredecessors(BasicBlock *BB,
438438

439439
// The new block unconditionally branches to the old block.
440440
BranchInst *BI = BranchInst::Create(BB, NewBB);
441-
BI->setDebugLoc(BB->getFirstNonPHI()->getDebugLoc());
441+
BI->setDebugLoc(BB->getFirstNonPHIOrDbg()->getDebugLoc());
442442

443443
// Move the edges from Preds to point to NewBB instead of BB.
444444
for (unsigned i = 0, e = Preds.size(); i != e; ++i) {

test/Transforms/LoopSimplify/dbg-loc.ll

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ entry:
2323

2424
for.body: ; preds = %entry, %length.exit
2525
%begin.sink5 = phi %"Length"* [ %incdec.ptr, %length.exit ], [ %begin, %entry ]
26+
tail call void @llvm.dbg.value(metadata %"Length"* %begin.sink5, i64 0, metadata !15, metadata !16), !dbg !17
2627
%m_type.i.i.i = getelementptr inbounds %"Length", %"Length"* %begin.sink5, i64 0, i32 2, !dbg !9
2728
%0 = load i8, i8* %m_type.i.i.i, align 1, !dbg !9
2829
%cmp.i.i = icmp eq i8 %0, 9, !dbg !7
@@ -68,6 +69,9 @@ eh.resume: ; preds = %catch
6869
resume { i8*, i32 } undef, !dbg !13
6970
}
7071

72+
; Function Attrs: nounwind readnone
73+
declare void @llvm.dbg.value(metadata, i64, metadata, metadata)
74+
7175
; CHECK-DAG: [[PREHEADER_LOC]] = !DILocation(line: 73, column: 27, scope: !{{[0-9]+}})
7276
; CHECK-DAG: [[LOOPEXIT_LOC]] = !DILocation(line: 75, column: 9, scope: !{{[0-9]+}})
7377
; CHECK-DAG: [[LPAD_PREHEADER_LOC]] = !DILocation(line: 85, column: 1, scope: !{{[0-9]+}})
@@ -93,3 +97,6 @@ eh.resume: ; preds = %catch
9397
file: !5,
9498
isOptimized: true, flags: "-O2",
9599
splitDebugFilename: "abc.debug", emissionKind: 2)
100+
!15 = !DILocalVariable(name: "begin", arg: 1, scope: !6, file: !5, line: 71)
101+
!16 = !DIExpression()
102+
!17 = !DILocation(line: 71, column: 32, scope: !6)

0 commit comments

Comments
 (0)