hotspot/src/os_cpu/linux_x86/vm/orderAccess_linux_x86.inline.hpp
author never
Thu, 26 Mar 2009 14:31:45 -0700
changeset 2338 a8660a1b709b
parent 1 489c9b5090e2
child 3261 c7d5aae8d3f7
permissions -rw-r--r--
6822204: volatile fences should prefer lock:addl to actual mfence instructions Reviewed-by: kvn, phh
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 2003 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 OrderAccess.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
inline void OrderAccess::loadload()   { acquire(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
inline void OrderAccess::storestore() { release(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
inline void OrderAccess::loadstore()  { acquire(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
inline void OrderAccess::storeload()  { fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
inline void OrderAccess::acquire() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  volatile intptr_t dummy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  __asm__ volatile ("movq 0(%%rsp), %0" : "=r" (dummy) : : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  __asm__ volatile ("movl 0(%%esp),%0" : "=r" (dummy) : : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
inline void OrderAccess::release() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  dummy = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
inline void OrderAccess::fence() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  if (os::is_MP()) {
2338
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 1
diff changeset
    47
    // always use locked addl since mfence is sometimes expensive
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#ifdef AMD64
2338
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 1
diff changeset
    49
    __asm__ volatile ("lock; addl $0,0(%%rsp)" : : : "cc", "memory");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    __asm__ volatile ("lock; addl $0,0(%%esp)" : : : "cc", "memory");
2338
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 1
diff changeset
    52
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
inline jbyte    OrderAccess::load_acquire(volatile jbyte*   p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
inline jshort   OrderAccess::load_acquire(volatile jshort*  p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
inline jint     OrderAccess::load_acquire(volatile jint*    p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
inline jlong    OrderAccess::load_acquire(volatile jlong*   p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
inline jubyte   OrderAccess::load_acquire(volatile jubyte*  p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
inline jushort  OrderAccess::load_acquire(volatile jushort* p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
inline juint    OrderAccess::load_acquire(volatile juint*   p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
inline julong   OrderAccess::load_acquire(volatile julong*  p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
inline jfloat   OrderAccess::load_acquire(volatile jfloat*  p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
inline jdouble  OrderAccess::load_acquire(volatile jdouble* p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
inline intptr_t OrderAccess::load_ptr_acquire(volatile intptr_t*   p) { return *p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
inline void*    OrderAccess::load_ptr_acquire(volatile void*       p) { return *(void* volatile *)p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
inline void*    OrderAccess::load_ptr_acquire(const volatile void* p) { return *(void* const volatile *)p; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
inline void     OrderAccess::release_store(volatile jbyte*   p, jbyte   v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
inline void     OrderAccess::release_store(volatile jshort*  p, jshort  v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
inline void     OrderAccess::release_store(volatile jint*    p, jint    v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
inline void     OrderAccess::release_store(volatile jlong*   p, jlong   v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
inline void     OrderAccess::release_store(volatile jubyte*  p, jubyte  v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
inline void     OrderAccess::release_store(volatile jushort* p, jushort v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
inline void     OrderAccess::release_store(volatile juint*   p, juint   v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
inline void     OrderAccess::release_store(volatile julong*  p, julong  v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
inline void     OrderAccess::release_store(volatile jfloat*  p, jfloat  v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
inline void     OrderAccess::release_store(volatile jdouble* p, jdouble v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
inline void     OrderAccess::release_store_ptr(volatile intptr_t* p, intptr_t v) { *p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
inline void     OrderAccess::release_store_ptr(volatile void*     p, void*    v) { *(void* volatile *)p = v; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
inline void     OrderAccess::store_fence(jbyte*  p, jbyte  v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  __asm__ volatile (  "xchgb (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                    : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                    : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
inline void     OrderAccess::store_fence(jshort* p, jshort v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  __asm__ volatile (  "xchgw (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                    : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                    : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
inline void     OrderAccess::store_fence(jint*   p, jint   v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  __asm__ volatile (  "xchgl (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                    : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                    : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
inline void     OrderAccess::store_fence(jlong*   p, jlong   v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  __asm__ __volatile__ ("xchgq (%2), %0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                        : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                        : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                        : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// AMD64 copied the bodies for the the signed version. 32bit did this. As long as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// compiler does the inlining this is simpler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
inline void     OrderAccess::store_fence(jubyte*  p, jubyte  v) { store_fence((jbyte*)p,  (jbyte)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
inline void     OrderAccess::store_fence(jushort* p, jushort v) { store_fence((jshort*)p, (jshort)v); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
inline void     OrderAccess::store_fence(juint*   p, juint   v) { store_fence((jint*)p,   (jint)v);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
inline void     OrderAccess::store_fence(julong*  p, julong  v) { store_fence((jlong*)p,  (jlong)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
inline void     OrderAccess::store_fence(jfloat*  p, jfloat  v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
inline void     OrderAccess::store_fence(jdouble* p, jdouble v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
inline void     OrderAccess::store_ptr_fence(intptr_t* p, intptr_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  __asm__ __volatile__ ("xchgq (%2), %0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
                        : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                        : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
                        : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  store_fence((jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
inline void     OrderAccess::store_ptr_fence(void**    p, void*    v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  __asm__ __volatile__ ("xchgq (%2), %0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
                        : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
                        : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
                        : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  store_fence((jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// Must duplicate definitions instead of calling store_fence because we don't want to cast away volatile.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
inline void     OrderAccess::release_store_fence(volatile jbyte*  p, jbyte  v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  __asm__ volatile (  "xchgb (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                    : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                    : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
inline void     OrderAccess::release_store_fence(volatile jshort* p, jshort v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  __asm__ volatile (  "xchgw (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                    : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                    : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
inline void     OrderAccess::release_store_fence(volatile jint*   p, jint   v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  __asm__ volatile (  "xchgl (%2),%0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                    : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                    : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                    : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
inline void     OrderAccess::release_store_fence(volatile jlong*   p, jlong   v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  __asm__ __volatile__ (  "xchgq (%2), %0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                          : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
                          : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                          : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  *p = v; fence();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
inline void     OrderAccess::release_store_fence(volatile jubyte*  p, jubyte  v) { release_store_fence((volatile jbyte*)p,  (jbyte)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
inline void     OrderAccess::release_store_fence(volatile jushort* p, jushort v) { release_store_fence((volatile jshort*)p, (jshort)v); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
inline void     OrderAccess::release_store_fence(volatile juint*   p, juint   v) { release_store_fence((volatile jint*)p,   (jint)v);   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
inline void     OrderAccess::release_store_fence(volatile julong*  p, julong  v) { release_store_fence((volatile jlong*)p,  (jlong)v);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
inline void     OrderAccess::release_store_fence(volatile jfloat*  p, jfloat  v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
inline void     OrderAccess::release_store_fence(volatile jdouble* p, jdouble v) { *p = v; fence(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
inline void     OrderAccess::release_store_ptr_fence(volatile intptr_t* p, intptr_t v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  __asm__ __volatile__ (  "xchgq (%2), %0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                          : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
                          : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
                          : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  release_store_fence((volatile jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
inline void     OrderAccess::release_store_ptr_fence(volatile void*     p, void*    v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
#ifdef AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  __asm__ __volatile__ (  "xchgq (%2), %0"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
                          : "=r" (v)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
                          : "0" (v), "r" (p)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
                          : "memory");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  release_store_fence((volatile jint*)p, (jint)v);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
#endif // AMD64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}