trait ClassValues extends StringValues with FieldAccessesDomain with DynamicLoadsDomain with MethodCallsDomain
Enables the tracking of concrete Class values.
This class overrides invokestatic and only delegates to the default implementation
if it cannot successfully handle the call. Hence, this trait needs to be mixed in after
the trait that handles the default case but before all other traits that "just"
analyze invokestatic calls.
class MyDomain extends DefaultTypeLevelInvokeInstructions with ClassValues with <DOES ANAYLZE INVOKE CALLS>
- Self Type
- ClassValues with CorrelationalDomain with IntegerValuesDomain with TypedValuesFactory with Configuration
- Source
- ClassValues.scala
- Alphabetic
- By Inheritance
- ClassValues
- DynamicLoadsDomain
- FieldAccessesDomain
- StringValues
- PostEvaluationMemoryManagement
- CoreDomainFunctionality
- SubroutinesDomain
- MethodCallsDomain
- DefaultJavaObjectToDomainValueConversion
- AsDomainValue
- ReferenceValues
- Origin
- DefaultTypeLevelReferenceValues
- TypeLevelReferenceValues
- AsJavaObject
- GeneralizedArrayHandling
- ReferenceValuesDomain
- ReferenceValuesFactory
- ExceptionsFactory
- DefaultSpecialDomainValuesBinding
- ValuesDomain
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class IllegalValue extends Value with IsIllegalValue
Represents a value that has no well defined state/type.
Represents a value that has no well defined state/type. Such values are either the result of a join of two incompatible values or if the variable was identified as being dead.
IllegalValue's are only found in registers (in the locals).- Attributes
- protected
- Definition Classes
- ValuesDomain
- See also
org.opalj.ai.Domain.Value for further details.
- trait RETValue extends Value with IsReturnAddressValue
- Definition Classes
- ValuesDomain
- trait ReferenceValue extends TypedValue[ReferenceType] with IsReferenceValue
- Definition Classes
- ValuesDomain
- class ReturnAddressValue extends RETValue
Stores a single return address (i.e., a program counter/index into the code array).
Stores a single return address (i.e., a program counter/index into the code array).
- Definition Classes
- ValuesDomain
- Note
Though the framework completely handles all aspects related to return address values, it is nevertheless necessary that this class inherits from
Valueas return addresses are stored on the stack/in the registers. However, if theValuetrait should be refined, all additional methods may – from the point-of-view of OPAL-AI – just throw anUnsupportedOperationExceptionas these additional methods will never be called by the OPAL-AI.
- class ReturnAddressValues extends RETValue
A collection of (not further stored) return address values.
A collection of (not further stored) return address values. Primarily used when we join the executions of subroutines.
- Definition Classes
- ValuesDomain
- trait TypedValue[+T <: Type] extends Value with KnownTypedValue
- Definition Classes
- ValuesDomain
- trait Value extends ValueInformation
Abstracts over a concrete operand stack value or a value stored in one of the local variables/registers.
Abstracts over a concrete operand stack value or a value stored in one of the local variables/registers.
Use Of Value/Dependencies On Value
In general, subclasses and users of a
Domainshould not have/declare a direct dependency onValue. Instead they should useDomainValueas otherwise extensibility of aDomainmay be hampered or even be impossible. The only exceptions are, of course, classes that directly inherit from this class.Refining Value
If you directly extend/refine this trait (i.e., in a subclass of the
Domaintrait you write something liketrait Value extends super.Value), make sure that you also extend all classes/traits that inherit from this type (this may require a deep mixin composition and that you refine the typeDomainTypeaccordingly). However, OPAL was designed such that extending this class should – in general – not be necessary. It may also be easier to encode the desired semantics – as far as possible – as part of the domain.Implementing Value
Standard inheritance from this trait is always supported and is the primary mechanism to model an abstract domain's lattice w.r.t. some special type of value. In general, the implementation should try to avoid creating new instances of values unless strictly required to model the domain's semantics. This will greatly improve the overall performance as this framework heavily uses reference-based equality checks to speed up the evaluation.
- Definition Classes
- ValuesDomain
- Note
OPAL does not rely on any special equality semantics w.r.t. values and never directly or indirectly calls a
Value'sequalsmethod. Hence, a domain can encode equality such that it best fits its need. However, some of the provided domains rely on the following semantics for equals: Two domain values have to be equal (==) iff they represent the same information. This includes additional information, such as, the value of the origin. E.g., a value (AnIntegerValue) that represents an arbitraryIntegervalue has to returntrueif the domain value with which it is compared also represents an arbitraryIntegervalue (AnIntegerValue). However, it may still be necessary to use multiple objects to represent an arbitrary integer value if, e.g., constraints should be attached to specific values. For example, after a comparison of an integer value with a predefined value (e.g.,AnIntegerValue < 4) it is possible to constrain the respective value on the subsequent paths (< 4 on one path and >= 4 on the other path). To make that possible, it is however necessary to distinguish theAnIntegervaluefrom some otherAnIntegerValueto avoid constraining unrelated values.public void foo(int a,int b) { if(a < 4) { z = a - 2 // here a is constrained (< 4), b and z are unconstrained } else { z = a + 2 // here a is constrained (>= 4), b and z are unconstrained } }In general,
equalsis only defined for values belonging to the same domain. If values need to be compared across domains, they need to be adapted to a target domain first.
- class ANullValue extends (DefaultTypeLevelReferenceValues.this)#NullValueLike
- Attributes
- protected[this]
- Definition Classes
- DefaultTypeLevelReferenceValues
- trait AnArrayValue extends (DefaultTypeLevelReferenceValues.this)#ArrayValueLike with IsSArrayValue with (DefaultTypeLevelReferenceValues.this)#SReferenceValue[ArrayType]
- Attributes
- protected[this]
- Definition Classes
- DefaultTypeLevelReferenceValues
- trait AnObjectValue extends (DefaultTypeLevelReferenceValues.this)#ObjectValueLike
- Attributes
- protected
- Definition Classes
- DefaultTypeLevelReferenceValues
- trait MObjectValueLike extends (DefaultTypeLevelReferenceValues.this)#AnObjectValue with IsMObjectValue
- Attributes
- protected
- Definition Classes
- DefaultTypeLevelReferenceValues
- trait SObjectValueLike extends (DefaultTypeLevelReferenceValues.this)#AnObjectValue with (DefaultTypeLevelReferenceValues.this)#SReferenceValue[ClassType] with IsSObjectValue
- Attributes
- protected
- Definition Classes
- DefaultTypeLevelReferenceValues
- trait ArrayAbstraction extends AnyRef
- Definition Classes
- TypeLevelReferenceValues
- trait ArrayValueLike extends (TypeLevelReferenceValues.this)#ReferenceValueLike with IsSArrayValue
Represents an array value.
Represents an array value.
- Attributes
- protected[this]
- Definition Classes
- TypeLevelReferenceValues
- trait NullValueLike extends (TypeLevelReferenceValues.this)#ReferenceValueLike with IsNullValue
Represents the runtime value
null.Represents the runtime value
null. Null values are basically found in the following two cases:- The value
nullwas pushed onto the stack usingaconst_null. - A reference value that is not guaranteed to be non-null is tested against
nullusingifnullorifnonnulland we are now on the branch where the value has to benull.
Depending on the precision of the domain
nullvalues may also be returned by method calls or field reads.- Attributes
- protected
- Definition Classes
- TypeLevelReferenceValues
- The value
- trait ObjectValueLike extends (TypeLevelReferenceValues.this)#ReferenceValueLike
Represents a class/interface value which may have a single class and/or multiple interfaces as its upper type bound.
Represents a class/interface value which may have a single class and/or multiple interfaces as its upper type bound.
- Attributes
- protected[this]
- Definition Classes
- TypeLevelReferenceValues
- trait ReferenceValueLike extends (TypeLevelReferenceValues.this)#ReferenceValue with (TypeLevelReferenceValues.this)#ArrayAbstraction
Abstracts over all values with computational type
reference.Abstracts over all values with computational type
reference. I.e., abstracts over class and array values and also thenullvalue.- Definition Classes
- TypeLevelReferenceValues
- trait SReferenceValue[T <: ReferenceType] extends (TypeLevelReferenceValues.this)#ReferenceValueLike with IsSReferenceValue[T]
A reference value with a single (upper) type (bound).
A reference value with a single (upper) type (bound).
- Attributes
- protected[this]
- Definition Classes
- TypeLevelReferenceValues
- abstract type AReferenceValue <: (ClassValues.this)#TheReferenceValue with (ClassValues.this)#DomainReferenceValue
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues
- type ArrayLoadResult = Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValues]
Computation that returns the value stored in an array at a given index or an exception.
Computation that returns the value stored in an array at a given index or an exception. The exceptions that may be thrown are:
NullPointerExceptionandArrayIndexOutOfBoundsException.- Definition Classes
- ReferenceValuesDomain
- type ArrayStoreResult = Computation[Nothing, (ClassValues.this)#ExceptionValues]
Computation that succeeds (updates the value stored in the array at the given index) or that throws an exception.
Computation that succeeds (updates the value stored in the array at the given index) or that throws an exception. The exceptions that may be thrown are:
NullPointerException,ArrayIndexOutOfBoundsExceptionandArrayStoreException.- Definition Classes
- ReferenceValuesDomain
- trait ClassValue extends (ClassValues.this)#SObjectValue with IsClassValue
All values (
Class<...> c) that represent the same type (e.g.All values (
Class<...> c) that represent the same type (e.g.java.lang.String) are actually represented by the same class (object) value at runtime.- Attributes
- protected
- abstract type DomainArrayValue <: (ClassValues.this)#ArrayValue with (ClassValues.this)#DomainSingleOriginReferenceValue
- Definition Classes
- ReferenceValues → DefaultTypeLevelReferenceValues → TypeLevelReferenceValues
- abstract type DomainClassValue <: (ClassValues.this)#ClassValue with (ClassValues.this)#DomainObjectValue
- final type DomainIllegalValue = (ClassValues.this)#IllegalValue
Abstracts over the concrete type of
IllegalValue.Abstracts over the concrete type of
IllegalValue.This type needs to be refined whenever the class
IllegalValueis refined or the typeDomainValueis refined.- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- abstract type DomainMultipleReferenceValues <: (ClassValues.this)#MultipleReferenceValues with (ClassValues.this)#AReferenceValue
- Definition Classes
- ReferenceValues
- abstract type DomainNullValue <: (ClassValues.this)#NullValue with (ClassValues.this)#DomainSingleOriginReferenceValue
- Definition Classes
- ReferenceValues → DefaultTypeLevelReferenceValues → TypeLevelReferenceValues
- abstract type DomainObjectValue <: (ClassValues.this)#ObjectValue with (ClassValues.this)#DomainSingleOriginReferenceValue
- Definition Classes
- ReferenceValues → DefaultTypeLevelReferenceValues → TypeLevelReferenceValues
- abstract type DomainReferenceValue >: Null <: (ClassValues.this)#ReferenceValue with (ClassValues.this)#DomainTypedValue[ReferenceType]
- Definition Classes
- ValuesDomain
- final type DomainReturnAddressValue = (ClassValues.this)#ReturnAddressValue
Abstracts over the concrete type of
ReturnAddressValue.Abstracts over the concrete type of
ReturnAddressValue. Needs to be fixed by some sub-trait/sub-class. In the simplest case (i.e., when neither theValuetrait nor theReturnAddressValuetrait was refined) it is sufficient to write:type DomainReturnAddressValue = ReturnAddressValue- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- final type DomainReturnAddressValues = (ClassValues.this)#ReturnAddressValues
- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- abstract type DomainSingleOriginReferenceValue <: (ClassValues.this)#SingleOriginReferenceValue with (ClassValues.this)#AReferenceValue
- Definition Classes
- ReferenceValues
- abstract type DomainStringValue <: (ClassValues.this)#StringValue with (ClassValues.this)#DomainObjectValue
- Definition Classes
- StringValues
- final type DomainTypedValue[+T <: Type] = (ClassValues.this)#TypedValue[T]
- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- final type DomainValue = (ClassValues.this)#Value
Abstracts over the concrete type of
Value.Abstracts over the concrete type of
Value. Needs to be refined by traits that inherit fromDomainand which extendDomain'sValuetrait.- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- type ExceptionValue = (ClassValues.this)#DomainReferenceValue
A simple type alias of the type
DomainValue; used to facilitate comprehension.A simple type alias of the type
DomainValue; used to facilitate comprehension.- Definition Classes
- ValuesDomain
- type ExceptionValues = Iterable[(ClassValues.this)#ExceptionValue]
A type alias for
Iterables ofExceptionValues; used to facilitate comprehension.A type alias for
Iterables ofExceptionValues; used to facilitate comprehension.- Definition Classes
- ValuesDomain
- type Locals = collection.mutable.Locals[(ClassValues.this)#DomainValue]
An instruction's current register values/locals are represented using an array.
An instruction's current register values/locals are represented using an array.
- Definition Classes
- ValuesDomain
- type LocalsArray = Array[(ClassValues.this)#Locals]
- Definition Classes
- ValuesDomain
- type MethodCallResult = Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValues]
- Definition Classes
- MethodCallsDomain
- type Operands = List[(ClassValues.this)#DomainValue]
An instruction's operands are represented using a list where the first element of the list represents the top level operand stack value.
An instruction's operands are represented using a list where the first element of the list represents the top level operand stack value.
- Definition Classes
- ValuesDomain
- type OperandsArray = Array[(ClassValues.this)#Operands]
- Definition Classes
- ValuesDomain
- type RefId = Int
Two domain values that have the same refid are guaranteed to refer to the same object at runtime (must-alias).
Two domain values that have the same refid are guaranteed to refer to the same object at runtime (must-alias).
The refid enables us to distinguish two values created/returned by the same instruction but at a different point in time (recall, both values have the same origin). Such values may or may not be different; i.e., those values may or may not refer to the same object on the heap/stack.
RefIds are required to determine changes in the memory layout. I.e., to determine if two values created by the same instruction are aliases or "just" maybe aliases. This information is particularly relevant if two values - stored in registers - are no longer guaranteed to be aliases!
- Definition Classes
- ReferenceValues
- type Refinements = IdentityHashMap[(ClassValues.this)#AReferenceValue, (ClassValues.this)#AReferenceValue]
A map that contains the refined values (the map's values) of some old values (the map's keys).
A map that contains the refined values (the map's values) of some old values (the map's keys).
- Definition Classes
- ReferenceValues
- trait ArrayValue extends (ReferenceValues.this)#AnArrayValue with (ReferenceValues.this)#NonNullSingleOriginSReferenceValue[ArrayType]
- Attributes
- protected
- Definition Classes
- ReferenceValues
- trait MObjectValue extends (ReferenceValues.this)#MObjectValueLike with (ReferenceValues.this)#ObjectValue
- Attributes
- protected
- Definition Classes
- ReferenceValues
- class MultipleReferenceValues extends IsMultipleReferenceValue with (ReferenceValues.this)#TheReferenceValue with MultipleOriginsValue
A
MultipleReferenceValuestracks multiple reference values (of typeNullValue,ArrayValue,SObjectValueandMObjectValue) that have different origins.A
MultipleReferenceValuestracks multiple reference values (of typeNullValue,ArrayValue,SObjectValueandMObjectValue) that have different origins. I.e., per value origin one domain value is used to abstract over the properties of that respective value.- Attributes
- protected
- Definition Classes
- ReferenceValues
- trait NonNullSingleOriginReferenceValue extends (ReferenceValues.this)#SingleOriginReferenceValue
- Definition Classes
- ReferenceValues
- trait NonNullSingleOriginSReferenceValue[T <: ReferenceType] extends (ReferenceValues.this)#NonNullSingleOriginReferenceValue
- Definition Classes
- ReferenceValues
- class NullValue extends (ReferenceValues.this)#ANullValue with (ReferenceValues.this)#SingleOriginReferenceValue
- Attributes
- protected
- Definition Classes
- ReferenceValues
- trait ObjectValue extends (ReferenceValues.this)#AnObjectValue with (ReferenceValues.this)#NonNullSingleOriginReferenceValue
- Definition Classes
- ReferenceValues
- trait SObjectValue extends (ReferenceValues.this)#SObjectValueLike with (ReferenceValues.this)#NonNullSingleOriginSReferenceValue[ClassType] with (ReferenceValues.this)#ObjectValue
- Attributes
- protected
- Definition Classes
- ReferenceValues
- trait SingleOriginReferenceValue extends (ReferenceValues.this)#TheReferenceValue with SingleOriginValue with UID
Represents all
DomainReferenceValues that represent a reference value where – in the current analysis context – the value has a single origin.Represents all
DomainReferenceValues that represent a reference value where – in the current analysis context – the value has a single origin.- Definition Classes
- ReferenceValues
- Note
To make it possible to store
SingleOriginReferenceValues in UIDSets - which in particular provide fastfilterandtailmethods compared to the standard sets - the UID trait is implemented.
- trait TheReferenceValue extends (ReferenceValues.this)#ReferenceValueLike
Representation of some reference value; this includes
Object,ArrayandNullvalues.Representation of some reference value; this includes
Object,ArrayandNullvalues.This trait defines the additional methods needed for the refinement of the new properties.
- Definition Classes
- ReferenceValues
- trait StringValue extends (StringValues.this)#SObjectValue with IsStringValue
- Attributes
- protected
- Definition Classes
- StringValues
Abstract Value Members
- abstract val AReferenceValueTag: ClassTag[(ClassValues.this)#AReferenceValue]
- Definition Classes
- ReferenceValues
- abstract def ArithmeticException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
ArithmeticExceptionand that has the givenorigin.Creates a non-null object that represent a
ArithmeticExceptionand that has the givenorigin. If theArithmeticExceptionwas created by the VM while evaluating an instruction with the program counterpcyou use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def ArrayIndexOutOfBoundsException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
ArrayIndexOutOfBoundsExceptionand that has the givenorigin.Creates a non-null object that represent a
ArrayIndexOutOfBoundsExceptionand that has the givenorigin. If theArrayIndexOutOfBoundsExceptionwas created by the VM while evaluating an instruction with the program counterpcyou use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def ArrayStoreException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
ArrayStoreExceptionand that has the givenorigin.Creates a non-null object that represent a
ArrayStoreExceptionand that has the givenorigin. If theArrayStoreExceptionwas created by the VM while evaluating an instruction with the program counterpcyou use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def ArrayValue(pc: Int, isNull: Answer, isPrecise: Boolean, theUpperTypeBound: ArrayType, refId: Int): (ClassValues.this)#DomainArrayValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- abstract def ClassCastException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
ClassCastExceptionand that has the givenorigin.Creates a non-null object that represent a
ClassCastExceptionand that has the givenorigin. If theClassCastExceptionwas created by the VM while evaluating an instruction with the program counterpcyou use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def ClassNotFoundException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- abstract val DomainArrayValueTag: ClassTag[(ClassValues.this)#DomainArrayValue]
- Definition Classes
- ReferenceValues
- abstract val DomainClassValueTag: ClassTag[(ClassValues.this)#DomainClassValue]
- abstract val DomainMultipleReferenceValuesTag: ClassTag[(ClassValues.this)#DomainMultipleReferenceValues]
- Definition Classes
- ReferenceValues
- abstract val DomainNullValueTag: ClassTag[(ClassValues.this)#DomainNullValue]
- Definition Classes
- ReferenceValues
- abstract val DomainObjectValueTag: ClassTag[(ClassValues.this)#DomainObjectValue]
- Definition Classes
- ReferenceValues
- abstract val DomainReferenceValueTag: ClassTag[(ClassValues.this)#DomainReferenceValue]
The class tag can be used to create type safe arrays or to extract the concrete type of the domain value.
The class tag can be used to create type safe arrays or to extract the concrete type of the domain value.
val DomainReferenceValue(v) = value // of type "DomainValue" // v is now of the type DomainReferenceValue
- Definition Classes
- ValuesDomain
- abstract val DomainSingleOriginReferenceValueTag: ClassTag[(ClassValues.this)#DomainSingleOriginReferenceValue]
- Definition Classes
- ReferenceValues
- abstract val DomainStringValueTag: ClassTag[(ClassValues.this)#DomainStringValue]
- Definition Classes
- StringValues
- abstract def IllegalMonitorStateException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent an
IllegalMonitorStateExceptionand that has the givenorigin.Creates a non-null object that represent an
IllegalMonitorStateExceptionand that has the givenorigin. If theIllegalMonitorStateExceptionwas created by the VM while evaluating an instruction with the program counterpcyou should use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def MultipleReferenceValues(values: UIDSet[(ClassValues.this)#DomainSingleOriginReferenceValue], origins: ValueOrigins, isNull: Answer, isPrecise: Boolean, upperTypeBound: UIDSet[_ <: ReferenceType], refId: Int): (ClassValues.this)#DomainMultipleReferenceValues
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- abstract def MultipleReferenceValues(values: UIDSet[(ClassValues.this)#DomainSingleOriginReferenceValue]): (ClassValues.this)#DomainMultipleReferenceValues
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- abstract def NegativeArraySizeException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
NegativeArraySizeExceptionand that has the givenorigin.Creates a non-null object that represent a
NegativeArraySizeExceptionand that has the givenorigin. If theNegativeArraySizeExceptionwas created by the VM while evaluating an instruction with the program counterpcyou use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def NullPointerException(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
NullPointerExceptionand that has the givenorigin.Creates a non-null object that represent a
NullPointerExceptionand that has the givenorigin. If theNullPointerExceptionwas created by the VM while evaluating an instruction with the program counterpcyou should use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- abstract def NullValue(pc: Int): (ClassValues.this)#DomainNullValue
Factory method to create a
DomainValuethat represents valuenulland and that was created (explicitly or implicitly) by the instruction with the specified program counter.Factory method to create a
DomainValuethat represents valuenulland and that was created (explicitly or implicitly) by the instruction with the specified program counter.The domain may ignore the information about the value and the origin (
pc).Summary
The properties of the domain value are:
- Initialized: N/A
- Type: Null
- Null: Yes
- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesFactory
- abstract def ObjectValue(pc: Int, isNull: Answer, upperTypeBound: UIDSet[ClassType], refId: Int): (ClassValues.this)#DomainObjectValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- abstract def ObjectValue(pc: Int, isNull: Answer, isPrecise: Boolean, theUpperTypeBound: ClassType, refId: Int): (ClassValues.this)#DomainObjectValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- abstract def StringValue(origin: ValueOrigin, value: String, refId: (ClassValues.this)#RefId): (ClassValues.this)#DomainStringValue
- Definition Classes
- StringValues
- abstract def Throwable(origin: ValueOrigin): (ClassValues.this)#ExceptionValue
Creates a non-null object that represent a
Throwableobject and that has the givenorigin.Creates a non-null object that represent a
Throwableobject and that has the givenorigin. If theThrowablewas created by the VM while evaluating an instruction with the program counterpcyou should use the method ValueOriginForImmediateVMException to translate thatpcto the appropriate ValueOrigin.- Definition Classes
- ExceptionsFactory
- implicit abstract def classHierarchy: ClassHierarchy
This project's class hierarchy.
This project's class hierarchy.
Usually, just a redirect to the
Project's class hierarchy or the default class hierarchy.- Definition Classes
- ValuesDomain
- abstract def getfield(pc: Int, objectref: (ClassValues.this)#DomainValue, declaringClass: ClassType, name: String, fieldType: FieldType): Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValue]
Returns the field's value and/or a new
NullPointerExceptionif the givenobjectrefrepresents the valuenull.Returns the field's value and/or a new
NullPointerExceptionif the givenobjectrefrepresents the valuenull.- returns
The field's value or a new
NullPointerException.
- Definition Classes
- FieldAccessesDomain
- abstract def invokedynamic(pc: Int, bootstrapMethod: BootstrapMethod, name: String, methodDescriptor: MethodDescriptor, operands: (ClassValues.this)#Operands): (ClassValues.this)#MethodCallResult
- Definition Classes
- MethodCallsDomain
- abstract def invokeinterface(pc: Int, declaringClass: ClassType, name: String, methodDescriptor: MethodDescriptor, operands: (ClassValues.this)#Operands): (ClassValues.this)#MethodCallResult
- Definition Classes
- MethodCallsDomain
- abstract def invokevirtual(pc: Int, declaringClass: ReferenceType, name: String, methodDescriptor: MethodDescriptor, operands: (ClassValues.this)#Operands): (ClassValues.this)#MethodCallResult
- Definition Classes
- MethodCallsDomain
- abstract def putfield(pc: Int, objectref: (ClassValues.this)#DomainValue, value: (ClassValues.this)#DomainValue, declaringClass: ClassType, name: String, fieldType: FieldType): Computation[Nothing, (ClassValues.this)#ExceptionValue]
Sets the field's value if the given
objectrefis notnull(in the Domain).Sets the field's value if the given
objectrefis notnull(in the Domain). In the latter case aNullPointerExceptionis thrown.- Definition Classes
- FieldAccessesDomain
- abstract def putstatic(pc: Int, value: (ClassValues.this)#DomainValue, declaringClass: ClassType, name: String, fieldType: FieldType): Computation[Nothing, Nothing]
Sets the field's value.
Sets the field's value.
- Definition Classes
- FieldAccessesDomain
Concrete Value Members
- implicit object SingleOriginValueOrdering extends Ordering[SingleOriginValue]
- Definition Classes
- Origin
- object AnArrayValue
Enables matching of
DomainValues that are array values.Enables matching of
DomainValues that are array values.- Definition Classes
- DefaultTypeLevelReferenceValues
- object MObjectValueLike
- Definition Classes
- DefaultTypeLevelReferenceValues
- object SObjectValueLike
- Definition Classes
- DefaultTypeLevelReferenceValues
- object IsNull
- Definition Classes
- TypeLevelReferenceValues
- object IsPrecise
- Definition Classes
- TypeLevelReferenceValues
- object UpperTypeBound
- Definition Classes
- TypeLevelReferenceValues
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ArrayValue(pc: Int, arrayType: ArrayType): (ClassValues.this)#DomainArrayValue
Creates a new
DomainValuethat represents an array value with unknown values and where the specified type may also just be an upper type bound (unless the component type is a primitive type or an array of primitives.)Creates a new
DomainValuethat represents an array value with unknown values and where the specified type may also just be an upper type bound (unless the component type is a primitive type or an array of primitives.)Typical Usage
This factory method is (typically) used to create a domain value that represents an array if we know nothing specific about the array. E.g., if you want to analyze a method that takes an array as a parameter.
Summary
The properties of the value are:
- Type: Upper Bound (unless the elementType is a base type)
- Null: Unknown
- Size: Unknown
- Content: Unknown
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues
- Note
Java's arrays are co-variant. I.e.,
Object[] a = new Serializable[100];is valid.
- def ClassValue(pc: Int, t: Type): (ClassValues.this)#DomainObjectValue
Factory method to create a
DomainValuethat represents a runtime value of type "Class<T>" and that was created by the instruction with the specified program counter.Factory method to create a
DomainValuethat represents a runtime value of type "Class<T>" and that was created by the instruction with the specified program counter.This function is called by OPAL when a class constant (
LDC(_W)instruction) is put on the stack.The domain may ignore the information about the value and the origin (
vo).Summary
The properties of the domain value are:
- Initialized: Yes and the type represented by the class is the given type.
- Type: java.lang.Class<t:Type>
- Null: No
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesFactory
- final val DomainValueTag: ClassTag[(ClassValues.this)#DomainValue]
The class tag for the type
DomainValue.The class tag for the type
DomainValue.Required to generate instances of arrays in which values of type
DomainValuecan be stored in a type-safe manner.Initialization
In the sub-trait or class that fixes the type of
DomainValueit is necessary to implement this abstractvalusing:val DomainValueTag : ClassTag[DomainValue] = implicitly
(As of Scala 2.10 it is necessary that you do not use
implicitin the subclass - it will compile, but fail at runtime.)- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- def InitializedDomainValue(origin: ValueOrigin, vi: ValueInformation): (ClassValues.this)#DomainValue
Creates a domain value from the given value information that represents a properly domain value.
Creates a domain value from the given value information that represents a properly domain value. A representation of a proper value is created even if the value information is provided for an uninitialized value.
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ValuesDomain
- Note
This function is only defined for proper values, i.e., it is not defined for void values or illegal values.
,This method is intended to be overwritten by concrete domains which can represent more information.
- def InitializedObjectValue(pc: Int, classType: ClassType): (ClassValues.this)#DomainObjectValue
Factory method to create a
DomainValuethat represents an initialized reference value of the given type and that was created (explicitly or implicitly) by the instruction with the specified program counter.Factory method to create a
DomainValuethat represents an initialized reference value of the given type and that was created (explicitly or implicitly) by the instruction with the specified program counter.General Remarks
The given type usually identifies a class type (not an interface type) that is not abstract, but in some cases (e.g. consider
java.awt.Toolkit()) it may be useful/meaningful to relax this requirement and to state that the class precisely represents the runtime type – even so the class is abstract. However, such decisions need to be made by the domain.This method is used by the OPAL framework to create reference values that are normally internally created by the JVM (in particular exceptions such as
NullPointerExceptionandClassCastException). However, it can generally be used to create initialized objects/arrays.Summary
The properties of the domain value are:
- Initialized: Yes
- Type: precise (i.e., this type is not an upper bound, the type correctly models the runtime type.)
- Null: No (This value is not
null.)
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesFactory
- final val MetaInformationUpdateIllegalValue: MetaInformationUpdate[(ClassValues.this)#DomainIllegalValue]
The result of the merge of two incompatible values has to be reported as a
MetaInformationUpdate[DomainIllegalValue].The result of the merge of two incompatible values has to be reported as a
MetaInformationUpdate[DomainIllegalValue].- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- final def MethodExternalNullPointerException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- def MethodHandle(origin: ValueOrigin, handle: MethodHandle): (ClassValues.this)#DomainReferenceValue
Called by the AI framework for each load constant method handle (org.opalj.br.instructions.LoadMethodHandle) instruction to get a representation of/a DomainValue that represents the handle.
Called by the AI framework for each load constant method handle (org.opalj.br.instructions.LoadMethodHandle) instruction to get a representation of/a DomainValue that represents the handle.
- handle
A valid method handle.
- returns
An
InitializedObjectValue(ClassType.MethodHandle). Hence, this method needs to be overridden if resolution of MethodHandle based method calls should be performed.
- Definition Classes
- ReferenceValuesFactory
- def MethodType(origin: ValueOrigin, descriptor: MethodDescriptor): (ClassValues.this)#DomainReferenceValue
Called by the framework for each load constant method type (org.opalj.br.instructions.LoadMethodType) instruction to get a domain-specific representation of the method descriptor as a
MethodType.Called by the framework for each load constant method type (org.opalj.br.instructions.LoadMethodType) instruction to get a domain-specific representation of the method descriptor as a
MethodType.- descriptor
A valid method descriptor.
- returns
An
InitializedObjectValue(ClassType.MethodType). Hence, this method needs to be overridden if resolution of MethodType based method calls should be performed.
- Definition Classes
- ReferenceValuesFactory
- def NewArray(pc: Int, counts: (ClassValues.this)#Operands, arrayType: ArrayType): (ClassValues.this)#DomainArrayValue
Factory method to create a new domain value that represents a newly created array (non-null) with the size determined by count that is empty.
Factory method to create a new domain value that represents a newly created array (non-null) with the size determined by count that is empty.
Typical Usage
This factory method is (implicitly) used, e.g., by OPAL when a
multianewarrayinstruction is found.Summary
The properties of the value are:
- Type: Precise
- Null: No
- Size: Depending on the values in
counts - Content: Symbol("Empty")' (i.e., default values w.r.t. to the array's component type)
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues
- def NewArray(pc: Int, count: (ClassValues.this)#DomainValue, arrayType: ArrayType): (ClassValues.this)#DomainArrayValue
Factory method to create a new domain value that represents a newly created array (non-null) with the size determined by count that is empty.
Factory method to create a new domain value that represents a newly created array (non-null) with the size determined by count that is empty.
Typical Usage
This factory method is (implicitly) used, e.g., by OPAL when a
newarrayinstruction is found.Summary
The properties of the value are:
- Type: Precise
- Null: No
- Size: Count
- Content: Symbol("Empty")' (i.e., default values w.r.t. to the array's component type)
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues
- def NewObject(origin: ValueOrigin, classType: ClassType): (ClassValues.this)#DomainObjectValue
Creates a new
DomainValuethat represents a new, uninitialized instance of an object of the given type.Creates a new
DomainValuethat represents a new, uninitialized instance of an object of the given type. The object was created by the (NEW) instruction with the specified program counter.OPAL calls this method when it evaluates
newobjectinstructions. If the bytecode is valid a call of one of the (super) object's constructors will subsequently initialize the object.Summary
The properties of the domain value are:
- Initialized: no (only the memory is allocated for the object)
- Type: precise (i.e., this type is not an upper bound, the type correctly models the runtime type.)
- Null: no (This value is not
null.)
- Definition Classes
- StringValues → ReferenceValues → TypeLevelReferenceValues → ReferenceValuesFactory
- Note
Instances of arrays are created by the
newarrayandmultianewarrayinstructions and in both cases an exception may be thrown (e.g.,NegativeArraySizeException).
- def NonNullObjectValue(pc: Int, classType: ClassType): (ClassValues.this)#DomainObjectValue
Represents a non-null reference value with the given type as an upper type bound.
Represents a non-null reference value with the given type as an upper type bound.
The domain may ignore the information about the value and the origin (
vo).Summary
The properties of the domain value are:
- Initialized: Yes (the constructor was called)
- Type: Upper Bound
- Null: No (This value is not
null.)
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesFactory
- def ObjectValue(origin: ValueOrigin, isNull: Answer, isPrecise: Boolean, theUpperTypeBound: ClassType): (ClassValues.this)#DomainObjectValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- def ObjectValue(origin: ValueOrigin, isNull: Answer, upperTypeBound: UIDSet[ClassType]): (ClassValues.this)#DomainObjectValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- def ObjectValue(pc: Int, upperTypeBound: UIDSet[ClassType]): (ClassValues.this)#DomainObjectValue
Factory method to create a
DomainValuethat represents either an class-/interface value that has the given types as an upper bound or the valuenull.Factory method to create a
DomainValuethat represents either an class-/interface value that has the given types as an upper bound or the valuenull. However, the information whether the value isnullor not is not available. Furthermore, the type may also just be an upper bound and it is not known if the value is properly initialized.Summary
The properties of the domain value are:
- Initialized: Yes (An Object with multiple bounds can only exist due to a merge, in this case, the objects must have been initialized beforehand or the value is not used at all and actually represents a dead variable.)
- Type: Upper Bound
- Null: Unknown
- Content: Unknown
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues
- def ObjectValue(pc: Int, classType: ClassType): (ClassValues.this)#DomainObjectValue
Factory method to create a
DomainValuethat represents either an class-/interface value that has the given type or the valuenull.Factory method to create a
DomainValuethat represents either an class-/interface value that has the given type or the valuenull. However, the information whether the value isnullor not is not available. Furthermore, the type may also just be an upper bound and it is not known if the value is properly initialized.Summary
The properties of the domain value are:
- Initialized: Unknown
(I.e., it is not guaranteed that the constructor was called; unless
NewObjectwas overridden and returns DomainValues that are distinguishable!) - Type: Upper Bound
- Null: Unknown
- Content: Unknown
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues
- Initialized: Unknown
(I.e., it is not guaranteed that the constructor was called; unless
- final def RefIdUpdate[T](value: T): MetaInformationUpdate[T]
Creates an update object that characterizes a reference id update.
Creates an update object that characterizes a reference id update.
Basically, just a wrapper for a
MetaInformationUpdate; the purpose is to better communicate the underlying purpose.- Definition Classes
- ReferenceValues
- Annotations
- @inline()
- final def ReferenceValue(origin: ValueOrigin, isNull: Answer, isPrecise: Boolean, upperTypeBound: UIDSet[_ <: ReferenceType], refId: (ClassValues.this)#RefId): (ClassValues.this)#DomainSingleOriginReferenceValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- final def ReferenceValue(origin: ValueOrigin, isNull: Answer, isPrecise: Boolean, theUpperTypeBound: ReferenceType): (ClassValues.this)#DomainSingleOriginReferenceValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- def ReferenceValue(origin: ValueOrigin, isNull: Answer, isPrecise: Boolean, theUpperTypeBound: ReferenceType, refId: (ClassValues.this)#RefId): (ClassValues.this)#DomainSingleOriginReferenceValue
- Attributes
- protected[domain]
- Definition Classes
- ReferenceValues
- final def ReferenceValue(pc: Int, upperTypeBound: ReferenceType): (ClassValues.this)#AReferenceValue
Factory method to create a
DomainValuethat represents either a reference value that has the given type and is initialized or the valuenull.Factory method to create a
DomainValuethat represents either a reference value that has the given type and is initialized or the valuenull. However, the information whether the value isnullor not is not available. Furthermore, the type may also just be an upper bound.The domain may ignore the information about the value and the origin, but it has to remain possible for the domain to identify the component type of an array.
Summary
The properties of the domain value are:
- Initialized: Yes (if non-null the constructor was called/the array was initialized)
- Type: Upper Bound
- Null: Unknown
- Content: Unknown
- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesFactory
- final def ReturnAddressValue(address: Int): (ClassValues.this)#ReturnAddressValue
Factory method to create an instance of a
ReturnAddressValue.Factory method to create an instance of a
ReturnAddressValue.- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- final def StringValue(origin: ValueOrigin, value: String): (ClassValues.this)#DomainObjectValue
Factory method to create a
DomainValuethat represents the given string value and that was created by the instruction with the specified program counter.Factory method to create a
DomainValuethat represents the given string value and that was created by the instruction with the specified program counter.This function is called by OPAL-AI when a string constant (
LDC(_W)instruction) is put on the stack.The domain may ignore the information about the value and the origin (
vo).Summary
The properties of the domain value are:
- Initialized: Yes and the String's value is the given value. The string
may be empty (""), but it is never
null. - Type: java.lang.String
- Null: No
- value
A non-null string. (The string may be empty, though.)
- Definition Classes
- StringValues → ReferenceValues → TypeLevelReferenceValues → ReferenceValuesFactory
- Initialized: Yes and the String's value is the given value. The string
may be empty (""), but it is never
- final def StructuralUpdateIllegalValue: StructuralUpdate[Nothing]
The result of merging two values should never be reported as a
StructuralUpdateif the computed value is anIllegalValue.The result of merging two values should never be reported as a
StructuralUpdateif the computed value is anIllegalValue. The JVM semantics guarantee that the value will not be used and, hence, continuing the interpretation is meaningless.- Definition Classes
- ValuesDomain
- Note
This method is solely defined for documentation purposes and to catch implementation errors early on.
- final val TheIllegalValue: (ClassValues.this)#DomainIllegalValue
The singleton instance of the
IllegalValue.The singleton instance of the
IllegalValue.- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- final val TheReturnAddressValues: (ClassValues.this)#ReturnAddressValues
The singleton instance of
ReturnAddressValuesThe singleton instance of
ReturnAddressValues- Definition Classes
- DefaultSpecialDomainValuesBinding → ValuesDomain
- def UninitializedThis(classType: ClassType): (ClassValues.this)#DomainObjectValue
Creates a new
DomainValuethat represents thethisvalue of a constructor before the super constructor is called.Creates a new
DomainValuethat represents thethisvalue of a constructor before the super constructor is called. Hence, the value origin is necessarily always -1.OPAL calls this method when it creates the initial locals for constructors.
Summary
The properties of the domain value are:
- Initialized: no (only the memory is allocated for the object)
- Type: upper bound
- Null: no (This value is not
null.)
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesFactory
- Note
Instances of arrays are never uninitialized.
- final def VMArithmeticException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMArrayIndexOutOfBoundsException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMArrayStoreException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMClassCastException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMClassNotFoundException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMIllegalMonitorStateException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMNegativeArraySizeException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMNullPointerException(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- final def VMThrowable(pc: Int): (ClassValues.this)#ExceptionValue
- Definition Classes
- ExceptionsFactory
- def aaload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def aastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def abstractInterpretationEnded(aiResult: AIResult { val domain: ClassValues.this.type }): Unit
Called by the abstract interpreter when the abstract interpretation of a method has ended.
Called by the abstract interpreter when the abstract interpretation of a method has ended. The abstract interpretation of a method ends if either the fixpoint is reached or the interpretation was aborted.
By default this method does nothing.
Domains that override this method are expected to also call
super.abstractInterpretationEnded(aiResult).- Definition Classes
- CoreDomainFunctionality
- def afterBaseJoin(pc: Int): Unit
This method is called after all values which differ have been joined, but before
joinPostProcessingwill be called.This method is called after all values which differ have been joined, but before
joinPostProcessingwill be called.- Attributes
- protected[this]
- Definition Classes
- CoreDomainFunctionality
- def afterEvaluation(pc: Int, instruction: Instruction, oldOperands: (ClassValues.this)#Operands, oldLocals: (ClassValues.this)#Locals, targetPC: Int, isExceptionalControlFlow: Boolean, forceJoin: Boolean, newOperands: (ClassValues.this)#Operands, newLocals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
This methods is called after the evaluation of the instruction with the given
pcwith respect totargetPC, but before the values are propagated (joined) and before it is checked whether the interpretation needs to be continued.This methods is called after the evaluation of the instruction with the given
pcwith respect totargetPC, but before the values are propagated (joined) and before it is checked whether the interpretation needs to be continued. I.e., if the operands (newOperands) or locals (newLocals) are further refined then the refined operands and locals are joined (if necessary).- Definition Classes
- PostEvaluationMemoryManagement → CoreDomainFunctionality
- Note
During the evaluation of the instruction it is possible that this method is called multiple times with different
targetPCs. The latter is not only true for control flow instructions, but also for those instructions that may raise an exception. This method can and is intended to be overridden to further refine the operand stack/the locals. However, the overriding method should always forward the (possibly refined) operands and locals to thesupermethod (stackable traits).
- def arraylength(pc: Int, arrayref: (ClassValues.this)#DomainValue): Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValue]
Returns the array's length or throws a
NullPointerExceptionif the given reference isnull.Returns the array's length or throws a
NullPointerExceptionif the given reference isnull.- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesDomain
- Note
It is in general not necessary to override this method. If you need some special handling refine the trait
ArrayValue.
- def arrayload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
Loads the value stored in the array at the given index or throws an exception (
NullPointerExceptionorIndexOutOfBoundsException).Loads the value stored in the array at the given index or throws an exception (
NullPointerExceptionorIndexOutOfBoundsException).- Definition Classes
- TypeLevelReferenceValues → GeneralizedArrayHandling
- Note
It is in general not necessary to override this method. If you need some special handling refine the
loadmethod defined by the traitArrayValue.
- def arraystore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
Stores the given value in the array at the given index or throws an exception (
NullPointerException,ArrayStoreExceptionorIndexOutOfBoundsException).Stores the given value in the array at the given index or throws an exception (
NullPointerException,ArrayStoreExceptionorIndexOutOfBoundsException).- Definition Classes
- TypeLevelReferenceValues → GeneralizedArrayHandling
- Note
It is in general not necessary to override this method. If you need some special handling refine the
storemethod defined by the traitArrayValue.
- def asArrayAbstraction(value: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayAbstraction
- Definition Classes
- TypeLevelReferenceValues
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asObjectValue(value: (ClassValues.this)#DomainValue): (ClassValues.this)#DomainObjectValue
- Definition Classes
- TypeLevelReferenceValues
- def asReferenceValue(value: (ClassValues.this)#DomainValue): (ClassValues.this)#AReferenceValue
Returns the given value as a DomainReferenceValue.
Returns the given value as a DomainReferenceValue. Basically just performs a type cast and is intended to be used to communicate that the value has to be a reference value (if the underlying byte code is valid.)
- Definition Classes
- TypeLevelReferenceValues
- def baload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def bastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def beforeBaseJoin(pc: Int): Unit
This method is called immediately before a join operation with regard to the specified
pcis performed.This method is called immediately before a join operation with regard to the specified
pcis performed.- Attributes
- protected[this]
- Definition Classes
- CoreDomainFunctionality
- Note
This method is intended to be overwritten by clients to perform custom operations.
- def caload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def castore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def daload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def dastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def effectiveUTB(utb: UIDSet[_ <: ReferenceType]): UIDSet[_ <: ReferenceType]
Computes the effective upper-type bound which is the (single) final type in the utb if it contains one.
Computes the effective upper-type bound which is the (single) final type in the utb if it contains one. In this case the other types have to be in a super-/subtype relation and were added "just" as a result of explicit CHECKCAST instructions.
- Attributes
- protected
- Definition Classes
- ReferenceValues
- Note
This method is generally only useful when we have to handle incomplete type hierarchies.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def evaluationCompleted(pc: Int, worklist: List[Int], evaluatedPCs: IntArrayStack, operandsArray: (ClassValues.this)#OperandsArray, localsArray: (ClassValues.this)#LocalsArray, tracer: Option[AITracer]): Unit
Called by the framework after evaluating the instruction with the given pc.
Called by the framework after evaluating the instruction with the given pc. I.e., the state of all potential successor instructions was updated and the flow method was called – potentially multiple times – accordingly.
By default this method does nothing.
- Definition Classes
- CoreDomainFunctionality
- def faload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def fastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def flow(currentPC: Int, currentOperands: (ClassValues.this)#Operands, currentLocals: (ClassValues.this)#Locals, successorPC: Int, isSuccessorScheduled: Answer, isExceptionalControlFlow: Boolean, abruptSubroutineTerminationCount: Int, wasJoinPerformed: Boolean, worklist: List[Int], operandsArray: (ClassValues.this)#OperandsArray, localsArray: (ClassValues.this)#LocalsArray, tracer: Option[AITracer]): List[Int]
Called by the framework after performing a computation to inform the domain about the result.
Called by the framework after performing a computation to inform the domain about the result. That is, after evaluating the effect of the instruction with
currentPCon the current stack and register and (if necessary) joining the updated stack and registers with the stack and registers associated with the instructionsuccessorPC. (Hence, this method is ONLY called forreturninstructions if the return instruction throws anIllegalMonitorStateException.) This function basically informs the domain about the instruction that may be evaluated next. The flow function is called for every possible successor of the instruction withcurrentPC. This includes all branch targets as well as those instructions that handle exceptions.In some cases it will even be the case that
flowis called multiple times with the same pair of program counters: (currentPC,successorPC). This may happen, e.g., in case of a switch instruction where multiple values have the same body/target instruction and we do not have precise information about the switch value. E.g., as in the following snippet:switch (i) { // pc: X => Y (for "1"), Y (for "2"), Y (for "3") case 1: case 2: case 3: System.out.println("Great."); // pc: Y default: System.out.println("Not So Great."); // pc: Z }The flow function is also called after instructions that are domain independent such as
dupandloadinstructions which just manipulate the registers and stack in a generic way. This enables the domain to precisely follow the evaluation progress and in particular to perform control-flow dependent analyses.- currentPC
The program counter of the instruction that is currently evaluated by the abstract interpreter.
- currentOperands
The current operands. I.e., the operand stack before the instruction is evaluated.
- currentLocals
The current locals. I.e., the locals before the instruction is evaluated.
- successorPC
The program counter of an instruction that is a potential successor of the instruction with
currentPC. In general the AI framework adds the pc of the successor instruction to the beginning of the worklist unless it is a join instruction. In this case the pc is added to the end – in the context of the current (sub)routine. Hence, the AI framework first evaluates all paths leading to a join instruction before the join instruction will be evaluated.- isSuccessorScheduled
Yesif the successor instruction is or was scheduled. I.e.,Yesis returned if the worklist containssuccessorPC,Noif the worklist does not containsuccessorPC.Unknownis returned if the AI framework did not process the worklist and doesn't know anything about the scheduled successors. Note that this value is independent of the subroutine in which the value may be scheduled. If an implementation schedulessuccessorPCthe the super call has to setisSuccessorScheduledtoYes.- isExceptionalControlFlow
trueif and only if the evaluation of the instruction with the program countercurrentPCthrew an exception;falseotherwise. Hence, if this parameter istruethe instruction withsuccessorPCis the first instruction of the handler.- abruptSubroutineTerminationCount
> 0if and only if we have an exceptional control flow that terminates one or more subroutines. In this case the successor instruction is scheduled (if at all) after all subroutines that will be terminated by the exception.- wasJoinPerformed
trueif a join was performed. I.e., the successor instruction is an instruction (Code.cfJoins) that was already previously evaluated and where multiple paths potentially join.- worklist
The current list of instructions that will be evaluated next.
If subroutines are not used (i.e., Java >= 5)
If you want to force the evaluation of the instruction with the program counter
successorPCit is sufficient to test whether the list already containssuccessorPCand – if not – to prepend it. If the worklist already containssuccessorPCthen the domain is allowed to move the PC to the beginning of the worklist.If the code contains subroutines (JSR/RET)
If the PC does not belong to the same (current) (sub)routine, it is not allowed to be moved to the beginning of the worklist. (Subroutines can only be found in code generated by old Java compilers; before Java 6. Subroutines are identified by jsr/ret instructions. A subroutine can be identified by going back in the worklist and by looking for specific "program counters" (e.g., SUBROUTINE_START, SUBROUTINE_END). These program counters mark the beginning of a subroutine. In other words, an instruction can be freely moved around unless a special program counter value is found. All special program counters use negative values. Additionally, neither the negative values nor the positive values between two negative values should be changed. Furthermore, no value (PC) should be put between negative values that capture subroutine information. If the domain updates the worklist, it is the responsibility of the domain to call the tracer and to inform it about the changes. Note that the worklist is not allowed to contain duplicates related to the evaluation of the current (sub-)routine.
- operandsArray
The array that associates every instruction with its operand stack that is in effect. Note, that only those elements of the array contain values that are related to instructions that were evaluated in the past; the other elements are
null. Furthermore, it identifies theoperandsArrayof the subroutine that will execute the instruction withsuccessorPC. The operandsArray may benullfor the current instruction (not the successor instruction) if the execution of the current instruction leads to the termination of the current subroutine. In this case the information about the operands and locals associated with all instructions belonging to the subroutine is reset.- localsArray
The array that associates every instruction with its current register values. Note, that only those elements of the array contain values that are related to instructions that were evaluated in the past. The other elements are
null. Furthermore, it identifies thelocalsArrayof the subroutine that will execute the instruction withsuccessorPC. The localsArray may benullfor the current instruction (not the successor instruction) if the execution of the current instruction leads to the termination of the current subroutine. In this case the information about the operands and locals associated with all instructions belonging to the subroutine is reset.- returns
The updated worklist. In most cases this is simply the given
worklist. The default case is also to return the givenworklist.
- Definition Classes
- CoreDomainFunctionality
- Note
The domain is allowed to modify the
,worklist,operandsArrayandlocalsArray. However, the AI will not perform any checks. In case of updates of theoperandsArrayorlocalsArrayit is necessary to first create a shallow copy before updating it. If this is not done, it may happen that the locals associated with other instructions are also updated.A method that overrides this method must always call the super method to ensure that every domain that uses this hook gets informed about a flow.
- def foreachOrigin(value: (ClassValues.this)#DomainValue, f: (ValueOrigin) => Unit): Unit
Iterates over the origin(s) of the given value if the information is available.
Iterates over the origin(s) of the given value if the information is available.
- Definition Classes
- Origin
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def getstatic(pc: Int, declaringClass: ClassType, name: String, fieldType: FieldType): Computation[(ClassValues.this)#DomainValue, Nothing]
Returns the field's value.
Returns the field's value.
- Definition Classes
- ClassValues → FieldAccessesDomain
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def iaload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def iastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def invokespecial(pc: Int, declaringClass: ClassType, isInterface: Boolean, name: String, methodDescriptor: MethodDescriptor, operands: (ClassValues.this)#Operands): (ClassValues.this)#MethodCallResult
- Definition Classes
- StringValues → MethodCallsDomain
- def invokestatic(pc: Int, declaringClass: ClassType, isInterface: Boolean, name: String, methodDescriptor: MethodDescriptor, operands: (ClassValues.this)#Operands): (ClassValues.this)#MethodCallResult
- Definition Classes
- ClassValues → MethodCallsDomain
- final def isASubtypeOf(subtype: ReferenceType, supertype: ReferenceType): Answer
Tests if
subtypeis known to be subtype ofsupertype.Tests if
subtypeis known to be subtype ofsupertype. See org.opalj.br.ClassHierarchy'sisSubtypeOfmethod for details.- Definition Classes
- ValuesDomain
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNull(values: Iterable[(ClassValues.this)#AReferenceValue]): Answer
Determines the common null-ness property of the given reference values.
Determines the common null-ness property of the given reference values.
- Attributes
- protected
- Definition Classes
- ReferenceValues
- def isPrecise(values: Iterable[(ClassValues.this)#AReferenceValue]): Boolean
Determines if the runtime class type referred to by the given
valuesis always the same.Determines if the runtime class type referred to by the given
valuesis always the same. I.e., it determines if all values are precise and have the sameupperTypeBound.Nullvalues are ignored when determining the precision; i.e., if all values representNulltruewill be returned.- Attributes
- protected
- Definition Classes
- ReferenceValues
- final def isSubtypeOf(subtype: ReferenceType, supertype: ReferenceType): Boolean
Tests if
subtypeis known to be subtype ofsupertype.Tests if
subtypeis known to be subtype ofsupertype. See org.opalj.br.ClassHierarchy'sisSubtypeOfmethod for details.- Definition Classes
- ValuesDomain
- def isValueASubtypeOf(value: (ClassValues.this)#DomainValue, supertype: ReferenceType): Answer
Tries to determine – under the assumption that the given
valueis notnull– if the runtime type of the given reference value could be a subtype of the specified reference typesupertype.Tries to determine – under the assumption that the given
valueis notnull– if the runtime type of the given reference value could be a subtype of the specified reference typesupertype. I.e., if the type of the value is not precisely known, then all subtypes of thevalue's type are also taken into consideration when analyzing the subtype relation and only if we can guarantee that none is a subtype of the givensupertypethe answer will beNo.- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesDomain
- Note
The returned value is only meaningful if
valuedoes not represent the runtime valuenull.
- def join(pc: Int, thisOperands: (ClassValues.this)#Operands, thisLocals: (ClassValues.this)#Locals, otherOperands: (ClassValues.this)#Operands, otherLocals: (ClassValues.this)#Locals): Update[((ClassValues.this)#Operands, (ClassValues.this)#Locals)]
Joins the given operand stacks and local variables.
Joins the given operand stacks and local variables.
In general there should be no need to refine this method. Overriding this method should only be done for analysis purposes.
Performance
This method heavily relies on reference comparisons to speed up the overall process of performing an abstract interpretation of a method. Hence, a computation should – whenever possible – return (one of) the original object(s) if that value has the same abstract state as the result. Furthermore, if all original values capture the same abstract state as the result of the computation, the "left" value/the value that was already used in the past should be returned.
- returns
The joined operand stack and registers. Returns
NoUpdateif this memory layout already subsumes the other memory layout.
- Definition Classes
- CoreDomainFunctionality
- Note
The size of the operands stacks that are to be joined and the number of registers/locals that are to be joined can be expected to be identical under the assumption that the bytecode is valid and the framework contains no bugs.
,The operand stacks are guaranteed to contain compatible values w.r.t. the computational type (unless the bytecode is not valid or OPAL contains an error). I.e., if the result of joining two operand stack values is an
IllegalValuewe assume that the domain implementation is incorrect. However, the joining of two register values can result in an illegal value - which identifies the value as being dead.
- def joinPostProcessing(updateType: UpdateType, pc: Int, oldOperands: (ClassValues.this)#Operands, oldLocals: (ClassValues.this)#Locals, newOperands: (ClassValues.this)#Operands, newLocals: (ClassValues.this)#Locals): Update[((ClassValues.this)#Operands, (ClassValues.this)#Locals)]
Enables the customization of the behavior of the base join method.
Enables the customization of the behavior of the base join method.
This method in particular enables, in case of a MetaInformationUpdate, to raise the update type to force the continuation of the abstract interpretation process.
Methods should always
overridethis method and should call the super method.- updateType
The current update type. The level can be raised. It is an error to lower the update level.
- oldOperands
The old operands, before the join. Should not be changed.
- oldLocals
The old locals, before the join. Should not be changed.
- newOperands
The new operands; may be updated.
- newLocals
The new locals; may be updated.
- Attributes
- protected[this]
- Definition Classes
- CoreDomainFunctionality
- def joinValues(pc: Int, left: (ClassValues.this)#DomainValue, right: (ClassValues.this)#DomainValue): Update[(ClassValues.this)#DomainValue]
- Attributes
- protected[this]
- Definition Classes
- CoreDomainFunctionality
- def jumpToSubroutine(pc: Int, branchTarget: Int, returnTarget: Int): Unit
- pc
The pc of the jsr(w) instruction.
- Definition Classes
- SubroutinesDomain
- final def justThrows(value: (ClassValues.this)#ExceptionValue): ThrowsException[(ClassValues.this)#ExceptionValues]
- Definition Classes
- ReferenceValuesFactory
- def laload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def lastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def loadDynamic(pc: Int, bootstrapMethod: BootstrapMethod, name: String, descriptor: FieldType): Computation[(ClassValues.this)#DomainValue, Nothing]
Returns the dynamic constant's value.
Returns the dynamic constant's value.
- Definition Classes
- ClassValues → DynamicLoadsDomain
- def mergeDEComputations(pc: Int, c1: Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValue], c2: Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValue]): Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValue]
Merges two computations that both resulted in at most one
DomainValueor at most oneExceptionValue.Merges two computations that both resulted in at most one
DomainValueor at most oneExceptionValue.If values are merged the merged value will use the specified
pc.- Attributes
- protected[this]
- Definition Classes
- TypeLevelReferenceValues
- def mergeDEsComputations(pc: Int, c1: Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValues], c2: Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValues]): Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValues]
Merges two computations that both return some
DomainValueand someExceptionValues.Merges two computations that both return some
DomainValueand someExceptionValues. If values are merged the merged value will use the specifiedpc.- Attributes
- protected[this]
- Definition Classes
- TypeLevelReferenceValues
- def mergeDomainValues(pc: Int, v1: (ClassValues.this)#DomainValue, v2: (ClassValues.this)#DomainValue): (ClassValues.this)#DomainValue
Merges the given domain value
v1with the domain valuev2and returns the merged value which isv1ifv1is an abstraction ofv2,v2ifv2is an abstraction ofv1or some other value if a new value is computed that abstracts over both values.Merges the given domain value
v1with the domain valuev2and returns the merged value which isv1ifv1is an abstraction ofv2,v2ifv2is an abstraction ofv1or some other value if a new value is computed that abstracts over both values.This operation is commutative.
- Definition Classes
- ValuesDomain
- def mergeEsComputations(pc: Int, c1: Computation[Nothing, (ClassValues.this)#ExceptionValues], c2: Computation[Nothing, (ClassValues.this)#ExceptionValues]): Computation[Nothing, (ClassValues.this)#ExceptionValues]
Merges two computations that both resulted in at most one
ExceptionValueeach.Merges two computations that both resulted in at most one
ExceptionValueeach.If values are merged the merged value will use the specified
pc.- Attributes
- protected[this]
- Definition Classes
- TypeLevelReferenceValues
- def mergeMultipleExceptionValues(pc: Int, v1s: (ClassValues.this)#ExceptionValues, v2s: (ClassValues.this)#ExceptionValues): (ClassValues.this)#ExceptionValues
Merges those exceptions that have the same upper type bound.
Merges those exceptions that have the same upper type bound. This ensures that per upper type bound only one ValuesDomain.DomainValue (which may be a
MultipleReferenceValues) is used. For those values that are merged, the givenpcis used.- Definition Classes
- TypeLevelReferenceValues
- def multianewarray(pc: Int, counts: (ClassValues.this)#Operands, arrayType: ArrayType): Computation[(ClassValues.this)#DomainArrayValue, (ClassValues.this)#ExceptionValue]
Creates a multi-dimensional array.
Creates a multi-dimensional array.
- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesDomain
- Note
The componentType may be (again) an array type.
,It is generally not necessary to override this method as it handles all cases in a generic manner.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newarray(pc: Int, count: (ClassValues.this)#DomainValue, componentType: FieldType): Computation[(ClassValues.this)#DomainValue, (ClassValues.this)#ExceptionValue]
Creates a new array.
Creates a new array.
- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesDomain
- Note
It is generally not necessary to override this method as it handles all cases in a generic manner.
- def nextRefId(): (ClassValues.this)#RefId
Returns the next unused time stamp.
Returns the next unused time stamp.
- Definition Classes
- ReferenceValues
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def nullRefId: (ClassValues.this)#RefId
- Definition Classes
- ReferenceValues
- def origins(value: (ClassValues.this)#DomainValue): ValueOrigins
Returns the origin(s) of the given value if the information is available.
Returns the origin(s) of the given value if the information is available.
- Definition Classes
- Origin
- def originsIterator(value: (ClassValues.this)#DomainValue): ValueOriginsIterator
Returns the origin(s) of the given value if the information is available.
Returns the origin(s) of the given value if the information is available.
- returns
The source(s) of the given value if the information is available. Whether the information is available depends on the concrete domains. This trait only defines a general contract how to get access to a value's origin (I.e., the origin of the instruction which created the respective value.) By default this method returns an empty
Iterable.
- Definition Classes
- Origin
- def properties(pc: PC, propertyToString: (AnyRef) => String = p => p.toString): Option[String]
Returns a string representation of the properties associated with the instruction with the respective program counter.
Returns a string representation of the properties associated with the instruction with the respective program counter.
Associating properties with an instruction and maintaining those properties is, however, at the sole responsibility of the
Domain.This method is predefined to facilitate the development of support tools and is not used by the abstract interpretation framework.
Domains that define (additional) properties should (abstract)overridethis method and should return a textual representation of the property.- Definition Classes
- ValuesDomain
- def providesOriginInformationFor(ct: ComputationalType): Boolean
Implementers are expected to "override" this method and to call
super.providesOriginInformationForto make it possible to stack several domain implementations which provide origin information.Implementers are expected to "override" this method and to call
super.providesOriginInformationForto make it possible to stack several domain implementations which provide origin information.- Definition Classes
- ReferenceValues → Origin
- def refAreEqual(pc: Int, v1: (ClassValues.this)#DomainValue, v2: (ClassValues.this)#DomainValue): Answer
Returns
Yesif bothDomainReferenceValuesdefinitively identify the same object at runtime.Returns
Yesif bothDomainReferenceValuesdefinitively identify the same object at runtime.Using this domain, it is in general not possible to determine that two values are definitively not reference equal unless they are type incompatible.
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesDomain
- def refAreNotEqual(pc: Int, value1: (ClassValues.this)#DomainValue, value2: (ClassValues.this)#DomainValue): Answer
Compares the given values for reference inequality.
Compares the given values for reference inequality. Returns
Noif both values point to the same instance and returnsYesif both objects are known not to point to the same instance. The latter is, e.g., trivially the case when both values have a different concrete type. OtherwiseUnknownis returned.If both values are representing the
nullvalue the org.opalj.Answer isYes.- value1
A value of computational type reference.
- value2
A value of computational type reference.
- Definition Classes
- ReferenceValuesDomain
- def refEstablishAreEqual(pc: Int, value1: (ClassValues.this)#DomainValue, value2: (ClassValues.this)#DomainValue, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Called by OPAL when two values were compared for reference equality and we are going to analyze the branch where the comparison succeeded.
Called by OPAL when two values were compared for reference equality and we are going to analyze the branch where the comparison succeeded.
- Definition Classes
- ReferenceValuesDomain
- def refEstablishAreNotEqual(pc: Int, value1: (ClassValues.this)#DomainValue, value2: (ClassValues.this)#DomainValue, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Called by OPAL when two values were compared for reference equality and we are going to analyze the branch where the comparison failed.
Called by OPAL when two values were compared for reference equality and we are going to analyze the branch where the comparison failed.
- Definition Classes
- ReferenceValuesDomain
- def refEstablishIsNonNull(pc: Int, value: (ClassValues.this)#DomainValue, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Refines the "null"ness property (
isNull == No) of the given value.Refines the "null"ness property (
isNull == No) of the given value.Calls
refineIsNullon the givenReferenceValueand replaces every occurrence on the stack/in a register with the updated value.- value
A
ReferenceValuethat does not represent the valuenull.
- Definition Classes
- ReferenceValues → ReferenceValuesDomain
- def refEstablishIsNull(pc: Int, value: (ClassValues.this)#DomainValue, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Updates the "null"ness property (
isNull == Yes) of the given value.Updates the "null"ness property (
isNull == Yes) of the given value.Calls
refineIsNullon the givenReferenceValueand replaces every occurrence on the stack/in a register with the updated value.- value
A
ReferenceValue.
- Definition Classes
- ReferenceValues → ReferenceValuesDomain
- def refIsNonNull(pc: Int, value: (ClassValues.this)#DomainValue): Answer
Returns
Yesif given value is nevernull,Unknownif the values is maybenullandNootherwise.Returns
Yesif given value is nevernull,Unknownif the values is maybenullandNootherwise.- value
A value of computational type reference.
- Definition Classes
- ReferenceValuesDomain
- final def refIsNull(pc: Int, value: (ClassValues.this)#DomainValue): Answer
Determines the nullness-property of the given value.
Determines the nullness-property of the given value.
- value
A value of type
ReferenceValue.
- Definition Classes
- TypeLevelReferenceValues → ReferenceValuesDomain
- def refSetUpperTypeBoundOfTopOperand(pc: Int, bound: ReferenceType, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Called by the abstract interpreter when the type bound of the top most stack value needs to be refined.
Called by the abstract interpreter when the type bound of the top most stack value needs to be refined. This method is only called by the abstract interpreter iff an immediately preceding subtype query (typeOf(value) <: bound) returned
Unknown. This method must not be ignored – w.r.t. refining the top-most stack value; it is e.g., used by org.opalj.br.instructions.CHECKCAST instructions.A domain that is able to identify aliases can use this information to propagate the information to the other aliases.
- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesDomain
- def refTopOperandIsNull(pc: Int, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Sets the
is nullproperty of the top-most stack value toYes.Sets the
is nullproperty of the top-most stack value toYes. This method is called by the framework when the top-most operand stack value has to be null, but a previousisNullcheck returned Unknown. E.g., after a org.opalj.br.instructions.CHECKCAST that fails or if aInstanceOfcheck has succeeded.This method can be ignored; i.e., the return value can be
(operands,locals). However, a domain that tracks alias information can use this information to propagate the information to the other aliases.- Definition Classes
- ReferenceValues → TypeLevelReferenceValues → ReferenceValuesDomain
- def refineIsNull(pc: Int, value: (ClassValues.this)#DomainValue, isNull: Answer, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
- Attributes
- protected[this]
- Definition Classes
- ReferenceValues
- def returnFromSubroutine(pc: Int, lvIndex: Int): Unit
- pc
The pc of the ret instruction.
- Definition Classes
- SubroutinesDomain
- def saload(pc: Int, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayLoadResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def sastore(pc: Int, value: (ClassValues.this)#DomainValue, index: (ClassValues.this)#DomainValue, arrayref: (ClassValues.this)#DomainValue): (ClassValues.this)#ArrayStoreResult
- Definition Classes
- GeneralizedArrayHandling → ReferenceValuesDomain
- def schedule(successorPC: Int, abruptSubroutineTerminationCount: Int, worklist: List[Int]): List[Int]
This function can be called when the instruction
successorPCneeds to be scheduled.This function can be called when the instruction
successorPCneeds to be scheduled. The function will test if the instruction is already scheduled and – if so – returns the given worklist. Otherwise the instruction is scheduled in the correct (subroutine-)context.- Attributes
- protected[this]
- Definition Classes
- CoreDomainFunctionality
- def simpleClassForNameCall(pc: Int, className: String): (ClassValues.this)#MethodCallResult
- Attributes
- protected[l1]
- def summarize(pc: Int, values: Iterable[(ClassValues.this)#DomainValue]): (ClassValues.this)#DomainValue
Creates a summary of the given domain values by summarizing and joining the given
values.Creates a summary of the given domain values by summarizing and joining the given
values. For the precise details regarding the calculation of a summary seeValue.summarize(...).- pc
The program counter that will be used for the summary value if a new value is returned that abstracts over/summarizes the given values.
- values
An
Iterableover one or more values.
- Definition Classes
- ValuesDomain
- Note
The current algorithm is generic and should satisfy most needs, but it is not very efficient. However, it should be easy to tailor it for a specific domain/domain values, if need be.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def throws(value: (ClassValues.this)#ExceptionValue): ThrowsException[(ClassValues.this)#ExceptionValue]
- Definition Classes
- ReferenceValuesFactory
- def toDomainValue(pc: Int, value: AnyRef): (ClassValues.this)#DomainReferenceValue
Converts the given Java object to a corresponding
DomainValueby creating anDomainValuethat represents an initialized (array/object) value.Converts the given Java object to a corresponding
DomainValueby creating anDomainValuethat represents an initialized (array/object) value.- pc
The program counter of the instruction that was responsible for creating the respective value. (This is in – in general – not the instruction where the transformation is performed.)
- value
The object.
- returns
A
DomainReferenceValue.
- Definition Classes
- StringValues → DefaultJavaObjectToDomainValueConversion → AsDomainValue
- def toJavaObject(pc: Int, value: (ClassValues.this)#DomainValue): Option[AnyRef]
Converts – if possible – a given
DomainValueto a Java object that is appropriately initialized.Converts – if possible – a given
DomainValueto a Java object that is appropriately initialized.Implementation
Every domain that supports the creation of a Java object's based on a domain value is expected to implement this method and to test if it can create a precise representation of the given value. If not, the implementation has to delegate the responsibility to the super method to creat an abstract representation.
abstract override def toJavaObject(value : DomainValue): Option[Object] = { if(value...) // create and return Java object else super.toJavaObject(value) }
- returns
Some(Object) is returned if it was possible to create a compatible corresponding Java object; otherwise
Noneis returned. Default:Noneunless thevalueis null. In the latter caseSome(null)is returned.
- Definition Classes
- StringValues → ReferenceValues → TypeLevelReferenceValues → AsJavaObject
- Note
This operation is generally only possible if the domain value maintains enough state information to completely initialize the Java object.
- def toString(): String
- Definition Classes
- AnyRef → Any
- def updateAfterEvaluation(oldValue: (ClassValues.this)#DomainValue, newValue: (ClassValues.this)#DomainValue): Unit
- Attributes
- protected
- Definition Classes
- PostEvaluationMemoryManagement
- def updateAfterException(oldValue: (ClassValues.this)#DomainValue, newValue: (ClassValues.this)#DomainValue): Unit
- Attributes
- protected
- Definition Classes
- PostEvaluationMemoryManagement
- def updateAfterExecution(oldValue: (ClassValues.this)#DomainValue, newValueAfterEvaluation: (ClassValues.this)#DomainValue, newValueAfterException: (ClassValues.this)#DomainValue): Unit
- Attributes
- protected
- Definition Classes
- PostEvaluationMemoryManagement
- def updateMemoryLayout(oldValue: (ClassValues.this)#DomainValue, newValue: (ClassValues.this)#DomainValue, operands: (ClassValues.this)#Operands, locals: (ClassValues.this)#Locals): ((ClassValues.this)#Operands, (ClassValues.this)#Locals)
Replaces all occurrences of
oldValue(using reference-quality) withnewValue.Replaces all occurrences of
oldValue(using reference-quality) withnewValue. If no occurrences are found, the original operands and locals data structures are returned.- Definition Classes
- CoreDomainFunctionality
- def upperTypeBound(theValues: UIDSet[(ClassValues.this)#DomainSingleOriginReferenceValue]): UIDSet[_ <: ReferenceType]
Calculates the most specific common upper type bound of the upper type bounds of all values.
Calculates the most specific common upper type bound of the upper type bounds of all values.
NullValues are ignored unless all values are representingNull.- Definition Classes
- ReferenceValues
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object ClassValue
- implicit object DomainSingleOriginReferenceValueOrdering extends Ordering[(ReferenceValues.this)#DomainSingleOriginReferenceValue]
Defines a total order on reference values with a single origin by subtracting both origins.
Defines a total order on reference values with a single origin by subtracting both origins.
- Definition Classes
- ReferenceValues
- object MultipleReferenceValues
- Definition Classes
- ReferenceValues
- object StringValue
- Definition Classes
- StringValues
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
- Deprecated