aboutsummaryrefslogtreecommitdiffstats
path: root/driver/Driver.ml
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-04-30 11:29:17 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-04-30 11:29:17 +0200
commit7962808d192f2b4d88e8ff1135e3f6e75cf8dea9 (patch)
tree06d41e630aaa47e20d20e65acf3795869c5add51 /driver/Driver.ml
parent7b0b080b118c097c84d5fb57a353cddf8c96b3ef (diff)
parente570597b2f80a2a86b8672a40387dc63fd31b555 (diff)
downloadcompcert-kvx-7962808d192f2b4d88e8ff1135e3f6e75cf8dea9.tar.gz
compcert-kvx-7962808d192f2b4d88e8ff1135e3f6e75cf8dea9.zip
Merge branch 'dumb-scheduling' into mppa-work
Diffstat (limited to 'driver/Driver.ml')
-rw-r--r--driver/Driver.ml9
1 files changed, 7 insertions, 2 deletions
diff --git a/driver/Driver.ml b/driver/Driver.ml
index c68c066a..2672ed99 100644
--- a/driver/Driver.ml
+++ b/driver/Driver.ml
@@ -194,7 +194,8 @@ Processing options:
-fcse Perform common subexpression elimination [on]
-fredundancy Perform redundancy elimination [on]
-fpostpass Perform postpass scheduling (only for K1 architecture) [on]
- -fpostpass-ilp Use integer linear programming for postpass scheduling [off]
+ -fpostpass= <optim> Perform postpass scheduling with the specified optimization [list]
+ (<optim>=list: list scheduling, <optim>=ilp: ILP, <optim>=dumb: just packing bundles)
-finline Perform inlining of functions [on]
-finline-functions-called-once Integrate functions only required by their
single caller [on]
@@ -264,6 +265,10 @@ let num_input_files = ref 0
let cmdline_actions =
let f_opt name ref =
[Exact("-f" ^ name), Set ref; Exact("-fno-" ^ name), Unset ref] in
+ let f_opt_str name ref strref =
+ [Exact("-f" ^ name ^ "="), String
+ (fun s -> (strref := (if s == "" then "list" else s)); ref := true)
+ ] in
[
(* Getting help *)
Exact "-help", Unit print_usage_and_exit;
@@ -364,7 +369,7 @@ let cmdline_actions =
@ f_opt "cse" option_fcse
@ f_opt "redundancy" option_fredundancy
@ f_opt "postpass" option_fpostpass
- @ f_opt "postpass-ilp" option_fpostpass_ilp
+ @ f_opt_str "postpass" option_fpostpass option_fpostpass_sched
@ f_opt "inline" option_finline
@ f_opt "inline-functions-called-once" option_finline_functions_called_once
(* Code generation options *)