summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-powerpc/tlsgd.s
blob: 304bd6087e80c0b749fd01bfc47b4bde01bf55a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 .section ".tbss","awT",@nobits
 .p2align 3
pad: .space 8
 .global a
a: .space 8
 .global b
b: .space 8
 .global c
c: .space 8
 .global d
d: .space 8

 .text
 .globl _start
_start:
#Small model OpenPower
 addi 3,2,.La@toc
 bl __tls_get_addr(.La@tlsgd)
 nop
 .section .toc,"aw",@progbits
 .p2align 3
.La:
 .quad a@dtpmod
 .quad a@dtprel
 .text

#Medium mode ELF
 addis 3,2,b@got@tlsgd@ha
 addi 3,3,b@got@tlsgd@l
 bl __tls_get_addr(b@tlsgd)
 nop

#PCrel
 pla 3,c@got@tlsgd@pcrel
 bl __tls_get_addr@notoc(c@tlsgd)

#All of the above using the same symbol
 addis 3,2,.Ld@toc@ha
 addi 3,3,.Ld@toc@l
 bl __tls_get_addr(.Ld@tlsgd)
 nop
 .section .toc,"aw",@progbits
.Ld:
 .quad d@dtpmod
 .quad d@dtprel
 .text
 addis 3,2,d@got@tlsgd@ha
 addi 3,3,d@got@tlsgd@l
 bl __tls_get_addr(d@tlsgd)
 nop
 pla 3,d@got@tlsgd@pcrel
 bl __tls_get_addr@notoc(d@tlsgd)