2013-12-06 12:04:52 +01:00
|
|
|
/* $NetBSD: __aeabi_read_tp.S,v 1.5 2013/08/19 22:10:51 matt Exp $ */
|
|
|
|
|
|
|
|
#undef __thumb__
|
2012-11-15 12:06:41 +01:00
|
|
|
#include "SYS.h"
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
/*
|
|
|
|
* Implementations of this function should corrupt only the result register
|
|
|
|
* (r0) and the non-parameter integer core registers allowed to be corrupted
|
|
|
|
* by the [AAPCS] (ip, lr, and CPSR).
|
|
|
|
*/
|
|
|
|
ARM_ENTRY(__aeabi_read_tp)
|
|
|
|
mrc p15, 0, r0, c13, c0, 3
|
2012-11-15 12:06:41 +01:00
|
|
|
#ifndef _ARM_ARCH_6
|
2013-12-06 12:04:52 +01:00
|
|
|
cmp r0, #0 /* was it zero? */
|
2012-11-15 12:06:41 +01:00
|
|
|
RETc(ne) /* return it's not zero */
|
2013-12-06 12:04:52 +01:00
|
|
|
mov ip, r1 /* syscall zeroes r1 */
|
2012-11-15 12:06:41 +01:00
|
|
|
SYSTRAP(_lwp_getprivate) /* can't fail */
|
2013-12-06 12:04:52 +01:00
|
|
|
mov r1, ip /* restore r1 */
|
2012-11-15 12:06:41 +01:00
|
|
|
#endif
|
|
|
|
RET
|
2013-12-06 12:04:52 +01:00
|
|
|
END(__aeabi_read_tp)
|