Uses of Class
jellyj.classfile.classgen.BranchInstruction

Packages that use BranchInstruction
jellyj.classfile.classgen 

Uses of BranchInstruction in jellyj.classfile.classgen
 

Subclasses of BranchInstruction in jellyj.classfile.classgen
class GOTO
          GOTO - Branch always (offset, not address)
class GOTO_W
          GOTO_W - Branch always (offset, not address)
class IF_ACMPEQ
          IF_ACMPEQ - Branch if reference comparison succeeds Stack: ..., value1, value2 -> ...
class IF_ACMPNE
          IF_ACMPNE - Branch if reference comparison doesn't succeed Stack: ..., value1, value2 -> ...
class IF_ICMPEQ
          IF_ICMPEQ - Branch if int comparison succeeds Stack: ..., value1, value2 -> ...
class IF_ICMPGE
          IF_ICMPGE - Branch if int comparison succeeds Stack: ..., value1, value2 -> ...
class IF_ICMPGT
          IF_ICMPGT - Branch if int comparison succeeds Stack: ..., value1, value2 -> ...
class IF_ICMPLE
          IF_ICMPLE - Branch if int comparison succeeds Stack: ..., value1, value2 -> ...
class IF_ICMPLT
          IF_ICMPLT - Branch if int comparison succeeds Stack: ..., value1, value2 -> ...
class IF_ICMPNE
          IF_ICMPNE - Branch if int comparison doesn't succeed Stack: ..., value1, value2 -> ...
class IFEQ
          IFEQ - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...
class IFGE
          IFGE - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...
class IFGT
          IFGT - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...
class IFLE
          IFLE - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...
class IFLT
          IFLT - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...
class IFNE
          IFNE - Branch if int comparison with zero succeeds Stack: ..., value1, value2 -> ...
class IFNONNULL
          IFNONNULL - Branch if reference is not null Stack: ..., reference -> ...
class IFNULL
          IFNULL - Branch if reference is not null Stack: ..., reference -> ...
class JSR
          JSR - Jump to subroutine
class JSR_W
          JSR_W - Jump to subroutine
class Select
          Select - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.
 

Constructors in jellyj.classfile.classgen with parameters of type BranchInstruction
BranchHandle.BranchHandle(BranchInstruction i)
          
 

Methods in jellyj.classfile.classgen with parameters of type BranchInstruction
final BranchHandleInstructionList.append(BranchInstruction i)
          Append a branch instruction to the end of this list.
final BranchHandleInstructionList.insert(BranchInstruction i)
          Insert a branch instruction at start of this list.