KT-22063 Add intrinsics for javaObjectType and javaPrimitiveType
Fix of https://youtrack.jetbrains.com/issue/KT-22063
This commit is contained in:
committed by
Alexander Udalov
parent
d79a4fd9a0
commit
3a50d0d78f
@@ -68,6 +68,8 @@ public class IntrinsicMethods {
|
||||
public IntrinsicMethods(JvmTarget jvmTarget, boolean shouldThrowNpeOnExplicitEqualsForBoxedNull) {
|
||||
intrinsicsMap.registerIntrinsic(KOTLIN_JVM, RECEIVER_PARAMETER_FQ_NAME, "javaClass", -1, JavaClassProperty.INSTANCE);
|
||||
intrinsicsMap.registerIntrinsic(KOTLIN_JVM, KotlinBuiltIns.FQ_NAMES.kClass, "java", -1, new KClassJavaProperty());
|
||||
intrinsicsMap.registerIntrinsic(KOTLIN_JVM, KotlinBuiltIns.FQ_NAMES.kClass, "javaObjectType", -1, new KClassJavaObjectTypeProperty());
|
||||
intrinsicsMap.registerIntrinsic(KOTLIN_JVM, KotlinBuiltIns.FQ_NAMES.kClass, "javaPrimitiveType", -1, new KClassJavaPrimitiveTypeProperty());
|
||||
intrinsicsMap.registerIntrinsic(KotlinBuiltIns.FQ_NAMES.kCallable.toSafe(), null, "name", -1, new KCallableNameProperty());
|
||||
intrinsicsMap.registerIntrinsic(new FqName("kotlin.jvm.internal.unsafe"), null, "monitorEnter", 1, MonitorInstruction.MONITOR_ENTER);
|
||||
intrinsicsMap.registerIntrinsic(new FqName("kotlin.jvm.internal.unsafe"), null, "monitorExit", 1, MonitorInstruction.MONITOR_EXIT);
|
||||
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Copyright 2000-2018 JetBrains s.r.o. 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.codegen.intrinsics
|
||||
|
||||
import org.jetbrains.kotlin.codegen.AsmUtil
|
||||
import org.jetbrains.kotlin.codegen.ExpressionCodegen
|
||||
import org.jetbrains.kotlin.codegen.StackValue
|
||||
import org.jetbrains.kotlin.codegen.inline.ReifiedTypeInliner
|
||||
import org.jetbrains.kotlin.psi.KtClassLiteralExpression
|
||||
import org.jetbrains.kotlin.resolve.BindingContext.DOUBLE_COLON_LHS
|
||||
import org.jetbrains.kotlin.resolve.calls.model.ResolvedCall
|
||||
import org.jetbrains.kotlin.resolve.jvm.AsmTypes
|
||||
import org.jetbrains.kotlin.resolve.scopes.receivers.ExpressionReceiver
|
||||
import org.jetbrains.kotlin.types.TypeUtils
|
||||
import org.jetbrains.kotlin.types.expressions.DoubleColonLHS
|
||||
import org.jetbrains.org.objectweb.asm.Type
|
||||
|
||||
class KClassJavaObjectTypeProperty : IntrinsicPropertyGetter() {
|
||||
override fun generate(resolvedCall: ResolvedCall<*>?, codegen: ExpressionCodegen, returnType: Type, receiver: StackValue): StackValue? {
|
||||
val receiverValue = resolvedCall!!.extensionReceiver as? ExpressionReceiver ?: return null
|
||||
val classLiteralExpression = receiverValue.expression as? KtClassLiteralExpression ?: return null
|
||||
val receiverExpression = classLiteralExpression.receiverExpression ?: return null
|
||||
val lhs = codegen.bindingContext.get(DOUBLE_COLON_LHS, receiverExpression) ?: return null
|
||||
return StackValue.operation(returnType) { iv ->
|
||||
if (lhs is DoubleColonLHS.Expression && !lhs.isObjectQualifier) {
|
||||
val receiverStackValue = codegen.gen(receiverExpression)
|
||||
val extensionReceiverType = receiverStackValue.type
|
||||
receiverStackValue.put(extensionReceiverType, iv)
|
||||
when {
|
||||
extensionReceiverType == Type.VOID_TYPE -> {
|
||||
iv.aconst(AsmTypes.UNIT_TYPE)
|
||||
}
|
||||
AsmUtil.isPrimitive(extensionReceiverType) ||
|
||||
AsmUtil.unboxPrimitiveTypeOrNull(extensionReceiverType) != null -> {
|
||||
AsmUtil.pop(iv, extensionReceiverType)
|
||||
iv.aconst(AsmUtil.boxType(extensionReceiverType))
|
||||
}
|
||||
else -> {
|
||||
iv.invokevirtual("java/lang/Object", "getClass", "()Ljava/lang/Class;", false)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (TypeUtils.isTypeParameter(lhs.type)) {
|
||||
assert(TypeUtils.isReifiedTypeParameter(lhs.type)) {
|
||||
"Non-reified type parameter under ::class should be rejected by type checker: ${lhs.type}"
|
||||
}
|
||||
codegen.putReifiedOperationMarkerIfTypeIsReifiedParameter(lhs.type, ReifiedTypeInliner.OperationKind.JAVA_CLASS)
|
||||
}
|
||||
iv.aconst(AsmUtil.boxType(codegen.asmType(lhs.type)))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+52
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Copyright 2000-2018 JetBrains s.r.o. 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.codegen.intrinsics
|
||||
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.codegen.AsmUtil
|
||||
import org.jetbrains.kotlin.codegen.ExpressionCodegen
|
||||
import org.jetbrains.kotlin.codegen.StackValue
|
||||
import org.jetbrains.kotlin.psi.KtClassLiteralExpression
|
||||
import org.jetbrains.kotlin.resolve.BindingContext.DOUBLE_COLON_LHS
|
||||
import org.jetbrains.kotlin.resolve.calls.model.ResolvedCall
|
||||
import org.jetbrains.kotlin.resolve.jvm.AsmTypes
|
||||
import org.jetbrains.kotlin.resolve.scopes.receivers.ExpressionReceiver
|
||||
import org.jetbrains.kotlin.types.TypeUtils
|
||||
import org.jetbrains.kotlin.types.expressions.DoubleColonLHS
|
||||
import org.jetbrains.org.objectweb.asm.Type
|
||||
|
||||
class KClassJavaPrimitiveTypeProperty : IntrinsicPropertyGetter() {
|
||||
override fun generate(resolvedCall: ResolvedCall<*>?, codegen: ExpressionCodegen, returnType: Type, receiver: StackValue): StackValue? {
|
||||
val receiverValue = resolvedCall!!.extensionReceiver as? ExpressionReceiver ?: return null
|
||||
val classLiteralExpression = receiverValue.expression as? KtClassLiteralExpression ?: return null
|
||||
val receiverExpression = classLiteralExpression.receiverExpression ?: return null
|
||||
val lhs = codegen.bindingContext.get(DOUBLE_COLON_LHS, receiverExpression) ?: return null
|
||||
if (TypeUtils.isTypeParameter(lhs.type)) {
|
||||
// TODO: add new operation kind to ReifiedTypeInliner.OperationKind to generate a null value or a field access to TYPE
|
||||
return null
|
||||
}
|
||||
if (lhs is DoubleColonLHS.Expression && !lhs.isObjectQualifier) {
|
||||
val receiverType = codegen.bindingContext.getType(receiverExpression) ?: return null
|
||||
if (!KotlinBuiltIns.isPrimitiveTypeOrNullablePrimitiveType(receiverType)) return null
|
||||
}
|
||||
val lhsType = codegen.asmType(lhs.type)
|
||||
return StackValue.operation(returnType) { iv ->
|
||||
when {
|
||||
lhs is DoubleColonLHS.Expression && !lhs.isObjectQualifier -> {
|
||||
codegen.gen(receiverExpression).put(lhsType, iv)
|
||||
AsmUtil.pop(iv, lhsType)
|
||||
iv.getstatic(AsmUtil.boxType(lhsType).internalName, "TYPE", "Ljava/lang/Class;")
|
||||
}
|
||||
AsmUtil.isPrimitive(lhsType) ||
|
||||
AsmUtil.unboxPrimitiveTypeOrNull(lhsType) != null ||
|
||||
AsmTypes.VOID_WRAPPER_TYPE == lhsType -> {
|
||||
iv.getstatic(AsmUtil.boxType(lhsType).internalName, "TYPE", "Ljava/lang/Class;")
|
||||
}
|
||||
else -> iv.aconst(null)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user