src/hotspot/os_cpu/windows_x86/atomic_windows_x86.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 46993 hotspot/src/os_cpu/windows_x86/vm/atomic_windows_x86.hpp@dd0f91c85ffc
child 47552 8a3599d60996
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
     2
 * Copyright (c) 1999, 2017, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
    25
#ifndef OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_HPP
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
    26
#define OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// The following alternative implementations are needed because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Windows 95 doesn't support (some of) the corresponding Windows NT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// calls. Furthermore, these versions allow inlining in the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// (More precisely: The documentation for InterlockedExchange says
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// it is supported for Windows 95. However, when single-stepping
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// through the assembly code we cannot step into the routine and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// when looking at the routine address we see only garbage code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Better safe then sorry!). Was bug 7/31/98 (gri).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Performance note: On uniprocessors, the 'lock' prefixes are not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// necessary (and expensive). We should generate separate cases if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// this becomes a performance problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#pragma warning(disable: 4035) // Disables warnings reporting missing return statement
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
inline void Atomic::store    (jbyte    store_value, jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
inline void Atomic::store    (jshort   store_value, jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
inline void Atomic::store    (jint     store_value, jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
inline void Atomic::store_ptr(void*    store_value, void*     dest) { *(void**)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
inline void Atomic::store    (jbyte    store_value, volatile jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
inline void Atomic::store    (jshort   store_value, volatile jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
inline void Atomic::store    (jint     store_value, volatile jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
inline void Atomic::store_ptr(void*    store_value, volatile void*     dest) { *(void* volatile *)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
46993
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    60
template<size_t byte_size>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    61
struct Atomic::PlatformAdd
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    62
  : Atomic::AddAndFetch<Atomic::PlatformAdd<byte_size> >
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    63
{
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    64
  template<typename I, typename D>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    65
  D add_and_fetch(I add_value, D volatile* dest) const;
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    66
};
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    67
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
inline void Atomic::store    (jlong    store_value, jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
inline void Atomic::store    (jlong    store_value, volatile jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
46993
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    72
template<>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    73
template<typename I, typename D>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    74
inline D Atomic::PlatformAdd<4>::add_and_fetch(I add_value, D volatile* dest) const {
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    75
  return add_using_helper<jint>(os::atomic_add_func, add_value, dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
46993
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    78
template<>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    79
template<typename I, typename D>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    80
inline D Atomic::PlatformAdd<8>::add_and_fetch(I add_value, D volatile* dest) const {
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
    81
  return add_using_helper<intptr_t>(os::atomic_add_ptr_func, add_value, dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
inline void Atomic::inc    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  (void)add    (1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  (void)add_ptr(1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
inline void Atomic::inc_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  (void)add_ptr(1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
inline void Atomic::dec    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  (void)add    (-1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  (void)add_ptr(-1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
inline void Atomic::dec_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  (void)add_ptr(-1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
inline jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  return (jint)(*os::atomic_xchg_func)(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  return (intptr_t)(os::atomic_xchg_ptr_func)(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  return (void *)(os::atomic_xchg_ptr_func)((intptr_t)exchange_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   120
#define DEFINE_STUB_CMPXCHG(ByteSize, StubType, StubName)               \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   121
  template<>                                                            \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   122
  template<typename T>                                                  \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   123
  inline T Atomic::PlatformCmpxchg<ByteSize>::operator()(T exchange_value, \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   124
                                                         T volatile* dest, \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   125
                                                         T compare_value, \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   126
                                                         cmpxchg_memory_order order) const { \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   127
    STATIC_ASSERT(ByteSize == sizeof(T));                               \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   128
    return cmpxchg_using_helper<StubType>(StubName, exchange_value, dest, compare_value); \
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   129
  }
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   130
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   131
DEFINE_STUB_CMPXCHG(1, jbyte, os::atomic_cmpxchg_byte_func)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   132
DEFINE_STUB_CMPXCHG(4, jint,  os::atomic_cmpxchg_func)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   133
DEFINE_STUB_CMPXCHG(8, jlong, os::atomic_cmpxchg_long_func)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   135
#undef DEFINE_STUB_CMPXCHG
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
46523
cbcc0ebaa044 8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents: 46414
diff changeset
   137
inline jlong Atomic::load(const volatile jlong* src) { return *src; }
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   138
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
#else // !AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
46993
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
   141
template<>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
   142
template<typename I, typename D>
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
   143
inline D Atomic::PlatformAdd<4>::add_and_fetch(I add_value, D volatile* dest) const {
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
   144
  STATIC_ASSERT(4 == sizeof(I));
dd0f91c85ffc 8186476: Generalize Atomic::add with templates
eosterlund
parents: 46958
diff changeset
   145
  STATIC_ASSERT(4 == sizeof(D));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    mov edx, dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    mov eax, add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    mov ecx, eax;
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
   150
    lock xadd dword ptr [edx], eax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    add eax, ecx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
inline void Atomic::inc    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // alternative for InterlockedIncrement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    mov edx, dest;
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
   159
    lock add dword ptr [edx], 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  inc((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
inline void Atomic::inc_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  inc((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
inline void Atomic::dec    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // alternative for InterlockedDecrement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    mov edx, dest;
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
   175
    lock sub dword ptr [edx], 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  dec((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
inline void Atomic::dec_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  dec((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
inline jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // alternative for InterlockedExchange
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    mov eax, exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    mov ecx, dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    xchg eax, dword ptr [ecx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  return (void*)xchg((jint)exchange_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   204
template<>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   205
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   206
inline T Atomic::PlatformCmpxchg<1>::operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   207
                                                T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   208
                                                T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   209
                                                cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   210
  STATIC_ASSERT(1 == sizeof(T));
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   211
  // alternative for InterlockedCompareExchange
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   212
  __asm {
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   213
    mov edx, dest
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   214
    mov cl, exchange_value
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   215
    mov al, compare_value
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
   216
    lock cmpxchg byte ptr [edx], cl
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   217
  }
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   218
}
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
   219
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   220
template<>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   221
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   222
inline T Atomic::PlatformCmpxchg<4>::operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   223
                                                T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   224
                                                T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   225
                                                cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   226
  STATIC_ASSERT(4 == sizeof(T));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // alternative for InterlockedCompareExchange
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    mov edx, dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    mov ecx, exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    mov eax, compare_value
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
   232
    lock cmpxchg dword ptr [edx], ecx
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   236
template<>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   237
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   238
inline T Atomic::PlatformCmpxchg<8>::operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   239
                                                T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   240
                                                T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   241
                                                cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46523
diff changeset
   242
  STATIC_ASSERT(8 == sizeof(T));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  jint ex_lo  = (jint)exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  jint ex_hi  = *( ((jint*)&exchange_value) + 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  jint cmp_lo = (jint)compare_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  jint cmp_hi = *( ((jint*)&compare_value) + 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    push ebx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    push edi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    mov eax, cmp_lo
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    mov edx, cmp_hi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    mov edi, dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    mov ebx, ex_lo
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    mov ecx, ex_hi
46414
5d1d862dc8d8 8169061: Drop os::is_MP checks from Atomics
shade
parents: 40655
diff changeset
   255
    lock cmpxchg8b qword ptr [edi]
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    pop edi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    pop ebx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
46523
cbcc0ebaa044 8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents: 46414
diff changeset
   261
inline jlong Atomic::load(const volatile jlong* src) {
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   262
  volatile jlong dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   263
  volatile jlong* pdest = &dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   264
  __asm {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   265
    mov eax, src
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   266
    fild     qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   267
    mov eax, pdest
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   268
    fistp    qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   269
  }
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   270
  return dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   271
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   272
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   273
inline void Atomic::store(jlong store_value, volatile jlong* dest) {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   274
  volatile jlong* src = &store_value;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   275
  __asm {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   276
    mov eax, src
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   277
    fild     qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   278
    mov eax, dest
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   279
    fistp    qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   280
  }
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   281
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   282
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   283
inline void Atomic::store(jlong store_value, jlong* dest) {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   284
  Atomic::store(store_value, (volatile jlong*)dest);
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   285
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   286
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
#pragma warning(default: 4035) // Enables warnings reporting missing return statement
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   290
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   291
#endif // OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_HPP