[FE 1.0] Unbind type parameter erasing from java

This commit is contained in:
Victor Petukhov
2022-04-04 19:24:53 +03:00
committed by teamcity
parent 5bfe6cd20a
commit f31cf90de2
20 changed files with 471 additions and 337 deletions
@@ -0,0 +1,17 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.types
import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
open class ErasureProjectionComputer {
open fun computeProjection(
parameter: TypeParameterDescriptor,
typeAttr: ErasureTypeAttributes,
typeParameterUpperBoundEraser: TypeParameterUpperBoundEraser,
erasedUpperBound: KotlinType = typeParameterUpperBoundEraser.getErasedUpperBound(parameter, typeAttr)
): TypeProjection = TypeProjectionImpl(Variance.OUT_VARIANCE, erasedUpperBound)
}
@@ -0,0 +1,35 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.types
import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
open class ErasureTypeAttributes(
// we use it to prevent happening a recursion while compute type parameter's upper bounds
open val howThisTypeIsUsed: TypeUsage,
open val visitedTypeParameters: Set<TypeParameterDescriptor>? = null,
open val defaultType: SimpleType? = null
) {
open fun withDefaultType(type: SimpleType?) = ErasureTypeAttributes(howThisTypeIsUsed, visitedTypeParameters, defaultType = type)
open fun withNewVisitedTypeParameter(typeParameter: TypeParameterDescriptor) =
ErasureTypeAttributes(
howThisTypeIsUsed,
visitedTypeParameters = visitedTypeParameters?.let { it + typeParameter } ?: setOf(typeParameter),
defaultType
)
override fun equals(other: Any?): Boolean {
if (other !is ErasureTypeAttributes) return false
return other.defaultType == this.defaultType && other.howThisTypeIsUsed == this.howThisTypeIsUsed
}
override fun hashCode(): Int {
var result = defaultType.hashCode()
result += 31 * result + howThisTypeIsUsed.hashCode()
return result
}
}
@@ -0,0 +1,11 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.types
class TypeParameterErasureOptions(
val leaveNonTypeParameterTypes: Boolean,
val intersectUpperBounds: Boolean,
)
@@ -0,0 +1,157 @@
/*
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.types
import org.jetbrains.kotlin.descriptors.ClassDescriptor
import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
import org.jetbrains.kotlin.storage.LockBasedStorageManager
import org.jetbrains.kotlin.types.TypeUtils.makeStarProjection
import org.jetbrains.kotlin.types.checker.intersectTypes
import org.jetbrains.kotlin.types.error.ErrorUtils
import org.jetbrains.kotlin.types.error.ErrorTypeKind
import org.jetbrains.kotlin.types.typeUtil.*
class TypeParameterUpperBoundEraser(
val projectionComputer: ErasureProjectionComputer,
val options: TypeParameterErasureOptions = TypeParameterErasureOptions(leaveNonTypeParameterTypes = false, intersectUpperBounds = false)
) {
private val storage = LockBasedStorageManager("Type parameter upper bound erasure results")
private val erroneousErasedBound by lazy {
ErrorUtils.createErrorType(ErrorTypeKind.CANNOT_COMPUTE_ERASED_BOUND, this.toString())
}
private data class DataToEraseUpperBound(
val typeParameter: TypeParameterDescriptor,
val typeAttr: ErasureTypeAttributes
) {
override fun equals(other: Any?): Boolean {
if (other !is DataToEraseUpperBound) return false
return other.typeParameter == this.typeParameter && other.typeAttr == this.typeAttr
}
override fun hashCode(): Int {
var result = typeParameter.hashCode()
result += 31 * result + typeAttr.hashCode()
return result
}
}
private val getErasedUpperBound = storage.createMemoizedFunction<DataToEraseUpperBound, KotlinType> {
with(it) { getErasedUpperBoundInternal(typeParameter, typeAttr) }
}
fun getErasedUpperBound(
typeParameter: TypeParameterDescriptor,
typeAttr: ErasureTypeAttributes
): KotlinType = getErasedUpperBound(DataToEraseUpperBound(typeParameter, typeAttr))
private fun getDefaultType(typeAttr: ErasureTypeAttributes) =
typeAttr.defaultType?.replaceArgumentsWithStarProjections() ?: erroneousErasedBound
// Definition:
// ErasedUpperBound(T : G<t>) = G<*> // UpperBound(T) is a type G<t> with arguments
// ErasedUpperBound(T : A) = A // UpperBound(T) is a type A without arguments
// ErasedUpperBound(T : F) = UpperBound(F) // UB(T) is another type parameter F
private fun getErasedUpperBoundInternal(
// Calculation of `potentiallyRecursiveTypeParameter.upperBounds` may recursively depend on `this.getErasedUpperBound`
// E.g. `class A<T extends A, F extends A>`
// To prevent recursive calls return defaultValue() instead
typeParameter: TypeParameterDescriptor,
typeAttr: ErasureTypeAttributes
): KotlinType {
val visitedTypeParameters = typeAttr.visitedTypeParameters
if (visitedTypeParameters != null && typeParameter.original in visitedTypeParameters)
return getDefaultType(typeAttr)
/*
* We should do erasure of containing type parameters with their erasure to avoid creating inconsistent types.
* E.g. for `class Foo<T: Foo<B>, B>`, we'd have erasure for lower bound: Foo<Foo<*>, Any>,
* but it's wrong type: projection(*) != projection(Any).
* So we should substitute erasure of the corresponding type parameter: `Foo<Foo<Any>, Any>` or `Foo<Foo<*>, *>`.
*/
val erasedTypeParameters = typeParameter.defaultType.extractTypeParametersFromUpperBounds(visitedTypeParameters).associate {
val boundProjection = if (visitedTypeParameters == null || it !in visitedTypeParameters) {
projectionComputer.computeProjection(
it,
typeAttr,
typeParameterUpperBoundEraser = this,
getErasedUpperBound(it, typeAttr.withNewVisitedTypeParameter(typeParameter))
)
} else makeStarProjection(it, typeAttr)
it.typeConstructor to boundProjection
}
val erasedTypeParametersSubstitutor =
TypeSubstitutor.create(TypeConstructorSubstitution.createByConstructorsMap(erasedTypeParameters))
val erasedUpperBounds =
erasedTypeParametersSubstitutor.substituteErasedUpperBounds(typeParameter.upperBounds, typeAttr)
if (erasedUpperBounds.isNotEmpty()) {
if (!options.intersectUpperBounds) {
require(erasedUpperBounds.size == 1) { "Should only be one computed upper bound if no need to intersect all bounds" }
return erasedUpperBounds.single()
} else {
@Suppress("UNCHECKED_CAST")
return intersectTypes(erasedUpperBounds.toList().map { it.unwrap() })
}
}
return getDefaultType(typeAttr)
}
private fun TypeSubstitutor.substituteErasedUpperBounds(
upperBounds: List<KotlinType>,
typeAttr: ErasureTypeAttributes
): Set<KotlinType> = buildSet {
for (upperBound in upperBounds) {
when (val declaration = upperBound.constructor.declarationDescriptor) {
is ClassDescriptor -> add(
upperBound.replaceArgumentsOfUpperBound(
substitutor = this@substituteErasedUpperBounds,
typeAttr.visitedTypeParameters,
options.leaveNonTypeParameterTypes
)
)
is TypeParameterDescriptor -> {
if (typeAttr.visitedTypeParameters?.contains(declaration) == true) {
add(getDefaultType(typeAttr))
} else {
addAll(substituteErasedUpperBounds(declaration.upperBounds, typeAttr))
}
}
}
// If no need to intersect, take only the first bound
if (!options.intersectUpperBounds) break
}
}
companion object {
fun KotlinType.replaceArgumentsOfUpperBound(
substitutor: TypeSubstitutor,
visitedTypeParameters: Set<TypeParameterDescriptor>?,
leaveNonTypeParameterTypes: Boolean = false
): KotlinType {
val replacedArguments = replaceArgumentsByParametersWith { typeParameterDescriptor ->
val argument = arguments.getOrNull(typeParameterDescriptor.index)
if (leaveNonTypeParameterTypes && argument?.type?.containsTypeParameter() == false)
return@replaceArgumentsByParametersWith argument
val isTypeParameterVisited = visitedTypeParameters != null && typeParameterDescriptor in visitedTypeParameters
if (argument == null || isTypeParameterVisited || substitutor.substitution[argument.type] == null) {
StarProjectionImpl(typeParameterDescriptor)
} else {
argument
}
}
return substitutor.safeSubstitute(replacedArguments, Variance.OUT_VARIANCE)
}
}
}
@@ -0,0 +1,10 @@
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.types
enum class TypeUsage {
SUPERTYPE, COMMON
}
@@ -30,6 +30,8 @@ import org.jetbrains.kotlin.utils.SmartSet;
import java.util.*;
import static org.jetbrains.kotlin.types.TypeUsage.SUPERTYPE;
public class TypeUtils {
public static final SimpleType DONT_CARE = ErrorUtils.createErrorType(ErrorTypeKind.DONT_CARE);
public static final SimpleType CANNOT_INFER_FUNCTION_PARAM_TYPE =
@@ -480,6 +482,15 @@ public class TypeUtils {
return new StarProjectionImpl(parameterDescriptor);
}
@NotNull
public static TypeProjection makeStarProjection(@NotNull TypeParameterDescriptor parameterDescriptor, ErasureTypeAttributes attr) {
if (attr.getHowThisTypeIsUsed() == SUPERTYPE) {
return new TypeProjectionImpl(StarProjectionImplKt.starProjectionType(parameterDescriptor));
} else {
return new StarProjectionImpl(parameterDescriptor);
}
}
@NotNull
public static KotlinType getDefaultPrimitiveNumberType(@NotNull IntegerValueTypeConstructor numberValueTypeConstructor) {
KotlinType type = getDefaultPrimitiveNumberType(numberValueTypeConstructor.getSupertypes());
@@ -26,7 +26,6 @@ import org.jetbrains.kotlin.resolve.descriptorUtil.builtIns
import org.jetbrains.kotlin.types.*
import org.jetbrains.kotlin.types.checker.*
import org.jetbrains.kotlin.types.error.ErrorType
import org.jetbrains.kotlin.types.model.SimpleTypeMarker
import org.jetbrains.kotlin.types.model.TypeArgumentMarker
import org.jetbrains.kotlin.types.model.TypeVariableTypeConstructorMarker
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
@@ -250,21 +249,6 @@ private fun KotlinType.containsSelfTypeParameter(
}
}
fun KotlinType.replaceArgumentsWithStarProjectionOrMapped(
substitutor: TypeSubstitutor,
substitutionMap: Map<TypeConstructor, TypeProjection>,
variance: Variance,
visitedTypeParameters: Set<TypeParameterDescriptor>?
) =
replaceArgumentsByParametersWith { typeParameterDescriptor ->
val argument = arguments.getOrNull(typeParameterDescriptor.index)
val isTypeParameterVisited = visitedTypeParameters != null && typeParameterDescriptor in visitedTypeParameters
if (!isTypeParameterVisited && argument != null && argument.type.constructor in substitutionMap) {
argument
} else StarProjectionImpl(typeParameterDescriptor)
}.let { substitutor.safeSubstitute(it, variance) }
inline fun KotlinType.replaceArgumentsByParametersWith(replacement: (TypeParameterDescriptor) -> TypeProjection): KotlinType {
val unwrapped = unwrap()
return when (unwrapped) {