OSDN Git Service

79e5a09f925b75cc797cf8619077d310f7bd0c65
[android-x86/external-musl-libc.git] / arch / powerpc / pthread_arch.h
1 static inline struct pthread *__pthread_self()
2 {
3 #ifdef __clang__
4         char *tp;
5         __asm__ __volatile__ ("mr %0, 2" : "=r"(tp) : : );
6 #else
7         register char *tp __asm__("r2");
8         __asm__ __volatile__ ("" : "=r" (tp) );
9 #endif
10         return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
11 }
12                         
13 #define TLS_ABOVE_TP
14 #define GAP_ABOVE_TP 0
15 #define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread) + 0x7000)
16
17 #define DTP_OFFSET 0x8000
18
19 // the kernel calls the ip "nip", it's the first saved value after the 32
20 // GPRs.
21 #define MC_PC gregs[32]
22
23 #define CANARY canary_at_end