hotspot/src/os_cpu/linux_x86/vm/atomic_linux_x86.inline.hpp
author mdoerr
Tue, 21 Jun 2016 19:25:41 -0400
changeset 39404 d0ad5220e91c
parent 27691 733f189ad1f7
permissions -rw-r--r--
8155949: Support relaxed semantics in cmpxchg Reviewed-by: dholmes, kbarrett, goetz, aph Contributed-by: horii@jp.ibm.com, martin.doerr@sap.com
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_LINUX_X86_VM_ATOMIC_LINUX_X86_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define OS_CPU_LINUX_X86_VM_ATOMIC_LINUX_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
// Implementation of class atomic
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
inline void Atomic::store    (jbyte    store_value, jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
inline void Atomic::store    (jshort   store_value, jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
inline void Atomic::store    (jint     store_value, jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
inline void Atomic::store_ptr(void*    store_value, void*     dest) { *(void**)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
inline void Atomic::store    (jbyte    store_value, volatile jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
inline void Atomic::store    (jshort   store_value, volatile jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
inline void Atomic::store    (jint     store_value, volatile jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
inline void Atomic::store_ptr(void*    store_value, volatile void*     dest) { *(void* volatile *)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// Adding a lock prefix to an instruction on MP machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#define LOCK_IF_MP(mp) "cmp $0, " #mp "; je 1f; lock; 1: "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
inline jint     Atomic::add    (jint     add_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  jint addend = add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  __asm__ volatile (  LOCK_IF_MP(%3) "xaddl %0,(%2)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                    : "=r" (addend)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                    : "0" (addend), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
                    : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  return addend + add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
inline void Atomic::inc    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  __asm__ volatile (LOCK_IF_MP(%1) "addl $1,(%0)" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                    : "r" (dest), "r" (mp) : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
inline void Atomic::inc_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  inc_ptr((volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
inline void Atomic::dec    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  __asm__ volatile (LOCK_IF_MP(%1) "subl $1,(%0)" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                    : "r" (dest), "r" (mp) : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
inline void Atomic::dec_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  dec_ptr((volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
inline jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  __asm__ volatile (  "xchgl (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                    : "=r" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
                    : "0" (exchange_value), "r" (dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  return (void*)xchg_ptr((intptr_t)exchange_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    91
#define VM_HAS_SPECIALIZED_CMPXCHG_BYTE
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    92
inline jbyte    Atomic::cmpxchg    (jbyte    exchange_value, volatile jbyte*    dest, jbyte    compare_value, cmpxchg_memory_order order) {
27691
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    93
  int mp = os::is_MP();
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    94
  __asm__ volatile (LOCK_IF_MP(%4) "cmpxchgb %1,(%3)"
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    95
                    : "=a" (exchange_value)
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    96
                    : "q" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    97
                    : "cc", "memory");
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    98
  return exchange_value;
733f189ad1f7 8058255: Native jbyte Atomic::cmpxchg for supported x86 platforms
jwilhelm
parents: 25715
diff changeset
    99
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   101
inline jint     Atomic::cmpxchg    (jint     exchange_value, volatile jint*     dest, jint     compare_value, cmpxchg_memory_order order) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  __asm__ volatile (LOCK_IF_MP(%4) "cmpxchgl %1,(%3)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                    : "=a" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                    : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                    : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
inline void Atomic::store    (jlong    store_value, jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
inline void Atomic::store    (jlong    store_value, volatile jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  intptr_t addend = add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  __asm__ __volatile__ (LOCK_IF_MP(%3) "xaddq %0,(%2)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                        : "=r" (addend)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
                        : "0" (addend), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  return addend + add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  return (void*)add_ptr(add_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  __asm__ __volatile__ (LOCK_IF_MP(%1) "addq $1,(%0)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
                        : "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  __asm__ __volatile__ (LOCK_IF_MP(%1) "subq $1,(%0)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                        : "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  __asm__ __volatile__ ("xchgq (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                        : "=r" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                        : "0" (exchange_value), "r" (dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
                        : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   152
inline jlong    Atomic::cmpxchg    (jlong    exchange_value, volatile jlong*    dest, jlong    compare_value, cmpxchg_memory_order order) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  __asm__ __volatile__ (LOCK_IF_MP(%4) "cmpxchgq %1,(%3)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                        : "=a" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                        : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   161
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value, cmpxchg_memory_order order) {
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   162
  return (intptr_t)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value, order);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   165
inline void*    Atomic::cmpxchg_ptr(void*    exchange_value, volatile void*     dest, void*    compare_value, cmpxchg_memory_order order) {
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   166
  return (void*)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value, order);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   169
inline jlong Atomic::load(volatile jlong* src) { return *src; }
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   170
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   171
#else // !AMD64
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  return (intptr_t)Atomic::add((jint)add_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  return (void*)Atomic::add((jint)add_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  inc((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  dec((volatile jint*)dest);
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 intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   194
extern "C" {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   195
  // defined in linux_x86.s
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   196
  jlong _Atomic_cmpxchg_long(jlong, volatile jlong*, jlong, bool);
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   197
  void _Atomic_move_long(volatile jlong* src, volatile jlong* dst);
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   198
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   199
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   200
inline jlong    Atomic::cmpxchg    (jlong    exchange_value, volatile jlong*    dest, jlong    compare_value, cmpxchg_memory_order order) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  return _Atomic_cmpxchg_long(exchange_value, dest, compare_value, os::is_MP());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   204
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value, cmpxchg_memory_order order) {
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   205
  return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value, order);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   208
inline void*    Atomic::cmpxchg_ptr(void*    exchange_value, volatile void*     dest, void*    compare_value, cmpxchg_memory_order order) {
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   209
  return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value, order);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
7885
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   211
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   212
inline jlong Atomic::load(volatile jlong* src) {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   213
  volatile jlong dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   214
  _Atomic_move_long(src, &dest);
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   215
  return dest;
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   216
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   217
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   218
inline void Atomic::store(jlong store_value, jlong* dest) {
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   219
  _Atomic_move_long((volatile jlong*)&store_value, (volatile jlong*)dest);
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   220
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   221
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   222
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
   223
  _Atomic_move_long((volatile jlong*)&store_value, dest);
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   224
}
c02b05ba16a1 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
   225
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
#endif // AMD64
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   227
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   228
#endif // OS_CPU_LINUX_X86_VM_ATOMIC_LINUX_X86_INLINE_HPP