annotate src/os_cpu/solaris_x86/vm/atomic_solaris_x86.inline.hpp @ 2030:fb712ff22571

7000559: G1: assertion failure !outer || (full_collections_started == _full_collections_completed + 1) Summary: The concurrent marking thread can complete its operation and increment the full GC counter during a Full GC. This causes the nesting of increments to the start and end of Full GCs that we are expecting to be wrong. the fix is for the marking thread to join the suspendible thread set before incrementing the counter so that it's blocked until the Full GC (or any other safepoint) is finished. The change also includes some minor code cleanup (I renamed a parameter). Reviewed-by: brutisso, ysr
author tonyp
date Tue, 14 Dec 2010 16:19:44 -0500
parents f95d63e2154a
children 4fc084dac61e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1547
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1547
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1547
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef OS_CPU_SOLARIS_X86_VM_ATOMIC_SOLARIS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define OS_CPU_SOLARIS_X86_VM_ATOMIC_SOLARIS_X86_INLINE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "orderAccess_solaris_x86.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/atomic.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/os.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "vm_version_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
34 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
35 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
42 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
43 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 inline void Atomic::store_ptr(void* store_value, volatile void* dest) { *(void* volatile *)dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 inline void Atomic::inc (volatile jint* dest) { (void)add (1, dest); }
a61af66fc99e Initial load
duke
parents:
diff changeset
48 inline void Atomic::inc_ptr(volatile intptr_t* dest) { (void)add_ptr(1, dest); }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 inline void Atomic::inc_ptr(volatile void* dest) { (void)add_ptr(1, dest); }
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 inline void Atomic::dec (volatile jint* dest) { (void)add (-1, dest); }
a61af66fc99e Initial load
duke
parents:
diff changeset
52 inline void Atomic::dec_ptr(volatile intptr_t* dest) { (void)add_ptr(-1, dest); }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 inline void Atomic::dec_ptr(volatile void* dest) { (void)add_ptr(-1, dest); }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // For Sun Studio - implementation is in solaris_x86_[32/64].il.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // For gcc - implementation is just below.
a61af66fc99e Initial load
duke
parents:
diff changeset
57
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
58 // The lock prefix can be omitted for certain instructions on uniprocessors; to
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
59 // facilitate this, os::is_MP() is passed as an additional argument. 64-bit
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
60 // processors are assumed to be multi-threaded and/or multi-core, so the extra
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
61 // argument is unnecessary.
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
62 #ifndef _LP64
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
63 #define IS_MP_DECL() , int is_mp
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
64 #define IS_MP_ARG() , (int) os::is_MP()
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
65 #else
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
66 #define IS_MP_DECL()
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
67 #define IS_MP_ARG()
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
68 #endif // _LP64
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
69
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
70 extern "C" {
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
71 jint _Atomic_add(jint add_value, volatile jint* dest IS_MP_DECL());
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
72 jint _Atomic_xchg(jint exchange_value, volatile jint* dest);
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
73 jint _Atomic_cmpxchg(jint exchange_value, volatile jint* dest,
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
74 jint compare_value IS_MP_DECL());
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
75 jlong _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest,
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
76 jlong compare_value IS_MP_DECL());
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
77 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 inline jint Atomic::add (jint add_value, volatile jint* dest) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
80 return _Atomic_add(add_value, dest IS_MP_ARG());
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
81 }
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
82
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
83 inline jint Atomic::xchg (jint exchange_value, volatile jint* dest) {
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
84 return _Atomic_xchg(exchange_value, dest);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 inline jint Atomic::cmpxchg (jint exchange_value, volatile jint* dest, jint compare_value) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
88 return _Atomic_cmpxchg(exchange_value, dest, compare_value IS_MP_ARG());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 inline jlong Atomic::cmpxchg (jlong exchange_value, volatile jlong* dest, jlong compare_value) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
92 return _Atomic_cmpxchg_long(exchange_value, dest, compare_value IS_MP_ARG());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
97 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value; }
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
99 extern "C" jlong _Atomic_add_long(jlong add_value, volatile jlong* dest);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
100 extern "C" jlong _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
103 return (intptr_t)_Atomic_add_long((jlong)add_value, (volatile jlong*)dest);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
107 return (void*)_Atomic_add_long((jlong)add_value, (volatile jlong*)dest);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 return (intptr_t)_Atomic_xchg_long((jlong)exchange_value, (volatile jlong*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 return (void*)_Atomic_xchg_long((jlong)exchange_value, (volatile jlong*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
119 return (intptr_t)_Atomic_cmpxchg_long((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
1547
fb1a39993f69 6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents: 948
diff changeset
123 return (void*)_Atomic_cmpxchg_long((jlong)exchange_value, (volatile jlong*)dest, (jlong)compare_value);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125
894
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
126 inline jlong Atomic::load(volatile jlong* src) { return *src; }
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
127
0
a61af66fc99e Initial load
duke
parents:
diff changeset
128 #else // !AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return (intptr_t)add((jint)add_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 return (void*)add((jint)add_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 return (intptr_t)xchg((jint)exchange_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return (void*)xchg((jint)exchange_value, (volatile jint*)dest);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 return (intptr_t)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return (void*)cmpxchg((jint)exchange_value, (volatile jint*)dest, (jint)compare_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
894
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
153
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
154 extern "C" void _Atomic_load_long(volatile jlong* src, volatile jlong* dst);
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
155
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
156 inline jlong Atomic::load(volatile jlong* src) {
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
157 volatile jlong dest;
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
158 _Atomic_load_long(src, &dest);
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
159 return dest;
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
160 }
665be97e8704 6863420: os::javaTimeNanos() go backward on Solaris x86
kvn
parents: 0
diff changeset
161
0
a61af66fc99e Initial load
duke
parents:
diff changeset
162 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 #ifdef _GNU_SOURCE
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Add a lock prefix to an instruction on an MP machine
a61af66fc99e Initial load
duke
parents:
diff changeset
166 #define LOCK_IF_MP(mp) "cmp $0, " #mp "; je 1f; lock; 1: "
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 inline jint _Atomic_add(jint add_value, volatile jint* dest, int mp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 jint addend = add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 __asm__ volatile ( LOCK_IF_MP(%3) "xaddl %0,(%2)"
a61af66fc99e Initial load
duke
parents:
diff changeset
172 : "=r" (addend)
a61af66fc99e Initial load
duke
parents:
diff changeset
173 : "0" (addend), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
174 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return addend + add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
179 inline jlong _Atomic_add_long(jlong add_value, volatile jlong* dest, int mp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 intptr_t addend = add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 __asm__ __volatile__ (LOCK_IF_MP(%3) "xaddq %0,(%2)"
a61af66fc99e Initial load
duke
parents:
diff changeset
182 : "=r" (addend)
a61af66fc99e Initial load
duke
parents:
diff changeset
183 : "0" (addend), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
184 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
185 return addend + add_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 inline jlong _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 __asm__ __volatile__ ("xchgq (%2),%0"
a61af66fc99e Initial load
duke
parents:
diff changeset
190 : "=r" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
191 : "0" (exchange_value), "r" (dest)
a61af66fc99e Initial load
duke
parents:
diff changeset
192 : "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
193 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 inline jint _Atomic_xchg(jint exchange_value, volatile jint* dest) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 __asm__ __volatile__ ("xchgl (%2),%0"
a61af66fc99e Initial load
duke
parents:
diff changeset
200 : "=r" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
201 : "0" (exchange_value), "r" (dest)
a61af66fc99e Initial load
duke
parents:
diff changeset
202 : "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
203 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 }
a61af66fc99e Initial load
duke
parents:
diff changeset
205
a61af66fc99e Initial load
duke
parents:
diff changeset
206 inline jint _Atomic_cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value, int mp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 __asm__ volatile (LOCK_IF_MP(%4) "cmpxchgl %1,(%3)"
a61af66fc99e Initial load
duke
parents:
diff changeset
208 : "=a" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
209 : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
210 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 // This is the interface to the atomic instruction in solaris_i486.s.
a61af66fc99e Initial load
duke
parents:
diff changeset
215 jlong _Atomic_cmpxchg_long_gcc(jlong exchange_value, volatile jlong* dest, jlong compare_value, int mp);
a61af66fc99e Initial load
duke
parents:
diff changeset
216
a61af66fc99e Initial load
duke
parents:
diff changeset
217 inline jlong _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest, jlong compare_value, int mp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 #ifdef AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
219 __asm__ __volatile__ (LOCK_IF_MP(%4) "cmpxchgq %1,(%3)"
a61af66fc99e Initial load
duke
parents:
diff changeset
220 : "=a" (exchange_value)
a61af66fc99e Initial load
duke
parents:
diff changeset
221 : "r" (exchange_value), "a" (compare_value), "r" (dest), "r" (mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
222 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
223 return exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
225 return _Atomic_cmpxchg_long_gcc(exchange_value, dest, compare_value, os::is_MP());
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 #if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // The code below does not work presumably because of the bug in gcc
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // The error message says:
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // can't find a register in class BREG while reloading asm
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // However I want to save this code and later replace _Atomic_cmpxchg_long_gcc
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // with such inline asm code:
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 volatile jlong_accessor evl, cvl, rv;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 evl.long_value = exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 cvl.long_value = compare_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int mp = os::is_MP();
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 __asm__ volatile ("cmp $0, %%esi\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
240 "je 1f \n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
241 "lock\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
242 "1: cmpxchg8b (%%edi)\n\t"
a61af66fc99e Initial load
duke
parents:
diff changeset
243 : "=a"(cvl.words[0]), "=d"(cvl.words[1])
a61af66fc99e Initial load
duke
parents:
diff changeset
244 : "a"(cvl.words[0]), "d"(cvl.words[1]),
a61af66fc99e Initial load
duke
parents:
diff changeset
245 "b"(evl.words[0]), "c"(evl.words[1]),
a61af66fc99e Initial load
duke
parents:
diff changeset
246 "D"(dest), "S"(mp)
a61af66fc99e Initial load
duke
parents:
diff changeset
247 : "cc", "memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
248 return cvl.long_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 #endif // if 0
a61af66fc99e Initial load
duke
parents:
diff changeset
250 #endif // AMD64
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 }
a61af66fc99e Initial load
duke
parents:
diff changeset
253 #undef LOCK_IF_MP
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 #endif // _GNU_SOURCE
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
256
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
257 #endif // OS_CPU_SOLARIS_X86_VM_ATOMIC_SOLARIS_X86_INLINE_HPP