Class InvokeInstruction
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.CPInstruction
org.apache.bcel.generic.FieldOrMethod
org.apache.bcel.generic.InvokeInstruction
- All Implemented Interfaces:
Cloneable, ExceptionThrower, IndexedInstruction, LoadClass, StackConsumer, StackProducer, TypedInstruction
- Direct Known Subclasses:
INVOKEDYNAMIC, INVOKEINTERFACE, INVOKESPECIAL, INVOKESTATIC, INVOKEVIRTUAL
public abstract class InvokeInstruction
extends FieldOrMethod
implements ExceptionThrower, StackConsumer, StackProducer
Super class for the INVOKExxx family of instructions.
-
Field Summary
Fields inherited from class CPInstruction
indexFields inherited from class Instruction
length, opcode -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInvokeInstruction(short opcode, int index) Constructs an InvokeInstruction. -
Method Summary
Modifier and TypeMethodDescriptionintAlso works for instructions whose stack effect depends on the constant pool entry they reference.Type[]Gets the argument types of referenced method.This overrides the deprecated version as we know here that the referenced class may legally be an array.Gets the name of referenced method.Gets the return type of referenced method.getType(ConstantPoolGen cpg) Gets the return type of referenced method.intAlso works for instructions whose stack effect depends on the constant pool entry they reference.toString(ConstantPool cp) Gets the mnemonic for instruction with symbolic references resolved.Methods inherited from class FieldOrMethod
getClassType, getLoadClassType, getName, getReferenceType, getSignatureMethods inherited from class CPInstruction
dump, getIndex, initFromFile, setIndex, toStringMethods inherited from class Instruction
accept, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, readInstruction, setComparator, toStringMethods inherited from interface ExceptionThrower
getExceptions
-
Constructor Details
-
InvokeInstruction
Constructs an InvokeInstruction.- Parameters:
opcode- the opcode.index- to constant pool.
-
-
Method Details
-
consumeStack
Also works for instructions whose stack effect depends on the constant pool entry they reference.- Specified by:
consumeStackin interfaceStackConsumer- Overrides:
consumeStackin classInstruction- Parameters:
cpg- the constant pool generator.- Returns:
- Number of words consumed from stack by this instruction.
-
getArgumentTypes
Gets the argument types of referenced method.- Parameters:
cpg- the constant pool generator.- Returns:
- argument types of referenced method.
-
getClassName
This overrides the deprecated version as we know here that the referenced class may legally be an array.- Overrides:
getClassNamein classFieldOrMethod- Parameters:
cpg- the constant pool generator.- Returns:
- name of the referenced class/interface.
- Throws:
IllegalArgumentException- if the referenced class is an array (this should not happen)
-
getMethodName
Gets the name of referenced method.- Parameters:
cpg- the constant pool generator.- Returns:
- name of referenced method.
-
getReturnType
Gets the return type of referenced method.- Parameters:
cpg- the constant pool generator.- Returns:
- return type of referenced method.
-
getType
Gets the return type of referenced method.- Specified by:
getTypein interfaceLoadClass- Specified by:
getTypein interfaceTypedInstruction- Overrides:
getTypein classCPInstruction- Parameters:
cpg- the constant pool generator.- Returns:
- return type of referenced method.
- See Also:
-
produceStack
Also works for instructions whose stack effect depends on the constant pool entry they reference.- Specified by:
produceStackin interfaceStackProducer- Overrides:
produceStackin classInstruction- Parameters:
cpg- the constant pool generator.- Returns:
- Number of words produced onto stack by this instruction.
-
toString
Description copied from class:InstructionGets the mnemonic for instruction with symbolic references resolved.- Overrides:
toStringin classCPInstruction- Parameters:
cp- the constant pool.- Returns:
- mnemonic for instruction with symbolic references resolved.
-