annotate src/os_cpu/linux_x86/vm/atomic_linux_x86.inline.hpp @ 8675:63e54c37ac64

8008959: Fix non-PCH build on Linux, Windows and MacOS X Summary: Fix the build without precompiled headers by either including the missing ".inline.hpp" files into the appropriate files or by turning inline-functions declared in header files into ordinary functions in ".cpp" files. Reviewed-by: coleenp, stefank, dholmes
author simonis
date Wed, 27 Feb 2013 09:40:30 +0100
parents 4fc084dac61e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
8675
63e54c37ac64 8008959: Fix non-PCH build on Linux, Windows and MacOS X
simonis
parents: 2114
diff changeset
2 * Copyright (c) 1999, 2013, 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_LINUX_X86_VM_ATOMIC_LINUX_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define OS_CPU_LINUX_X86_VM_ATOMIC_LINUX_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 "runtime/atomic.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/os.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "vm_version_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Implementation of class atomic
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
35 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
36 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
37 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
41 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
42 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
43 inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 inline void Atomic::store_ptr(void* store_value, volatile void* dest) { *(void* volatile *)dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Adding a lock prefix to an instruction on MP machine
a61af66fc99e Initial load
duke
parents:
diff changeset
48 #define LOCK_IF_MP(mp) "cmp $0, " #mp "; je 1f; lock; 1: "
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 inline jint Atomic::add (jint add_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 jint addend = add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 __asm__ volatile ( LOCK_IF_MP(%3) "xaddl %0,(%2)"
a61af66fc99e Initial load
duke
parents:
diff changeset
54 : "=r" (addend)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 : "0" (addend), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
56 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
57 return addend + add_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::inc (volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 __asm__ volatile (LOCK_IF_MP(%1) "addl $1,(%0)" :
a61af66fc99e Initial load
duke
parents:
diff changeset
63 : "r" (dest), "r" (mp) : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 inline void Atomic::inc_ptr(volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 inc_ptr((volatile intptr_t*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 }
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 inline void Atomic::dec (volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
72 __asm__ volatile (LOCK_IF_MP(%1) "subl $1,(%0)" :
a61af66fc99e Initial load
duke
parents:
diff changeset
73 : "r" (dest), "r" (mp) : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 inline void Atomic::dec_ptr(volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 dec_ptr((volatile intptr_t*)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 jint Atomic::xchg (jint exchange_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 __asm__ volatile ( "xchgl (%2),%0"
a61af66fc99e Initial load
duke
parents:
diff changeset
82 : "=r" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
83 : "0" (exchange_value), "r" (dest)
a61af66fc99e Initial load
duke
parents:
diff changeset
84 : "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return exchange_value;
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::xchg_ptr(void* exchange_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 return (void*)xchg_ptr((intptr_t)exchange_value, (volatile intptr_t*)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
a61af66fc99e Initial load
duke
parents:
diff changeset
93 inline jint Atomic::cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 __asm__ volatile (LOCK_IF_MP(%4) "cmpxchgl %1,(%3)"
a61af66fc99e Initial load
duke
parents:
diff changeset
96 : "=a" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
97 : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
98 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
103 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 intptr_t addend = add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 bool mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 __asm__ __volatile__ (LOCK_IF_MP(%3) "xaddq %0,(%2)"
a61af66fc99e Initial load
duke
parents:
diff changeset
110 : "=r" (addend)
a61af66fc99e Initial load
duke
parents:
diff changeset
111 : "0" (addend), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
112 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
113 return addend + add_value;
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 void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 return (void*)add_ptr(add_value, (volatile intptr_t*)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::inc_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 bool mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
122 __asm__ __volatile__ (LOCK_IF_MP(%1) "addq $1,(%0)"
a61af66fc99e Initial load
duke
parents:
diff changeset
123 :
a61af66fc99e Initial load
duke
parents:
diff changeset
124 : "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
125 : "cc", "memory");
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 void Atomic::dec_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 bool mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 __asm__ __volatile__ (LOCK_IF_MP(%1) "subq $1,(%0)"
a61af66fc99e Initial load
duke
parents:
diff changeset
131 :
a61af66fc99e Initial load
duke
parents:
diff changeset
132 : "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
133 : "cc", "memory");
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 intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
137 __asm__ __volatile__ ("xchgq (%2),%0"
a61af66fc99e Initial load
duke
parents:
diff changeset
138 : "=r" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
139 : "0" (exchange_value), "r" (dest)
a61af66fc99e Initial load
duke
parents:
diff changeset
140 : "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
141 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 bool mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
146 __asm__ __volatile__ (LOCK_IF_MP(%4) "cmpxchgq %1,(%3)"
a61af66fc99e Initial load
duke
parents:
diff changeset
147 : "=a" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
148 : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
149 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
150 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 }
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 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
154 return (intptr_t)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 return (void*)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
161 inline jlong Atomic::load(volatile jlong* src) { return *src; }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
162
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
163 #else // !AMD64
0
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return (intptr_t)Atomic::add((jint)add_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return (void*)Atomic::add((jint)add_value, (volatile jint*)dest);
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::dec_ptr(volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 dec((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 intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
186 extern "C" {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
187 // defined in linux_x86.s
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
188 jlong _Atomic_cmpxchg_long(jlong, volatile jlong*, jlong, bool);
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
189 void _Atomic_move_long(volatile jlong* src, volatile jlong* dst);
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
190 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
191
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
193 return _Atomic_cmpxchg_long(exchange_value, dest, compare_value, os::is_MP());
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 intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
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 void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
2114
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
203
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
204 inline jlong Atomic::load(volatile jlong* src) {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
205 volatile jlong dest;
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
206 _Atomic_move_long(src, &dest);
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
207 return dest;
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
208 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
209
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
210 inline void Atomic::store(jlong store_value, jlong* dest) {
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
211 _Atomic_move_long((volatile jlong*)&store_value, (volatile jlong*)dest);
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
212 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
213
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
214 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
215 _Atomic_move_long((volatile jlong*)&store_value, dest);
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
216 }
4fc084dac61e 7009756: volatile variables could be broken throw reflection API
kvn
parents: 1972
diff changeset
217
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218 #endif // AMD64
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
219
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
220 #endif // OS_CPU_LINUX_X86_VM_ATOMIC_LINUX_X86_INLINE_HPP