Uses of Class
org.objectweb.asm.tree.analysis.Frame
-
Packages that use Frame Package Description org.objectweb.asm.tree.analysis Provides a framework for static code analysis based on the asm.tree package. -
-
Uses of Frame in org.objectweb.asm.tree.analysis
Fields in org.objectweb.asm.tree.analysis declared as Frame Modifier and Type Field Description private Frame<V>[]Analyzer. framesThe execution stack frames of the currently analyzed method (one per instruction index).Methods in org.objectweb.asm.tree.analysis that return Frame Modifier and Type Method Description Frame<V>[]Analyzer. analyze(java.lang.String owner, MethodNode method)Analyzes the given method.private Frame<V>Analyzer. computeInitialFrame(java.lang.String owner, MethodNode method)Computes the initial execution stack frame of the given method.Frame<V>[]Analyzer. getFrames()Returns the symbolic execution stack frame for each instruction of the last analyzed method.Frame<V>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<V>Frame. init(Frame<? extends V> frame)Copies the state of the given frame into this frame.private voidAnalyzer. merge(int insnIndex, Frame<V> frameBeforeJsr, Frame<V> frameAfterRet, Subroutine subroutineBeforeJsr, boolean[] localsUsed)Merges the given frame and subroutine into the frame and subroutines at the given instruction index (case of a RET instruction).private voidAnalyzer. merge(int insnIndex, Frame<V> frame, Subroutine subroutine)Merges the given frame and subroutine into the frame and subroutines at the given instruction index.booleanFrame. merge(Frame<? extends V> frame, boolean[] localsUsed)Merges the given frame into this frame (case of a subroutine).booleanFrame. merge(Frame<? extends V> frame, Interpreter<V> interpreter)Merges the given frame into this frame.VInterpreter. newExceptionValue(TryCatchBlockNode tryCatchBlockNode, Frame<V> handlerFrame, 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 Constructor Description Frame(Frame<? extends V> frame)Constructs a copy of the given Frame.
-