annotate src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.inline.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2002-2006 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 inline PSPromotionManager* PSPromotionManager::manager_array(int index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
26 assert(_manager_array != NULL, "access of NULL manager_array");
a61af66fc99e Initial load
duke
parents:
diff changeset
27 assert(index >= 0 && index <= (int)ParallelGCThreads, "out of range manager_array access");
a61af66fc99e Initial load
duke
parents:
diff changeset
28 return _manager_array[index];
a61af66fc99e Initial load
duke
parents:
diff changeset
29 }
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 inline void PSPromotionManager::claim_or_forward_internal_depth(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 if (p != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 oop o = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 if (o->is_forwarded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 o = o->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Card mark
a61af66fc99e Initial load
duke
parents:
diff changeset
38 if (PSScavenge::is_obj_in_young((HeapWord*) o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 PSScavenge::card_table()->inline_write_ref_field_gc(p, o);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 }
a61af66fc99e Initial load
duke
parents:
diff changeset
41 *p = o;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 push_depth(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 inline void PSPromotionManager::claim_or_forward_internal_breadth(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 if (p != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 oop o = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 if (o->is_forwarded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 o = o->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 o = copy_to_survivor_space(o, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Card mark
a61af66fc99e Initial load
duke
parents:
diff changeset
58 if (PSScavenge::is_obj_in_young((HeapWord*) o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 PSScavenge::card_table()->inline_write_ref_field_gc(p, o);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 *p = o;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 inline void PSPromotionManager::flush_prefetch_queue() {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 assert(!depth_first(), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
67 for (int i=0; i<_prefetch_queue.length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 claim_or_forward_internal_breadth(_prefetch_queue.pop());
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 }
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 inline void PSPromotionManager::claim_or_forward_depth(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 assert(depth_first(), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
74 assert(PSScavenge::should_scavenge(*p, true), "revisiting object?");
a61af66fc99e Initial load
duke
parents:
diff changeset
75 assert(Universe::heap()->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
76 assert(Universe::heap()->is_in(p), "pointer outside heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 claim_or_forward_internal_depth(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 inline void PSPromotionManager::claim_or_forward_breadth(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 assert(!depth_first(), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 assert(PSScavenge::should_scavenge(*p, true), "revisiting object?");
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(Universe::heap()->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(Universe::heap()->is_in(p), "pointer outside heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 if (UsePrefetchQueue) {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 claim_or_forward_internal_breadth(_prefetch_queue.push_and_pop(p));
a61af66fc99e Initial load
duke
parents:
diff changeset
89 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // This option is used for testing. The use of the prefetch
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // queue can delay the processing of the objects and thus
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // change the order of object scans. For example, remembered
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // set updates are typically the clearing of the remembered
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // set (the cards) followed by updates of the remembered set
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // for young-to-old pointers. In a situation where there
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // is an error in the sequence of clearing and updating
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // (e.g. clear card A, update card A, erroneously clear
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // card A again) the error can be obscured by a delay
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // in the update due to the use of the prefetch queue
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // (e.g., clear card A, erroneously clear card A again,
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // update card A that was pushed into the prefetch queue
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // and thus delayed until after the erronous clear). The
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // length of the delay is random depending on the objects
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // in the queue and the delay can be zero.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 claim_or_forward_internal_breadth(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 inline void PSPromotionManager::process_popped_location_depth(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 if (is_oop_masked(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
111 assert(PSChunkLargeArrays, "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
112 oop const old = unmask_chunked_array_oop(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 process_array_chunk(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 PSScavenge::copy_and_push_safe_barrier(this, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }