annotate src/share/vm/gc_implementation/parNew/parNewGeneration.hpp @ 12029:9766f73e770d

8022880: False sharing between PSPromotionManager instances Summary: Pad the PSPromotionManager instances in the manager array. Reviewed-by: brutisso, jmasa
author stefank
date Fri, 31 May 2013 14:32:44 +0200
parents f2110083203d
children 2c6ef90f030a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
12029
9766f73e770d 8022880: False sharing between PSPromotionManager instances
stefank
parents: 10405
diff changeset
2 * Copyright (c) 2001, 2013, 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: 1145
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1145
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: 1145
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: 1836
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_PARNEW_PARNEWGENERATION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_PARNEW_PARNEWGENERATION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
27
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
28 #include "gc_implementation/shared/gcTrace.hpp"
6595
aaf61e68b255 6818524: G1: use ergonomic resizing of PLABs
johnc
parents: 6197
diff changeset
29 #include "gc_implementation/shared/parGCAllocBuffer.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
30 #include "gc_implementation/shared/copyFailedInfo.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
31 #include "memory/defNewGeneration.hpp"
12029
9766f73e770d 8022880: False sharing between PSPromotionManager instances
stefank
parents: 10405
diff changeset
32 #include "memory/padded.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
33 #include "utilities/taskqueue.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
34
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class ChunkArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class ParScanWithoutBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class ParScanWithBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 class ParRootScanWithoutBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class ParRootScanWithBarrierTwoGensClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class ParEvacuateFollowersClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // It would be better if these types could be kept local to the .cpp file,
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // but they must be here to allow ParScanClosure::do_oop_work to be defined
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // in genOopClosures.inline.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
45
1665
a93a9eda13f7 6962947: shared TaskQueue statistics
jcoomes
parents: 1552
diff changeset
46 typedef Padded<OopTaskQueue> ObjToScanQueue;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4728
diff changeset
47 typedef GenericTaskQueueSet<ObjToScanQueue, mtGC> ObjToScanQueueSet;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 class ParKeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
50 private:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ParScanWeakRefClosure* _par_cl;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
52 protected:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
53 template <class T> void do_oop_work(T* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 ParKeepAliveClosure(ParScanWeakRefClosure* cl);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
56 virtual void do_oop(oop* p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
57 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 };
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // The state needed by thread performing parallel young-gen collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
61 class ParScanThreadState {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 friend class ParScanThreadStateSet;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
63 private:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64 ObjToScanQueue *_work_queue;
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4728
diff changeset
65 Stack<oop, mtGC>* const _overflow_stack;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 ParGCAllocBuffer _to_space_alloc_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ParScanWithoutBarrierClosure _to_space_closure; // scan_without_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
70 ParScanWithBarrierClosure _old_gen_closure; // scan_with_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ParRootScanWithoutBarrierClosure _to_space_root_closure; // scan_root_without_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // One of these two will be passed to process_strong_roots, which will
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // set its generation. The first is for two-gen configs where the
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // old gen collects the perm gen; the second is for arbitrary configs.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // The second isn't used right now (it used to be used for the train, an
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // incremental collector) but the declaration has been left as a reminder.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ParRootScanWithBarrierTwoGensClosure _older_gen_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // This closure will always be bound to the old gen; it will be used
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // in evacuate_followers.
a61af66fc99e Initial load
duke
parents:
diff changeset
80 ParRootScanWithBarrierTwoGensClosure _old_gen_root_closure; // scan_old_root_with_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
81 ParEvacuateFollowersClosure _evacuate_followers;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 DefNewGeneration::IsAliveClosure _is_alive_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 ParScanWeakRefClosure _scan_weak_ref_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 ParKeepAliveClosure _keep_alive_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 Space* _to_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 Space* to_space() { return _to_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
90 ParNewGeneration* _young_gen;
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
91 ParNewGeneration* young_gen() const { return _young_gen; }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
92
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 Generation* _old_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 Generation* old_gen() { return _old_gen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 HeapWord *_young_old_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 int _hash_seed;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 int _thread_num;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 ageTable _ageTable;
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 bool _to_space_full;
a61af66fc99e Initial load
duke
parents:
diff changeset
103
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
104 #if TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
105 size_t _term_attempts;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
106 size_t _overflow_refills;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
107 size_t _overflow_refill_objs;
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
108 #endif // TASKQUEUE_STATS
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 695
diff changeset
110 // Stats for promotion failure
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
111 PromotionFailedInfo _promotion_failed_info;
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 695
diff changeset
112
0
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Timing numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 double _start;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 double _start_strong_roots;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 double _strong_roots_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 double _start_term;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 double _term_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // Helper for trim_queues. Scans subset of an array and makes
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // remainder available for work stealing.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void scan_partial_array_and_push_remainder(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // In support of CMS' parallel rescan of survivor space.
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ChunkArray* _survivor_chunk_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 ChunkArray* survivor_chunk_array() { return _survivor_chunk_array; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 void record_survivor_plab(HeapWord* plab_start, size_t plab_word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 ParScanThreadState(Space* to_space_, ParNewGeneration* gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
131 Generation* old_gen_, int thread_num_,
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
132 ObjToScanQueueSet* work_queue_set_,
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4728
diff changeset
133 Stack<oop, mtGC>* overflow_stacks_,
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
134 size_t desired_plab_sz_,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 ParallelTaskTerminator& term_);
a61af66fc99e Initial load
duke
parents:
diff changeset
136
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
137 public:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ageTable* age_table() {return &_ageTable;}
a61af66fc99e Initial load
duke
parents:
diff changeset
139
a61af66fc99e Initial load
duke
parents:
diff changeset
140 ObjToScanQueue* work_queue() { return _work_queue; }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 ParGCAllocBuffer* to_space_alloc_buffer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return &_to_space_alloc_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 ParEvacuateFollowersClosure& evacuate_followers_closure() { return _evacuate_followers; }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 DefNewGeneration::IsAliveClosure& is_alive_closure() { return _is_alive_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
148 ParScanWeakRefClosure& scan_weak_ref_closure() { return _scan_weak_ref_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
149 ParKeepAliveClosure& keep_alive_closure() { return _keep_alive_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
150 ParScanClosure& older_gen_closure() { return _older_gen_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
151 ParRootScanWithoutBarrierClosure& to_space_root_closure() { return _to_space_root_closure; };
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // Decrease queue size below "max_size".
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void trim_queues(int max_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
155
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
156 // Private overflow stack usage
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4728
diff changeset
157 Stack<oop, mtGC>* overflow_stack() { return _overflow_stack; }
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
158 bool take_from_overflow_stack();
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
159 void push_on_overflow_stack(oop p);
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
160
0
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Is new_obj a candidate for scan_partial_array_and_push_remainder method.
a61af66fc99e Initial load
duke
parents:
diff changeset
162 inline bool should_be_partially_scanned(oop new_obj, oop old_obj) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 int* hash_seed() { return &_hash_seed; }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 int thread_num() { return _thread_num; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Allocate a to-space block of size "sz", or else return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
168 HeapWord* alloc_in_to_space_slow(size_t word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 HeapWord* alloc_in_to_space(size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 HeapWord* obj = to_space_alloc_buffer()->allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 if (obj != NULL) return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
173 else return alloc_in_to_space_slow(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 HeapWord* young_old_boundary() { return _young_old_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 void set_young_old_boundary(HeapWord *boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
179 _young_old_boundary = boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Undo the most recent allocation ("obj", of "word_sz").
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void undo_alloc_in_to_space(HeapWord* obj, size_t word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
184
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 695
diff changeset
185 // Promotion failure stats
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
186 void register_promotion_failure(size_t sz) {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
187 _promotion_failed_info.register_copy_failure(sz);
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 695
diff changeset
188 }
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
189 PromotionFailedInfo& promotion_failed_info() {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
190 return _promotion_failed_info;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
191 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
192 bool promotion_failed() {
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
193 return _promotion_failed_info.has_failed();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
194 }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
195 void print_promotion_failure_size();
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 695
diff changeset
196
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
197 #if TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
198 TaskQueueStats & taskqueue_stats() const { return _work_queue->stats; }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
199
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
200 size_t term_attempts() const { return _term_attempts; }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
201 size_t overflow_refills() const { return _overflow_refills; }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
202 size_t overflow_refill_objs() const { return _overflow_refill_objs; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
203
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
204 void note_term_attempt() { ++_term_attempts; }
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
205 void note_overflow_refill(size_t objs) {
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
206 ++_overflow_refills; _overflow_refill_objs += objs;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
209 void reset_stats();
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
210 #endif // TASKQUEUE_STATS
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
211
0
a61af66fc99e Initial load
duke
parents:
diff changeset
212 void start_strong_roots() {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 _start_strong_roots = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215 void end_strong_roots() {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 _strong_roots_time += (os::elapsedTime() - _start_strong_roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
218 double strong_roots_time() const { return _strong_roots_time; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
219 void start_term_time() {
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
220 TASKQUEUE_STATS_ONLY(note_term_attempt());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
221 _start_term = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
222 }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 void end_term_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 _term_time += (os::elapsedTime() - _start_term);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 }
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
226 double term_time() const { return _term_time; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227
1710
94251661de76 6970376: ParNew: shared TaskQueue statistics
jcoomes
parents: 1665
diff changeset
228 double elapsed_time() const {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
229 return os::elapsedTime() - _start;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 }
a61af66fc99e Initial load
duke
parents:
diff changeset
231 };
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 class ParNewGenTask: public AbstractGangTask {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
234 private:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
235 ParNewGeneration* _gen;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
236 Generation* _next_gen;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
237 HeapWord* _young_old_boundary;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
238 class ParScanThreadStateSet* _state_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
241 ParNewGenTask(ParNewGeneration* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
242 Generation* next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
243 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
244 ParScanThreadStateSet* state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 HeapWord* young_old_boundary() { return _young_old_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
247
4728
441e946dc1af 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 4095
diff changeset
248 void work(uint worker_id);
4095
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 1972
diff changeset
249
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 1972
diff changeset
250 // Reset the terminator in ParScanThreadStateSet for
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 1972
diff changeset
251 // "active_workers" threads.
bca17e38de00 6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents: 1972
diff changeset
252 virtual void set_for_termination(int active_workers);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253 };
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 class KeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
256 protected:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
257 template <class T> void do_oop_work(T* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
258 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
259 KeepAliveClosure(ScanWeakRefClosure* cl);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
260 virtual void do_oop(oop* p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
261 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
262 };
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 class EvacuateFollowersClosureGeneral: public VoidClosure {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
265 private:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
266 GenCollectedHeap* _gch;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
267 int _level;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
268 OopsInGenClosure* _scan_cur_or_nonheap;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
269 OopsInGenClosure* _scan_older;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
270 public:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
271 EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
272 OopsInGenClosure* cur,
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
273 OopsInGenClosure* older);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
274 virtual void do_void();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
275 };
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // Closure for scanning ParNewGeneration.
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Same as ScanClosure, except does parallel GC barrier.
a61af66fc99e Initial load
duke
parents:
diff changeset
279 class ScanClosureWithParBarrier: public ScanClosure {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
280 protected:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
281 template <class T> void do_oop_work(T* p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
282 public:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
283 ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
284 virtual void do_oop(oop* p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
285 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286 };
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Implements AbstractRefProcTaskExecutor for ParNew.
a61af66fc99e Initial load
duke
parents:
diff changeset
289 class ParNewRefProcTaskExecutor: public AbstractRefProcTaskExecutor {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
290 private:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
291 ParNewGeneration& _generation;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
292 ParScanThreadStateSet& _state_set;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
293 public:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
294 ParNewRefProcTaskExecutor(ParNewGeneration& generation,
a61af66fc99e Initial load
duke
parents:
diff changeset
295 ParScanThreadStateSet& state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
296 : _generation(generation), _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
297 { }
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // Executes a task using worker threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
300 virtual void execute(ProcessTask& task);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 virtual void execute(EnqueueTask& task);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // Switch to single threaded mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
303 virtual void set_single_threaded_mode();
a61af66fc99e Initial load
duke
parents:
diff changeset
304 };
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // A Generation that does parallel young-gen collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
308
a61af66fc99e Initial load
duke
parents:
diff changeset
309 class ParNewGeneration: public DefNewGeneration {
a61af66fc99e Initial load
duke
parents:
diff changeset
310 friend class ParNewGenTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
311 friend class ParNewRefProcTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
312 friend class ParNewRefProcTaskExecutor;
a61af66fc99e Initial load
duke
parents:
diff changeset
313 friend class ParScanThreadStateSet;
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
314 friend class ParEvacuateFollowersClosure;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
316 private:
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
317 // The per-worker-thread work queues
0
a61af66fc99e Initial load
duke
parents:
diff changeset
318 ObjToScanQueueSet* _task_queues;
a61af66fc99e Initial load
duke
parents:
diff changeset
319
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
320 // Per-worker-thread local overflow stacks
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4728
diff changeset
321 Stack<oop, mtGC>* _overflow_stacks;
695
becb17ad5e51 6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents: 679
diff changeset
322
0
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // Desired size of survivor space plab's
a61af66fc99e Initial load
duke
parents:
diff changeset
324 PLABStats _plab_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
325
a61af66fc99e Initial load
duke
parents:
diff changeset
326 // A list of from-space images of to-be-scanned objects, threaded through
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // klass-pointers (klass information already copied to the forwarded
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // image.) Manipulated with CAS.
a61af66fc99e Initial load
duke
parents:
diff changeset
329 oop _overflow_list;
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
330 NOT_PRODUCT(ssize_t _num_par_pushes;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // If true, older generation does not support promotion undo, so avoid.
a61af66fc99e Initial load
duke
parents:
diff changeset
333 static bool _avoid_promotion_undo;
a61af66fc99e Initial load
duke
parents:
diff changeset
334
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // This closure is used by the reference processor to filter out
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // references to live referent.
a61af66fc99e Initial load
duke
parents:
diff changeset
337 DefNewGeneration::IsAliveClosure _is_alive_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 static oop real_forwardee_slow(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 static void waste_some_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // Preserve the mark of "obj", if necessary, in preparation for its mark
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // word being overwritten with a self-forwarding-pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
344 void preserve_mark_if_necessary(oop obj, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
345
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
346 void handle_promotion_failed(GenCollectedHeap* gch, ParScanThreadStateSet& thread_state_set, ParNewTracer& gc_tracer);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 7609
diff changeset
347
0
a61af66fc99e Initial load
duke
parents:
diff changeset
348 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
349
a61af66fc99e Initial load
duke
parents:
diff changeset
350 bool _survivor_overflow;
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 bool avoid_promotion_undo() { return _avoid_promotion_undo; }
a61af66fc99e Initial load
duke
parents:
diff changeset
353 void set_avoid_promotion_undo(bool v) { _avoid_promotion_undo = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 bool survivor_overflow() { return _survivor_overflow; }
a61af66fc99e Initial load
duke
parents:
diff changeset
356 void set_survivor_overflow(bool v) { _survivor_overflow = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
357
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
358 public:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
359 ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level);
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 ~ParNewGeneration() {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 for (uint i = 0; i < ParallelGCThreads; i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
363 delete _task_queues->queue(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
364
a61af66fc99e Initial load
duke
parents:
diff changeset
365 delete _task_queues;
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 virtual void ref_processor_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
369 virtual Generation::Name kind() { return Generation::ParNew; }
a61af66fc99e Initial load
duke
parents:
diff changeset
370 virtual const char* name() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 virtual const char* short_name() const { return "ParNew"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // override
a61af66fc99e Initial load
duke
parents:
diff changeset
374 virtual bool refs_discovery_is_mt() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 assert(UseParNewGC, "ParNewGeneration only when UseParNewGC");
a61af66fc99e Initial load
duke
parents:
diff changeset
376 return ParallelGCThreads > 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
377 }
a61af66fc99e Initial load
duke
parents:
diff changeset
378
a61af66fc99e Initial load
duke
parents:
diff changeset
379 // Make the collection virtual.
a61af66fc99e Initial load
duke
parents:
diff changeset
380 virtual void collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
382 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
383 bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // This needs to be visible to the closure function.
a61af66fc99e Initial load
duke
parents:
diff changeset
386 // "obj" is the object to be copied, "m" is a recent value of its mark
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // that must not contain a forwarding pointer (though one might be
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // inserted in "obj"s mark word by a parallel thread).
a61af66fc99e Initial load
duke
parents:
diff changeset
389 inline oop copy_to_survivor_space(ParScanThreadState* par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
390 oop obj, size_t obj_sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 if (_avoid_promotion_undo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
392 return copy_to_survivor_space_avoiding_promotion_undo(par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
393 obj, obj_sz, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
395
a61af66fc99e Initial load
duke
parents:
diff changeset
396 return copy_to_survivor_space_with_undo(par_scan_state, obj, obj_sz, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 oop copy_to_survivor_space_avoiding_promotion_undo(ParScanThreadState* par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
400 oop obj, size_t obj_sz, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 oop copy_to_survivor_space_with_undo(ParScanThreadState* par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
403 oop obj, size_t obj_sz, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
404
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
405 // in support of testing overflow code
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
406 NOT_PRODUCT(int _overflow_counter;)
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
407 NOT_PRODUCT(bool should_simulate_overflow();)
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
408
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
409 // Accessor for overflow list
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
410 oop overflow_list() { return _overflow_list; }
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
411
0
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // Push the given (from-space) object on the global overflow list.
534
5cfd8d19e546 6786503: Overflow list performance can be improved
ysr
parents: 196
diff changeset
413 void push_on_overflow_list(oop from_space_obj, ParScanThreadState* par_scan_state);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
414
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // If the global overflow list is non-empty, move some tasks from it
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
416 // onto "work_q" (which need not be empty). No more than 1/4 of the
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
417 // available space on "work_q" is used.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
418 bool take_from_overflow_list(ParScanThreadState* par_scan_state);
679
cea947c8a988 6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents: 579
diff changeset
419 bool take_from_overflow_list_work(ParScanThreadState* par_scan_state);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
420
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // The task queues to be used by parallel GC threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
422 ObjToScanQueueSet* task_queues() {
a61af66fc99e Initial load
duke
parents:
diff changeset
423 return _task_queues;
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425
a61af66fc99e Initial load
duke
parents:
diff changeset
426 PLABStats* plab_stats() {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 return &_plab_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
428 }
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 size_t desired_plab_sz() {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 return _plab_stats.desired_plab_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 static oop real_forwardee(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 DEBUG_ONLY(static bool is_legal_forward_ptr(oop p);)
a61af66fc99e Initial load
duke
parents:
diff changeset
437 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
438
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1836
diff changeset
439 #endif // SHARE_VM_GC_IMPLEMENTATION_PARNEW_PARNEWGENERATION_HPP