mirror of
git://git.musl-libc.org/musl
synced 2024-12-15 03:05:15 +00:00
01ef3dd9c5
This adds complete aarch64 target support including bigendian subarch. Some of the long double math functions are known to be broken otherwise interfaces should be fully functional, but at this point consider this port experimental. Initial work on this port was done by Sireesh Tripurari and Kevin Bortis.
12 lines
284 B
C
12 lines
284 B
C
static inline struct pthread *__pthread_self()
|
|
{
|
|
char *self;
|
|
__asm__ __volatile__ ("mrs %0,tpidr_el0" : "=r"(self));
|
|
return (void*)(self + 16 - sizeof(struct pthread));
|
|
}
|
|
|
|
#define TLS_ABOVE_TP
|
|
#define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) - 16)
|
|
|
|
#define CANCEL_REG_IP 33
|