< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/INVOKEVIRTUAL.java

Print this page

        

*** 19,61 **** * limitations under the License. */ package com.sun.org.apache.bcel.internal.generic; ! import com.sun.org.apache.bcel.internal.Constants; ! import com.sun.org.apache.bcel.internal.ExceptionConstants; /** * INVOKEVIRTUAL - Invoke instance method; dispatch based on class * * <PRE>Stack: ..., objectref, [arg1, [arg2 ...]] -&gt; ...</PRE> * ! * @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A> */ public class INVOKEVIRTUAL extends InvokeInstruction { /** * Empty constructor needed for the Class.newInstance() statement in * Instruction.readInstruction(). Not to be used otherwise. */ ! INVOKEVIRTUAL() {} ! ! public INVOKEVIRTUAL(int index) { ! super(Constants.INVOKEVIRTUAL, index); } - public Class[] getExceptions() { - Class[] cs = new Class[4 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length]; ! System.arraycopy(ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION, 0, ! cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length); ! cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+3] = ExceptionConstants.UNSATISFIED_LINK_ERROR; ! cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+2] = ExceptionConstants.ABSTRACT_METHOD_ERROR; ! cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+1] = ExceptionConstants.INCOMPATIBLE_CLASS_CHANGE_ERROR; ! cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] = ExceptionConstants.NULL_POINTER_EXCEPTION; ! return cs; } /** * Call corresponding visitor method(s). The order is: --- 19,76 ---- * limitations under the License. */ package com.sun.org.apache.bcel.internal.generic; ! import java.io.DataOutputStream; ! import java.io.IOException; ! ! import com.sun.org.apache.bcel.internal.Const; ! import com.sun.org.apache.bcel.internal.ExceptionConst; /** * INVOKEVIRTUAL - Invoke instance method; dispatch based on class * * <PRE>Stack: ..., objectref, [arg1, [arg2 ...]] -&gt; ...</PRE> * ! * @version $Id: INVOKEVIRTUAL.java 1747278 2016-06-07 17:28:43Z britter $ ! * @see ! * <a href="http://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.5.invokevirtual"> ! * The invokevirtual instruction in The Java Virtual Machine Specification</a> */ public class INVOKEVIRTUAL extends InvokeInstruction { + /** * Empty constructor needed for the Class.newInstance() statement in * Instruction.readInstruction(). Not to be used otherwise. */ ! INVOKEVIRTUAL() { } ! public INVOKEVIRTUAL(final int index) { ! super(Const.INVOKEVIRTUAL, index); ! } ! ! /** ! * Dump instruction as byte code to stream out. ! * @param out Output stream ! */ ! @Override ! public void dump( final DataOutputStream out ) throws IOException { ! out.writeByte(super.getOpcode()); ! out.writeShort(super.getIndex()); ! } ! @Override ! public Class<?>[] getExceptions() { ! return ExceptionConst.createExceptions(ExceptionConst.EXCS.EXCS_FIELD_AND_METHOD_RESOLUTION, ! ExceptionConst.NULL_POINTER_EXCEPTION, ! ExceptionConst.INCOMPATIBLE_CLASS_CHANGE_ERROR, ! ExceptionConst.ABSTRACT_METHOD_ERROR, ! ExceptionConst.UNSATISFIED_LINK_ERROR); } /** * Call corresponding visitor method(s). The order is:
*** 63,73 **** * call methods according to the class hierarchy in descending order, * i.e., the most specific visitXXX() call comes last. * * @param v Visitor object */ ! public void accept(Visitor v) { v.visitExceptionThrower(this); v.visitTypedInstruction(this); v.visitStackConsumer(this); v.visitStackProducer(this); v.visitLoadClass(this); --- 78,89 ---- * call methods according to the class hierarchy in descending order, * i.e., the most specific visitXXX() call comes last. * * @param v Visitor object */ ! @Override ! public void accept( final Visitor v ) { v.visitExceptionThrower(this); v.visitTypedInstruction(this); v.visitStackConsumer(this); v.visitStackProducer(this); v.visitLoadClass(this);
< prev index next >