[X86][ELF] Correct relocation for DWARF TLS references
[oota-llvm.git] / test / DebugInfo / X86 / tls.ll
1 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-linux-gnu \
2 ; RUN:   | FileCheck --check-prefix=CHECK --check-prefix=SINGLE --check-prefix=SINGLE-64 %s
3
4 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=i386-linux-gnu \
5 ; RUN:   | FileCheck --check-prefix=CHECK --check-prefix=SINGLE --check-prefix=SINGLE-32 %s
6
7 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-linux-gnu -split-dwarf=Enable \
8 ; RUN:   | FileCheck --check-prefix=CHECK --check-prefix=FISSION %s
9
10 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-scei-ps4 \
11 ; RUN:   | FileCheck --check-prefix=CHECK --check-prefix=SINGLE --check-prefix=SINGLE-64 %s
12
13 ; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-freebsd \
14 ; RUN:   | FileCheck --check-prefix=CHECK --check-prefix=SINGLE --check-prefix=SINGLE-64 %s
15
16 ; FIXME: add relocation and DWARF expression support to llvm-dwarfdump & use
17 ; that here instead of raw assembly printing
18
19 ; FISSION: .section    .debug_info.dwo,
20 ; 3 bytes of data in this DW_FORM_block1 representation of the location of 'tls'
21 ; FISSION: .byte 3{{ *}}# DW_AT_location
22 ; DW_OP_GNU_const_index (0xfx == 252) to refer to the debug_addr table
23 ; FISSION-NEXT: .byte 252
24 ; an index of zero into the debug_addr table
25 ; FISSION-NEXT: .byte 0
26
27 ; SINGLE: .section     .debug_info,
28 ; 10 bytes of data in this DW_FORM_block1 representation of the location of 'tls'
29 ; SINGLE-64: .byte     10 # DW_AT_location
30 ; DW_OP_const8u (0x0e == 14) of address
31 ; SINGLE-64-NEXT: .byte        14
32 ; SINGLE-64-NEXT: .quad tls@DTPOFF
33
34 ; SINGLE-32: .byte     6 # DW_AT_location
35 ; DW_OP_const4u (0x0e == 12) of address
36 ; SINGLE-32-NEXT: .byte        12
37 ; SINGLE-32-NEXT: .long tls@DTPOFF
38
39 ; DW_OP_GNU_push_tls_address
40 ; CHECK-NEXT: .byte 224
41
42 ; FISSION: DW_TAG_variable
43 ; FISSION: .byte 2 # DW_AT_location
44 ; DW_OP_GNU_addr_index
45 ; FISSION-NEXT: .byte 251
46 ; FISSION-NEXT: .byte 1
47
48 ; FISSION: DW_TAG_template_value_parameter
49 ; FISSION: .byte 3 # DW_AT_location
50 ; DW_OP_GNU_addr_index
51 ; FISSION-NEXT: .byte 251
52 ; FISSION-NEXT: .byte 1
53 ; DW_OP_stack_value
54 ; FISSION-NEXT: .byte 159
55
56 ; check that the expected TLS address description is the first thing in the debug_addr section
57 ; FISSION: .section    .debug_addr
58 ; FISSION-NEXT: .quad  tls@DTPOFF
59 ; FISSION-NEXT: .quad  glbl
60 ; FISSION-NOT: .quad  glbl
61
62 ; Generated from:
63
64 ; __thread int tls;
65 ; int glbl;
66 ;
67 ; template <int *I>
68 ; int func() {
69 ;   return 0;
70 ; }
71 ;
72 ; template int func<&glbl>(); // create a second reference to 'glbl'
73
74
75 @tls = thread_local global i32 0, align 4
76 @glbl = global i32 0, align 4
77
78 ; Function Attrs: nounwind uwtable
79 define weak_odr i32 @_Z4funcIXadL_Z4glblEEEiv() #0 {
80 entry:
81   ret i32 0, !dbg !18
82 }
83
84 attributes #0 = { nounwind 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" }
85
86 !llvm.dbg.cu = !{!0}
87 !llvm.module.flags = !{!15, !16}
88 !llvm.ident = !{!17}
89
90 !0 = !MDCompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5 ", isOptimized: false, splitDebugFilename: "-.dwo", emissionKind: 0, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !12, imports: !2)
91 !1 = !MDFile(filename: "tls.cpp", directory: "/tmp/dbginfo")
92 !2 = !{}
93 !3 = !{!4}
94 !4 = !MDSubprogram(name: "func<&glbl>", linkageName: "_Z4funcIXadL_Z4glblEEEiv", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 5, file: !1, scope: !5, type: !6, function: i32 ()* @_Z4funcIXadL_Z4glblEEEiv, templateParams: !9, variables: !2)
95 !5 = !MDFile(filename: "tls.cpp", directory: "/tmp/dbginfo")
96 !6 = !MDSubroutineType(types: !7)
97 !7 = !{!8}
98 !8 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
99 !9 = !{!10}
100 !10 = !MDTemplateValueParameter(tag: DW_TAG_template_value_parameter, name: "I", type: !11, value: i32* @glbl)
101 !11 = !MDDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !8)
102 !12 = !{!13, !14}
103 !13 = !MDGlobalVariable(name: "tls", line: 1, isLocal: false, isDefinition: true, scope: null, file: !5, type: !8, variable: i32* @tls)
104 !14 = !MDGlobalVariable(name: "glbl", line: 2, isLocal: false, isDefinition: true, scope: null, file: !5, type: !8, variable: i32* @glbl)
105 !15 = !{i32 2, !"Dwarf Version", i32 4}
106 !16 = !{i32 1, !"Debug Info Version", i32 3}
107 !17 = !{!"clang version 3.5 "}
108 !18 = !MDLocation(line: 6, scope: !4)