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