Uses of Class
org.objectweb.asm.commons.JSRInlinerAdapter.Instantiation
-
Packages that use JSRInlinerAdapter.Instantiation Package Description org.objectweb.asm.commons Provides some useful class and method adapters. -
-
Uses of JSRInlinerAdapter.Instantiation in org.objectweb.asm.commons
Fields in org.objectweb.asm.commons declared as JSRInlinerAdapter.Instantiation Modifier and Type Field Description (package private) JSRInlinerAdapter.Instantiation
JSRInlinerAdapter.Instantiation. parent
The instantiation from which this one was created (or null for the instantiation of the main "subroutine").Methods in org.objectweb.asm.commons that return JSRInlinerAdapter.Instantiation Modifier and Type Method Description (package private) JSRInlinerAdapter.Instantiation
JSRInlinerAdapter.Instantiation. findOwner(int insnIndex)
Returns the "owner" of a particular instruction relative to this instantiation: the owner refers to the Instantiation which will emit the version of this instruction that we will execute.Methods in org.objectweb.asm.commons with parameters of type JSRInlinerAdapter.Instantiation Modifier and Type Method Description private void
JSRInlinerAdapter. emitInstantiation(JSRInlinerAdapter.Instantiation instantiation, java.util.List<JSRInlinerAdapter.Instantiation> worklist, InsnList newInstructions, java.util.List<TryCatchBlockNode> newTryCatchBlocks, java.util.List<LocalVariableNode> newLocalVariables)
Emits an instantiation of a subroutine, specified byinstantiation
.Method parameters in org.objectweb.asm.commons with type arguments of type JSRInlinerAdapter.Instantiation Modifier and Type Method Description private void
JSRInlinerAdapter. emitInstantiation(JSRInlinerAdapter.Instantiation instantiation, java.util.List<JSRInlinerAdapter.Instantiation> worklist, InsnList newInstructions, java.util.List<TryCatchBlockNode> newTryCatchBlocks, java.util.List<LocalVariableNode> newLocalVariables)
Emits an instantiation of a subroutine, specified byinstantiation
.Constructors in org.objectweb.asm.commons with parameters of type JSRInlinerAdapter.Instantiation Constructor Description Instantiation(JSRInlinerAdapter.Instantiation parent, java.util.BitSet subroutineInsns)
-