blob: a1a3908146c77ef1d0cf2c5de03b51bd969e9962 [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 BottomParameterState extends ParameterState {
BottomParameterState() {}
@Override
public final AbstractValue getAbstractValue(AppView<AppInfoWithLiveness> appView) {
return AbstractValue.bottom();
}
@Override
public final boolean isBottom() {
return true;
}
@Override
public final ParameterState mutableCopy() {
return this;
}
}