proguard.evaluation.value.DetailedArrayReferenceValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proguard-core Show documentation
Show all versions of proguard-core Show documentation
ProGuardCORE is a free library to read, analyze, modify, and write Java class files.
/*
* ProGuardCORE -- library to process Java bytecode.
*
* Copyright (c) 2002-2021 Guardsquare NV
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package proguard.evaluation.value;
import org.jetbrains.annotations.NotNull;
import proguard.classfile.Clazz;
import proguard.classfile.util.ClassUtil;
import proguard.evaluation.exception.ArrayIndexOutOfBounds;
import proguard.evaluation.value.object.AnalyzedObject;
import proguard.evaluation.value.object.AnalyzedObjectFactory;
import proguard.util.ArrayUtil;
/**
* This {@link IdentifiedArrayReferenceValue} represents an identified array reference value with
* its elements.
*
* @author Eric Lafortune
*/
public class DetailedArrayReferenceValue extends IdentifiedArrayReferenceValue {
private static final int MAXIMUM_STORED_ARRAY_LENGTH = 64;
private Value[] values;
/** Creates a new array reference value with the given ID. */
public DetailedArrayReferenceValue(
String type,
Clazz referencedClass,
boolean mayBeExtension,
IntegerValue arrayLength,
ValueFactory valuefactory,
int id) {
super(type, referencedClass, mayBeExtension, arrayLength, valuefactory, id);
// Is the array short enough to analyze?
if (arrayLength.isParticular()
&& arrayLength.value() >= 0
&& arrayLength.value() <= MAXIMUM_STORED_ARRAY_LENGTH) {
// Initialize the values of the array.
InitialValueFactory initialValueFactory = new InitialValueFactory(valuefactory);
String elementType = ClassUtil.isInternalArrayType(type) ? type.substring(1) : type;
this.values = new Value[arrayLength.value()];
for (int index = 0; index < values.length; index++) {
values[index] = initialValueFactory.createValue(elementType);
}
} else {
// Just ignore the values of the array.
this.values = null;
}
}
/** Deprecated, use {@link DetailedArrayReferenceValue#getValue()}. */
@Override
@Deprecated
public Object value() {
return values;
}
@Override
public @NotNull AnalyzedObject getValue() {
return AnalyzedObjectFactory.createDetailedArray(values, type);
}
// Implementations for ReferenceValue.
public IntegerValue integerArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) {
Value value = arrayLoad(indexValue, valueFactory);
return value != null ? value.integerValue() : super.integerArrayLoad(indexValue, valueFactory);
}
public LongValue longArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) {
Value value = arrayLoad(indexValue, valueFactory);
return value != null ? value.longValue() : super.longArrayLoad(indexValue, valueFactory);
}
public FloatValue floatArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) {
Value value = arrayLoad(indexValue, valueFactory);
return value != null ? value.floatValue() : super.floatArrayLoad(indexValue, valueFactory);
}
public DoubleValue doubleArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) {
Value value = arrayLoad(indexValue, valueFactory);
return value != null ? value.doubleValue() : super.doubleArrayLoad(indexValue, valueFactory);
}
public ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) {
Value value = arrayLoad(indexValue, valueFactory);
return value != null
? value.referenceValue()
: super.referenceArrayLoad(indexValue, valueFactory);
}
/** Returns the specified untyped value from the given array, or null if it is unknown. */
private Value arrayLoad(IntegerValue indexValue, ValueFactory valueFactory) {
if (values != null && indexValue.isParticular()) {
int index = indexValue.value();
if (index < 0 || index >= values.length) {
throw new ArrayIndexOutOfBounds(index, values.length);
}
return values[index];
}
return null;
}
public void arrayStore(IntegerValue indexValue, Value value) {
super.arrayStore(indexValue, value);
if (values != null) {
if (indexValue.isParticular()) {
int index = indexValue.value();
if (index < 0 || index >= values.length) {
throw new ArrayIndexOutOfBounds(index, values.length);
}
values[index] = value;
} else {
for (int index = 0; index < values.length; index++) {
values[index].generalize(value);
}
}
}
}
// Implementations of binary methods of ReferenceValue.
public ReferenceValue generalize(ReferenceValue other) {
return other.generalize(this);
}
public int equal(ReferenceValue other) {
return other.equal(this);
}
// // Implementations of binary ReferenceValue methods with
// // UnknownReferenceValue arguments.
//
// public ReferenceValue generalize(UnknownReferenceValue other)
// {
// return other;
// }
//
//
// public int equal(UnknownReferenceValue other)
// {
// return MAYBE;
// }
//
//
// // Implementations of binary ReferenceValue methods with
// // TypedReferenceValue arguments.
//
// public ReferenceValue generalize(TypedReferenceValue other)
// {
// }
//
//
// public int equal(TypedReferenceValue other)
// {
// }
//
//
// // Implementations of binary ReferenceValue methods with
// // IdentifiedReferenceValue arguments.
//
// public ReferenceValue generalize(IdentifiedReferenceValue other)
// {
// return generalize((TypedReferenceValue)other);
// }
//
//
// public int equal(IdentifiedReferenceValue other)
// {
// return equal((TypedReferenceValue)other);
// }
//
//
// // Implementations of binary ReferenceValue methods with
// // ArrayReferenceValue arguments.
//
// public ReferenceValue generalize(ArrayReferenceValue other)
// {
// return generalize((TypedReferenceValue)other);
// }
//
//
// public int equal(ArrayReferenceValue other)
// {
// return equal((TypedReferenceValue)other);
// }
//
//
// // Implementations of binary ReferenceValue methods with
// // IdentifiedArrayReferenceValue arguments.
//
// public ReferenceValue generalize(IdentifiedArrayReferenceValue other)
// {
// return generalize((ArrayReferenceValue)other);
// }
//
//
// public int equal(IdentifiedArrayReferenceValue other)
// {
// return equal((ArrayReferenceValue)other);
// }
//
//
// // Implementations of binary ReferenceValue methods with
// // DetailedArrayReferenceValue arguments.
//
// public ReferenceValue generalize(DetailedArrayReferenceValue other)
// {
// return generalize((IdentifiedArrayReferenceValue)other);
// }
//
//
// public int equal(DetailedArrayReferenceValue other)
// {
// return equal((IdentifiedArrayReferenceValue)other);
// }
//
//
// // Implementations of binary ReferenceValue methods with
// // TracedReferenceValue arguments.
//
// public ReferenceValue generalize(TracedReferenceValue other)
// {
// return other.generalize(this);
// }
//
//
// public int equal(TracedReferenceValue other)
// {
// return other.equal(this);
// }
// Implementations for Value.
public boolean isParticular() {
if (values == null) {
return false;
}
for (int index = 0; index < values.length; index++) {
if (!values[index].isParticular()) {
return false;
}
}
return true;
}
/** Creates a deep copy of the DetailedArrayReferenceValue. */
@Override
public DetailedArrayReferenceValue copyIfMutable() {
DetailedArrayReferenceValue copy =
new DetailedArrayReferenceValue(
type, referencedClass, mayBeExtension, arrayLength, valuefactory, id);
if (values != null) {
copy.values = new Value[values.length];
for (int i = 0; i < values.length; i++) {
copy.values[i] = values[i].copyIfMutable();
}
}
return copy;
}
// Implementations for Object.
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!super.equals(object)) {
return false;
}
DetailedArrayReferenceValue other = (DetailedArrayReferenceValue) object;
return ArrayUtil.equalOrNull(this.values, other.values);
}
public int hashCode() {
return super.hashCode() ^ ArrayUtil.hashCodeOrNull(values);
}
public String toString() {
if (values == null) {
return super.toString();
}
StringBuffer buffer = new StringBuffer(super.toString());
buffer.append('{');
for (int index = 0; index < values.length; index++) {
buffer.append(values[index]);
buffer.append(index < values.length - 1 ? ',' : '}');
}
return buffer.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy