2013-09-06 18:46:00 +00:00
|
|
|
; REQUIRES: object-emission
|
|
|
|
|
2014-01-30 01:39:17 +00:00
|
|
|
; RUN: %llc_dwarf -filetype=obj -O0 < %s > %t
|
2013-09-06 18:46:00 +00:00
|
|
|
; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
|
|
|
|
; CHECK: [[TYPE:.*]]: DW_TAG_structure_type
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle containing type of a struct being a type identifier.
|
2013-09-06 18:46:00 +00:00
|
|
|
; CHECK-NEXT: DW_AT_containing_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]})
|
2013-10-10 18:13:17 +00:00
|
|
|
; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "C")
|
2013-10-10 18:40:01 +00:00
|
|
|
|
|
|
|
; Make sure we correctly handle context of a subprogram being a type identifier.
|
2013-09-07 00:04:05 +00:00
|
|
|
; CHECK: [[SP:.*]]: DW_TAG_subprogram
|
2013-10-10 18:40:01 +00:00
|
|
|
; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "foo")
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle containing type of a subprogram being a type identifier.
|
2013-09-07 00:04:05 +00:00
|
|
|
; CHECK: DW_AT_containing_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]})
|
2013-10-10 18:40:01 +00:00
|
|
|
; CHECK: DW_TAG_formal_parameter
|
|
|
|
; CHECK: NULL
|
|
|
|
; CHECK: NULL
|
|
|
|
|
2013-10-08 22:56:31 +00:00
|
|
|
; CHECK: [[TYPE2:.*]]: DW_TAG_structure_type
|
2013-10-11 18:50:00 +00:00
|
|
|
; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "bar")
|
2013-10-08 23:49:38 +00:00
|
|
|
; CHECK: DW_TAG_structure_type
|
|
|
|
; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "D")
|
|
|
|
; CHECK: DW_TAG_member
|
|
|
|
; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "a")
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle context of a struct being a type identifier.
|
2013-10-09 00:17:04 +00:00
|
|
|
; CHECK: DW_TAG_structure_type
|
|
|
|
; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "Nested")
|
2013-10-09 18:10:55 +00:00
|
|
|
; CHECK: DW_TAG_structure_type
|
|
|
|
; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "Nested2")
|
|
|
|
; CHECK-NEXT: DW_AT_declaration [DW_FORM_flag] (0x01)
|
2013-10-09 19:46:28 +00:00
|
|
|
; CHECK: DW_TAG_structure_type
|
|
|
|
; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "virt<bar>")
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle type of a template_type being a type identifier.
|
2013-10-09 19:46:28 +00:00
|
|
|
; CHECK: DW_TAG_template_type_parameter
|
|
|
|
; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
|
|
|
|
; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "T")
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle derived-from of a typedef being a type identifier.
|
2013-10-08 23:49:38 +00:00
|
|
|
; CHECK: DW_TAG_typedef
|
|
|
|
; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
|
|
|
|
; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "baz2")
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle derived-from of a pointer type being a type identifier.
|
2013-10-08 20:06:43 +00:00
|
|
|
; CHECK: DW_TAG_pointer_type
|
2013-10-09 19:46:28 +00:00
|
|
|
; CHECK: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]})
|
2013-10-08 22:56:31 +00:00
|
|
|
; CHECK: DW_TAG_typedef
|
|
|
|
; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
|
2013-10-08 23:49:38 +00:00
|
|
|
; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "baz")
|
2013-10-10 18:13:17 +00:00
|
|
|
; Make sure we correctly handle derived-from of an array type being a type identifier.
|
2013-10-08 23:28:51 +00:00
|
|
|
; CHECK: DW_TAG_array_type
|
|
|
|
; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
|
2013-09-06 18:46:00 +00:00
|
|
|
; IR generated from clang -g with the following source:
|
|
|
|
; struct C {
|
|
|
|
; virtual void foo();
|
|
|
|
; };
|
|
|
|
; void C::foo() {
|
|
|
|
; }
|
2013-10-08 22:56:31 +00:00
|
|
|
;
|
|
|
|
; struct bar { };
|
|
|
|
; typedef bar baz;
|
2013-10-08 23:49:38 +00:00
|
|
|
; struct D {
|
|
|
|
; typedef bar baz2;
|
|
|
|
; static int a;
|
2013-10-09 00:17:04 +00:00
|
|
|
; struct Nested { };
|
2013-10-09 18:10:55 +00:00
|
|
|
; struct Nested2 { };
|
2013-10-09 19:46:28 +00:00
|
|
|
; template <typename T>
|
|
|
|
; struct virt {
|
|
|
|
; T* values;
|
|
|
|
; };
|
2013-10-08 23:49:38 +00:00
|
|
|
; };
|
2013-10-08 22:56:31 +00:00
|
|
|
; void test() {
|
|
|
|
; baz B;
|
2013-10-08 23:28:51 +00:00
|
|
|
; bar A[3];
|
2013-10-08 23:49:38 +00:00
|
|
|
; D::baz2 B2;
|
2013-10-09 00:17:04 +00:00
|
|
|
; D::Nested e;
|
2013-10-09 18:10:55 +00:00
|
|
|
; D::Nested2 *p;
|
2013-10-09 19:46:28 +00:00
|
|
|
; D::virt<bar> t;
|
2013-10-08 22:56:31 +00:00
|
|
|
; }
|
2013-09-06 18:46:00 +00:00
|
|
|
|
|
|
|
%struct.C = type { i32 (...)** }
|
2013-10-08 22:56:31 +00:00
|
|
|
%struct.bar = type { i8 }
|
2013-10-09 00:17:04 +00:00
|
|
|
%"struct.D::Nested" = type { i8 }
|
2013-10-09 18:10:55 +00:00
|
|
|
%"struct.D::Nested2" = type { i8 }
|
2013-10-09 19:46:28 +00:00
|
|
|
%"struct.D::virt" = type { %struct.bar* }
|
2013-09-06 18:46:00 +00:00
|
|
|
|
|
|
|
@_ZTV1C = unnamed_addr constant [3 x i8*] [i8* null, i8* bitcast ({ i8*, i8* }* @_ZTI1C to i8*), i8* bitcast (void (%struct.C*)* @_ZN1C3fooEv to i8*)]
|
|
|
|
@_ZTVN10__cxxabiv117__class_type_infoE = external global i8*
|
|
|
|
@_ZTS1C = constant [3 x i8] c"1C\00"
|
|
|
|
@_ZTI1C = unnamed_addr constant { i8*, i8* } { i8* bitcast (i8** getelementptr inbounds (i8** @_ZTVN10__cxxabiv117__class_type_infoE, i64 2) to i8*), i8* getelementptr inbounds ([3 x i8]* @_ZTS1C, i32 0, i32 0) }
|
|
|
|
|
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
|
|
define void @_ZN1C3fooEv(%struct.C* %this) unnamed_addr #0 align 2 {
|
|
|
|
entry:
|
|
|
|
%this.addr = alloca %struct.C*, align 8
|
|
|
|
store %struct.C* %this, %struct.C** %this.addr, align 8
|
2014-10-03 20:01:09 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.C** %this.addr}, metadata !36, metadata !{metadata !"0x102"}), !dbg !38
|
2013-09-06 18:46:00 +00:00
|
|
|
%this1 = load %struct.C** %this.addr
|
2013-10-09 19:46:28 +00:00
|
|
|
ret void, !dbg !39
|
2013-09-06 18:46:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
; 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
|
2013-09-06 18:46:00 +00:00
|
|
|
|
2013-10-08 22:56:31 +00:00
|
|
|
; Function Attrs: nounwind ssp uwtable
|
|
|
|
define void @_Z4testv() #0 {
|
|
|
|
entry:
|
|
|
|
%B = alloca %struct.bar, align 1
|
2013-10-08 23:28:51 +00:00
|
|
|
%A = alloca [3 x %struct.bar], align 1
|
2013-10-08 23:49:38 +00:00
|
|
|
%B2 = alloca %struct.bar, align 1
|
2013-10-09 00:17:04 +00:00
|
|
|
%e = alloca %"struct.D::Nested", align 1
|
2013-10-09 18:10:55 +00:00
|
|
|
%p = alloca %"struct.D::Nested2"*, align 8
|
2013-10-09 19:46:28 +00:00
|
|
|
%t = alloca %"struct.D::virt", align 8
|
2014-10-03 20:01:09 +00:00
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.bar* %B}, metadata !40, metadata !{metadata !"0x102"}), !dbg !42
|
|
|
|
call void @llvm.dbg.declare(metadata !{[3 x %struct.bar]* %A}, metadata !43, metadata !{metadata !"0x102"}), !dbg !47
|
|
|
|
call void @llvm.dbg.declare(metadata !{%struct.bar* %B2}, metadata !48, metadata !{metadata !"0x102"}), !dbg !50
|
|
|
|
call void @llvm.dbg.declare(metadata !{%"struct.D::Nested"* %e}, metadata !51, metadata !{metadata !"0x102"}), !dbg !52
|
|
|
|
call void @llvm.dbg.declare(metadata !{%"struct.D::Nested2"** %p}, metadata !53, metadata !{metadata !"0x102"}), !dbg !55
|
|
|
|
call void @llvm.dbg.declare(metadata !{%"struct.D::virt"* %t}, metadata !56, metadata !{metadata !"0x102"}), !dbg !57
|
2013-10-09 19:46:28 +00:00
|
|
|
ret void, !dbg !58
|
2013-10-08 22:56:31 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 18:46:00 +00:00
|
|
|
attributes #0 = { nounwind ssp uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
|
|
|
attributes #1 = { nounwind readnone }
|
|
|
|
|
|
|
|
!llvm.dbg.cu = !{!0}
|
2013-11-22 21:49:45 +00:00
|
|
|
!llvm.module.flags = !{!35, !59}
|
2013-09-06 18:46:00 +00:00
|
|
|
|
2014-10-03 20:01:09 +00:00
|
|
|
!0 = metadata !{metadata !"0x11\004\00clang version 3.4\000\00\000\00\000", metadata !1, metadata !2, metadata !3, metadata !30, metadata !2, metadata !2} ; [ DW_TAG_compile_unit ] [tmp.cpp] [DW_LANG_C_plus_plus]
|
2013-09-06 18:46:00 +00:00
|
|
|
!1 = metadata !{metadata !"tmp.cpp", metadata !"."}
|
2014-02-04 01:23:52 +00:00
|
|
|
!2 = metadata !{}
|
2013-10-09 19:46:28 +00:00
|
|
|
!3 = metadata !{metadata !4, metadata !18, metadata !19, metadata !22, metadata !23, metadata !24}
|
2014-10-03 20:01:09 +00:00
|
|
|
!4 = metadata !{metadata !"0x13\00C\001\0064\0064\000\000\000", metadata !1, null, null, metadata !5, metadata !"_ZTS1C", null, metadata !"_ZTS1C"} ; [ DW_TAG_structure_type ] [C] [line 1, size 64, align 64, offset 0] [def] [from ]
|
2013-09-06 18:46:00 +00:00
|
|
|
!5 = metadata !{metadata !6, metadata !13}
|
2014-10-03 20:01:09 +00:00
|
|
|
!6 = metadata !{metadata !"0xd\00_vptr$C\000\0064\000\000\0064", metadata !1, metadata !7, metadata !8} ; [ DW_TAG_member ] [_vptr$C] [line 0, size 64, align 0, offset 0] [artificial] [from ]
|
|
|
|
!7 = metadata !{metadata !"0x29", metadata !1} ; [ DW_TAG_file_type ] [tmp.cpp]
|
|
|
|
!8 = metadata !{metadata !"0xf\00\000\0064\000\000\000", null, null, metadata !9} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 0, offset 0] [from __vtbl_ptr_type]
|
|
|
|
!9 = metadata !{metadata !"0xf\00__vtbl_ptr_type\000\0064\000\000\000", null, null, metadata !10} ; [ DW_TAG_pointer_type ] [__vtbl_ptr_type] [line 0, size 64, align 0, offset 0] [from ]
|
|
|
|
!10 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !11, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2013-09-06 18:46:00 +00:00
|
|
|
!11 = metadata !{metadata !12}
|
2014-10-03 20:01:09 +00:00
|
|
|
!12 = 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]
|
|
|
|
!13 = metadata !{metadata !"0x2e\00foo\00foo\00_ZN1C3fooEv\002\000\000\001\006\00256\000\002", metadata !1, metadata !"_ZTS1C", metadata !14, metadata !"_ZTS1C", null, null, i32 0, metadata !17} ; [ DW_TAG_subprogram ] [line 2] [foo]
|
|
|
|
!14 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !15, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2013-09-06 18:46:00 +00:00
|
|
|
!15 = metadata !{null, metadata !16}
|
2014-10-03 20:01:09 +00:00
|
|
|
!16 = metadata !{metadata !"0xf\00\000\0064\0064\000\001088", null, null, metadata !"_ZTS1C"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS1C]
|
2013-09-06 18:46:00 +00:00
|
|
|
!17 = metadata !{i32 786468}
|
2014-10-03 20:01:09 +00:00
|
|
|
!18 = metadata !{metadata !"0x13\00bar\007\008\008\000\000\000", metadata !1, null, null, metadata !2, null, null, metadata !"_ZTS3bar"} ; [ DW_TAG_structure_type ] [bar] [line 7, size 8, align 8, offset 0] [def] [from ]
|
|
|
|
!19 = metadata !{metadata !"0x13\00D\009\008\008\000\000\000", metadata !1, null, null, metadata !20, null, null, metadata !"_ZTS1D"} ; [ DW_TAG_structure_type ] [D] [line 9, size 8, align 8, offset 0] [def] [from ]
|
2013-10-08 23:49:38 +00:00
|
|
|
!20 = metadata !{metadata !21}
|
2014-10-03 20:01:09 +00:00
|
|
|
!21 = metadata !{metadata !"0xd\00a\0011\000\000\000\004096", metadata !1, metadata !"_ZTS1D", metadata !12, null} ; [ DW_TAG_member ] [a] [line 11, size 0, align 0, offset 0] [static] [from int]
|
|
|
|
!22 = metadata !{metadata !"0x13\00Nested\0012\008\008\000\000\000", metadata !1, metadata !"_ZTS1D", null, metadata !2, null, null, metadata !"_ZTSN1D6NestedE"} ; [ DW_TAG_structure_type ] [Nested] [line 12, size 8, align 8, offset 0] [def] [from ]
|
|
|
|
!23 = metadata !{metadata !"0x13\00Nested2\0013\000\000\000\004\000", metadata !1, metadata !"_ZTS1D", null, null, null, null, metadata !"_ZTSN1D7Nested2E"} ; [ DW_TAG_structure_type ] [Nested2] [line 13, size 0, align 0, offset 0] [decl] [from ]
|
|
|
|
!24 = metadata !{metadata !"0x13\00virt<bar>\0015\0064\0064\000\000\000", metadata !1, metadata !"_ZTS1D", null, metadata !25, null, metadata !28, metadata !"_ZTSN1D4virtI3barEE"} ; [ DW_TAG_structure_type ] [virt<bar>] [line 15, size 64, align 64, offset 0] [def] [from ]
|
2013-10-09 19:46:28 +00:00
|
|
|
!25 = metadata !{metadata !26}
|
2014-10-03 20:01:09 +00:00
|
|
|
!26 = metadata !{metadata !"0xd\00values\0016\0064\0064\000\000", metadata !1, metadata !"_ZTSN1D4virtI3barEE", metadata !27} ; [ DW_TAG_member ] [values] [line 16, size 64, align 64, offset 0] [from ]
|
|
|
|
!27 = metadata !{metadata !"0xf\00\000\0064\0064\000\000", null, null, metadata !"_ZTS3bar"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTS3bar]
|
2013-10-09 19:46:28 +00:00
|
|
|
!28 = metadata !{metadata !29}
|
2014-10-03 20:01:09 +00:00
|
|
|
!29 = metadata !{metadata !"0x2f\00T\000\000", null, metadata !"_ZTS3bar", null} ; [ DW_TAG_template_type_parameter ]
|
2013-10-09 19:46:28 +00:00
|
|
|
!30 = metadata !{metadata !31, metadata !32}
|
2014-10-03 20:01:09 +00:00
|
|
|
!31 = metadata !{metadata !"0x2e\00foo\00foo\00_ZN1C3fooEv\004\000\001\000\006\00256\000\004", metadata !1, null, metadata !14, null, void (%struct.C*)* @_ZN1C3fooEv, null, metadata !13, metadata !2} ; [ DW_TAG_subprogram ] [line 4] [def] [foo]
|
|
|
|
!32 = metadata !{metadata !"0x2e\00test\00test\00_Z4testv\0020\000\001\000\006\00256\000\0020", metadata !1, metadata !7, metadata !33, null, void ()* @_Z4testv, null, null, metadata !2} ; [ DW_TAG_subprogram ] [line 20] [def] [test]
|
|
|
|
!33 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !34, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
|
2013-10-09 19:46:28 +00:00
|
|
|
!34 = metadata !{null}
|
|
|
|
!35 = metadata !{i32 2, metadata !"Dwarf Version", i32 2}
|
2014-10-03 20:01:09 +00:00
|
|
|
!36 = metadata !{metadata !"0x101\00this\0016777216\001088", metadata !31, null, metadata !37} ; [ DW_TAG_arg_variable ] [this] [line 0]
|
|
|
|
!37 = metadata !{metadata !"0xf\00\000\0064\0064\000\000", null, null, metadata !"_ZTS1C"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTS1C]
|
2013-10-09 19:46:28 +00:00
|
|
|
!38 = metadata !{i32 0, i32 0, metadata !31, null}
|
|
|
|
!39 = metadata !{i32 5, i32 0, metadata !31, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!40 = metadata !{metadata !"0x100\00B\0021\000", metadata !32, metadata !7, metadata !41} ; [ DW_TAG_auto_variable ] [B] [line 21]
|
|
|
|
!41 = metadata !{metadata !"0x16\00baz\008\000\000\000\000", metadata !1, null, metadata !"_ZTS3bar"} ; [ DW_TAG_typedef ] [baz] [line 8, size 0, align 0, offset 0] [from _ZTS3bar]
|
2013-10-09 19:46:28 +00:00
|
|
|
!42 = metadata !{i32 21, i32 0, metadata !32, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!43 = metadata !{metadata !"0x100\00A\0022\000", metadata !32, metadata !7, metadata !44} ; [ DW_TAG_auto_variable ] [A] [line 22]
|
|
|
|
!44 = metadata !{metadata !"0x1\00\000\0024\008\000\000", null, null, metadata !"_ZTS3bar", metadata !45, i32 0, null, null, null} ; [ DW_TAG_array_type ] [line 0, size 24, align 8, offset 0] [from _ZTS3bar]
|
2013-10-09 19:46:28 +00:00
|
|
|
!45 = metadata !{metadata !46}
|
2014-10-03 20:01:09 +00:00
|
|
|
!46 = metadata !{metadata !"0x21\000\003"} ; [ DW_TAG_subrange_type ] [0, 2]
|
2013-10-09 19:46:28 +00:00
|
|
|
!47 = metadata !{i32 22, i32 0, metadata !32, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!48 = metadata !{metadata !"0x100\00B2\0023\000", metadata !32, metadata !7, metadata !49} ; [ DW_TAG_auto_variable ] [B2] [line 23]
|
|
|
|
!49 = metadata !{metadata !"0x16\00baz2\0010\000\000\000\000", metadata !1, metadata !"_ZTS1D", metadata !"_ZTS3bar"} ; [ DW_TAG_typedef ] [baz2] [line 10, size 0, align 0, offset 0] [from _ZTS3bar]
|
2013-10-09 19:46:28 +00:00
|
|
|
!50 = metadata !{i32 23, i32 0, metadata !32, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!51 = metadata !{metadata !"0x100\00e\0024\000", metadata !32, metadata !7, metadata !22} ; [ DW_TAG_auto_variable ] [e] [line 24]
|
2013-10-09 19:46:28 +00:00
|
|
|
!52 = metadata !{i32 24, i32 0, metadata !32, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!53 = metadata !{metadata !"0x100\00p\0025\000", metadata !32, metadata !7, metadata !54} ; [ DW_TAG_auto_variable ] [p] [line 25]
|
|
|
|
!54 = metadata !{metadata !"0xf\00\000\0064\0064\000\000", null, null, metadata !"_ZTSN1D7Nested2E"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTSN1D7Nested2E]
|
2013-10-09 19:46:28 +00:00
|
|
|
!55 = metadata !{i32 25, i32 0, metadata !32, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!56 = metadata !{metadata !"0x100\00t\0026\000", metadata !32, metadata !7, metadata !24} ; [ DW_TAG_auto_variable ] [t] [line 26]
|
2013-10-09 19:46:28 +00:00
|
|
|
!57 = metadata !{i32 26, i32 0, metadata !32, null}
|
|
|
|
!58 = metadata !{i32 27, i32 0, metadata !32, null}
|
2014-10-03 20:01:09 +00:00
|
|
|
!59 = metadata !{i32 1, metadata !"Debug Info Version", i32 2}
|