annotate src/os_cpu/windows_x86/vm/atomic_windows_x86.inline.hpp @ 6275:957c266d8bc5

Merge with http://hg.openjdk.java.net/hsx/hsx24/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Tue, 21 Aug 2012 10:39:19 +0200
parents 4fc084dac61e
children 63e54c37ac64
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "orderAccess_windows_x86.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/atomic.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/os.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "vm_version_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // The following alternative implementations are needed because
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Windows 95 doesn't support (some of) the corresponding Windows NT
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // calls. Furthermore, these versions allow inlining in the caller.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // (More precisely: The documentation for InterlockedExchange says
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // it is supported for Windows 95. However, when single-stepping
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // through the assembly code we cannot step into the routine and
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // when looking at the routine address we see only garbage code.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // Better safe then sorry!). Was bug 7/31/98 (gri).
a61af66fc99e Initial load
duke
parents:
diff changeset
41 //
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // Performance note: On uniprocessors, the 'lock' prefixes are not
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // necessary (and expensive). We should generate separate cases if
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // this becomes a performance problem.
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #pragma warning(disable: 4035) // Disables warnings reporting missing return statement
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 inline void Atomic::store_ptr(void* store_value, volatile void* dest) { *(void* volatile *)dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Adding a lock prefix to an instruction on MP machine
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // VC++ doesn't like the lock prefix to be on a single line
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // so we can't insert a label after the lock prefix.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // By emitting a lock prefix, we can define a label after it.
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #define LOCK_IF_MP(mp) __asm cmp mp, 0 \
a61af66fc99e Initial load
duke
parents:
diff changeset
68 __asm je L0 \
a61af66fc99e Initial load
duke
parents:
diff changeset
69 __asm _emit 0xF0 \
a61af66fc99e Initial load
duke
parents:
diff changeset
70 __asm L0:
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
73 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 inline jint Atomic::add (jint add_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return (jint)(*os::atomic_add_func)(add_value, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 return (intptr_t)(*os::atomic_add_ptr_func)(add_value, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return (void*)(*os::atomic_add_ptr_func)(add_value, (volatile intptr_t*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 inline void Atomic::inc (volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 (void)add (1, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 }
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 inline void Atomic::inc_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
93 (void)add_ptr(1, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 inline void Atomic::inc_ptr(volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 (void)add_ptr(1, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
98 }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 inline void Atomic::dec (volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 (void)add (-1, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 inline void Atomic::dec_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
105 (void)add_ptr(-1, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 inline void Atomic::dec_ptr(volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
109 (void)add_ptr(-1, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 inline jint Atomic::xchg (jint exchange_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 return (jint)(*os::atomic_xchg_func)(exchange_value, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 return (intptr_t)(os::atomic_xchg_ptr_func)(exchange_value, dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 return (void *)(os::atomic_xchg_ptr_func)((intptr_t)exchange_value, (volatile intptr_t*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 inline jint Atomic::cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return (*os::atomic_cmpxchg_func)(exchange_value, dest, compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 return (*os::atomic_cmpxchg_long_func)(exchange_value, dest, compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return (intptr_t)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 return (void*)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
139
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
140 inline jlong Atomic::load(volatile jlong* src) { return *src; }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
141
0
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #else // !AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 inline jint Atomic::add (jint add_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 mov edx, dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 mov eax, add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 mov ecx, eax;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 LOCK_IF_MP(mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
151 xadd dword ptr [edx], eax;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 add eax, ecx;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 return (intptr_t)add((jint)add_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 return (void*)add((jint)add_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 }
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 inline void Atomic::inc (volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // alternative for InterlockedIncrement
a61af66fc99e Initial load
duke
parents:
diff changeset
166 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
167 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
168 mov edx, dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 LOCK_IF_MP(mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
170 add dword ptr [edx], 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 inline void Atomic::inc_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 inc((volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 inline void Atomic::inc_ptr(volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 inc((volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 inline void Atomic::dec (volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // alternative for InterlockedDecrement
a61af66fc99e Initial load
duke
parents:
diff changeset
184 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 mov edx, dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 LOCK_IF_MP(mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
188 sub dword ptr [edx], 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 inline void Atomic::dec_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 dec((volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 inline void Atomic::dec_ptr(volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 dec((volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 inline jint Atomic::xchg (jint exchange_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // alternative for InterlockedExchange
a61af66fc99e Initial load
duke
parents:
diff changeset
202 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 mov eax, exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 mov ecx, dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 xchg eax, dword ptr [ecx];
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 return (void*)xchg((jint)exchange_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 }
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 inline jint Atomic::cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // alternative for InterlockedCompareExchange
a61af66fc99e Initial load
duke
parents:
diff changeset
219 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
220 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
221 mov edx, dest
a61af66fc99e Initial load
duke
parents:
diff changeset
222 mov ecx, exchange_value
a61af66fc99e Initial load
duke
parents:
diff changeset
223 mov eax, compare_value
a61af66fc99e Initial load
duke
parents:
diff changeset
224 LOCK_IF_MP(mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
225 cmpxchg dword ptr [edx], ecx
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
230 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
231 jint ex_lo = (jint)exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 jint ex_hi = *( ((jint*)&exchange_value) + 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
233 jint cmp_lo = (jint)compare_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 jint cmp_hi = *( ((jint*)&compare_value) + 1 );
a61af66fc99e Initial load
duke
parents:
diff changeset
235 __asm {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 push ebx
a61af66fc99e Initial load
duke
parents:
diff changeset
237 push edi
a61af66fc99e Initial load
duke
parents:
diff changeset
238 mov eax, cmp_lo
a61af66fc99e Initial load
duke
parents:
diff changeset
239 mov edx, cmp_hi
a61af66fc99e Initial load
duke
parents:
diff changeset
240 mov edi, dest
a61af66fc99e Initial load
duke
parents:
diff changeset
241 mov ebx, ex_lo
a61af66fc99e Initial load
duke
parents:
diff changeset
242 mov ecx, ex_hi
a61af66fc99e Initial load
duke
parents:
diff changeset
243 LOCK_IF_MP(mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
244 cmpxchg8b qword ptr [edi]
a61af66fc99e Initial load
duke
parents:
diff changeset
245 pop edi
a61af66fc99e Initial load
duke
parents:
diff changeset
246 pop ebx
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248 }
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
257
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
258 inline jlong Atomic::load(volatile jlong* src) {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
259 volatile jlong dest;
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
260 volatile jlong* pdest = &dest;
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
261 __asm {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
262 mov eax, src
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
263 fild qword ptr [eax]
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
264 mov eax, pdest
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
265 fistp qword ptr [eax]
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
266 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
267 return dest;
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
268 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
269
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
270 inline void Atomic::store(jlong store_value, volatile jlong* dest) {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
271 volatile jlong* src = &store_value;
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
272 __asm {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
273 mov eax, src
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
274 fild qword ptr [eax]
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
275 mov eax, dest
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
276 fistp qword ptr [eax]
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
277 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
278 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
279
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
280 inline void Atomic::store(jlong store_value, jlong* dest) {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
281 Atomic::store(store_value, (volatile jlong*)dest);
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
282 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
283
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 #pragma warning(default: 4035) // Enables warnings reporting missing return statement
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
287
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
288 #endif // OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_INLINE_HPP