]> granicus.if.org Git - postgresql/blob - src/backend/storage/lmgr/s_lock.c
84e8291f016483b7e46fc77499af0e550e0614d3
[postgresql] / src / backend / storage / lmgr / s_lock.c
1 /*-------------------------------------------------------------------------
2  *
3  * s_lock.c
4  *         Hardware-dependent implementation of spinlocks.
5  *
6  *
7  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  *
11  * IDENTIFICATION
12  *        $PostgreSQL: pgsql/src/backend/storage/lmgr/s_lock.c,v 1.28 2004/06/19 20:31:55 tgl Exp $
13  *
14  *-------------------------------------------------------------------------
15  */
16 #include "postgres.h"
17
18 #include <time.h>
19 #include <unistd.h>
20
21 #include "storage/s_lock.h"
22 #include "miscadmin.h"
23
24 /*
25  * s_lock_stuck() - complain about a stuck spinlock
26  */
27 static void
28 s_lock_stuck(volatile slock_t *lock, const char *file, int line)
29 {
30 #if defined(S_LOCK_TEST)
31         fprintf(stderr,
32                         "\nStuck spinlock (%p) detected at %s:%d.\n",
33                         lock, file, line);
34         exit(1);
35 #else
36         elog(PANIC, "stuck spinlock (%p) detected at %s:%d",
37                  lock, file, line);
38 #endif
39 }
40
41
42 /*
43  * s_lock(lock) - platform-independent portion of waiting for a spinlock.
44  */
45 void
46 s_lock(volatile slock_t *lock, const char *file, int line)
47 {
48         /*
49          * We loop tightly for awhile, then delay using pg_usleep() and try
50          * again. Preferably, "awhile" should be a small multiple of the
51          * maximum time we expect a spinlock to be held.  100 iterations seems
52          * about right.  In most multi-CPU scenarios, the spinlock is probably
53          * held by a process on another CPU and will be released before we
54          * finish 100 iterations.  However, on a uniprocessor, the tight loop
55          * is just a waste of cycles, so don't iterate thousands of times.
56          *
57          * Once we do decide to block, we use randomly increasing pg_usleep()
58          * delays. The first delay is 10 msec, then the delay randomly
59          * increases to about one second, after which we reset to 10 msec and
60          * start again.  The idea here is that in the presence of heavy
61          * contention we need to increase the delay, else the spinlock holder
62          * may never get to run and release the lock.  (Consider situation
63          * where spinlock holder has been nice'd down in priority by the
64          * scheduler --- it will not get scheduled until all would-be
65          * acquirers are sleeping, so if we always use a 10-msec sleep, there
66          * is a real possibility of starvation.)  But we can't just clamp the
67          * delay to an upper bound, else it would take a long time to make a
68          * reasonable number of tries.
69          *
70          * We time out and declare error after NUM_DELAYS delays (thus, exactly
71          * that many tries).  With the given settings, this will usually take
72          * 3 or so minutes.  It seems better to fix the total number of tries
73          * (and thus the probability of unintended failure) than to fix the
74          * total time spent.
75          *
76          * The pg_usleep() delays are measured in centiseconds (0.01 sec) because 10
77          * msec is a common resolution limit at the OS level.
78          */
79 #define SPINS_PER_DELAY         100
80 #define NUM_DELAYS                      1000
81 #define MIN_DELAY_CSEC          1
82 #define MAX_DELAY_CSEC          100
83
84         int                     spins = 0;
85         int                     delays = 0;
86         int                     cur_delay = MIN_DELAY_CSEC;
87
88         while (TAS(lock))
89         {
90                 /* CPU-specific delay each time through the loop */
91                 SPIN_DELAY();
92
93                 /* Block the process every SPINS_PER_DELAY tries */
94                 if (++spins > SPINS_PER_DELAY)
95                 {
96                         if (++delays > NUM_DELAYS)
97                                 s_lock_stuck(lock, file, line);
98
99                         pg_usleep(cur_delay * 10000L);
100
101 #if defined(S_LOCK_TEST)
102                         fprintf(stdout, "*");
103                         fflush(stdout);
104 #endif
105
106                         /* increase delay by a random fraction between 1X and 2X */
107                         cur_delay += (int) (cur_delay *
108                           (((double) random()) / ((double) MAX_RANDOM_VALUE)) + 0.5);
109                         /* wrap back to minimum delay when max is exceeded */
110                         if (cur_delay > MAX_DELAY_CSEC)
111                                 cur_delay = MIN_DELAY_CSEC;
112
113                         spins = 0;
114                 }
115         }
116 }
117
118 /*
119  * Various TAS implementations that cannot live in s_lock.h as no inline
120  * definition exists (yet).
121  * In the future, get rid of tas.[cso] and fold it into this file.
122  *
123  * If you change something here, you will likely need to modify s_lock.h too,
124  * because the definitions for these are split between this file and s_lock.h.
125  */
126
127
128 #ifdef HAVE_SPINLOCKS   /* skip spinlocks if requested */
129
130
131 #if defined(__GNUC__)
132
133 /*
134  * All the gcc flavors that are not inlined
135  */
136
137
138 #if defined(__m68k__)
139 static void
140 tas_dummy()                                             /* really means: extern int tas(slock_t
141                                                                  * **lock); */
142 {
143         __asm__         __volatile__(
144                                                                                  "\
145 .global         _tas                            \n\
146 _tas:                                                   \n\
147                         movel   sp@(0x4),a0     \n\
148                         tas     a0@                     \n\
149                         beq     _success        \n\
150                         moveq   #-128,d0        \n\
151                         rts                                     \n\
152 _success:                                               \n\
153                         moveq   #0,d0           \n\
154                         rts                                     \n\
155 ");
156 }
157 #endif   /* __m68k__ */
158
159
160 #if defined(__mips__) && !defined(__sgi)
161 static void
162 tas_dummy()
163 {
164         __asm__         __volatile__(
165                                                                                  "\
166 .global tas                                             \n\
167 tas:                                                    \n\
168                         .frame  $sp, 0, $31     \n\
169                         .set push               \n\
170                         .set mips2              \n\
171                         ll              $14, 0($4)      \n\
172                         or              $15, $14, 1     \n\
173                         sc              $15, 0($4)      \n\
174                         .set pop                        \n\
175                         beq             $15, 0, fail\n\
176                         bne             $14, 0, fail\n\
177                         li              $2, 0           \n\
178                         .livereg 0x2000FF0E,0x00000FFF  \n\
179                         j               $31                     \n\
180 fail:                                                   \n\
181                         li              $2, 1           \n\
182                         j       $31                     \n\
183 ");
184 }
185 #endif   /* __mips__ && !__sgi */
186
187
188 #else                                                   /* not __GNUC__ */
189
190 /*
191  * All non gcc
192  */
193
194
195 #if defined(sun3)
196 static void
197 tas_dummy()                                             /* really means: extern int tas(slock_t
198                                                                  * *lock); */
199 {
200         asm("LLA0:");
201         asm("   .data");
202         asm("   .text");
203         asm("|#PROC# 04");
204         asm("   .globl  _tas");
205         asm("_tas:");
206         asm("|#PROLOGUE# 1");
207         asm("   movel   sp@(0x4),a0");
208         asm("   tas a0@");
209         asm("   beq LLA1");
210         asm("   moveq   #-128,d0");
211         asm("   rts");
212         asm("LLA1:");
213         asm("   moveq   #0,d0");
214         asm("   rts");
215         asm("   .data");
216 }
217 #endif   /* sun3 */
218
219
220 #if defined(__sparc__) || defined(__sparc)
221 /*
222  * sparc machines not using gcc
223  */
224 static void
225 tas_dummy()                                             /* really means: extern int tas(slock_t
226                                                                  * *lock); */
227 {
228         asm(".seg \"data\"");
229         asm(".seg \"text\"");
230         asm("_tas:");
231
232         /*
233          * Sparc atomic test and set (sparc calls it "atomic load-store")
234          */
235         asm("ldstub [%r8], %r8");
236         asm("retl");
237         asm("nop");
238 }
239 #endif   /* __sparc || __sparc__ */
240
241
242 #endif   /* not __GNUC__ */
243
244 #endif /* HAVE_SPINLOCKS */
245
246
247
248 /*****************************************************************************/
249 #if defined(S_LOCK_TEST)
250
251 /*
252  * test program for verifying a port's spinlock support.
253  */
254
255 volatile slock_t test_lock;
256
257 int
258 main()
259 {
260         srandom((unsigned int) time(NULL));
261
262         S_INIT_LOCK(&test_lock);
263
264         if (!S_LOCK_FREE(&test_lock))
265         {
266                 printf("S_LOCK_TEST: failed, lock not initialized\n");
267                 return 1;
268         }
269
270         S_LOCK(&test_lock);
271
272         if (S_LOCK_FREE(&test_lock))
273         {
274                 printf("S_LOCK_TEST: failed, lock not locked\n");
275                 return 1;
276         }
277
278         S_UNLOCK(&test_lock);
279
280         if (!S_LOCK_FREE(&test_lock))
281         {
282                 printf("S_LOCK_TEST: failed, lock not unlocked\n");
283                 return 1;
284         }
285
286         S_LOCK(&test_lock);
287
288         if (S_LOCK_FREE(&test_lock))
289         {
290                 printf("S_LOCK_TEST: failed, lock not re-locked\n");
291                 return 1;
292         }
293
294         printf("S_LOCK_TEST: this will print %d stars and then\n", NUM_DELAYS);
295         printf("             exit with a 'stuck spinlock' message\n");
296         printf("             if S_LOCK() and TAS() are working.\n");
297         fflush(stdout);
298
299         s_lock(&test_lock, __FILE__, __LINE__);
300
301         printf("S_LOCK_TEST: failed, lock not locked\n");
302         return 1;
303 }
304
305 #endif   /* S_LOCK_TEST */