spinlock.S 420 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
;; Core of the spinlock implementation
;;
;; Copyright (C) 2004 Axis Communications AB.
;;
;; Author: Mikael Starvik


	.global cris_spin_lock
	.global cris_spin_trylock

	.text

cris_spin_lock:
	clearf	p
15
1:	test.b	[$r10]
16 17 18
	beq	1b
	clearf	p
	ax
19
	clear.b [$r10]
20 21 22 23 24 25 26
	bcs     1b
	clearf	p
	ret
	nop

cris_spin_trylock:
	clearf	p
27
1:	move.b	[$r10], $r11
28
	ax
29
	clear.b [$r10]
30 31 32
        bcs	1b
        clearf	p
	ret
33
	movu.b	$r11,$r10