< prev index next >

src/hotspot/share/gc/g1/g1Arguments.hpp

Print this page
rev 48019 : 8191821: Finer granularity for GC verification
Reviewed-by:
rev 48020 : [mq]: 8191821-rev-sang-poonam


  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_GC_G1_G1ARGUMENTS_HPP
  26 #define SHARE_GC_G1_G1ARGUMENTS_HPP
  27 
  28 #include "gc/shared/gcArguments.hpp"
  29 
  30 class CollectedHeap;
  31 
  32 class G1Arguments : public GCArguments {
  33 public:
  34   virtual void initialize_flags();

  35   virtual size_t conservative_max_heap_alignment();
  36   virtual CollectedHeap* create_heap();
  37 };
  38 
  39 #endif // SHARE_GC_G1_G1ARGUMENTS_HPP


  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_GC_G1_G1ARGUMENTS_HPP
  26 #define SHARE_GC_G1_G1ARGUMENTS_HPP
  27 
  28 #include "gc/shared/gcArguments.hpp"
  29 
  30 class CollectedHeap;
  31 
  32 class G1Arguments : public GCArguments {
  33 public:
  34   virtual void initialize_flags();
  35   virtual bool parse_verification_type(const char* type);
  36   virtual size_t conservative_max_heap_alignment();
  37   virtual CollectedHeap* create_heap();
  38 };
  39 
  40 #endif // SHARE_GC_G1_G1ARGUMENTS_HPP
< prev index next >