| Modifier and Type | Method and Description |
|---|---|
Frame<V>[] |
Analyzer.analyze(java.lang.String owner,
org.objectweb.asm.tree.MethodNode method)
Analyzes the given method.
|
BasicValue |
BasicVerifier.binaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value1,
BasicValue value2) |
BasicValue |
BasicInterpreter.binaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value1,
BasicValue value2) |
abstract V |
Interpreter.binaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
V value1,
V value2)
Interprets a bytecode instruction with two arguments.
|
BasicValue |
BasicVerifier.copyOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value) |
BasicValue |
BasicInterpreter.copyOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value) |
abstract V |
Interpreter.copyOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
V value)
Interprets a bytecode instruction that moves a value on the stack or to or from local
variables.
|
void |
Frame.execute(org.objectweb.asm.tree.AbstractInsnNode insn,
Interpreter<V> interpreter)
Simulates the execution of the given instruction on this execution stack frame.
|
protected BasicValue |
BasicVerifier.getElementValue(BasicValue objectArrayValue)
Returns the value corresponding to the type of the elements of the given array reference value.
|
protected BasicValue |
SimpleVerifier.getElementValue(BasicValue objectArrayValue) |
protected void |
Analyzer.init(java.lang.String owner,
org.objectweb.asm.tree.MethodNode method)
Initializes this analyzer.
|
boolean |
Frame.merge(Frame<? extends V> frame,
Interpreter<V> interpreter)
Merges the given frame into this frame.
|
BasicValue |
BasicVerifier.naryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
java.util.List<? extends BasicValue> values) |
BasicValue |
BasicInterpreter.naryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
java.util.List<? extends BasicValue> values) |
abstract V |
Interpreter.naryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
java.util.List<? extends V> values)
Interprets a bytecode instruction with a variable number of arguments.
|
abstract V |
Interpreter.newOperation(org.objectweb.asm.tree.AbstractInsnNode insn)
Interprets a bytecode instruction without arguments.
|
BasicValue |
BasicInterpreter.newOperation(org.objectweb.asm.tree.AbstractInsnNode insn) |
void |
BasicVerifier.returnOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value,
BasicValue expected) |
void |
BasicInterpreter.returnOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value,
BasicValue expected) |
abstract void |
Interpreter.returnOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
V value,
V expected)
Interprets a bytecode return instruction.
|
BasicValue |
BasicVerifier.ternaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value1,
BasicValue value2,
BasicValue value3) |
BasicValue |
BasicInterpreter.ternaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value1,
BasicValue value2,
BasicValue value3) |
abstract V |
Interpreter.ternaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
V value1,
V value2,
V value3)
Interprets a bytecode instruction with three arguments.
|
BasicValue |
BasicVerifier.unaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value) |
BasicValue |
BasicInterpreter.unaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
BasicValue value) |
abstract V |
Interpreter.unaryOperation(org.objectweb.asm.tree.AbstractInsnNode insn,
V value)
Interprets a bytecode instruction with a single argument.
|