mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
4d9933df28
This reapplies c0f6ad7d1f3ccb9d0b9ce9ef8dfa06409ccf1b3e with an additional fix in test/DebugInfo/X86/constant-loclist.ll, which had a slightly different output on windows targets. The test now accounts for this difference. The original commit message follows. Summary: As discussed in D70081, this adds the ability to dump section names/indices to the location list dumper. It does this by moving the range specific logic from DWARFDie.cpp:dumpRanges into the DWARFAddressRange class. The trickiest part of this patch is the backflip in the meanings of the two dump flags for the location list sections. The dumping of "raw" location list data is now controlled by "DisplayRawContents" flag. This frees up the "Verbose" flag to be used to control whether we print the section index. Additionally, the DisplayRawContents flag is set for section-based dumps whenever the --verbose option is passed, but this is not done for the "inline" dumps. Also note that the index dumping currently does not work for the DWARF v5 location lists, as the parser does not fill out the appropriate fields. This will be done in a separate patch. Reviewers: dblaikie, probinson, JDevlieghere, SouraVX Subscribers: sdardis, hiraditya, jrtc27, atanasyan, arphaman, aprantl, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D70227
48 lines
1.7 KiB
LLVM
48 lines
1.7 KiB
LLVM
; RUN: llc -mtriple=x86_64-unknown-unknown -o - %s | FileCheck %s
|
|
; RUN: llc -mtriple=x86_64-unknown-unknown -filetype=obj < %s \
|
|
; RUN: | llvm-dwarfdump - | FileCheck %s --check-prefix=DWARF
|
|
|
|
define i1 @test() !dbg !4 {
|
|
entry:
|
|
%end = alloca i64, align 8
|
|
br label %while.cond
|
|
|
|
while.cond:
|
|
call void @llvm.dbg.value(metadata i64* %end, metadata !5, metadata !6), !dbg !7
|
|
%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
|
|
; 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
|
|
; DWARF: DW_AT_location (
|
|
; DWARF-NEXT: [{{.*}}, {{.*}}): DW_OP_breg7 RSP+8)
|
|
|
|
; 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.
|
|
|
|
declare i1 @fn(i64*, i64*, i64*, i8*, i64, i64*, i32*, i8*)
|
|
declare void @llvm.dbg.value(metadata, metadata, metadata)
|
|
|
|
!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)
|
|
!6 = !DIExpression(DW_OP_deref)
|
|
!7 = !DILocation(line: 210, column: 12, scope: !4)
|
|
!8 = !{!9}
|
|
!9 = !DIBasicType(name: "bool", size: 8, encoding: DW_ATE_boolean)
|
|
!10 = !DISubroutineType(types: !8)
|