org.jetbrains.kotlin.backend.jvm.lower.JvmIrInliner.kt Maven / Gradle / Ivy
/*
* Copyright 2010-2024 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.backend.jvm.lower
import org.jetbrains.kotlin.backend.common.phaser.PhaseDescription
import org.jetbrains.kotlin.backend.jvm.JvmBackendContext
import org.jetbrains.kotlin.ir.declarations.IrFile
import org.jetbrains.kotlin.ir.inline.FunctionInlining
@PhaseDescription(
name = "FunctionInliningPhase",
description = "Perform function inlining",
prerequisite = [JvmExpectDeclarationRemover::class]
)
class JvmIrInliner(context: JvmBackendContext) : FunctionInlining(
context,
innerClassesSupport = context.innerClassesSupport,
regenerateInlinedAnonymousObjects = true,
) {
private val enabled = context.config.enableIrInliner
override fun lower(irFile: IrFile) {
if (enabled) {
super.lower(irFile)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy