summaryrefslogtreecommitdiff
path: root/src/process_file.ml
diff options
context:
space:
mode:
authorpes202019-08-22 08:42:16 +0100
committerpes202019-08-22 08:42:16 +0100
commitc7975a53294d6c7ca9cfce7931489ba3f2bc35c8 (patch)
tree833c7e0d9cf1077932f84a0b3ac453b7af7f9a98 /src/process_file.ml
parent7821c136a4e83cf25367852d2bffdebf850bd70a (diff)
additional option to tweak Coq output to support user-defined monad:
-coq_alt_modules2 <filename> provide additional alternative modules to open only in main (non-_types) Coq output, and suppress default definitions of MR and M monads
Diffstat (limited to 'src/process_file.ml')
-rw-r--r--src/process_file.ml15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/process_file.ml b/src/process_file.ml
index 6dc6384d..eeb7c0d7 100644
--- a/src/process_file.ml
+++ b/src/process_file.ml
@@ -55,6 +55,7 @@ let opt_lem_output_dir = ref None
let opt_isa_output_dir = ref None
let opt_coq_output_dir = ref None
let opt_alt_modules_coq = ref ([]:string list)
+let opt_alt_modules2_coq = ref ([]:string list)
type out_type =
| Lem_out of string list
@@ -331,7 +332,7 @@ let output_lem filename libs type_env defs =
print ol isa_lemmas;
close_output_with_check ext_ol
-let output_coq opt_dir filename alt_modules libs defs =
+let output_coq opt_dir filename alt_modules alt_modules2 libs defs =
let generated_line = generated_line filename in
let types_module = (filename ^ "_types") in
let monad_modules = ["Sail2_prompt_monad"; "Sail2_prompt"; "Sail2_state"] in
@@ -349,14 +350,20 @@ let output_coq opt_dir filename alt_modules libs defs =
| [] -> base_imports_default
| _ -> Str.split (Str.regexp "[ \t]+") (String.concat " " alt_modules)
) in
+ let alt_modules2_imports =
+ (match alt_modules2 with
+ | [] -> []
+ | _ -> Str.split (Str.regexp "[ \t]+") (String.concat " " alt_modules2)
+ ) in
let ((ot,_,_,_) as ext_ot) =
open_output_with_check_unformatted opt_dir (filename ^ "_types" ^ ".v") in
let ((o,_,_,_) as ext_o) =
open_output_with_check_unformatted opt_dir (filename ^ ".v") in
(Pretty_print_coq.pp_defs_coq
(ot, base_imports)
- (o, base_imports @ (types_module :: libs))
- defs generated_line);
+ (o, base_imports @ (types_module :: libs) @ alt_modules2)
+ defs generated_line)
+ (alt_modules2 <> []); (* suppress MR and M defns if alt_modules2 present*)
close_output_with_check ext_ot;
close_output_with_check ext_o
@@ -370,7 +377,7 @@ let output1 libpath out_arg filename type_env defs =
| Lem_out libs ->
output_lem f' libs type_env defs
| Coq_out libs ->
- output_coq !opt_coq_output_dir f' !opt_alt_modules_coq libs defs
+ output_coq !opt_coq_output_dir f' !opt_alt_modules_coq !opt_alt_modules2_coq libs defs
let output libpath out_arg files =
List.iter