xref: /aosp_15_r20/external/llvm/test/DebugInfo/X86/tls.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-linux-gnu \
2*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-64 --check-prefix=GNUOP %s
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=i386-linux-gnu \
5*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-32 --check-prefix=GNUOP %s
6*9880d681SAndroid Build Coastguard Worker
7*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-linux-gnu -split-dwarf=Enable \
8*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=NOEMU --check-prefix=FISSION --check-prefix=GNUOP %s
9*9880d681SAndroid Build Coastguard Worker
10*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-scei-ps4 \
11*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-64 --check-prefix=STDOP %s
12*9880d681SAndroid Build Coastguard Worker
13*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-apple-darwin \
14*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=NOEMU --check-prefix=DARWIN --check-prefix=STDOP %s
15*9880d681SAndroid Build Coastguard Worker
16*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-freebsd \
17*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=NOEMU --check-prefix=SINGLE --check-prefix=SINGLE-64 --check-prefix=GNUOP %s
18*9880d681SAndroid Build Coastguard Worker
19*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=x86_64-unknown-linux-gnu -emulated-tls \
20*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=SINGLE --check-prefix=EMUSINGLE-64 \
21*9880d681SAndroid Build Coastguard Worker; RUN:     --check-prefix=EMUGNUOP --check-prefix=EMU %s
22*9880d681SAndroid Build Coastguard Worker
23*9880d681SAndroid Build Coastguard Worker; RUN: llc %s -o - -filetype=asm -O0 -mtriple=i386-linux-gnu -emulated-tls \
24*9880d681SAndroid Build Coastguard Worker; RUN:   | FileCheck --check-prefix=SINGLE --check-prefix=EMUSINGLE-32 \
25*9880d681SAndroid Build Coastguard Worker; RUN:     --check-prefix=EMUGNUOP --check-prefix=EMU %s
26*9880d681SAndroid Build Coastguard Worker
27*9880d681SAndroid Build Coastguard Worker; TODO: Add expected output for -emulated-tls tests.
28*9880d681SAndroid Build Coastguard Worker
29*9880d681SAndroid Build Coastguard Worker; FIXME: add relocation and DWARF expression support to llvm-dwarfdump & use
30*9880d681SAndroid Build Coastguard Worker; that here instead of raw assembly printing
31*9880d681SAndroid Build Coastguard Worker
32*9880d681SAndroid Build Coastguard Worker; FISSION: .section    .debug_info.dwo,
33*9880d681SAndroid Build Coastguard Worker; 3 bytes of data in this DW_FORM_block1 representation of the location of 'tls'
34*9880d681SAndroid Build Coastguard Worker; FISSION: .byte 3{{ *}}# DW_AT_location
35*9880d681SAndroid Build Coastguard Worker; DW_OP_GNU_const_index (0xfx == 252) to refer to the debug_addr table
36*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 252
37*9880d681SAndroid Build Coastguard Worker; an index of zero into the debug_addr table
38*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 0
39*9880d681SAndroid Build Coastguard Worker
40*9880d681SAndroid Build Coastguard Worker; SINGLE: .section     .debug_info,
41*9880d681SAndroid Build Coastguard Worker; DARWIN: .section     {{.*}}debug_info,
42*9880d681SAndroid Build Coastguard Worker
43*9880d681SAndroid Build Coastguard Worker; 10 bytes of data in this DW_FORM_block1 representation of the location of 'tls'
44*9880d681SAndroid Build Coastguard Worker; SINGLE-64: .byte     10 # DW_AT_location
45*9880d681SAndroid Build Coastguard Worker; DW_OP_const8u (0x0e == 14) of address
46*9880d681SAndroid Build Coastguard Worker; SINGLE-64-NEXT: .byte        14
47*9880d681SAndroid Build Coastguard Worker; SINGLE-64-NEXT: .quad tls@DTPOFF
48*9880d681SAndroid Build Coastguard Worker
49*9880d681SAndroid Build Coastguard Worker; DARWIN: .byte     10 ## DW_AT_location
50*9880d681SAndroid Build Coastguard Worker; DW_OP_const8u (0x0e == 14) of address
51*9880d681SAndroid Build Coastguard Worker; DARWIN-NEXT: .byte        14
52*9880d681SAndroid Build Coastguard Worker; DARWIN-NEXT: .quad _tls
53*9880d681SAndroid Build Coastguard Worker
54*9880d681SAndroid Build Coastguard Worker; 6 bytes of data in 32-bit mode
55*9880d681SAndroid Build Coastguard Worker; SINGLE-32: .byte     6 # DW_AT_location
56*9880d681SAndroid Build Coastguard Worker; DW_OP_const4u (0x0e == 12) of address
57*9880d681SAndroid Build Coastguard Worker; SINGLE-32-NEXT: .byte        12
58*9880d681SAndroid Build Coastguard Worker; SINGLE-32-NEXT: .long tls@DTPOFF
59*9880d681SAndroid Build Coastguard Worker
60*9880d681SAndroid Build Coastguard Worker; DW_OP_GNU_push_tls_address
61*9880d681SAndroid Build Coastguard Worker; GNUOP-NEXT: .byte 224
62*9880d681SAndroid Build Coastguard Worker; DW_OP_form_tls_address
63*9880d681SAndroid Build Coastguard Worker; STDOP-NEXT: .byte 155
64*9880d681SAndroid Build Coastguard Worker
65*9880d681SAndroid Build Coastguard Worker; FISSION: DW_TAG_variable
66*9880d681SAndroid Build Coastguard Worker; FISSION: .byte 2 # DW_AT_location
67*9880d681SAndroid Build Coastguard Worker; DW_OP_GNU_addr_index
68*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 251
69*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 1
70*9880d681SAndroid Build Coastguard Worker
71*9880d681SAndroid Build Coastguard Worker; FISSION: DW_TAG_template_value_parameter
72*9880d681SAndroid Build Coastguard Worker; FISSION: .byte 3 # DW_AT_location
73*9880d681SAndroid Build Coastguard Worker; DW_OP_GNU_addr_index
74*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 251
75*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 1
76*9880d681SAndroid Build Coastguard Worker; DW_OP_stack_value
77*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .byte 159
78*9880d681SAndroid Build Coastguard Worker
79*9880d681SAndroid Build Coastguard Worker; check that the expected TLS address description is the first thing in the debug_addr section
80*9880d681SAndroid Build Coastguard Worker; FISSION: .section    .debug_addr
81*9880d681SAndroid Build Coastguard Worker; FISSION: addr_sec:
82*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .quad  tls@DTPOFF
83*9880d681SAndroid Build Coastguard Worker; FISSION-NEXT: .quad  glbl
84*9880d681SAndroid Build Coastguard Worker; FISSION-NOT: .quad  glbl
85*9880d681SAndroid Build Coastguard Worker
86*9880d681SAndroid Build Coastguard Worker; Generated from:
87*9880d681SAndroid Build Coastguard Worker
88*9880d681SAndroid Build Coastguard Worker; __thread int tls;
89*9880d681SAndroid Build Coastguard Worker; int glbl;
90*9880d681SAndroid Build Coastguard Worker;
91*9880d681SAndroid Build Coastguard Worker; template <int *I>
92*9880d681SAndroid Build Coastguard Worker; int func() {
93*9880d681SAndroid Build Coastguard Worker;   return 0;
94*9880d681SAndroid Build Coastguard Worker; }
95*9880d681SAndroid Build Coastguard Worker;
96*9880d681SAndroid Build Coastguard Worker; template int func<&glbl>(); // create a second reference to 'glbl'
97*9880d681SAndroid Build Coastguard Worker
98*9880d681SAndroid Build Coastguard Worker
99*9880d681SAndroid Build Coastguard Worker@tls = thread_local global i32 0, align 4
100*9880d681SAndroid Build Coastguard Worker@glbl = global i32 0, align 4
101*9880d681SAndroid Build Coastguard Worker
102*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind uwtable
103*9880d681SAndroid Build Coastguard Workerdefine weak_odr i32 @_Z4funcIXadL_Z4glblEEEiv() #0 !dbg !4 {
104*9880d681SAndroid Build Coastguard Workerentry:
105*9880d681SAndroid Build Coastguard Worker  ret i32 0, !dbg !18
106*9880d681SAndroid Build Coastguard Worker}
107*9880d681SAndroid Build Coastguard Worker
108*9880d681SAndroid Build Coastguard Workerattributes #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" }
109*9880d681SAndroid Build Coastguard Worker
110*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0}
111*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!15, !16}
112*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!17}
113*9880d681SAndroid Build Coastguard Worker
114*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5 ", isOptimized: false, splitDebugFilename: "-.dwo", emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !12, imports: !2)
115*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "tls.cpp", directory: "/tmp/dbginfo")
116*9880d681SAndroid Build Coastguard Worker!2 = !{}
117*9880d681SAndroid Build Coastguard Worker!4 = distinct !DISubprogram(name: "func<&glbl>", linkageName: "_Z4funcIXadL_Z4glblEEEiv", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 5, file: !1, scope: !5, type: !6, templateParams: !9, variables: !2)
118*9880d681SAndroid Build Coastguard Worker!5 = !DIFile(filename: "tls.cpp", directory: "/tmp/dbginfo")
119*9880d681SAndroid Build Coastguard Worker!6 = !DISubroutineType(types: !7)
120*9880d681SAndroid Build Coastguard Worker!7 = !{!8}
121*9880d681SAndroid Build Coastguard Worker!8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
122*9880d681SAndroid Build Coastguard Worker!9 = !{!10}
123*9880d681SAndroid Build Coastguard Worker!10 = !DITemplateValueParameter(tag: DW_TAG_template_value_parameter, name: "I", type: !11, value: i32* @glbl)
124*9880d681SAndroid Build Coastguard Worker!11 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !8)
125*9880d681SAndroid Build Coastguard Worker!12 = !{!13, !14}
126*9880d681SAndroid Build Coastguard Worker!13 = !DIGlobalVariable(name: "tls", line: 1, isLocal: false, isDefinition: true, scope: null, file: !5, type: !8, variable: i32* @tls)
127*9880d681SAndroid Build Coastguard Worker!14 = !DIGlobalVariable(name: "glbl", line: 2, isLocal: false, isDefinition: true, scope: null, file: !5, type: !8, variable: i32* @glbl)
128*9880d681SAndroid Build Coastguard Worker!15 = !{i32 2, !"Dwarf Version", i32 4}
129*9880d681SAndroid Build Coastguard Worker!16 = !{i32 1, !"Debug Info Version", i32 3}
130*9880d681SAndroid Build Coastguard Worker!17 = !{!"clang version 3.5 "}
131*9880d681SAndroid Build Coastguard Worker!18 = !DILocation(line: 6, scope: !4)
132