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 #include "precompiled.hpp"
  26 #include "gc/g1/g1HRPrinter.hpp"
  27 #include "gc/g1/heapRegion.hpp"
  28 #include "utilities/ostream.hpp"
  29 
  30 const char* G1HRPrinter::action_name(ActionType action) {
  31   switch(action) {
  32     case Alloc:          return "ALLOC";
  33     case AllocForce:     return "ALLOC-FORCE";
  34     case Retire:         return "RETIRE";
  35     case Reuse:          return "REUSE";
  36     case CSet:           return "CSET";
  37     case EvacFailure:    return "EVAC-FAILURE";
  38     case Cleanup:        return "CLEANUP";
  39     case PostCompaction: return "POST-COMPACTION";
  40     case Commit:         return "COMMIT";
  41     case Uncommit:       return "UNCOMMIT";
  42     default:             ShouldNotReachHere();
  43   }
  44   // trying to keep the Windows compiler happy
  45   return NULL;
  46 }
  47 
  48 const char* G1HRPrinter::region_type_name(RegionType type) {
  49   switch (type) {
  50     case Unset:              return NULL;
  51     case Eden:               return "Eden";
  52     case Survivor:           return "Survivor";
  53     case Old:                return "Old";
  54     case SingleHumongous:    return "SingleH";
  55     case StartsHumongous:    return "StartsH";
  56     case ContinuesHumongous: return "ContinuesH";
  57     case Archive:            return "Archive";
  58     default:                 ShouldNotReachHere();
  59   }
  60   // trying to keep the Windows compiler happy
  61   return NULL;
  62 }
  63 
  64 const char* G1HRPrinter::phase_name(PhaseType phase) {
  65   switch (phase) {
  66     case StartGC:     return "StartGC";
  67     case EndGC:       return "EndGC";
  68     case StartFullGC: return "StartFullGC";
  69     case EndFullGC:   return "EndFullGC";
  70     default:          ShouldNotReachHere();
  71   }
  72   // trying to keep the Windows compiler happy
  73   return NULL;
  74 }
  75 
  76 #define G1HR_PREFIX     " G1HR"
  77 
  78 void G1HRPrinter::print(ActionType action, RegionType type,
  79                         HeapRegion* hr, HeapWord* top) {
  80   const char* action_str = action_name(action);
  81   const char* type_str   = region_type_name(type);
  82   HeapWord* bottom = hr->bottom();
  83 
  84   if (type_str != NULL) {
  85     if (top != NULL) {
  86       gclog_or_tty->print_cr(G1HR_PREFIX " %s(%s) " PTR_FORMAT " " PTR_FORMAT,
  87                              action_str, type_str, p2i(bottom), p2i(top));
  88     } else {
  89       gclog_or_tty->print_cr(G1HR_PREFIX " %s(%s) " PTR_FORMAT,
  90                              action_str, type_str, p2i(bottom));
  91     }
  92   } else {
  93     if (top != NULL) {
  94       gclog_or_tty->print_cr(G1HR_PREFIX " %s " PTR_FORMAT " " PTR_FORMAT,
  95                              action_str, p2i(bottom), p2i(top));
  96     } else {
  97       gclog_or_tty->print_cr(G1HR_PREFIX " %s " PTR_FORMAT,
  98                              action_str, p2i(bottom));
  99     }
 100   }
 101 }
 102 
 103 void G1HRPrinter::print(ActionType action, HeapWord* bottom, HeapWord* end) {
 104   const char* action_str = action_name(action);
 105 
 106   gclog_or_tty->print_cr(G1HR_PREFIX " %s [" PTR_FORMAT "," PTR_FORMAT "]",
 107                          action_str, p2i(bottom), p2i(end));
 108 }
 109 
 110 void G1HRPrinter::print(PhaseType phase, size_t phase_num) {
 111   const char* phase_str = phase_name(phase);
 112   gclog_or_tty->print_cr(G1HR_PREFIX " #%s " SIZE_FORMAT, phase_str, phase_num);
 113 }