blob: 3f09f17ac47188817405375c2c0ad0b17800be8f [file] [log] [blame]
// Copyright (c) 2017, 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.code;
import com.android.tools.r8.cf.LoadStoreHelper;
import com.android.tools.r8.cf.TypeVerificationHelper;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.graph.AppInfoWithSubtyping;
import com.android.tools.r8.graph.DexClass;
import com.android.tools.r8.graph.DexEncodedMethod;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.graph.DexType;
import com.android.tools.r8.ir.analysis.type.TypeLatticeElement;
import com.android.tools.r8.ir.optimize.Inliner.Constraint;
import com.android.tools.r8.ir.optimize.Inliner.InlineAction;
import com.android.tools.r8.ir.optimize.InliningOracle;
import com.android.tools.r8.shaking.Enqueuer.AppInfoWithLiveness;
import java.util.Collection;
import java.util.List;
import java.util.function.Function;
public abstract class InvokeMethod extends Invoke {
private final DexMethod method;
public InvokeMethod(DexMethod target, Value result, List<Value> arguments) {
super(result, arguments);
this.method = target;
}
@Override
public DexType getReturnType() {
return method.proto.returnType;
}
public DexMethod getInvokedMethod() {
return method;
}
@Override
public boolean identicalNonValueNonPositionParts(Instruction other) {
return method == other.asInvokeMethod().getInvokedMethod();
}
@Override
public int compareNonValueParts(Instruction other) {
return getInvokedMethod().slowCompareTo(other.asInvokeMethod().getInvokedMethod());
}
@Override
public String toString() {
return super.toString() + "; method: " + method.toSourceString();
}
@Override
public boolean isInvokeMethod() {
return true;
}
@Override
public InvokeMethod asInvokeMethod() {
return this;
}
public abstract DexEncodedMethod lookupSingleTarget(AppInfoWithLiveness appInfo,
DexType invocationContext);
public abstract Collection<DexEncodedMethod> lookupTargets(AppInfoWithSubtyping appInfo,
DexType invocationContext);
@Override
public abstract Constraint inliningConstraint(AppInfoWithLiveness info,
DexType invocationContext);
protected Constraint inliningConstraintForSinlgeTargetInvoke(AppInfoWithLiveness info,
DexType invocationContext) {
if (method.holder.isArrayType()) {
return Constraint.ALWAYS;
}
DexEncodedMethod target = lookupSingleTarget(info, invocationContext);
if (target != null) {
DexType methodHolder = target.method.holder;
DexClass methodClass = info.definitionFor(methodHolder);
if ((methodClass != null)) {
Constraint methodConstraint = Constraint
.deriveConstraint(invocationContext, methodHolder, target.accessFlags, info);
// We also have to take the constraint of the enclosing class into account.
Constraint classConstraint = Constraint
.deriveConstraint(invocationContext, methodHolder, methodClass.accessFlags, info);
return Constraint.min(methodConstraint, classConstraint);
}
}
return Constraint.NEVER;
}
protected Constraint inliningConstraintForVirtualInvoke(AppInfoWithSubtyping info,
DexType invocationContext) {
if (method.holder.isArrayType()) {
return Constraint.ALWAYS;
}
Collection<DexEncodedMethod> targets = lookupTargets(info, invocationContext);
if (targets == null || targets.isEmpty()) {
return Constraint.NEVER;
}
Constraint result = Constraint.ALWAYS;
for (DexEncodedMethod target : targets) {
DexType methodHolder = target.method.holder;
DexClass methodClass = info.definitionFor(methodHolder);
if ((methodClass != null)) {
Constraint methodConstraint = Constraint
.deriveConstraint(invocationContext, methodHolder, target.accessFlags, info);
result = Constraint.min(result, methodConstraint);
// We also have to take the constraint of the enclosing class into account.
Constraint classConstraint = Constraint
.deriveConstraint(invocationContext, methodHolder, methodClass.accessFlags, info);
result = Constraint.min(result, classConstraint);
}
if (result == Constraint.NEVER) {
break;
}
}
return result;
}
public abstract InlineAction computeInlining(InliningOracle decider);
@Override
public void insertLoadAndStores(InstructionListIterator it, LoadStoreHelper helper) {
helper.loadInValues(this, it);
if (method.proto.returnType.isVoidType()) {
return;
}
if (outValue == null) {
helper.popOutType(method.proto.returnType, this, it);
} else {
assert outValue.isUsed();
helper.storeOutValue(this, it);
}
}
@Override
public boolean hasInvariantVerificationType() {
return true;
}
@Override
public DexType computeVerificationType(TypeVerificationHelper helper) {
return getInvokedMethod().proto.returnType;
}
@Override
public TypeLatticeElement evaluate(
AppInfoWithSubtyping appInfo, Function<Value, TypeLatticeElement> getLatticeElement) {
DexType returnType = method.proto.returnType;
if (returnType.isVoidType()) {
throw new Unreachable("void methods have no type.");
}
return TypeLatticeElement.fromDexType(returnType, true);
}
}