blob: 75a1bab33c8c86633e6f2ada3d9e3950b84051d2 [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.ir.analysis.fieldvalueanalysis;
import com.android.tools.r8.graph.AppView;
import com.android.tools.r8.graph.DexEncodedField;
import com.android.tools.r8.graph.GraphLens;
public class UnknownFieldSet extends AbstractFieldSet {
private static final UnknownFieldSet INSTANCE = new UnknownFieldSet();
private UnknownFieldSet() {}
public static UnknownFieldSet getInstance() {
return INSTANCE;
}
@Override
public boolean contains(DexEncodedField field) {
return true;
}
@Override
public boolean isEmpty() {
return false;
}
@Override
public boolean isTop() {
return true;
}
@Override
public AbstractFieldSet rewrittenWithLens(AppView<?> appView, GraphLens lens) {
return this;
}
}