blob: 62b535542723d880982a522733cb3443ae59aa09 [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.kotlin;
import static com.android.tools.r8.kotlin.KotlinMetadataJvmExtensionUtils.toJvmFieldSignature;
import static com.android.tools.r8.kotlin.KotlinMetadataJvmExtensionUtils.toJvmMethodSignature;
import static com.android.tools.r8.kotlin.KotlinMetadataSynthesizer.isExtension;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.graph.DexClass;
import com.android.tools.r8.graph.DexEncodedField;
import com.android.tools.r8.graph.DexEncodedMethod;
import com.android.tools.r8.kotlin.KotlinMetadataJvmExtensionUtils.KmFunctionProcessor;
import com.android.tools.r8.kotlin.KotlinMetadataJvmExtensionUtils.KmPropertyProcessor;
import com.android.tools.r8.utils.Reporter;
import java.util.HashMap;
import java.util.Map;
import kotlinx.metadata.KmDeclarationContainer;
import kotlinx.metadata.KmFunction;
import kotlinx.metadata.KmProperty;
// Provides access to field/method-level Kotlin information.
public class KotlinMemberInfo {
private static KotlinMemberInfo NO_KOTLIN_MEMBER_INFO = new KotlinMemberInfo(MemberKind.NONE, 0);
public static KotlinMemberInfo getNoKotlinMemberInfo() {
return NO_KOTLIN_MEMBER_INFO;
}
public final MemberKind memberKind;
// Original flag. May be necessary to keep Kotlin-specific flag, e.g., inline function.
final int flag;
// Original property name for (extension) property. Otherwise, null.
final String propertyName;
private KotlinMemberInfo(MemberKind memberKind, int flag) {
this(memberKind, flag, null);
}
private KotlinMemberInfo(MemberKind memberKind, int flag, String propertyName) {
this.memberKind = memberKind;
this.flag = flag;
this.propertyName = propertyName;
}
public enum MemberKind {
NONE,
FUNCTION,
EXTENSION_FUNCTION,
PROPERTY_BACKING_FIELD,
PROPERTY_GETTER,
PROPERTY_SETTER,
PROPERTY_ANNOTATIONS,
// No backing field for extension property.
EXTENSION_PROPERTY_GETTER,
EXTENSION_PROPERTY_SETTER,
EXTENSION_PROPERTY_ANNOTATIONS;
// TODO(b/70169921): companion
public boolean isFunction() {
return this == FUNCTION || isExtensionFunction();
}
public boolean isExtensionFunction() {
return this == EXTENSION_FUNCTION;
}
public boolean isBackingField() {
return this == PROPERTY_BACKING_FIELD;
}
public boolean isProperty() {
return isBackingField()
|| this == PROPERTY_GETTER
|| this == PROPERTY_SETTER
|| this == PROPERTY_ANNOTATIONS
|| isExtensionProperty();
}
public boolean isExtensionProperty() {
return this == EXTENSION_PROPERTY_GETTER
|| this == EXTENSION_PROPERTY_SETTER
|| this == EXTENSION_PROPERTY_ANNOTATIONS;
}
}
public static void markKotlinMemberInfo(
DexClass clazz, KotlinInfo kotlinInfo, Reporter reporter) {
if (kotlinInfo == null || !kotlinInfo.hasDeclarations()) {
return;
}
if (kotlinInfo.isClass()) {
markKotlinMemberInfo(clazz, kotlinInfo.asClass().kmClass, reporter);
} else if (kotlinInfo.isFile()) {
markKotlinMemberInfo(clazz, kotlinInfo.asFile().kmPackage, reporter);
} else if (kotlinInfo.isClassPart()) {
markKotlinMemberInfo(clazz, kotlinInfo.asClassPart().kmPackage, reporter);
} else {
throw new Unreachable("Unexpected KotlinInfo: " + kotlinInfo);
}
}
private static void markKotlinMemberInfo(
DexClass clazz, KmDeclarationContainer kmDeclarationContainer, Reporter reporter) {
Map<String, KmFunction> kmFunctionMap = new HashMap<>();
Map<String, KmProperty> kmPropertyFieldMap = new HashMap<>();
Map<String, KmProperty> kmPropertyGetterMap = new HashMap<>();
Map<String, KmProperty> kmPropertySetterMap = new HashMap<>();
kmDeclarationContainer.getFunctions().forEach(kmFunction -> {
KmFunctionProcessor functionProcessor = new KmFunctionProcessor(kmFunction, reporter);
if (functionProcessor.signature() != null) {
kmFunctionMap.put(functionProcessor.signature().asString(), kmFunction);
}
});
kmDeclarationContainer.getProperties().forEach(kmProperty -> {
KmPropertyProcessor propertyProcessor = new KmPropertyProcessor(kmProperty, reporter);
if (propertyProcessor.fieldSignature() != null) {
kmPropertyFieldMap.put(propertyProcessor.fieldSignature().asString(), kmProperty);
}
if (propertyProcessor.getterSignature() != null) {
kmPropertyGetterMap.put(propertyProcessor.getterSignature().asString(), kmProperty);
}
if (propertyProcessor.setterSignature() != null) {
kmPropertySetterMap.put(propertyProcessor.setterSignature().asString(), kmProperty);
}
// TODO(b/70169921): property annotations
});
for (DexEncodedField field : clazz.fields()) {
String key = toJvmFieldSignature(field.field).asString();
if (kmPropertyFieldMap.containsKey(key)) {
KmProperty kmProperty = kmPropertyFieldMap.get(key);
field.setKotlinMemberInfo(
new KotlinMemberInfo(
MemberKind.PROPERTY_BACKING_FIELD, kmProperty.getFlags(), kmProperty.getName()));
}
}
for (DexEncodedMethod method : clazz.methods()) {
if (method.isInitializer()) {
continue;
}
String key = toJvmMethodSignature(method.method).asString();
if (kmFunctionMap.containsKey(key)) {
KmFunction kmFunction = kmFunctionMap.get(key);
if (isExtension(kmFunction)) {
method.setKotlinMemberInfo(
new KotlinMemberInfo(MemberKind.EXTENSION_FUNCTION, kmFunction.getFlags()));
} else {
method.setKotlinMemberInfo(
new KotlinMemberInfo(MemberKind.FUNCTION, kmFunction.getFlags()));
}
} else if (kmPropertyGetterMap.containsKey(key)) {
KmProperty kmProperty = kmPropertyGetterMap.get(key);
if (isExtension(kmProperty)) {
method.setKotlinMemberInfo(
new KotlinMemberInfo(
MemberKind.EXTENSION_PROPERTY_GETTER,
kmProperty.getFlags(),
kmProperty.getName()));
} else {
method.setKotlinMemberInfo(
new KotlinMemberInfo(
MemberKind.PROPERTY_GETTER, kmProperty.getFlags(), kmProperty.getName()));
}
} else if (kmPropertySetterMap.containsKey(key)) {
KmProperty kmProperty = kmPropertySetterMap.get(key);
if (isExtension(kmProperty)) {
method.setKotlinMemberInfo(
new KotlinMemberInfo(
MemberKind.EXTENSION_PROPERTY_SETTER,
kmProperty.getFlags(),
kmProperty.getName()));
} else {
method.setKotlinMemberInfo(
new KotlinMemberInfo(
MemberKind.PROPERTY_SETTER, kmProperty.getFlags(), kmProperty.getName()));
}
}
}
}
}