comparison agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java @ 331:cecd8eb4e0ca

6706829: Compressed Oops: add debug info for narrow oops Summary: Add support for narrow oops in debug info to avoid decoding. Reviewed-by: rasbold, never
author kvn
date Wed, 10 Sep 2008 18:23:32 -0700
parents d1605aabd0a1
children 873ec3787992
comparison
equal deleted inserted replaced
330:1c6e3bfb543a 331:cecd8eb4e0ca
1133 buf.append(", "); 1133 buf.append(", ");
1134 if (type == Location.Type.NORMAL) { 1134 if (type == Location.Type.NORMAL) {
1135 buf.append("normal"); 1135 buf.append("normal");
1136 } else if (type == Location.Type.OOP) { 1136 } else if (type == Location.Type.OOP) {
1137 buf.append("oop"); 1137 buf.append("oop");
1138 } else if (type == Location.Type.NARROWOOP) {
1139 buf.append("narrowoop");
1138 } else if (type == Location.Type.INT_IN_LONG) { 1140 } else if (type == Location.Type.INT_IN_LONG) {
1139 buf.append("int"); 1141 buf.append("int");
1140 } else if (type == Location.Type.LNG) { 1142 } else if (type == Location.Type.LNG) {
1141 buf.append("long"); 1143 buf.append("long");
1142 } else if (type == Location.Type.FLOAT_IN_DBL) { 1144 } else if (type == Location.Type.FLOAT_IN_DBL) {