src/share/vm/memory/defNewGeneration.hpp

Wed, 01 May 2013 14:11:01 +0100

author
chegar
date
Wed, 01 May 2013 14:11:01 +0100
changeset 5246
4b52137b07c9
parent 4452
a30e7b564541
child 5159
001ec9515f84
permissions
-rw-r--r--

Merge

duke@435 1 /*
brutisso@3711 2 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_MEMORY_DEFNEWGENERATION_HPP
stefank@2314 26 #define SHARE_VM_MEMORY_DEFNEWGENERATION_HPP
stefank@2314 27
stefank@2314 28 #include "gc_implementation/shared/ageTable.hpp"
stefank@2314 29 #include "gc_implementation/shared/cSpaceCounters.hpp"
stefank@2314 30 #include "gc_implementation/shared/generationCounters.hpp"
stefank@2314 31 #include "memory/generation.inline.hpp"
stefank@2314 32 #include "utilities/stack.hpp"
stefank@2314 33
duke@435 34 class EdenSpace;
duke@435 35 class ContiguousSpace;
coleenp@548 36 class ScanClosure;
duke@435 37
duke@435 38 // DefNewGeneration is a young generation containing eden, from- and
duke@435 39 // to-space.
duke@435 40
duke@435 41 class DefNewGeneration: public Generation {
duke@435 42 friend class VMStructs;
duke@435 43
duke@435 44 protected:
duke@435 45 Generation* _next_gen;
jwilhelm@4129 46 uint _tenuring_threshold; // Tenuring threshold for next collection.
duke@435 47 ageTable _age_table;
duke@435 48 // Size of object to pretenure in words; command line provides bytes
duke@435 49 size_t _pretenure_size_threshold_words;
duke@435 50
duke@435 51 ageTable* age_table() { return &_age_table; }
duke@435 52 // Initialize state to optimistically assume no promotion failure will
duke@435 53 // happen.
duke@435 54 void init_assuming_no_promotion_failure();
duke@435 55 // True iff a promotion has failed in the current collection.
duke@435 56 bool _promotion_failed;
duke@435 57 bool promotion_failed() { return _promotion_failed; }
duke@435 58
duke@435 59 // Handling promotion failure. A young generation collection
duke@435 60 // can fail if a live object cannot be copied out of its
duke@435 61 // location in eden or from-space during the collection. If
duke@435 62 // a collection fails, the young generation is left in a
duke@435 63 // consistent state such that it can be collected by a
duke@435 64 // full collection.
duke@435 65 // Before the collection
duke@435 66 // Objects are in eden or from-space
duke@435 67 // All roots into the young generation point into eden or from-space.
duke@435 68 //
duke@435 69 // After a failed collection
duke@435 70 // Objects may be in eden, from-space, or to-space
duke@435 71 // An object A in eden or from-space may have a copy B
duke@435 72 // in to-space. If B exists, all roots that once pointed
duke@435 73 // to A must now point to B.
duke@435 74 // All objects in the young generation are unmarked.
duke@435 75 // Eden, from-space, and to-space will all be collected by
duke@435 76 // the full collection.
duke@435 77 void handle_promotion_failure(oop);
duke@435 78
duke@435 79 // In the absence of promotion failure, we wouldn't look at "from-space"
duke@435 80 // objects after a young-gen collection. When promotion fails, however,
duke@435 81 // the subsequent full collection will look at from-space objects:
duke@435 82 // therefore we must remove their forwarding pointers.
duke@435 83 void remove_forwarding_pointers();
duke@435 84
duke@435 85 // Preserve the mark of "obj", if necessary, in preparation for its mark
duke@435 86 // word being overwritten with a self-forwarding-pointer.
duke@435 87 void preserve_mark_if_necessary(oop obj, markOop m);
ysr@2380 88 void preserve_mark(oop obj, markOop m); // work routine used by the above
duke@435 89
jcoomes@2191 90 // Together, these keep <object with a preserved mark, mark value> pairs.
jcoomes@2191 91 // They should always contain the same number of elements.
zgu@3900 92 Stack<oop, mtGC> _objs_with_preserved_marks;
zgu@3900 93 Stack<markOop, mtGC> _preserved_marks_of_objs;
duke@435 94
duke@435 95 // Promotion failure handling
coleenp@4037 96 ExtendedOopClosure *_promo_failure_scan_stack_closure;
coleenp@4037 97 void set_promo_failure_scan_stack_closure(ExtendedOopClosure *scan_stack_closure) {
duke@435 98 _promo_failure_scan_stack_closure = scan_stack_closure;
duke@435 99 }
duke@435 100
zgu@3900 101 Stack<oop, mtGC> _promo_failure_scan_stack;
duke@435 102 void drain_promo_failure_scan_stack(void);
duke@435 103 bool _promo_failure_drain_in_progress;
duke@435 104
duke@435 105 // Performance Counters
duke@435 106 GenerationCounters* _gen_counters;
duke@435 107 CSpaceCounters* _eden_counters;
duke@435 108 CSpaceCounters* _from_counters;
duke@435 109 CSpaceCounters* _to_counters;
duke@435 110
duke@435 111 // sizing information
duke@435 112 size_t _max_eden_size;
duke@435 113 size_t _max_survivor_size;
duke@435 114
duke@435 115 // Allocation support
duke@435 116 bool _should_allocate_from_space;
duke@435 117 bool should_allocate_from_space() const {
duke@435 118 return _should_allocate_from_space;
duke@435 119 }
duke@435 120 void clear_should_allocate_from_space() {
duke@435 121 _should_allocate_from_space = false;
duke@435 122 }
duke@435 123 void set_should_allocate_from_space() {
duke@435 124 _should_allocate_from_space = true;
duke@435 125 }
duke@435 126
brutisso@4452 127 // Tenuring
brutisso@4452 128 void adjust_desired_tenuring_threshold();
brutisso@4452 129
duke@435 130 // Spaces
duke@435 131 EdenSpace* _eden_space;
duke@435 132 ContiguousSpace* _from_space;
duke@435 133 ContiguousSpace* _to_space;
duke@435 134
duke@435 135 enum SomeProtectedConstants {
duke@435 136 // Generations are GenGrain-aligned and have size that are multiples of
duke@435 137 // GenGrain.
duke@435 138 MinFreeScratchWords = 100
duke@435 139 };
duke@435 140
duke@435 141 // Return the size of a survivor space if this generation were of size
duke@435 142 // gen_size.
duke@435 143 size_t compute_survivor_size(size_t gen_size, size_t alignment) const {
duke@435 144 size_t n = gen_size / (SurvivorRatio + 2);
duke@435 145 return n > alignment ? align_size_down(n, alignment) : alignment;
duke@435 146 }
duke@435 147
duke@435 148 public: // was "protected" but caused compile error on win32
duke@435 149 class IsAliveClosure: public BoolObjectClosure {
duke@435 150 Generation* _g;
duke@435 151 public:
duke@435 152 IsAliveClosure(Generation* g);
duke@435 153 void do_object(oop p);
duke@435 154 bool do_object_b(oop p);
duke@435 155 };
duke@435 156
duke@435 157 class KeepAliveClosure: public OopClosure {
duke@435 158 protected:
duke@435 159 ScanWeakRefClosure* _cl;
duke@435 160 CardTableRS* _rs;
coleenp@548 161 template <class T> void do_oop_work(T* p);
duke@435 162 public:
duke@435 163 KeepAliveClosure(ScanWeakRefClosure* cl);
coleenp@548 164 virtual void do_oop(oop* p);
coleenp@548 165 virtual void do_oop(narrowOop* p);
duke@435 166 };
duke@435 167
duke@435 168 class FastKeepAliveClosure: public KeepAliveClosure {
duke@435 169 protected:
duke@435 170 HeapWord* _boundary;
coleenp@548 171 template <class T> void do_oop_work(T* p);
duke@435 172 public:
duke@435 173 FastKeepAliveClosure(DefNewGeneration* g, ScanWeakRefClosure* cl);
coleenp@548 174 virtual void do_oop(oop* p);
coleenp@548 175 virtual void do_oop(narrowOop* p);
duke@435 176 };
duke@435 177
duke@435 178 class EvacuateFollowersClosure: public VoidClosure {
duke@435 179 GenCollectedHeap* _gch;
duke@435 180 int _level;
duke@435 181 ScanClosure* _scan_cur_or_nonheap;
duke@435 182 ScanClosure* _scan_older;
duke@435 183 public:
duke@435 184 EvacuateFollowersClosure(GenCollectedHeap* gch, int level,
duke@435 185 ScanClosure* cur, ScanClosure* older);
duke@435 186 void do_void();
duke@435 187 };
duke@435 188
duke@435 189 class FastEvacuateFollowersClosure: public VoidClosure {
duke@435 190 GenCollectedHeap* _gch;
duke@435 191 int _level;
duke@435 192 DefNewGeneration* _gen;
duke@435 193 FastScanClosure* _scan_cur_or_nonheap;
duke@435 194 FastScanClosure* _scan_older;
duke@435 195 public:
duke@435 196 FastEvacuateFollowersClosure(GenCollectedHeap* gch, int level,
duke@435 197 DefNewGeneration* gen,
duke@435 198 FastScanClosure* cur,
duke@435 199 FastScanClosure* older);
duke@435 200 void do_void();
duke@435 201 };
duke@435 202
duke@435 203 public:
duke@435 204 DefNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level,
duke@435 205 const char* policy="Copy");
duke@435 206
duke@435 207 virtual Generation::Name kind() { return Generation::DefNew; }
duke@435 208
duke@435 209 // Accessing spaces
duke@435 210 EdenSpace* eden() const { return _eden_space; }
duke@435 211 ContiguousSpace* from() const { return _from_space; }
duke@435 212 ContiguousSpace* to() const { return _to_space; }
duke@435 213
coleenp@548 214 virtual CompactibleSpace* first_compaction_space() const;
duke@435 215
duke@435 216 // Space enquiries
duke@435 217 size_t capacity() const;
duke@435 218 size_t used() const;
duke@435 219 size_t free() const;
duke@435 220 size_t max_capacity() const;
duke@435 221 size_t capacity_before_gc() const;
duke@435 222 size_t unsafe_max_alloc_nogc() const;
duke@435 223 size_t contiguous_available() const;
duke@435 224
duke@435 225 size_t max_eden_size() const { return _max_eden_size; }
duke@435 226 size_t max_survivor_size() const { return _max_survivor_size; }
duke@435 227
duke@435 228 bool supports_inline_contig_alloc() const { return true; }
duke@435 229 HeapWord** top_addr() const;
duke@435 230 HeapWord** end_addr() const;
duke@435 231
duke@435 232 // Thread-local allocation buffers
duke@435 233 bool supports_tlab_allocation() const { return true; }
coleenp@548 234 size_t tlab_capacity() const;
coleenp@548 235 size_t unsafe_max_tlab_alloc() const;
duke@435 236
duke@435 237 // Grow the generation by the specified number of bytes.
duke@435 238 // The size of bytes is assumed to be properly aligned.
duke@435 239 // Return true if the expansion was successful.
duke@435 240 bool expand(size_t bytes);
duke@435 241
duke@435 242 // DefNewGeneration cannot currently expand except at
duke@435 243 // a GC.
duke@435 244 virtual bool is_maximal_no_gc() const { return true; }
duke@435 245
duke@435 246 // Iteration
duke@435 247 void object_iterate(ObjectClosure* blk);
duke@435 248 void object_iterate_since_last_GC(ObjectClosure* cl);
duke@435 249
duke@435 250 void younger_refs_iterate(OopsInGenClosure* cl);
duke@435 251
duke@435 252 void space_iterate(SpaceClosure* blk, bool usedOnly = false);
duke@435 253
duke@435 254 // Allocation support
duke@435 255 virtual bool should_allocate(size_t word_size, bool is_tlab) {
duke@435 256 assert(UseTLAB || !is_tlab, "Should not allocate tlab");
duke@435 257
duke@435 258 size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize);
duke@435 259
duke@435 260 const bool non_zero = word_size > 0;
duke@435 261 const bool overflows = word_size >= overflow_limit;
duke@435 262 const bool check_too_big = _pretenure_size_threshold_words > 0;
duke@435 263 const bool not_too_big = word_size < _pretenure_size_threshold_words;
duke@435 264 const bool size_ok = is_tlab || !check_too_big || not_too_big;
duke@435 265
duke@435 266 bool result = !overflows &&
duke@435 267 non_zero &&
duke@435 268 size_ok;
duke@435 269
duke@435 270 return result;
duke@435 271 }
duke@435 272
coleenp@548 273 HeapWord* allocate(size_t word_size, bool is_tlab);
duke@435 274 HeapWord* allocate_from_space(size_t word_size);
duke@435 275
coleenp@548 276 HeapWord* par_allocate(size_t word_size, bool is_tlab);
duke@435 277
duke@435 278 // Prologue & Epilogue
coleenp@548 279 virtual void gc_prologue(bool full);
duke@435 280 virtual void gc_epilogue(bool full);
duke@435 281
jmasa@698 282 // Save the tops for eden, from, and to
jmasa@698 283 virtual void record_spaces_top();
jmasa@698 284
duke@435 285 // Doesn't require additional work during GC prologue and epilogue
duke@435 286 virtual bool performs_in_place_marking() const { return false; }
duke@435 287
duke@435 288 // Accessing marks
duke@435 289 void save_marks();
duke@435 290 void reset_saved_marks();
duke@435 291 bool no_allocs_since_save_marks();
duke@435 292
duke@435 293 // Need to declare the full complement of closures, whether we'll
duke@435 294 // override them or not, or get message from the compiler:
duke@435 295 // oop_since_save_marks_iterate_nv hides virtual function...
duke@435 296 #define DefNew_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \
duke@435 297 void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl);
duke@435 298
duke@435 299 ALL_SINCE_SAVE_MARKS_CLOSURES(DefNew_SINCE_SAVE_MARKS_DECL)
duke@435 300
duke@435 301 #undef DefNew_SINCE_SAVE_MARKS_DECL
duke@435 302
duke@435 303 // For non-youngest collection, the DefNewGeneration can contribute
duke@435 304 // "to-space".
jmasa@698 305 virtual void contribute_scratch(ScratchBlock*& list, Generation* requestor,
duke@435 306 size_t max_alloc_words);
duke@435 307
jmasa@698 308 // Reset for contribution of "to-space".
jmasa@698 309 virtual void reset_scratch();
jmasa@698 310
duke@435 311 // GC support
duke@435 312 virtual void compute_new_size();
ysr@2243 313
ysr@2243 314 // Returns true if the collection is likely to be safely
ysr@2243 315 // completed. Even if this method returns true, a collection
ysr@2243 316 // may not be guaranteed to succeed, and the system should be
ysr@2243 317 // able to safely unwind and recover from that failure, albeit
ysr@2243 318 // at some additional cost. Override superclass's implementation.
ysr@2243 319 virtual bool collection_attempt_is_safe();
ysr@2243 320
duke@435 321 virtual void collect(bool full,
duke@435 322 bool clear_all_soft_refs,
duke@435 323 size_t size,
duke@435 324 bool is_tlab);
duke@435 325 HeapWord* expand_and_allocate(size_t size,
duke@435 326 bool is_tlab,
duke@435 327 bool parallel = false);
duke@435 328
coleenp@548 329 oop copy_to_survivor_space(oop old);
jwilhelm@4129 330 uint tenuring_threshold() { return _tenuring_threshold; }
duke@435 331
duke@435 332 // Performance Counter support
duke@435 333 void update_counters();
duke@435 334
duke@435 335 // Printing
duke@435 336 virtual const char* name() const;
duke@435 337 virtual const char* short_name() const { return "DefNew"; }
duke@435 338
duke@435 339 bool must_be_youngest() const { return true; }
duke@435 340 bool must_be_oldest() const { return false; }
duke@435 341
duke@435 342 // PrintHeapAtGC support.
duke@435 343 void print_on(outputStream* st) const;
duke@435 344
brutisso@3711 345 void verify();
duke@435 346
jcoomes@2191 347 bool promo_failure_scan_is_complete() const {
jcoomes@2191 348 return _promo_failure_scan_stack.is_empty();
jcoomes@2191 349 }
jcoomes@2191 350
duke@435 351 protected:
jmasa@698 352 // If clear_space is true, clear the survivor spaces. Eden is
jmasa@698 353 // cleared if the minimum size of eden is 0. If mangle_space
jmasa@698 354 // is true, also mangle the space in debug mode.
jmasa@698 355 void compute_space_boundaries(uintx minimum_eden_size,
jmasa@698 356 bool clear_space,
jmasa@698 357 bool mangle_space);
duke@435 358 // Scavenge support
duke@435 359 void swap_spaces();
duke@435 360 };
stefank@2314 361
stefank@2314 362 #endif // SHARE_VM_MEMORY_DEFNEWGENERATION_HPP

mercurial