Uses of Interface org.apache.bcel.generic.InstructionTargeter

Uses in package org.apache.bcel.generic

Classes implementing org.apache.bcel.generic.InstructionTargeter

class
Abstract super class for branching instructions like GOTO, IFEQ, etc..
class
This class represents an exception handler, i.e., specifies the region where a handler is active and an instruction where the actual handling is done.
class
Super class for GOTO
class
GOTO - Branch always (to relative offset, not absolute address)
class
GOTO_W - Branch always (to relative offset, not absolute address)
class
Super class for the IFxxx family of instructions.
class
IFEQ - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
class
IFGE - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
class
IFGT - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
class
IFLE - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
class
IFLT - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
class
IFNE - Branch if int comparison with zero succeeds
Stack: ..., value -> ...
class
IFNONNULL - Branch if reference is not null
Stack: ..., reference -> ...
class
IFNULL - Branch if reference is not null
Stack: ..., reference -> ...
class
IF_ACMPEQ - Branch if reference comparison succeeds
Stack: ..., value1, value2 -> ...
class
IF_ACMPNE - Branch if reference comparison doesn't succeed
Stack: ..., value1, value2 -> ...
class
IF_ICMPEQ - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
class
IF_ICMPGE - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
class
IF_ICMPGT - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
class
IF_ICMPLE - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
class
IF_ICMPLT - Branch if int comparison succeeds
Stack: ..., value1, value2 -> ...
class
IF_ICMPNE - Branch if int comparison doesn't succeed
Stack: ..., value1, value2 -> ...
class
Super class for JSR - Jump to subroutine
class
JSR - Jump to subroutine
class
JSR_W - Jump to subroutine
class
This class represents a line number within a method, i.e., give an instruction a line number corresponding to the source code line.
class
This class represents a local variable within a method.
class
LOOKUPSWITCH - Switch with unordered set of values
class
Select - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.
class
TABLESWITCH - Switch within given range of values, i.e., low..high

Methods with parameter type org.apache.bcel.generic.InstructionTargeter

void
Denote this handle is being referenced by t.
void
Denote this handle isn't referenced anymore by t.

Methods with return type org.apache.bcel.generic.InstructionTargeter

InstructionTargeter[]