mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +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
65 lines
2.3 KiB
LLVM
65 lines
2.3 KiB
LLVM
; RUN: llvm-as %s -o %t 2>&1 | FileCheck %s
|
|
; Created and then edited from
|
|
; extern void i();
|
|
; void h() { i(); }
|
|
; void g() { h(); }
|
|
; void f() { g(); }
|
|
;
|
|
; Compiling this with inlining runs into the
|
|
; "!dbg attachment points at wrong subprogram for function"
|
|
; assertion.
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx"
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
define void @h() #0 !dbg !7 {
|
|
entry:
|
|
call void (...) @i(), !dbg !9
|
|
ret void, !dbg !10
|
|
}
|
|
|
|
declare void @i(...) #1
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
define void @g() #0 !dbg !11 {
|
|
entry:
|
|
; Manually removed !dbg.
|
|
; CHECK: inlinable function call in a function with debug info must have a !dbg location
|
|
call void @h()
|
|
ret void, !dbg !13
|
|
}
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
define void @f() #0 !dbg !14 {
|
|
entry:
|
|
call void @g(), !dbg !15
|
|
ret void, !dbg !16
|
|
}
|
|
|
|
attributes #0 = { nounwind ssp uwtable }
|
|
|
|
; CHECK: warning: ignoring invalid debug info
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4, !5}
|
|
!llvm.ident = !{!6}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.9.0 (trunk 267186)", isOptimized: false, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2)
|
|
!1 = !DIFile(filename: "test.c", directory: "/Volumes/Data/llvm")
|
|
!2 = !{}
|
|
!3 = !{i32 2, !"Dwarf Version", i32 2}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!5 = !{i32 1, !"PIC Level", i32 2}
|
|
!6 = !{!"clang version 3.9.0 (trunk 267186)"}
|
|
!7 = distinct !DISubprogram(name: "h", scope: !1, file: !1, line: 2, type: !8, isLocal: false, isDefinition: true, scopeLine: 2, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!8 = !DISubroutineType(types: !2)
|
|
!9 = !DILocation(line: 2, column: 12, scope: !7)
|
|
!10 = !DILocation(line: 2, column: 17, scope: !7)
|
|
!11 = distinct !DISubprogram(name: "g", scope: !1, file: !1, line: 3, type: !8, isLocal: false, isDefinition: true, scopeLine: 3, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!12 = !DILocation(line: 3, column: 12, scope: !11)
|
|
!13 = !DILocation(line: 3, column: 17, scope: !11)
|
|
!14 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 4, type: !8, isLocal: false, isDefinition: true, scopeLine: 4, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!15 = !DILocation(line: 4, column: 12, scope: !14)
|
|
!16 = !DILocation(line: 4, column: 17, scope: !14)
|