Package org.apache.bcel.generic
Class SIPUSH
- java.lang.Object
-
- org.apache.bcel.generic.Instruction
-
- org.apache.bcel.generic.SIPUSH
-
- All Implemented Interfaces:
java.lang.Cloneable,ConstantPushInstruction,PushInstruction,StackProducer,TypedInstruction
public class SIPUSH extends Instruction implements ConstantPushInstruction
SIPUSH - Push shortStack: ... -> ..., value
-
-
Field Summary
Fields Modifier and Type Field Description private shortb-
Fields inherited from class org.apache.bcel.generic.Instruction
EMPTY_ARRAY, length, opcode
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)Call corresponding visitor method(s).voiddump(java.io.DataOutputStream out)Dumps instruction as short code to stream out.TypegetType(ConstantPoolGen cp)Gets the type associated with this instruction.java.lang.NumbergetValue()Gets the value to push onto the stack.protected voidinitFromFile(ByteSequence bytes, boolean wide)Reads needed data (for example index) from file.java.lang.StringtoString(boolean verbose)Long output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")"-
Methods inherited from class org.apache.bcel.generic.Instruction
consumeStack, copy, dispose, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, setLength, setOpcode, toString, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.bcel.generic.StackProducer
produceStack
-
-
-
-
Method Detail
-
accept
public void accept(Visitor v)
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
dump
public void dump(java.io.DataOutputStream out) throws java.io.IOExceptionDumps instruction as short code to stream out.- Overrides:
dumpin classInstruction- Parameters:
out- Output stream.- Throws:
java.io.IOException- Thrown when an I/O exception of some sort has occurred.
-
getType
public Type getType(ConstantPoolGen cp)
Description copied from interface:TypedInstructionGets the type associated with this instruction.- Specified by:
getTypein interfaceTypedInstruction- Parameters:
cp- the constant pool generator.- Returns:
- Type.SHORT.
-
getValue
public java.lang.Number getValue()
Description copied from interface:ConstantPushInstructionGets the value to push onto the stack.- Specified by:
getValuein interfaceConstantPushInstruction- Returns:
- the value to push onto the stack.
-
initFromFile
protected void initFromFile(ByteSequence bytes, boolean wide) throws java.io.IOException
Reads needed data (for example index) from file.- Overrides:
initFromFilein classInstruction- Parameters:
bytes- byte sequence to read from.wide- "wide" instruction flag.- Throws:
java.io.IOException- may be thrown if the implementation needs to read data from the file
-
toString
public java.lang.String toString(boolean verbose)
Description copied from class:InstructionLong output format: <name of opcode> "["<opcode number>"]" "("<length of instruction>")"- Overrides:
toStringin classInstruction- Parameters:
verbose- long/short format switch.- Returns:
- mnemonic for instruction.
-
-