Plan 9 from Bell Labs’s /usr/web/sources/contrib/miller/libc/arm/tas.s

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#define DMB	MCR 15, 0, R0, C7, C10, 5
#define	STREX(f,tp,r) WORD $(0xe<<28|0x01800f90 | (tp)<<16 | (r)<<12 | (f)<<0)
#define	LDREX(fp,t)   WORD $(0xe<<28|0x01900f9f | (fp)<<16 | (t)<<12)
#define	CLREX	WORD	$0xf57ff01f

TEXT	_tas(SB), $-4			/* _tas(ulong *) */
	/* returns old (R0) after modifying (R0) */
	MOVW	R0,R5
	DMB

	MOVW	$1,R2		/* new value of (R0) */
tas1:
	LDREX(5,0)		/* LDREX 0(R5),R0 */
	CMP.S	$0, R0		/* old value non-zero (lock taken)? */
	BNE	lockbusy	/* we lose */
	STREX(2,5,4)		/* STREX R2,(R5),R4 */
	CMP.S	$0, R4
	BNE	tas1		/* strex failed? try again */
	DMB
	RET
lockbusy:
	CLREX
	RET

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.