Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/libthread/xincpower.s

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


TEXT	_xinc(SB),$0	/* void _xinc(long *); */

	MOVW	R3, R4
xincloop:
	LWAR	(R4), R3
	ADD		$1, R3
	DCBT	(R4)				/* fix 405 errata cpu_210 */
	STWCCC	R3, (R4)
	BNE		xincloop
	RETURN

TEXT	_xdec(SB),$0	/* long _xdec(long *); */

	MOVW	R3, R4
xdecloop:
	LWAR	(R4), R3
	ADD		$-1, R3
	DCBT	(R4)				/* fix 405 errata cpu_210 */
	STWCCC	R3, (R4)
	BNE		xdecloop
	RETURN

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.