| Package | Description |
|---|---|
| proguard.evaluation | |
| proguard.evaluation.value |
This package contains classes that represent partial evaluation values.
|
| proguard.optimize.evaluation |
This package contains visitors that perform partial evaluation and subsequent
optimizations on byte code.
|
| Modifier and Type | Field and Description |
|---|---|
protected ValueFactory |
ConstantValueFactory.valueFactory |
protected ValueFactory |
BasicInvocationUnit.valueFactory |
| Constructor and Description |
|---|
BasicInvocationUnit(ValueFactory valueFactory)
Creates a new BasicInvocationUnit with the given value factory.
|
ClassConstantValueFactory(ValueFactory valueFactory) |
ConstantValueFactory(ValueFactory valueFactory) |
Processor(Variables variables,
Stack stack,
ValueFactory valueFactory,
BranchUnit branchUnit,
InvocationUnit invocationUnit,
boolean alwaysCast)
Creates a new processor that operates on the given environment.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DetailedValueFactory
This identified value factory creates array reference values that also
represent their elements, in as far as possible.
|
class |
IdentifiedValueFactory
This particular value factory attaches a unique ID to any unknown values.
|
class |
ParticularValueFactory
This value factory creates particular values.
|
| Modifier and Type | Method and Description |
|---|---|
IntegerValue |
ReferenceValue.arrayLength(ValueFactory valueFactory)
Returns the length of the array, assuming this type is an array.
|
DoubleValue |
ReferenceValue.doubleArrayLoad(IntegerValue indexValue,
ValueFactory valueFactory)
Returns the value of the array at the given index, assuming this type
is an double array.
|
FloatValue |
ReferenceValue.floatArrayLoad(IntegerValue indexValue,
ValueFactory valueFactory)
Returns the value of the array at the given index, assuming this type
is an float array.
|
IntegerValue |
ReferenceValue.integerArrayLoad(IntegerValue indexValue,
ValueFactory valueFactory)
Returns the value of the array at the given index, assuming this type
is an integer array.
|
LongValue |
ReferenceValue.longArrayLoad(IntegerValue indexValue,
ValueFactory valueFactory)
Returns the value of the array at the given index, assuming this type
is an long array.
|
ReferenceValue |
TypedReferenceValue.referenceArrayLoad(IntegerValue indexValue,
ValueFactory valueFactory) |
abstract ReferenceValue |
ReferenceValue.referenceArrayLoad(IntegerValue indexValue,
ValueFactory valueFactory)
Returns the value of the array at the given index, assuming this type
is a reference array.
|
| Constructor and Description |
|---|
InitialValueFactory(ValueFactory valueFactory)
Creates a new InitialValueFactory.
|
| Constructor and Description |
|---|
LoadingInvocationUnit(ValueFactory valueFactory)
Creates a new LoadingInvocationUnit with the given value factory.
|
LoadingInvocationUnit(ValueFactory valueFactory,
boolean loadFieldValues,
boolean loadMethodParameterValues,
boolean loadMethodReturnValues)
Creates a new LoadingInvocationUnit with the given value factory, for
loading the specified values.
|
PartialEvaluator(ValueFactory valueFactory,
InvocationUnit invocationUnit,
boolean evaluateAllCode)
Creates a new PartialEvaluator.
|
StoringInvocationUnit(ValueFactory valueFactory)
Creates a new StoringInvocationUnit with the given value factory.
|
StoringInvocationUnit(ValueFactory valueFactory,
boolean storeFieldValues,
boolean storeMethodParameterValues,
boolean storeMethodReturnValues)
Creates a new StoringInvocationUnit with the given value factory, for
storing the specified values.
|
Copyright © 2015. All Rights Reserved.