mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +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
92 lines
3.5 KiB
LLVM
92 lines
3.5 KiB
LLVM
; RUN: opt -indvars -S < %s | FileCheck %s
|
|
;
|
|
; When the induction variable is widened by indvars, check that the debug loc
|
|
; associated with the loop increment is correctly propagated.
|
|
; Also, when the exit condition of a loop is rewritten to be a canonical !=
|
|
; comparison, check that the debug loc of the orginal comparison is reused.
|
|
;
|
|
; Test case obtained from the following source code:
|
|
;
|
|
; ////
|
|
; extern int foo(int); // line 1
|
|
;
|
|
; int bar(int X, int *A) {
|
|
; for (int i = 0; i < X; ++i) // line 4
|
|
; A[i] = foo(i);
|
|
;
|
|
; return A[0];
|
|
; }
|
|
; ///
|
|
;
|
|
; Check that the debug location for the loop increment still refers to
|
|
; line 4, column 26, discriminator 2.
|
|
;
|
|
; Check that the canonicalized compare instruction for the loop exit
|
|
; condition still refers to line 4, column 21, discriminator 1.
|
|
;
|
|
; CHECK-LABEL: for.body:
|
|
; CHECK: [[PHI:%[0-9a-zA-Z.]+]] = phi i64 [
|
|
; CHECK-LABEL: for.inc:
|
|
; CHECK: add nuw nsw i64 [[PHI]], 1, !dbg ![[INDVARMD:[0-9]+]]
|
|
; CHECK: icmp ne i64 %{{.+}}, %{{.+}}, !dbg ![[ICMPMD:[0-9]+]]
|
|
; CHECK-DAG: ![[ICMPMD]] = !DILocation(line: 4, column: 21, scope: ![[ICMPSCOPEMD:[0-9]+]]
|
|
; CHECK-DAG: ![[ICMPSCOPEMD]] = !DILexicalBlockFile(scope: !{{[0-9]+}}, file: !{{[0-9]+}}, discriminator: 1)
|
|
; CHECK-DAG: ![[INDVARMD]] = !DILocation(line: 4, column: 26, scope: ![[INDVARSCOPEMD:[0-9]+]])
|
|
; CHECK-DAG: ![[INDVARSCOPEMD]] = !DILexicalBlockFile(scope: !{{[0-9]+}}, file: !{{[0-9]+}}, discriminator: 2)
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
define i32 @bar(i32 %X, i32* %A) !dbg !5 {
|
|
entry:
|
|
%cmp5 = icmp sgt i32 %X, 0, !dbg !7
|
|
br i1 %cmp5, label %for.body.lr.ph, label %for.end, !dbg !9
|
|
|
|
for.body.lr.ph:
|
|
br label %for.body, !dbg !9
|
|
|
|
for.body:
|
|
%i.06 = phi i32 [ 0, %for.body.lr.ph ], [ %inc, %for.inc ]
|
|
%call = call i32 @foo(i32 %i.06), !dbg !10
|
|
%idxprom = sext i32 %i.06 to i64, !dbg !11
|
|
%arrayidx = getelementptr inbounds i32, i32* %A, i64 %idxprom, !dbg !11
|
|
store i32 %call, i32* %arrayidx, align 4, !dbg !12
|
|
br label %for.inc, !dbg !11
|
|
|
|
for.inc:
|
|
%inc = add nsw i32 %i.06, 1, !dbg !13
|
|
%cmp = icmp slt i32 %inc, %X, !dbg !7
|
|
br i1 %cmp, label %for.body, label %for.cond.for.end_crit_edge, !dbg !9, !llvm.loop !15
|
|
|
|
for.cond.for.end_crit_edge:
|
|
br label %for.end, !dbg !9
|
|
|
|
for.end:
|
|
%0 = load i32, i32* %A, align 4, !dbg !17
|
|
ret i32 %0, !dbg !18
|
|
}
|
|
|
|
declare i32 @foo(i32)
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "", isOptimized: false, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2)
|
|
!1 = !DIFile(filename: "test.c", directory: "")
|
|
!2 = !{}
|
|
!3 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!5 = distinct !DISubprogram(name: "bar", scope: !1, file: !1, line: 3, type: !6, isLocal: false, isDefinition: true, scopeLine: 3, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
|
|
!6 = !DISubroutineType(types: !2)
|
|
!7 = !DILocation(line: 4, column: 21, scope: !8)
|
|
!8 = !DILexicalBlockFile(scope: !5, file: !1, discriminator: 1)
|
|
!9 = !DILocation(line: 4, column: 3, scope: !8)
|
|
!10 = !DILocation(line: 5, column: 12, scope: !5)
|
|
!11 = !DILocation(line: 5, column: 5, scope: !5)
|
|
!12 = !DILocation(line: 5, column: 10, scope: !5)
|
|
!13 = !DILocation(line: 4, column: 26, scope: !14)
|
|
!14 = !DILexicalBlockFile(scope: !5, file: !1, discriminator: 2)
|
|
!15 = distinct !{!15, !16}
|
|
!16 = !DILocation(line: 4, column: 3, scope: !5)
|
|
!17 = !DILocation(line: 7, column: 10, scope: !5)
|
|
!18 = !DILocation(line: 7, column: 3, scope: !5)
|