src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/HSDB.java
changeset 52925 9c18c9d839d3
parent 50525 767cdb97f103
equal deleted inserted replaced
52924:420ff459906f 52925:9c18c9d839d3
    34 import sun.jvm.hotspot.compiler.*;
    34 import sun.jvm.hotspot.compiler.*;
    35 import sun.jvm.hotspot.debugger.*;
    35 import sun.jvm.hotspot.debugger.*;
    36 import sun.jvm.hotspot.gc.epsilon.*;
    36 import sun.jvm.hotspot.gc.epsilon.*;
    37 import sun.jvm.hotspot.gc.parallel.*;
    37 import sun.jvm.hotspot.gc.parallel.*;
    38 import sun.jvm.hotspot.gc.shared.*;
    38 import sun.jvm.hotspot.gc.shared.*;
       
    39 import sun.jvm.hotspot.gc.shenandoah.*;
    39 import sun.jvm.hotspot.gc.g1.*;
    40 import sun.jvm.hotspot.gc.g1.*;
    40 import sun.jvm.hotspot.gc.z.*;
    41 import sun.jvm.hotspot.gc.z.*;
    41 import sun.jvm.hotspot.interpreter.*;
    42 import sun.jvm.hotspot.interpreter.*;
    42 import sun.jvm.hotspot.memory.*;
    43 import sun.jvm.hotspot.memory.*;
    43 import sun.jvm.hotspot.oops.*;
    44 import sun.jvm.hotspot.oops.*;
  1111                             bad = false;
  1112                             bad = false;
  1112                           }
  1113                           }
  1113                         } else if (collHeap instanceof EpsilonHeap) {
  1114                         } else if (collHeap instanceof EpsilonHeap) {
  1114                           anno = "Epsilon ";
  1115                           anno = "Epsilon ";
  1115                           bad = false;
  1116                           bad = false;
       
  1117                         } else if (collHeap instanceof ShenandoahHeap) {
       
  1118                           ShenandoahHeap heap = (ShenandoahHeap) collHeap;
       
  1119                           anno = "ShenandoahHeap ";
       
  1120                           bad = false;
  1116                         } else if (collHeap instanceof ZCollectedHeap) {
  1121                         } else if (collHeap instanceof ZCollectedHeap) {
  1117                           ZCollectedHeap heap = (ZCollectedHeap) collHeap;
  1122                           ZCollectedHeap heap = (ZCollectedHeap) collHeap;
  1118                           anno = "ZHeap ";
  1123                           anno = "ZHeap ";
  1119                           bad = false;
  1124                           bad = false;
  1120                         } else {
  1125                         } else {