* Removed all Id tags.
[cacao.git] / src / threads / native / generic-primitives.h
1 /* src/threads/native/generic-primitives.h - machine independent atomic
2                                              operations
3
4    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
5    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
6    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
7    J. Wenninger, Institut f. Computersprachen - TU Wien
8
9    This file is part of CACAO.
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2, or (at
14    your option) any later version.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24    02110-1301, USA.
25
26    Contact: cacao@cacaojvm.org
27
28    Authors: Christian Thalinger
29             Anton Ertl
30
31    Changes: 
32
33
34 */
35
36
37 #ifndef _MACHINE_INSTR_H
38 #define _MACHINE_INSTR_H
39
40 #include <pthread.h>
41
42 extern pthread_mutex_t _atomic_add_lock;
43 extern pthread_mutex_t _cas_lock;
44 extern pthread_mutex_t _mb_lock;
45
46
47 static inline void atomic_add(volatile int *mem, int val)
48 {
49   pthread_mutex_lock(&_atomic_add_lock);
50
51   /* do the atomic add */
52   *mem += val;
53
54   pthread_mutex_unlock(&_atomic_add_lock);
55 }
56
57
58 static inline long compare_and_swap(volatile long *p, long oldval, long newval)
59 {
60   long ret;
61
62   pthread_mutex_lock(&_cas_lock);
63
64   /* do the compare-and-swap */
65
66   ret = *p;
67
68   if (oldval == ret)
69     *p = newval;
70
71   pthread_mutex_unlock(&_cas_lock);
72
73   return ret;
74 }
75
76
77 #define MEMORY_BARRIER()                  (pthread_mutex_lock(&_mb_lock), \
78                                            pthread_mutex_unlock(&_mb_lock))
79 #define STORE_ORDER_BARRIER()             MEMORY_BARRIER()
80 #define MEMORY_BARRIER_BEFORE_ATOMIC()    /* nothing */
81 #define MEMORY_BARRIER_AFTER_ATOMIC()     /* nothing */
82
83 #endif /* _MACHINE_INSTR_H */
84
85
86 /*
87  * These are local overrides for various environment variables in Emacs.
88  * Please do not remove this and leave it at the end of the file, where
89  * Emacs will automagically detect them.
90  * ---------------------------------------------------------------------
91  * Local variables:
92  * mode: c
93  * indent-tabs-mode: t
94  * c-basic-offset: 4
95  * tab-width: 4
96  * End:
97  */