annotate src/share/vm/memory/generation.hpp @ 4708:3c648b9ad052

7121373: Clean up CollectedHeap::is_in Summary: Fixed G1CollectedHeap::is_in, added tests, cleaned up comments and made Space::is_in pure virtual. Reviewed-by: brutisso, tonyp, jcoomes
author stefank
date Wed, 14 Dec 2011 12:15:26 +0100
parents f95d63e2154a
children e7dead7e90af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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: 1888
diff changeset
25 #ifndef SHARE_VM_MEMORY_GENERATION_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
26 #define SHARE_VM_MEMORY_GENERATION_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/collectorCounters.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
29 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
30 #include "memory/memRegion.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
31 #include "memory/referenceProcessor.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
32 #include "memory/universe.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
33 #include "memory/watermark.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
34 #include "runtime/mutex.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
35 #include "runtime/perfData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
36 #include "runtime/virtualspace.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
37
0
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // A Generation models a heap area for similarly-aged objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // It will contain one ore more spaces holding the actual objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // The Generation class hierarchy:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Generation - abstract base class
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // - DefNewGeneration - allocation area (copy collected)
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // - ParNewGeneration - a DefNewGeneration that is collected by
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // several threads
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // - CardGeneration - abstract class adding offset array behavior
a61af66fc99e Initial load
duke
parents:
diff changeset
48 // - OneContigSpaceCardGeneration - abstract class holding a single
a61af66fc99e Initial load
duke
parents:
diff changeset
49 // contiguous space with card marking
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // - TenuredGeneration - tenured (old object) space (markSweepCompact)
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // - CompactingPermGenGen - reflective object area (klasses, methods, symbols, ...)
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // - ConcurrentMarkSweepGeneration - Mostly Concurrent Mark Sweep Generation
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // (Detlefs-Printezis refinement of
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // Boehm-Demers-Schenker)
a61af66fc99e Initial load
duke
parents:
diff changeset
55 //
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // The system configurations currently allowed are:
a61af66fc99e Initial load
duke
parents:
diff changeset
57 //
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // DefNewGeneration + TenuredGeneration + PermGeneration
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // DefNewGeneration + ConcurrentMarkSweepGeneration + ConcurrentMarkSweepPermGen
a61af66fc99e Initial load
duke
parents:
diff changeset
60 //
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // ParNewGeneration + TenuredGeneration + PermGeneration
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // ParNewGeneration + ConcurrentMarkSweepGeneration + ConcurrentMarkSweepPermGen
a61af66fc99e Initial load
duke
parents:
diff changeset
63 //
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 class DefNewGeneration;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 class GenerationSpec;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 class CompactibleSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 class ContiguousSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 class CompactPoint;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 class OopsInGenClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 class ScanClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 class FastScanClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 class GenCollectedHeap;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 class GenRemSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 class GCStats;
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // A "ScratchBlock" represents a block of memory in one generation usable by
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // another. It represents "num_words" free words, starting at and including
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // the address of "this".
a61af66fc99e Initial load
duke
parents:
diff changeset
81 struct ScratchBlock {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 ScratchBlock* next;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 size_t num_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 HeapWord scratch_space[1]; // Actually, of size "num_words-2" (assuming
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // first two fields are word-sized.)
a61af66fc99e Initial load
duke
parents:
diff changeset
86 };
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 class Generation: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
92 jlong _time_of_last_gc; // time when last gc on this generation happened (ms)
a61af66fc99e Initial load
duke
parents:
diff changeset
93 MemRegion _prev_used_region; // for collectors that want to "remember" a value for
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // used region at some specific point during collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Minimum and maximum addresses for memory reserved (not necessarily
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // committed) for generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Used by card marking code. Must not overlap with address ranges of
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // other generations.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 MemRegion _reserved;
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // Memory area reserved for generation
a61af66fc99e Initial load
duke
parents:
diff changeset
104 VirtualSpace _virtual_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Level in the generation hierarchy.
a61af66fc99e Initial load
duke
parents:
diff changeset
107 int _level;
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // ("Weak") Reference processing support
a61af66fc99e Initial load
duke
parents:
diff changeset
110 ReferenceProcessor* _ref_processor;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Performance Counters
a61af66fc99e Initial load
duke
parents:
diff changeset
113 CollectorCounters* _gc_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Statistics for garbage collection
a61af66fc99e Initial load
duke
parents:
diff changeset
116 GCStats* _gc_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // Returns the next generation in the configuration, or else NULL if this
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // is the highest generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
120 Generation* next_gen() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Initialize the generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
123 Generation(ReservedSpace rs, size_t initial_byte_size, int level);
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // Apply "cl->do_oop" to (the address of) (exactly) all the ref fields in
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // "sp" that point into younger generations.
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // The iteration is only over objects allocated at the start of the
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // iterations; objects allocated as a result of applying the closure are
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // not included.
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void younger_refs_in_space_iterate(Space* sp, OopsInGenClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // The set of possible generation kinds.
a61af66fc99e Initial load
duke
parents:
diff changeset
134 enum Name {
a61af66fc99e Initial load
duke
parents:
diff changeset
135 ASParNew,
a61af66fc99e Initial load
duke
parents:
diff changeset
136 ASConcurrentMarkSweep,
a61af66fc99e Initial load
duke
parents:
diff changeset
137 DefNew,
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ParNew,
a61af66fc99e Initial load
duke
parents:
diff changeset
139 MarkSweepCompact,
a61af66fc99e Initial load
duke
parents:
diff changeset
140 ConcurrentMarkSweep,
a61af66fc99e Initial load
duke
parents:
diff changeset
141 Other
a61af66fc99e Initial load
duke
parents:
diff changeset
142 };
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 enum SomePublicConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Generations are GenGrain-aligned and have size that are multiples of
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // GenGrain.
1681
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
147 // Note: on ARM we add 1 bit for card_table_base to be properly aligned
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
148 // (we expect its low byte to be zero - see implementation of post_barrier)
126ea7725993 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 1552
diff changeset
149 LogOfGenGrain = 16 ARM_ONLY(+1),
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 GenGrain = 1 << LogOfGenGrain
a61af66fc99e Initial load
duke
parents:
diff changeset
151 };
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // allocate and initialize ("weak") refs processing support
a61af66fc99e Initial load
duke
parents:
diff changeset
154 virtual void ref_processor_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
155 void set_ref_processor(ReferenceProcessor* rp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert(_ref_processor == NULL, "clobbering existing _ref_processor");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 _ref_processor = rp;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 virtual Generation::Name kind() { return Generation::Other; }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 GenerationSpec* spec();
a61af66fc99e Initial load
duke
parents:
diff changeset
162
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // This properly belongs in the collector, but for now this
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // will do.
a61af66fc99e Initial load
duke
parents:
diff changeset
165 virtual bool refs_discovery_is_atomic() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166 virtual bool refs_discovery_is_mt() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Space enquiries (results in bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
169 virtual size_t capacity() const = 0; // The maximum number of object bytes the
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // generation can currently hold.
a61af66fc99e Initial load
duke
parents:
diff changeset
171 virtual size_t used() const = 0; // The number of used bytes in the gen.
a61af66fc99e Initial load
duke
parents:
diff changeset
172 virtual size_t free() const = 0; // The number of free bytes in the gen.
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Support for java.lang.Runtime.maxMemory(); see CollectedHeap.
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // Returns the total number of bytes available in a generation
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // for the allocation of objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
177 virtual size_t max_capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // If this is a young generation, the maximum number of bytes that can be
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // allocated in this generation before a GC is triggered.
a61af66fc99e Initial load
duke
parents:
diff changeset
181 virtual size_t capacity_before_gc() const { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // The largest number of contiguous free bytes in the generation,
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // including expansion (Assumes called at a safepoint.)
a61af66fc99e Initial load
duke
parents:
diff changeset
185 virtual size_t contiguous_available() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // The largest number of contiguous free bytes in this or any higher generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 virtual size_t max_contiguous_available() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
1888
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
189 // Returns true if promotions of the specified amount are
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
190 // likely to succeed without a promotion failure.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // Promotion of the full amount is not guaranteed but
1888
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
192 // might be attempted in the worst case.
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
193 virtual bool promotion_attempt_is_safe(size_t max_promotion_in_bytes) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194
1145
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 579
diff changeset
195 // For a non-young generation, this interface can be used to inform a
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 579
diff changeset
196 // generation that a promotion attempt into that generation failed.
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 579
diff changeset
197 // Typically used to enable diagnostic output for post-mortem analysis,
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 579
diff changeset
198 // but other uses of the interface are not ruled out.
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 579
diff changeset
199 virtual void promotion_failure_occurred() { /* does nothing */ }
e018e6884bd8 6631166: CMS: better heuristics when combatting fragmentation
ysr
parents: 579
diff changeset
200
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // Return an estimate of the maximum allocation that could be performed
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // in the generation without triggering any collection or expansion
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // activity. It is "unsafe" because no locks are taken; the result
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // should be treated as an approximation, not a guarantee, for use in
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // heuristic resizing decisions.
a61af66fc99e Initial load
duke
parents:
diff changeset
206 virtual size_t unsafe_max_alloc_nogc() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
207
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // Returns true if this generation cannot be expanded further
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // without a GC. Override as appropriate.
a61af66fc99e Initial load
duke
parents:
diff changeset
210 virtual bool is_maximal_no_gc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return _virtual_space.uncommitted_size() == 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
a61af66fc99e Initial load
duke
parents:
diff changeset
214 MemRegion reserved() const { return _reserved; }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Returns a region guaranteed to contain all the objects in the
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
218 virtual MemRegion used_region() const { return _reserved; }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 MemRegion prev_used_region() const { return _prev_used_region; }
a61af66fc99e Initial load
duke
parents:
diff changeset
221 virtual void save_used_region() { _prev_used_region = used_region(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
222
4708
3c648b9ad052 7121373: Clean up CollectedHeap::is_in
stefank
parents: 1972
diff changeset
223 // Returns "TRUE" iff "p" points into the committed areas in the generation.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // For some kinds of generations, this may be an expensive operation.
a61af66fc99e Initial load
duke
parents:
diff changeset
225 // To avoid performance problems stemming from its inadvertent use in
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // product jvm's, we restrict its use to assertion checking or
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // verification only.
a61af66fc99e Initial load
duke
parents:
diff changeset
228 virtual bool is_in(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 /* Returns "TRUE" iff "p" points into the reserved area of the generation. */
a61af66fc99e Initial load
duke
parents:
diff changeset
231 bool is_in_reserved(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return _reserved.contains(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // Check that the generation kind is DefNewGeneration or a sub
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // class of DefNewGeneration and return a DefNewGeneration*
a61af66fc99e Initial load
duke
parents:
diff changeset
237 DefNewGeneration* as_DefNewGeneration();
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // If some space in the generation contains the given "addr", return a
a61af66fc99e Initial load
duke
parents:
diff changeset
240 // pointer to that space, else return "NULL".
a61af66fc99e Initial load
duke
parents:
diff changeset
241 virtual Space* space_containing(const void* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
242
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // Iteration - do not use for time critical operations
a61af66fc99e Initial load
duke
parents:
diff changeset
244 virtual void space_iterate(SpaceClosure* blk, bool usedOnly = false) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Returns the first space, if any, in the generation that can participate
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // in compaction, or else "NULL".
a61af66fc99e Initial load
duke
parents:
diff changeset
248 virtual CompactibleSpace* first_compaction_space() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // Returns "true" iff this generation should be used to allocate an
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // object of the given size. Young generations might
a61af66fc99e Initial load
duke
parents:
diff changeset
252 // wish to exclude very large objects, for example, since, if allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // often, they would greatly increase the frequency of young-gen
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 virtual bool should_allocate(size_t word_size, bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 bool result = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
257 size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 if (!is_tlab || supports_tlab_allocation()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 result = (word_size > 0) && (word_size < overflow_limit);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // Allocate and returns a block of the requested size, or returns "NULL".
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // Assumes the caller has done any necessary locking.
a61af66fc99e Initial load
duke
parents:
diff changeset
266 virtual HeapWord* allocate(size_t word_size, bool is_tlab) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // Like "allocate", but performs any necessary locking internally.
a61af66fc99e Initial load
duke
parents:
diff changeset
269 virtual HeapWord* par_allocate(size_t word_size, bool is_tlab) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // A 'younger' gen has reached an allocation limit, and uses this to notify
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // the next older gen. The return value is a new limit, or NULL if none. The
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // caller must do the necessary locking.
a61af66fc99e Initial load
duke
parents:
diff changeset
274 virtual HeapWord* allocation_limit_reached(Space* space, HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
275 size_t word_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // Some generation may offer a region for shared, contiguous allocation,
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // via inlined code (by exporting the address of the top and end fields
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // defining the extent of the contiguous allocation region.)
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // This function returns "true" iff the heap supports this kind of
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // allocation. (More precisely, this means the style of allocation that
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // increments *top_addr()" with a CAS.) (Default is "no".)
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // A generation that supports this allocation style must use lock-free
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // allocation for *all* allocation, since there are times when lock free
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // allocation will be concurrent with plain "allocate" calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
289 virtual bool supports_inline_contig_alloc() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 // These functions return the addresses of the fields that define the
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // boundaries of the contiguous allocation area. (These fields should be
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // physicall near to one another.)
a61af66fc99e Initial load
duke
parents:
diff changeset
294 virtual HeapWord** top_addr() const { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
295 virtual HeapWord** end_addr() const { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // Thread-local allocation buffers
a61af66fc99e Initial load
duke
parents:
diff changeset
298 virtual bool supports_tlab_allocation() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
299 virtual size_t tlab_capacity() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
300 guarantee(false, "Generation doesn't support thread local allocation buffers");
a61af66fc99e Initial load
duke
parents:
diff changeset
301 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303 virtual size_t unsafe_max_tlab_alloc() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 guarantee(false, "Generation doesn't support thread local allocation buffers");
a61af66fc99e Initial load
duke
parents:
diff changeset
305 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // "obj" is the address of an object in a younger generation. Allocate space
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // for "obj" in the current (or some higher) generation, and copy "obj" into
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // the newly allocated space, if possible, returning the result (or NULL if
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // the allocation failed).
a61af66fc99e Initial load
duke
parents:
diff changeset
312 //
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // The "obj_size" argument is just obj->size(), passed along so the caller can
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // avoid repeating the virtual call to retrieve it.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
315 virtual oop promote(oop obj, size_t obj_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // Thread "thread_num" (0 <= i < ParalleGCThreads) wants to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
318 // object "obj", whose original mark word was "m", and whose size is
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // "word_sz". If possible, allocate space for "obj", copy obj into it
a61af66fc99e Initial load
duke
parents:
diff changeset
320 // (taking care to copy "m" into the mark word when done, since the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // word of "obj" may have been overwritten with a forwarding pointer, and
a61af66fc99e Initial load
duke
parents:
diff changeset
322 // also taking care to copy the klass pointer *last*. Returns the new
a61af66fc99e Initial load
duke
parents:
diff changeset
323 // object if successful, or else NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
324 virtual oop par_promote(int thread_num,
a61af66fc99e Initial load
duke
parents:
diff changeset
325 oop obj, markOop m, size_t word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // Undo, if possible, the most recent par_promote_alloc allocation by
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // "thread_num" ("obj", of "word_sz").
a61af66fc99e Initial load
duke
parents:
diff changeset
329 virtual void par_promote_alloc_undo(int thread_num,
a61af66fc99e Initial load
duke
parents:
diff changeset
330 HeapWord* obj, size_t word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // Informs the current generation that all par_promote_alloc's in the
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // collection have been completed; any supporting data structures can be
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // reset. Default is to do nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
335 virtual void par_promote_alloc_done(int thread_num) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 // Informs the current generation that all oop_since_save_marks_iterates
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // performed by "thread_num" in the current collection, if any, have been
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // completed; any supporting data structures can be reset. Default is to
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // do nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
341 virtual void par_oop_since_save_marks_iterate_done(int thread_num) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
342
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // This generation will collect all younger generations
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // during a full collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 virtual bool full_collects_younger_generations() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // This generation does in-place marking, meaning that mark words
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // are mutated during the marking phase and presumably reinitialized
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // to a canonical value after the GC. This is currently used by the
a61af66fc99e Initial load
duke
parents:
diff changeset
350 // biased locking implementation to determine whether additional
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // work is required during the GC prologue and epilogue.
a61af66fc99e Initial load
duke
parents:
diff changeset
352 virtual bool performs_in_place_marking() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
353
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // Returns "true" iff collect() should subsequently be called on this
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // this generation. See comment below.
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // This is a generic implementation which can be overridden.
a61af66fc99e Initial load
duke
parents:
diff changeset
357 //
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // Note: in the current (1.4) implementation, when genCollectedHeap's
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // incremental_collection_will_fail flag is set, all allocations are
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // slow path (the only fast-path place to allocate is DefNew, which
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // will be full if the flag is set).
a61af66fc99e Initial load
duke
parents:
diff changeset
362 // Thus, older generations which collect younger generations should
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // test this flag and collect if it is set.
a61af66fc99e Initial load
duke
parents:
diff changeset
364 virtual bool should_collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
365 size_t word_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
366 bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
367 return (full || should_allocate(word_size, is_tlab));
a61af66fc99e Initial load
duke
parents:
diff changeset
368 }
a61af66fc99e Initial load
duke
parents:
diff changeset
369
1888
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
370 // 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: 1681
diff changeset
371 // 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: 1681
diff changeset
372 // 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: 1681
diff changeset
373 // 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: 1681
diff changeset
374 // at some additional cost.
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
375 virtual bool collection_attempt_is_safe() {
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
376 guarantee(false, "Are you sure you want to call this method?");
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
377 return true;
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
378 }
a7214d79fcf1 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 1681
diff changeset
379
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // Perform a garbage collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
381 // If full is true attempt a full garbage collection of this generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // Otherwise, attempting to (at least) free enough space to support an
a61af66fc99e Initial load
duke
parents:
diff changeset
383 // allocation of the given "word_size".
a61af66fc99e Initial load
duke
parents:
diff changeset
384 virtual void collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
385 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
386 size_t word_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
387 bool is_tlab) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // Perform a heap collection, attempting to create (at least) enough
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // space to support an allocation of the given "word_size". If
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // successful, perform the allocation and return the resulting
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // "oop" (initializing the allocated block). If the allocation is
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // still unsuccessful, return "NULL".
a61af66fc99e Initial load
duke
parents:
diff changeset
394 virtual HeapWord* expand_and_allocate(size_t word_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
395 bool is_tlab,
a61af66fc99e Initial load
duke
parents:
diff changeset
396 bool parallel = false) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
397
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // Some generations may require some cleanup or preparation actions before
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // allowing a collection. The default is to do nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
400 virtual void gc_prologue(bool full) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Some generations may require some cleanup actions after a collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
403 // The default is to do nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
404 virtual void gc_epilogue(bool full) {};
a61af66fc99e Initial load
duke
parents:
diff changeset
405
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
406 // Save the high water marks for the used space in a generation.
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
407 virtual void record_spaces_top() {};
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
408
0
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // Some generations may need to be "fixed-up" after some allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // activity to make them parsable again. The default is to do nothing.
a61af66fc99e Initial load
duke
parents:
diff changeset
411 virtual void ensure_parsability() {};
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // Time (in ms) when we were last collected or now if a collection is
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // in progress.
a61af66fc99e Initial load
duke
parents:
diff changeset
415 virtual jlong time_of_last_gc(jlong now) {
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // XXX See note in genCollectedHeap::millis_since_last_gc()
a61af66fc99e Initial load
duke
parents:
diff changeset
417 NOT_PRODUCT(
a61af66fc99e Initial load
duke
parents:
diff changeset
418 if (now < _time_of_last_gc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
419 warning("time warp: %d to %d", _time_of_last_gc, now);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 }
a61af66fc99e Initial load
duke
parents:
diff changeset
421 )
a61af66fc99e Initial load
duke
parents:
diff changeset
422 return _time_of_last_gc;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424
a61af66fc99e Initial load
duke
parents:
diff changeset
425 virtual void update_time_of_last_gc(jlong now) {
a61af66fc99e Initial load
duke
parents:
diff changeset
426 _time_of_last_gc = now;
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Generations may keep statistics about collection. This
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // method updates those statistics. current_level is
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // the level of the collection that has most recently
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // occurred. This allows the generation to decide what
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // statistics are valid to collect. For example, the
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // generation can decide to gather the amount of promoted data
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // if the collection of the younger generations has completed.
a61af66fc99e Initial load
duke
parents:
diff changeset
436 GCStats* gc_stats() const { return _gc_stats; }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 virtual void update_gc_stats(int current_level, bool full) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
438
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // Mark sweep support phase2
a61af66fc99e Initial load
duke
parents:
diff changeset
440 virtual void prepare_for_compaction(CompactPoint* cp);
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Mark sweep support phase3
a61af66fc99e Initial load
duke
parents:
diff changeset
442 virtual void pre_adjust_pointers() {ShouldNotReachHere();}
a61af66fc99e Initial load
duke
parents:
diff changeset
443 virtual void adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // Mark sweep support phase4
a61af66fc99e Initial load
duke
parents:
diff changeset
445 virtual void compact();
a61af66fc99e Initial load
duke
parents:
diff changeset
446 virtual void post_compact() {ShouldNotReachHere();}
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // Support for CMS's rescan. In this general form we return a pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
449 // to an abstract object that can be used, based on specific previously
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // decided protocols, to exchange information between generations,
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // information that may be useful for speeding up certain types of
a61af66fc99e Initial load
duke
parents:
diff changeset
452 // garbage collectors. A NULL value indicates to the client that
a61af66fc99e Initial load
duke
parents:
diff changeset
453 // no data recording is expected by the provider. The data-recorder is
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // expected to be GC worker thread-local, with the worker index
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // indicated by "thr_num".
a61af66fc99e Initial load
duke
parents:
diff changeset
456 virtual void* get_data_recorder(int thr_num) { return NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
457
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // Some generations may require some cleanup actions before allowing
a61af66fc99e Initial load
duke
parents:
diff changeset
459 // a verification.
a61af66fc99e Initial load
duke
parents:
diff changeset
460 virtual void prepare_for_verify() {};
a61af66fc99e Initial load
duke
parents:
diff changeset
461
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // Accessing "marks".
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // This function gives a generation a chance to note a point between
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // collections. For example, a contiguous generation might note the
a61af66fc99e Initial load
duke
parents:
diff changeset
466 // beginning allocation point post-collection, which might allow some later
a61af66fc99e Initial load
duke
parents:
diff changeset
467 // operations to be optimized.
a61af66fc99e Initial load
duke
parents:
diff changeset
468 virtual void save_marks() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
469
a61af66fc99e Initial load
duke
parents:
diff changeset
470 // This function allows generations to initialize any "saved marks". That
a61af66fc99e Initial load
duke
parents:
diff changeset
471 // is, should only be called when the generation is empty.
a61af66fc99e Initial load
duke
parents:
diff changeset
472 virtual void reset_saved_marks() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // This function is "true" iff any no allocations have occurred in the
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // generation since the last call to "save_marks".
a61af66fc99e Initial load
duke
parents:
diff changeset
476 virtual bool no_allocs_since_save_marks() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // Apply "cl->apply" to (the addresses of) all reference fields in objects
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // allocated in the current generation since the last call to "save_marks".
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // If more objects are allocated in this generation as a result of applying
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // the closure, iterates over reference fields in those objects as well.
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // Calls "save_marks" at the end of the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 // General signature...
a61af66fc99e Initial load
duke
parents:
diff changeset
484 virtual void oop_since_save_marks_iterate_v(OopsInGenClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // ...and specializations for de-virtualization. (The general
a61af66fc99e Initial load
duke
parents:
diff changeset
486 // implemention of the _nv versions call the virtual version.
a61af66fc99e Initial load
duke
parents:
diff changeset
487 // Note that the _nv suffix is not really semantically necessary,
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // but it avoids some not-so-useful warnings on Solaris.)
a61af66fc99e Initial load
duke
parents:
diff changeset
489 #define Generation_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
490 virtual void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
491 oop_since_save_marks_iterate_v((OopsInGenClosure*)cl); \
a61af66fc99e Initial load
duke
parents:
diff changeset
492 }
a61af66fc99e Initial load
duke
parents:
diff changeset
493 SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(Generation_SINCE_SAVE_MARKS_DECL)
a61af66fc99e Initial load
duke
parents:
diff changeset
494
a61af66fc99e Initial load
duke
parents:
diff changeset
495 #undef Generation_SINCE_SAVE_MARKS_DECL
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // The "requestor" generation is performing some garbage collection
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // action for which it would be useful to have scratch space. If
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // the target is not the requestor, no gc actions will be required
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // of the target. The requestor promises to allocate no more than
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // "max_alloc_words" in the target generation (via promotion say,
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // if the requestor is a young generation and the target is older).
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // If the target generation can provide any scratch space, it adds
a61af66fc99e Initial load
duke
parents:
diff changeset
504 // it to "list", leaving "list" pointing to the head of the
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // augmented list. The default is to offer no space.
a61af66fc99e Initial load
duke
parents:
diff changeset
506 virtual void contribute_scratch(ScratchBlock*& list, Generation* requestor,
a61af66fc99e Initial load
duke
parents:
diff changeset
507 size_t max_alloc_words) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
508
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
509 // Give each generation an opportunity to do clean up for any
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
510 // contributed scratch.
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
511 virtual void reset_scratch() {};
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
512
0
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // When an older generation has been collected, and perhaps resized,
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // this method will be invoked on all younger generations (from older to
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // younger), allowing them to resize themselves as appropriate.
a61af66fc99e Initial load
duke
parents:
diff changeset
516 virtual void compute_new_size() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
517
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
519 virtual const char* name() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
520 virtual const char* short_name() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
521
a61af66fc99e Initial load
duke
parents:
diff changeset
522 int level() const { return _level; }
a61af66fc99e Initial load
duke
parents:
diff changeset
523
a61af66fc99e Initial load
duke
parents:
diff changeset
524 // Attributes
a61af66fc99e Initial load
duke
parents:
diff changeset
525
a61af66fc99e Initial load
duke
parents:
diff changeset
526 // True iff the given generation may only be the youngest generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
527 virtual bool must_be_youngest() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
528 // True iff the given generation may only be the oldest generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
529 virtual bool must_be_oldest() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 // Reference Processing accessor
a61af66fc99e Initial load
duke
parents:
diff changeset
532 ReferenceProcessor* const ref_processor() { return _ref_processor; }
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534 // Iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // Iterate over all the ref-containing fields of all objects in the
a61af66fc99e Initial load
duke
parents:
diff changeset
537 // generation, calling "cl.do_oop" on each.
a61af66fc99e Initial load
duke
parents:
diff changeset
538 virtual void oop_iterate(OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
539
a61af66fc99e Initial load
duke
parents:
diff changeset
540 // Same as above, restricted to the intersection of a memory region and
a61af66fc99e Initial load
duke
parents:
diff changeset
541 // the generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
542 virtual void oop_iterate(MemRegion mr, OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 // Iterate over all objects in the generation, calling "cl.do_object" on
a61af66fc99e Initial load
duke
parents:
diff changeset
545 // each.
a61af66fc99e Initial load
duke
parents:
diff changeset
546 virtual void object_iterate(ObjectClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
547
517
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 271
diff changeset
548 // Iterate over all safe objects in the generation, calling "cl.do_object" on
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 271
diff changeset
549 // each. An object is safe if its references point to other objects in
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 271
diff changeset
550 // the heap. This defaults to object_iterate() unless overridden.
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 271
diff changeset
551 virtual void safe_object_iterate(ObjectClosure* cl);
e9be0e04635a 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 271
diff changeset
552
0
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // Iterate over all objects allocated in the generation since the last
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // collection, calling "cl.do_object" on each. The generation must have
a61af66fc99e Initial load
duke
parents:
diff changeset
555 // been initialized properly to support this function, or else this call
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // will fail.
a61af66fc99e Initial load
duke
parents:
diff changeset
557 virtual void object_iterate_since_last_GC(ObjectClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
558
a61af66fc99e Initial load
duke
parents:
diff changeset
559 // Apply "cl->do_oop" to (the address of) all and only all the ref fields
a61af66fc99e Initial load
duke
parents:
diff changeset
560 // in the current generation that contain pointers to objects in younger
a61af66fc99e Initial load
duke
parents:
diff changeset
561 // generations. Objects allocated since the last "save_marks" call are
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // excluded.
a61af66fc99e Initial load
duke
parents:
diff changeset
563 virtual void younger_refs_iterate(OopsInGenClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
564
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // Inform a generation that it longer contains references to objects
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // in any younger generation. [e.g. Because younger gens are empty,
a61af66fc99e Initial load
duke
parents:
diff changeset
567 // clear the card table.]
a61af66fc99e Initial load
duke
parents:
diff changeset
568 virtual void clear_remembered_set() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
569
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // Inform a generation that some of its objects have moved. [e.g. The
a61af66fc99e Initial load
duke
parents:
diff changeset
571 // generation's spaces were compacted, invalidating the card table.]
a61af66fc99e Initial load
duke
parents:
diff changeset
572 virtual void invalidate_remembered_set() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
573
a61af66fc99e Initial load
duke
parents:
diff changeset
574 // Block abstraction.
a61af66fc99e Initial load
duke
parents:
diff changeset
575
a61af66fc99e Initial load
duke
parents:
diff changeset
576 // Returns the address of the start of the "block" that contains the
a61af66fc99e Initial load
duke
parents:
diff changeset
577 // address "addr". We say "blocks" instead of "object" since some heaps
a61af66fc99e Initial load
duke
parents:
diff changeset
578 // may not pack objects densely; a chunk may either be an object or a
a61af66fc99e Initial load
duke
parents:
diff changeset
579 // non-object.
a61af66fc99e Initial load
duke
parents:
diff changeset
580 virtual HeapWord* block_start(const void* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
581
a61af66fc99e Initial load
duke
parents:
diff changeset
582 // Requires "addr" to be the start of a chunk, and returns its size.
a61af66fc99e Initial load
duke
parents:
diff changeset
583 // "addr + size" is required to be the start of a new chunk, or the end
a61af66fc99e Initial load
duke
parents:
diff changeset
584 // of the active area of the heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
585 virtual size_t block_size(const HeapWord* addr) const ;
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 // Requires "addr" to be the start of a block, and returns "TRUE" iff
a61af66fc99e Initial load
duke
parents:
diff changeset
588 // the block is an object.
a61af66fc99e Initial load
duke
parents:
diff changeset
589 virtual bool block_is_obj(const HeapWord* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
590
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 // PrintGC, PrintGCDetails support
a61af66fc99e Initial load
duke
parents:
diff changeset
593 void print_heap_change(size_t prev_used) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
594
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // PrintHeapAtGC support
a61af66fc99e Initial load
duke
parents:
diff changeset
596 virtual void print() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
597 virtual void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
598
a61af66fc99e Initial load
duke
parents:
diff changeset
599 virtual void verify(bool allow_dirty) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 struct StatRecord {
a61af66fc99e Initial load
duke
parents:
diff changeset
602 int invocations;
a61af66fc99e Initial load
duke
parents:
diff changeset
603 elapsedTimer accumulated_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 StatRecord() :
a61af66fc99e Initial load
duke
parents:
diff changeset
605 invocations(0),
a61af66fc99e Initial load
duke
parents:
diff changeset
606 accumulated_time(elapsedTimer()) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
607 };
a61af66fc99e Initial load
duke
parents:
diff changeset
608 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
609 StatRecord _stat_record;
a61af66fc99e Initial load
duke
parents:
diff changeset
610 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
611 StatRecord* stat_record() { return &_stat_record; }
a61af66fc99e Initial load
duke
parents:
diff changeset
612
a61af66fc99e Initial load
duke
parents:
diff changeset
613 virtual void print_summary_info();
a61af66fc99e Initial load
duke
parents:
diff changeset
614 virtual void print_summary_info_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 // Performance Counter support
a61af66fc99e Initial load
duke
parents:
diff changeset
617 virtual void update_counters() = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
618 virtual CollectorCounters* counters() { return _gc_counters; }
a61af66fc99e Initial load
duke
parents:
diff changeset
619 };
a61af66fc99e Initial load
duke
parents:
diff changeset
620
a61af66fc99e Initial load
duke
parents:
diff changeset
621 // Class CardGeneration is a generation that is covered by a card table,
a61af66fc99e Initial load
duke
parents:
diff changeset
622 // and uses a card-size block-offset array to implement block_start.
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 // class BlockOffsetArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
625 // class BlockOffsetArrayContigSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
626 class BlockOffsetSharedArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
627
a61af66fc99e Initial load
duke
parents:
diff changeset
628 class CardGeneration: public Generation {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
630 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
631 // This is shared with other generations.
a61af66fc99e Initial load
duke
parents:
diff changeset
632 GenRemSet* _rs;
a61af66fc99e Initial load
duke
parents:
diff changeset
633 // This is local to this generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
634 BlockOffsetSharedArray* _bts;
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 CardGeneration(ReservedSpace rs, size_t initial_byte_size, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
637 GenRemSet* remset);
a61af66fc99e Initial load
duke
parents:
diff changeset
638
a61af66fc99e Initial load
duke
parents:
diff changeset
639 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
640
271
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
641 // Attempt to expand the generation by "bytes". Expand by at a
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
642 // minimum "expand_bytes". Return true if some amount (not
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
643 // necessarily the full "bytes") was done.
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
644 virtual bool expand(size_t bytes, size_t expand_bytes);
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
645
0
a61af66fc99e Initial load
duke
parents:
diff changeset
646 virtual void clear_remembered_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 virtual void invalidate_remembered_set();
a61af66fc99e Initial load
duke
parents:
diff changeset
649
a61af66fc99e Initial load
duke
parents:
diff changeset
650 virtual void prepare_for_verify();
271
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
651
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
652 // Grow generation with specified size (returns false if unable to grow)
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
653 virtual bool grow_by(size_t bytes) = 0;
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
654 // Grow generation to reserved size.
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
655 virtual bool grow_to_reserved() = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
656 };
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658 // OneContigSpaceCardGeneration models a heap of old objects contained in a single
a61af66fc99e Initial load
duke
parents:
diff changeset
659 // contiguous space.
a61af66fc99e Initial load
duke
parents:
diff changeset
660 //
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // Garbage collection is performed using mark-compact.
a61af66fc99e Initial load
duke
parents:
diff changeset
662
a61af66fc99e Initial load
duke
parents:
diff changeset
663 class OneContigSpaceCardGeneration: public CardGeneration {
a61af66fc99e Initial load
duke
parents:
diff changeset
664 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 // Abstractly, this is a subtype that gets access to protected fields.
a61af66fc99e Initial load
duke
parents:
diff changeset
666 friend class CompactingPermGen;
a61af66fc99e Initial load
duke
parents:
diff changeset
667 friend class VM_PopulateDumpSharedSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
668
a61af66fc99e Initial load
duke
parents:
diff changeset
669 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
670 size_t _min_heap_delta_bytes; // Minimum amount to expand.
a61af66fc99e Initial load
duke
parents:
diff changeset
671 ContiguousSpace* _the_space; // actual space holding objects
a61af66fc99e Initial load
duke
parents:
diff changeset
672 WaterMark _last_gc; // watermark between objects allocated before
a61af66fc99e Initial load
duke
parents:
diff changeset
673 // and after last GC.
a61af66fc99e Initial load
duke
parents:
diff changeset
674
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // Grow generation with specified size (returns false if unable to grow)
271
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
676 virtual bool grow_by(size_t bytes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // Grow generation to reserved size.
271
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
678 virtual bool grow_to_reserved();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
679 // Shrink generation with specified size (returns false if unable to shrink)
a61af66fc99e Initial load
duke
parents:
diff changeset
680 void shrink_by(size_t bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 // Allocation failure
271
818a18cd69a8 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 269
diff changeset
683 virtual bool expand(size_t bytes, size_t expand_bytes);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
684 void shrink(size_t bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 // Accessing spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
687 ContiguousSpace* the_space() const { return _the_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
688
a61af66fc99e Initial load
duke
parents:
diff changeset
689 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
690 OneContigSpaceCardGeneration(ReservedSpace rs, size_t initial_byte_size,
a61af66fc99e Initial load
duke
parents:
diff changeset
691 size_t min_heap_delta_bytes,
a61af66fc99e Initial load
duke
parents:
diff changeset
692 int level, GenRemSet* remset,
a61af66fc99e Initial load
duke
parents:
diff changeset
693 ContiguousSpace* space) :
a61af66fc99e Initial load
duke
parents:
diff changeset
694 CardGeneration(rs, initial_byte_size, level, remset),
a61af66fc99e Initial load
duke
parents:
diff changeset
695 _the_space(space), _min_heap_delta_bytes(min_heap_delta_bytes)
a61af66fc99e Initial load
duke
parents:
diff changeset
696 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 inline bool is_in(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
699
a61af66fc99e Initial load
duke
parents:
diff changeset
700 // Space enquiries
a61af66fc99e Initial load
duke
parents:
diff changeset
701 size_t capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 size_t used() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
703 size_t free() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
704
a61af66fc99e Initial load
duke
parents:
diff changeset
705 MemRegion used_region() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
706
a61af66fc99e Initial load
duke
parents:
diff changeset
707 size_t unsafe_max_alloc_nogc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
708 size_t contiguous_available() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
711 void object_iterate(ObjectClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
712 void space_iterate(SpaceClosure* blk, bool usedOnly = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
713 void object_iterate_since_last_GC(ObjectClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
714
a61af66fc99e Initial load
duke
parents:
diff changeset
715 void younger_refs_iterate(OopsInGenClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
716
a61af66fc99e Initial load
duke
parents:
diff changeset
717 inline CompactibleSpace* first_compaction_space() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
718
a61af66fc99e Initial load
duke
parents:
diff changeset
719 virtual inline HeapWord* allocate(size_t word_size, bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
720 virtual inline HeapWord* par_allocate(size_t word_size, bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // Accessing marks
a61af66fc99e Initial load
duke
parents:
diff changeset
723 inline WaterMark top_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
724 inline WaterMark bottom_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 #define OneContig_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
727 void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
728 OneContig_SINCE_SAVE_MARKS_DECL(OopsInGenClosure,_v)
a61af66fc99e Initial load
duke
parents:
diff changeset
729 SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(OneContig_SINCE_SAVE_MARKS_DECL)
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731 void save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
732 void reset_saved_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
733 bool no_allocs_since_save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
734
a61af66fc99e Initial load
duke
parents:
diff changeset
735 inline size_t block_size(const HeapWord* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
736
a61af66fc99e Initial load
duke
parents:
diff changeset
737 inline bool block_is_obj(const HeapWord* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 virtual void collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
740 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
741 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
742 bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
743 HeapWord* expand_and_allocate(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
744 bool is_tlab,
a61af66fc99e Initial load
duke
parents:
diff changeset
745 bool parallel = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
746
a61af66fc99e Initial load
duke
parents:
diff changeset
747 virtual void prepare_for_verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 virtual void gc_epilogue(bool full);
a61af66fc99e Initial load
duke
parents:
diff changeset
750
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
751 virtual void record_spaces_top();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
752
0
a61af66fc99e Initial load
duke
parents:
diff changeset
753 virtual void verify(bool allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
754 virtual void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
755 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
756
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1888
diff changeset
757 #endif // SHARE_VM_MEMORY_GENERATION_HPP