Skip to content

Commit 97edcbc

Browse files
committedAug 23, 2018
[DebugInfo] Fix bug in LiveDebugVariables.
In lib/CodeGen/LiveDebugVariables.cpp, it uses std::prev(MBBI) to get DebugValue's SlotIndex. However, the previous instruction may be also a debug instruction. It could not use a debug instruction to query SlotIndex in mi2iMap. Scan all debug instructions and use the first debug instruction to query SlotIndex for following debug instructions. Only handle DBG_VALUE in handleDebugValue(). Differential Revision: https://reviews.llvm.org/D50621 llvm-svn: 340508
1 parent a755f4d commit 97edcbc

File tree

3 files changed

+71
-5
lines changed

3 files changed

+71
-5
lines changed
 

‎llvm/include/llvm/CodeGen/SlotIndexes.h

+2
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,8 @@ class raw_ostream;
414414
SlotIndex getInstructionIndex(const MachineInstr &MI) const {
415415
// Instructions inside a bundle have the same number as the bundle itself.
416416
const MachineInstr &BundleStart = *getBundleStart(MI.getIterator());
417+
assert(!BundleStart.isDebugInstr() &&
418+
"Could not use a debug instruction to query mi2iMap.");
417419
Mi2IndexMap::const_iterator itr = mi2iMap.find(&BundleStart);
418420
assert(itr != mi2iMap.end() && "Instruction not found in maps.");
419421
return itr->second;

‎llvm/lib/CodeGen/LiveDebugVariables.cpp

+10-5
Original file line numberDiff line numberDiff line change
@@ -578,23 +578,28 @@ bool LDVImpl::collectDebugValues(MachineFunction &mf) {
578578
MachineBasicBlock *MBB = &*MFI;
579579
for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end();
580580
MBBI != MBBE;) {
581-
if (!MBBI->isDebugValue()) {
581+
// Use the first debug instruction in the sequence to get a SlotIndex
582+
// for following consecutive debug instructions.
583+
if (!MBBI->isDebugInstr()) {
582584
++MBBI;
583585
continue;
584586
}
585-
// DBG_VALUE has no slot index, use the previous instruction instead.
587+
// Debug instructions has no slot index. Use the previous
588+
// non-debug instruction's SlotIndex as its SlotIndex.
586589
SlotIndex Idx =
587590
MBBI == MBB->begin()
588591
? LIS->getMBBStartIdx(MBB)
589592
: LIS->getInstructionIndex(*std::prev(MBBI)).getRegSlot();
590-
// Handle consecutive DBG_VALUE instructions with the same slot index.
593+
// Handle consecutive debug instructions with the same slot index.
591594
do {
592-
if (handleDebugValue(*MBBI, Idx)) {
595+
// Only handle DBG_VALUE in handleDebugValue(). Skip all other
596+
// kinds of debug instructions.
597+
if (MBBI->isDebugValue() && handleDebugValue(*MBBI, Idx)) {
593598
MBBI = MBB->erase(MBBI);
594599
Changed = true;
595600
} else
596601
++MBBI;
597-
} while (MBBI != MBBE && MBBI->isDebugValue());
602+
} while (MBBI != MBBE && MBBI->isDebugInstr());
598603
}
599604
}
600605
return Changed;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
; After adding new debug instruction for labels, it is possible to have
2+
; debug instructions before DBG_VALUE. When querying DBG_VALUE's slot
3+
; index using previous instruction and the previous instruction is debug
4+
; instruction, it will trigger an assertion as using debug instruction
5+
; to get slot index. This test is to emulate the case when DBG_VALUE's
6+
; previous instruction is DBG_LABEL in LiveDebugVariables pass.
7+
;
8+
; RUN: llc < %s -stop-after=livedebugvars -debug 2>&1 | FileCheck %s
9+
;
10+
; CHECK: COMPUTING LIVE DEBUG VARIABLES: foo
11+
; CHECK: DEBUG VARIABLES
12+
; CHECK-NEXT: "local_var,7"
13+
14+
source_filename = "debug-var-slot.c"
15+
16+
define dso_local i32 @foo(i32 %a, i32 %b) !dbg !6 {
17+
entry:
18+
%a.addr = alloca i32, align 4
19+
%b.addr = alloca i32, align 4
20+
%sum = alloca i32, align 4
21+
store i32 %a, i32* %a.addr, align 4
22+
store i32 %b, i32* %b.addr, align 4
23+
br label %top
24+
25+
top:
26+
call void @llvm.dbg.label(metadata !10), !dbg !13
27+
call void @llvm.dbg.value(metadata i32 %0, metadata !12, metadata !DIExpression()), !dbg !14
28+
%0 = load i32, i32* %a.addr, align 4
29+
%1 = load i32, i32* %a.addr, align 4
30+
%2 = load i32, i32* %b.addr, align 4
31+
%add = add nsw i32 %1, %2
32+
store i32 %add, i32* %sum, align 4
33+
br label %done
34+
35+
done:
36+
%3 = load i32, i32* %sum, align 4
37+
ret i32 %3, !dbg !15
38+
}
39+
40+
declare void @llvm.dbg.label(metadata)
41+
declare void @llvm.dbg.value(metadata, metadata, metadata)
42+
43+
!llvm.dbg.cu = !{!0}
44+
!llvm.module.flags = !{!4}
45+
46+
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, isOptimized: true, emissionKind: FullDebug, enums: !2)
47+
!1 = !DIFile(filename: "debug-var-slot.c", directory: "./")
48+
!2 = !{}
49+
!4 = !{i32 2, !"Debug Info Version", i32 3}
50+
!6 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !7, isLocal: false, isDefinition: true, scopeLine: 2, isOptimized: true, unit: !0, retainedNodes: !2)
51+
!7 = !DISubroutineType(types: !8)
52+
!8 = !{!9, !9, !9}
53+
!9 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
54+
!10 = !DILabel(scope: !6, name: "top", file: !1, line: 4)
55+
!11 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
56+
!12 = !DILocalVariable(name: "local_var", scope: !6, file: !1, line: 7, type: !11)
57+
!13 = !DILocation(line: 4, column: 1, scope: !6)
58+
!14 = !DILocation(line: 7, column: 1, scope: !6)
59+
!15 = !DILocation(line: 8, column: 3, scope: !6)

0 commit comments

Comments
 (0)
Please sign in to comment.