blob: 80ceee1008f50e0600323e83c41e4b2891b7c16c (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* $OpenBSD: lock.h,v 1.7 2011/07/02 22:19:16 guenther Exp $ */
/* public domain */
#ifndef _MACHINE_LOCK_H_
#define _MACHINE_LOCK_H_
#include <machine/atomic.h>
#include <machine/ctlreg.h>
typedef volatile u_int8_t __cpu_simple_lock_t;
#define __SIMPLELOCK_LOCKED 0xff
#define __SIMPLELOCK_UNLOCKED 0x00
static __inline__ void
__cpu_simple_lock_init(__cpu_simple_lock_t *l)
{
*l = __SIMPLELOCK_UNLOCKED;
}
static __inline__ u_int8_t
__cpu_ldstub(__cpu_simple_lock_t *l)
{
u_int8_t old;
__asm__ __volatile__
("ldstub [%1], %0" : "=&r" (old) : "r" (l) : "memory");
return old;
}
static __inline__ void
__cpu_simple_lock(__cpu_simple_lock_t *l)
{
while (__cpu_ldstub(l) != __SIMPLELOCK_UNLOCKED)
while (*l != __SIMPLELOCK_UNLOCKED)
;
membar(LoadLoad | LoadStore); /* only needed for PSO and RMO */
}
static __inline__ int
__cpu_simple_lock_try(__cpu_simple_lock_t *l)
{
if (__cpu_ldstub(l) != __SIMPLELOCK_UNLOCKED)
return (0);
membar(LoadLoad | LoadStore); /* only needed for PSO and RMO */
return (1);
}
static __inline__ void
__cpu_simple_unlock(__cpu_simple_lock_t *l)
{
membar(StoreStore | LoadStore); /* only needed for PSO and RMO */
*l = __SIMPLELOCK_UNLOCKED;
}
#define rw_cas(p, o, n) (sparc64_casx(p, o, n) != o)
#endif /* _MACHINE_LOCK_H_ */
|