Uses of Class
org.eclipse.persistence.internal.libraries.asm.tree.analysis.Frame
-
Packages that use Frame Package Description org.eclipse.persistence.internal.libraries.asm.tree.analysis -
-
Uses of Frame in org.eclipse.persistence.internal.libraries.asm.tree.analysis
Methods in org.eclipse.persistence.internal.libraries.asm.tree.analysis that return Frame Modifier and Type Method Description Frame<V>[]Analyzer. analyze(String owner, MethodNode method)Analyzes the given method.Frame<V>[]Analyzer. analyzeAndComputeMaxs(String owner, 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<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.eclipse.persistence.internal.libraries.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.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.eclipse.persistence.internal.libraries.asm.tree.analysis with parameters of type Frame Constructor Description Frame(Frame<? extends V> frame)Constructs a copy of the given Frame.
-