mailing list of musl libc
 help / color / mirror / code / Atom feed
9155b9a41855839f5dcdb8a508d1e93e769b72e3 blob 810 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
 
#if ((__ARM_ARCH_6K__ || __ARM_ARCH_6KZ__ || __ARM_ARCH_6ZK__) && !__thumb__) \
 || __ARM_ARCH_7A__ || __ARM_ARCH_7R__ || (__ARM_ARCH >= 7 && __ARM_ARCH_PROFILE != 'M')

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 9155b9a4 ...
found 9155b9a4 in https://inbox.vuxu.org/musl/CALqyXLh0zwXPzvoBLaKx=jQx1eiQ22S2CSjsN47FntJAryst4w@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/CALqyXLh0zwXPzvoBLaKx=jQx1eiQ22S2CSjsN47FntJAryst4w@mail.gmail.com/
diff --git a/arch/arm/pthread_arch.h b/arch/arm/pthread_arch.h
index e689ea21..9155b9a4 100644

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

index at:
100644 9155b9a41855839f5dcdb8a508d1e93e769b72e3	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).