src/hotspot/share/gc/g1/g1HeapRegionTraceType.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 46810 hotspot/src/share/vm/gc/g1/g1HeapRegionTraceType.hpp@7dad333205cd
child 51495 89d2f870e92c
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36098
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     1
/*
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
     2
 * Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
36098
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     4
 *
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     8
 *
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    13
 * accompanied this code).
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    14
 *
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    18
 *
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    21
 * questions.
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    22
 *
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    23
 */
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    24
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1HEAPREGIONTRACETYPE_HPP
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    26
#define SHARE_VM_GC_G1_G1HEAPREGIONTRACETYPE_HPP
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    27
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    28
#include "memory/allocation.hpp"
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    29
#include "utilities/debug.hpp"
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    30
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    31
class G1HeapRegionTraceType : AllStatic {
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    32
 public:
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    33
  enum Type {
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    34
    Free,
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    35
    Eden,
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    36
    Survivor,
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    37
    StartsHumongous,
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    38
    ContinuesHumongous,
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    39
    Old,
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
    40
    Pinned,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
    41
    OpenArchive,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
    42
    ClosedArchive,
36098
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    43
    G1HeapRegionTypeEndSentinel
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    44
  };
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    45
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    46
  static const char* to_string(G1HeapRegionTraceType::Type type) {
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    47
    switch (type) {
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    48
      case Free:               return "Free";
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    49
      case Eden:               return "Eden";
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    50
      case Survivor:           return "Survivor";
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    51
      case StartsHumongous:    return "Starts Humongous";
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    52
      case ContinuesHumongous: return "Continues Humongous";
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    53
      case Old:                return "Old";
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
    54
      case Pinned:             return "Pinned";
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
    55
      case OpenArchive:        return "OpenArchive";
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 36098
diff changeset
    56
      case ClosedArchive:      return "ClosedArchive";
36098
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    57
      default: ShouldNotReachHere(); return NULL;
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    58
    }
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    59
  }
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    60
};
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    61
e056a98ac7ca 8149650: Create a trace event for G1 heap region type transitions
david
parents:
diff changeset
    62
#endif // SHARE_VM_GC_G1_G1HEAPREGIONTRACETYPE_HPP