hotspot/src/share/vm/runtime/atomic.hpp
author eosterlund
Wed, 23 Aug 2017 14:01:17 +0200
changeset 46958 a13bd8c6b7a2
parent 46625 edefffab74e2
child 46993 dd0f91c85ffc
permissions -rw-r--r--
8186166: Generalize Atomic::cmpxchg with templates Reviewed-by: dholmes, coleenp Contributed-by: kim.barrett@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46266
d5ccf56195af 8157709: NMT should use size_t version of Atomic::add
dholmes
parents: 40860
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: 3795
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
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: 3795
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 SHARE_VM_RUNTIME_ATOMIC_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_ATOMIC_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 "memory/allocation.hpp"
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
    29
#include "metaprogramming/enableIf.hpp"
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
    30
#include "metaprogramming/isIntegral.hpp"
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
    31
#include "metaprogramming/isSame.hpp"
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
    32
#include "metaprogramming/primitiveConversions.hpp"
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
    33
#include "metaprogramming/removeCV.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    34
#include "utilities/align.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
    35
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    37
enum cmpxchg_memory_order {
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    38
  memory_order_relaxed,
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    39
  // Use value which doesn't interfere with C++2011. We need to be more conservative.
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    40
  memory_order_conservative = 8
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    41
};
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    42
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class Atomic : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
 public:
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    45
  // Atomic operations on jlong types are not available on all 32-bit
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    46
  // platforms. If atomic ops on jlongs are defined here they must only
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    47
  // be used from code that verifies they are available at runtime and
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    48
  // can provide an alternative action if not - see supports_cx8() for
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    49
  // a means to test availability.
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    50
25625
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    51
  // The memory operations that are mentioned with each of the atomic
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    52
  // function families come from src/share/vm/runtime/orderAccess.hpp,
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    53
  // e.g., <fence> is described in that file and is implemented by the
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    54
  // OrderAccess::fence() function. See that file for the gory details
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    55
  // on the Memory Access Ordering Model.
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    56
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    57
  // All of the atomic operations that imply a read-modify-write action
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    58
  // guarantee a two-way memory barrier across that operation. Historically
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    59
  // these semantics reflect the strength of atomic operations that are
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    60
  // provided on SPARC/X86. We assume that strength is necessary unless
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    61
  // we can prove that a weaker form is sufficiently safe.
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    62
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // Atomically store to a location
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    64
  inline static void store    (jbyte    store_value, jbyte*    dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    65
  inline static void store    (jshort   store_value, jshort*   dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    66
  inline static void store    (jint     store_value, jint*     dest);
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    67
  // See comment above about using jlong atomics on 32-bit platforms
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    68
  inline static void store    (jlong    store_value, jlong*    dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    69
  inline static void store_ptr(intptr_t store_value, intptr_t* dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    70
  inline static void store_ptr(void*    store_value, void*     dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    72
  inline static void store    (jbyte    store_value, volatile jbyte*    dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    73
  inline static void store    (jshort   store_value, volatile jshort*   dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    74
  inline static void store    (jint     store_value, volatile jint*     dest);
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    75
  // See comment above about using jlong atomics on 32-bit platforms
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    76
  inline static void store    (jlong    store_value, volatile jlong*    dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    77
  inline static void store_ptr(intptr_t store_value, volatile intptr_t* dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    78
  inline static void store_ptr(void*    store_value, volatile void*     dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 14626
diff changeset
    80
  // See comment above about using jlong atomics on 32-bit platforms
46523
cbcc0ebaa044 8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents: 46266
diff changeset
    81
  inline static jlong load(const volatile jlong* src);
3594
0ce9158bc84c 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 670
diff changeset
    82
25625
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    83
  // Atomically add to a location. Returns updated value. add*() provide:
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    84
  // <fence> add-value-to-dest <membar StoreLoad|StoreStore>
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
    85
  inline static jshort   add    (jshort   add_value, volatile jshort*   dest);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    86
  inline static jint     add    (jint     add_value, volatile jint*     dest);
23523
75f522e33395 8037295: Add size_t versions of Atomic::add, dec, and inc
mgronlun
parents: 22234
diff changeset
    87
  inline static size_t   add    (size_t   add_value, volatile size_t*   dest);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    88
  inline static intptr_t add_ptr(intptr_t add_value, volatile intptr_t* dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    89
  inline static void*    add_ptr(intptr_t add_value, volatile void*     dest);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 7397
diff changeset
    90
25625
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    91
  // Atomically increment location. inc*() provide:
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    92
  // <fence> increment-dest <membar StoreLoad|StoreStore>
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    93
  inline static void inc    (volatile jint*     dest);
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
    94
  inline static void inc    (volatile jshort*   dest);
23523
75f522e33395 8037295: Add size_t versions of Atomic::add, dec, and inc
mgronlun
parents: 22234
diff changeset
    95
  inline static void inc    (volatile size_t*   dest);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    96
  inline static void inc_ptr(volatile intptr_t* dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
    97
  inline static void inc_ptr(volatile void*     dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
25625
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
    99
  // Atomically decrement a location. dec*() provide:
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   100
  // <fence> decrement-dest <membar StoreLoad|StoreStore>
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
   101
  inline static void dec    (volatile jint*     dest);
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   102
  inline static void dec    (volatile jshort*   dest);
23523
75f522e33395 8037295: Add size_t versions of Atomic::add, dec, and inc
mgronlun
parents: 22234
diff changeset
   103
  inline static void dec    (volatile size_t*   dest);
14626
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
   104
  inline static void dec_ptr(volatile intptr_t* dest);
0cf4eccf130f 8003240: x86: move MacroAssembler into separate file
twisti
parents: 9990
diff changeset
   105
  inline static void dec_ptr(volatile void*     dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
25625
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   107
  // Performs atomic exchange of *dest with exchange_value. Returns old
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   108
  // prior value of *dest. xchg*() provide:
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   109
  // <fence> exchange-value-with-dest <membar StoreLoad|StoreStore>
39404
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   110
  inline static jint         xchg    (jint         exchange_value, volatile jint*         dest);
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   111
  inline static unsigned int xchg    (unsigned int exchange_value, volatile unsigned int* dest);
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   112
  inline static intptr_t     xchg_ptr(intptr_t     exchange_value, volatile intptr_t*     dest);
d0ad5220e91c 8155949: Support relaxed semantics in cmpxchg
mdoerr
parents: 27691
diff changeset
   113
  inline static void*        xchg_ptr(void*        exchange_value, volatile void*         dest);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
25625
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   115
  // Performs atomic compare of *dest and compare_value, and exchanges
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   116
  // *dest with exchange_value if the comparison succeeded. Returns prior
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   117
  // value of *dest. cmpxchg*() provide:
00dca966711e 8049104: resolve atomic.hpp wording issues from JDK-8047104 code review
dcubed
parents: 25069
diff changeset
   118
  // <fence> compare-and-exchange <membar StoreLoad|StoreStore>
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   119
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   120
  template<typename T, typename D, typename U>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   121
  inline static D cmpxchg(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   122
                          D volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   123
                          U compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   124
                          cmpxchg_memory_order order = memory_order_conservative);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   125
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   126
  // Performs atomic compare of *dest and NULL, and replaces *dest
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   127
  // with exchange_value if the comparison succeeded.  Returns true if
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   128
  // the comparison succeeded and the exchange occurred.  This is
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   129
  // often used as part of lazy initialization, as a lock-free
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   130
  // alternative to the Double-Checked Locking Pattern.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   131
  template<typename T, typename D>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   132
  inline static bool replace_if_null(T* value, D* volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   133
                                     cmpxchg_memory_order order = memory_order_conservative);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   134
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   135
  inline static intptr_t cmpxchg_ptr(intptr_t exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   136
                                     volatile intptr_t* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   137
                                     intptr_t compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   138
                                     cmpxchg_memory_order order = memory_order_conservative) {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   139
    return cmpxchg(exchange_value, dest, compare_value, order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   140
  }
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   141
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   142
  inline static void* cmpxchg_ptr(void* exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   143
                                  volatile void* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   144
                                  void* compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   145
                                  cmpxchg_memory_order order = memory_order_conservative) {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   146
    return cmpxchg(exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   147
                   reinterpret_cast<void* volatile*>(dest),
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   148
                   compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   149
                   order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   150
  }
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   151
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   152
private:
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   153
  // Test whether From is implicitly convertible to To.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   154
  // From and To must be pointer types.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   155
  // Note: Provides the limited subset of C++11 std::is_convertible
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   156
  // that is needed here.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   157
  template<typename From, typename To> struct IsPointerConvertible;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   158
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   159
  // Dispatch handler for cmpxchg.  Provides type-based validity
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   160
  // checking and limited conversions around calls to the
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   161
  // platform-specific implementation layer provided by
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   162
  // PlatformCmpxchg.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   163
  template<typename T, typename D, typename U, typename Enable = void>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   164
  struct CmpxchgImpl;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   165
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   166
  // Platform-specific implementation of cmpxchg.  Support for sizes
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   167
  // of 1, 4, and 8 are required.  The class is a function object that
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   168
  // must be default constructable, with these requirements:
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   169
  //
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   170
  // - dest is of type T*.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   171
  // - exchange_value and compare_value are of type T.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   172
  // - order is of type cmpxchg_memory_order.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   173
  // - platform_cmpxchg is an object of type PlatformCmpxchg<sizeof(T)>.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   174
  //
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   175
  // Then
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   176
  //   platform_cmpxchg(exchange_value, dest, compare_value, order)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   177
  // must be a valid expression, returning a result convertible to T.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   178
  //
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   179
  // A default definition is provided, which declares a function template
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   180
  //   T operator()(T, T volatile*, T, cmpxchg_memory_order) const
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   181
  //
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   182
  // For each required size, a platform must either provide an
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   183
  // appropriate definition of that function, or must entirely
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   184
  // specialize the class template for that size.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   185
  template<size_t byte_size> struct PlatformCmpxchg;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   186
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   187
  // Support for platforms that implement some variants of cmpxchg
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   188
  // using a (typically out of line) non-template helper function.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   189
  // The generic arguments passed to PlatformCmpxchg need to be
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   190
  // translated to the appropriate type for the helper function, the
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   191
  // helper invoked on the translated arguments, and the result
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   192
  // translated back.  Type is the parameter / return type of the
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   193
  // helper function.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   194
  template<typename Type, typename Fn, typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   195
  static T cmpxchg_using_helper(Fn fn,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   196
                                T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   197
                                T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   198
                                T compare_value);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   199
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   200
  // Support platforms that do not provide Read-Modify-Write
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   201
  // byte-level atomic access. To use, derive PlatformCmpxchg<1> from
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   202
  // this class.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   203
public: // Temporary, can't be private: C++03 11.4/2. Fixed by C++11.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   204
  struct CmpxchgByteUsingInt;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   205
private:
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   206
};
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   207
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   208
template<typename From, typename To>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   209
struct Atomic::IsPointerConvertible<From*, To*> : AllStatic {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   210
  // Determine whether From* is implicitly convertible to To*, using
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   211
  // the "sizeof trick".
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   212
  typedef char yes;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   213
  typedef char (&no)[2];
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   214
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   215
  static yes test(To*);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   216
  static no test(...);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   217
  static From* test_value;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   218
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   219
  static const bool value = (sizeof(yes) == sizeof(test(test_value)));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   220
};
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   221
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   222
// Define the class before including platform file, which may specialize
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   223
// the operator definition.  No generic definition of specializations
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   224
// of the operator template are provided, nor are there any generic
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   225
// specializations of the class.  The platform file is responsible for
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   226
// providing those.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   227
template<size_t byte_size>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   228
struct Atomic::PlatformCmpxchg VALUE_OBJ_CLASS_SPEC {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   229
  template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   230
  T operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   231
               T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   232
               T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   233
               cmpxchg_memory_order order) const;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   234
};
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   235
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   236
// Define the class before including platform file, which may use this
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   237
// as a base class, requiring it be complete.  The definition is later
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   238
// in this file, near the other definitions related to cmpxchg.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   239
struct Atomic::CmpxchgByteUsingInt VALUE_OBJ_CLASS_SPEC {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   240
  template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   241
  T operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   242
               T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   243
               T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   244
               cmpxchg_memory_order order) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   246
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   247
// platform specific in-line definitions - must come before shared definitions
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   248
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   249
#include OS_CPU_HEADER(atomic)
18438
9ea6bbfe0b83 8009575: Reduce Symbol::_refcount from 4 bytes to 2 bytes
iklam
parents: 15803
diff changeset
   250
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   251
// shared in-line definitions
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   252
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   253
// size_t casts...
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   254
#if (SIZE_MAX != UINTPTR_MAX)
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   255
#error size_t is not WORD_SIZE, interesting platform, but missing implementation here
18438
9ea6bbfe0b83 8009575: Reduce Symbol::_refcount from 4 bytes to 2 bytes
iklam
parents: 15803
diff changeset
   256
#endif
9ea6bbfe0b83 8009575: Reduce Symbol::_refcount from 4 bytes to 2 bytes
iklam
parents: 15803
diff changeset
   257
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   258
inline size_t Atomic::add(size_t add_value, volatile size_t* dest) {
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   259
  return (size_t) add_ptr((intptr_t) add_value, (volatile intptr_t*) dest);
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   260
}
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   261
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   262
inline void Atomic::inc(volatile size_t* dest) {
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   263
  inc_ptr((volatile intptr_t*) dest);
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   264
}
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   265
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   266
inline void Atomic::dec(volatile size_t* dest) {
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   267
  dec_ptr((volatile intptr_t*) dest);
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   268
}
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   269
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   270
template<typename T, typename D, typename U>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   271
inline D Atomic::cmpxchg(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   272
                         D volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   273
                         U compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   274
                         cmpxchg_memory_order order) {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   275
  return CmpxchgImpl<T, D, U>()(exchange_value, dest, compare_value, order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   276
}
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   277
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   278
template<typename T, typename D>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   279
inline bool Atomic::replace_if_null(T* value, D* volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   280
                                    cmpxchg_memory_order order) {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   281
  // Presently using a trivial implementation in terms of cmpxchg.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   282
  // Consider adding platform support, to permit the use of compiler
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   283
  // intrinsics like gcc's __sync_bool_compare_and_swap.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   284
  D* expected_null = NULL;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   285
  return expected_null == cmpxchg(value, dest, expected_null, order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   286
}
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   287
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   288
// Handle cmpxchg for integral and enum types.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   289
//
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   290
// All the involved types must be identical.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   291
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   292
struct Atomic::CmpxchgImpl<
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   293
  T, T, T,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   294
  typename EnableIf<IsIntegral<T>::value || IsRegisteredEnum<T>::value>::type>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   295
  VALUE_OBJ_CLASS_SPEC
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   296
{
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   297
  T operator()(T exchange_value, T volatile* dest, T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   298
               cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   299
    // Forward to the platform handler for the size of T.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   300
    return PlatformCmpxchg<sizeof(T)>()(exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   301
                                        dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   302
                                        compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   303
                                        order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   304
  }
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   305
};
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   306
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   307
// Handle cmpxchg for pointer types.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   308
//
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   309
// The destination's type and the compare_value type must be the same,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   310
// ignoring cv-qualifiers; we don't care about the cv-qualifiers of
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   311
// the compare_value.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   312
//
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   313
// The exchange_value must be implicitly convertible to the
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   314
// destination's type; it must be type-correct to store the
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   315
// exchange_value in the destination.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   316
template<typename T, typename D, typename U>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   317
struct Atomic::CmpxchgImpl<
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   318
  T*, D*, U*,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   319
  typename EnableIf<Atomic::IsPointerConvertible<T*, D*>::value &&
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   320
                    IsSame<typename RemoveCV<D>::type,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   321
                           typename RemoveCV<U>::type>::value>::type>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   322
  VALUE_OBJ_CLASS_SPEC
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   323
{
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   324
  D* operator()(T* exchange_value, D* volatile* dest, U* compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   325
               cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   326
    // Allow derived to base conversion, and adding cv-qualifiers.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   327
    D* new_value = exchange_value;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   328
    // Don't care what the CV qualifiers for compare_value are,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   329
    // but we need to match D* when calling platform support.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   330
    D* old_value = const_cast<D*>(compare_value);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   331
    return PlatformCmpxchg<sizeof(D*)>()(new_value, dest, old_value, order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   332
  }
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   333
};
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   334
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   335
// Handle cmpxchg for types that have a translator.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   336
//
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   337
// All the involved types must be identical.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   338
//
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   339
// This translates the original call into a call on the decayed
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   340
// arguments, and returns the recovered result of that translated
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   341
// call.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   342
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   343
struct Atomic::CmpxchgImpl<
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   344
  T, T, T,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   345
  typename EnableIf<PrimitiveConversions::Translate<T>::value>::type>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   346
  VALUE_OBJ_CLASS_SPEC
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   347
{
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   348
  T operator()(T exchange_value, T volatile* dest, T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   349
               cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   350
    typedef PrimitiveConversions::Translate<T> Translator;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   351
    typedef typename Translator::Decayed Decayed;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   352
    STATIC_ASSERT(sizeof(T) == sizeof(Decayed));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   353
    return Translator::recover(
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   354
      cmpxchg(Translator::decay(exchange_value),
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   355
              reinterpret_cast<Decayed volatile*>(dest),
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   356
              Translator::decay(compare_value),
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   357
              order));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   358
  }
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   359
};
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   360
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   361
template<typename Type, typename Fn, typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   362
inline T Atomic::cmpxchg_using_helper(Fn fn,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   363
                                      T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   364
                                      T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   365
                                      T compare_value) {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   366
  STATIC_ASSERT(sizeof(Type) == sizeof(T));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   367
  return PrimitiveConversions::cast<T>(
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   368
    fn(PrimitiveConversions::cast<Type>(exchange_value),
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   369
       reinterpret_cast<Type volatile*>(dest),
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   370
       PrimitiveConversions::cast<Type>(compare_value)));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   371
}
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   372
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   373
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   374
inline T Atomic::CmpxchgByteUsingInt::operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   375
                                                 T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   376
                                                 T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   377
                                                 cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   378
  STATIC_ASSERT(sizeof(T) == sizeof(uint8_t));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   379
  uint8_t canon_exchange_value = exchange_value;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   380
  uint8_t canon_compare_value = compare_value;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   381
  volatile uint32_t* aligned_dest
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   382
    = reinterpret_cast<volatile uint32_t*>(align_down(dest, sizeof(uint32_t)));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   383
  size_t offset = pointer_delta(dest, aligned_dest, 1);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   384
  uint32_t cur = *aligned_dest;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   385
  uint8_t* cur_as_bytes = reinterpret_cast<uint8_t*>(&cur);
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   386
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   387
  // current value may not be what we are looking for, so force it
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   388
  // to that value so the initial cmpxchg will fail if it is different
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   389
  cur_as_bytes[offset] = canon_compare_value;
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   390
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   391
  // always execute a real cmpxchg so that we get the required memory
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   392
  // barriers even on initial failure
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   393
  do {
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   394
    // value to swap in matches current value ...
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   395
    uint32_t new_value = cur;
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   396
    // ... except for the one jbyte we want to update
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   397
    reinterpret_cast<uint8_t*>(&new_value)[offset] = canon_exchange_value;
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   398
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   399
    uint32_t res = cmpxchg(new_value, aligned_dest, cur, order);
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   400
    if (res == cur) break;      // success
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   401
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   402
    // at least one byte in the int changed value, so update
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   403
    // our view of the current int
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   404
    cur = res;
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   405
    // if our byte is still as cur we loop and try again
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   406
  } while (cur_as_bytes[offset] == canon_compare_value);
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   407
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46625
diff changeset
   408
  return PrimitiveConversions::cast<T>(cur_as_bytes[offset]);
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   409
}
40669
252f9d8272af 8157904: Atomic::cmpxchg for jbyte is missing a fence on initial failure
dholmes
parents: 40655
diff changeset
   410
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   411
inline unsigned Atomic::xchg(unsigned int exchange_value, volatile unsigned int* dest) {
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   412
  assert(sizeof(unsigned int) == sizeof(jint), "more work to do");
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   413
  return (unsigned int)Atomic::xchg((jint)exchange_value, (volatile jint*)dest);
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   414
}
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   415
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   416
inline jshort Atomic::add(jshort add_value, volatile jshort* dest) {
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   417
  // Most platforms do not support atomic add on a 2-byte value. However,
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   418
  // if the value occupies the most significant 16 bits of an aligned 32-bit
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   419
  // word, then we can do this with an atomic add of (add_value << 16)
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   420
  // to the 32-bit word.
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   421
  //
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   422
  // The least significant parts of this 32-bit word will never be affected, even
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   423
  // in case of overflow/underflow.
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   424
  //
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   425
  // Use the ATOMIC_SHORT_PAIR macro (see macros.hpp) to get the desired alignment.
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   426
#ifdef VM_LITTLE_ENDIAN
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   427
  assert((intx(dest) & 0x03) == 0x02, "wrong alignment");
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   428
  jint new_value = Atomic::add(add_value << 16, (volatile jint*)(dest-1));
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   429
#else
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   430
  assert((intx(dest) & 0x03) == 0x00, "wrong alignment");
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   431
  jint new_value = Atomic::add(add_value << 16, (volatile jint*)(dest));
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   432
#endif
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   433
  return (jshort)(new_value >> 16); // preserves sign
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   434
}
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   435
40860
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   436
inline void Atomic::inc(volatile jshort* dest) {
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   437
  (void)add(1, dest);
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   438
}
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   439
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   440
inline void Atomic::dec(volatile jshort* dest) {
34163901ad5f 8161280: assert failed: reference count underflow for symbol
iklam
parents: 40669
diff changeset
   441
  (void)add(-1, dest);
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   442
}
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   443
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   444
#endif // SHARE_VM_RUNTIME_ATOMIC_HPP