hotspot/src/os_cpu/windows_x86/vm/atomic_windows_x86.inline.hpp
author goetz
Fri, 04 Jul 2014 11:46:01 +0200
changeset 25715 d5a8dbdc5150
parent 15855 2ac9ebea17f3
child 27691 733f189ad1f7
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: 15855
diff changeset
     2
 * Copyright (c) 1999, 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: 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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_INLINE_HPP
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/atomic.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// The following alternative implementations are needed because
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Windows 95 doesn't support (some of) the corresponding Windows NT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// calls. Furthermore, these versions allow inlining in the caller.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// (More precisely: The documentation for InterlockedExchange says
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// it is supported for Windows 95. However, when single-stepping
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// through the assembly code we cannot step into the routine and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// when looking at the routine address we see only garbage code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Better safe then sorry!). Was bug 7/31/98 (gri).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Performance note: On uniprocessors, the 'lock' prefixes are not
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// necessary (and expensive). We should generate separate cases if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// this becomes a performance problem.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#pragma warning(disable: 4035) // Disables warnings reporting missing return statement
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
inline void Atomic::store    (jbyte    store_value, jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
inline void Atomic::store    (jshort   store_value, jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
inline void Atomic::store    (jint     store_value, jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
inline void Atomic::store_ptr(void*    store_value, void*     dest) { *(void**)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
inline void Atomic::store    (jbyte    store_value, volatile jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
inline void Atomic::store    (jshort   store_value, volatile jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
inline void Atomic::store    (jint     store_value, volatile jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
inline void Atomic::store_ptr(void*    store_value, volatile void*     dest) { *(void* volatile *)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Adding a lock prefix to an instruction on MP machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// VC++ doesn't like the lock prefix to be on a single line
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// so we can't insert a label after the lock prefix.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// By emitting a lock prefix, we can define a label after it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#define LOCK_IF_MP(mp) __asm cmp mp, 0  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                       __asm je L0      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                       __asm _emit 0xF0 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                       __asm L0:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
inline void Atomic::store    (jlong    store_value, jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
inline void Atomic::store    (jlong    store_value, volatile jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
inline jint     Atomic::add    (jint     add_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  return (jint)(*os::atomic_add_func)(add_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  return (intptr_t)(*os::atomic_add_ptr_func)(add_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  return (void*)(*os::atomic_add_ptr_func)(add_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
inline void Atomic::inc    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  (void)add    (1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  (void)add_ptr(1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
inline void Atomic::inc_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  (void)add_ptr(1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
inline void Atomic::dec    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  (void)add    (-1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  (void)add_ptr(-1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
inline void Atomic::dec_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  (void)add_ptr(-1, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
inline jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return (jint)(*os::atomic_xchg_func)(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return (intptr_t)(os::atomic_xchg_ptr_func)(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  return (void *)(os::atomic_xchg_ptr_func)((intptr_t)exchange_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
inline jint     Atomic::cmpxchg    (jint     exchange_value, volatile jint*     dest, jint     compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  return (*os::atomic_cmpxchg_func)(exchange_value, dest, compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
inline jlong    Atomic::cmpxchg    (jlong    exchange_value, volatile jlong*    dest, jlong    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  return (*os::atomic_cmpxchg_long_func)(exchange_value, dest, compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  return (intptr_t)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
inline void*    Atomic::cmpxchg_ptr(void*    exchange_value, volatile void*     dest, void*    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  return (void*)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   138
inline jlong Atomic::load(volatile jlong* src) { return *src; }
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   139
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#else // !AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
inline jint     Atomic::add    (jint     add_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    mov edx, dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    mov eax, add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    mov ecx, eax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    LOCK_IF_MP(mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    xadd dword ptr [edx], eax;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    add eax, ecx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  return (intptr_t)add((jint)add_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  return (void*)add((jint)add_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
inline void Atomic::inc    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // alternative for InterlockedIncrement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    mov edx, dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    LOCK_IF_MP(mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    add dword ptr [edx], 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  inc((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
inline void Atomic::inc_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  inc((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
inline void Atomic::dec    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // alternative for InterlockedDecrement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    mov edx, dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    LOCK_IF_MP(mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    sub dword ptr [edx], 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  dec((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
inline void Atomic::dec_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  dec((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
inline jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // alternative for InterlockedExchange
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
    mov eax, exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    mov ecx, dest;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    xchg eax, dword ptr [ecx];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  }
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 intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  return (void*)xchg((jint)exchange_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
inline jint     Atomic::cmpxchg    (jint     exchange_value, volatile jint*     dest, jint     compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // alternative for InterlockedCompareExchange
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    mov edx, dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    mov ecx, exchange_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    mov eax, compare_value
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    LOCK_IF_MP(mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    cmpxchg dword ptr [edx], ecx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
inline jlong    Atomic::cmpxchg    (jlong    exchange_value, volatile jlong*    dest, jlong    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  jint ex_lo  = (jint)exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  jint ex_hi  = *( ((jint*)&exchange_value) + 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  jint cmp_lo = (jint)compare_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  jint cmp_hi = *( ((jint*)&compare_value) + 1 );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  __asm {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    push ebx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    push edi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    mov eax, cmp_lo
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    mov edx, cmp_hi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
    mov edi, dest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    mov ebx, ex_lo
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    mov ecx, ex_hi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    LOCK_IF_MP(mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    cmpxchg8b qword ptr [edi]
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    pop edi
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    pop ebx
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
inline void*    Atomic::cmpxchg_ptr(void*    exchange_value, volatile void*     dest, void*    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   255
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   256
inline jlong Atomic::load(volatile jlong* src) {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   257
  volatile jlong dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   258
  volatile jlong* pdest = &dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   259
  __asm {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   260
    mov eax, src
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   261
    fild     qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   262
    mov eax, pdest
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   263
    fistp    qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   264
  }
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   265
  return dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   266
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   267
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   268
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
   269
  volatile jlong* src = &store_value;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   270
  __asm {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   271
    mov eax, src
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   272
    fild     qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   273
    mov eax, dest
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   274
    fistp    qword ptr [eax]
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   275
  }
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   276
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   277
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   278
inline void Atomic::store(jlong store_value, jlong* dest) {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   279
  Atomic::store(store_value, (volatile jlong*)dest);
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
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
#pragma warning(default: 4035) // Enables warnings reporting missing return statement
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   285
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   286
#endif // OS_CPU_WINDOWS_X86_VM_ATOMIC_WINDOWS_X86_INLINE_HPP