Class SwitchForm
java.lang.Object
org.apache.commons.compress.harmony.unpack200.bytecode.forms.ByteCodeForm
org.apache.commons.compress.harmony.unpack200.bytecode.forms.VariableInstructionForm
org.apache.commons.compress.harmony.unpack200.bytecode.forms.SwitchForm
- Direct Known Subclasses:
LookupSwitchForm,TableSwitchForm
Switch instruction form.
-
Field Summary
Fields inherited from class org.apache.commons.compress.harmony.unpack200.bytecode.forms.ByteCodeForm
byteCodeArray, byteCodesByName, WIDENED -
Constructor Summary
ConstructorsConstructorDescriptionSwitchForm(int opcode, String name) Constructs a new instance with the specified opcode, name, operandType and rewrite. -
Method Summary
Modifier and TypeMethodDescriptionvoidfixUpByteCodeTargets(ByteCode byteCode, CodeAttribute codeAttribute) The ByteCodeForm knows how to fix up a bytecode if it needs to be fixed up because it holds a Label bytecode.Methods inherited from class org.apache.commons.compress.harmony.unpack200.bytecode.forms.VariableInstructionForm
setRewrite2Bytes, setRewrite4Bytes, setRewrite4BytesMethods inherited from class org.apache.commons.compress.harmony.unpack200.bytecode.forms.ByteCodeForm
calculateOperandPosition, firstOperandIndex, get, getName, getOpcode, getRewrite, getRewriteCopy, hasMultipleByteCodes, hasNoOperand, nestedMustStartClassPool, operandLength, setByteCodeOperands, toString
-
Constructor Details
-
SwitchForm
Constructs a new instance with the specified opcode, name, operandType and rewrite.- Parameters:
opcode- index corresponding to the opcode's value.name- String printable name of the opcode.
-
-
Method Details
-
fixUpByteCodeTargets
Description copied from class:ByteCodeFormThe ByteCodeForm knows how to fix up a bytecode if it needs to be fixed up because it holds a Label bytecode.- Overrides:
fixUpByteCodeTargetsin classByteCodeForm- Parameters:
byteCode- a ByteCode to be fixed upcodeAttribute- a CodeAttribute used to determine how the ByteCode should be fixed up.
-