annotate src/share/vm/runtime/atomic.cpp @ 3979:4dfb2df418f2

6484982: G1: process references during evacuation pauses Summary: G1 now uses two reference processors - one is used by concurrent marking and the other is used by STW GCs (both full and incremental evacuation pauses). In an evacuation pause, the reference processor is embedded into the closures used to scan objects. Doing so causes causes reference objects to be 'discovered' by the reference processor. At the end of the evacuation pause, these discovered reference objects are processed - preserving (and copying) referent objects (and their reachable graphs) as appropriate. Reviewed-by: ysr, jwilhelm, brutisso, stefank, tonyp
author johnc
date Thu, 22 Sep 2011 10:57:37 -0700
parents 7d9e451f5416
children f08d439fab8c
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) 2001, 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: 196
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 196
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: 196
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 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "runtime/atomic.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 # include "os_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 # include "os_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 # include "os_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 #ifdef TARGET_OS_ARCH_linux_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 # include "atomic_linux_x86.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 #ifdef TARGET_OS_ARCH_linux_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 # include "atomic_linux_sparc.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
42 #ifdef TARGET_OS_ARCH_linux_zero
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
43 # include "atomic_linux_zero.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
44 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
45 #ifdef TARGET_OS_ARCH_solaris_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
46 # include "atomic_solaris_x86.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
47 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
48 #ifdef TARGET_OS_ARCH_solaris_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
49 # include "atomic_solaris_sparc.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
50 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
51 #ifdef TARGET_OS_ARCH_windows_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
52 # include "atomic_windows_x86.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
53 #endif
3796
7d9e451f5416 7061187: need some includes for arm/ppc
jcoomes
parents: 3767
diff changeset
54 #ifdef TARGET_OS_ARCH_linux_arm
7d9e451f5416 7061187: need some includes for arm/ppc
jcoomes
parents: 3767
diff changeset
55 # include "atomic_linux_arm.inline.hpp"
7d9e451f5416 7061187: need some includes for arm/ppc
jcoomes
parents: 3767
diff changeset
56 #endif
7d9e451f5416 7061187: need some includes for arm/ppc
jcoomes
parents: 3767
diff changeset
57 #ifdef TARGET_OS_ARCH_linux_ppc
7d9e451f5416 7061187: need some includes for arm/ppc
jcoomes
parents: 3767
diff changeset
58 # include "atomic_linux_ppc.inline.hpp"
7d9e451f5416 7061187: need some includes for arm/ppc
jcoomes
parents: 3767
diff changeset
59 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 jbyte Atomic::cmpxchg(jbyte exchange_value, volatile jbyte* dest, jbyte compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 assert(sizeof(jbyte) == 1, "assumption.");
a61af66fc99e Initial load
duke
parents:
diff changeset
63 uintptr_t dest_addr = (uintptr_t)dest;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 uintptr_t offset = dest_addr % sizeof(jint);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 volatile jint* dest_int = (volatile jint*)(dest_addr - offset);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 jint cur = *dest_int;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 jbyte* cur_as_bytes = (jbyte*)(&cur);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 jint new_val = cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 jbyte* new_val_as_bytes = (jbyte*)(&new_val);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 new_val_as_bytes[offset] = exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 while (cur_as_bytes[offset] == compare_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 jint res = cmpxchg(new_val, dest_int, cur);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 if (res == cur) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 cur = res;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 new_val = cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 new_val_as_bytes[offset] = exchange_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return cur_as_bytes[offset];
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
80
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
81 unsigned Atomic::xchg(unsigned int exchange_value, volatile unsigned int* dest) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
82 assert(sizeof(unsigned int) == sizeof(jint), "more work to do");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
83 return (unsigned int)Atomic::xchg((jint)exchange_value, (volatile jint*)dest);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
84 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
85
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
86 unsigned Atomic::cmpxchg(unsigned int exchange_value,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
87 volatile unsigned int* dest, unsigned int compare_value) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
88 assert(sizeof(unsigned int) == sizeof(jint), "more work to do");
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
89 return (unsigned int)Atomic::cmpxchg((jint)exchange_value, (volatile jint*)dest,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
90 (jint)compare_value);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
91 }
3767
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
92
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
93 jlong Atomic::add(jlong add_value, volatile jlong* dest) {
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
94 jlong old = load(dest);
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
95 jlong new_value = old + add_value;
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
96 while (old != cmpxchg(new_value, dest, old)) {
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
97 old = load(dest);
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
98 new_value = old + add_value;
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
99 }
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
100 return old;
2a241e764894 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 1972
diff changeset
101 }