< prev index next >

src/share/vm/gc/g1/g1HRPrinter.hpp

Print this page
rev 8362 : [mq]: hotspot
   1 /*
   2  * Copyright (c) 2011, 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_G1_G1HRPRINTER_HPP
  26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1HRPRINTER_HPP
  27 

  28 #include "memory/allocation.hpp"
  29 #include "gc_implementation/g1/heapRegion.hpp"
  30 
  31 #define SKIP_RETIRED_FULL_REGIONS 1
  32 
  33 class G1HRPrinter VALUE_OBJ_CLASS_SPEC {
  34 public:
  35   typedef enum {
  36     Alloc,
  37     AllocForce,
  38     Retire,
  39     Reuse,
  40     CSet,
  41     EvacFailure,
  42     Cleanup,
  43     PostCompaction,
  44     Commit,
  45     Uncommit
  46   } ActionType;
  47 
  48   typedef enum {
  49     Unset,


 162         print(StartGC, gc_num);
 163       } else {
 164         print(StartFullGC, gc_num);
 165       }
 166     }
 167   }
 168 
 169   void end_gc(bool full, size_t gc_num) {
 170     if (is_active()) {
 171       if (!full) {
 172         print(EndGC, gc_num);
 173       } else {
 174         print(EndFullGC, gc_num);
 175       }
 176     }
 177   }
 178 
 179   G1HRPrinter() : _active(false) { }
 180 };
 181 
 182 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1HRPRINTER_HPP
   1 /*
   2  * Copyright (c) 2011, 2015, 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_G1_G1HRPRINTER_HPP
  26 #define SHARE_VM_GC_G1_G1HRPRINTER_HPP
  27 
  28 #include "gc/g1/heapRegion.hpp"
  29 #include "memory/allocation.hpp"

  30 
  31 #define SKIP_RETIRED_FULL_REGIONS 1
  32 
  33 class G1HRPrinter VALUE_OBJ_CLASS_SPEC {
  34 public:
  35   typedef enum {
  36     Alloc,
  37     AllocForce,
  38     Retire,
  39     Reuse,
  40     CSet,
  41     EvacFailure,
  42     Cleanup,
  43     PostCompaction,
  44     Commit,
  45     Uncommit
  46   } ActionType;
  47 
  48   typedef enum {
  49     Unset,


 162         print(StartGC, gc_num);
 163       } else {
 164         print(StartFullGC, gc_num);
 165       }
 166     }
 167   }
 168 
 169   void end_gc(bool full, size_t gc_num) {
 170     if (is_active()) {
 171       if (!full) {
 172         print(EndGC, gc_num);
 173       } else {
 174         print(EndFullGC, gc_num);
 175       }
 176     }
 177   }
 178 
 179   G1HRPrinter() : _active(false) { }
 180 };
 181 
 182 #endif // SHARE_VM_GC_G1_G1HRPRINTER_HPP
< prev index next >