Uses of Class
org.eclipse.persistence.internal.libraries.asm.tree.analysis.BasicValue
-
Packages that use BasicValue Package Description org.eclipse.persistence.internal.libraries.asm.tree.analysis -
-
Uses of BasicValue in org.eclipse.persistence.internal.libraries.asm.tree.analysis
Fields in org.eclipse.persistence.internal.libraries.asm.tree.analysis declared as BasicValue Modifier and Type Field Description static BasicValueBasicValue. DOUBLE_VALUEA double value.static BasicValueBasicValue. FLOAT_VALUEA float value.static BasicValueBasicValue. INT_VALUEA byte, boolean, char, short, or int value.static BasicValueBasicValue. LONG_VALUEA long value.static BasicValueBasicValue. REFERENCE_VALUEAn object or array reference value.static BasicValueBasicValue. RETURNADDRESS_VALUEA return address value (produced by a jsr instruction).static BasicValueBasicValue. UNINITIALIZED_VALUEAn uninitialized value.Methods in org.eclipse.persistence.internal.libraries.asm.tree.analysis with parameters of type BasicValue Modifier and Type Method Description BasicValueBasicInterpreter. binaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2)BasicValueBasicVerifier. binaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2)BasicValueBasicInterpreter. copyOperation(AbstractInsnNode insn, BasicValue value)BasicValueBasicVerifier. copyOperation(AbstractInsnNode insn, BasicValue value)protected BasicValueBasicVerifier. getElementValue(BasicValue objectArrayValue)Returns the value corresponding to the type of the elements of the given array reference value.protected BasicValueSimpleVerifier. getElementValue(BasicValue objectArrayValue)protected booleanBasicVerifier. isArrayValue(BasicValue value)Returns whether the given value corresponds to an array reference.protected booleanSimpleVerifier. isArrayValue(BasicValue value)protected booleanBasicVerifier. 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.protected booleanSimpleVerifier. isSubTypeOf(BasicValue value, BasicValue expected)BasicValueBasicInterpreter. merge(BasicValue value1, BasicValue value2)BasicValueSimpleVerifier. merge(BasicValue value1, BasicValue value2)voidBasicInterpreter. returnOperation(AbstractInsnNode insn, BasicValue value, BasicValue expected)voidBasicVerifier. returnOperation(AbstractInsnNode insn, BasicValue value, BasicValue expected)BasicValueBasicInterpreter. ternaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2, BasicValue value3)BasicValueBasicVerifier. ternaryOperation(AbstractInsnNode insn, BasicValue value1, BasicValue value2, BasicValue value3)BasicValueBasicInterpreter. unaryOperation(AbstractInsnNode insn, BasicValue value)BasicValueBasicVerifier. unaryOperation(AbstractInsnNode insn, BasicValue value)Method parameters in org.eclipse.persistence.internal.libraries.asm.tree.analysis with type arguments of type BasicValue Modifier and Type Method Description BasicValueBasicInterpreter. naryOperation(AbstractInsnNode insn, List<? extends BasicValue> values)BasicValueBasicVerifier. naryOperation(AbstractInsnNode insn, List<? extends BasicValue> values)
-