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
84 lines
2.9 KiB
LLVM
84 lines
2.9 KiB
LLVM
; RUN: opt -mem2reg -instcombine %s -o - -S | FileCheck %s
|
|
;
|
|
; Test that a dbg.declare describing am alloca with volatile
|
|
; load/stores is not lowered into a dbg.value, since the alloca won't
|
|
; be elided anyway.
|
|
;
|
|
; Generated from:
|
|
;
|
|
; unsigned long long g();
|
|
; void h(unsigned long long);
|
|
; void f() {
|
|
; volatile unsigned long long v = g();
|
|
; if (v == 0)
|
|
; g();
|
|
; h(v);
|
|
; }
|
|
|
|
; CHECK: alloca i64
|
|
; CHECK-NOT: call void @llvm.dbg.value
|
|
; CHECK: call void @llvm.dbg.declare
|
|
; CHECK-NOT: call void @llvm.dbg.value
|
|
|
|
source_filename = "volatile.c"
|
|
|
|
; Function Attrs: nounwind optsize ssp uwtable
|
|
define void @f() local_unnamed_addr #0 !dbg !8 {
|
|
%1 = alloca i64, align 8
|
|
%2 = bitcast i64* %1 to i8*, !dbg !15
|
|
call void @llvm.lifetime.start.p0i8(i64 8, i8* %2), !dbg !15
|
|
call void @llvm.dbg.declare(metadata i64* %1, metadata !12, metadata !DIExpression()), !dbg !15
|
|
%3 = call i64 (...) @g() #4, !dbg !15
|
|
store volatile i64 %3, i64* %1, align 8, !dbg !15
|
|
%4 = load volatile i64, i64* %1, align 8, !dbg !15
|
|
%5 = icmp eq i64 %4, 0, !dbg !15
|
|
br i1 %5, label %6, label %8, !dbg !15
|
|
|
|
; <label>:6: ; preds = %0
|
|
%7 = call i64 (...) @g() #4, !dbg !15
|
|
br label %8, !dbg !15
|
|
|
|
; <label>:8: ; preds = %6, %0
|
|
%9 = load volatile i64, i64* %1, align 8, !dbg !15
|
|
call void @h(i64 %9) #4, !dbg !15
|
|
call void @llvm.lifetime.end.p0i8(i64 8, i8* %2), !dbg !15
|
|
ret void, !dbg !15
|
|
}
|
|
|
|
; Function Attrs: argmemonly nounwind
|
|
declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #1
|
|
|
|
; Function Attrs: nounwind readnone speculatable
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata) #2
|
|
|
|
; Function Attrs: optsize
|
|
declare i64 @g(...) local_unnamed_addr #3
|
|
|
|
; Function Attrs: optsize
|
|
declare void @h(i64) local_unnamed_addr #3
|
|
|
|
; Function Attrs: argmemonly nounwind
|
|
declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #1
|
|
|
|
attributes #0 = { nounwind optsize ssp uwtable }
|
|
attributes #1 = { argmemonly nounwind }
|
|
attributes #2 = { nounwind readnone speculatable }
|
|
attributes #3 = { optsize }
|
|
attributes #4 = { optsize }
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
!llvm.module.flags = !{!3, !4}
|
|
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug)
|
|
!1 = !DIFile(filename: "volatile.c", directory: "/")
|
|
!3 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!8 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 3, type: !9, isLocal: false, isDefinition: true, scopeLine: 3, isOptimized: true, unit: !0, retainedNodes: !11)
|
|
!9 = !DISubroutineType(types: !10)
|
|
!10 = !{null}
|
|
!11 = !{!12}
|
|
!12 = !DILocalVariable(name: "v", scope: !8, file: !1, line: 4, type: !13)
|
|
!13 = !DIDerivedType(tag: DW_TAG_volatile_type, baseType: !14)
|
|
!14 = !DIBasicType(name: "long long unsigned int", size: 64, encoding: DW_ATE_unsigned)
|
|
!15 = !DILocation(line: 4, column: 3, scope: !8)
|