src/share/vm/gc_implementation/concurrentMarkSweep/cmsGCAdaptivePolicyCounters.cpp

Print this page


   1 /*
   2  * Copyright (c) 2004, 2005, 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 # include "incls/_precompiled.incl"
  26 # include "incls/_cmsGCAdaptivePolicyCounters.cpp.incl"

  27 
  28 CMSGCAdaptivePolicyCounters::CMSGCAdaptivePolicyCounters(const char* name_arg,
  29                                         int collectors,
  30                                         int generations,
  31                                         AdaptiveSizePolicy* size_policy_arg)
  32         : GCAdaptivePolicyCounters(name_arg,
  33                                    collectors,
  34                                    generations,
  35                                    size_policy_arg) {
  36   if (UsePerfData) {
  37     EXCEPTION_MARK;
  38     ResourceMark rm;
  39 
  40     const char* cname =
  41       PerfDataManager::counter_name(name_space(), "cmsCapacity");
  42     _cms_capacity_counter = PerfDataManager::create_variable(SUN_GC, cname,
  43       PerfData::U_Bytes, (jlong) OldSize, CHECK);
  44 #ifdef NOT_PRODUCT
  45     cname =
  46       PerfDataManager::counter_name(name_space(), "initialPause");


   1 /*
   2  * Copyright (c) 2004, 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 #include "precompiled.hpp"
  26 #include "gc_implementation/concurrentMarkSweep/cmsGCAdaptivePolicyCounters.hpp"
  27 #include "memory/resourceArea.hpp"
  28 
  29 CMSGCAdaptivePolicyCounters::CMSGCAdaptivePolicyCounters(const char* name_arg,
  30                                         int collectors,
  31                                         int generations,
  32                                         AdaptiveSizePolicy* size_policy_arg)
  33         : GCAdaptivePolicyCounters(name_arg,
  34                                    collectors,
  35                                    generations,
  36                                    size_policy_arg) {
  37   if (UsePerfData) {
  38     EXCEPTION_MARK;
  39     ResourceMark rm;
  40 
  41     const char* cname =
  42       PerfDataManager::counter_name(name_space(), "cmsCapacity");
  43     _cms_capacity_counter = PerfDataManager::create_variable(SUN_GC, cname,
  44       PerfData::U_Bytes, (jlong) OldSize, CHECK);
  45 #ifdef NOT_PRODUCT
  46     cname =
  47       PerfDataManager::counter_name(name_space(), "initialPause");