blob: 594dfb6d034dfc7491c4b8b8ac4080250350f970 [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.naming.dexitembasedstring;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.graph.DexDefinitionSupplier;
import com.android.tools.r8.graph.DexField;
import com.android.tools.r8.graph.DexString;
import com.android.tools.r8.graph.lens.GraphLens;
import com.android.tools.r8.naming.NamingLens;
import com.android.tools.r8.utils.structural.CompareToVisitor;
import com.android.tools.r8.utils.structural.HashingVisitor;
public class FieldNameComputationInfo extends NameComputationInfo<DexField> {
private static final FieldNameComputationInfo FIELD_NAME_INSTANCE =
new FieldNameComputationInfo();
private FieldNameComputationInfo() {}
public static FieldNameComputationInfo forFieldName() {
return FIELD_NAME_INSTANCE;
}
@Override
public DexString internalComputeNameFor(
DexField field, DexDefinitionSupplier definitions, NamingLens namingLens) {
// Should be dead since needsToComputeName() returns false.
throw new Unreachable();
}
@Override
Order getOrder() {
return Order.FIELDNAME;
}
@Override
int internalAcceptCompareTo(NameComputationInfo<?> other, CompareToVisitor visitor) {
assert this == other;
return 0;
}
@Override
void internalAcceptHashing(HashingVisitor visitor) {
// Nothing to hash.
}
@Override
public boolean needsToComputeName() {
return false;
}
@Override
public boolean needsToRegisterReference() {
return false;
}
@Override
public boolean isFieldNameComputationInfo() {
return true;
}
@Override
public FieldNameComputationInfo asFieldNameComputationInfo() {
return this;
}
@Override
public NameComputationInfo<DexField> rewrittenWithLens(GraphLens graphLens, GraphLens codeLens) {
return this;
}
}