2017-01-04 20:08:35 +08:00
|
|
|
; RUN: llc -mtriple=x86_64-unknown-unknown -o - %s | FileCheck %s
|
2017-08-01 04:48:52 +08:00
|
|
|
; RUN: llc -mtriple=x86_64-unknown-unknown -filetype=obj < %s \
|
2017-09-12 07:05:20 +08:00
|
|
|
; RUN: | llvm-dwarfdump -v - | FileCheck %s --check-prefix=DWARF
|
2017-01-04 20:08:35 +08:00
|
|
|
|
|
|
|
define i1 @test() !dbg !4 {
|
|
|
|
entry:
|
|
|
|
%end = alloca i64, align 8
|
|
|
|
br label %while.cond
|
|
|
|
|
|
|
|
while.cond:
|
2017-07-29 04:21:02 +08:00
|
|
|
call void @llvm.dbg.value(metadata i64* %end, metadata !5, metadata !6), !dbg !7
|
2017-01-04 20:08:35 +08:00
|
|
|
%call = call i1 @fn(i64* %end, i64* %end, i64* null, i8* null, i64 0, i64* null, i32* null, i8* null), !dbg !7
|
|
|
|
br label %while.body
|
|
|
|
|
|
|
|
while.body:
|
|
|
|
br i1 0, label %while.end, label %while.cond
|
|
|
|
|
|
|
|
while.end:
|
|
|
|
ret i1 true
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test
|
2018-07-27 04:56:53 +08:00
|
|
|
; To get the value of the variable, we need to do [$rsp+8], i.e:
|
|
|
|
; CHECK: #DEBUG_VALUE: test:w <- [DW_OP_plus_uconst 8, DW_OP_deref] $rsp
|
[dwarfdump] Pretty print location expressions and location lists
Summary:
Based on Fred's patch here: https://reviews.llvm.org/D6771
I can't seem to commandeer the old review, so I'm creating a new one.
With that change the locations exrpessions are pretty printed inline in the
DIE tree. The output looks like this for debug_loc entries:
DW_AT_location [DW_FORM_data4] (0x00000000
0x0000000000000001 - 0x000000000000000b: DW_OP_consts +3
0x000000000000000b - 0x0000000000000012: DW_OP_consts +7
0x0000000000000012 - 0x000000000000001b: DW_OP_reg0 RAX, DW_OP_piece 0x4
0x000000000000001b - 0x0000000000000024: DW_OP_breg5 RDI+0)
And like this for debug_loc.dwo entries:
DW_AT_location [DW_FORM_sec_offset] (0x00000000
Addr idx 2 (w/ length 190): DW_OP_consts +0, DW_OP_stack_value
Addr idx 3 (w/ length 23): DW_OP_reg0 RAX, DW_OP_piece 0x4)
Simple locations without ranges are printed inline:
DW_AT_location [DW_FORM_block1] (DW_OP_reg4 RSI, DW_OP_piece 0x4, DW_OP_bit_piece 0x20 0x0)
The debug_loc(.dwo) dumping in changed accordingly to factor the code.
Reviewers: dblaikie, aprantl, friss
Subscribers: mgorny, javed.absar, hiraditya, llvm-commits, JDevlieghere
Differential Revision: https://reviews.llvm.org/D37123
llvm-svn: 312042
2017-08-30 05:41:21 +08:00
|
|
|
; DWARF: DW_AT_location [DW_FORM_sec_offset] (
|
2018-01-16 19:17:57 +08:00
|
|
|
; DWARF-NEXT: [{{.*}}, {{.*}}): DW_OP_breg7 RSP+8)
|
2017-01-04 20:08:35 +08:00
|
|
|
|
2018-07-27 04:56:53 +08:00
|
|
|
; Note: A previous version of this test checked for `[DW_OP_plus_uconst 8] [$rsp+0]`,
|
|
|
|
; which is incorrect, because it adds the stack offset after dereferencing the stack pointer.
|
|
|
|
|
2017-01-04 20:08:35 +08:00
|
|
|
declare i1 @fn(i64*, i64*, i64*, i8*, i64, i64*, i32*, i8*)
|
2017-07-29 04:21:02 +08:00
|
|
|
declare void @llvm.dbg.value(metadata, metadata, metadata)
|
2017-01-04 20:08:35 +08:00
|
|
|
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
|
|
!llvm.module.flags = !{!2,!3}
|
|
|
|
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 4.0.0", emissionKind: FullDebug)
|
|
|
|
!1 = !DIFile(filename: "test.c", directory: "/")
|
|
|
|
!2 = !{i32 2, !"Dwarf Version", i32 4}
|
|
|
|
!3 = !{i32 2, !"Debug Info Version", i32 3}
|
|
|
|
!4 = distinct !DISubprogram(name: "test", type: !10, unit: !0)
|
|
|
|
!5 = !DILocalVariable(name: "w", scope: !4, type: !9)
|
2018-07-27 04:56:53 +08:00
|
|
|
!6 = !DIExpression(DW_OP_deref)
|
2017-01-04 20:08:35 +08:00
|
|
|
!7 = !DILocation(line: 210, column: 12, scope: !4)
|
|
|
|
!8 = !{!9}
|
|
|
|
!9 = !DIBasicType(name: "bool", size: 8, encoding: DW_ATE_boolean)
|
|
|
|
!10 = !DISubroutineType(types: !8)
|