Stefan pushed to branch master at Stefan / Typer
Commits: 900c37da by Stefan Monnier at 2017-06-29T17:51:32-04:00 Rename Lparse to Elab
- - - - -
12 changed files:
- src/REPL.ml - src/debug_util.ml - src/lparse.ml → src/elab.ml - src/eval.ml - src/util.ml - tests/lparse_test.ml → tests/elab_test.ml - tests/env_test.ml - tests/eval_test.ml - tests/inverse_test.ml - tests/lexp_test.ml - tests/macro_test.ml - tests/unify_test.ml
Changes:
===================================== src/REPL.ml ===================================== --- a/src/REPL.ml +++ b/src/REPL.ml @@ -46,7 +46,6 @@ open Sexp open Pexp open Lexp
-open Lparse open Eval
open Grammar @@ -131,8 +130,8 @@ let ierase_type (lexps: (ldecl list list * lexpr list)) =
let ilexp_parse pexps lctx: ((ldecl list list * lexpr list) * elab_context) = let pdecls, pexprs = pexps in - let ldecls, lctx = lexp_p_decls pdecls lctx in - let lexprs = lexp_parse_all pexprs lctx in + let ldecls, lctx = Elab.lexp_p_decls pdecls lctx in + let lexprs = Elab.lexp_parse_all pexprs lctx in let meta_ctx, _ = !global_substitution in List.iter (fun lxp -> ignore (OL.check meta_ctx (ectx_to_lctx lctx) lxp)) lexprs; @@ -163,7 +162,7 @@ let _raw_eval f str lctx rctx = let sxps = lex default_stt pres in let nods = sexp_parse_all_to_list default_grammar sxps (Some ";") in let pxps = pexp_decls_all nods in - let lxps, lctx = lexp_p_decls pxps lctx in + let lxps, lctx = Elab.lexp_p_decls pxps lctx in let elxps = List.map OL.clean_decls lxps in (* At this point, `elxps` is a `(vname * elexp) list list`, where: * - each `(vname * elexp)` is a definition @@ -279,8 +278,8 @@ let parse_args () = let main () = parse_args ();
- let ectx = default_ectx in - let rctx = default_rctx in + let ectx = Elab.default_ectx in + let rctx = Elab.default_rctx in
if not !arg_batch then (print_string (make_title " TYPER REPL ");
===================================== src/debug_util.ml ===================================== --- a/src/debug_util.ml +++ b/src/debug_util.ml @@ -43,7 +43,6 @@ open Lexp (* AST reader *) open Prelexer open Lexer -open Lparse open Eval module EL = Elexp module OL = Opslexp @@ -196,8 +195,8 @@ let format_source () = let toks = lex default_stt pretoks in let nodes = sexp_parse_all_to_list default_grammar toks (Some ";") in let pexps = pexp_decls_all nodes in - let ctx = default_ectx in - let lexps, _ = lexp_p_decls pexps ctx in + let ctx = Elab.default_ectx in + let lexps, _ = Elab.lexp_p_decls pexps ctx in
print_string (make_sep '-'); print_string "\n";
@@ -354,7 +353,7 @@ let main () = debug_pexp_decls pexps; print_string "\n"));
(* get lexp *) - let octx = default_ectx in + let octx = Elab.default_ectx in
(* Debug declarations merging *) (if (get_p_option "merge-debug") then( @@ -389,7 +388,7 @@ let main () =
(* debug lexp parsing once merged *) print_string yellow; - let lexps, nctx = try lexp_p_decls pexps octx + let lexps, nctx = try Elab.lexp_p_decls pexps octx with e -> print_string reset; raise e in @@ -433,7 +432,7 @@ let main () = let clean_lxp = List.map OL.clean_decls lexps in
(* Eval declaration *) - let rctx = default_rctx in + let rctx = Elab.default_rctx in print_string yellow; let rctx = (try eval_decls_toplevel clean_lxp rctx; with e ->
===================================== src/lparse.ml → src/elab.ml ===================================== --- a/src/lparse.ml +++ b/src/elab.ml @@ -25,10 +25,12 @@ * * --------------------------------------------------------------------------- * - * Description: - * parse pexp expression into lexp + * Description: * - * --------------------------------------------------------------------------- *) + * Elaborate Sexp expression into Lexp. + * This includes type inference, and macro expansion. + * + * -------------------------------------------------------------------------- *)
open Util open Fmt @@ -65,9 +67,9 @@ let btl_folder = try Sys.getenv "TYPER_BUILTINS" with Not_found -> "./btl"
-let warning = msg_warning "LPARSE" -let error = msg_error "LPARSE" -let fatal = msg_fatal "LPARSE" +let warning = msg_warning "ELAB" +let error = msg_error "ELAB" +let fatal = msg_fatal "ELAB"
(* Print Lexp name followed by the lexp in itself, finally throw an exception *) let debug_message error_type type_name type_string loc expr message = @@ -357,7 +359,7 @@ and get_implicit_arg ctx loc name t = | Vsexp (sexp) -> sexp | _ -> value_fatal loc v "default attribute should return a sexp" in
- (* lparse the argument *) + (* Elaborate the argument *) check lsarg t ctx | None -> newMetavar loc name t
@@ -1376,7 +1378,7 @@ let lexp_decl_str str lctx =
(* Eval String * --------------------------------------------------------- *) -(* Because we cant include lparse in eval.ml *) +(* Because we cant include Elab in eval.ml *)
let _eval_expr_str str lctx rctx silent = let lxps = lexp_expr_str str lctx in
===================================== src/eval.ml ===================================== --- a/src/eval.ml +++ b/src/eval.ml @@ -514,7 +514,7 @@ and print_trace title trace default = (* Trace is upside down by default *) let trace = List.rev trace in
- (* Now eval trace and lparse trace are the same *) + (* Now eval trace and elab trace are the same *) let print_trace = (fun type_name type_string type_loc i expr -> (* Print location info *) print_string (" [" ^ (loc_string (type_loc expr)) ^ "] ");
===================================== src/util.ml ===================================== --- a/src/util.ml +++ b/src/util.ml @@ -20,10 +20,8 @@ more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. *)
-module SMap - = Map.Make (struct type t = string let compare = String.compare end) -module IntMap - = Map.Make (struct type t = int let compare = compare end) +module SMap = Map.Make (String) +module IntMap = Map.Make (struct type t = int let compare = compare end)
type charpos = int type bytepos = int
===================================== tests/lparse_test.ml → tests/elab_test.ml ===================================== --- a/tests/lparse_test.ml +++ b/tests/elab_test.ml @@ -1,6 +1,6 @@ (* lparse_test.ml --- * - * Copyright (C) 2016 Free Software Foundation, Inc. + * Copyright (C) 2016-2017 Free Software Foundation, Inc. * * Author: Vincent Bonnevalle tiv.crb@gmail.com * @@ -22,7 +22,6 @@ * -------------------------------------------------------------------------- *)
-open Lparse open Utest_lib
open Pexp @@ -60,7 +59,7 @@ let generate_lexp_from_str str = (List.map (fun (_, lxp, _) -> lxp)) (List.flatten lst)) - (lexp_decl_str str default_ectx)) + (Elab.lexp_decl_str str Elab.default_ectx))
let _ = generate_tests "TYPECHECK" @@ -68,7 +67,7 @@ let _ = generate_tests (fun x -> List.map lexp_string x) (fun x -> (x, true))
-let lctx = default_ectx +let lctx = Elab.default_ectx (* let _ = (add_test "TYPECHEK_LEXP" "lexp_print" (fun () -> * * let dcode = "
===================================== tests/env_test.ml ===================================== --- a/tests/env_test.ml +++ b/tests/env_test.ml @@ -30,13 +30,12 @@ open Utest_lib
open Sexp open Lexp -open Lparse
open Builtin open Env
-let rctx = default_rctx +let rctx = Elab.default_rctx
let make_val value = Vstring(value)
===================================== tests/eval_test.ml ===================================== --- a/tests/eval_test.ml +++ b/tests/eval_test.ml @@ -31,15 +31,14 @@ open Util open Sexp open Lexp
-open Lparse (* eval string *) open Eval (* reset_eval_trace *)
open Builtin open Env
(* default environment *) -let ectx = default_ectx -let rctx = default_rctx +let ectx = Elab.default_ectx +let rctx = Elab.default_rctx
(* Params: * decl: declarations to be processed before evaluating @@ -48,10 +47,10 @@ let rctx = default_rctx *) let test_eval_eqv_named name decl run res = add_test "EVAL" name (fun () -> - let rctx, ectx = eval_decl_str decl ectx rctx in + let rctx, ectx = Elab.eval_decl_str decl ectx rctx in
- let erun = eval_expr_str run ectx rctx in (* evaluated run expr *) - let eres = eval_expr_str res ectx rctx in (* evaluated res expr *) + let erun = Elab.eval_expr_str run ectx rctx in (* evaluated run expr *) + let eres = Elab.eval_expr_str res ectx rctx in (* evaluated res expr *)
if value_eq_list erun eres then success () @@ -288,12 +287,12 @@ let _ = (add_test "EVAL" "Monads" (fun () -> (lambda f -> File_write f "Hello2"); " in
- let rctx, ectx = eval_decl_str dcode ectx rctx in + let rctx, ectx = Elab.eval_decl_str dcode ectx rctx in
let rcode = "IO_run c 2" in
(* Eval defined lambda *) - let ret = eval_expr_str rcode ectx rctx in + let ret = Elab.eval_expr_str rcode ectx rctx in match ret with | [v] -> success () | _ -> failure ()
===================================== tests/inverse_test.ml ===================================== --- a/tests/inverse_test.ml +++ b/tests/inverse_test.ml @@ -1,6 +1,6 @@ (* inverse_test.ml --- Test the substitution-inversion algorithm * - * Copyright (C) 2016 Free Software Foundation, Inc. + * Copyright (C) 2016-2017 Free Software Foundation, Inc. * * Author: Vincent Bonnevalle tiv.crb@gmail.com * @@ -27,8 +27,6 @@ open Lexp open Unification open Inverse_subst
-open Lparse (* add_def *) - open Utest_lib
open Fmt
===================================== tests/lexp_test.ml ===================================== --- a/tests/lexp_test.ml +++ b/tests/lexp_test.ml @@ -29,13 +29,12 @@ open Utest_lib
open Pexp open Lexp -open Lparse (* add_def *)
open Builtin
(* default environment *) -let ectx = default_ectx -let rctx = default_rctx +let ectx = Elab.default_ectx +let rctx = Elab.default_rctx
(* let _ = (add_test "LEXP" "lexp_print" (fun () ->
===================================== tests/macro_test.ml ===================================== --- a/tests/macro_test.ml +++ b/tests/macro_test.ml @@ -31,7 +31,6 @@ open Utest_lib open Sexp open Lexp
-open Lparse (* eval string *) open Eval (* reset_eval_trace *)
open Builtin @@ -39,8 +38,8 @@ open Env
(* default environment *) -let ectx = default_ectx -let rctx = default_rctx +let ectx = Elab.default_ectx +let rctx = Elab.default_rctx
let _ = (add_test "MACROS" "macros base" (fun () ->
@@ -56,11 +55,11 @@ let _ = (add_test "MACROS" "macros base" (fun () -> sqr = macro my_fun; " in
- let rctx, ectx = eval_decl_str dcode ectx rctx in + let rctx, ectx = Elab.eval_decl_str dcode ectx rctx in
let ecode = "(lambda (x : Int) -> sqr 3) 5;" in
- let ret = eval_expr_str ecode ectx rctx in + let ret = Elab.eval_expr_str ecode ectx rctx in
match ret with | [Vint(r)] -> expect_equal_int r (3 * 3) @@ -86,11 +85,11 @@ let _ = (add_test "MACROS" "macros decls" (fun () ->
my-decls Nat;" in
- let rctx, ectx = eval_decl_str dcode ectx rctx in + let rctx, ectx = Elab.eval_decl_str dcode ectx rctx in
let ecode = "a; b;" in
- let ret = eval_expr_str ecode ectx rctx in + let ret = Elab.eval_expr_str ecode ectx rctx in
match ret with | [Vint(a); Vint(b)] ->
===================================== tests/unify_test.ml ===================================== --- a/tests/unify_test.ml +++ b/tests/unify_test.ml @@ -1,6 +1,6 @@ (* unify_test.ml --- Test the unification algorithm * - * Copyright (C) 2016 Free Software Foundation, Inc. + * Copyright (C) 2016-2017 Free Software Foundation, Inc. * * Author: Vincent Bonnevalle tiv.crb@gmail.com * @@ -26,8 +26,6 @@ open Pexp open Lexp open Unification
-open Lparse (* add_def *) - open Utest_lib
open Fmt @@ -100,14 +98,14 @@ let generate_ltype_from_str str = (List.map (fun (_, _, ltype) -> ltype)) (List.flatten lst)) - (lexp_decl_str str default_ectx)) + (Elab.lexp_decl_str str Elab.default_ectx))
let generate_lexp_from_str str = List.hd ((fun (lst, _) -> (List.map (fun (_, lxp, _) -> lxp)) (List.flatten lst)) - (lexp_decl_str str default_ectx)) + (Elab.lexp_decl_str str Elab.default_ectx))
let input_induct = generate_lexp_from_str str_induct let input_int_4 = generate_lexp_from_str str_int_4
View it on GitLab: https://gitlab.com/monnier/typer/commit/900c37da5a712becd0b655abd0182b01b269...
--- View it on GitLab: https://gitlab.com/monnier/typer/commit/900c37da5a712becd0b655abd0182b01b269... You're receiving this email because of your account on gitlab.com.
Afficher les réponses par date