mirror of https://git.musl-libc.org/git/musl
Browse Source
despite documentation that makes it sound a lot different, the only ABI-constraint difference between TLS variants II and I seems to be that variant II stores the initial TLS segment immediately below the thread pointer (i.e. the thread pointer points to the end of it) and variant I stores the initial TLS segment above the thread pointer, requiring the thread descriptor to be stored below. the actual value stored in the thread pointer register also tends to have per-arch random offsets applied to it for silly micro-optimization purposes. with these changes applied, TLS should be basically working on all supported archs except microblaze. I'm still working on getting the necessary information and a working toolchain that can build TLS binaries for microblaze, but in theory, static-linked programs with TLS and dynamic-linked programs where only the main executable uses TLS should already work on microblaze. alignment constraints have not yet been heavily tested, so it's possible that this code does not always align TLS segments correctly on archs that need TLS variant I.rs-1.0
12 changed files with 79 additions and 17 deletions
@ -1,6 +1,9 @@ |
|||
typedef pthread_t (*__pthread_self_func_t)(void) __attribute__((const)); |
|||
typedef char *(*__ptr_func_t)(void) __attribute__((const)); |
|||
|
|||
#define __pthread_self ((__pthread_self_func_t)0xffff0fe0) |
|||
#define __pthread_self() \ |
|||
((pthread_t)(((__ptr_func_t)0xffff0fe0)()+8-sizeof(struct pthread))) |
|||
|
|||
#define TLS_ABOVE_TP |
|||
#define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) - 8) |
|||
|
|||
#define CANCEL_REG_SP 16 |
|||
#define CANCEL_REG_IP 18 |
|||
|
|||
@ -1,12 +1,16 @@ |
|||
static inline struct pthread *__pthread_self() |
|||
{ |
|||
struct pthread *self; |
|||
#ifdef __clang__ |
|||
__asm__ __volatile__ (".word 0x7c03e83b ; move %0, $3" : "=r" (self) : : "$3" ); |
|||
char *tp; |
|||
__asm__ __volatile__ (".word 0x7c03e83b ; move %0, $3" : "=r" (tp) : : "$3" ); |
|||
#else |
|||
__asm__ __volatile__ (".word 0x7c03e83b" : "=v" (self) ); |
|||
register char *tp __asm__("$3"); |
|||
__asm__ __volatile__ (".word 0x7c03e83b" : "=r" (tp) ); |
|||
#endif |
|||
return self; |
|||
return (pthread_t)(tp - 0x7000 - sizeof(struct pthread)); |
|||
} |
|||
|
|||
#define TLS_ABOVE_TP |
|||
#define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) + 0x7000) |
|||
|
|||
#define CANCEL_REG_IP (3-(union {int __i; char __b;}){1}.__b) |
|||
|
|||
@ -0,0 +1,4 @@ |
|||
.global __aeabi_read_tp |
|||
.type __aeabi_read_tp,%function |
|||
__aeabi_read_tp: |
|||
ldr pc,=0xffff0fe0 |
|||
Loading…
Reference in new issue