hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/Method.java
changeset 10251 71b8938a2821
parent 8921 14bfe81f2a9d
child 10547 ea4a2ec31ae2
equal deleted inserted replaced
10250:0794cd144834 10251:71b8938a2821
   178       bytecode stream */
   178       bytecode stream */
   179   public short getBytecodeShortArg(int bci) {
   179   public short getBytecodeShortArg(int bci) {
   180     return getConstMethod().getBytecodeShortArg(bci);
   180     return getConstMethod().getBytecodeShortArg(bci);
   181   }
   181   }
   182 
   182 
       
   183   /** Fetches a 16-bit native ordered value from the
       
   184       bytecode stream */
       
   185   public short getNativeShortArg(int bci) {
       
   186     return getConstMethod().getNativeShortArg(bci);
       
   187   }
       
   188 
   183   /** Fetches a 32-bit big-endian ("Java ordered") value from the
   189   /** Fetches a 32-bit big-endian ("Java ordered") value from the
   184       bytecode stream */
   190       bytecode stream */
   185   public int getBytecodeIntArg(int bci) {
   191   public int getBytecodeIntArg(int bci) {
   186     return getConstMethod().getBytecodeIntArg(bci);
   192     return getConstMethod().getBytecodeIntArg(bci);
       
   193   }
       
   194 
       
   195   /** Fetches a 32-bit native ordered value from the
       
   196       bytecode stream */
       
   197   public int getNativeIntArg(int bci) {
       
   198     return getConstMethod().getNativeIntArg(bci);
   187   }
   199   }
   188 
   200 
   189   public byte[] getByteCode() {
   201   public byte[] getByteCode() {
   190     return getConstMethod().getByteCode();
   202     return getConstMethod().getByteCode();
   191   }
   203   }