IR: Give 'DI' prefix to debug info metadata
[oota-llvm.git] / test / DebugInfo / X86 / DW_TAG_friend.ll
1 ; RUN: llc -mtriple=x86_64-apple-darwin %s -o %t -filetype=obj
2 ; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
3
4 ; Check that the friend tag is there and is followed by a DW_AT_friend that has a reference back.
5
6 ; CHECK: [[BACK:0x[0-9a-f]*]]:   DW_TAG_class_type
7 ; CHECK-NEXT: DW_AT_name [DW_FORM_strp]       ( .debug_str[{{.*}}] = "A")
8 ; CHECK: DW_TAG_friend
9 ; CHECK-NEXT: DW_AT_friend [DW_FORM_ref4]   (cu + 0x{{[0-9a-f]*}} => {[[BACK]]})
10
11
12 %class.A = type { i32 }
13 %class.B = type { i32 }
14
15 @a = global %class.A zeroinitializer, align 4
16 @b = global %class.B zeroinitializer, align 4
17
18 !llvm.dbg.cu = !{!0}
19 !llvm.module.flags = !{!29}
20
21 !0 = !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.1 (trunk 153413) (llvm/trunk 153428)", isOptimized: false, emissionKind: 0, file: !28, enums: !1, retainedTypes: !1, subprograms: !1, globals: !3, imports:  !1)
22 !1 = !{}
23 !3 = !{!5, !17}
24 !5 = !DIGlobalVariable(name: "a", line: 10, isLocal: false, isDefinition: true, scope: null, file: !6, type: !7, variable: %class.A* @a)
25 !6 = !DIFile(filename: "foo.cpp", directory: "/Users/echristo/tmp")
26 !7 = !DICompositeType(tag: DW_TAG_class_type, name: "A", line: 1, size: 32, align: 32, file: !28, elements: !8)
27 !8 = !{!9, !11}
28 !9 = !DIDerivedType(tag: DW_TAG_member, name: "a", line: 2, size: 32, align: 32, flags: DIFlagPrivate, file: !28, scope: !7, baseType: !10)
29 !10 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
30 !11 = !DISubprogram(name: "A", line: 1, isLocal: false, isDefinition: false, virtualIndex: 6, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false, scopeLine: 1, file: !6, scope: !7, type: !12)
31 !12 = !DISubroutineType(types: !13)
32 !13 = !{null, !14}
33 !14 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, flags: DIFlagArtificial, baseType: !7)
34 !17 = !DIGlobalVariable(name: "b", line: 11, isLocal: false, isDefinition: true, scope: null, file: !6, type: !18, variable: %class.B* @b)
35 !18 = !DICompositeType(tag: DW_TAG_class_type, name: "B", line: 5, size: 32, align: 32, file: !28, elements: !19)
36 !19 = !{!20, !21, !27}
37 !20 = !DIDerivedType(tag: DW_TAG_member, name: "b", line: 7, size: 32, align: 32, flags: DIFlagPrivate, file: !28, scope: !18, baseType: !10)
38 !21 = !DISubprogram(name: "B", line: 5, isLocal: false, isDefinition: false, virtualIndex: 6, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false, scopeLine: 5, file: !6, scope: !18, type: !22)
39 !22 = !DISubroutineType(types: !23)
40 !23 = !{null, !24}
41 !24 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, flags: DIFlagArtificial, baseType: !18)
42 !27 = !DIDerivedType(tag: DW_TAG_friend, file: !28, baseType: !7)
43 !28 = !DIFile(filename: "foo.cpp", directory: "/Users/echristo/tmp")
44 !29 = !{i32 1, !"Debug Info Version", i32 3}