]> granicus.if.org Git - postgresql/blob - src/include/storage/s_lock.h
Add ARM32 support by Andrew McMurry
[postgresql] / src / include / storage / s_lock.h
1 /*-------------------------------------------------------------------------
2  *
3  * s_lock.h
4  *         This file contains the implementation (if any) for spinlocks.
5  *
6  * Copyright (c) 1994, Regents of the University of California
7  *
8  *
9  * IDENTIFICATION
10  *        $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.59 1999/04/13 17:42:26 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14
15 /*
16  *       DESCRIPTION
17  *              The public macros that must be provided are:
18  *
19  *              void S_INIT_LOCK(slock_t *lock)
20  *
21  *              void S_LOCK(slock_t *lock)
22  *
23  *              void S_UNLOCK(slock_t *lock)
24  *
25  *              void S_LOCK_FREE(slock_t *lock)
26  *                      Tests if the lock is free. Returns non-zero if free, 0 if locked.
27  *
28  *              The S_LOCK() macro      implements a primitive but still useful random
29  *              backoff to avoid hordes of busywaiting lockers chewing CPU.
30  *
31  *              Effectively:
32  *              void
33  *              S_LOCK(slock_t *lock)
34  *              {
35  *                      while (TAS(lock))
36  *                      {
37  *                      // back off the cpu for a semi-random short time
38  *                      }
39  *              }
40  *
41  *              This implementation takes advantage of a tas function written
42  *              (in assembly language) on machines that have a native test-and-set
43  *              instruction. Alternative mutex implementations may also be used.
44  *              This function is hidden under the TAS macro to allow substitutions.
45  *
46  *              #define TAS(lock) tas(lock)
47  *              int tas(slock_t *lock)          // True if lock already set
48  *
49  *              There are default implementations for all these macros at the bottom
50  *              of this file. Check if your platform can use these or needs to
51  *              override them.
52  *
53  *      NOTES
54  *              If none of this can be done, POSTGRES will default to using
55  *              System V semaphores (and take a large performance hit -- around 40%
56  *              of its time on a DS5000/240 is spent in semop(3)...).
57  *
58  *              AIX has a test-and-set but the recommended interface is the cs(3)
59  *              system call.  This provides an 8-instruction (plus system call
60  *              overhead) uninterruptible compare-and-set operation.  True
61  *              spinlocks might be faster but using cs(3) still speeds up the
62  *              regression test suite by about 25%.  I don't have an assembler
63  *              manual for POWER in any case.
64  *
65  */
66 #if !defined(S_LOCK_H)
67 #define S_LOCK_H
68
69 #include "storage/ipc.h"
70
71 extern void s_lock_sleep(unsigned spin);
72
73 #if defined(HAS_TEST_AND_SET)
74
75
76 #if defined(__GNUC__)
77 /*************************************************************************
78  * All the gcc inlines
79  */
80
81 #if defined(__alpha)
82 #define TAS(lock) tas(lock)
83 #define S_UNLOCK(lock) { __asm__("mb"); *(lock) = 0; }
84
85 static __inline__ int
86 tas(volatile slock_t *lock)
87 {
88         register slock_t _res;
89
90 __asm__("    ldq   $0, %0              \n\
91                  bne   $0, 3f          \n\
92                  ldq_l $0, %0              \n\
93                  bne   $0, 3f          \n\
94                  or    $31, 1, $0          \n\
95                  stq_c $0, %0              \n\
96                  beq   $0, 2f              \n\
97                  bis   $31, $31, %1        \n\
98                  mb                                \n\
99                  jmp   $31, 4f             \n\
100               2: or    $31, 1, $0              \n\
101               3: bis   $0, $0, %1              \n\
102               4: nop      ": "=m"(*lock), "=r"(_res): :"0");
103
104         return (int) _res;
105 }
106
107 #endif   /* __alpha */
108
109
110
111 #if defined(i386)
112 #define TAS(lock) tas(lock)
113
114 static __inline__ int
115 tas(volatile slock_t *lock)
116 {
117         register slock_t _res = 1;
118
119 __asm__("lock; xchgb %0,%1": "=q"(_res), "=m"(*lock):"0"(_res));
120         return (int) _res;
121 }
122
123 #endif   /* i386 */
124
125
126
127 #if defined(__arm32__)
128 #define TAS(lock) tas(lock)
129
130 static __inline__ int
131 tas(volatile slock_t *lock)
132 {
133         register slock_t _res = 1;
134
135 __asm__("swpb %0, %0, [%3]": "=r"(_res), "=m"(*lock):"0"(_res), "r" (lock));
136         return (int) _res;
137 }
138
139 #endif   /* __arm32__ */
140
141
142
143 #if defined(sparc)
144 #define TAS(lock) tas(lock)
145
146 static __inline__ int
147 tas(volatile slock_t *lock)
148 {
149         register slock_t _res = 1;
150
151         __asm__("ldstub [%2], %0" \
152 :                       "=r"(_res), "=m"(*lock) \
153 :                       "r"(lock));
154         return (int) _res;
155 }
156
157 #endif   /* sparc */
158
159
160
161 #if defined(NEED_VAX_TAS_ASM)
162 /*
163  * VAXen -- even multiprocessor ones
164  * (thanks to Tom Ivar Helbekkmo)
165  */
166 #define TAS(lock) tas(lock)
167
168 typedef unsigned char slock_t;
169
170 static __inline__ int
171 tas(volatile slock_t *lock)
172 {
173         register        _res;
174
175         __asm__("       movl $1, r0 \
176                         bbssi $0, (%1), 1 f \
177                         clrl r0 \
178 1:                      movl r0, %0 "
179 :                       "=r"(_res)                      /* return value, in register */
180 :                       "r"(lock)                       /* argument, 'lock pointer', in register */
181 :                       "r0");                          /* inline code uses this register */
182         return (int) _res;
183 }
184
185 #endif   /* NEED_VAX_TAS_ASM */
186
187
188
189 #if defined(NEED_NS32K_TAS_ASM)
190 #define TAS(lock) tas(lock)
191
192 static __inline__ int
193 tas(volatile slock_t *lock)
194 {
195   register _res;
196   __asm__("sbitb 0, %0 \n\
197         sfsd %1"
198         : "=m"(*lock), "=r"(_res));
199   return (int) _res; 
200 }
201
202 #endif  /* NEED_NS32K_TAS_ASM */
203
204
205
206 #else                                                   /* __GNUC__ */
207 /***************************************************************************
208  * All non gcc
209  */
210
211 #if defined(__alpha)
212 /*
213  * OSF/1 (Alpha AXP)
214  *
215  * Note that slock_t on the Alpha AXP is msemaphore instead of char
216  * (see storage/ipc.h).
217  */
218 #define TAS(lock)       (msem_lock((lock), MSEM_IF_NOWAIT) < 0)
219 #define S_UNLOCK(lock)  msem_unlock((lock), 0)
220 #define S_INIT_LOCK(lock)       msem_init((lock), MSEM_UNLOCKED)
221 #define S_LOCK_FREE(lock)       (!(lock)->msem_state)
222 #endif   /* __alpha */
223
224
225
226 #if defined(NEED_I386_TAS_ASM)
227 /* non gcc i386 based things */
228
229 #if defined(USE_UNIVEL_CC)
230 #define TAS(lock)       tas(lock)
231
232 asm int
233 tas(slock_t *s_lock)
234 {
235 /* UNIVEL wants %mem in column 1, so we don't pg_indent this file */
236 %mem s_lock
237         pushl %ebx
238         movl s_lock, %ebx
239         movl $255, %eax
240         lock
241         xchgb %al, (%ebx)
242         popl %ebx
243 }
244
245 #endif   /* USE_UNIVEL_CC */
246
247 #endif   /* NEED_I386_TAS_ASM */
248
249 #endif   /* defined(__GNUC__) */
250
251
252
253 /*************************************************************************
254  * These are the platforms that have common code for gcc and non-gcc
255  */
256
257 #if defined(__hpux)
258 /*
259  * HP-UX (PA-RISC)
260  *
261  * Note that slock_t on PA-RISC is a structure instead of char
262  * (see include/port/hpux.h).
263  *
264  * a "set" slock_t has a single word cleared.  a "clear" slock_t has
265  * all words set to non-zero. tas() in tas.s
266  */
267
268 #define S_UNLOCK(lock) \
269 { \
270         volatile slock_t *lock_ = (volatile slock_t *) (lock); \
271         lock_->sema[0] = lock_->sema[1] = lock_->sema[2] = lock_->sema[3] = -1; \
272 }
273
274 #define S_LOCK_FREE(lock)       ( *(int *) (((long) (lock) + 15) & ~15) != 0)
275
276 #endif   /* __hpux */
277
278
279 #if defined(__sgi)
280 /*
281  * SGI IRIX 5
282  * slock_t is defined as a unsigned long. We use the standard SGI
283  * mutex API. 
284  *
285  * The following comment is left for historical reasons, but is probably
286  * not a good idea since the mutex ABI is supported.
287  *
288  * This stuff may be supplemented in the future with Masato Kataoka's MIPS-II
289  * assembly from his NECEWS SVR4 port, but we probably ought to retain this
290  * for the R3000 chips out there.
291  */
292 #include <mutex.h>
293 #define TAS(lock)       (test_and_set(lock,1))
294 #define S_UNLOCK(lock)  (test_then_and(lock,0))
295 #define S_INIT_LOCK(lock)       (test_then_and(lock,0))
296 #define S_LOCK_FREE(lock)       (test_then_add(lock,0) == 0)
297 #endif   /* __sgi */
298
299 #if defined(sinix)
300 /*
301  * SINIX / Reliant UNIX 
302  * slock_t is defined as a struct abilock_t, which has a single unsigned long
303  * member. (Basically same as SGI)
304  *
305  */
306 #define TAS(lock)       (!acquire_lock(lock))
307 #define S_UNLOCK(lock)  release_lock(lock)
308 #define S_INIT_LOCK(lock)       init_lock(lock)
309 #define S_LOCK_FREE(lock)       (stat_lock(lock) == UNLOCKED)
310 #endif   /* sinix */
311  
312
313 #if defined(_AIX)
314 /*
315  * AIX (POWER)
316  *
317  * Note that slock_t on POWER/POWER2/PowerPC is int instead of char
318  * (see storage/ipc.h).
319  */
320 #define TAS(lock)       cs((int *) (lock), 0, 1)
321 #endif   /* _AIX */
322
323
324 #if defined (nextstep)
325 /*
326  * NEXTSTEP (mach)
327  * slock_t is defined as a struct mutex.
328  */
329
330 #define S_LOCK(lock)    mutex_lock(lock)
331 #define S_UNLOCK(lock)  mutex_unlock(lock)
332 #define S_INIT_LOCK(lock)       mutex_init(lock)
333 /* For Mach, we have to delve inside the entrails of `struct mutex'.  Ick! */
334 #define S_LOCK_FREE(alock)      ((alock)->lock == 0)
335 #endif   /* nextstep */
336
337
338
339
340 /****************************************************************************
341  * Default Definitions - override these above as needed.
342  */
343
344 #if !defined(S_LOCK)
345 extern void s_lock(volatile slock_t *lock, const char *file, const int line);
346
347 #define S_LOCK(lock) \
348         do { \
349                 if (TAS((volatile slock_t *) lock)) \
350                         s_lock((volatile slock_t *) lock, __FILE__, __LINE__); \
351         } while (0)
352 #endif   /* S_LOCK */
353
354 #if !defined(S_LOCK_FREE)
355 #define S_LOCK_FREE(lock)       (*(lock) == 0)
356 #endif   /* S_LOCK_FREE */
357
358 #if !defined(S_UNLOCK)
359 #define S_UNLOCK(lock)          (*(lock) = 0)
360 #endif   /* S_UNLOCK */
361
362 #if !defined(S_INIT_LOCK)
363 #define S_INIT_LOCK(lock)       S_UNLOCK(lock)
364 #endif   /* S_INIT_LOCK */
365
366 #if !defined(TAS)
367 int                     tas(volatile slock_t *lock);            /* port/.../tas.s, or
368                                                                                                  * s_lock.c */
369
370 #define TAS(lock)               tas((volatile slock_t *) lock)
371 #endif   /* TAS */
372
373 #endif   /* HAS_TEST_AND_SET */
374 #endif   /* S_LOCK_H */