blob: 0c19d533667c0abf597015aad4547df80bd90817 [file] [log] [blame]
// Copyright (c) 2020, 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.horizontalclassmerging.policies;
import com.android.tools.r8.graph.AppView;
import com.android.tools.r8.graph.CfCode;
import com.android.tools.r8.graph.Code;
import com.android.tools.r8.graph.DexProgramClass;
import com.android.tools.r8.graph.ProgramMethod;
import com.android.tools.r8.horizontalclassmerging.HorizontalClassMerger.Mode;
import com.android.tools.r8.horizontalclassmerging.SingleClassPolicy;
import com.android.tools.r8.ir.optimize.Inliner.ConstraintWithTarget;
import com.android.tools.r8.shaking.AppInfoWithLiveness;
import com.google.common.collect.Iterables;
public class NoIllegalInlining extends SingleClassPolicy {
private final AppView<AppInfoWithLiveness> appView;
public NoIllegalInlining(AppView<AppInfoWithLiveness> appView, Mode mode) {
// This policy is only relevant for the first round of horizontal class merging, since the final
// round of horizontal class merging may not require any inlining.
assert mode.isInitial();
this.appView = appView;
}
private boolean disallowInlining(ProgramMethod method) {
Code code = method.getDefinition().getCode();
if (!appView.getKeepInfo(method).isInliningAllowed(appView.options())) {
return true;
}
// For non-jar/cf code we currently cannot guarantee that markForceInline() will succeed.
if (code == null) {
return true;
}
if (code.isCfCode()) {
CfCode cfCode = code.asCfCode();
ConstraintWithTarget constraint =
cfCode.computeInliningConstraint(method, appView, appView.graphLens(), method);
return constraint == ConstraintWithTarget.NEVER;
} else if (code.isDefaultInstanceInitializerCode()) {
return false;
} else {
return true;
}
}
@Override
public boolean canMerge(DexProgramClass program) {
return !Iterables.any(
program.directProgramMethods(),
method -> method.getDefinition().isInstanceInitializer() && disallowInlining(method));
}
@Override
public String getName() {
return "DontInlinePolicy";
}
}