2 * Assembly implementation of the mutex fastpath, based on atomic
5 * started by Ingo Molnar:
7 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 #ifndef _ASM_X86_MUTEX_32_H
10 #define _ASM_X86_MUTEX_32_H
12 #include <asm/alternative.h>
15 * __mutex_fastpath_lock - try to take the lock by moving the count
17 * @count: pointer of type atomic_t
18 * @fn: function to call if the original value was not 1
20 * Change the count from 1 to a value lower than 1, and call <fn> if it
21 * wasn't 1 originally. This function MUST leave the value lower than 1
22 * even when the "1" assertion wasn't true.
24 #define __mutex_fastpath_lock(count, fail_fn) \
28 typecheck(atomic_t *, count); \
29 typecheck_fn(void (*)(atomic_t *), fail_fn); \
31 asm volatile(LOCK_PREFIX " decl (%%eax)\n" \
33 " call " #fail_fn "\n" \
37 : "memory", "ecx", "edx"); \
42 * __mutex_fastpath_lock_retval - try to take the lock by moving the count
44 * @count: pointer of type atomic_t
46 * Change the count from 1 to a value lower than 1. This function returns 0
47 * if the fastpath succeeds, or -1 otherwise.
49 static inline int __mutex_fastpath_lock_retval(atomic_t
*count
)
51 if (unlikely(atomic_dec_return(count
) < 0))
58 * __mutex_fastpath_unlock - try to promote the mutex from 0 to 1
59 * @count: pointer of type atomic_t
60 * @fail_fn: function to call if the original value was not 0
62 * try to promote the mutex from 0 to 1. if it wasn't 0, call <fail_fn>.
63 * In the failure case, this function is allowed to either set the value
64 * to 1, or to set it to a value lower than 1.
66 * If the implementation sets it to a value of lower than 1, the
67 * __mutex_slowpath_needs_to_unlock() macro needs to return 1, it needs
68 * to return 0 otherwise.
70 #define __mutex_fastpath_unlock(count, fail_fn) \
74 typecheck(atomic_t *, count); \
75 typecheck_fn(void (*)(atomic_t *), fail_fn); \
77 asm volatile(LOCK_PREFIX " incl (%%eax)\n" \
79 " call " #fail_fn "\n" \
83 : "memory", "ecx", "edx"); \
86 #define __mutex_slowpath_needs_to_unlock() 1
89 * __mutex_fastpath_trylock - try to acquire the mutex, without waiting
91 * @count: pointer of type atomic_t
92 * @fail_fn: fallback function
94 * Change the count from 1 to a value lower than 1, and return 0 (failure)
95 * if it wasn't 1 originally, or return 1 (success) otherwise. This function
96 * MUST leave the value lower than 1 even when the "1" assertion wasn't true.
97 * Additionally, if the value was < 0 originally, this function must not leave
100 static inline int __mutex_fastpath_trylock(atomic_t
*count
,
101 int (*fail_fn
)(atomic_t
*))
104 * We have two variants here. The cmpxchg based one is the best one
105 * because it never induce a false contention state. It is included
106 * here because architectures using the inc/dec algorithms over the
107 * xchg ones are much more likely to support cmpxchg natively.
109 * If not we fall back to the spinlock based variant - that is
110 * just as efficient (and simpler) as a 'destructive' probing of
111 * the mutex state would be.
113 #ifdef __HAVE_ARCH_CMPXCHG
114 if (likely(atomic_cmpxchg(count
, 1, 0) == 1))
118 return fail_fn(count
);
122 #endif /* _ASM_X86_MUTEX_32_H */