blob: f05b3632b5e6f04400db9089d37b36b66fb6d9e4 [file] [log] [blame]
/*
* Copyright 2023 The Android Open Source Project
*
* 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 androidx.compose.compiler.plugins.kotlin.lower
import androidx.compose.compiler.plugins.kotlin.ComposeClassIds
import androidx.compose.compiler.plugins.kotlin.hasComposableAnnotation
import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
import org.jetbrains.kotlin.ir.IrElement
import org.jetbrains.kotlin.ir.declarations.IrFunction
import org.jetbrains.kotlin.ir.expressions.IrFunctionExpression
import org.jetbrains.kotlin.ir.expressions.IrFunctionReference
import org.jetbrains.kotlin.ir.expressions.impl.IrConstructorCallImpl
import org.jetbrains.kotlin.ir.util.constructors
import org.jetbrains.kotlin.ir.util.defaultType
import org.jetbrains.kotlin.ir.visitors.IrElementVisitorVoid
import org.jetbrains.kotlin.ir.visitors.acceptChildrenVoid
/**
* In K1, the frontend used to annotate inferred composable lambdas with `@Composable`.
* The K2 frontend instead uses a different type for composable lambdas. This pass adds
* the annotation, since the backend expects it.
*/
class ComposableLambdaAnnotator(context: IrPluginContext) : IrElementVisitorVoid {
override fun visitElement(element: IrElement) {
element.acceptChildrenVoid(this)
}
override fun visitFunctionExpression(expression: IrFunctionExpression) {
if (expression.type.isSyntheticComposableFunction()) {
expression.function.mark()
}
super.visitFunctionExpression(expression)
}
override fun visitFunctionReference(expression: IrFunctionReference) {
if (expression.type.isSyntheticComposableFunction()) {
expression.symbol.owner.mark()
}
super.visitFunctionReference(expression)
}
private val composableSymbol = context.referenceClass(ComposeClassIds.Composable)!!
private fun IrFunction.mark() {
if (!hasComposableAnnotation()) {
annotations = annotations + IrConstructorCallImpl.fromSymbolOwner(
composableSymbol.owner.defaultType,
composableSymbol.constructors.single(),
)
}
}
}