]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/DebugInfo/X86/data_member_location.ll
DI: Fold constant arguments into a single MDString
[opencl/llvm.git] / test / DebugInfo / X86 / data_member_location.ll
1 ; RUN: llc -mtriple=x86_64-linux -O0 -o - -filetype=obj < %s | llvm-dwarfdump -debug-dump=info -| FileCheck %s
2 ; RUN: llc -mtriple=x86_64-linux -dwarf-version=2 -O0 -o - -filetype=obj < %s | llvm-dwarfdump -debug-dump=info -| FileCheck -check-prefix=DWARF2 %s
4 ; Generated from Clang with the following source:
5 ;
6 ; struct foo {
7 ;   char c;
8 ;   int i;
9 ; };
10
11 ; foo f;
13 ; CHECK: DW_AT_name {{.*}} "c"
14 ; CHECK-NOT: DW_TAG
15 ; CHECK: DW_AT_data_member_location {{.*}} (0x00)
17 ; CHECK: DW_AT_name {{.*}} "i"
18 ; CHECK-NOT: DW_TAG
19 ; CHECK: DW_AT_data_member_location {{.*}} (0x04)
21 ; DWARF2: DW_AT_name {{.*}} "c"
22 ; DWARF2-NOT: DW_TAG
23 ; DWARF2: DW_AT_data_member_location {{.*}} (<0x02> 23 00 )
25 ; DWARF2: DW_AT_name {{.*}} "i"
26 ; DWARF2-NOT: DW_TAG
27 ; DWARF2: DW_AT_data_member_location {{.*}} (<0x02> 23 04 )
29 %struct.foo = type { i8, i32 }
31 @f = global %struct.foo zeroinitializer, align 4
33 !llvm.dbg.cu = !{!0}
34 !llvm.module.flags = !{!13, !15}
35 !llvm.ident = !{!14}
37 !0 = metadata !{metadata !"0x11\004\00clang version 3.4 \000\00\000\00\000", metadata !1, metadata !2, metadata !3, metadata !2, metadata !10, metadata !2} ; [ DW_TAG_compile_unit ] [/tmp/dbginfo/data_member_location.cpp] [DW_LANG_C_plus_plus]
38 !1 = metadata !{metadata !"data_member_location.cpp", metadata !"/tmp/dbginfo"}
39 !2 = metadata !{}
40 !3 = metadata !{metadata !4}
41 !4 = metadata !{metadata !"0x13\00foo\001\0064\0032\000\000\000", metadata !1, null, null, metadata !5, null, null, metadata !"_ZTS3foo"} ; [ DW_TAG_structure_type ] [foo] [line 1, size 64, align 32, offset 0] [def] [from ]
42 !5 = metadata !{metadata !6, metadata !8}
43 !6 = metadata !{metadata !"0xd\00c\002\008\008\000\000", metadata !1, metadata !"_ZTS3foo", metadata !7} ; [ DW_TAG_member ] [c] [line 2, size 8, align 8, offset 0] [from char]
44 !7 = metadata !{metadata !"0x24\00char\000\008\008\000\000\006", null, null} ; [ DW_TAG_base_type ] [char] [line 0, size 8, align 8, offset 0, enc DW_ATE_signed_char]
45 !8 = metadata !{metadata !"0xd\00i\003\0032\0032\0032\000", metadata !1, metadata !"_ZTS3foo", metadata !9} ; [ DW_TAG_member ] [i] [line 3, size 32, align 32, offset 32] [from int]
46 !9 = 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]
47 !10 = metadata !{metadata !11}
48 !11 = metadata !{metadata !"0x34\00f\00f\00\006\000\001", null, metadata !12, metadata !4, %struct.foo* @f, null} ; [ DW_TAG_variable ] [f] [line 6] [def]
49 !12 = metadata !{metadata !"0x29", metadata !1}         ; [ DW_TAG_file_type ] [/tmp/dbginfo/data_member_location.cpp]
50 !13 = metadata !{i32 2, metadata !"Dwarf Version", i32 4}
51 !14 = metadata !{metadata !"clang version 3.4 "}
53 !15 = metadata !{i32 1, metadata !"Debug Info Version", i32 2}