blob: 3be22faad6fe5ea6e6f433d3f35c3d1ceda5df6c [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.ir.conversion;
import com.android.tools.r8.graph.ProgramMethod;
public abstract class MethodProcessor {
public boolean isPrimaryMethodProcessor() {
return false;
}
public abstract boolean isProcessedConcurrently(ProgramMethod method);
public abstract boolean shouldApplyCodeRewritings(ProgramMethod method);
public abstract void scheduleMethodForProcessingAfterCurrentWave(ProgramMethod method);
public abstract CallSiteInformation getCallSiteInformation();
}