author | vadim |
Tue, 07 Apr 2015 13:37:30 +0300 | |
changeset 31699 | 7bc1eec6ce3b |
parent 29456 | cc1c5203e60d |
child 40655 | 9f644073d3a0 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
2 |
* Copyright (c) 2003, 2015, 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:
3261
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3261
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:
3261
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP |
26 |
#define OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP |
|
27 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
28 |
#include <intrin.h> |
15855
2ac9ebea17f3
8008959: Fix non-PCH build on Linux, Windows and MacOS X
simonis
parents:
7885
diff
changeset
|
29 |
#include "runtime/atomic.inline.hpp" |
7397 | 30 |
#include "runtime/orderAccess.hpp" |
15855
2ac9ebea17f3
8008959: Fix non-PCH build on Linux, Windows and MacOS X
simonis
parents:
7885
diff
changeset
|
31 |
#include "runtime/os.hpp" |
7397 | 32 |
|
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
33 |
// Compiler version last used for testing: Microsoft Visual Studio 2010 |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
34 |
// Please update this information when this file changes |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
35 |
|
1 | 36 |
// Implementation of class OrderAccess. |
37 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
38 |
// A compiler barrier, forcing the C++ compiler to invalidate all memory assumptions |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
39 |
inline void compiler_barrier() { |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
40 |
_ReadWriteBarrier(); |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
41 |
} |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
42 |
|
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
43 |
// Note that in MSVC, volatile memory accesses are explicitly |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
44 |
// guaranteed to have acquire release semantics (w.r.t. compiler |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
45 |
// reordering) and therefore does not even need a compiler barrier |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
46 |
// for normal acquire release accesses. And all generalized |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
47 |
// bound calls like release_store go through OrderAccess::load |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
48 |
// and OrderAccess::store which do volatile memory accesses. |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
49 |
template<> inline void ScopedFence<X_ACQUIRE>::postfix() { } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
50 |
template<> inline void ScopedFence<RELEASE_X>::prefix() { } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
51 |
template<> inline void ScopedFence<RELEASE_X_FENCE>::prefix() { } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
52 |
template<> inline void ScopedFence<RELEASE_X_FENCE>::postfix() { OrderAccess::fence(); } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
53 |
|
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
54 |
inline void OrderAccess::loadload() { compiler_barrier(); } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
55 |
inline void OrderAccess::storestore() { compiler_barrier(); } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
56 |
inline void OrderAccess::loadstore() { compiler_barrier(); } |
1 | 57 |
inline void OrderAccess::storeload() { fence(); } |
58 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
59 |
inline void OrderAccess::acquire() { compiler_barrier(); } |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
60 |
inline void OrderAccess::release() { compiler_barrier(); } |
1 | 61 |
|
62 |
inline void OrderAccess::fence() { |
|
63 |
#ifdef AMD64 |
|
2338
a8660a1b709b
6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents:
1
diff
changeset
|
64 |
StubRoutines_fence(); |
1 | 65 |
#else |
66 |
if (os::is_MP()) { |
|
67 |
__asm { |
|
68 |
lock add dword ptr [esp], 0; |
|
69 |
} |
|
70 |
} |
|
71 |
#endif // AMD64 |
|
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
72 |
compiler_barrier(); |
1 | 73 |
} |
74 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
75 |
#ifndef AMD64 |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
76 |
template<> |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
77 |
inline void OrderAccess::specialized_release_store_fence<jbyte> (volatile jbyte* p, jbyte v) { |
1 | 78 |
__asm { |
79 |
mov edx, p; |
|
80 |
mov al, v; |
|
81 |
xchg al, byte ptr [edx]; |
|
82 |
} |
|
83 |
} |
|
84 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
85 |
template<> |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
86 |
inline void OrderAccess::specialized_release_store_fence<jshort>(volatile jshort* p, jshort v) { |
1 | 87 |
__asm { |
88 |
mov edx, p; |
|
89 |
mov ax, v; |
|
90 |
xchg ax, word ptr [edx]; |
|
91 |
} |
|
92 |
} |
|
93 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
94 |
template<> |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
95 |
inline void OrderAccess::specialized_release_store_fence<jint> (volatile jint* p, jint v) { |
1 | 96 |
__asm { |
97 |
mov edx, p; |
|
98 |
mov eax, v; |
|
99 |
xchg eax, dword ptr [edx]; |
|
100 |
} |
|
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
101 |
} |
1 | 102 |
#endif // AMD64 |
103 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
104 |
template<> |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
105 |
inline void OrderAccess::specialized_release_store_fence<jfloat>(volatile jfloat* p, jfloat v) { |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
106 |
release_store_fence((volatile jint*)p, jint_cast(v)); |
1 | 107 |
} |
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
108 |
template<> |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
109 |
inline void OrderAccess::specialized_release_store_fence<jdouble>(volatile jdouble* p, jdouble v) { |
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
110 |
release_store_fence((volatile jlong*)p, jlong_cast(v)); |
1 | 111 |
} |
112 |
||
29456
cc1c5203e60d
7143664: Clean up OrderAccess implementations and usage
dholmes
parents:
25715
diff
changeset
|
113 |
#define VM_HAS_GENERALIZED_ORDER_ACCESS 1 |
1 | 114 |
|
7397 | 115 |
#endif // OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP |