annotate src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.hpp @ 845:df6caf649ff7

6700789: G1: Enable use of compressed oops with G1 heaps Summary: Modifications to G1 so as to allow the use of compressed oops. Reviewed-by: apetrusenko, coleenp, jmasa, kvn, never, phh, tonyp
author ysr
date Tue, 14 Jul 2009 15:40:39 -0700
parents 0fbdb4381b99
children 148e5441d916
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
579
0fbdb4381b99 6814575: Update copyright year
xdono
parents: 517
diff changeset
2 * Copyright 2001-2009 Sun Microsystems, Inc. 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 *
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 class AdjoiningGenerations;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class GCTaskManager;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class PSAdaptiveSizePolicy;
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class ParallelScavengeHeap : public CollectedHeap {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 static PSYoungGen* _young_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 static PSOldGen* _old_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 static PSPermGen* _perm_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Sizing policy for entire heap
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static PSAdaptiveSizePolicy* _size_policy;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 static PSGCAdaptivePolicyCounters* _gc_policy_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static ParallelScavengeHeap* _psh;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 size_t _perm_gen_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 size_t _young_gen_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 size_t _old_gen_alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
45
a61af66fc99e Initial load
duke
parents:
diff changeset
46 inline size_t set_alignment(size_t& var, size_t val);
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // Collection of generations that are adjacent in the
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // space reserved for the heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
50 AdjoiningGenerations* _gens;
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static GCTaskManager* _gc_task_manager; // The task manager.
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static inline size_t total_invocations();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 HeapWord* allocate_new_tlab(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void fill_all_tlabs(bool retire);
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 ParallelScavengeHeap() : CollectedHeap() {
13
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
61 set_alignment(_perm_gen_alignment, intra_heap_alignment());
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
62 set_alignment(_young_gen_alignment, intra_heap_alignment());
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
63 set_alignment(_old_gen_alignment, intra_heap_alignment());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // For use by VM operations
a61af66fc99e Initial load
duke
parents:
diff changeset
67 enum CollectionType {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 Scavenge,
a61af66fc99e Initial load
duke
parents:
diff changeset
69 MarkSweep
a61af66fc99e Initial load
duke
parents:
diff changeset
70 };
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ParallelScavengeHeap::Name kind() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
73 return CollectedHeap::ParallelScavengeHeap;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static PSYoungGen* young_gen() { return _young_gen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 static PSOldGen* old_gen() { return _old_gen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
78 static PSPermGen* perm_gen() { return _perm_gen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 virtual PSAdaptiveSizePolicy* size_policy() { return _size_policy; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static PSGCAdaptivePolicyCounters* gc_policy_counters() { return _gc_policy_counters; }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static ParallelScavengeHeap* heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 static GCTaskManager* const gc_task_manager() { return _gc_task_manager; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 AdjoiningGenerations* gens() { return _gens; }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Returns JNI_OK on success
a61af66fc99e Initial load
duke
parents:
diff changeset
91 virtual jint initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void post_initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 void update_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // The alignment used for the various generations.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 size_t perm_gen_alignment() const { return _perm_gen_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
97 size_t young_gen_alignment() const { return _young_gen_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
98 size_t old_gen_alignment() const { return _old_gen_alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
99
13
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
100 // The alignment used for eden and survivors within the young gen
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
101 // and for boundary between young gen and old gen.
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
102 size_t intra_heap_alignment() const { return 64 * K; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 size_t capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 size_t used() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Return "true" if all generations (but perm) have reached the
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // maximal committed limit that they can reach, without a garbage
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
110 virtual bool is_maximal_no_gc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Does this heap support heap inspection? (+PrintClassHistogram)
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bool supports_heap_inspection() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 size_t permanent_capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 size_t permanent_used() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 size_t max_capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // Whether p is in the allocated part of the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
121 bool is_in(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 bool is_in_reserved(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 bool is_in_permanent(const void *p) const { // reserved part
a61af66fc99e Initial load
duke
parents:
diff changeset
125 return perm_gen()->reserved().contains(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 bool is_permanent(const void *p) const { // committed part
a61af66fc99e Initial load
duke
parents:
diff changeset
129 return perm_gen()->is_in(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 static bool is_in_young(oop *p); // reserved part
a61af66fc99e Initial load
duke
parents:
diff changeset
133 static bool is_in_old_or_perm(oop *p); // reserved part
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Memory allocation. "gc_time_limit_was_exceeded" will
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // be set to true if the adaptive size policy determine that
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // an excessive amount of time is being spent doing collections
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // and caused a NULL to be returned. If a NULL is not returned,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // "gc_time_limit_was_exceeded" has an undefined meaning.
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 HeapWord* mem_allocate(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
142 bool is_noref,
a61af66fc99e Initial load
duke
parents:
diff changeset
143 bool is_tlab,
a61af66fc99e Initial load
duke
parents:
diff changeset
144 bool* gc_overhead_limit_was_exceeded);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 HeapWord* failed_mem_allocate(size_t size, bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 HeapWord* permanent_mem_allocate(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 HeapWord* failed_permanent_mem_allocate(size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // Support for System.gc()
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void collect(GCCause::Cause cause);
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // This interface assumes that it's being called by the
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // vm thread. It collects the heap assuming that the
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // heap lock is already held and that we are executing in
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // the context of the vm thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void collect_as_vm_thread(GCCause::Cause cause);
a61af66fc99e Initial load
duke
parents:
diff changeset
158
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // These also should be called by the vm thread at a safepoint (e.g., from a
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // VM operation).
a61af66fc99e Initial load
duke
parents:
diff changeset
161 //
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // The first collects the young generation only, unless the scavenge fails; it
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // will then attempt a full gc. The second collects the entire heap; if
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // maximum_compaction is true, it will compact everything and clear all soft
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // references.
a61af66fc99e Initial load
duke
parents:
diff changeset
166 inline void invoke_scavenge();
a61af66fc99e Initial load
duke
parents:
diff changeset
167 inline void invoke_full_gc(bool maximum_compaction);
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 size_t large_typearray_limit() { return FastAllocateSizeLimit; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 bool supports_inline_contig_alloc() const { return !UseNUMA; }
141
fcbfc50865ab 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 13
diff changeset
172
fcbfc50865ab 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 13
diff changeset
173 HeapWord** top_addr() const { return !UseNUMA ? young_gen()->top_addr() : (HeapWord**)-1; }
fcbfc50865ab 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 13
diff changeset
174 HeapWord** end_addr() const { return !UseNUMA ? young_gen()->end_addr() : (HeapWord**)-1; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 void ensure_parsability(bool retire_tlabs);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 void accumulate_statistics_all_tlabs();
a61af66fc99e Initial load
duke
parents:
diff changeset
178 void resize_all_tlabs();
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 size_t unsafe_max_alloc();
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 bool supports_tlab_allocation() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 size_t tlab_capacity(Thread* thr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 size_t unsafe_max_tlab_alloc(Thread* thr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
186
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
187 // Can a compiler initialize a new object without store barriers?
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
188 // This permission only extends from the creation of a new object
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
189 // via a TLAB up to the first subsequent safepoint.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
190 virtual bool can_elide_tlab_store_barriers() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
191 return true;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
192 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
193
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
194 // Can a compiler elide a store barrier when it writes
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
195 // a permanent oop into the heap? Applies when the compiler
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
196 // is storing x to the heap, where x->is_perm() is true.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
197 virtual bool can_elide_permanent_oop_store_barriers() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
198 return true;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
199 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 141
diff changeset
200
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 void oop_iterate(OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 void object_iterate(ObjectClosure* cl);
517
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 356
diff changeset
203 void safe_object_iterate(ObjectClosure* cl) { object_iterate(cl); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 void permanent_oop_iterate(OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void permanent_object_iterate(ObjectClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 HeapWord* block_start(const void* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
208 size_t block_size(const HeapWord* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 bool block_is_obj(const HeapWord* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 jlong millis_since_last_gc();
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 void prepare_for_verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void print() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
215 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 virtual void print_gc_threads_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 virtual void gc_threads_do(ThreadClosure* tc) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 virtual void print_tracing_info() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
219
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
220 void verify(bool allow_dirty, bool silent, bool /* option */);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 void print_heap_change(size_t prev_used);
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // Resize the young generation. The reserved space for the
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // generation may be expanded in preparation for the resize.
a61af66fc99e Initial load
duke
parents:
diff changeset
226 void resize_young_gen(size_t eden_size, size_t survivor_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 // Resize the old generation. The reserved space for the
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // generation may be expanded in preparation for the resize.
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void resize_old_gen(size_t desired_free_space);
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 141
diff changeset
231
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 141
diff changeset
232 // Save the tops of the spaces in all generations
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 141
diff changeset
233 void record_gen_tops_before_GC() PRODUCT_RETURN;
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 141
diff changeset
234
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 141
diff changeset
235 // Mangle the unused parts of all spaces in the heap
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 141
diff changeset
236 void gen_mangle_unused_area() PRODUCT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237 };
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 inline size_t ParallelScavengeHeap::set_alignment(size_t& var, size_t val)
a61af66fc99e Initial load
duke
parents:
diff changeset
240 {
a61af66fc99e Initial load
duke
parents:
diff changeset
241 assert(is_power_of_2((intptr_t)val), "must be a power of 2");
13
183f41cf8bfe 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 0
diff changeset
242 var = round_to(val, intra_heap_alignment());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return var;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }