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

Packages that use StackConsumer
Package
Description
Generic part of the Apache Byte Code Engineering Library (BCEL), classes to dynamically modify class objects and byte code instructions.
A PassVerifier class mostly used internally by JustIce, yielding a control flow graph for public use as a nice side effect.
  • Uses of StackConsumer in org.apache.bcel.generic

    Modifier and Type
    Interface
    Description
    interface 
    Denotes an unparameterized instruction to pop a value on top from the stack, such as ISTORE, POP, PUTSTATIC.
    Classes in org.apache.bcel.generic that implement StackConsumer
    Modifier and Type
    Class
    Description
    class 
    AASTORE - Store into reference array
    class 
    ANEWARRAY - Create new array of references
    class 
    ARETURN - Return reference from method
    class 
    Super class for the family of arithmetic instructions.
    class 
    ARRAYLENGTH - Get length of array
    class 
    ASTORE - Store reference into local variable
    class 
    ATHROW - Throw exception
    class 
    BASTORE - Store into byte or boolean array
    class 
    CASTORE - Store into char array
    class 
    CHECKCAST - Check whether object is of given type
    class 
    Super class for the x2y family of instructions.
    class 
    D2F - Convert double to float
    class 
    D2I - Convert double to int
    class 
    D2L - Convert double to long
    class 
    DADD - Add doubles
    class 
    DASTORE - Store into double array
    class 
    DCMPG - Compare doubles: value1 > value2
    class 
    DCMPL - Compare doubles: value1 < value2
    class 
    DDIV - Divide doubles
    class 
    DMUL - Multiply doubles
    class 
    DNEG - Negate double
    class 
    DREM - Remainder of doubles
    class 
    DRETURN - Return double from method
    class 
    DSTORE - Store double into local variable
    class 
    DSUB - Substract doubles
    class 
    F2D - Convert float to double
    class 
    F2I - Convert float to int
    class 
    F2L - Convert float to long
    class 
    FADD - Add floats
    class 
    FASTORE - Store into float array
    class 
    FCMPG - Compare floats: value1 > value2
    class 
    FCMPL - Compare floats: value1 < value2
    class 
    FDIV - Divide floats
    class 
    FMUL - Multiply floats
    class 
    FNEG - Negate float
    class 
    FREM - Remainder of floats
    class 
    FRETURN - Return float from method
    class 
    FSTORE - Store float into local variable
    class 
    FSUB - Substract floats
    class 
    GETFIELD - Fetch field from object
    class 
    I2B - Convert int to byte
    class 
    I2C - Convert int to char
    class 
    I2D - Convert int to double
    class 
    I2F - Convert int to float
    class 
    I2L - Convert int to long
    class 
    I2S - Convert int to short
    class 
    IADD - Add ints
    class 
    IAND - Bitwise AND int
    class 
    IASTORE - Store into int array
    class 
    IDIV - Divide ints
    class 
    IF_ACMPEQ - Branch if reference comparison succeeds
    class 
    IF_ACMPNE - Branch if reference comparison doesn't succeed
    class 
    IF_ICMPEQ - Branch if int comparison succeeds
    class 
    IF_ICMPGE - Branch if int comparison succeeds
    class 
    IF_ICMPGT - Branch if int comparison succeeds
    class 
    IF_ICMPLE - Branch if int comparison succeeds
    class 
    IF_ICMPLT - Branch if int comparison succeeds
    class 
    IF_ICMPNE - Branch if int comparison doesn't succeed
    class 
    IFEQ - Branch if int comparison with zero succeeds
    class 
    IFGE - Branch if int comparison with zero succeeds
    class 
    IFGT - Branch if int comparison with zero succeeds
    class 
    Super class for the IFxxx family of instructions.
    class 
    IFLE - Branch if int comparison with zero succeeds
    class 
    IFLT - Branch if int comparison with zero succeeds
    class 
    IFNE - Branch if int comparison with zero succeeds
    class 
    IFNONNULL - Branch if reference is not null
    class 
    IFNULL - Branch if reference is not null
    class 
    IMUL - Multiply ints
    class 
    INEG - Negate int
    class 
    INSTANCEOF - Determine if object is of given type
    class 
    Class for INVOKEDYNAMIC.
    class 
    Super class for the INVOKExxx family of instructions.
    final class 
    INVOKEINTERFACE - Invoke interface method
    class 
    INVOKESPECIAL - Invoke instance method; special handling for superclass, private and instance initialization method invocations
    class 
    INVOKESTATIC - Invoke a class (static) method
    class 
    INVOKEVIRTUAL - Invoke instance method; dispatch based on class
    class 
    IOR - Bitwise OR int
    class 
    IREM - Remainder of int
    class 
    IRETURN - Return int from method
    class 
    ISHL - Arithmetic shift left int
    class 
    ISHR - Arithmetic shift right int
    class 
    ISTORE - Store int from stack into local variable
    class 
    ISUB - Substract ints
    class 
    IUSHR - Logical shift right int
    class 
    IXOR - Bitwise XOR int
    class 
    L2D - Convert long to double
    class 
    L2F - Convert long to float
    class 
    L2I - Convert long to int
    class 
    LADD - Add longs
    class 
    LAND - Bitwise AND longs
    class 
    LASTORE - Store into long array
    class 
    LCMP - Compare longs:
    class 
    LDIV - Divide longs
    class 
    LMUL - Multiply longs
    class 
    LNEG - Negate long
    class 
    LOOKUPSWITCH - Switch with unordered set of values
    class 
    LOR - Bitwise OR long
    class 
    LREM - Remainder of long
    class 
    LRETURN - Return long from method
    class 
    LSHL - Arithmetic shift left long
    class 
    LSHR - Arithmetic shift right long
    class 
    LSTORE - Store long into local variable
    class 
    LSUB - Substract longs
    class 
    LUSHR - Logical shift right long
    class 
    LXOR - Bitwise XOR long
    class 
    MONITORENTER - Enter monitor for object
    class 
    MONITOREXIT - Exit monitor for object
    class 
    POP - Pop top operand stack word
    class 
    POP2 - Pop two top operand stack words
    class 
    PUTFIELD - Put field in object
    class 
    PUTSTATIC - Put static field in class
    class 
    RETURN - Return from void method
    class 
    Super class for the xRETURN family of instructions.
    class 
    SASTORE - Store into short array
    class 
    Select - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.
    class 
    Denotes an unparameterized instruction to store a value into a local variable, e.g.
    class 
    SWAP - Swa top operand stack word
    class 
    TABLESWITCH - Switch within given range of values, i.e., low..high
    Methods in org.apache.bcel.generic with parameters of type StackConsumer
    Modifier and Type
    Method
    Description
    void
     
    void
     
  • Uses of StackConsumer in org.apache.bcel.verifier.structurals

    Methods in org.apache.bcel.verifier.structurals with parameters of type StackConsumer
    Modifier and Type
    Method
    Description
    void
    InstConstraintVisitor.visitStackConsumer(StackConsumer o)
    Ensures the general preconditions of a StackConsumer instance.