mailing list of musl libc
 help / color / mirror / code / Atom feed
ab8f2af2ba477d5445e2713b3d869553910bb22a blob 888 bytes (raw)

 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
 
#if !(__ARM_ARCH_6M__ || __ARM_ARCH_7M__ || __ARM_ARCH_7EM__ || (__ARM_ARCH > 7 && !__ARM_ARCH_ISA_ARM)) \
 && (((__ARM_ARCH_6K__ || __ARM_ARCH_6KZ__ || __ARM_ARCH_6ZK__) && !__thumb__) \
 || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || __ARM_ARCH >= 7)

static inline pthread_t __pthread_self()
{
	char *p;
	__asm__ ( "mrc p15,0,%0,c13,c0,3" : "=r"(p) );
	return (void *)(p-sizeof(struct pthread));
}

#else

#if __ARM_ARCH_4__ || __ARM_ARCH_4T__ || __ARM_ARCH == 4
#define BLX "mov lr,pc\n\tbx"
#else
#define BLX "blx"
#endif

static inline pthread_t __pthread_self()
{
	extern hidden uintptr_t __a_gettp_ptr;
	register uintptr_t p __asm__("r0");
	__asm__ ( BLX " %1" : "=r"(p) : "r"(__a_gettp_ptr) : "cc", "lr" );
	return (void *)(p-sizeof(struct pthread));
}

#endif

#define TLS_ABOVE_TP
#define GAP_ABOVE_TP 8
#define TP_ADJ(p) ((char *)(p) + sizeof(struct pthread))

#define MC_PC arm_pc
debug log:

solving ab8f2af2 ...
found ab8f2af2 in https://inbox.vuxu.org/musl/CALqyXLhqNtZ55Nbs62j8yKCQ0mvCzCazSCCF2MTYuhSWUwF6tQ@mail.gmail.com/
found e689ea21 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 e689ea212ae22e148788deec9e74f5b2e9f49f7d	arch/arm/pthread_arch.h

applying [1/1] https://inbox.vuxu.org/musl/CALqyXLhqNtZ55Nbs62j8yKCQ0mvCzCazSCCF2MTYuhSWUwF6tQ@mail.gmail.com/
diff --git a/arch/arm/pthread_arch.h b/arch/arm/pthread_arch.h
index e689ea21..ab8f2af2 100644

Checking patch arch/arm/pthread_arch.h...
Applied patch arch/arm/pthread_arch.h cleanly.

index at:
100644 ab8f2af2ba477d5445e2713b3d869553910bb22a	arch/arm/pthread_arch.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).