blob: 52c4f27bf2f1e977954f93ffea04874baff38d0e [file] [log] [blame]
// Copyright (c) 2016, 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.graph;
import com.android.tools.r8.ApiLevelException;
import com.android.tools.r8.dex.IndexedItemCollection;
import com.android.tools.r8.dex.MixedSectionCollection;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.ir.code.IRCode;
import com.android.tools.r8.ir.code.Position;
import com.android.tools.r8.ir.code.ValueNumberGenerator;
import com.android.tools.r8.ir.optimize.Outliner.OutlineCode;
import com.android.tools.r8.naming.ClassNameMapper;
import com.android.tools.r8.utils.InternalOptions;
import java.util.function.Consumer;
public abstract class Code extends CachedHashValueDexItem {
public abstract IRCode buildIR(
DexEncodedMethod encodedMethod,
AppInfo appInfo,
InternalOptions options)
throws ApiLevelException;
public IRCode buildInliningIR(
DexEncodedMethod encodedMethod,
AppInfo appInfo,
InternalOptions options,
ValueNumberGenerator valueNumberGenerator,
Position callerPosition)
throws ApiLevelException {
throw new Unreachable("Unexpected attempt to build IR graph for inlining from: "
+ getClass().getCanonicalName());
}
public abstract void registerInstructionsReferences(UseRegistry registry);
public abstract void registerCaughtTypes(Consumer<DexType> dexTypeConsumer);
@Override
public abstract String toString();
public abstract String toString(DexEncodedMethod method, ClassNameMapper naming);
public boolean isCfCode() {
return false;
}
public boolean isDexCode() {
return false;
}
public boolean isJarCode() {
return false;
}
public boolean isOutlineCode() {
return false;
}
public int estimatedSizeForInlining() {
return Integer.MAX_VALUE;
}
public CfCode asCfCode() {
throw new Unreachable(getClass().getCanonicalName() + ".asCfCode()");
}
public DexCode asDexCode() {
throw new Unreachable(getClass().getCanonicalName() + ".asDexCode()");
}
public JarCode asJarCode() {
throw new Unreachable(getClass().getCanonicalName() + ".asJarCode()");
}
public OutlineCode asOutlineCode() {
throw new Unreachable(getClass().getCanonicalName() + ".asOutlineCode()");
}
@Override
void collectIndexedItems(IndexedItemCollection collection) {
throw new Unreachable();
}
@Override
void collectMixedSectionItems(MixedSectionCollection collection) {
throw new Unreachable();
}
}