hotspot/src/os_cpu/solaris_sparc/vm/atomic_solaris_sparc.hpp
author eosterlund
Wed, 23 Aug 2017 14:01:17 +0200
changeset 46958 a13bd8c6b7a2
parent 46534 025dfc75204d
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
/*
46381
020219e46c86 8150388: Remove SPARC 32-bit support
gtriantafill
parents: 40655
diff changeset
     2
 * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
    25
#ifndef OS_CPU_SOLARIS_SPARC_VM_ATOMIC_SOLARIS_SPARC_HPP
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
    26
#define OS_CPU_SOLARIS_SPARC_VM_ATOMIC_SOLARIS_SPARC_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// Implementation of class atomic
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
inline void Atomic::store    (jbyte    store_value, jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
inline void Atomic::store    (jshort   store_value, jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
inline void Atomic::store    (jint     store_value, jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
inline void Atomic::store_ptr(void*    store_value, void*     dest) { *(void**)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
inline void Atomic::store    (jbyte    store_value, volatile jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
inline void Atomic::store    (jshort   store_value, volatile jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
inline void Atomic::store    (jint     store_value, volatile jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
inline void Atomic::store_ptr(void*    store_value, volatile void*     dest) { *(void* volatile *)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
inline void Atomic::inc    (volatile jint*     dest) { (void)add    (1, dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
inline void Atomic::inc_ptr(volatile intptr_t* dest) { (void)add_ptr(1, dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
inline void Atomic::inc_ptr(volatile void*     dest) { (void)add_ptr(1, dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
inline void Atomic::dec    (volatile jint*     dest) { (void)add    (-1, dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
inline void Atomic::dec_ptr(volatile intptr_t* dest) { (void)add_ptr(-1, dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
inline void Atomic::dec_ptr(volatile void*     dest) { (void)add_ptr(-1, dest); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
7911
be4352e4480c 7012965: Fix failed on sparc for 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    50
be4352e4480c 7012965: Fix failed on sparc for 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    51
inline void Atomic::store(jlong store_value, jlong* dest) { *dest = store_value; }
be4352e4480c 7012965: Fix failed on sparc for 7009756: volatile variables could be broken throw reflection API
kvn
parents: 7397
diff changeset
    52
inline void Atomic::store(jlong store_value, volatile jlong* dest) { *dest = store_value; }
46523
cbcc0ebaa044 8166651: OrderAccess::load_acquire &etc should have const parameters
kbarrett
parents: 46381
diff changeset
    53
inline jlong Atomic::load(const volatile jlong* src) { return *src; }
3594
0ce9158bc84c 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 1
diff changeset
    54
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// This is the interface to the atomic instructions in solaris_sparc.il.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// It's very messy because we need to support v8 and these instructions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// are illegal there.  When sparc v8 is dropped, we can drop out lots of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// this code.  Also compiler2 does not support v8 so the conditional code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// omits the instruction set check.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
extern "C" jint     _Atomic_swap32(jint     exchange_value, volatile jint*     dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
extern "C" intptr_t _Atomic_swap64(intptr_t exchange_value, volatile intptr_t* dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
extern "C" jint     _Atomic_add32(jint     inc,       volatile jint*     dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
extern "C" intptr_t _Atomic_add64(intptr_t add_value, 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 jint     Atomic::add     (jint    add_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  return _Atomic_add32(add_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  return _Atomic_add64(add_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  return (void*)add_ptr((intptr_t)add_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
inline jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  return _Atomic_swap32(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  return _Atomic_swap64(exchange_value, dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  return (void*)xchg_ptr((intptr_t)exchange_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
    94
// No direct support for cmpxchg of bytes; emulate using int.
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
    95
template<>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
    96
struct Atomic::PlatformCmpxchg<1> : Atomic::CmpxchgByteUsingInt {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
    98
template<>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
    99
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   100
inline T Atomic::PlatformCmpxchg<4>::operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   101
                                                T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   102
                                                T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   103
                                                cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   104
  STATIC_ASSERT(4 == sizeof(T));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   105
  T rv;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   106
  __asm__ volatile(
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   107
    " cas    [%2], %3, %0"
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   108
    : "=r" (rv)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   109
    : "0" (exchange_value), "r" (dest), "r" (compare_value)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   110
    : "memory");
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   111
  return rv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
46958
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   114
template<>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   115
template<typename T>
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   116
inline T Atomic::PlatformCmpxchg<8>::operator()(T exchange_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   117
                                                T volatile* dest,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   118
                                                T compare_value,
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   119
                                                cmpxchg_memory_order order) const {
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   120
  STATIC_ASSERT(8 == sizeof(T));
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   121
  T rv;
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   122
  __asm__ volatile(
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   123
    " casx   [%2], %3, %0"
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   124
    : "=r" (rv)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   125
    : "0" (exchange_value), "r" (dest), "r" (compare_value)
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   126
    : "memory");
a13bd8c6b7a2 8186166: Generalize Atomic::cmpxchg with templates
eosterlund
parents: 46534
diff changeset
   127
  return rv;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39404
diff changeset
   130
#endif // OS_CPU_SOLARIS_SPARC_VM_ATOMIC_SOLARIS_SPARC_HPP