blob: bcd03fc63292ea6f2d62131650625c91513d3cd5 [file] [log] [blame]
// Copyright (c) 2021, 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.optimize.argumentpropagation.codescanner;
import com.android.tools.r8.graph.AppView;
import com.android.tools.r8.ir.analysis.value.AbstractValue;
import com.android.tools.r8.shaking.AppInfoWithLiveness;
public abstract class BottomValueState extends ValueState {
BottomValueState() {}
@Override
public final AbstractValue getAbstractValue(AppView<AppInfoWithLiveness> appView) {
return AbstractValue.bottom();
}
@Override
public final boolean isBottom() {
return true;
}
@Override
public final ValueState mutableCopy() {
return this;
}
}