
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
62 lines
2.5 KiB
LLVM
62 lines
2.5 KiB
LLVM
;RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu | FileCheck %s
|
|
;
|
|
; LexicalScope objects were not cleared when a nodebug function is handled in
|
|
; LiveDebugValues. This may lead to an assertion in the constructor for LexicalScope,
|
|
; triggered by LiveDebugValues when another (debug) function is handled later.
|
|
;
|
|
; This minimal example does not leave much to check for, so we just make sure we get
|
|
; reasonable output, preserving function labels and a DBG_VALUE comment.
|
|
;
|
|
; CHECK-LABEL: foo:
|
|
; CHECK-NEXT: Lfunc_begin0:
|
|
; CHECK: Lfunc_end0:
|
|
; CHECK-LABEL: bar:
|
|
; CHECK-NEXT: Lfunc_begin1:
|
|
; CHECK: #DEBUG_VALUE: foo:x <-
|
|
; CHECK: Lfunc_end1:
|
|
|
|
define i32 @foo() {
|
|
entry:
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @bar(i32 %x) !dbg !50 {
|
|
entry:
|
|
tail call void @llvm.dbg.value(metadata i32 %x, i64 0, metadata !41, metadata !43), !dbg !52
|
|
%tobool.i = icmp eq i32 %x, 0
|
|
br i1 %tobool.i, label %foo.exit, label %if.then.i
|
|
|
|
if.then.i:
|
|
br label %foo.exit
|
|
|
|
foo.exit:
|
|
%x.addr.0.i = phi i32 [ 1, %if.then.i ], [ 0, %entry ]
|
|
ret i32 %x.addr.0.i
|
|
}
|
|
|
|
declare void @llvm.dbg.value(metadata, i64, metadata, metadata)
|
|
|
|
!llvm.dbg.cu = !{!0, !3}
|
|
!llvm.ident = !{!5, !5}
|
|
!llvm.module.flags = !{!6, !7}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
|
|
!1 = !DIFile(filename: "foo.cpp", directory: "c:\temp")
|
|
!2 = !{}
|
|
!3 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !4, producer: "", isOptimized: true, runtimeVersion: 0, emissionKind: NoDebug, enums: !2)
|
|
!4 = !DIFile(filename: "bar.cpp", directory: "c:\temp")
|
|
!5 = !{!"clang version 4.0.0"}
|
|
!6 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!7 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!36 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !37, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !40)
|
|
!37 = !DISubroutineType(types: !38)
|
|
!38 = !{!39, !39}
|
|
!39 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
|
|
!40 = !{!41}
|
|
!41 = !DILocalVariable(name: "x", arg: 1, scope: !36, file: !1, line: 1, type: !39)
|
|
!43 = !DIExpression()
|
|
!50 = distinct !DISubprogram(name: "bar", scope: !4, file: !4, line: 3, type: !51, isLocal: false, isDefinition: true, scopeLine: 3, flags: DIFlagPrototyped, isOptimized: true, unit: !3, retainedNodes: !2)
|
|
!51 = !DISubroutineType(types: !2)
|
|
!52 = !DILocation(line: 1, scope: !36, inlinedAt: !53)
|
|
!53 = distinct !DILocation(line: 5, scope: !50)
|