mirror of
https://github.com/github/codeql.git
synced 2025-12-22 19:56:32 +01:00
Kotlin: Specialise findSubType to IrDeclaration
We only use it on that type, and this makes the uses a bit quieter.
This commit is contained in:
@@ -1568,7 +1568,7 @@ open class KotlinFileExtractor(
|
||||
}
|
||||
}
|
||||
|
||||
private fun findFunction(cls: IrClass, name: String): IrFunction? = cls.declarations.findSubType<IrDeclaration,IrFunction> { it.name.asString() == name }
|
||||
private fun findFunction(cls: IrClass, name: String): IrFunction? = cls.declarations.findSubType<IrFunction> { it.name.asString() == name }
|
||||
|
||||
val jvmIntrinsicsClass by lazy {
|
||||
val result = pluginContext.referenceClass(FqName("kotlin.jvm.internal.Intrinsics"))?.owner
|
||||
@@ -1625,7 +1625,7 @@ open class KotlinFileExtractor(
|
||||
}
|
||||
|
||||
val stringValueOfObjectMethod by lazy {
|
||||
val result = javaLangString?.declarations?.findSubType<IrDeclaration,IrFunction> {
|
||||
val result = javaLangString?.declarations?.findSubType<IrFunction> {
|
||||
it.name.asString() == "valueOf" &&
|
||||
it.valueParameters.size == 1 &&
|
||||
it.valueParameters[0].type == pluginContext.irBuiltIns.anyNType
|
||||
@@ -1637,7 +1637,7 @@ open class KotlinFileExtractor(
|
||||
}
|
||||
|
||||
val objectCloneMethod by lazy {
|
||||
val result = javaLangObject?.declarations?.findSubType<IrDeclaration,IrFunction> {
|
||||
val result = javaLangObject?.declarations?.findSubType<IrFunction> {
|
||||
it.name.asString() == "clone"
|
||||
}
|
||||
if (result == null) {
|
||||
@@ -1653,7 +1653,7 @@ open class KotlinFileExtractor(
|
||||
}
|
||||
|
||||
val kotlinNoWhenBranchMatchedConstructor by lazy {
|
||||
val result = kotlinNoWhenBranchMatchedExn?.declarations?.findSubType<IrDeclaration,IrConstructor> {
|
||||
val result = kotlinNoWhenBranchMatchedExn?.declarations?.findSubType<IrConstructor> {
|
||||
it.valueParameters.isEmpty()
|
||||
}
|
||||
if (result == null) {
|
||||
@@ -1775,7 +1775,7 @@ open class KotlinFileExtractor(
|
||||
return
|
||||
}
|
||||
|
||||
val func = ((c.getTypeArgument(0) as? IrSimpleType)?.classifier?.owner as? IrClass)?.declarations?.findSubType<IrDeclaration,IrFunction> { it.name.asString() == fnName }
|
||||
val func = ((c.getTypeArgument(0) as? IrSimpleType)?.classifier?.owner as? IrClass)?.declarations?.findSubType<IrFunction> { it.name.asString() == fnName }
|
||||
if (func == null) {
|
||||
logger.errorElement("Couldn't find function $fnName on enum type", c)
|
||||
return
|
||||
@@ -2225,7 +2225,7 @@ open class KotlinFileExtractor(
|
||||
logger.errorElement("Argument to dataClassArrayMemberToString not a class", c)
|
||||
return
|
||||
}
|
||||
val realCallee = javaUtilArrays?.declarations?.findSubType<IrDeclaration,IrFunction> { decl ->
|
||||
val realCallee = javaUtilArrays?.declarations?.findSubType<IrFunction> { decl ->
|
||||
decl.name.asString() == "toString" && decl.valueParameters.size == 1 &&
|
||||
decl.valueParameters[0].type.classOrNull?.let { it == realArrayClass } == true
|
||||
}
|
||||
@@ -2252,7 +2252,7 @@ open class KotlinFileExtractor(
|
||||
logger.errorElement("Argument to dataClassArrayMemberHashCode not a class", c)
|
||||
return
|
||||
}
|
||||
val realCallee = javaUtilArrays?.declarations?.findSubType<IrDeclaration,IrFunction> { decl ->
|
||||
val realCallee = javaUtilArrays?.declarations?.findSubType<IrFunction> { decl ->
|
||||
decl.name.asString() == "hashCode" && decl.valueParameters.size == 1 &&
|
||||
decl.valueParameters[0].type.classOrNull?.let { it == realArrayClass } == true
|
||||
}
|
||||
@@ -4363,7 +4363,7 @@ open class KotlinFileExtractor(
|
||||
return
|
||||
}
|
||||
|
||||
val invokeMethod = functionType.classOrNull?.owner?.declarations?.findSubType<IrDeclaration,IrFunction> { it.name.asString() == OperatorNameConventions.INVOKE.asString()}
|
||||
val invokeMethod = functionType.classOrNull?.owner?.declarations?.findSubType<IrFunction> { it.name.asString() == OperatorNameConventions.INVOKE.asString()}
|
||||
if (invokeMethod == null) {
|
||||
logger.errorElement("Couldn't find `invoke` method on functional interface.", e)
|
||||
return
|
||||
@@ -4374,7 +4374,7 @@ open class KotlinFileExtractor(
|
||||
logger.errorElement("Expected to find SAM conversion to IrClass. Found '${typeOwner.javaClass}' instead. Can't implement SAM interface.", e)
|
||||
return
|
||||
}
|
||||
val samMember = typeOwner.declarations.findSubType<IrDeclaration,IrFunction> { it is IrOverridableMember && it.modality == Modality.ABSTRACT }
|
||||
val samMember = typeOwner.declarations.findSubType<IrFunction> { it is IrOverridableMember && it.modality == Modality.ABSTRACT }
|
||||
if (samMember == null) {
|
||||
logger.errorElement("Couldn't find SAM member in type '${typeOwner.kotlinFqName.asString()}'. Can't implement SAM interface.", e)
|
||||
return
|
||||
@@ -4563,7 +4563,7 @@ open class KotlinFileExtractor(
|
||||
val superCallId = tw.getFreshIdLabel<DbSuperconstructorinvocationstmt>()
|
||||
tw.writeStmts_superconstructorinvocationstmt(superCallId, constructorBlockId, 0, ids.constructor)
|
||||
|
||||
val baseConstructor = baseClass.owner.declarations.findSubType<IrDeclaration,IrFunction> { it.symbol is IrConstructorSymbol }
|
||||
val baseConstructor = baseClass.owner.declarations.findSubType<IrFunction> { it.symbol is IrConstructorSymbol }
|
||||
val baseConstructorId = useFunction<DbConstructor>(baseConstructor as IrFunction)
|
||||
|
||||
tw.writeHasLocation(superCallId, locId)
|
||||
|
||||
@@ -326,7 +326,7 @@ open class KotlinUsesExtractor(
|
||||
if (replacementClass === parentClass)
|
||||
return f
|
||||
return globalExtensionState.syntheticToRealFunctionMap.getOrPut(f) {
|
||||
val result = replacementClass.declarations.findSubType<IrDeclaration,IrSimpleFunction> { replacementDecl ->
|
||||
val result = replacementClass.declarations.findSubType<IrSimpleFunction> { replacementDecl ->
|
||||
replacementDecl is IrSimpleFunction && replacementDecl.name == f.name && replacementDecl.valueParameters.size == f.valueParameters.size && replacementDecl.valueParameters.zip(f.valueParameters).all {
|
||||
erase(it.first.type) == erase(it.second.type)
|
||||
}
|
||||
@@ -351,7 +351,7 @@ open class KotlinUsesExtractor(
|
||||
if (replacementClass === parentClass)
|
||||
return f
|
||||
return globalExtensionState.syntheticToRealFieldMap.getOrPut(f) {
|
||||
val result = replacementClass.declarations.findSubType<IrDeclaration,IrField> { replacementDecl ->
|
||||
val result = replacementClass.declarations.findSubType<IrField> { replacementDecl ->
|
||||
replacementDecl.name == f.name
|
||||
}
|
||||
if (result == null) {
|
||||
@@ -1097,7 +1097,7 @@ open class KotlinUsesExtractor(
|
||||
return f.returnType
|
||||
}
|
||||
|
||||
val otherKeySet = parentClass.declarations.findSubType<IrDeclaration,IrFunction> { it.name.asString() == "keySet" && it.valueParameters.size == 1 }
|
||||
val otherKeySet = parentClass.declarations.findSubType<IrFunction> { it.name.asString() == "keySet" && it.valueParameters.size == 1 }
|
||||
?: return f.returnType
|
||||
|
||||
return otherKeySet.returnType.codeQlWithHasQuestionMark(false)
|
||||
@@ -1177,7 +1177,7 @@ open class KotlinUsesExtractor(
|
||||
getJavaEquivalentClass(parentClass)?.let { javaClass ->
|
||||
if (javaClass != parentClass)
|
||||
// Look for an exact type match...
|
||||
javaClass.declarations.findSubType<IrDeclaration,IrFunction> { decl ->
|
||||
javaClass.declarations.findSubType<IrFunction> { decl ->
|
||||
decl.name == f.name &&
|
||||
decl.valueParameters.size == f.valueParameters.size &&
|
||||
// Note matching by classifier not the whole type so that generic arguments are allowed to differ,
|
||||
@@ -1193,7 +1193,7 @@ open class KotlinUsesExtractor(
|
||||
} ?:
|
||||
// Or check property accessors:
|
||||
if (f.isAccessor) {
|
||||
val prop = javaClass.declarations.findSubType<IrDeclaration,IrProperty> { decl ->
|
||||
val prop = javaClass.declarations.findSubType<IrProperty> { decl ->
|
||||
decl.name == (f.propertyIfAccessor as IrProperty).name
|
||||
}
|
||||
if (prop?.getter?.name == f.name)
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
package com.github.codeql
|
||||
|
||||
import org.jetbrains.kotlin.ir.declarations.IrDeclaration
|
||||
|
||||
/**
|
||||
* This behaves the same as Iterable<T>.find, but requires
|
||||
* This behaves the same as Iterable<IrDeclaration>.find, but requires
|
||||
* that the value found is of the subtype S, and it casts
|
||||
* the result for you appropriately.
|
||||
*/
|
||||
inline fun <T,reified S: T> Iterable<T>.findSubType(
|
||||
inline fun <reified S: IrDeclaration> Iterable<IrDeclaration>.findSubType(
|
||||
predicate: (S) -> Boolean
|
||||
): S? {
|
||||
return this.find { it is S && predicate(it) } as S?
|
||||
|
||||
Reference in New Issue
Block a user