Class IINC
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.LocalVariableInstruction
org.apache.bcel.generic.IINC
- All Implemented Interfaces:
Cloneable, IndexedInstruction, TypedInstruction
IINC - Increment local variable by constant
-
Field Summary
Fields inherited from class LocalVariableInstruction
nFields inherited from class Instruction
length, opcode -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCalls corresponding visitor method(s).voiddump(DataOutputStream out) Dumps instruction as byte code to stream out.final intGets the increment factor.Gets the int type.protected voidinitFromFile(ByteSequence bytes, boolean wide) Reads needed data (for example index) from file.final voidsetIncrement(int c) Sets increment factor.final voidsetIndex(int n) Sets index of local variable.toString(boolean verbose) Returns mnemonic for instruction.Methods inherited from class LocalVariableInstruction
getCanonicalTag, getIndexMethods inherited from class Instruction
consumeStack, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toString, toString
-
Constructor Details
-
IINC
Constructs an IINC instruction.- Parameters:
n- index of local variable.c- increment factor.
-
-
Method Details
-
accept
Calls 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
Dumps instruction as byte code to stream out.- Overrides:
dumpin classLocalVariableInstruction- Parameters:
out- Output stream.- Throws:
IOException- Thrown when an I/O exception of some sort has occurred.
-
getIncrement
-
getType
Gets the int type.- Specified by:
getTypein interfaceTypedInstruction- Overrides:
getTypein classLocalVariableInstruction- Parameters:
cp- the constant pool generator.- Returns:
- int type.
-
initFromFile
Reads needed data (for example index) from file.- Overrides:
initFromFilein classLocalVariableInstruction- Parameters:
bytes- byte sequence to read from.wide- "wide" instruction flag.- Throws:
IOException- may be thrown if the implementation needs to read data from the file
-
setIncrement
-
setIndex
Sets index of local variable.- Specified by:
setIndexin interfaceIndexedInstruction- Overrides:
setIndexin classLocalVariableInstruction- Parameters:
n- the index.- See Also:
-
toString
Returns mnemonic for instruction.- Overrides:
toStringin classLocalVariableInstruction- Parameters:
verbose- long/short format switch.- Returns:
- mnemonic for instruction.
-