2014-04-14 21:16:04 +00:00
|
|
|
; RUN: llc -mtriple=x86_64-apple-macosx %s -o %t -filetype=obj
|
|
|
|
; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
|
|
|
|
;
|
|
|
|
; struct A {
|
|
|
|
; A(int i);
|
|
|
|
; ~A();
|
|
|
|
; };
|
|
|
|
;
|
|
|
|
; A::~A() {}
|
|
|
|
;
|
|
|
|
; void foo() {
|
|
|
|
; A a(1);
|
|
|
|
; }
|
|
|
|
;
|
|
|
|
; rdar://problem/16362674
|
|
|
|
;
|
|
|
|
; Test that we do not emit a linkage name for the declaration of a destructor.
|
|
|
|
; Test that we do emit a linkage name for a specific instance of it.
|
|
|
|
|
|
|
|
; CHECK: DW_TAG_subprogram
|
2014-05-21 18:04:33 +00:00
|
|
|
; CHECK: [[A_DTOR:.*]]: DW_TAG_subprogram
|
2014-04-14 21:16:04 +00:00
|
|
|
; CHECK: DW_AT_name {{.*}} "~A"
|
|
|
|
; CHECK-NOT: DW_AT_MIPS_linkage_name
|
|
|
|
; CHECK: DW_TAG_subprogram
|
2014-05-23 21:11:46 +00:00
|
|
|
; CHECK-NOT: DW_TAG
|
|
|
|
; CHECK: DW_AT_MIPS_linkage_name {{.*}} "_ZN1AD2Ev"
|
|
|
|
; CHECK-NOT: DW_TAG
|
|
|
|
; CHECK: DW_AT_specification {{.*}}[[A_DTOR]]
|
2014-04-14 21:16:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
target triple = "x86_64-apple-macosx10.9.0"
|
|
|
|
|
|
|
|
%struct.A = type { i8 }
|
|
|
|
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
|
|
define void @_ZN1AD2Ev(%struct.A* %this) unnamed_addr #0 align 2 {
|
|
|
|
entry:
|
|
|
|
%this.addr = alloca %struct.A*, align 8
|
|
|
|
store %struct.A* %this, %struct.A** %this.addr, align 8
|
2014-10-03 20:01:09 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.A** %this.addr}, metadata !26, metadata !{metadata !"0x102"}), !dbg !28
|
2014-04-14 21:16:04 +00:00
|
|
|
%this1 = load %struct.A** %this.addr
|
|
|
|
ret void, !dbg !29
|
|
|
|
}
|
|
|
|
|
|
|
|
; Function Attrs: nounwind readnone
|
Move the complex address expression out of DIVariable and into an extra
argument of the llvm.dbg.declare/llvm.dbg.value intrinsics.
Previously, DIVariable was a variable-length field that has an optional
reference to a Metadata array consisting of a variable number of
complex address expressions. In the case of OpPiece expressions this is
wasting a lot of storage in IR, because when an aggregate type is, e.g.,
SROA'd into all of its n individual members, the IR will contain n copies
of the DIVariable, all alike, only differing in the complex address
reference at the end.
By making the complex address into an extra argument of the
dbg.value/dbg.declare intrinsics, all of the pieces can reference the
same variable and the complex address expressions can be uniqued across
the CU, too.
Down the road, this will allow us to move other flags, such as
"indirection" out of the DIVariable, too.
The new intrinsics look like this:
declare void @llvm.dbg.declare(metadata %storage, metadata %var, metadata %expr)
declare void @llvm.dbg.value(metadata %storage, i64 %offset, metadata %var, metadata %expr)
This patch adds a new LLVM-local tag to DIExpressions, so we can detect
and pretty-print DIExpression metadata nodes.
What this patch doesn't do:
This patch does not touch the "Indirect" field in DIVariable; but moving
that into the expression would be a natural next step.
http://reviews.llvm.org/D4919
rdar://problem/17994491
Thanks to dblaikie and dexonsmith for reviewing this patch!
Note: I accidentally committed a bogus older version of this patch previously.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218787 91177308-0d34-0410-b5e6-96231b3b80d8
2014-10-01 18:55:02 +00:00
|
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
|
2014-04-14 21:16:04 +00:00
|
|
|
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
|
|
define void @_ZN1AD1Ev(%struct.A* %this) unnamed_addr #0 align 2 {
|
|
|
|
entry:
|
|
|
|
%this.addr = alloca %struct.A*, align 8
|
|
|
|
store %struct.A* %this, %struct.A** %this.addr, align 8
|
2014-10-03 20:01:09 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.A** %this.addr}, metadata !30, metadata !{metadata !"0x102"}), !dbg !31
|
2014-04-14 21:16:04 +00:00
|
|
|
%this1 = load %struct.A** %this.addr
|
|
|
|
call void @_ZN1AD2Ev(%struct.A* %this1), !dbg !32
|
|
|
|
ret void, !dbg !33
|
|
|
|
}
|
|
|
|
|
|
|
|
; Function Attrs: ssp uwtable
|
|
|
|
define void @_Z3foov() #2 {
|
|
|
|
entry:
|
|
|
|
%a = alloca %struct.A, align 1
|
2014-10-03 20:01:09 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.A* %a}, metadata !34, metadata !{metadata !"0x102"}), !dbg !35
|
2014-04-14 21:16:04 +00:00
|
|
|
call void @_ZN1AC1Ei(%struct.A* %a, i32 1), !dbg !35
|
|
|
|
call void @_ZN1AD1Ev(%struct.A* %a), !dbg !36
|
|
|
|
ret void, !dbg !36
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @_ZN1AC1Ei(%struct.A*, i32)
|
|
|
|
|
|
|
|
attributes #0 = { nounwind ssp uwtable }
|
|
|
|
attributes #1 = { nounwind readnone }
|
|
|
|
attributes #2 = { ssp uwtable }
|
|
|
|
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
|
|
!llvm.module.flags = !{!23, !24}
|
|
|
|
!llvm.ident = !{!25}
|
|
|
|
|
2014-10-03 20:01:09 +00:00
|
|
|
!0 = metadata !{metadata !"0x11\004\00clang version 3.5.0 \000\00\000\00\001", metadata !1, metadata !2, metadata !3, metadata !16, metadata !2, metadata !2} ; [ DW_TAG_compile_unit ] [linkage-name.cpp] [DW_LANG_C_plus_plus]
|
2014-04-14 21:16:04 +00:00
|
|
|
!1 = metadata !{metadata !"linkage-name.cpp", metadata !""}
|
|
|
|
!2 = metadata !{}
|
|
|
|
!3 = metadata !{metadata !4}
|
2014-10-03 20:01:09 +00:00
|
|
|
!4 = metadata !{metadata !"0x13\00A\001\008\008\000\000\000", metadata !1, null, null, metadata !5, null, null, metadata !"_ZTS1A"} ; [ DW_TAG_structure_type ] [A] [line 1, size 8, align 8, offset 0] [def] [from ]
|
2014-04-14 21:16:04 +00:00
|
|
|
!5 = metadata !{metadata !6, metadata !12}
|
2014-10-03 20:01:09 +00:00
|
|
|
!6 = metadata !{metadata !"0x2e\00A\00A\00\002\000\000\000\006\00256\000\002", metadata !1, metadata !"_ZTS1A", metadata !7, null, null, null, i32 0, metadata !11} ; [ DW_TAG_subprogram ] [line 2] [A]
|
|
|
|
!7 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !8, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2014-04-14 21:16:04 +00:00
|
|
|
!8 = metadata !{null, metadata !9, metadata !10}
|
2014-10-03 20:01:09 +00:00
|
|
|
!9 = metadata !{metadata !"0xf\00\000\0064\0064\000\001088", null, null, metadata !"_ZTS1A"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS1A]
|
|
|
|
!10 = metadata !{metadata !"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
|
2014-04-14 21:16:04 +00:00
|
|
|
!11 = metadata !{i32 786468}
|
2014-10-03 20:01:09 +00:00
|
|
|
!12 = metadata !{metadata !"0x2e\00~A\00~A\00\003\000\000\000\006\00256\000\003", metadata !1, metadata !"_ZTS1A", metadata !13, null, null, null, i32 0, metadata !15} ; [ DW_TAG_subprogram ] [line 3] [~A]
|
|
|
|
!13 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !14, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2014-04-14 21:16:04 +00:00
|
|
|
!14 = metadata !{null, metadata !9}
|
|
|
|
!15 = metadata !{i32 786468}
|
|
|
|
!16 = metadata !{metadata !17, metadata !18, metadata !19}
|
2014-10-03 20:01:09 +00:00
|
|
|
!17 = metadata !{metadata !"0x2e\00~A\00~A\00_ZN1AD2Ev\006\000\001\000\006\00256\000\006", metadata !1, metadata !"_ZTS1A", metadata !13, null, void (%struct.A*)* @_ZN1AD2Ev, null, metadata !12, metadata !2} ; [ DW_TAG_subprogram ] [line 6] [def] [~A]
|
|
|
|
!18 = metadata !{metadata !"0x2e\00~A\00~A\00_ZN1AD1Ev\006\000\001\000\006\00256\000\006", metadata !1, metadata !"_ZTS1A", metadata !13, null, void (%struct.A*)* @_ZN1AD1Ev, null, metadata !12, metadata !2} ; [ DW_TAG_subprogram ] [line 6] [def] [~A]
|
|
|
|
!19 = metadata !{metadata !"0x2e\00foo\00foo\00_Z3foov\0010\000\001\000\006\00256\000\0010", metadata !1, metadata !20, metadata !21, null, void ()* @_Z3foov, null, null, metadata !2} ; [ DW_TAG_subprogram ] [line 10] [def] [foo]
|
|
|
|
!20 = metadata !{metadata !"0x29", metadata !1} ; [ DW_TAG_file_type ] [linkage-name.cpp]
|
|
|
|
!21 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !22, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2014-04-14 21:16:04 +00:00
|
|
|
!22 = metadata !{null}
|
|
|
|
!23 = metadata !{i32 2, metadata !"Dwarf Version", i32 2}
|
2014-10-03 20:01:09 +00:00
|
|
|
!24 = metadata !{i32 1, metadata !"Debug Info Version", i32 2}
|
2014-04-14 21:16:04 +00:00
|
|
|
!25 = metadata !{metadata !"clang version 3.5.0 "}
|
2014-10-03 20:01:09 +00:00
|
|
|
!26 = metadata !{metadata !"0x101\00this\0016777216\001088", metadata !17, null, metadata !27} ; [ DW_TAG_arg_variable ] [this] [line 0]
|
|
|
|
!27 = metadata !{metadata !"0xf\00\000\0064\0064\000\000", null, null, metadata !"_ZTS1A"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTS1A]
|
2014-04-14 21:16:04 +00:00
|
|
|
!28 = metadata !{i32 0, i32 0, metadata !17, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!29 = metadata !{i32 8, i32 0, metadata !17, null}
|
|
|
|
!30 = metadata !{metadata !"0x101\00this\0016777216\001088", metadata !18, null, metadata !27} ; [ DW_TAG_arg_variable ] [this] [line 0]
|
2014-04-14 21:16:04 +00:00
|
|
|
!31 = metadata !{i32 0, i32 0, metadata !18, null}
|
|
|
|
!32 = metadata !{i32 6, i32 0, metadata !18, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!33 = metadata !{i32 8, i32 0, metadata !18, null}
|
|
|
|
!34 = metadata !{metadata !"0x100\00a\0011\000", metadata !19, metadata !20, metadata !"_ZTS1A"} ; [ DW_TAG_auto_variable ] [a] [line 11]
|
2014-04-14 21:16:04 +00:00
|
|
|
!35 = metadata !{i32 11, i32 0, metadata !19, null}
|
|
|
|
!36 = metadata !{i32 12, i32 0, metadata !19, null}
|