author | vdeshpande |
Wed, 07 Jun 2017 13:09:46 -0700 | |
changeset 46528 | cf0da758e7b5 |
parent 46523 | cbcc0ebaa044 |
child 46534 | 025dfc75204d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46414 | 2 |
* Copyright (c) 1999, 2017, Oracle and/or its affiliates. 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39404
diff
changeset
|
25 |
#ifndef OS_CPU_SOLARIS_X86_VM_ATOMIC_SOLARIS_X86_HPP |
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39404
diff
changeset
|
26 |
#define OS_CPU_SOLARIS_X86_VM_ATOMIC_SOLARIS_X86_HPP |
7397 | 27 |
|
28 |
#include "runtime/os.hpp" |
|
29 |
||
1 | 30 |
inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } |
31 |
inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } |
|
32 |
inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } |
|
33 |
||
34 |
||
35 |
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } |
|
36 |
inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } |
|
37 |
||
38 |
inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; } |
|
39 |
inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; } |
|
40 |
inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; } |
|
41 |
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; } |
|
42 |
inline void Atomic::store_ptr(void* store_value, volatile void* dest) { *(void* volatile *)dest = store_value; } |
|
43 |
||
44 |
inline void Atomic::inc (volatile jint* dest) { (void)add (1, dest); } |
|
45 |
inline void Atomic::inc_ptr(volatile intptr_t* dest) { (void)add_ptr(1, dest); } |
|
46 |
inline void Atomic::inc_ptr(volatile void* dest) { (void)add_ptr(1, dest); } |
|
47 |
||
48 |
inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); } |
|
49 |
inline void Atomic::dec_ptr(volatile intptr_t* dest) { (void)add_ptr(-1, dest); } |
|
50 |
inline void Atomic::dec_ptr(volatile void* dest) { (void)add_ptr(-1, dest); } |
|
51 |
||
52 |
// For Sun Studio - implementation is in solaris_x86_[32/64].il. |
|
53 |
// For gcc - implementation is just below. |
|
54 |
||
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
55 |
extern "C" { |
46414 | 56 |
jint _Atomic_add(jint add_value, volatile jint* dest); |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
57 |
jint _Atomic_xchg(jint exchange_value, volatile jint* dest); |
27691
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
58 |
jbyte _Atomic_cmpxchg_byte(jbyte exchange_value, volatile jbyte* dest, |
46414 | 59 |
jbyte compare_value); |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
60 |
jint _Atomic_cmpxchg(jint exchange_value, volatile jint* dest, |
46414 | 61 |
jint compare_value); |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
62 |
jlong _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest, |
46414 | 63 |
jlong compare_value); |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
64 |
} |
1 | 65 |
|
66 |
inline jint Atomic::add (jint add_value, volatile jint* dest) { |
|
46414 | 67 |
return _Atomic_add(add_value, dest); |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
68 |
} |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
69 |
|
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
70 |
inline jint Atomic::xchg (jint exchange_value, volatile jint* dest) { |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
71 |
return _Atomic_xchg(exchange_value, dest); |
1 | 72 |
} |
73 |
||
27691
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
74 |
#define VM_HAS_SPECIALIZED_CMPXCHG_BYTE |
39404 | 75 |
inline jbyte Atomic::cmpxchg (jbyte exchange_value, volatile jbyte* dest, jbyte compare_value, cmpxchg_memory_order order) { |
46414 | 76 |
return _Atomic_cmpxchg_byte(exchange_value, dest, compare_value); |
27691
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
77 |
} |
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
78 |
|
39404 | 79 |
inline jint Atomic::cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value, cmpxchg_memory_order order) { |
46414 | 80 |
return _Atomic_cmpxchg(exchange_value, dest, compare_value); |
1 | 81 |
} |
82 |
||
39404 | 83 |
inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value, cmpxchg_memory_order order) { |
46414 | 84 |
return _Atomic_cmpxchg_long(exchange_value, dest, compare_value); |
1 | 85 |
} |
86 |
||
87 |
||
88 |
#ifdef AMD64 |
|
89 |
inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } |
|
90 |
inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; } |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
91 |
extern "C" jlong _Atomic_add_long(jlong add_value, volatile jlong* dest); |
1 | 92 |
extern "C" jlong _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest); |
93 |
||
94 |
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) { |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
95 |
return (intptr_t)_Atomic_add_long((jlong)add_value, (volatile jlong*)dest); |
1 | 96 |
} |
97 |
||
98 |
inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) { |
|
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
99 |
return (void*)_Atomic_add_long((jlong)add_value, (volatile jlong*)dest); |
1 | 100 |
} |
101 |
||
102 |
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) { |
|
103 |
return (intptr_t)_Atomic_xchg_long((jlong)exchange_value, (volatile jlong*)dest); |
|
104 |
} |
|
105 |
||
106 |
inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) { |
|
107 |
return (void*)_Atomic_xchg_long((jlong)exchange_value, (volatile jlong*)dest); |
|
108 |
} |
|
109 |
||
39404 | 110 |
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value, cmpxchg_memory_order order) { |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
111 |
return (intptr_t)_Atomic_cmpxchg_long((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value); |
1 | 112 |
} |
113 |
||
39404 | 114 |
inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value, cmpxchg_memory_order order) { |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
3795
diff
changeset
|
115 |
return (void*)_Atomic_cmpxchg_long((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value); |
1 | 116 |
} |
117 |
||
46523
cbcc0ebaa044
8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents:
46414
diff
changeset
|
118 |
inline jlong Atomic::load(const volatile jlong* src) { return *src; } |
3594 | 119 |
|
1 | 120 |
#else // !AMD64 |
121 |
||
122 |
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) { |
|
123 |
return (intptr_t)add((jint)add_value, (volatile jint*)dest); |
|
124 |
} |
|
125 |
||
126 |
inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) { |
|
127 |
return (void*)add((jint)add_value, (volatile jint*)dest); |
|
128 |
} |
|
129 |
||
130 |
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) { |
|
131 |
return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest); |
|
132 |
} |
|
133 |
||
134 |
inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) { |
|
135 |
return (void*)xchg((jint)exchange_value, (volatile jint*)dest); |
|
136 |
} |
|
137 |
||
39404 | 138 |
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value, cmpxchg_memory_order order) { |
139 |
return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value, order); |
|
1 | 140 |
} |
141 |
||
39404 | 142 |
inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value, cmpxchg_memory_order order) { |
143 |
return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value, order); |
|
1 | 144 |
} |
3594 | 145 |
|
46523
cbcc0ebaa044
8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents:
46414
diff
changeset
|
146 |
extern "C" void _Atomic_move_long(const volatile jlong* src, volatile jlong* dst); |
3594 | 147 |
|
46523
cbcc0ebaa044
8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents:
46414
diff
changeset
|
148 |
inline jlong Atomic::load(const volatile jlong* src) { |
3594 | 149 |
volatile jlong dest; |
7885
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
150 |
_Atomic_move_long(src, &dest); |
3594 | 151 |
return dest; |
152 |
} |
|
153 |
||
7885
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
154 |
inline void Atomic::store(jlong store_value, jlong* dest) { |
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
155 |
_Atomic_move_long((volatile jlong*)&store_value, (volatile jlong*)dest); |
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
156 |
} |
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
157 |
|
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
158 |
inline void Atomic::store(jlong store_value, volatile jlong* dest) { |
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
159 |
_Atomic_move_long((volatile jlong*)&store_value, dest); |
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
160 |
} |
c02b05ba16a1
7009756: volatile variables could be broken throw reflection API
kvn
parents:
7397
diff
changeset
|
161 |
|
1 | 162 |
#endif // AMD64 |
163 |
||
164 |
#ifdef _GNU_SOURCE |
|
165 |
||
166 |
extern "C" { |
|
46414 | 167 |
inline jint _Atomic_add(jint add_value, volatile jint* dest) { |
1 | 168 |
jint addend = add_value; |
46414 | 169 |
__asm__ volatile ("lock xaddl %0,(%2)" |
1 | 170 |
: "=r" (addend) |
46414 | 171 |
: "0" (addend), "r" (dest) |
1 | 172 |
: "cc", "memory"); |
173 |
return addend + add_value; |
|
174 |
} |
|
175 |
||
176 |
#ifdef AMD64 |
|
46414 | 177 |
inline jlong _Atomic_add_long(jlong add_value, volatile jlong* dest) { |
1 | 178 |
intptr_t addend = add_value; |
46414 | 179 |
__asm__ __volatile__ ("lock xaddq %0,(%2)" |
1 | 180 |
: "=r" (addend) |
46414 | 181 |
: "0" (addend), "r" (dest) |
1 | 182 |
: "cc", "memory"); |
183 |
return addend + add_value; |
|
184 |
} |
|
185 |
||
186 |
inline jlong _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest) { |
|
187 |
__asm__ __volatile__ ("xchgq (%2),%0" |
|
188 |
: "=r" (exchange_value) |
|
189 |
: "0" (exchange_value), "r" (dest) |
|
190 |
: "memory"); |
|
191 |
return exchange_value; |
|
192 |
} |
|
193 |
||
194 |
#endif // AMD64 |
|
195 |
||
196 |
inline jint _Atomic_xchg(jint exchange_value, volatile jint* dest) { |
|
197 |
__asm__ __volatile__ ("xchgl (%2),%0" |
|
198 |
: "=r" (exchange_value) |
|
199 |
: "0" (exchange_value), "r" (dest) |
|
200 |
: "memory"); |
|
201 |
return exchange_value; |
|
202 |
} |
|
203 |
||
46414 | 204 |
inline jint _Atomic_cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) { |
205 |
__asm__ volatile ("lock cmpxchgl %1,(%3)" |
|
1 | 206 |
: "=a" (exchange_value) |
46414 | 207 |
: "r" (exchange_value), "a" (compare_value), "r" (dest) |
1 | 208 |
: "cc", "memory"); |
209 |
return exchange_value; |
|
210 |
} |
|
211 |
||
27691
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
212 |
|
46414 | 213 |
inline jbyte _Atomic_cmpxchg_byte(jbyte exchange_value, volatile jbyte* dest, jbyte compare_value) { |
214 |
__asm__ volatile ("lock cmpxchgb %1,(%3)" |
|
27691
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
215 |
: "=a" (exchange_value) |
46414 | 216 |
: "q" (exchange_value), "a" (compare_value), "r" (dest) |
27691
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
217 |
: "cc", "memory"); |
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
218 |
return exchange_value; |
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
219 |
} |
733f189ad1f7
8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents:
25715
diff
changeset
|
220 |
|
1 | 221 |
// This is the interface to the atomic instruction in solaris_i486.s. |
46414 | 222 |
jlong _Atomic_cmpxchg_long_gcc(jlong exchange_value, volatile jlong* dest, jlong compare_value); |
1 | 223 |
|
46414 | 224 |
inline jlong _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest, jlong compare_value) { |
1 | 225 |
#ifdef AMD64 |
46414 | 226 |
__asm__ __volatile__ ("lock cmpxchgq %1,(%3)" |
1 | 227 |
: "=a" (exchange_value) |
46414 | 228 |
: "r" (exchange_value), "a" (compare_value), "r" (dest) |
1 | 229 |
: "cc", "memory"); |
230 |
return exchange_value; |
|
231 |
#else |
|
46414 | 232 |
return _Atomic_cmpxchg_long_gcc(exchange_value, dest, compare_value); |
1 | 233 |
|
234 |
#if 0 |
|
235 |
// The code below does not work presumably because of the bug in gcc |
|
236 |
// The error message says: |
|
237 |
// can't find a register in class BREG while reloading asm |
|
238 |
// However I want to save this code and later replace _Atomic_cmpxchg_long_gcc |
|
239 |
// with such inline asm code: |
|
240 |
||
241 |
volatile jlong_accessor evl, cvl, rv; |
|
242 |
evl.long_value = exchange_value; |
|
243 |
cvl.long_value = compare_value; |
|
244 |
||
46414 | 245 |
__asm__ volatile ( |
246 |
"lock cmpxchg8b (%%edi)\n\t" |
|
1 | 247 |
: "=a"(cvl.words[0]), "=d"(cvl.words[1]) |
248 |
: "a"(cvl.words[0]), "d"(cvl.words[1]), |
|
249 |
"b"(evl.words[0]), "c"(evl.words[1]), |
|
46414 | 250 |
"D"(dest) |
1 | 251 |
: "cc", "memory"); |
252 |
return cvl.long_value; |
|
253 |
#endif // if 0 |
|
254 |
#endif // AMD64 |
|
255 |
} |
|
256 |
} |
|
257 |
||
258 |
#endif // _GNU_SOURCE |
|
7397 | 259 |
|
40655
9f644073d3a0
8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents:
39404
diff
changeset
|
260 |
#endif // OS_CPU_SOLARIS_X86_VM_ATOMIC_SOLARIS_X86_HPP |