hotspot/src/os_cpu/linux_x86/vm/atomic_linux_x86.inline.hpp
author chegar
Thu, 06 May 2010 17:17:09 +0100
changeset 5463 ad2d35ddcf37
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6946825: com.sun.net.httpserver.HttpServer; Memory Leak on Non HTTP conform open socket Reviewed-by: michaelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2005 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Implementation of class atomic
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
inline void Atomic::store    (jbyte    store_value, jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
inline void Atomic::store    (jshort   store_value, jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
inline void Atomic::store    (jint     store_value, jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
inline void Atomic::store_ptr(void*    store_value, void*     dest) { *(void**)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
inline void Atomic::store    (jbyte    store_value, volatile jbyte*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
inline void Atomic::store    (jshort   store_value, volatile jshort*   dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
inline void Atomic::store    (jint     store_value, volatile jint*     dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
inline void Atomic::store_ptr(void*    store_value, volatile void*     dest) { *(void* volatile *)dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Adding a lock prefix to an instruction on MP machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#define LOCK_IF_MP(mp) "cmp $0, " #mp "; je 1f; lock; 1: "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
inline jint     Atomic::add    (jint     add_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  jint addend = add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  __asm__ volatile (  LOCK_IF_MP(%3) "xaddl %0,(%2)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
                    : "=r" (addend)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                    : "0" (addend), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                    : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  return addend + add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
inline void Atomic::inc    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  __asm__ volatile (LOCK_IF_MP(%1) "addl $1,(%0)" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
                    : "r" (dest), "r" (mp) : "cc", "memory");
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_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  inc_ptr((volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
inline void Atomic::dec    (volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  __asm__ volatile (LOCK_IF_MP(%1) "subl $1,(%0)" :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
                    : "r" (dest), "r" (mp) : "cc", "memory");
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_ptr(volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  dec_ptr((volatile intptr_t*)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 jint     Atomic::xchg    (jint     exchange_value, volatile jint*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  __asm__ volatile (  "xchgl (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
                    : "=r" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
                    : "0" (exchange_value), "r" (dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
inline void*    Atomic::xchg_ptr(void*    exchange_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  return (void*)xchg_ptr((intptr_t)exchange_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
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 jint     Atomic::cmpxchg    (jint     exchange_value, volatile jint*     dest, jint     compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  int mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  __asm__ volatile (LOCK_IF_MP(%4) "cmpxchgl %1,(%3)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                    : "=a" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
                    : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                    : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
extern "C" {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // defined in linux_x86.s
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  jlong _Atomic_cmpxchg_long(jlong, volatile jlong*, jlong, bool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
inline void Atomic::store    (jlong    store_value, jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
inline void Atomic::store    (jlong    store_value, volatile jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  intptr_t addend = add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  __asm__ __volatile__ (LOCK_IF_MP(%3) "xaddq %0,(%2)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                        : "=r" (addend)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                        : "0" (addend), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  return addend + add_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return (void*)add_ptr(add_value, (volatile intptr_t*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  __asm__ __volatile__ (LOCK_IF_MP(%1) "addq $1,(%0)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
                        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
                        : "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  __asm__ __volatile__ (LOCK_IF_MP(%1) "subq $1,(%0)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
                        :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
                        : "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  __asm__ __volatile__ ("xchgq (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                        : "=r" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
                        : "0" (exchange_value), "r" (dest)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                        : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
inline jlong    Atomic::cmpxchg    (jlong    exchange_value, volatile jlong*    dest, jlong    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  bool mp = os::is_MP();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  __asm__ __volatile__ (LOCK_IF_MP(%4) "cmpxchgq %1,(%3)"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
                        : "=a" (exchange_value)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                        : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                        : "cc", "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  return exchange_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  return (intptr_t)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
inline void*    Atomic::cmpxchg_ptr(void*    exchange_value, volatile void*     dest, void*    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  return (void*)cmpxchg((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
//inline void Atomic::store    (jlong    store_value, jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
//inline void Atomic::store  (jlong    store_value, volatile jlong*    dest) { *dest = store_value; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  return (intptr_t)Atomic::add((jint)add_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
inline void*    Atomic::add_ptr(intptr_t add_value, volatile void*     dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  return (void*)Atomic::add((jint)add_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
inline void Atomic::inc_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  inc((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
inline void Atomic::dec_ptr(volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  dec((volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
inline jlong    Atomic::cmpxchg    (jlong    exchange_value, volatile jlong*    dest, jlong    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  return _Atomic_cmpxchg_long(exchange_value, dest, compare_value, os::is_MP());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
inline void*    Atomic::cmpxchg_ptr(void*    exchange_value, volatile void*     dest, void*    compare_value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
#endif // AMD64