blob: 15bd5cd34680b40d991ab5549becc2d3645e81fd [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.shaking.AppInfoWithLiveness;
import java.util.function.Supplier;
public interface MethodState {
static BottomMethodState bottom() {
return BottomMethodState.get();
}
static UnknownMethodState unknown() {
return UnknownMethodState.get();
}
boolean isBottom();
boolean isConcrete();
ConcreteMethodState asConcrete();
boolean isMonomorphic();
ConcreteMonomorphicMethodState asMonomorphic();
boolean isPolymorphic();
ConcretePolymorphicMethodState asPolymorphic();
boolean isUnknown();
MethodState mutableCopy();
MethodState mutableJoin(AppView<AppInfoWithLiveness> appView, MethodState methodState);
MethodState mutableJoin(
AppView<AppInfoWithLiveness> appView, Supplier<MethodState> methodStateSupplier);
}