src/share/vm/gc_implementation/parNew/asParNewGeneration.hpp

Print this page


   1 /*
   2  * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 






  25 // A Generation that does parallel young-gen collection extended
  26 // for adaptive size policy.
  27 
  28 // Division of generation into spaces
  29 // done by DefNewGeneration::compute_space_boundaries()
  30 //      +---------------+
  31 //      | uncommitted   |
  32 //      |---------------|
  33 //      | ss0           |
  34 //      |---------------|
  35 //      | ss1           |
  36 //      |---------------|
  37 //      |               |
  38 //      | eden          |
  39 //      |               |
  40 //      +---------------+       <-- low end of VirtualSpace
  41 //
  42 class ASParNewGeneration: public ParNewGeneration {
  43 
  44   size_t _min_gen_size;


  71                      int level);
  72 
  73   virtual const char* short_name() const { return "ASParNew"; }
  74   virtual const char* name() const;
  75   virtual Generation::Name kind() { return ASParNew; }
  76 
  77   // Change the sizes of eden and the survivor spaces in
  78   // the generation.  The parameters are desired sizes
  79   // and are not guaranteed to be met.  For example, if
  80   // the total is larger than the generation.
  81   void resize(size_t eden_size, size_t survivor_size);
  82 
  83   virtual void compute_new_size();
  84 
  85   size_t max_gen_size()                 { return _reserved.byte_size(); }
  86   size_t min_gen_size() const           { return _min_gen_size; }
  87 
  88   // Space boundary invariant checker
  89   void space_invariants() PRODUCT_RETURN;
  90 };


   1 /*
   2  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_IMPLEMENTATION_PARNEW_ASPARNEWGENERATION_HPP
  26 #define SHARE_VM_GC_IMPLEMENTATION_PARNEW_ASPARNEWGENERATION_HPP
  27 
  28 #include "gc_implementation/parNew/parNewGeneration.hpp"
  29 #include "gc_implementation/shared/adaptiveSizePolicy.hpp"
  30 
  31 // A Generation that does parallel young-gen collection extended
  32 // for adaptive size policy.
  33 
  34 // Division of generation into spaces
  35 // done by DefNewGeneration::compute_space_boundaries()
  36 //      +---------------+
  37 //      | uncommitted   |
  38 //      |---------------|
  39 //      | ss0           |
  40 //      |---------------|
  41 //      | ss1           |
  42 //      |---------------|
  43 //      |               |
  44 //      | eden          |
  45 //      |               |
  46 //      +---------------+       <-- low end of VirtualSpace
  47 //
  48 class ASParNewGeneration: public ParNewGeneration {
  49 
  50   size_t _min_gen_size;


  77                      int level);
  78 
  79   virtual const char* short_name() const { return "ASParNew"; }
  80   virtual const char* name() const;
  81   virtual Generation::Name kind() { return ASParNew; }
  82 
  83   // Change the sizes of eden and the survivor spaces in
  84   // the generation.  The parameters are desired sizes
  85   // and are not guaranteed to be met.  For example, if
  86   // the total is larger than the generation.
  87   void resize(size_t eden_size, size_t survivor_size);
  88 
  89   virtual void compute_new_size();
  90 
  91   size_t max_gen_size()                 { return _reserved.byte_size(); }
  92   size_t min_gen_size() const           { return _min_gen_size; }
  93 
  94   // Space boundary invariant checker
  95   void space_invariants() PRODUCT_RETURN;
  96 };
  97 
  98 #endif // SHARE_VM_GC_IMPLEMENTATION_PARNEW_ASPARNEWGENERATION_HPP