blob: 2e15003564ca807bc0aaca803be328a67034a965 [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.graph.AppInfo;
import com.android.tools.r8.graph.AppView;
import com.android.tools.r8.graph.DexItemFactory;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.graph.DexType;
import com.android.tools.r8.ir.analysis.ClassInitializationAnalysis;
import com.android.tools.r8.ir.analysis.type.TypeLatticeElement;
import com.android.tools.r8.ir.optimize.Inliner.InlineAction;
import com.android.tools.r8.ir.optimize.InliningOracle;
import java.util.List;
public abstract class InvokeMethodWithReceiver extends InvokeMethod {
InvokeMethodWithReceiver(DexMethod target, Value result, List<Value> arguments) {
super(target, result, arguments);
}
@Override
public boolean isInvokeMethodWithReceiver() {
return true;
}
@Override
public InvokeMethodWithReceiver asInvokeMethodWithReceiver() {
return this;
}
public Value getReceiver() {
return inValues.get(0);
}
@Override
public final InlineAction computeInlining(
InliningOracle decider,
DexType invocationContext,
ClassInitializationAnalysis classInitializationAnalysis) {
return decider.computeForInvokeWithReceiver(this, invocationContext);
}
@Override
public boolean throwsNpeIfValueIsNull(Value value, DexItemFactory dexItemFactory) {
return getReceiver() == value;
}
@Override
public boolean throwsOnNullInput() {
return true;
}
@Override
public Value getNonNullInput() {
return getReceiver();
}
@Override
public boolean verifyTypes(AppView<? extends AppInfo> appView) {
assert super.verifyTypes(appView);
TypeLatticeElement receiverType = getReceiver().getTypeLattice();
assert receiverType.isPreciseType();
return true;
}
}