mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
a2029fa58e
In order to set breakpoints on labels and list source code around labels, we need collect debug information for labels, i.e., label name, the function label belong, line number in the file, and the address label located. In order to keep these information in LLVM IR and to allow backend to generate debug information correctly. We create a new kind of metadata for labels, DILabel. The format of DILabel is !DILabel(scope: !1, name: "foo", file: !2, line: 3) We hope to keep debug information as much as possible even the code is optimized. So, we create a new kind of intrinsic for label metadata to avoid the metadata is eliminated with basic block. The intrinsic will keep existing if we keep it from optimized out. The format of the intrinsic is llvm.dbg.label(metadata !1) It has only one argument, that is the DILabel metadata. The intrinsic will follow the label immediately. Backend could get the label metadata through the intrinsic's parameter. We also create DIBuilder API for labels to be used by Frontend. Frontend could use createLabel() to allocate DILabel objects, and use insertLabel() to insert llvm.dbg.label intrinsic in LLVM IR. Differential Revision: https://reviews.llvm.org/D45024 Patch by Hsiangkai Wang. llvm-svn: 331841
100 lines
5.0 KiB
LLVM
100 lines
5.0 KiB
LLVM
; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - -use-dwarf-ranges-base-address-specifier | FileCheck --check-prefix=COMMON --check-prefix=BASE %s
|
|
; RUN: llc -filetype=asm -mtriple=x86_64-pc-linux-gnu %s -o - | FileCheck --check-prefix=COMMON --check-prefix=NOBASE %s
|
|
|
|
; Group ranges in a range list that apply to the same section and use a base
|
|
; address selection entry to reduce the number of relocations to one reloc per
|
|
; section per range list. DWARF5 debug_rnglist will be more efficient than this
|
|
; in terms of relocations, but it's still better than one reloc per entry in a
|
|
; range list.
|
|
|
|
; This is an object/executable size tradeoff - shrinking objects, but growing
|
|
; the linked executable. In one large binary tested, total object size (not just
|
|
; debug info) shrank by 16%, entirely relocation entries. Linked executable
|
|
; grew by 4%. This was with compressed debug info in the objects, uncompressed
|
|
; in the linked executable. Without compression in the objects, the win would be
|
|
; smaller (the growth of debug_ranges itself would be more significant).
|
|
|
|
; COMMON: {{^.Ldebug_ranges0}}
|
|
; COMMON-NEXT: .quad .Lfunc_begin0
|
|
; COMMON-NEXT: .quad .Lfunc_end0
|
|
; BASE-NEXT: .quad -1
|
|
; BASE-NEXT: .quad .Lfunc_begin1
|
|
; BASE-NEXT: .quad .Lfunc_begin1-.Lfunc_begin1
|
|
; BASE-NEXT: .quad .Lfunc_end1-.Lfunc_begin1
|
|
; BASE-NEXT: .quad .Lfunc_begin3-.Lfunc_begin1
|
|
; BASE-NEXT: .quad .Lfunc_end3-.Lfunc_begin1
|
|
; BASE-NEXT: .quad -1
|
|
; BASE-NEXT: .quad 0
|
|
; NOBASE-NEXT: .quad .Lfunc_begin1
|
|
; NOBASE-NEXT: .quad .Lfunc_end1
|
|
; NOBASE-NEXT: .quad .Lfunc_begin3
|
|
; NOBASE-NEXT: .quad .Lfunc_end3
|
|
; COMMON-NEXT: .quad .Lfunc_begin4
|
|
; COMMON-NEXT: .quad .Lfunc_end4
|
|
; COMMON-NEXT: .quad .Lfunc_begin5
|
|
; COMMON-NEXT: .quad .Lfunc_end5
|
|
; COMMON-NEXT: .quad 0
|
|
; COMMON-NEXT: .quad 0
|
|
|
|
; Function Attrs: noinline nounwind optnone uwtable
|
|
define void @_Z2f1v() #0 section "a" !dbg !7 {
|
|
entry:
|
|
ret void, !dbg !10
|
|
}
|
|
|
|
; Function Attrs: noinline nounwind optnone uwtable
|
|
define void @_Z2f2v() #0 section "b" !dbg !11 {
|
|
entry:
|
|
ret void, !dbg !12
|
|
}
|
|
|
|
; Function Attrs: noinline nounwind optnone uwtable
|
|
define void @_Z2f3v() #0 section "b" {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: noinline nounwind optnone uwtable
|
|
define void @_Z2f4v() #0 section "b" !dbg !13 {
|
|
entry:
|
|
ret void, !dbg !14
|
|
}
|
|
|
|
; Function Attrs: noinline nounwind optnone uwtable
|
|
define void @_Z2f5v() #0 section "e" !dbg !15 {
|
|
entry:
|
|
ret void, !dbg !16
|
|
}
|
|
|
|
; Function Attrs: noinline nounwind optnone uwtable
|
|
define void @_Z2f6v() #0 section "f" !dbg !17 {
|
|
entry:
|
|
ret void, !dbg !18
|
|
}
|
|
|
|
attributes #0 = { noinline nounwind optnone uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4, !5}
|
|
!llvm.ident = !{!6}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 6.0.0 (trunk 309523) (llvm/trunk 309526)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
|
|
!1 = !DIFile(filename: "funcs.cpp", directory: "/usr/local/google/home/blaikie/dev/scratch")
|
|
!2 = !{}
|
|
!3 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!5 = !{i32 1, !"wchar_size", i32 4}
|
|
!6 = !{!"clang version 6.0.0 (trunk 309523) (llvm/trunk 309526)"}
|
|
!7 = distinct !DISubprogram(name: "f1", linkageName: "_Z2f1v", scope: !1, file: !1, line: 1, type: !8, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!8 = !DISubroutineType(types: !9)
|
|
!9 = !{null}
|
|
!10 = !DILocation(line: 1, column: 42, scope: !7)
|
|
!11 = distinct !DISubprogram(name: "f2", linkageName: "_Z2f2v", scope: !1, file: !1, line: 2, type: !8, isLocal: false, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!12 = !DILocation(line: 2, column: 42, scope: !11)
|
|
!13 = distinct !DISubprogram(name: "f4", linkageName: "_Z2f4v", scope: !1, file: !1, line: 4, type: !8, isLocal: false, isDefinition: true, scopeLine: 4, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!14 = !DILocation(line: 4, column: 42, scope: !13)
|
|
!15 = distinct !DISubprogram(name: "f5", linkageName: "_Z2f5v", scope: !1, file: !1, line: 5, type: !8, isLocal: false, isDefinition: true, scopeLine: 5, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!16 = !DILocation(line: 5, column: 42, scope: !15)
|
|
!17 = distinct !DISubprogram(name: "f6", linkageName: "_Z2f6v", scope: !1, file: !1, line: 6, type: !8, isLocal: false, isDefinition: true, scopeLine: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!18 = !DILocation(line: 6, column: 42, scope: !17)
|