hotspot/src/os_cpu/windows_x86/vm/orderAccess_windows_x86.inline.hpp
author goetz
Fri, 04 Jul 2014 11:46:01 +0200
changeset 25715 d5a8dbdc5150
parent 18949 61c970d02a94
child 29456 cc1c5203e60d
permissions -rw-r--r--
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Summary: Introduce and clean up umbrella headers for the files in the cpu subdirectories. Reviewed-by: lfoltan, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 18949
diff changeset
     2
 * Copyright (c) 2003, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    25
#ifndef OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    26
#define OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    27
15855
2ac9ebea17f3 8008959: Fix non-PCH build on Linux, Windows and MacOS X
simonis
parents: 7885
diff changeset
    28
#include "runtime/atomic.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    29
#include "runtime/orderAccess.hpp"
15855
2ac9ebea17f3 8008959: Fix non-PCH build on Linux, Windows and MacOS X
simonis
parents: 7885
diff changeset
    30
#include "runtime/os.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Implementation of class OrderAccess.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
inline void OrderAccess::loadload()   { acquire(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
inline void OrderAccess::storestore() { release(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
inline void OrderAccess::loadstore()  { acquire(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
inline void OrderAccess::storeload()  { fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
inline void OrderAccess::acquire() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#ifndef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    mov eax, dword ptr [esp];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#endif // !AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
inline void OrderAccess::release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // A volatile store has release semantics.
6253
228a0240f71e 6973570: OrderAccess::storestore() scales poorly on multi-socket x64 and sparc: cache-line ping-ponging
ysr
parents: 5547
diff changeset
    49
  volatile jint local_dummy = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
inline void OrderAccess::fence() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#ifdef AMD64
2338
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 1
diff changeset
    54
  StubRoutines_fence();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  if (os::is_MP()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      lock add dword ptr [esp], 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
inline jbyte    OrderAccess::load_acquire(volatile jbyte*   p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
inline jshort   OrderAccess::load_acquire(volatile jshort*  p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
inline jint     OrderAccess::load_acquire(volatile jint*    p) { return *p; }
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    67
inline jlong    OrderAccess::load_acquire(volatile jlong*   p) { return Atomic::load(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
inline jubyte   OrderAccess::load_acquire(volatile jubyte*  p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
inline jushort  OrderAccess::load_acquire(volatile jushort* p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
inline juint    OrderAccess::load_acquire(volatile juint*   p) { return *p; }
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    71
inline julong   OrderAccess::load_acquire(volatile julong*  p) { return Atomic::load((volatile jlong*)p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
inline jfloat   OrderAccess::load_acquire(volatile jfloat*  p) { return *p; }
18949
61c970d02a94 8016538: volatile double access via Unsafe.cpp is not atomic
minqi
parents: 15855
diff changeset
    73
inline jdouble  OrderAccess::load_acquire(volatile jdouble* p) { return jdouble_cast(Atomic::load((volatile jlong*)p)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
inline intptr_t OrderAccess::load_ptr_acquire(volatile intptr_t*   p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
inline void*    OrderAccess::load_ptr_acquire(volatile void*       p) { return *(void* volatile *)p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
inline void*    OrderAccess::load_ptr_acquire(const volatile void* p) { return *(void* const volatile *)p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
inline void     OrderAccess::release_store(volatile jbyte*   p, jbyte   v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
inline void     OrderAccess::release_store(volatile jshort*  p, jshort  v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
inline void     OrderAccess::release_store(volatile jint*    p, jint    v) { *p = v; }
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    82
inline void     OrderAccess::release_store(volatile jlong*   p, jlong   v) { Atomic::store(v, p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
inline void     OrderAccess::release_store(volatile jubyte*  p, jubyte  v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
inline void     OrderAccess::release_store(volatile jushort* p, jushort v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
inline void     OrderAccess::release_store(volatile juint*   p, juint   v) { *p = v; }
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    86
inline void     OrderAccess::release_store(volatile julong*  p, julong  v) { Atomic::store((jlong)v, (volatile jlong*)p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
inline void     OrderAccess::release_store(volatile jfloat*  p, jfloat  v) { *p = v; }
18949
61c970d02a94 8016538: volatile double access via Unsafe.cpp is not atomic
minqi
parents: 15855
diff changeset
    88
inline void     OrderAccess::release_store(volatile jdouble* p, jdouble v) { release_store((volatile jlong*)p, jlong_cast(v)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
inline void     OrderAccess::release_store_ptr(volatile intptr_t* p, intptr_t v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
inline void     OrderAccess::release_store_ptr(volatile void*     p, void*    v) { *(void* volatile *)p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
inline void     OrderAccess::store_fence(jbyte*  p, jbyte  v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    mov edx, p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    mov al, v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    xchg al, byte ptr [edx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
inline void     OrderAccess::store_fence(jshort* p, jshort v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    mov edx, p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    mov ax, v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    xchg ax, word ptr [edx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
inline void     OrderAccess::store_fence(jint*   p, jint   v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    mov edx, p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    mov eax, v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    xchg eax, dword ptr [edx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
inline void     OrderAccess::store_fence(jlong*   p, jlong   v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
inline void     OrderAccess::store_fence(jubyte*  p, jubyte  v) { store_fence((jbyte*)p,  (jbyte)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
inline void     OrderAccess::store_fence(jushort* p, jushort v) { store_fence((jshort*)p, (jshort)v); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
inline void     OrderAccess::store_fence(juint*   p, juint   v) { store_fence((jint*)p,   (jint)v);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
inline void     OrderAccess::store_fence(julong*  p, julong  v) { store_fence((jlong*)p,  (jlong)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
inline void     OrderAccess::store_fence(jfloat*  p, jfloat  v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
inline void     OrderAccess::store_fence(jdouble* p, jdouble v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
inline void     OrderAccess::store_ptr_fence(intptr_t* p, intptr_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  store_fence((jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
inline void     OrderAccess::store_ptr_fence(void**    p, void*    v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  store_fence((jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
// Must duplicate definitions instead of calling store_fence because we don't want to cast away volatile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
inline void     OrderAccess::release_store_fence(volatile jbyte*  p, jbyte  v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    mov edx, p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    mov al, v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
    xchg al, byte ptr [edx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
inline void     OrderAccess::release_store_fence(volatile jshort* p, jshort v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    mov edx, p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    mov ax, v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
    xchg ax, word ptr [edx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
inline void     OrderAccess::release_store_fence(volatile jint*   p, jint   v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    mov edx, p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    mov eax, v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    xchg eax, dword ptr [edx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   190
inline void     OrderAccess::release_store_fence(volatile jlong*   p, jlong   v) { release_store(p, v); fence(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
inline void     OrderAccess::release_store_fence(volatile jubyte*  p, jubyte  v) { release_store_fence((volatile jbyte*)p,  (jbyte)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
inline void     OrderAccess::release_store_fence(volatile jushort* p, jushort v) { release_store_fence((volatile jshort*)p, (jshort)v); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
inline void     OrderAccess::release_store_fence(volatile juint*   p, juint   v) { release_store_fence((volatile jint*)p,   (jint)v);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
inline void     OrderAccess::release_store_fence(volatile julong*  p, julong  v) { release_store_fence((volatile jlong*)p,  (jlong)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
inline void     OrderAccess::release_store_fence(volatile jfloat*  p, jfloat  v) { *p = v; fence(); }
18949
61c970d02a94 8016538: volatile double access via Unsafe.cpp is not atomic
minqi
parents: 15855
diff changeset
   197
inline void     OrderAccess::release_store_fence(volatile jdouble* p, jdouble v) { release_store_fence((volatile jlong*)p, jlong_cast(v)); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
inline void     OrderAccess::release_store_ptr_fence(volatile intptr_t* p, intptr_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  release_store_fence((volatile jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
inline void     OrderAccess::release_store_ptr_fence(volatile void*     p, void*    v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  *(void* volatile *)p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  release_store_fence((volatile jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6253
diff changeset
   215
#endif // OS_CPU_WINDOWS_X86_VM_ORDERACCESS_WINDOWS_X86_INLINE_HPP