< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/g1/HeapRegion.java

Print this page
rev 52613 : webrev.01


 105     public boolean isFree() {
 106         return type.isFree();
 107     }
 108 
 109     public boolean isYoung() {
 110         return type.isYoung();
 111     }
 112 
 113     public boolean isHumongous() {
 114         return type.isHumongous();
 115     }
 116 
 117     public boolean isPinned() {
 118         return type.isPinned();
 119     }
 120 
 121     public boolean isOld() {
 122         return type.isOld();
 123     }
 124 




 125     public static long getPointerSize() {
 126         return pointerSize;
 127     }
 128 
 129     public void printOn(PrintStream tty) {
 130         tty.print("Region: " + bottom() + "," + top() + "," + end());
 131         tty.println(":" + type.typeAnnotation());
 132     }
 133 }


 105     public boolean isFree() {
 106         return type.isFree();
 107     }
 108 
 109     public boolean isYoung() {
 110         return type.isYoung();
 111     }
 112 
 113     public boolean isHumongous() {
 114         return type.isHumongous();
 115     }
 116 
 117     public boolean isPinned() {
 118         return type.isPinned();
 119     }
 120 
 121     public boolean isOld() {
 122         return type.isOld();
 123     }
 124 
 125     public boolean isPreMatureOld() {
 126         return type.isPreMatureOld();
 127     }
 128 
 129     public static long getPointerSize() {
 130         return pointerSize;
 131     }
 132 
 133     public void printOn(PrintStream tty) {
 134         tty.print("Region: " + bottom() + "," + top() + "," + end());
 135         tty.println(":" + type.typeAnnotation());
 136     }
 137 }
< prev index next >