hotspot/src/share/vm/memory/tenuredGeneration.hpp
author mikael
Tue, 24 Dec 2013 11:48:39 -0800
changeset 22234 da823d78ad65
parent 16681 d64161ca3e3c
child 24941 4ebbe176a7b1
permissions -rw-r--r--
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013 Summary: Copyright year updated for files modified during 2013 Reviewed-by: twisti, iveresov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22234
da823d78ad65 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 16681
diff changeset
     2
 * Copyright (c) 2001, 2013, 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: 1623
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1623
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: 1623
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    25
#ifndef SHARE_VM_MEMORY_TENUREDGENERATION_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    26
#define SHARE_VM_MEMORY_TENUREDGENERATION_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    28
#include "gc_implementation/shared/cSpaceCounters.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    29
#include "gc_implementation/shared/gcStats.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    30
#include "gc_implementation/shared/generationCounters.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    31
#include "memory/generation.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7397
diff changeset
    32
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// TenuredGeneration models the heap containing old (promoted/tenured) objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class ParGCAllocBufferWithBOT;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class TenuredGeneration: public OneContigSpaceCardGeneration {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7397
diff changeset
    42
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // To support parallel promotion: an array of parallel allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // buffers, one per thread, initially NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  ParGCAllocBufferWithBOT** _alloc_buffers;
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7397
diff changeset
    46
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Retire all alloc buffers before a full GC, so that they will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // re-allocated at the start of the next young GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  void retire_alloc_buffers_before_full_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  GenerationCounters*   _gen_counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  CSpaceCounters*       _space_counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  TenuredGeneration(ReservedSpace rs, size_t initial_byte_size, int level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                    GenRemSet* remset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  Generation::Name kind() { return Generation::MarkSweepCompact; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  const char* name() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  const char* short_name() const { return "Tenured"; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  bool must_be_youngest() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  bool must_be_oldest() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // Does a "full" (forced) collection invoked on this generation collect
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // all younger generations as well? Note that this is a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // hack to allow the collection of the younger gen first if the flag is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // set. This is better than using th policy's should_collect_gen0_first()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // since that causes us to do an extra unnecessary pair of restart-&-stop-world.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  virtual bool full_collects_younger_generations() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    return !CollectGen0First;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  virtual void gc_prologue(bool full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  virtual void gc_epilogue(bool full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  bool should_collect(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                      size_t word_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                      bool   is_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  virtual void collect(bool full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
                       bool clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                       size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                       bool is_tlab);
16681
d64161ca3e3c 8008508: CMS does not correctly reduce heap size after a Full GC
jmasa
parents: 15482
diff changeset
    86
  virtual void compute_new_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7397
diff changeset
    88
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Overrides.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  virtual oop par_promote(int thread_num,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                          oop obj, markOop m, size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  virtual void par_promote_alloc_undo(int thread_num,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                                      HeapWord* obj, size_t word_sz);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  virtual void par_promote_alloc_done(int thread_num);
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 7397
diff changeset
    95
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Performance Counter support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void update_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  virtual void update_gc_stats(int level, bool full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
6985
e9364ec299ac 6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents: 5547
diff changeset
   104
  virtual bool promotion_attempt_is_safe(size_t max_promoted_in_bytes) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void verify_alloc_buffers_clean();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
   108
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
   109
#endif // SHARE_VM_MEMORY_TENUREDGENERATION_HPP