agent/src/share/classes/sun/jvm/hotspot/oops/Method.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/agent/src/share/classes/sun/jvm/hotspot/oops/Method.java	Fri Jul  8 15:22:42 2011
--- new/agent/src/share/classes/sun/jvm/hotspot/oops/Method.java	Fri Jul  8 15:22:42 2011

*** 178,193 **** --- 178,205 ---- bytecode stream */ public short getBytecodeShortArg(int bci) { return getConstMethod().getBytecodeShortArg(bci); } + /** Fetches a 16-bit native ordered value from the + bytecode stream */ + public short getNativeShortArg(int bci) { + return getConstMethod().getNativeShortArg(bci); + } + /** Fetches a 32-bit big-endian ("Java ordered") value from the bytecode stream */ public int getBytecodeIntArg(int bci) { return getConstMethod().getBytecodeIntArg(bci); } + /** Fetches a 32-bit native ordered value from the + bytecode stream */ + public int getNativeIntArg(int bci) { + return getConstMethod().getNativeIntArg(bci); + } + public byte[] getByteCode() { return getConstMethod().getByteCode(); } /*

agent/src/share/classes/sun/jvm/hotspot/oops/Method.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File