annotate src/share/vm/memory/defNewGeneration.hpp @ 20543:e7d0505c8a30

8059758: Footprint regressions with JDK-8038423 Summary: Changes in JDK-8038423 always initialize (zero out) virtual memory used for auxiliary data structures. This causes a footprint regression for G1 in startup benchmarks. This is because they do not touch that memory at all, so the operating system does not actually commit these pages. The fix is to, if the initialization value of the data structures matches the default value of just committed memory (=0), do not do anything. Reviewed-by: jwilhelm, brutisso
author tschatzl
date Fri, 10 Oct 2014 15:51:58 +0200
parents cfd4aac53239
children 4ca6dc0799b6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
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: 269
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 269
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: 269
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: 1888
diff changeset
25 #ifndef SHARE_VM_MEMORY_DEFNEWGENERATION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
26 #define SHARE_VM_MEMORY_DEFNEWGENERATION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
28 #include "gc_implementation/shared/ageTable.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
29 #include "gc_implementation/shared/cSpaceCounters.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
30 #include "gc_implementation/shared/generationCounters.hpp"
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
31 #include "gc_implementation/shared/copyFailedInfo.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
32 #include "memory/generation.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
33 #include "utilities/stack.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
34
0
a61af66fc99e Initial load
duke
parents:
diff changeset
35 class EdenSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class ContiguousSpace;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
37 class ScanClosure;
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
38 class STWGCTimer;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // DefNewGeneration is a young generation containing eden, from- and
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // to-space.
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class DefNewGeneration: public Generation {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
47 Generation* _next_gen;
6818
22b8d3d181d9 8000351: Tenuring threshold should be unsigned
jwilhelm
parents: 6725
diff changeset
48 uint _tenuring_threshold; // Tenuring threshold for next collection.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 ageTable _age_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Size of object to pretenure in words; command line provides bytes
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
51 size_t _pretenure_size_threshold_words;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ageTable* age_table() { return &_age_table; }
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
54
0
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Initialize state to optimistically assume no promotion failure will
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // happen.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void init_assuming_no_promotion_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // True iff a promotion has failed in the current collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 bool _promotion_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 bool promotion_failed() { return _promotion_failed; }
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
61 PromotionFailedInfo _promotion_failed_info;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // Handling promotion failure. A young generation collection
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // can fail if a live object cannot be copied out of its
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // location in eden or from-space during the collection. If
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // a collection fails, the young generation is left in a
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // consistent state such that it can be collected by a
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // full collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // Before the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Objects are in eden or from-space
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // All roots into the young generation point into eden or from-space.
a61af66fc99e Initial load
duke
parents:
diff changeset
72 //
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // After a failed collection
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Objects may be in eden, from-space, or to-space
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // An object A in eden or from-space may have a copy B
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // in to-space. If B exists, all roots that once pointed
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // to A must now point to B.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // All objects in the young generation are unmarked.
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // Eden, from-space, and to-space will all be collected by
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // the full collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 void handle_promotion_failure(oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // In the absence of promotion failure, we wouldn't look at "from-space"
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // objects after a young-gen collection. When promotion fails, however,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // the subsequent full collection will look at from-space objects:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // therefore we must remove their forwarding pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void remove_forwarding_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Preserve the mark of "obj", if necessary, in preparation for its mark
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // word being overwritten with a self-forwarding-pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
91 void preserve_mark_if_necessary(oop obj, markOop m);
2038
74ee0db180fa 6807801: CMS: could save/restore fewer header words during scavenge
ysr
parents: 1972
diff changeset
92 void preserve_mark(oop obj, markOop m); // work routine used by the above
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1552
diff changeset
94 // Together, these keep <object with a preserved mark, mark value> pairs.
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1552
diff changeset
95 // They should always contain the same number of elements.
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6008
diff changeset
96 Stack<oop, mtGC> _objs_with_preserved_marks;
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6008
diff changeset
97 Stack<markOop, mtGC> _preserved_marks_of_objs;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Promotion failure handling
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
100 ExtendedOopClosure *_promo_failure_scan_stack_closure;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
101 void set_promo_failure_scan_stack_closure(ExtendedOopClosure *scan_stack_closure) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
102 _promo_failure_scan_stack_closure = scan_stack_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
104
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 6008
diff changeset
105 Stack<oop, mtGC> _promo_failure_scan_stack;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106 void drain_promo_failure_scan_stack(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 bool _promo_failure_drain_in_progress;
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Performance Counters
a61af66fc99e Initial load
duke
parents:
diff changeset
110 GenerationCounters* _gen_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 CSpaceCounters* _eden_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 CSpaceCounters* _from_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 CSpaceCounters* _to_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // sizing information
a61af66fc99e Initial load
duke
parents:
diff changeset
116 size_t _max_eden_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 size_t _max_survivor_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Allocation support
a61af66fc99e Initial load
duke
parents:
diff changeset
120 bool _should_allocate_from_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 bool should_allocate_from_space() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 return _should_allocate_from_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void clear_should_allocate_from_space() {
a61af66fc99e Initial load
duke
parents:
diff changeset
125 _should_allocate_from_space = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 void set_should_allocate_from_space() {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 _should_allocate_from_space = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
7609
a30e7b564541 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 6818
diff changeset
131 // Tenuring
a30e7b564541 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 6818
diff changeset
132 void adjust_desired_tenuring_threshold();
a30e7b564541 8005972: ParNew should not update the tenuring threshold when promotion failed has occurred
brutisso
parents: 6818
diff changeset
133
0
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
135 EdenSpace* _eden_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
136 ContiguousSpace* _from_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 ContiguousSpace* _to_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
138
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
139 STWGCTimer* _gc_timer;
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
140
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 enum SomeProtectedConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Generations are GenGrain-aligned and have size that are multiples of
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // GenGrain.
a61af66fc99e Initial load
duke
parents:
diff changeset
144 MinFreeScratchWords = 100
a61af66fc99e Initial load
duke
parents:
diff changeset
145 };
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Return the size of a survivor space if this generation were of size
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // gen_size.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 size_t compute_survivor_size(size_t gen_size, size_t alignment) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 size_t n = gen_size / (SurvivorRatio + 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return n > alignment ? align_size_down(n, alignment) : alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 public: // was "protected" but caused compile error on win32
a61af66fc99e Initial load
duke
parents:
diff changeset
155 class IsAliveClosure: public BoolObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 Generation* _g;
a61af66fc99e Initial load
duke
parents:
diff changeset
157 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
158 IsAliveClosure(Generation* g);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 bool do_object_b(oop p);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 };
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 class KeepAliveClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
163 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
164 ScanWeakRefClosure* _cl;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 CardTableRS* _rs;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
166 template <class T> void do_oop_work(T* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
168 KeepAliveClosure(ScanWeakRefClosure* cl);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
169 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
170 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171 };
a61af66fc99e Initial load
duke
parents:
diff changeset
172
a61af66fc99e Initial load
duke
parents:
diff changeset
173 class FastKeepAliveClosure: public KeepAliveClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
175 HeapWord* _boundary;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
176 template <class T> void do_oop_work(T* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
177 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
178 FastKeepAliveClosure(DefNewGeneration* g, ScanWeakRefClosure* cl);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
179 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
180 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
181 };
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 class EvacuateFollowersClosure: public VoidClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 GenCollectedHeap* _gch;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 int _level;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 ScanClosure* _scan_cur_or_nonheap;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 ScanClosure* _scan_older;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
189 EvacuateFollowersClosure(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ScanClosure* cur, ScanClosure* older);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 void do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
192 };
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 class FastEvacuateFollowersClosure: public VoidClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 GenCollectedHeap* _gch;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 int _level;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 DefNewGeneration* _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 FastScanClosure* _scan_cur_or_nonheap;
a61af66fc99e Initial load
duke
parents:
diff changeset
199 FastScanClosure* _scan_older;
a61af66fc99e Initial load
duke
parents:
diff changeset
200 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
201 FastEvacuateFollowersClosure(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
202 DefNewGeneration* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
203 FastScanClosure* cur,
a61af66fc99e Initial load
duke
parents:
diff changeset
204 FastScanClosure* older);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 };
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
209 DefNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 const char* policy="Copy");
a61af66fc99e Initial load
duke
parents:
diff changeset
211
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
212 virtual void ref_processor_init();
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10327
diff changeset
213
0
a61af66fc99e Initial load
duke
parents:
diff changeset
214 virtual Generation::Name kind() { return Generation::DefNew; }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Accessing spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
217 EdenSpace* eden() const { return _eden_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
218 ContiguousSpace* from() const { return _from_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 ContiguousSpace* to() const { return _to_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
220
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
221 virtual CompactibleSpace* first_compaction_space() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Space enquiries
a61af66fc99e Initial load
duke
parents:
diff changeset
224 size_t capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 size_t used() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
226 size_t free() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 size_t max_capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 size_t capacity_before_gc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 size_t unsafe_max_alloc_nogc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 size_t contiguous_available() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 size_t max_eden_size() const { return _max_eden_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
233 size_t max_survivor_size() const { return _max_survivor_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 bool supports_inline_contig_alloc() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 HeapWord** top_addr() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 HeapWord** end_addr() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // Thread-local allocation buffers
a61af66fc99e Initial load
duke
parents:
diff changeset
240 bool supports_tlab_allocation() const { return true; }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
241 size_t tlab_capacity() const;
17727
cfd4aac53239 8030177: G1: Enable TLAB resizing
brutisso
parents: 11096
diff changeset
242 size_t tlab_used() const;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
243 size_t unsafe_max_tlab_alloc() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Grow the generation by the specified number of bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // The size of bytes is assumed to be properly aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // Return true if the expansion was successful.
a61af66fc99e Initial load
duke
parents:
diff changeset
248 bool expand(size_t bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // DefNewGeneration cannot currently expand except at
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // a GC.
a61af66fc99e Initial load
duke
parents:
diff changeset
252 virtual bool is_maximal_no_gc() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
255 void object_iterate(ObjectClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 void younger_refs_iterate(OopsInGenClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 void space_iterate(SpaceClosure* blk, bool usedOnly = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 // Allocation support
a61af66fc99e Initial load
duke
parents:
diff changeset
262 virtual bool should_allocate(size_t word_size, bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
263 assert(UseTLAB || !is_tlab, "Should not allocate tlab");
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 const bool non_zero = word_size > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 const bool overflows = word_size >= overflow_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 const bool check_too_big = _pretenure_size_threshold_words > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 const bool not_too_big = word_size < _pretenure_size_threshold_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 const bool size_ok = is_tlab || !check_too_big || not_too_big;
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 bool result = !overflows &&
a61af66fc99e Initial load
duke
parents:
diff changeset
274 non_zero &&
a61af66fc99e Initial load
duke
parents:
diff changeset
275 size_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
279
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
280 HeapWord* allocate(size_t word_size, bool is_tlab);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
281 HeapWord* allocate_from_space(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
282
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
283 HeapWord* par_allocate(size_t word_size, bool is_tlab);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Prologue & Epilogue
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
286 virtual void gc_prologue(bool full);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
287 virtual void gc_epilogue(bool full);
a61af66fc99e Initial load
duke
parents:
diff changeset
288
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
289 // Save the tops for eden, from, and to
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
290 virtual void record_spaces_top();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
291
0
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // Doesn't require additional work during GC prologue and epilogue
a61af66fc99e Initial load
duke
parents:
diff changeset
293 virtual bool performs_in_place_marking() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
294
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // Accessing marks
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
297 void reset_saved_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
298 bool no_allocs_since_save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Need to declare the full complement of closures, whether we'll
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // override them or not, or get message from the compiler:
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // oop_since_save_marks_iterate_nv hides virtual function...
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #define DefNew_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
304 void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 ALL_SINCE_SAVE_MARKS_CLOSURES(DefNew_SINCE_SAVE_MARKS_DECL)
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 #undef DefNew_SINCE_SAVE_MARKS_DECL
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // For non-youngest collection, the DefNewGeneration can contribute
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // "to-space".
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
312 virtual void contribute_scratch(ScratchBlock*& list, Generation* requestor,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
313 size_t max_alloc_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
314
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
315 // Reset for contribution of "to-space".
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
316 virtual void reset_scratch();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
317
0
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
319 virtual void compute_new_size();
1888
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
320
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
321 // Returns true if the collection is likely to be safely
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
322 // completed. Even if this method returns true, a collection
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
323 // may not be guaranteed to succeed, and the system should be
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
324 // able to safely unwind and recover from that failure, albeit
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
325 // at some additional cost. Override superclass's implementation.
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
326 virtual bool collection_attempt_is_safe();
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1836
diff changeset
327
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328 virtual void collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
329 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
330 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
331 bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 HeapWord* expand_and_allocate(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
333 bool is_tlab,
a61af66fc99e Initial load
duke
parents:
diff changeset
334 bool parallel = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
335
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
336 oop copy_to_survivor_space(oop old);
6818
22b8d3d181d9 8000351: Tenuring threshold should be unsigned
jwilhelm
parents: 6725
diff changeset
337 uint tenuring_threshold() { return _tenuring_threshold; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // Performance Counter support
a61af66fc99e Initial load
duke
parents:
diff changeset
340 void update_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
343 virtual const char* name() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 virtual const char* short_name() const { return "DefNew"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
345
a61af66fc99e Initial load
duke
parents:
diff changeset
346 bool must_be_youngest() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
347 bool must_be_oldest() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
348
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // PrintHeapAtGC support.
a61af66fc99e Initial load
duke
parents:
diff changeset
350 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
351
6008
b632e80fc9dc 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 2038
diff changeset
352 void verify();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
353
1836
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1552
diff changeset
354 bool promo_failure_scan_is_complete() const {
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1552
diff changeset
355 return _promo_failure_scan_stack.is_empty();
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1552
diff changeset
356 }
894b1d7c7e01 6423256: GC stacks should use a better data structure
jcoomes
parents: 1552
diff changeset
357
0
a61af66fc99e Initial load
duke
parents:
diff changeset
358 protected:
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
359 // If clear_space is true, clear the survivor spaces. Eden is
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
360 // cleared if the minimum size of eden is 0. If mangle_space
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
361 // is true, also mangle the space in debug mode.
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
362 void compute_space_boundaries(uintx minimum_eden_size,
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
363 bool clear_space,
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
364 bool mangle_space);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
365 // Scavenge support
a61af66fc99e Initial load
duke
parents:
diff changeset
366 void swap_spaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
367 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
368
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
369 #endif // SHARE_VM_MEMORY_DEFNEWGENERATION_HPP