Difference between revisions of "NPTL"
Joseph Myers (Talk | contribs) (Fix typos.) |
Joseph Myers (Talk | contribs) (Describe changes to relocations made in the course of inclusion in GNU binutils - see http://sourceware.org/ml/binutils/2005-02/msg00108.html and thread.) |
||
| Line 59: | Line 59: | ||
GOT[n] R_MIPS_TLS_DTPMOD32 x | GOT[n] R_MIPS_TLS_DTPMOD32 x | ||
| − | GOT[n+1] | + | GOT[n+1] R_MIPS_TLS_DTPREL32 x |
Code sequence (64-bit mode): | Code sequence (64-bit mode): | ||
| Line 70: | Line 70: | ||
GOT[n] R_MIPS_TLS_DTPMOD64 x | GOT[n] R_MIPS_TLS_DTPMOD64 x | ||
| − | GOT[n+1] | + | GOT[n+1] R_MIPS_TLS_DTPREL64 x |
At the end of the code sequence the address of <code>x</code> is available in <code>$2</code>. | At the end of the code sequence the address of <code>x</code> is available in <code>$2</code>. | ||
| Line 83: | Line 83: | ||
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 lui $3, % | + | 0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1 |
| − | 0x14 addiu $3, $3, % | + | 0x14 addiu $3, $3, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1 |
0x18 addu $3, $3, $2 | 0x18 addu $3, $3, $2 | ||
... | ... | ||
| − | 0x1c lui $3, % | + | 0x1c lui $3, %dtprel_hi(x2) R_MIPS_TLS_DTPREL_HI16 x2 |
| − | 0x20 addiu $3, $3, % | + | 0x20 addiu $3, $3, %dtprel_lo(x2) R_MIPS_TLS_DTPREL_LO16 x2 |
0x24 addu $3, $3, $2 | 0x24 addu $3, $3, $2 | ||
| Line 101: | Line 101: | ||
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 lui $3, % | + | 0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1 |
| − | 0x14 addiu $3, $3, % | + | 0x14 addiu $3, $3, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1 |
0x18 daddu $3, $3, $2 | 0x18 daddu $3, $3, $2 | ||
... | ... | ||
| − | 0x1c lui $3, % | + | 0x1c lui $3, %dtprel_hi(x2) R_MIPS_TLS_DTPREL_HI16 x2 |
| − | 0x20 addiu $3, $3, % | + | 0x20 addiu $3, $3, %dtprel_lo(x2) R_MIPS_TLS_DTPREL_LO16 x2 |
0x24 daddu $3, $3, $2 | 0x24 daddu $3, $3, $2 | ||
| Line 126: | Line 126: | ||
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 lui $3, % | + | 0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1 |
0x14 addu $3, $3, $2 | 0x14 addu $3, $3, $2 | ||
| − | 0x18 lw $3, % | + | 0x18 lw $3, %dtprel_lo(x1)($3) R_MIPS_TLS_DTPREL_LO16 x1 |
Code Sequence II (64-bit mode): | Code Sequence II (64-bit mode): | ||
| Line 136: | Line 136: | ||
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 lui $3, % | + | 0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1 |
0x14 daddu $3, $3, $2 | 0x14 daddu $3, $3, $2 | ||
| − | 0x18 lw $3, % | + | 0x18 lw $3, %dtprel_lo(x1)($3) R_MIPS_TLS_DTPREL_LO16 x1 |
Here, <code>lw</code> may be replaced with any other load/store instruction, using | Here, <code>lw</code> may be replaced with any other load/store instruction, using | ||
| Line 153: | Line 153: | ||
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 addiu $3, $2, % | + | 0x10 addiu $3, $2, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1 |
Code sequence III (64-bit mode): | Code sequence III (64-bit mode): | ||
| Line 161: | Line 161: | ||
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 daddiu $3, $2, % | + | 0x10 daddiu $3, $2, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1 |
The outstanding relocations are as for Code Sequence I. | The outstanding relocations are as for Code Sequence I. | ||
| Line 176: | Line 176: | ||
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 lw $3, % | + | 0x10 lw $3, %dtprel_lo(x1)($2) R_MIPS_TLS_DTPREL_LO16 x1 |
Code sequence IV (64-bit mode): | Code sequence IV (64-bit mode): | ||
| Line 184: | Line 184: | ||
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | 0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x | ||
... | ... | ||
| − | 0x10 lw $3, % | + | 0x10 lw $3, %dtprel_lo(x1)($2) R_MIPS_TLS_DTPREL_LO16 x1 |
Here, <code>lw</code> may be replaced with any other load/store instruction, as above. | Here, <code>lw</code> may be replaced with any other load/store instruction, as above. | ||
| Line 193: | Line 193: | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 lw $2, % | + | 0x04 lw $2, %gottprel(x1)($28) R_MIPS_TLS_GOTTPREL x1 |
0x08 addu $2, $2, $3 | 0x08 addu $2, $2, $3 | ||
... | ... | ||
| − | 0x0c lw $2, % | + | 0x0c lw $2, %gottprel(x2)($28) R_MIPS_TLS_GOTTPREL x2 |
0x10 addu $2, $2, $3 | 0x10 addu $2, $2, $3 | ||
Outstanding relocations (32-bit mode): | Outstanding relocations (32-bit mode): | ||
| − | GOT[n] | + | GOT[n] R_MIPS_TLS_TPREL32 x1 |
Code sequence (64-bit mode): | Code sequence (64-bit mode): | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 ld $2, % | + | 0x04 ld $2, %gottprel(x1)($28) R_MIPS_TLS_GOTTPREL x1 |
0x08 daddu $2, $2, $3 | 0x08 daddu $2, $2, $3 | ||
... | ... | ||
| − | 0x0c ld $2, % | + | 0x0c ld $2, %gottprel(x2)($28) R_MIPS_TLS_TPGOTTPREL x2 |
0x10 daddu $2, $2, $3 | 0x10 daddu $2, $2, $3 | ||
Outstanding relocations (64-bit mode): | Outstanding relocations (64-bit mode): | ||
| − | GOT[n] | + | GOT[n] R_MIPS_TLS_TPREL64 x1 |
The first instruction loads the virtual thread register. The kernel emulates the <code>rdhwr</code> instruction if necessary to return the right value. | The first instruction loads the virtual thread register. The kernel emulates the <code>rdhwr</code> instruction if necessary to return the right value. | ||
| Line 231: | Line 231: | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 lui $2, % | + | 0x04 lui $2, %tprel_hi(x) R_MIPS_TLS_TPREL_HI16 x |
| − | 0x08 addiu $2, $2, % | + | 0x08 addiu $2, $2, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x |
0x0c addu $2, $2, $3 | 0x0c addu $2, $2, $3 | ||
| Line 240: | Line 240: | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 lui $2, % | + | 0x04 lui $2, %tprel_hi(x) R_MIPS_TLS_TPREL_HI16 x |
| − | 0x08 addiu $2, $2, % | + | 0x08 addiu $2, $2, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x |
0x0c daddu $2, $2, $3 | 0x0c daddu $2, $2, $3 | ||
| Line 255: | Line 255: | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 addiu $2, $3, % | + | 0x04 addiu $2, $3, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x |
Code sequence II (64-bit mode): | Code sequence II (64-bit mode): | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 daddiu $2, $3, % | + | 0x04 daddiu $2, $3, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x |
No outstanding relocations, as for Code Sequence I. | No outstanding relocations, as for Code Sequence I. | ||
| Line 269: | Line 269: | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 lw $2, % | + | 0x04 lw $2, %tprel_lo(x)($3) R_MIPS_TLS_TPREL_LO16 x |
Code sequence III (64-bit mode): | Code sequence III (64-bit mode): | ||
0x00 rdhwr $3, $29 | 0x00 rdhwr $3, $29 | ||
| − | 0x04 lw $2, % | + | 0x04 lw $2, %tprel_lo(x)($3) R_MIPS_TLS_TPREL_LO16 x |
Here, <code>lw</code> may be replaced with any other load/store instruction, as for Code Sequence III in the Local Dynamic model. | Here, <code>lw</code> may be replaced with any other load/store instruction, as for Code Sequence III in the Local Dynamic model. | ||
| Line 289: | Line 289: | ||
#define R_MIPS_TLS_DTPMOD32 38 | #define R_MIPS_TLS_DTPMOD32 38 | ||
| − | #define | + | #define R_MIPS_TLS_DTPREL32 39 |
#define R_MIPS_TLS_DTPMOD64 40 | #define R_MIPS_TLS_DTPMOD64 40 | ||
| − | #define | + | #define R_MIPS_TLS_DTPREL64 41 |
#define R_MIPS_TLS_GD 42 | #define R_MIPS_TLS_GD 42 | ||
#define R_MIPS_TLS_LDM 43 | #define R_MIPS_TLS_LDM 43 | ||
| − | #define | + | #define R_MIPS_TLS_DTPREL_HI16 44 |
| − | #define | + | #define R_MIPS_TLS_DTPREL_LO16 45 |
| − | #define | + | #define R_MIPS_TLS_GOTTPREL 46 |
| − | #define | + | #define R_MIPS_TLS_TPREL32 47 |
| − | #define | + | #define R_MIPS_TLS_TPREL64 48 |
| − | #define | + | #define R_MIPS_TLS_TPREL_HI16 49 |
| − | #define | + | #define R_MIPS_TLS_TPREL_LO16 50 |
== History == | == History == | ||
| Line 306: | Line 306: | ||
<tt>$3</tt> was chosen for fast-path emulation in <code>rdhwr</code>; in earlier drafts the register used was said to be arbitrary. | <tt>$3</tt> was chosen for fast-path emulation in <code>rdhwr</code>; in earlier drafts the register used was said to be arbitrary. | ||
| + | |||
| + | The names of some of the relocations and associated assembler operations were changed in the course of inclusion into GNU binutils. | ||
== Authors == | == Authors == | ||
* Mark Mitchell (mark@codesourcery.com), CodeSourcery, LLC | * Mark Mitchell (mark@codesourcery.com), CodeSourcery, LLC | ||
* Daniel Jacobowitz (dan@debian.org), CodeSourcery, LLC | * Daniel Jacobowitz (dan@debian.org), CodeSourcery, LLC | ||
Revision as of 00:12, 3 October 2007
Contents |
Status
Currently NPTL for Linux/MIPS is work in progress. Ulrich Drepper's NPTL Design Document contains some information on the NTPL design including implementation details on other architectures. One prerequirement for NPTL is TLS, as documented in Thread Local Storage.
Overview
This document presents a design for implementing Thread Local Storage (TLS) for MIPS Linux, in both 32-bit and 64-bit mode. This design specifies the code that must be generated by the compiler, the relocations that must be generated by the assembler, and the processing that must be performed by the linker.
Design Choices
- There are no available hardware registers to designate as the thread register.
Therefore, kernel magic will be used to make the thread pointer available to userspace. The mechanism for obtaining the thread pointer will be encapsulated in the __tls_get_addr function. For the Initial Exec and Local Exec models, a rdhwr instruction will be used, and this will be emulated by the kernel as necessary.
- Use TLS Variant II (in which the TLS data areas precede the TCB in memory).
As noted in Drepper's paper, this design permits the compiler to generate efficient code for the case that the main executable accesses TLS variables from the executable itself.
- The
__tls_get_addrfunction has the prototype:
extern void *__tls_get_addr (tls_index *ti);
where the type tls_index is defined as:
typedef struct {
unsigned long ti_module;
unsigned long ti_offset;
} tls_index;
The type unsigned long is used because it is a 32-bit type in 32-bit mode and a 64-bit type in 64-bit mode; thus, the members will fit correctly into two consecutive GOT entries in both modes.
- The compiler is not allowed to schedule the sequences below.
The sequences below must appear exactly as written in the code generated by the compiler. This restriction is present because we have not yet determined what linker optimizations may be possible. In order to facilitate adding linker optimizations in the future, without recompiling current code, the compiler is restricted from scheduling these sequences.
Conventions
In what follows, all references to registers other than $2 (when it is
used as the return register), $3 (when it is used for the output of rdhwr), $4 (when it used as an argument
register), $25 (the address of a called function), and $28 (the
global pointer) are arbitrary; the compiler is free to use other
registers instead. $3 must be used in the rdhwr instruction for fast-path emulation; using any other register in its place will be much slower.
Where ... appears in a code sequence the compiler may insert zero or
more arbitrary instructions.
.set noreorder is assumed; the instruction after a jalr is in its
delay slot.
General Dynamic TLS Model
Code sequence (32-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g 0x04 jalr $25 0x08 addiu $4, $28, %tlsgd(x) R_MIPS_TLS_GD x
Outstanding relocations (32-bit mode):
GOT[n] R_MIPS_TLS_DTPMOD32 x GOT[n+1] R_MIPS_TLS_DTPREL32 x
Code sequence (64-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g 0x04 jalr $25 0x08 daddiu $4, $28, %tlsgd(x) R_MIPS_TLS_GD x
Outstanding relocations (64-bit mode):
GOT[n] R_MIPS_TLS_DTPMOD64 x GOT[n+1] R_MIPS_TLS_DTPREL64 x
At the end of the code sequence the address of x is available in $2.
Local Dynamic TLS Model
Code sequence I (32-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1
0x14 addiu $3, $3, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1
0x18 addu $3, $3, $2
...
0x1c lui $3, %dtprel_hi(x2) R_MIPS_TLS_DTPREL_HI16 x2
0x20 addiu $3, $3, %dtprel_lo(x2) R_MIPS_TLS_DTPREL_LO16 x2
0x24 addu $3, $3, $2
Outstanding relocations (32-bit mode):
GOT[n] R_MIPS_TLS_DTPMOD32 x1
Code sequence I (64-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1
0x14 addiu $3, $3, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1
0x18 daddu $3, $3, $2
...
0x1c lui $3, %dtprel_hi(x2) R_MIPS_TLS_DTPREL_HI16 x2
0x20 addiu $3, $3, %dtprel_lo(x2) R_MIPS_TLS_DTPREL_LO16 x2
0x24 daddu $3, $3, $2
Outstanding relocations (64-bit mode):
GOT[n] R_MIPS_TLS_DTPMOD64 x1
After the instruction at 0x18 has executed, the address of x1 is
available in $3.
If rather than needing the address of the variable, the variable is to be read or written, then the following code sequences may be used instead of either of the sequences above.
Code Sequence II (32-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1
0x14 addu $3, $3, $2
0x18 lw $3, %dtprel_lo(x1)($3) R_MIPS_TLS_DTPREL_LO16 x1
Code Sequence II (64-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 lui $3, %dtprel_hi(x1) R_MIPS_TLS_DTPREL_HI16 x1
0x14 daddu $3, $3, $2
0x18 lw $3, %dtprel_lo(x1)($3) R_MIPS_TLS_DTPREL_LO16 x1
Here, lw may be replaced with any other load/store instruction, using
the same opcode format as lw, such as lb, lbu, lh, lwu, ld,
sb, sh, sw, sd, ll, lld, lwl, lwr, ldl, or ldr.
If the size of the TLS area is known to be smaller than 32K, then the following sequences can be used instead of those above.
Code sequence III (32-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 addiu $3, $2, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1
Code sequence III (64-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 daddiu $3, $2, %dtprel_lo(x1) R_MIPS_TLS_DTPREL_LO16 x1
The outstanding relocations are as for Code Sequence I.
If, rather than needing the address of the variable, the variable is to be read or written, and the size of the TLS area is known to be smaller than 32K, then the following code sequences may be used instead of either of the sequences above.
Code sequence IV (32-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 addiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 lw $3, %dtprel_lo(x1)($2) R_MIPS_TLS_DTPREL_LO16 x1
Code sequence IV (64-bit mode):
0x00 lw $25, %call16(__tls_get_addr)($28) R_MIPS_CALL16 g
0x04 jalr $25
0x08 daddiu $4, $28, %tlsldm(x) R_MIPS_TLS_LDM x
...
0x10 lw $3, %dtprel_lo(x1)($2) R_MIPS_TLS_DTPREL_LO16 x1
Here, lw may be replaced with any other load/store instruction, as above.
Initial Exec TLS Model
Code sequence (32-bit mode):
0x00 rdhwr $3, $29 0x04 lw $2, %gottprel(x1)($28) R_MIPS_TLS_GOTTPREL x1 0x08 addu $2, $2, $3 ... 0x0c lw $2, %gottprel(x2)($28) R_MIPS_TLS_GOTTPREL x2 0x10 addu $2, $2, $3
Outstanding relocations (32-bit mode):
GOT[n] R_MIPS_TLS_TPREL32 x1
Code sequence (64-bit mode):
0x00 rdhwr $3, $29 0x04 ld $2, %gottprel(x1)($28) R_MIPS_TLS_GOTTPREL x1 0x08 daddu $2, $2, $3 ... 0x0c ld $2, %gottprel(x2)($28) R_MIPS_TLS_TPGOTTPREL x2 0x10 daddu $2, $2, $3
Outstanding relocations (64-bit mode):
GOT[n] R_MIPS_TLS_TPREL64 x1
The first instruction loads the virtual thread register. The kernel emulates the rdhwr instruction if necessary to return the right value.
The second instruction loads the offset of x1, relative to the thread pointer. The instruction at address 0x08 computes the address of x1 itself.
The second code sequence (beginning at address 0x0c) demonstrates that the thread register can be reused after it has been loaded.
The use of register $2 in the above code sequence is arbitrary. The compiler is free to use alternative registers if convenient.
Local Exec TLS Model
Relative to the Initial Exec TLS Model, the sequences in this section save one dynamic relocation.
Code sequence I (32-bit mode):
0x00 rdhwr $3, $29 0x04 lui $2, %tprel_hi(x) R_MIPS_TLS_TPREL_HI16 x 0x08 addiu $2, $2, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x 0x0c addu $2, $2, $3
No outstanding relocations.
Code sequence I (64-bit mode):
0x00 rdhwr $3, $29 0x04 lui $2, %tprel_hi(x) R_MIPS_TLS_TPREL_HI16 x 0x08 addiu $2, $2, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x 0x0c daddu $2, $2, $3
No outstanding relocations.
The first instruction loads the virtual thread register, as for the Initial Exec TLS Model. The next two instructions load the offset of the variable. The offsets in these instructions can be resolved by the static linker. The instruction at address 0x0c computes the address of x itself.
As with the Initial Exec TLS Model additional variables may be accessed without reloading the virtual thread register.
If the size of the TLS area is known to be smaller than 32K, then the following sequences can be used instead of those above.
Code sequence II (32-bit mode):
0x00 rdhwr $3, $29 0x04 addiu $2, $3, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x
Code sequence II (64-bit mode):
0x00 rdhwr $3, $29 0x04 daddiu $2, $3, %tprel_lo(x) R_MIPS_TLS_TPREL_LO16 x
No outstanding relocations, as for Code Sequence I.
If, rather than needing the address of the variable, the variable is to be read or written, and the size of the TLS area is known to be smaller than 32K, then the following code sequences may be used instead of either of the sequences above.
Code sequence III (32-bit mode):
0x00 rdhwr $3, $29 0x04 lw $2, %tprel_lo(x)($3) R_MIPS_TLS_TPREL_LO16 x
Code sequence III (64-bit mode):
0x00 rdhwr $3, $29 0x04 lw $2, %tprel_lo(x)($3) R_MIPS_TLS_TPREL_LO16 x
Here, lw may be replaced with any other load/store instruction, as for Code Sequence III in the Local Dynamic model.
Linker Optimizations
Not yet specified.
Additional relocations may be required to mark instructions that the linker can transform.
ELF Definitions
New relocations:
#define R_MIPS_TLS_DTPMOD32 38 #define R_MIPS_TLS_DTPREL32 39 #define R_MIPS_TLS_DTPMOD64 40 #define R_MIPS_TLS_DTPREL64 41 #define R_MIPS_TLS_GD 42 #define R_MIPS_TLS_LDM 43 #define R_MIPS_TLS_DTPREL_HI16 44 #define R_MIPS_TLS_DTPREL_LO16 45 #define R_MIPS_TLS_GOTTPREL 46 #define R_MIPS_TLS_TPREL32 47 #define R_MIPS_TLS_TPREL64 48 #define R_MIPS_TLS_TPREL_HI16 49 #define R_MIPS_TLS_TPREL_LO16 50
History
MIPS Technologies has reserved hardware register $29 for ABI use. Earlier drafts of this page were using $5.
$3 was chosen for fast-path emulation in rdhwr; in earlier drafts the register used was said to be arbitrary.
The names of some of the relocations and associated assembler operations were changed in the course of inclusion into GNU binutils.
Authors
- Mark Mitchell (mark@codesourcery.com), CodeSourcery, LLC
- Daniel Jacobowitz (dan@debian.org), CodeSourcery, LLC