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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
|
/*
flext - C++ layer for Max/MSP and pd (pure data) externals
Copyright (c) 2001-2005 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
/*! \file flcontainers.h
\brief Lock-free container classes
This code has been adapted from the MidiShare project (c)Grame
http://midishare.sourceforge.net
*/
#ifndef __FLCONTAINERS_H
#define __FLCONTAINERS_H
#include "flprefix.h"
// define that precautiously...
// it's faster without that but we can't really know...
#define __SMP__
class FLEXT_SHARE Lifo
{
public:
class Cell
{
friend class Lifo;
friend class Fifo;
private:
Cell *link;
};
inline Lifo() { Init(); }
inline void Init() { ic = oc = 0; top = NULL; }
inline Cell *Avail() { return (Cell *)top; }
#if defined(_MSC_VER) && FLEXT_CPU == FLEXT_CPU_IA32
#ifdef __SMP__
#define LOCK lock
#else
#define LOCK
#endif
inline void Push(Cell *cell)
{
__asm
{
push eax
push ebx
push ecx
push edx
push esi
mov esi, this
mov eax, dword ptr [esi]
mov ecx, cell
mov edx, dword ptr [esi+4]
_loop:
mov ebx, eax
inc ebx
mov [ecx], edx
LOCK cmpxchg8b qword ptr [esi]
jnz _loop
pop esi
pop edx
pop ecx
pop ebx
pop eax
}
}
inline Cell *Pop()
{
__asm
{
push ebx
push ecx
push edx
push esi
mov esi, this
add esi, 4 /* point to top */
mov edx, dword ptr [esi+4]
mov eax, dword ptr [esi]
test eax, eax
jz _end
_loop:
mov ebx, dword ptr [eax]
mov ecx, edx
inc ecx
LOCK cmpxchg8b qword ptr [esi]
jz _end
test eax, eax
jnz _loop
_end:
pop esi
pop edx
pop ecx
pop ebx
}
}
inline size_t Size() const { return ic-oc; }
#elif defined(__GNUC__) && FLEXT_CPU == FLEXT_CPU_IA32
#ifndef SMPLOCK
# ifdef __SMP__
# define SMPLOCK "lock ; "
# else
# define SMPLOCK ""
# endif
#endif
inline void Push(Cell *cl)
{
__asm__ __volatile__ (
"# LFPUSH \n\t"
"pushl %%ebx \n\t"
"pushl %%ecx \n\t"
"movl 0(%%esi), %%eax \n\t"
"movl 4(%%esi), %%edx \n"
"1: \t"
"movl %%eax, %%ebx \n\t"
"incl %%ebx \n\t"
"movl %%edx, (%%ecx) \n\t"
SMPLOCK "cmpxchg8b (%%esi) \n\t"
"jnz 1b \n\t"
"popl %%ecx \n\t"
"popl %%ebx \n\t"
:/* no output */
:"S" (this), "c" (cl)
:"memory", "eax", "edx");
}
inline Cell *Pop()
{
Cell *v=0;
__asm__ __volatile__ (
"# LFPOP \n\t"
"pushl %%ebx \n\t"
"pushl %%ecx \n\t"
"movl 4(%%esi), %%edx \n\t"
"movl (%%esi), %%eax \n\t"
"testl %%eax, %%eax \n\t"
"jz 20f \n"
"10: \t"
"movl (%%eax), %%ebx \n\t"
"movl %%edx, %%ecx \n\t"
"incl %%ecx \n\t"
SMPLOCK "cmpxchg8b (%%esi) \n\t"
"jz 20f \n\t"
"testl %%eax, %%eax \n\t"
"jnz 10b \n"
"20: \t"
"popl %%ecx \n\t"
"popl %%ebx \n\t"
:"=a" (v)
:"S" (&this->top)
:"memory", "edx");
return v;
}
inline size_t Size() const
{
size_t n;
__asm__ __volatile__ (
"# LFSIZE \n\t"
"movl 8(%%esi), %%edx \n\t"
"movl (%%esi), %%eax \n\t"
"subl %%edx, %%eax \n\t"
:"=a" (n)
:"S" (this)
:"memory", "edx");
return n;
}
#elif 0 //defined(__GNUC__) && FLEXT_CPU == FLEXT_CPU_X86_64
/* attention - this only works for EMT64 or newer revisions of AMD 64-bit cpus */
#ifndef SMPLOCK
# ifdef __SMP__
# define SMPLOCK "lock ; "
# else
# define SMPLOCK ""
# endif
#endif
inline void Push(Cell *cl)
{
__asm__ __volatile__ (
"# LFPUSH \n\t"
"push %%rbx \n\t"
"push %%rcx \n\t"
"mov 0(%%rsi), %%rax \n\t"
"mov 8(%%rsi), %%rdx \n"
"1: \t"
"mov %%rax, %%rbx \n\t"
"inc %%rbx \n\t"
"mov %%rdx, (%%rcx) \n\t"
SMPLOCK "cmpxchg16b (%%rsi) \n\t"
"jnz 1b \n\t"
"pop %%rcx \n\t"
"pop %%rbx \n\t"
:/* no output */
:"S" (this), "c" (cl)
:"memory", "rax", "rdx");
}
inline Cell *Pop()
{
Cell *v=0;
__asm__ __volatile__ (
"# LFPOP \n\t"
"push %%rbx \n\t"
"push %%rcx \n\t"
"mov 8(%%rsi), %%rdx \n\t"
"mov (%%rsi), %%rax \n\t"
"test %%rax, %%rax \n\t"
"jz 20f \n"
"10: \t"
"mov (%%rax), %%rbx \n\t"
"mov %%rdx, %%rcx \n\t"
"inc %%rcx \n\t"
SMPLOCK "cmpxchg16b (%%rsi) \n\t"
"jz 20f \n\t"
"test %%rax, %%rax \n\t"
"jnz 10b \n"
"20: \t"
"pop %%rcx \n\t"
"pop %%rbx \n\t"
:"=a" (v)
:"S" (&this->top)
:"memory", "rdx");
return v;
}
inline size_t Size() const
{
size_t n;
__asm__ __volatile__ (
"# LFSIZE \n\t"
"mov 16(%%rsi), %%rdx \n\t"
"mov (%%rsi), %%rax \n\t"
"sub %%rdx, %%rax \n\t"
:"=a" (n)
:"S" (this)
:"memory", "rdx");
return n;
}
#elif defined(__GNUC__) && FLEXT_CPU == FLEXT_CPU_PPC
inline void Push(register Cell *cl)
{
register volatile long t1;
register long t2=0;
asm volatile (
"# LFPUSH \n"
"0: \n"
" lwarx %0, %3, %1 \n"
" stw %0, 0(%2) \n"
" sync \n"
" stwcx. %2, %3, %1 \n"
" bne- 0b \n"
"0: \n"
" lwarx %0, %3, %4 \n"
" addi %0, %0, 1 \n"
" sync \n"
" stwcx. %0, %3, %4 \n"
" bne- 0b \n"
: "=r" (t1)
: "r" (&this->top), "r" (cl), "r" (t2), "r" (&this->oc), "0" (t1)
: "r0" /* prevents using r0 because of the ambiguity of 'addi' coding: */
/* gcc version 2.95.3 20010315 (release - Linux-Mandrake 8.0 for PPC) */
/* compiles the instruction "addi 0, 0, n" as li 0, n */
);
}
inline Cell *Pop()
{
register Cell *result;
register volatile long a, b;
register long c=0;
asm volatile (
"# LFPOP \n"
"0: \n"
" lwarx %4, %1, %2 \n" /* creates a reservation on lf */
" cmpwi %4, 0 \n" /* test if the lifo is empty */
" beq- 1f \n"
" lwz %5, 0(%4) \n" /* next cell in b */
" sync \n" /* synchronize instructions */
" stwcx. %5, %1, %2 \n" /* if the reservation is not altered */
/* modify lifo top */
" bne- 0b \n" /* otherwise: loop and try again */
"0: \n"
" lwarx %5, %1, %3 \n" /* creates a reservation on lf->count */
" addi %5, %5, -1 \n" /* dec count */
" sync \n" /* synchronize instructions */
" stwcx. %5, %1, %3 \n" /* conditionnal store */
" bne- 0b \n"
"1: \n"
" mr %0, %4 \n"
:"=r" (result), "=r" (c)
: "r" (&this->top), "r" (&this->oc), "r" (a), "r" (b), "1" (c)
: "r0" /* prevents using r0 because of the ambiguity of 'addi' coding: */
/* gcc version 2.95.3 20010315 (release - Linux-Mandrake 8.0 for PPC) */
/* compiles the instruction "addi 0, 0, n" as li 0, n */
);
return result;
}
inline size_t Size() const { return oc; }
#else
// no lock free code available for this compiler/platform
inline void Push(Cell *c)
{
#ifdef FLEXT_THREADS
mutex.Lock();
#endif
c->link = (Cell *)top;
top = c;
++oc;
#ifdef FLEXT_THREADS
mutex.Unlock();
#endif
}
inline Cell *Pop()
{
if(top) {
Cell *r;
#ifdef FLEXT_THREADS
mutex.Lock();
#endif
r = (Cell *)top;
top = r->link;
--oc;
#ifdef FLEXT_THREADS
mutex.Unlock();
#endif
return r;
}
else
return NULL;
}
inline size_t Size() const { return oc; }
private:
#ifdef FLEXT_THREADS
flext::ThrMutex mutex;
#endif
#endif
private:
// don't change order!
volatile size_t ic; // input (push) count
volatile Cell *top; // top of the stack
volatile size_t oc; // output (pop) count
#ifdef __POWERPC__
size_t unused[5]; // lifo size must be at least 32 bytes
// to avoid livelock in multiprocessor
#endif
};
template <typename T>
class TypedLifo
: public Lifo
{
public:
inline T *Avail() { return static_cast<T *>(Lifo::Avail()); }
inline void Push(T *c) { Lifo::Push(static_cast<T *>(c)); }
inline T *Pop() { return static_cast<T *>(Lifo::Pop()); }
};
template <typename T,int M = 2,int O = 1>
class PooledLifo
: public TypedLifo<T>
{
public:
inline T *New() { T *n = reuse.Pop(); return n?n:new T; }
inline size_t Size() const { return TypedLifo<T>::Size(); }
inline void Free(T *p) { if(reuse.Size() < Size()*M+O) reuse.Push(p); else delete p; }
private:
TypedLifo<T> reuse;
};
class FLEXT_SHARE Fifo
{
public:
typedef Lifo::Cell Cell;
void Init() { in.Init(); out.Init(); }
inline size_t Size() const { return in.Size()+out.Size(); }
inline void Put(Cell *cl) { in.Push(cl); }
Cell *Get()
{
Cell *v1 = out.Pop();
if(!v1) {
v1 = in.Pop();
if(v1)
for(Cell *v2; (v2 = in.Pop()) != NULL; v1 = v2)
out.Push(v1);
}
return v1;
}
Cell *Avail()
{
Cell *v1 = out.Avail();
if(v1)
return v1;
else {
for(Cell *v2; (v2 = in.Pop()) != NULL; )
out.Push(v2);
return out.Avail();
}
}
Cell *Clear()
{
Cell *first = Get();
if(!first) return NULL;
Cell *next,*cur = first;
while((next = Get()) != NULL) {
cur->link = next;
cur = next;
}
cur->link = NULL;
Init();
return first;
}
Lifo in,out;
};
template <typename T>
class TypedFifo
: public Fifo
{
public:
inline T *Avail() { return static_cast<T *>(Fifo::Avail()); }
inline void Put(T *c) { Fifo::Put(static_cast<T *>(c)); }
inline T *Get() { return static_cast<T *>(Fifo::Get()); }
inline T *Clear() { return static_cast<T *>(Fifo::Clear()); }
};
template <typename T,int M = 2,int O = 1>
class PooledFifo
: public TypedFifo<T>
{
public:
inline T *New() { T *n = reuse.Pop(); return n?n:new T; }
inline size_t Size() const { return TypedFifo<T>::Size(); }
inline void Free(T *p) { if(reuse.Size() < Size()*M+O) reuse.Push(p); else delete p; }
private:
TypedLifo<T> reuse;
};
#endif
|