author | dcubed |
Sat, 21 Sep 2019 10:13:25 -0400 | |
changeset 58252 | 14c1ff687621 |
parent 54323 | 846bc643f4ef |
child 59122 | 5d73255c2d52 |
permissions | -rw-r--r-- |
42065 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51050
diff
changeset
|
2 |
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. |
42065 | 3 |
* Copyright (c) 2016 SAP SE. All rights reserved. |
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51050
diff
changeset
|
26 |
#ifndef OS_CPU_LINUX_S390_ORDERACCESS_LINUX_S390_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51050
diff
changeset
|
27 |
#define OS_CPU_LINUX_S390_ORDERACCESS_LINUX_S390_HPP |
42065 | 28 |
|
50429
83aec1d357d4
8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents:
49364
diff
changeset
|
29 |
// Included in orderAccess.hpp header file. |
83aec1d357d4
8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents:
49364
diff
changeset
|
30 |
|
42065 | 31 |
#include "vm_version_s390.hpp" |
32 |
||
33 |
// Implementation of class OrderAccess. |
|
34 |
||
35 |
// |
|
36 |
// machine barrier instructions: |
|
37 |
// |
|
38 |
// - z_sync two-way memory barrier, aka fence |
|
39 |
// |
|
40 |
// semantic barrier instructions: |
|
41 |
// (as defined in orderAccess.hpp) |
|
42 |
// |
|
43 |
// - z_release orders Store|Store, (maps to compiler barrier) |
|
44 |
// Load|Store |
|
45 |
// - z_acquire orders Load|Store, (maps to compiler barrier) |
|
46 |
// Load|Load |
|
47 |
// - z_fence orders Store|Store, (maps to z_sync) |
|
48 |
// Load|Store, |
|
49 |
// Load|Load, |
|
50 |
// Store|Load |
|
51 |
// |
|
52 |
||
53 |
||
54 |
// Only load-after-store-order is not guaranteed on z/Architecture, i.e. only 'fence' |
|
55 |
// is needed. |
|
56 |
||
57 |
// A compiler barrier, forcing the C++ compiler to invalidate all memory assumptions. |
|
58 |
#define inlasm_compiler_barrier() __asm__ volatile ("" : : : "memory"); |
|
59 |
// "bcr 15, 0" is used as two way memory barrier. |
|
60 |
#define inlasm_zarch_sync() __asm__ __volatile__ ("bcr 15, 0" : : : "memory"); |
|
61 |
||
62 |
// Release and acquire are empty on z/Architecture, but potential |
|
63 |
// optimizations of gcc must be forbidden by OrderAccess::release and |
|
64 |
// OrderAccess::acquire. |
|
65 |
#define inlasm_zarch_release() inlasm_compiler_barrier() |
|
66 |
#define inlasm_zarch_acquire() inlasm_compiler_barrier() |
|
67 |
#define inlasm_zarch_fence() inlasm_zarch_sync() |
|
68 |
||
69 |
inline void OrderAccess::loadload() { inlasm_compiler_barrier(); } |
|
70 |
inline void OrderAccess::storestore() { inlasm_compiler_barrier(); } |
|
71 |
inline void OrderAccess::loadstore() { inlasm_compiler_barrier(); } |
|
72 |
inline void OrderAccess::storeload() { inlasm_zarch_sync(); } |
|
73 |
||
74 |
inline void OrderAccess::acquire() { inlasm_zarch_acquire(); } |
|
75 |
inline void OrderAccess::release() { inlasm_zarch_release(); } |
|
76 |
inline void OrderAccess::fence() { inlasm_zarch_sync(); } |
|
54323 | 77 |
inline void OrderAccess::cross_modify_fence() { inlasm_zarch_sync(); } |
42065 | 78 |
|
47609
a1f68e415b48
8188813: Generalize OrderAccess to use templates
eosterlund
parents:
47216
diff
changeset
|
79 |
template<size_t byte_size> |
a1f68e415b48
8188813: Generalize OrderAccess to use templates
eosterlund
parents:
47216
diff
changeset
|
80 |
struct OrderAccess::PlatformOrderedLoad<byte_size, X_ACQUIRE> |
a1f68e415b48
8188813: Generalize OrderAccess to use templates
eosterlund
parents:
47216
diff
changeset
|
81 |
{ |
a1f68e415b48
8188813: Generalize OrderAccess to use templates
eosterlund
parents:
47216
diff
changeset
|
82 |
template <typename T> |
51050
96ea37459ca7
8207011: Remove uses of the register storage class specifier
mikael
parents:
50429
diff
changeset
|
83 |
T operator()(const volatile T* p) const { T t = *p; inlasm_zarch_acquire(); return t; } |
47609
a1f68e415b48
8188813: Generalize OrderAccess to use templates
eosterlund
parents:
47216
diff
changeset
|
84 |
}; |
42065 | 85 |
|
86 |
#undef inlasm_compiler_barrier |
|
87 |
#undef inlasm_zarch_sync |
|
88 |
#undef inlasm_zarch_release |
|
89 |
#undef inlasm_zarch_acquire |
|
90 |
#undef inlasm_zarch_fence |
|
91 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
51050
diff
changeset
|
92 |
#endif // OS_CPU_LINUX_S390_ORDERACCESS_LINUX_S390_HPP |