blob: 0858b456724665ad1733956ed95c7f24ced44430 [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.optimize.inliner;
import com.android.tools.r8.ir.code.InstancePut;
import com.android.tools.r8.ir.code.Instruction;
import com.android.tools.r8.ir.code.InvokeDirect;
public class NopWhyAreYouNotInliningReporter extends WhyAreYouNotInliningReporter {
private static final NopWhyAreYouNotInliningReporter INSTANCE =
new NopWhyAreYouNotInliningReporter();
private NopWhyAreYouNotInliningReporter() {}
public static NopWhyAreYouNotInliningReporter getInstance() {
return INSTANCE;
}
@Override
public void reportInstructionBudgetIsExceeded() {}
@Override
public void reportPotentialExplosionInExceptionalControlFlowResolutionBlocks(
int estimatedNumberOfControlFlowResolutionBlocks, int threshold) {}
@Override
public void reportUnknownReason() {}
@Override
public void reportUnknownTarget() {}
@Override
public void reportUnsafeConstructorInliningDueToFinalFieldAssignment(InstancePut instancePut) {}
@Override
public void reportUnsafeConstructorInliningDueToIndirectConstructorCall(InvokeDirect invoke) {}
@Override
public void reportUnsafeConstructorInliningDueToUninitializedObjectUse(Instruction user) {}
@Override
public void reportWillExceedInstructionBudget(int numberOfInstructions, int threshold) {}
@Override
public boolean verifyReasonHasBeenReported() {
return true;
}
}