Skip to content

Commit 0872420

Browse files
ivandev0Space Team
authored and
Space Team
committed
Reorganize GradleBuildTime entries to match actual structure used in compiler
#KT-67473 Fixed (cherry picked from commit 659e664)
1 parent 8bbf8dc commit 0872420

File tree

1 file changed

+3
-3
lines changed
  • compiler/build-tools/kotlin-build-statistics/src/org/jetbrains/kotlin/build/report/metrics

1 file changed

+3
-3
lines changed

compiler/build-tools/kotlin-build-statistics/src/org/jetbrains/kotlin/build/report/metrics/BuildTime.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ enum class GradleBuildTime(private val parent: GradleBuildTime? = null, private
105105
COMPILER_PERFORMANCE(COMPILATION_ROUND, readableString = "Compiler time"),
106106
COMPILER_INITIALIZATION(COMPILER_PERFORMANCE, "Compiler initialization time"),
107107
CODE_ANALYSIS(COMPILER_PERFORMANCE, "Compiler code analysis"),
108-
CODE_GENERATION(COMPILER_PERFORMANCE, "Compiler code generation"),
109108
IR_TRANSLATION(COMPILER_PERFORMANCE, "Compiler IR translation"),
110-
IR_LOWERING(COMPILER_PERFORMANCE, "Compiler IR lowering"),
111-
IR_GENERATION(COMPILER_PERFORMANCE, "Compiler IR generation"),
109+
CODE_GENERATION(COMPILER_PERFORMANCE, "Compiler code generation"),
110+
IR_LOWERING(CODE_GENERATION, "Compiler IR lowering"),
111+
IR_GENERATION(CODE_GENERATION, "Compiler IR generation"),
112112
IC_WRITE_HISTORY_FILE(INCREMENTAL_COMPILATION_DAEMON, "Write history file"),
113113
SHRINK_AND_SAVE_CURRENT_CLASSPATH_SNAPSHOT_AFTER_COMPILATION(INCREMENTAL_COMPILATION_DAEMON, "Shrink and save current classpath snapshot after compilation"),
114114
INCREMENTAL_SHRINK_CURRENT_CLASSPATH_SNAPSHOT(SHRINK_AND_SAVE_CURRENT_CLASSPATH_SNAPSHOT_AFTER_COMPILATION, "Shrink current classpath snapshot incrementally"),

0 commit comments

Comments
 (0)