Class BranchHandle
java.lang.Object
org.apache.bcel.generic.InstructionHandle
org.apache.bcel.generic.BranchHandle
BranchHandle is returned by specialized InstructionList.append() whenever a BranchInstruction is appended. This is
useful when the target of this instruction is not known at time of creation and must be set later via setTarget().
- See Also:
-
Field Summary
Fields inherited from class InstructionHandle
EMPTY_ARRAY, i_position -
Method Summary
Modifier and TypeMethodDescriptionintGets the position.Gets the target of instruction.voidSets new contents.voidPass new target to instruction.protected intupdatePosition(int offset, int maxOffset) Called by InstructionList.setPositions when setting the position for every instruction.voidupdateTarget(InstructionHandle oldIh, InstructionHandle newIh) Update target of instruction.Methods inherited from class InstructionHandle
accept, addAttribute, addHandle, addTargeter, getAttribute, getAttributes, getInstruction, getNext, getPrev, getTargeters, hasTargeters, removeAllTargeters, removeAttribute, removeTargeter, swapInstruction, toString, toString
-
Method Details
-
getPosition
Description copied from class:InstructionHandleGets the position.- Overrides:
getPositionin classInstructionHandle- Returns:
- the position, the byte code offset of the contained instruction. This is accurate only after InstructionList.setPositions() has been called.
-
getTarget
Gets the target of instruction.- Returns:
- target of instruction.
-
setInstruction
Sets new contents. Old instruction is disposed and may not be used anymore.- Overrides:
setInstructionin classInstructionHandle- Parameters:
i- the new instruction.
-
setTarget
Pass new target to instruction.- Parameters:
ih- the new target.
-
updatePosition
Description copied from class:InstructionHandleCalled by InstructionList.setPositions when setting the position for every instruction. In the presence of variable length instructions 'setPositions()' performs multiple passes over the instruction list to calculate the correct (byte) positions and offsets by calling this function.- Overrides:
updatePositionin classInstructionHandle- Parameters:
offset- additional offset caused by preceding (variable length) instructions.maxOffset- the maximum offset that may be caused by these instructions.- Returns:
- additional offset caused by possible change of this instruction's length.
-
updateTarget
Update target of instruction.- Parameters:
oldIh- the old instruction handle.newIh- the new instruction handle.
-