1
|
1 |
/*
|
3795
|
2 |
* Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved.
|
1
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation.
|
|
8 |
*
|
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
13 |
* accompanied this code).
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License version
|
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
18 |
*
|
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or
|
|
21 |
* have any questions.
|
|
22 |
*
|
|
23 |
*/
|
|
24 |
|
|
25 |
inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; }
|
|
26 |
inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; }
|
|
27 |
inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; }
|
|
28 |
|
|
29 |
|
|
30 |
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
|
|
31 |
inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; }
|
|
32 |
|
|
33 |
inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; }
|
|
34 |
inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; }
|
|
35 |
inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; }
|
|
36 |
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
|
|
37 |
inline void Atomic::store_ptr(void* store_value, volatile void* dest) { *(void* volatile *)dest = store_value; }
|
|
38 |
|
|
39 |
inline void Atomic::inc (volatile jint* dest) { (void)add (1, dest); }
|
|
40 |
inline void Atomic::inc_ptr(volatile intptr_t* dest) { (void)add_ptr(1, dest); }
|
|
41 |
inline void Atomic::inc_ptr(volatile void* dest) { (void)add_ptr(1, dest); }
|
|
42 |
|
|
43 |
inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); }
|
|
44 |
inline void Atomic::dec_ptr(volatile intptr_t* dest) { (void)add_ptr(-1, dest); }
|
|
45 |
inline void Atomic::dec_ptr(volatile void* dest) { (void)add_ptr(-1, dest); }
|
|
46 |
|
|
47 |
// For Sun Studio - implementation is in solaris_x86_[32/64].il.
|
|
48 |
// For gcc - implementation is just below.
|
|
49 |
|
|
50 |
extern "C" jint _Atomic_add(jint add_value, volatile jint* dest, int mp);
|
|
51 |
extern "C" jint _Atomic_xchg(jint exchange_value, volatile jint* dest);
|
|
52 |
extern "C" jint _Atomic_cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value, int mp);
|
|
53 |
extern "C" jlong _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest, jlong compare_value, int mp);
|
|
54 |
|
|
55 |
inline jint Atomic::add (jint add_value, volatile jint* dest) {
|
|
56 |
return _Atomic_add(add_value, dest, (int) os::is_MP());
|
|
57 |
}
|
|
58 |
|
|
59 |
inline jint Atomic::cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value) {
|
|
60 |
return _Atomic_cmpxchg(exchange_value, dest, compare_value, (int) os::is_MP());
|
|
61 |
}
|
|
62 |
|
|
63 |
inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value) {
|
|
64 |
return _Atomic_cmpxchg_long(exchange_value, dest, compare_value, (int) os::is_MP());
|
|
65 |
}
|
|
66 |
|
|
67 |
|
|
68 |
#ifdef AMD64
|
|
69 |
inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; }
|
|
70 |
inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; }
|
|
71 |
extern "C" jlong _Atomic_add_long(jlong add_value, volatile jlong* dest, int mp);
|
|
72 |
extern "C" jlong _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest);
|
|
73 |
|
|
74 |
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
|
|
75 |
return (intptr_t)_Atomic_add_long((jlong)add_value, (volatile jlong*)dest, (int) os::is_MP());
|
|
76 |
}
|
|
77 |
|
|
78 |
inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
|
|
79 |
return (void*)_Atomic_add_long((jlong)add_value, (volatile jlong*)dest, (int) os::is_MP());
|
|
80 |
}
|
|
81 |
|
|
82 |
inline jint Atomic::xchg (jint exchange_value, volatile jint* dest) {
|
|
83 |
return _Atomic_xchg(exchange_value, dest);
|
|
84 |
}
|
|
85 |
|
|
86 |
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
|
|
87 |
return (intptr_t)_Atomic_xchg_long((jlong)exchange_value, (volatile jlong*)dest);
|
|
88 |
}
|
|
89 |
|
|
90 |
inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) {
|
|
91 |
return (void*)_Atomic_xchg_long((jlong)exchange_value, (volatile jlong*)dest);
|
|
92 |
}
|
|
93 |
|
|
94 |
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
|
|
95 |
return (intptr_t)_Atomic_cmpxchg_long((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value, (int) os::is_MP());
|
|
96 |
}
|
|
97 |
|
|
98 |
inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
|
|
99 |
return (void*)_Atomic_cmpxchg_long((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value, (int) os::is_MP());
|
|
100 |
}
|
|
101 |
|
3594
|
102 |
inline jlong Atomic::load(volatile jlong* src) { return *src; }
|
|
103 |
|
1
|
104 |
#else // !AMD64
|
|
105 |
|
|
106 |
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
|
|
107 |
return (intptr_t)add((jint)add_value, (volatile jint*)dest);
|
|
108 |
}
|
|
109 |
|
|
110 |
inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
|
|
111 |
return (void*)add((jint)add_value, (volatile jint*)dest);
|
|
112 |
}
|
|
113 |
|
|
114 |
inline jint Atomic::xchg (jint exchange_value, volatile jint* dest) {
|
|
115 |
// We noticed a CC5.5 bug (4894807), so keep calling the stub just to be safe.
|
|
116 |
// Will use the inline template version after 4894807 is fixed.
|
|
117 |
// return _Atomic_xchg(exchange_value, dest);
|
|
118 |
return (*os::atomic_xchg_func)(exchange_value, dest);
|
|
119 |
}
|
|
120 |
|
|
121 |
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
|
|
122 |
return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
|
|
123 |
}
|
|
124 |
|
|
125 |
inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) {
|
|
126 |
return (void*)xchg((jint)exchange_value, (volatile jint*)dest);
|
|
127 |
}
|
|
128 |
|
|
129 |
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
|
|
130 |
return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
|
|
131 |
}
|
|
132 |
|
|
133 |
inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
|
|
134 |
return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
|
|
135 |
}
|
3594
|
136 |
|
|
137 |
extern "C" void _Atomic_load_long(volatile jlong* src, volatile jlong* dst);
|
|
138 |
|
|
139 |
inline jlong Atomic::load(volatile jlong* src) {
|
|
140 |
volatile jlong dest;
|
|
141 |
_Atomic_load_long(src, &dest);
|
|
142 |
return dest;
|
|
143 |
}
|
|
144 |
|
1
|
145 |
#endif // AMD64
|
|
146 |
|
|
147 |
#ifdef _GNU_SOURCE
|
|
148 |
// Add a lock prefix to an instruction on an MP machine
|
|
149 |
#define LOCK_IF_MP(mp) "cmp $0, " #mp "; je 1f; lock; 1: "
|
|
150 |
|
|
151 |
extern "C" {
|
|
152 |
inline jint _Atomic_add(jint add_value, volatile jint* dest, int mp) {
|
|
153 |
jint addend = add_value;
|
|
154 |
__asm__ volatile ( LOCK_IF_MP(%3) "xaddl %0,(%2)"
|
|
155 |
: "=r" (addend)
|
|
156 |
: "0" (addend), "r" (dest), "r" (mp)
|
|
157 |
: "cc", "memory");
|
|
158 |
return addend + add_value;
|
|
159 |
}
|
|
160 |
|
|
161 |
#ifdef AMD64
|
|
162 |
inline jlong _Atomic_add_long(jlong add_value, volatile jlong* dest, int mp) {
|
|
163 |
intptr_t addend = add_value;
|
|
164 |
__asm__ __volatile__ (LOCK_IF_MP(%3) "xaddq %0,(%2)"
|
|
165 |
: "=r" (addend)
|
|
166 |
: "0" (addend), "r" (dest), "r" (mp)
|
|
167 |
: "cc", "memory");
|
|
168 |
return addend + add_value;
|
|
169 |
}
|
|
170 |
|
|
171 |
inline jlong _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest) {
|
|
172 |
__asm__ __volatile__ ("xchgq (%2),%0"
|
|
173 |
: "=r" (exchange_value)
|
|
174 |
: "0" (exchange_value), "r" (dest)
|
|
175 |
: "memory");
|
|
176 |
return exchange_value;
|
|
177 |
}
|
|
178 |
|
|
179 |
#endif // AMD64
|
|
180 |
|
|
181 |
inline jint _Atomic_xchg(jint exchange_value, volatile jint* dest) {
|
|
182 |
|
|
183 |
// 32bit version originally did nothing!!
|
|
184 |
|
|
185 |
__asm__ __volatile__ ("xchgl (%2),%0"
|
|
186 |
: "=r" (exchange_value)
|
|
187 |
: "0" (exchange_value), "r" (dest)
|
|
188 |
: "memory");
|
|
189 |
return exchange_value;
|
|
190 |
}
|
|
191 |
|
|
192 |
inline jint _Atomic_cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value, int mp) {
|
|
193 |
__asm__ volatile (LOCK_IF_MP(%4) "cmpxchgl %1,(%3)"
|
|
194 |
: "=a" (exchange_value)
|
|
195 |
: "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
|
|
196 |
: "cc", "memory");
|
|
197 |
return exchange_value;
|
|
198 |
}
|
|
199 |
|
|
200 |
// This is the interface to the atomic instruction in solaris_i486.s.
|
|
201 |
jlong _Atomic_cmpxchg_long_gcc(jlong exchange_value, volatile jlong* dest, jlong compare_value, int mp);
|
|
202 |
|
|
203 |
inline jlong _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest, jlong compare_value, int mp) {
|
|
204 |
#ifdef AMD64
|
|
205 |
__asm__ __volatile__ (LOCK_IF_MP(%4) "cmpxchgq %1,(%3)"
|
|
206 |
: "=a" (exchange_value)
|
|
207 |
: "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
|
|
208 |
: "cc", "memory");
|
|
209 |
return exchange_value;
|
|
210 |
#else
|
|
211 |
return _Atomic_cmpxchg_long_gcc(exchange_value, dest, compare_value, os::is_MP());
|
|
212 |
|
|
213 |
#if 0
|
|
214 |
// The code below does not work presumably because of the bug in gcc
|
|
215 |
// The error message says:
|
|
216 |
// can't find a register in class BREG while reloading asm
|
|
217 |
// However I want to save this code and later replace _Atomic_cmpxchg_long_gcc
|
|
218 |
// with such inline asm code:
|
|
219 |
|
|
220 |
volatile jlong_accessor evl, cvl, rv;
|
|
221 |
evl.long_value = exchange_value;
|
|
222 |
cvl.long_value = compare_value;
|
|
223 |
int mp = os::is_MP();
|
|
224 |
|
|
225 |
__asm__ volatile ("cmp $0, %%esi\n\t"
|
|
226 |
"je 1f \n\t"
|
|
227 |
"lock\n\t"
|
|
228 |
"1: cmpxchg8b (%%edi)\n\t"
|
|
229 |
: "=a"(cvl.words[0]), "=d"(cvl.words[1])
|
|
230 |
: "a"(cvl.words[0]), "d"(cvl.words[1]),
|
|
231 |
"b"(evl.words[0]), "c"(evl.words[1]),
|
|
232 |
"D"(dest), "S"(mp)
|
|
233 |
: "cc", "memory");
|
|
234 |
return cvl.long_value;
|
|
235 |
#endif // if 0
|
|
236 |
#endif // AMD64
|
|
237 |
}
|
|
238 |
}
|
|
239 |
#undef LOCK_IF_MP
|
|
240 |
|
|
241 |
#endif // _GNU_SOURCE
|