Uses of Class
org.objectweb.asm.tree.AbstractInsnNode
-
Packages that use AbstractInsnNode Package Description org.objectweb.asm.tree Provides an ASM visitor that constructs a tree representation of the classes it visits.org.objectweb.asm.tree.analysis Provides a framework for static code analysis based on the asm.tree package. -
-
Uses of AbstractInsnNode in org.objectweb.asm.tree
Subclasses of AbstractInsnNode in org.objectweb.asm.tree Modifier and Type Class Description classFieldInsnNodeA node that represents a field instruction.classFrameNodeA node that represents a stack map frame.classIincInsnNodeA node that represents an IINC instruction.classInsnNodeA node that represents a zero operand instruction.classIntInsnNodeA node that represents an instruction with a single int operand.classInvokeDynamicInsnNodeA node that represents an invokedynamic instruction.classJumpInsnNodeA node that represents a jump instruction.classLabelNodeAnAbstractInsnNodethat encapsulates aLabel.classLdcInsnNodeA node that represents an LDC instruction.classLineNumberNodeA node that represents a line number declaration.classLookupSwitchInsnNodeA node that represents a LOOKUPSWITCH instruction.classMethodInsnNodeA node that represents a method instruction.classMultiANewArrayInsnNodeA node that represents a MULTIANEWARRAY instruction.classTableSwitchInsnNodeA node that represents a TABLESWITCH instruction.classTypeInsnNodeA node that represents a type instruction.classVarInsnNodeA node that represents a local variable instruction.Methods in org.objectweb.asm.tree that return AbstractInsnNode Modifier and Type Method Description abstract AbstractInsnNodeAbstractInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)Returns a copy of this instruction.AbstractInsnNodeFieldInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeFrameNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeIincInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeIntInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeInvokeDynamicInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeJumpInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeLabelNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeLdcInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeLineNumberNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeLookupSwitchInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeMethodInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeMultiANewArrayInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeTableSwitchInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeTypeInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)AbstractInsnNodeVarInsnNode. clone(java.util.Map<LabelNode,LabelNode> labels)protected AbstractInsnNodeAbstractInsnNode. cloneAnnotations(AbstractInsnNode insn)Clones the annotations of the given instruction into this instruction.AbstractInsnNodeInsnList. get(int index)Returns the instruction whose index is given.AbstractInsnNodeInsnList. getFirst()Returns the first instruction in this list.AbstractInsnNodeInsnList. getLast()Returns the last instruction in this list.AbstractInsnNodeAbstractInsnNode. getNext()Returns the next instruction in the list to which this instruction belongs, if any.AbstractInsnNodeAbstractInsnNode. getPrevious()Returns the previous instruction in the list to which this instruction belongs, if any.AbstractInsnNode[]InsnList. toArray()Returns an array containing all of the instructions in this list.Methods in org.objectweb.asm.tree that return types with arguments of type AbstractInsnNode Modifier and Type Method Description java.util.ListIterator<AbstractInsnNode>InsnList. iterator()Returns an iterator over the instructions in this list.java.util.ListIterator<AbstractInsnNode>InsnList. iterator(int index)Returns an iterator over the instructions in this list.Methods in org.objectweb.asm.tree with parameters of type AbstractInsnNode Modifier and Type Method Description voidInsnList. add(AbstractInsnNode insn)Adds the given instruction to the end of this list.protected AbstractInsnNodeAbstractInsnNode. cloneAnnotations(AbstractInsnNode insn)Clones the annotations of the given instruction into this instruction.booleanInsnList. contains(AbstractInsnNode insn)Returns true if the given instruction belongs to this list.intInsnList. indexOf(AbstractInsnNode insn)Returns the index of the given instruction in this list.voidInsnList. insert(AbstractInsnNode insn)Inserts the given instruction at the begining of this list.voidInsnList. insert(AbstractInsnNode location, AbstractInsnNode insn)Inserts the given instruction after the specified instruction.voidInsnList. insert(AbstractInsnNode location, InsnList insns)Inserts the given instructions after the specified instruction.voidInsnList. insertBefore(AbstractInsnNode location, AbstractInsnNode insn)Inserts the given instruction before the specified instruction.voidInsnList. insertBefore(AbstractInsnNode location, InsnList insns)Inserts the given instructions before the specified instruction.voidInsnList. remove(AbstractInsnNode insn)Removes the given instruction from this list.voidInsnList. set(AbstractInsnNode location, AbstractInsnNode insn)Replaces an instruction of this list with another instruction. -
Uses of AbstractInsnNode in org.objectweb.asm.tree.analysis
Fields in org.objectweb.asm.tree.analysis declared as AbstractInsnNode Modifier and Type Field Description AbstractInsnNodeAnalyzerException. nodeFields in org.objectweb.asm.tree.analysis with type parameters of type AbstractInsnNode Modifier and Type Field Description java.util.Set<AbstractInsnNode>SourceValue. insnsThe instructions that can produce this value.Methods in org.objectweb.asm.tree.analysis with parameters of type AbstractInsnNode Modifier and Type Method Description BasicValueBasicInterpreter. binaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2)BasicValueBasicVerifier. binaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2)abstract VInterpreter. binaryOperation(AbstractInsnNode insn, V value1, V value2)Interprets a bytecode instruction with two arguments.SourceValueSourceInterpreter. binaryOperation(AbstractInsnNode insn, SourceValue value1, SourceValue value2)BasicValueBasicInterpreter. copyOperation(AbstractInsnNode insn, BasicValue value)BasicValueBasicVerifier. copyOperation(AbstractInsnNode insn, BasicValue value)abstract VInterpreter. copyOperation(AbstractInsnNode insn, V value)Interprets a bytecode instruction that moves a value on the stack or to or from local variables.SourceValueSourceInterpreter. copyOperation(AbstractInsnNode insn, SourceValue value)voidFrame. execute(AbstractInsnNode insn, Interpreter<V> interpreter)BasicValueBasicInterpreter. naryOperation(AbstractInsnNode insn, java.util.List<? extends BasicValue> values)BasicValueBasicVerifier. naryOperation(AbstractInsnNode insn, java.util.List<? extends BasicValue> values)abstract VInterpreter. naryOperation(AbstractInsnNode insn, java.util.List<? extends V> values)Interprets a bytecode instruction with a variable number of arguments.SourceValueSourceInterpreter. naryOperation(AbstractInsnNode insn, java.util.List<? extends SourceValue> values)BasicValueBasicInterpreter. newOperation(AbstractInsnNode insn)abstract VInterpreter. newOperation(AbstractInsnNode insn)Interprets a bytecode instruction without arguments.SourceValueSourceInterpreter. newOperation(AbstractInsnNode insn)voidBasicInterpreter. returnOperation(AbstractInsnNode insn, BasicValue value, BasicValue expected)voidBasicVerifier. returnOperation(AbstractInsnNode insn, BasicValue value, BasicValue expected)abstract voidInterpreter. returnOperation(AbstractInsnNode insn, V value, V expected)Interprets a bytecode return instruction.voidSourceInterpreter. returnOperation(AbstractInsnNode insn, SourceValue value, SourceValue expected)BasicValueBasicInterpreter. ternaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2, BasicValue value3)BasicValueBasicVerifier. ternaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2, BasicValue value3)abstract VInterpreter. ternaryOperation(AbstractInsnNode insn, V value1, V value2, V value3)Interprets a bytecode instruction with three arguments.SourceValueSourceInterpreter. ternaryOperation(AbstractInsnNode insn, SourceValue value1, SourceValue value2, SourceValue value3)BasicValueBasicInterpreter. unaryOperation(AbstractInsnNode insn, BasicValue value)BasicValueBasicVerifier. unaryOperation(AbstractInsnNode insn, BasicValue value)abstract VInterpreter. unaryOperation(AbstractInsnNode insn, V value)Interprets a bytecode instruction with a single argument.SourceValueSourceInterpreter. unaryOperation(AbstractInsnNode insn, SourceValue value)Constructors in org.objectweb.asm.tree.analysis with parameters of type AbstractInsnNode Constructor Description AnalyzerException(AbstractInsnNode node, java.lang.String msg)AnalyzerException(AbstractInsnNode node, java.lang.String msg, java.lang.Object expected, Value encountered)AnalyzerException(AbstractInsnNode node, java.lang.String msg, java.lang.Throwable exception)SourceValue(int size, AbstractInsnNode insn)Constructor parameters in org.objectweb.asm.tree.analysis with type arguments of type AbstractInsnNode Constructor Description SourceValue(int size, java.util.Set<AbstractInsnNode> insns)
-