Searched refs:MethodData (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DDataLayout.java66 public DataLayout(MethodData d, int o) {
89 return (int)data.getCIntegerAt(offset + cellOffset(index), MethodData.cellSize, false);
134 return MethodData.cellSize;
141 return headerSizeInBytes() + cellCount * MethodData.cellSize;
191 return MethodData.cellSize + index * MethodData.cellSize;
H A DMultiBranchData.java95 return (perCaseCellCount) * MethodData.cellSize;
98 return (relativeCountOffSet) * MethodData.cellSize;
101 return (relativeDisplacementOffSet) * MethodData.cellSize;
H A DReceiverTypeData.java54 return counterCellCount + MethodData.TypeProfileWidth * receiverTypeRowCellCount;
63 return MethodData.TypeProfileWidth;
H A DRetData.java56 return counterCellCount + MethodData.BciProfileWidth * retRowCellCount;
64 return MethodData.BciProfileWidth;
H A DProfileData.java110 st.print("trap(" + MethodData.formatTrapState(trap) + ") ");
H A DMethodData.java34 // A MethodData provides interpreter profiling information
36 public class MethodData extends Oop { class in inherits:Oop
190 MethodData(OopHandle handle, ObjectHeap heap) { method in class:MethodData
215 tty.print("MethodData for " + m.getName().asString() + m.getSignature().asString());
311 Address value = base.getAddressAt(offset + i * MethodData.cellSize);
H A DMethod.java129 public MethodData getMethodData() { return (MethodData) methodData.getValue(this); }
H A DObjectHeap.java364 if (klass.equals(methodDataKlassHandle)) return new MethodData(handle, this);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DMethodData.java48 public class MethodData { class
52 public MethodData(int type, byte[] data) { method in class:MethodData
60 * Constructs a MethodData object.
65 public MethodData(DerValue encoding) throws Asn1Exception, IOException { method in class:MethodData
89 * Encodes an MethodData object.
90 * @return the byte array of encoded MethodData object.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciMethodData.java88 byte[] result = new byte[MethodData.sizeofMethodDataOopDesc];
89 for (int i = 0; i < MethodData.sizeofMethodDataOopDesc; i++) {
98 int elements = dataSize() / MethodData.cellSize;
101 Address value = base.getAddressAt(i * MethodData.cellSize);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java639 if (obj instanceof MethodData) {
640 Method m = ((MethodData)obj).getMethod();
641 out.println("MethodData " + obj.getHandle() + " for " +
645 ((MethodData)obj).printDataOn(out);
654 MethodData mdo = (MethodData)VM.getVM().getObjectHeap().newOop(handle);

Completed in 116 milliseconds