semaphore.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ALPHA_SEMAPHORE_H
  2. #define _ALPHA_SEMAPHORE_H
  3. /*
  4.  * SMP- and interrupt-safe semaphores..
  5.  *
  6.  * (C) Copyright 1996 Linus Torvalds
  7.  * (C) Copyright 1996, 2000 Richard Henderson
  8.  */
  9. #include <asm/current.h>
  10. #include <asm/system.h>
  11. #include <asm/atomic.h>
  12. #include <linux/compiler.h>
  13. #include <linux/wait.h>
  14. #include <linux/rwsem.h>
  15. struct semaphore {
  16. /* Careful, inline assembly knows about the position of these two.  */
  17. atomic_t count __attribute__((aligned(8)));
  18. atomic_t waking; /* biased by -1 */
  19. wait_queue_head_t wait;
  20. #if WAITQUEUE_DEBUG
  21. long __magic;
  22. #endif
  23. };
  24. #if WAITQUEUE_DEBUG
  25. # define __SEM_DEBUG_INIT(name) , (long)&(name).__magic
  26. #else
  27. # define __SEM_DEBUG_INIT(name)
  28. #endif
  29. #define __SEMAPHORE_INITIALIZER(name,count)
  30. { ATOMIC_INIT(count), ATOMIC_INIT(-1),
  31.   __WAIT_QUEUE_HEAD_INITIALIZER((name).wait)
  32.   __SEM_DEBUG_INIT(name) }
  33. #define __MUTEX_INITIALIZER(name) 
  34. __SEMAPHORE_INITIALIZER(name,1)
  35. #define __DECLARE_SEMAPHORE_GENERIC(name,count) 
  36. struct semaphore name = __SEMAPHORE_INITIALIZER(name,count)
  37. #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name,1)
  38. #define DECLARE_MUTEX_LOCKED(name) __DECLARE_SEMAPHORE_GENERIC(name,0)
  39. static inline void sema_init(struct semaphore *sem, int val)
  40. {
  41. /*
  42.  * Logically, 
  43.  *   *sem = (struct semaphore)__SEMAPHORE_INITIALIZER((*sem),val);
  44.  * except that gcc produces better initializing by parts yet.
  45.  */
  46. atomic_set(&sem->count, val);
  47. atomic_set(&sem->waking, -1);
  48. init_waitqueue_head(&sem->wait);
  49. #if WAITQUEUE_DEBUG
  50. sem->__magic = (long)&sem->__magic;
  51. #endif
  52. }
  53. static inline void init_MUTEX (struct semaphore *sem)
  54. {
  55. sema_init(sem, 1);
  56. }
  57. static inline void init_MUTEX_LOCKED (struct semaphore *sem)
  58. {
  59. sema_init(sem, 0);
  60. }
  61. extern void down(struct semaphore *);
  62. extern void __down_failed(struct semaphore *);
  63. extern int  down_interruptible(struct semaphore *);
  64. extern int  __down_failed_interruptible(struct semaphore *);
  65. extern int  down_trylock(struct semaphore *);
  66. extern void up(struct semaphore *);
  67. extern void __up_wakeup(struct semaphore *);
  68. static inline int sem_getcount(struct semaphore *sem)
  69. {
  70. return atomic_read(&sem->count);
  71. }
  72. /*
  73.  * Hidden out of line code is fun, but extremely messy.  Rely on newer
  74.  * compilers to do a respectable job with this.  The contention cases
  75.  * are handled out of line in arch/alpha/kernel/semaphore.c.
  76.  */
  77. static inline void __down(struct semaphore *sem)
  78. {
  79. long count = atomic_dec_return(&sem->count);
  80. if (unlikely(count < 0))
  81. __down_failed(sem);
  82. }
  83. static inline int __down_interruptible(struct semaphore *sem)
  84. {
  85. long count = atomic_dec_return(&sem->count);
  86. if (unlikely(count < 0))
  87. return __down_failed_interruptible(sem);
  88. return 0;
  89. }
  90. /*
  91.  * down_trylock returns 0 on success, 1 if we failed to get the lock.
  92.  *
  93.  * We must manipulate count and waking simultaneously and atomically.
  94.  * Do this by using ll/sc on the pair of 32-bit words.
  95.  */
  96. static inline int __down_trylock(struct semaphore * sem)
  97. {
  98. long ret, tmp, tmp2, sub;
  99. /* "Equivalent" C.  Note that we have to do this all without
  100.    (taken) branches in order to be a valid ll/sc sequence.
  101.    do {
  102. tmp = ldq_l;
  103. sub = 0x0000000100000000;
  104. ret = ((int)tmp <= 0); // count <= 0 ?
  105. // Note that if count=0, the decrement overflows into
  106. // waking, so cancel the 1 loaded above.  Also cancel
  107. // it if the lock was already free.
  108. if ((int)tmp >= 0) sub = 0; // count >= 0 ?
  109. ret &= ((long)tmp < 0); // waking < 0 ?
  110. sub += 1;
  111. if (ret) break;
  112. tmp -= sub;
  113. tmp = stq_c = tmp;
  114.    } while (tmp == 0);
  115. */
  116. __asm__ __volatile__(
  117. "1: ldq_l %1,%4n"
  118. " lda %3,1n"
  119. " addl %1,0,%2n"
  120. " sll %3,32,%3n"
  121. " cmple %2,0,%0n"
  122. " cmovge %2,0,%3n"
  123. " cmplt %1,0,%2n"
  124. " addq %3,1,%3n"
  125. " and %0,%2,%0n"
  126. " bne %0,2fn"
  127. " subq %1,%3,%1n"
  128. " stq_c %1,%4n"
  129. " beq %1,3fn"
  130. "2: mbn"
  131. ".subsection 2n"
  132. "3: br 1bn"
  133. ".previous"
  134. : "=&r"(ret), "=&r"(tmp), "=&r"(tmp2), "=&r"(sub)
  135. : "m"(*sem)
  136. : "memory");
  137. return ret;
  138. }
  139. static inline void __up(struct semaphore *sem)
  140. {
  141. long ret, tmp, tmp2, tmp3;
  142. /* We must manipulate count and waking simultaneously and atomically.
  143.    Otherwise we have races between up and __down_failed_interruptible
  144.    waking up on a signal.
  145.    "Equivalent" C.  Note that we have to do this all without
  146.    (taken) branches in order to be a valid ll/sc sequence.
  147.    do {
  148. tmp = ldq_l;
  149. ret = (int)tmp + 1; // count += 1;
  150. tmp2 = tmp & 0xffffffff00000000; // extract waking
  151. if (ret <= 0) // still sleepers?
  152. tmp2 += 0x0000000100000000; // waking += 1;
  153. tmp = ret & 0x00000000ffffffff; // insert count
  154. tmp |= tmp2; // insert waking;
  155.        tmp = stq_c = tmp;
  156.    } while (tmp == 0);
  157. */
  158. __asm__ __volatile__(
  159. " mbn"
  160. "1: ldq_l %1,%4n"
  161. " addl %1,1,%0n"
  162. " zapnot %1,0xf0,%2n"
  163. " addq %2,%5,%3n"
  164. " cmovle %0,%3,%2n"
  165. " zapnot %0,0x0f,%1n"
  166. " bis %1,%2,%1n"
  167. " stq_c %1,%4n"
  168. " beq %1,3fn"
  169. "2:n"
  170. ".subsection 2n"
  171. "3: br 1bn"
  172. ".previous"
  173. : "=&r"(ret), "=&r"(tmp), "=&r"(tmp2), "=&r"(tmp3)
  174. : "m"(*sem), "r"(0x0000000100000000)
  175. : "memory");
  176. if (unlikely(ret <= 0))
  177. __up_wakeup(sem);
  178. }
  179. #if !WAITQUEUE_DEBUG && !defined(CONFIG_DEBUG_SEMAPHORE)
  180. extern inline void down(struct semaphore *sem)
  181. {
  182. __down(sem);
  183. }
  184. extern inline int down_interruptible(struct semaphore *sem)
  185. {
  186. return __down_interruptible(sem);
  187. }
  188. extern inline int down_trylock(struct semaphore *sem)
  189. {
  190. return __down_trylock(sem);
  191. }
  192. extern inline void up(struct semaphore *sem)
  193. {
  194. __up(sem);
  195. }
  196. #endif
  197. #endif