2020-04-16 18:47:35 +03:00
|
|
|
(* This file is part of the Catala compiler, a specification language for tax
|
2021-05-27 19:56:47 +03:00
|
|
|
and social benefits computation rules. Copyright (C) 2020 Inria,
|
|
|
|
contributors: Denis Merigoux <denis.merigoux@inria.fr>, Emile Rolley
|
|
|
|
<emile.rolley@tuta.io>
|
2020-03-08 03:52:31 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
|
|
use this file except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific language governing permissions and limitations under
|
|
|
|
the License. *)
|
|
|
|
|
2022-11-21 12:46:17 +03:00
|
|
|
open Catala_utils
|
2020-11-23 11:22:47 +03:00
|
|
|
|
2021-05-26 22:18:18 +03:00
|
|
|
(** Associates a {!type: Cli.backend_lang} with its string represtation. *)
|
|
|
|
let languages = ["en", Cli.En; "fr", Cli.Fr; "pl", Cli.Pl]
|
2021-05-24 17:24:45 +03:00
|
|
|
|
2022-01-02 16:53:51 +03:00
|
|
|
(** Associates a file extension with its corresponding {!type: Cli.backend_lang}
|
2021-05-24 17:24:45 +03:00
|
|
|
string representation. *)
|
2021-05-26 18:44:57 +03:00
|
|
|
let extensions = [".catala_fr", "fr"; ".catala_en", "en"; ".catala_pl", "pl"]
|
2021-05-24 17:24:45 +03:00
|
|
|
|
2021-04-22 12:57:50 +03:00
|
|
|
(** Entry function for the executable. Returns a negative number in case of
|
2022-03-16 13:44:34 +03:00
|
|
|
error. Usage: [driver source_file options]*)
|
2022-03-04 21:25:06 +03:00
|
|
|
let driver source_file (options : Cli.options) : int =
|
2020-08-07 16:29:52 +03:00
|
|
|
try
|
2022-03-04 20:32:03 +03:00
|
|
|
List.iter
|
|
|
|
(fun d ->
|
|
|
|
match Sys.is_directory d with
|
|
|
|
| true -> Plugin.load_dir d
|
|
|
|
| false -> ()
|
|
|
|
| exception Sys_error _ -> ())
|
|
|
|
options.plugins_dirs;
|
2022-03-04 21:25:06 +03:00
|
|
|
Cli.set_option_globals options;
|
2022-10-25 11:45:50 +03:00
|
|
|
if options.debug then Printexc.record_backtrace true;
|
2020-08-07 16:29:52 +03:00
|
|
|
Cli.debug_print "Reading files...";
|
2021-05-24 14:10:53 +03:00
|
|
|
let filename = ref "" in
|
2022-03-04 21:25:06 +03:00
|
|
|
(match source_file with
|
|
|
|
| Pos.FileName f -> filename := f
|
|
|
|
| Contents c -> Cli.contents := c);
|
|
|
|
(match options.max_prec_digits with
|
|
|
|
| None -> ()
|
|
|
|
| Some i -> Cli.max_prec_digits := i);
|
2021-05-24 16:41:59 +03:00
|
|
|
let l =
|
2022-03-04 21:25:06 +03:00
|
|
|
match options.language with
|
2021-05-24 16:41:59 +03:00
|
|
|
| Some l -> l
|
2021-05-24 17:24:45 +03:00
|
|
|
| None -> (
|
2021-05-24 16:41:59 +03:00
|
|
|
(* Try to infer the language from the intput file extension. *)
|
2021-05-24 22:02:04 +03:00
|
|
|
let ext = Filename.extension !filename in
|
|
|
|
if ext = "" then
|
2021-05-24 14:10:53 +03:00
|
|
|
Errors.raise_error
|
2022-03-08 15:04:27 +03:00
|
|
|
"No file extension found for the file '%s'. (Try to add one or to \
|
|
|
|
specify the -l flag)"
|
|
|
|
!filename;
|
2021-05-24 17:24:45 +03:00
|
|
|
try List.assoc ext extensions with Not_found -> ext)
|
2021-05-24 16:41:59 +03:00
|
|
|
in
|
|
|
|
let language =
|
2021-05-24 17:24:45 +03:00
|
|
|
try List.assoc l languages
|
|
|
|
with Not_found ->
|
2022-03-08 15:04:27 +03:00
|
|
|
Errors.raise_error
|
|
|
|
"The selected language (%s) is not supported by Catala" l
|
2020-08-07 16:29:52 +03:00
|
|
|
in
|
2021-05-26 22:18:18 +03:00
|
|
|
Cli.locale_lang := language;
|
2022-03-04 21:25:06 +03:00
|
|
|
let backend = options.backend in
|
2020-08-07 16:29:52 +03:00
|
|
|
let backend =
|
2022-03-04 20:32:03 +03:00
|
|
|
match Cli.backend_option_of_string backend with
|
|
|
|
| #Cli.backend_option_builtin as backend -> backend
|
|
|
|
| `Plugin s -> (
|
|
|
|
try `Plugin (Plugin.find s)
|
|
|
|
with Not_found ->
|
|
|
|
Errors.raise_error
|
2023-01-17 15:46:21 +03:00
|
|
|
"The selected backend (%s) is not supported by Catala, nor was a \
|
|
|
|
plugin by this name found under %a"
|
|
|
|
backend
|
|
|
|
(Format.pp_print_list
|
|
|
|
~pp_sep:(fun ppf () -> Format.fprintf ppf "@ or @ ")
|
|
|
|
(fun ppf dir ->
|
|
|
|
Format.pp_print_string ppf
|
|
|
|
(try Unix.readlink dir with _ -> dir)))
|
|
|
|
options.plugins_dirs)
|
2022-03-08 18:12:25 +03:00
|
|
|
in
|
2021-05-29 15:15:23 +03:00
|
|
|
let prgm =
|
|
|
|
Surface.Parser_driver.parse_top_level_file source_file language
|
2020-08-07 16:29:52 +03:00
|
|
|
in
|
2021-05-29 15:15:23 +03:00
|
|
|
let prgm = Surface.Fill_positions.fill_pos_with_legislative_info prgm in
|
2022-07-29 14:39:33 +03:00
|
|
|
let get_output ?ext =
|
|
|
|
File.get_out_channel ~source_file ~output_file:options.output_file ?ext
|
2022-05-31 17:24:37 +03:00
|
|
|
in
|
2022-07-29 14:39:33 +03:00
|
|
|
let get_output_format ?ext =
|
|
|
|
File.get_formatter_of_out_channel ~source_file
|
|
|
|
~output_file:options.output_file ?ext
|
2022-05-31 17:24:37 +03:00
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
(match backend with
|
|
|
|
| `Makefile ->
|
2020-08-07 16:29:52 +03:00
|
|
|
let backend_extensions_list = [".tex"] in
|
2020-12-26 19:37:41 +03:00
|
|
|
let source_file =
|
|
|
|
match source_file with
|
|
|
|
| FileName f -> f
|
|
|
|
| Contents _ ->
|
|
|
|
Errors.raise_error
|
|
|
|
"The Makefile backend does not work if the input is not a file"
|
2022-05-04 18:40:55 +03:00
|
|
|
in
|
2022-05-31 17:24:37 +03:00
|
|
|
let output_file, with_output = get_output ~ext:".d" () in
|
|
|
|
Cli.debug_print "Writing list of dependencies to %s..."
|
|
|
|
(Option.value ~default:"stdout" output_file);
|
|
|
|
with_output
|
|
|
|
@@ fun oc ->
|
2020-08-07 16:29:52 +03:00
|
|
|
Printf.fprintf oc "%s:\\\n%s\n%s:"
|
|
|
|
(String.concat "\\\n"
|
2022-05-31 17:24:37 +03:00
|
|
|
(Option.value ~default:"stdout" output_file
|
2021-05-29 15:15:23 +03:00
|
|
|
:: List.map
|
|
|
|
(fun ext -> Filename.remove_extension source_file ^ ext)
|
|
|
|
backend_extensions_list))
|
|
|
|
(String.concat "\\\n" prgm.program_source_files)
|
2022-03-04 20:32:03 +03:00
|
|
|
(String.concat "\\\n" prgm.program_source_files)
|
|
|
|
| (`Latex | `Html) as backend ->
|
2022-03-08 15:04:27 +03:00
|
|
|
Cli.debug_print "Weaving literate program into %s"
|
2022-03-04 20:32:03 +03:00
|
|
|
(match backend with `Latex -> "LaTeX" | `Html -> "HTML");
|
2022-05-31 17:24:37 +03:00
|
|
|
let output_file, with_output =
|
|
|
|
get_output_format ()
|
|
|
|
~ext:(match backend with `Latex -> ".tex" | `Html -> ".html")
|
2022-05-04 18:40:55 +03:00
|
|
|
in
|
2022-05-31 17:24:37 +03:00
|
|
|
with_output (fun fmt ->
|
2022-05-18 16:10:59 +03:00
|
|
|
let weave_output =
|
|
|
|
match backend with
|
2022-05-26 20:05:06 +03:00
|
|
|
| `Latex ->
|
|
|
|
Literate.Latex.ast_to_latex language
|
|
|
|
~print_only_law:options.print_only_law
|
|
|
|
| `Html ->
|
|
|
|
Literate.Html.ast_to_html language
|
|
|
|
~print_only_law:options.print_only_law
|
2022-05-18 16:10:59 +03:00
|
|
|
in
|
2022-05-31 17:24:37 +03:00
|
|
|
Cli.debug_print "Writing to %s"
|
|
|
|
(Option.value ~default:"stdout" output_file);
|
2022-05-18 16:10:59 +03:00
|
|
|
if options.wrap_weaved_output then
|
|
|
|
match backend with
|
2022-03-04 20:32:03 +03:00
|
|
|
| `Latex ->
|
2022-05-18 16:10:59 +03:00
|
|
|
Literate.Latex.wrap_latex prgm.Surface.Ast.program_source_files
|
|
|
|
language fmt (fun fmt -> weave_output fmt prgm)
|
2022-03-04 20:32:03 +03:00
|
|
|
| `Html ->
|
2022-05-18 16:10:59 +03:00
|
|
|
Literate.Html.wrap_html prgm.Surface.Ast.program_source_files
|
|
|
|
language fmt (fun fmt -> weave_output fmt prgm)
|
2022-03-04 20:32:03 +03:00
|
|
|
else weave_output fmt prgm)
|
|
|
|
| ( `Interpret | `Typecheck | `OCaml | `Python | `Scalc | `Lcalc | `Dcalc
|
2023-02-15 13:18:49 +03:00
|
|
|
| `Scopelang | `Proof | `DcalcInvariants | `Plugin _ ) as backend -> (
|
2020-11-26 15:38:42 +03:00
|
|
|
Cli.debug_print "Name resolution...";
|
2022-11-07 15:50:28 +03:00
|
|
|
let ctxt = Desugared.Name_resolution.form_context prgm in
|
2020-08-06 16:44:51 +03:00
|
|
|
let scope_uid =
|
2022-03-04 21:25:06 +03:00
|
|
|
match options.ex_scope, backend with
|
2022-03-04 20:32:03 +03:00
|
|
|
| None, `Interpret ->
|
2022-01-10 19:57:11 +03:00
|
|
|
Errors.raise_error "No scope was provided for execution."
|
2021-04-13 16:22:25 +03:00
|
|
|
| None, _ ->
|
2022-10-21 16:47:17 +03:00
|
|
|
let _, scope =
|
|
|
|
try
|
2022-11-22 22:57:59 +03:00
|
|
|
Shared_ast.IdentName.Map.filter_map
|
2022-10-21 16:47:17 +03:00
|
|
|
(fun _ -> function
|
2022-11-07 15:50:28 +03:00
|
|
|
| Desugared.Name_resolution.TScope (uid, _) -> Some uid
|
2022-10-21 16:47:17 +03:00
|
|
|
| _ -> None)
|
|
|
|
ctxt.typedefs
|
2022-11-22 22:57:59 +03:00
|
|
|
|> Shared_ast.IdentName.Map.choose
|
2022-10-21 16:47:17 +03:00
|
|
|
with Not_found ->
|
|
|
|
Errors.raise_error "There isn't any scope inside the program."
|
|
|
|
in
|
|
|
|
scope
|
2021-01-29 01:46:39 +03:00
|
|
|
| Some name, _ -> (
|
2022-11-22 22:57:59 +03:00
|
|
|
match Shared_ast.IdentName.Map.find_opt name ctxt.typedefs with
|
2022-11-07 15:50:28 +03:00
|
|
|
| Some (Desugared.Name_resolution.TScope (uid, _)) -> uid
|
2022-10-21 16:47:17 +03:00
|
|
|
| _ ->
|
2022-03-08 15:04:27 +03:00
|
|
|
Errors.raise_error "There is no scope \"%s\" inside the program."
|
2022-10-21 16:47:17 +03:00
|
|
|
name)
|
2022-05-04 18:40:55 +03:00
|
|
|
in
|
2020-11-26 15:38:42 +03:00
|
|
|
Cli.debug_print "Desugaring...";
|
2022-11-07 15:50:28 +03:00
|
|
|
let prgm = Desugared.From_surface.translate_program ctxt prgm in
|
2022-11-28 18:23:27 +03:00
|
|
|
Cli.debug_print "Disambiguating...";
|
|
|
|
let prgm = Desugared.Disambiguate.program prgm in
|
2020-11-26 15:38:42 +03:00
|
|
|
Cli.debug_print "Collecting rules...";
|
2022-11-07 15:50:28 +03:00
|
|
|
let prgm = Scopelang.From_desugared.translate_program prgm in
|
2021-01-28 02:28:28 +03:00
|
|
|
match backend with
|
2022-03-04 20:32:03 +03:00
|
|
|
| `Scopelang ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let _output_file, with_output = get_output_format () in
|
|
|
|
with_output
|
|
|
|
@@ fun fmt ->
|
2022-03-04 20:32:03 +03:00
|
|
|
if Option.is_some options.ex_scope then
|
|
|
|
Format.fprintf fmt "%a\n"
|
2022-08-25 13:09:51 +03:00
|
|
|
(Scopelang.Print.scope prgm.program_ctx ~debug:options.debug)
|
2022-11-21 12:12:45 +03:00
|
|
|
( scope_uid,
|
|
|
|
Shared_ast.ScopeName.Map.find scope_uid prgm.program_scopes )
|
2022-03-04 20:32:03 +03:00
|
|
|
else
|
|
|
|
Format.fprintf fmt "%a\n"
|
2022-08-25 13:09:51 +03:00
|
|
|
(Scopelang.Print.program ~debug:options.debug)
|
2022-03-04 20:32:03 +03:00
|
|
|
prgm
|
2022-10-05 12:46:18 +03:00
|
|
|
| ( `Interpret | `Typecheck | `OCaml | `Python | `Scalc | `Lcalc | `Dcalc
|
2023-02-15 13:18:49 +03:00
|
|
|
| `Proof | `DcalcInvariants | `Plugin _ ) as backend -> (
|
2022-09-26 19:19:53 +03:00
|
|
|
Cli.debug_print "Typechecking...";
|
2022-09-27 19:45:22 +03:00
|
|
|
let type_ordering =
|
|
|
|
Scopelang.Dependency.check_type_cycles prgm.program_ctx.ctx_structs
|
|
|
|
prgm.program_ctx.ctx_enums
|
2021-12-10 00:59:39 +03:00
|
|
|
in
|
2022-09-28 13:27:47 +03:00
|
|
|
let prgm = Scopelang.Ast.type_program prgm in
|
2022-09-27 19:45:22 +03:00
|
|
|
Cli.debug_print "Translating to default calculus...";
|
2022-11-07 15:50:28 +03:00
|
|
|
let prgm = Dcalc.From_scopelang.translate_program prgm in
|
2022-01-07 20:36:56 +03:00
|
|
|
let prgm =
|
2022-03-04 21:25:06 +03:00
|
|
|
if options.optimize then begin
|
2022-03-04 20:32:03 +03:00
|
|
|
Cli.debug_print "Optimizing default calculus...";
|
|
|
|
Dcalc.Optimizations.optimize_program prgm
|
2022-01-07 20:36:56 +03:00
|
|
|
end
|
|
|
|
else prgm
|
|
|
|
in
|
2023-01-05 20:56:19 +03:00
|
|
|
(* Cli.debug_print (Format.asprintf "Typechecking results :@\n%a"
|
|
|
|
(Print.typ prgm.decl_ctx) typ); *)
|
2022-03-04 20:32:03 +03:00
|
|
|
match backend with
|
2022-10-05 12:46:18 +03:00
|
|
|
| `Typecheck ->
|
2023-01-05 20:56:19 +03:00
|
|
|
Cli.debug_print "Typechecking again...";
|
|
|
|
let _ =
|
|
|
|
try Shared_ast.Typing.program prgm
|
|
|
|
with Errors.StructuredError (msg, details) ->
|
|
|
|
let msg =
|
|
|
|
"Typing error occured during re-typing on the 'default \
|
|
|
|
calculus'. This is a bug in the Catala compiler.\n"
|
|
|
|
^ msg
|
|
|
|
in
|
|
|
|
raise (Errors.StructuredError (msg, details))
|
|
|
|
in
|
2022-10-05 12:46:18 +03:00
|
|
|
(* That's it! *)
|
|
|
|
Cli.result_print "Typechecking successful!"
|
2022-03-04 20:32:03 +03:00
|
|
|
| `Dcalc ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let _output_file, with_output = get_output_format () in
|
|
|
|
with_output
|
|
|
|
@@ fun fmt ->
|
2022-03-04 20:32:03 +03:00
|
|
|
if Option.is_some options.ex_scope then
|
|
|
|
Format.fprintf fmt "%a\n"
|
2022-08-17 17:14:14 +03:00
|
|
|
(Shared_ast.Scope.format ~debug:options.debug prgm.decl_ctx)
|
2022-03-04 20:32:03 +03:00
|
|
|
( scope_uid,
|
|
|
|
Option.get
|
2022-08-16 18:09:26 +03:00
|
|
|
(Shared_ast.Scope.fold_left ~init:None
|
2023-01-23 14:19:36 +03:00
|
|
|
~f:(fun acc def _ ->
|
|
|
|
match def with
|
|
|
|
| ScopeDef (name, body)
|
|
|
|
when Shared_ast.ScopeName.equal name scope_uid ->
|
|
|
|
Some body
|
|
|
|
| _ -> acc)
|
2023-02-13 17:00:23 +03:00
|
|
|
prgm.code_items) )
|
2022-03-04 20:32:03 +03:00
|
|
|
else
|
2022-05-31 19:38:14 +03:00
|
|
|
let prgrm_dcalc_expr =
|
Swap boxing and annotations in expressions
This was the only reasonable solution I found to the issue raised
[here](https://github.com/CatalaLang/catala/pull/334#discussion_r987175884).
This was a pretty tedious rewrite, but it should now ensure we are doing things
correctly. As a bonus, the "smart" expression constructors are now used
everywhere to build expressions (so another refactoring like this one should be
much easier) and this makes the code overall feel more
straightforward (`Bindlib.box_apply` or `let+` no longer need to be visible!)
---
Basically, we were using values of type `gexpr box = naked_gexpr marked box`
throughout when (re-)building expressions. This was done 99% of the time by
using `Bindlib.box_apply add_mark naked_e` right after building `naked_e`. In
lots of places, we needed to recover the annotation of this expression later on,
typically to build its parent term (to inherit the position, or build the type).
Since it wasn't always possible to wrap these uses within `box_apply` (esp. as
bindlib boxes aren't a monad), here and there we had to call `Bindlib.unbox`,
just to recover the position or type. This had the very unpleasant effect of
forcing the resolution of the whole box (including applying any stored closures)
to reach the top-level annotation which isn't even dependant on specific
variable bindings. Then, generally, throwing away the result.
Therefore, the change proposed here transforms
- `naked_gexpr marked Bindlib.box` into
- `naked_gexpr Bindlib.box marked` (aliased to `boxed_gexpr` or `gexpr boxed` for
convenience)
This means only
1. not fitting the mark into the box right away when building, and
2. accessing the top-level mark directly without unboxing
The functions for building terms from module `Shared_ast.Expr` could be changed
easily. But then they needed to be consistently used throughout, without
manually building terms through `Bindlib.apply_box` -- which covers most of the
changes in this patch.
`Expr.Box.inj` is provided to swap back to a box, before binding for example.
Additionally, this gives a 40% speedup on `make -C examples pass_all_tests`,
which hints at the amount of unnecessary work we were doing --'
2022-10-06 20:13:45 +03:00
|
|
|
Shared_ast.Expr.unbox (Shared_ast.Program.to_expr prgm scope_uid)
|
2022-05-31 19:38:14 +03:00
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
Format.fprintf fmt "%a\n"
|
2023-01-05 20:56:19 +03:00
|
|
|
(Shared_ast.Expr.format ~debug:options.debug prgm.decl_ctx)
|
2022-03-04 20:32:03 +03:00
|
|
|
prgrm_dcalc_expr
|
2023-02-15 13:18:49 +03:00
|
|
|
| ( `Interpret | `OCaml | `Python | `Scalc | `Lcalc | `Proof
|
|
|
|
| `DcalcInvariants | `Plugin _ ) as backend -> (
|
2022-09-28 13:27:47 +03:00
|
|
|
Cli.debug_print "Typechecking again...";
|
|
|
|
let prgm =
|
|
|
|
try Shared_ast.Typing.program prgm
|
|
|
|
with Errors.StructuredError (msg, details) ->
|
|
|
|
let msg =
|
|
|
|
"Typing error occured during re-typing on the 'default \
|
|
|
|
calculus'. This is a bug in the Catala compiler.\n"
|
|
|
|
^ msg
|
|
|
|
in
|
|
|
|
raise (Errors.StructuredError (msg, details))
|
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
match backend with
|
|
|
|
| `Proof ->
|
|
|
|
let vcs =
|
|
|
|
Verification.Conditions.generate_verification_conditions prgm
|
|
|
|
(match options.ex_scope with
|
|
|
|
| None -> None
|
|
|
|
| Some _ -> Some scope_uid)
|
|
|
|
in
|
|
|
|
|
|
|
|
Verification.Solver.solve_vc prgm.decl_ctx vcs
|
2023-02-15 13:18:49 +03:00
|
|
|
| `DcalcInvariants ->
|
|
|
|
Cli.debug_format "Checking invariants";
|
2023-03-21 16:31:21 +03:00
|
|
|
let open Dcalc.Invariants in
|
2023-02-28 10:36:34 +03:00
|
|
|
let result =
|
|
|
|
List.fold_left ( && ) true
|
|
|
|
[
|
|
|
|
check_invariant (invariant_default_no_arrow ()) prgm;
|
|
|
|
check_invariant (invariant_no_partial_evaluation ()) prgm;
|
|
|
|
check_invariant (invariant_no_return_a_function ()) prgm;
|
2023-03-21 16:31:21 +03:00
|
|
|
check_invariant (invariant_app_inversion ()) prgm;
|
|
|
|
check_invariant (invariant_match_inversion ()) prgm;
|
2023-02-28 10:36:34 +03:00
|
|
|
]
|
|
|
|
in
|
|
|
|
|
|
|
|
if result then Cli.debug_format "Finished checking invariants"
|
|
|
|
else
|
|
|
|
raise
|
|
|
|
(Errors.StructuredError ("Invariant invalid", [None, Pos.no_pos]))
|
2022-03-04 20:32:03 +03:00
|
|
|
| `Interpret ->
|
|
|
|
Cli.debug_print "Starting interpretation...";
|
2022-05-31 19:38:14 +03:00
|
|
|
let prgrm_dcalc_expr =
|
Swap boxing and annotations in expressions
This was the only reasonable solution I found to the issue raised
[here](https://github.com/CatalaLang/catala/pull/334#discussion_r987175884).
This was a pretty tedious rewrite, but it should now ensure we are doing things
correctly. As a bonus, the "smart" expression constructors are now used
everywhere to build expressions (so another refactoring like this one should be
much easier) and this makes the code overall feel more
straightforward (`Bindlib.box_apply` or `let+` no longer need to be visible!)
---
Basically, we were using values of type `gexpr box = naked_gexpr marked box`
throughout when (re-)building expressions. This was done 99% of the time by
using `Bindlib.box_apply add_mark naked_e` right after building `naked_e`. In
lots of places, we needed to recover the annotation of this expression later on,
typically to build its parent term (to inherit the position, or build the type).
Since it wasn't always possible to wrap these uses within `box_apply` (esp. as
bindlib boxes aren't a monad), here and there we had to call `Bindlib.unbox`,
just to recover the position or type. This had the very unpleasant effect of
forcing the resolution of the whole box (including applying any stored closures)
to reach the top-level annotation which isn't even dependant on specific
variable bindings. Then, generally, throwing away the result.
Therefore, the change proposed here transforms
- `naked_gexpr marked Bindlib.box` into
- `naked_gexpr Bindlib.box marked` (aliased to `boxed_gexpr` or `gexpr boxed` for
convenience)
This means only
1. not fitting the mark into the box right away when building, and
2. accessing the top-level mark directly without unboxing
The functions for building terms from module `Shared_ast.Expr` could be changed
easily. But then they needed to be consistently used throughout, without
manually building terms through `Bindlib.apply_box` -- which covers most of the
changes in this patch.
`Expr.Box.inj` is provided to swap back to a box, before binding for example.
Additionally, this gives a 40% speedup on `make -C examples pass_all_tests`,
which hints at the amount of unnecessary work we were doing --'
2022-10-06 20:13:45 +03:00
|
|
|
Shared_ast.Expr.unbox (Shared_ast.Program.to_expr prgm scope_uid)
|
2022-05-31 19:38:14 +03:00
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
let results =
|
|
|
|
Dcalc.Interpreter.interpret_program prgm.decl_ctx prgrm_dcalc_expr
|
|
|
|
in
|
|
|
|
let results =
|
|
|
|
List.sort
|
|
|
|
(fun ((v1, _), _) ((v2, _), _) -> String.compare v1 v2)
|
|
|
|
results
|
|
|
|
in
|
|
|
|
Cli.debug_print "End of interpretation";
|
|
|
|
Cli.result_print "Computation successful!%s"
|
|
|
|
(if List.length results > 0 then " Results:" else "");
|
|
|
|
List.iter
|
|
|
|
(fun ((var, _), result) ->
|
|
|
|
Cli.result_format "@[<hov 2>%s@ =@ %a@]" var
|
2022-08-17 17:14:14 +03:00
|
|
|
(Shared_ast.Expr.format ~debug:options.debug prgm.decl_ctx)
|
2022-03-04 20:32:03 +03:00
|
|
|
result)
|
|
|
|
results
|
|
|
|
| (`OCaml | `Python | `Lcalc | `Scalc | `Plugin _) as backend -> (
|
|
|
|
Cli.debug_print "Compiling program into lambda calculus...";
|
|
|
|
let prgm =
|
|
|
|
if options.avoid_exceptions then
|
2023-03-16 19:14:33 +03:00
|
|
|
Lcalc.Compile_without_exceptions.translate_program prgm
|
|
|
|
else
|
|
|
|
Shared_ast.Program.untype
|
|
|
|
@@ Lcalc.Compile_with_exceptions.translate_program prgm
|
2022-03-04 20:32:03 +03:00
|
|
|
in
|
|
|
|
let prgm =
|
|
|
|
if options.optimize then begin
|
|
|
|
Cli.debug_print "Optimizing lambda calculus...";
|
|
|
|
Lcalc.Optimizations.optimize_program prgm
|
|
|
|
end
|
2022-08-16 18:09:26 +03:00
|
|
|
else Shared_ast.Program.untype prgm
|
2022-03-04 20:32:03 +03:00
|
|
|
in
|
2023-03-23 15:46:17 +03:00
|
|
|
let _ =
|
|
|
|
Cli.debug_format "program: @.%a"
|
|
|
|
(Shared_ast.Program.format ~debug:true)
|
|
|
|
prgm
|
|
|
|
in
|
|
|
|
let prgm =
|
|
|
|
Shared_ast.Program.untype @@ Shared_ast.Typing.program prgm
|
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
let prgm =
|
|
|
|
if options.closure_conversion then (
|
|
|
|
Cli.debug_print "Performing closure conversion...";
|
|
|
|
let prgm = Lcalc.Closure_conversion.closure_conversion prgm in
|
|
|
|
let prgm = Bindlib.unbox prgm in
|
|
|
|
prgm)
|
|
|
|
else prgm
|
|
|
|
in
|
|
|
|
match backend with
|
|
|
|
| `Lcalc ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let _output_file, with_output = get_output_format () in
|
|
|
|
with_output
|
|
|
|
@@ fun fmt ->
|
2022-05-18 16:10:59 +03:00
|
|
|
if Option.is_some options.ex_scope then
|
|
|
|
Format.fprintf fmt "%a\n"
|
2022-08-17 17:14:14 +03:00
|
|
|
(Shared_ast.Scope.format ~debug:options.debug prgm.decl_ctx)
|
2022-11-17 19:13:35 +03:00
|
|
|
(scope_uid, Shared_ast.Program.get_scope_body prgm scope_uid)
|
2022-05-18 16:10:59 +03:00
|
|
|
else
|
2022-07-22 16:49:57 +03:00
|
|
|
let prgrm_lcalc_expr =
|
Swap boxing and annotations in expressions
This was the only reasonable solution I found to the issue raised
[here](https://github.com/CatalaLang/catala/pull/334#discussion_r987175884).
This was a pretty tedious rewrite, but it should now ensure we are doing things
correctly. As a bonus, the "smart" expression constructors are now used
everywhere to build expressions (so another refactoring like this one should be
much easier) and this makes the code overall feel more
straightforward (`Bindlib.box_apply` or `let+` no longer need to be visible!)
---
Basically, we were using values of type `gexpr box = naked_gexpr marked box`
throughout when (re-)building expressions. This was done 99% of the time by
using `Bindlib.box_apply add_mark naked_e` right after building `naked_e`. In
lots of places, we needed to recover the annotation of this expression later on,
typically to build its parent term (to inherit the position, or build the type).
Since it wasn't always possible to wrap these uses within `box_apply` (esp. as
bindlib boxes aren't a monad), here and there we had to call `Bindlib.unbox`,
just to recover the position or type. This had the very unpleasant effect of
forcing the resolution of the whole box (including applying any stored closures)
to reach the top-level annotation which isn't even dependant on specific
variable bindings. Then, generally, throwing away the result.
Therefore, the change proposed here transforms
- `naked_gexpr marked Bindlib.box` into
- `naked_gexpr Bindlib.box marked` (aliased to `boxed_gexpr` or `gexpr boxed` for
convenience)
This means only
1. not fitting the mark into the box right away when building, and
2. accessing the top-level mark directly without unboxing
The functions for building terms from module `Shared_ast.Expr` could be changed
easily. But then they needed to be consistently used throughout, without
manually building terms through `Bindlib.apply_box` -- which covers most of the
changes in this patch.
`Expr.Box.inj` is provided to swap back to a box, before binding for example.
Additionally, this gives a 40% speedup on `make -C examples pass_all_tests`,
which hints at the amount of unnecessary work we were doing --'
2022-10-06 20:13:45 +03:00
|
|
|
Shared_ast.Expr.unbox
|
|
|
|
(Shared_ast.Program.to_expr prgm scope_uid)
|
2022-07-22 16:49:57 +03:00
|
|
|
in
|
|
|
|
Format.fprintf fmt "%a\n"
|
2023-01-07 22:22:36 +03:00
|
|
|
(Shared_ast.Expr.format ~debug:options.debug prgm.decl_ctx)
|
2022-07-22 16:49:57 +03:00
|
|
|
prgrm_lcalc_expr
|
2022-03-04 20:32:03 +03:00
|
|
|
| (`OCaml | `Python | `Scalc | `Plugin _) as backend -> (
|
|
|
|
match backend with
|
|
|
|
| `OCaml ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let output_file, with_output =
|
|
|
|
get_output_format ~ext:".ml" ()
|
|
|
|
in
|
|
|
|
with_output
|
|
|
|
@@ fun fmt ->
|
2022-03-04 20:32:03 +03:00
|
|
|
Cli.debug_print "Compiling program into OCaml...";
|
2022-05-31 17:24:37 +03:00
|
|
|
Cli.debug_print "Writing to %s..."
|
|
|
|
(Option.value ~default:"stdout" output_file);
|
2022-03-04 20:32:03 +03:00
|
|
|
Lcalc.To_ocaml.format_program fmt prgm type_ordering
|
|
|
|
| `Plugin (Plugin.Lcalc p) ->
|
2022-08-01 11:28:38 +03:00
|
|
|
let output_file, _ =
|
|
|
|
get_output_format ~ext:p.Plugin.extension ()
|
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
Cli.debug_print "Compiling program through backend \"%s\"..."
|
|
|
|
p.Plugin.name;
|
2022-07-29 14:40:43 +03:00
|
|
|
p.Plugin.apply ~source_file ~output_file ~scope:options.ex_scope
|
|
|
|
prgm type_ordering
|
2022-03-04 20:32:03 +03:00
|
|
|
| (`Python | `Scalc | `Plugin (Plugin.Scalc _)) as backend -> (
|
2023-02-17 21:47:15 +03:00
|
|
|
let prgm = Scalc.From_lcalc.translate_program prgm in
|
2022-03-04 20:32:03 +03:00
|
|
|
match backend with
|
|
|
|
| `Scalc ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let _output_file, with_output = get_output_format () in
|
|
|
|
with_output
|
|
|
|
@@ fun fmt ->
|
2022-03-04 20:32:03 +03:00
|
|
|
if Option.is_some options.ex_scope then
|
|
|
|
Format.fprintf fmt "%a\n"
|
2023-02-13 17:00:23 +03:00
|
|
|
(Scalc.Print.format_item ~debug:options.debug
|
2022-03-04 20:32:03 +03:00
|
|
|
prgm.decl_ctx)
|
|
|
|
(List.find
|
2023-02-13 17:00:23 +03:00
|
|
|
(function
|
|
|
|
| Scalc.Ast.SScope { scope_body_name; _ } ->
|
|
|
|
scope_body_name = scope_uid
|
|
|
|
| _ -> false)
|
|
|
|
prgm.code_items)
|
2023-02-10 20:56:40 +03:00
|
|
|
else Scalc.Print.format_program prgm.decl_ctx fmt prgm
|
2022-03-04 20:32:03 +03:00
|
|
|
| `Python ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let output_file, with_output =
|
|
|
|
get_output_format ~ext:".py" ()
|
|
|
|
in
|
2022-03-04 20:32:03 +03:00
|
|
|
Cli.debug_print "Compiling program into Python...";
|
2022-05-31 17:24:37 +03:00
|
|
|
Cli.debug_print "Writing to %s..."
|
|
|
|
(Option.value ~default:"stdout" output_file);
|
|
|
|
with_output
|
|
|
|
@@ fun fmt ->
|
2022-03-04 20:32:03 +03:00
|
|
|
Scalc.To_python.format_program fmt prgm type_ordering
|
|
|
|
| `Plugin (Plugin.Lcalc _) -> assert false
|
|
|
|
| `Plugin (Plugin.Scalc p) ->
|
2022-05-31 17:24:37 +03:00
|
|
|
let output_file, _ = get_output ~ext:p.Plugin.extension () in
|
2022-03-04 20:32:03 +03:00
|
|
|
Cli.debug_print "Compiling program through backend \"%s\"..."
|
|
|
|
p.Plugin.name;
|
2022-05-31 17:24:37 +03:00
|
|
|
Cli.debug_print "Writing to %s..."
|
|
|
|
(Option.value ~default:"stdout" output_file);
|
2022-07-29 14:39:33 +03:00
|
|
|
p.Plugin.apply ~source_file ~output_file
|
|
|
|
~scope:options.ex_scope prgm type_ordering)))))));
|
2022-03-04 20:32:03 +03:00
|
|
|
0
|
2022-02-01 17:41:53 +03:00
|
|
|
with
|
|
|
|
| Errors.StructuredError (msg, pos) ->
|
2022-07-05 11:29:24 +03:00
|
|
|
let bt = Printexc.get_raw_backtrace () in
|
2022-03-08 15:04:27 +03:00
|
|
|
Cli.error_print "%s" (Errors.print_structured_error msg pos);
|
2022-07-05 11:29:24 +03:00
|
|
|
if Printexc.backtrace_status () then Printexc.print_raw_backtrace stderr bt;
|
2022-02-01 17:41:53 +03:00
|
|
|
-1
|
|
|
|
| Sys_error msg ->
|
2022-07-05 11:29:24 +03:00
|
|
|
let bt = Printexc.get_raw_backtrace () in
|
2022-03-08 15:04:27 +03:00
|
|
|
Cli.error_print "System error: %s" msg;
|
2022-07-05 11:29:24 +03:00
|
|
|
if Printexc.backtrace_status () then Printexc.print_raw_backtrace stderr bt;
|
2022-02-01 17:41:53 +03:00
|
|
|
-1
|
2020-03-08 03:52:31 +03:00
|
|
|
|
2020-12-26 19:37:41 +03:00
|
|
|
let main () =
|
2022-02-21 16:49:58 +03:00
|
|
|
let return_code =
|
2022-05-04 18:37:03 +03:00
|
|
|
Cmdliner.Cmd.eval'
|
|
|
|
(Cmdliner.Cmd.v Cli.info (Cli.catala_t (fun f -> driver (FileName f))))
|
2022-02-21 16:49:58 +03:00
|
|
|
in
|
2022-05-04 18:37:03 +03:00
|
|
|
exit return_code
|
2022-03-04 20:32:03 +03:00
|
|
|
|
|
|
|
(* Export module PluginAPI, hide parent module Plugin *)
|
|
|
|
module Plugin = Plugin.PluginAPI
|