Package | Description |
---|---|
org.objectweb.asm.tree.analysis |
Provides a framework for static code analysis based on the asm.tree package.
|
Modifier and Type | Field and Description |
---|---|
static BasicValue |
BasicValue.DOUBLE_VALUE
A double value.
|
static BasicValue |
BasicValue.FLOAT_VALUE
A float value.
|
static BasicValue |
BasicValue.INT_VALUE
A byte, boolean, char, short, or int value.
|
static BasicValue |
BasicValue.LONG_VALUE
A long value.
|
static BasicValue |
BasicValue.REFERENCE_VALUE
An object or array reference value.
|
static BasicValue |
BasicValue.RETURNADDRESS_VALUE
A return address value (produced by a jsr instruction).
|
static BasicValue |
BasicValue.UNINITIALIZED_VALUE
An uninitialized value.
|
Modifier and Type | Method and Description |
---|---|
BasicValue |
BasicVerifier.binaryOperation(AbstractInsnNode insn,
BasicValue value1,
BasicValue value2) |
BasicValue |
BasicInterpreter.binaryOperation(AbstractInsnNode insn,
BasicValue value1,
BasicValue value2) |
BasicValue |
BasicVerifier.copyOperation(AbstractInsnNode insn,
BasicValue value) |
BasicValue |
BasicInterpreter.copyOperation(AbstractInsnNode insn,
BasicValue value) |
protected BasicValue |
SimpleVerifier.getElementValue(BasicValue objectArrayValue) |
protected BasicValue |
BasicVerifier.getElementValue(BasicValue objectArrayValue)
Returns the value corresponding to the type of the elements of the given array reference value.
|
protected boolean |
SimpleVerifier.isArrayValue(BasicValue value) |
protected boolean |
BasicVerifier.isArrayValue(BasicValue value)
Returns whether the given value corresponds to an array reference.
|
protected boolean |
SimpleVerifier.isSubTypeOf(BasicValue value,
BasicValue expected) |
protected boolean |
BasicVerifier.isSubTypeOf(BasicValue value,
BasicValue expected)
Returns whether the type corresponding to the first argument is a subtype of the type
corresponding to the second argument.
|
BasicValue |
SimpleVerifier.merge(BasicValue value1,
BasicValue value2) |
BasicValue |
BasicInterpreter.merge(BasicValue value1,
BasicValue value2) |
void |
BasicVerifier.returnOperation(AbstractInsnNode insn,
BasicValue value,
BasicValue expected) |
void |
BasicInterpreter.returnOperation(AbstractInsnNode insn,
BasicValue value,
BasicValue expected) |
BasicValue |
BasicVerifier.ternaryOperation(AbstractInsnNode insn,
BasicValue value1,
BasicValue value2,
BasicValue value3) |
BasicValue |
BasicInterpreter.ternaryOperation(AbstractInsnNode insn,
BasicValue value1,
BasicValue value2,
BasicValue value3) |
BasicValue |
BasicVerifier.unaryOperation(AbstractInsnNode insn,
BasicValue value) |
BasicValue |
BasicInterpreter.unaryOperation(AbstractInsnNode insn,
BasicValue value) |
Modifier and Type | Method and Description |
---|---|
BasicValue |
BasicVerifier.naryOperation(AbstractInsnNode insn,
List<? extends BasicValue> values) |
BasicValue |
BasicInterpreter.naryOperation(AbstractInsnNode insn,
List<? extends BasicValue> values) |
Copyright © 2024. All rights reserved.