org.jetbrains.kotlin.ir.interpreter.state.Common.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-2020 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.ir.interpreter.state
import org.jetbrains.kotlin.ir.declarations.*
import org.jetbrains.kotlin.ir.expressions.IrCall
import org.jetbrains.kotlin.ir.interpreter.createCall
import org.jetbrains.kotlin.ir.interpreter.fqName
import org.jetbrains.kotlin.ir.interpreter.stack.Field
import org.jetbrains.kotlin.ir.interpreter.stack.Fields
import org.jetbrains.kotlin.ir.interpreter.stack.Variable
import org.jetbrains.kotlin.ir.symbols.IrSymbol
import org.jetbrains.kotlin.ir.util.*
internal class Common private constructor(override val irClass: IrClass, override val fields: Fields) : Complex, StateWithClosure {
override val upValues: MutableMap = mutableMapOf()
override var superWrapperClass: Wrapper? = null
override var outerClass: Field? = null
constructor(irClass: IrClass) : this(irClass, mutableMapOf())
// This method is used to get correct java method name
private fun getKotlinName(declaringClassName: String, methodName: String): String {
return when {
// TODO see specialBuiltinMembers.kt
//"kotlin.collections.Map." -> "entrySet"
//"kotlin.collections.Map." -> "keySet"
declaringClassName == "java.lang.CharSequence" && methodName == "charAt" -> "get"
//"kotlin.collections.MutableList.removeAt" -> "remove"
else -> methodName
}
}
fun getIrFunction(method: java.lang.reflect.Method): IrFunction? {
val methodName = getKotlinName(method.declaringClass.name, method.name)
return when (val declaration =
irClass.declarations.singleOrNull { it is IrDeclarationWithName && it.name.asString() == methodName }
) {
is IrProperty -> declaration.getter
else -> declaration as? IrFunction
}
}
fun getEqualsFunction(): IrSimpleFunction {
return irClass.functions.single { it.isEquals() }.target
}
fun getHashCodeFunction(): IrSimpleFunction {
return irClass.functions.single { it.isHashCode() }.target
}
fun getToStringFunction(): IrSimpleFunction {
return irClass.functions.single { it.isToString() }.target
}
fun createToStringIrCall(): IrCall {
return getToStringFunction().createCall()
}
override fun toString(): String {
return "Common(obj='${irClass.fqName}', values=$fields)"
}
}