Uses of Class
org.objectweb.asm.tree.analysis.Frame

  • Uses of Frame in org.objectweb.asm.tree.analysis

    Methods in org.objectweb.asm.tree.analysis that return Frame
    Modifier and Type
    Method
    Description
    Frame<V>[]
    Analyzer.analyze(String owner, org.objectweb.asm.tree.MethodNode method)
    Analyzes the given method.
    Frame<V>[]
    Analyzer.analyzeAndComputeMaxs(String owner, org.objectweb.asm.tree.MethodNode method)
    Analyzes the given method and computes and sets its maximum stack size and maximum number of local variables.
    Frame<V>[]
    Analyzer.getFrames()
    Returns the symbolic execution stack frame for each instruction of the last analyzed method.
    Frame.init(Frame<? extends V> frame)
    Copies the state of the given frame into this frame.
    protected Frame<V>
    Analyzer.newFrame(int numLocals, int numStack)
    Constructs a new frame with the given size.
    protected Frame<V>
    Analyzer.newFrame(Frame<? extends V> frame)
    Constructs a copy of the given frame.
    Methods in org.objectweb.asm.tree.analysis with parameters of type Frame
    Modifier and Type
    Method
    Description
    Frame.init(Frame<? extends V> frame)
    Copies the state of the given frame into this frame.
    boolean
    Frame.merge(Frame<? extends V> frame, boolean[] localsUsed)
    Merges the given frame into this frame (case of a subroutine).
    boolean
    Frame.merge(Frame<? extends V> frame, Interpreter<V> interpreter)
    Merges the given frame into this frame.
    Interpreter.newExceptionValue(org.objectweb.asm.tree.TryCatchBlockNode tryCatchBlockNode, Frame<V> handlerFrame, org.objectweb.asm.Type exceptionType)
    Creates a new value that represents the given exception type.
    protected Frame<V>
    Analyzer.newFrame(Frame<? extends V> frame)
    Constructs a copy of the given frame.
    Constructors in org.objectweb.asm.tree.analysis with parameters of type Frame
    Modifier
    Constructor
    Description
     
    Frame(Frame<? extends V> frame)
    Constructs a copy of the given Frame.