Use CLI compiler arguments directly in PhaseConfig creation
This commit is contained in:
+24
@@ -232,6 +232,30 @@ abstract class CommonCompilerArguments : CommonToolArguments() {
|
||||
)
|
||||
var phasesToDump: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xexclude-from-dumping",
|
||||
description = "Names of elements that should not be dumped"
|
||||
)
|
||||
var namesExcludedFromDumping: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xphases-to-validate-before",
|
||||
description = "Validate backend state before these phases"
|
||||
)
|
||||
var phasesToValidateBefore: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xphases-to-validate-after",
|
||||
description = "Validate backend state after these phases"
|
||||
)
|
||||
var phasesToValidateAfter: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xphases-to-validate",
|
||||
description = "Validate backend state both before and after these phases"
|
||||
)
|
||||
var phasesToValidate: Array<String>? by FreezableVar(null)
|
||||
|
||||
@Argument(
|
||||
value = "-Xprofile-phases",
|
||||
description = "Profile backend phases"
|
||||
|
||||
Reference in New Issue
Block a user