org.jetbrains.kotlin.cli.common.createPhaseConfig.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-2019 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.cli.common
import org.jetbrains.kotlin.backend.common.phaser.AnyNamedPhase
import org.jetbrains.kotlin.backend.common.phaser.CompilerPhase
import org.jetbrains.kotlin.backend.common.phaser.PhaseConfig
import org.jetbrains.kotlin.backend.common.phaser.toPhaseMap
import org.jetbrains.kotlin.cli.common.arguments.CommonCompilerArguments
import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
fun createPhaseConfig(
compoundPhase: CompilerPhase<*, *, *>,
arguments: CommonCompilerArguments,
messageCollector: MessageCollector
): PhaseConfig {
fun report(message: String) = messageCollector.report(CompilerMessageSeverity.ERROR, message)
val phases = compoundPhase.toPhaseMap()
val enabled = computeEnabled(phases, arguments.disablePhases, ::report).toMutableSet()
val verbose = phaseSetFromArguments(phases, arguments.verbosePhases, ::report)
val beforeDumpSet = phaseSetFromArguments(phases, arguments.phasesToDumpBefore, ::report)
val afterDumpSet = phaseSetFromArguments(phases, arguments.phasesToDumpAfter, ::report)
val bothDumpSet = phaseSetFromArguments(phases, arguments.phasesToDump, ::report)
val toDumpStateBefore = beforeDumpSet + bothDumpSet
val toDumpStateAfter = afterDumpSet + bothDumpSet
val dumpDirectory = arguments.dumpDirectory
val dumpOnlyFqName = arguments.dumpOnlyFqName
val beforeValidateSet = phaseSetFromArguments(phases, arguments.phasesToValidateBefore, ::report)
val afterValidateSet = phaseSetFromArguments(phases, arguments.phasesToValidateAfter, ::report)
val bothValidateSet = phaseSetFromArguments(phases, arguments.phasesToValidate, ::report)
val toValidateStateBefore = beforeValidateSet + bothValidateSet
val toValidateStateAfter = afterValidateSet + bothValidateSet
val needProfiling = arguments.profilePhases
val checkConditions = arguments.checkPhaseConditions
val checkStickyConditions = arguments.checkStickyPhaseConditions
return PhaseConfig(
compoundPhase,
phases,
enabled,
verbose,
toDumpStateBefore,
toDumpStateAfter,
dumpDirectory,
dumpOnlyFqName,
toValidateStateBefore,
toValidateStateAfter,
needProfiling,
checkConditions,
checkStickyConditions
).also {
if (arguments.listPhases) {
it.list()
}
}
}
private fun computeEnabled(
phases: MutableMap,
namesOfDisabled: Array?,
report: (String) -> Unit
): Set {
val disabledPhases = phaseSetFromArguments(phases, namesOfDisabled, report)
return phases.values.toSet() - disabledPhases
}
private fun phaseSetFromArguments(
phases: MutableMap,
names: Array?,
report: (String) -> Unit
): Set {
if (names == null) return emptySet()
if ("ALL" in names) return phases.values.toSet()
return names.mapNotNull {
phases[it] ?: run {
report("no phase named $it")
null
}
}.toSet()
}