org.jetbrains.kotlin.codegen.intrinsics.IntrinsicsMap.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2015 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.codegen.intrinsics
import org.jetbrains.kotlin.descriptors.CallableMemberDescriptor
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
import org.jetbrains.kotlin.name.FqName
import org.jetbrains.kotlin.name.FqNameUnsafe
import org.jetbrains.kotlin.resolve.DescriptorUtils
import java.util.*
internal class IntrinsicsMap {
private val intrinsicsMap = HashMap()
private data class Key(
private val owner: FqNameUnsafe,
private val receiverParameter: FqNameUnsafe?,
private val name: String,
private val valueParameterCount: Int
)
private fun valueParameterCountForKey(member: CallableMemberDescriptor): Int =
if (member is PropertyDescriptor)
-1
else
member.valueParameters.size
/**
* @param valueParameterCount -1 for property
*/
fun registerIntrinsic(
owner: FqName,
receiverParameter: FqNameUnsafe?,
name: String,
valueParameterCount: Int,
impl: IntrinsicMethod
) {
intrinsicsMap[Key(owner.toUnsafe(), receiverParameter, name, valueParameterCount)] = impl
}
fun getIntrinsic(descriptor: CallableMemberDescriptor): IntrinsicMethod? =
intrinsicsMap[getKey(descriptor)]?.takeIf { it.isApplicableToOverload(descriptor.original) }
private fun getKey(descriptor: CallableMemberDescriptor): Key =
Key(
DescriptorUtils.getFqName(descriptor.containingDeclaration),
getReceiverParameterFqName(descriptor),
descriptor.name.asString(),
valueParameterCountForKey(descriptor)
)
private fun getReceiverParameterFqName(descriptor: CallableMemberDescriptor): FqNameUnsafe? {
val receiverParameter = descriptor.extensionReceiverParameter ?: return null
val classifier = receiverParameter.type.constructor.declarationDescriptor ?: return null
return if (classifier is TypeParameterDescriptor)
IntrinsicMethods.RECEIVER_PARAMETER_FQ_NAME
else
DescriptorUtils.getFqName(classifier)
}
}