Stefan pushed to branch master at Stefan / Typer
Commits: e5ac4157 by Stefan Monnier at 2017-08-22T13:10:07-04:00 Add `define-operator`
* src/elab.ml (sdform_define_operator): New function. (lexp_decls_macro): Adjust to extra value in context. (lexp_decls_1): Add case for `define-operator`. (elaborate): Treat blocks like immediates. (sform_immediate): Add case for blocks. * src/debruijn.ml (elab_context): Add grammar into the context. * btl/pervasive.typer (List_nth): New function. (quote1): Fix definition. (if_then_else_): Define as a macro. * src/grammar.ml (default_grammar): Move if/then/else... to pervasive.typer. * src/sexp.ml (token): New type alias.
* tests/sexp_test.ml: Remove if/then/else test. * tests/eval_test.ml ("Block", "define-operator"): New tests.
- - - - -
8 changed files:
- btl/builtins.typer - btl/pervasive.typer - src/debruijn.ml - src/elab.ml - src/grammar.ml - src/sexp.ml - tests/eval_test.ml - tests/sexp_test.ml
Changes:
===================================== btl/builtins.typer ===================================== --- a/btl/builtins.typer +++ b/btl/builtins.typer @@ -98,7 +98,7 @@ Float_* = Built-in "Float.*" (Float -> Float -> Float); Float_/ = Built-in "Float./" (Float -> Float -> Float); Float_to_string = Built-in "Float.to_string" (Float -> String);
-Bool = typecons (Boolean) (true) (false); +Bool = typecons (Bool) (true) (false); true = datacons Bool true; false = datacons Bool false;
===================================== btl/pervasive.typer ===================================== --- a/btl/pervasive.typer +++ b/btl/pervasive.typer @@ -79,6 +79,14 @@ List_find f = lambda xs -> case xs | nil => none | cons x xs => case f x | true => some x | false => List_find f xs;
+List_nth : (a : Type) ≡> Int -> List a -> a -> a; +List_nth = lambda n -> lambda xs -> lambda d -> case xs + | nil => d + | cons x xs + => case Int_<= n 0 + | true => x + | false => List_nth (n - 1) xs d; + %%%% A more flexible `lambda`
%% An Sexp which we use to represents an error. @@ -158,12 +166,25 @@ K x y = x; %% %% => x
+%% Takes an Sexp `x` as argument and return an Sexp which represents code +%% which will construct an Sexp equivalent to `x` at run-time. +%% This is basically "cross stage persistence" for Sexp. quote1 : Sexp -> Sexp; quote1 x = let k = K x; + qlist : List Sexp -> Sexp; + qlist xs = case xs + | nil => Sexp_symbol "nil" + | cons x xs => Sexp_node (Sexp_symbol "cons") + (cons (quote1 x) + (cons (qlist xs) nil)); node op y = case (Sexp_eq op (Sexp_symbol "uquote")) | true => List_head Sexp_error y - | false => Sexp_node (quote1 op) (List_map quote1 y) - in Sexp_dispatch x node k k k k k; + | false => Sexp_node (Sexp_symbol "##Sexp.node") + (cons (quote1 op) + (cons (qlist y) nil)); + symbol s = Sexp_node (Sexp_symbol "##Sexp.symbol") + (cons (Sexp_string s) nil) + in Sexp_dispatch x node symbol k k k k;
%% quote definition quote = macro (lambda x -> quote1 (List_head Sexp_error x)); @@ -323,6 +344,21 @@ Decidable = typecons (Decidable (prop : Type)) (true (p ::: prop)) (false (p ::: Not prop));
+%%%% If + +define-operator if () 2; +define-operator then 2 1; +define-operator else 1 66; + +if_then_else_ + = macro (lambda args -> + let e1 = List_nth 0 args Sexp_error; + e2 = List_nth 1 args Sexp_error; + e3 = List_nth 2 args Sexp_error; + in quote (case uquote e1 + | true => uquote e2 + | false => uquote e3)); + %%%% Test test1 : Option Int; test2 : Option Int;
===================================== src/debruijn.ml ===================================== --- a/src/debruijn.ml +++ b/src/debruijn.ml @@ -108,18 +108,22 @@ type lctx_length = db_ridx
(* This is the *elaboration context* (i.e. a context that holds * a lexp context plus some side info. *) -type elab_context = senv_type * lexp_context * (scope_level * lctx_length) +type elab_context + = Grammar.grammar * senv_type * lexp_context * (scope_level * lctx_length)
-let get_size ctx = let ((n, _), lctx, _) = ctx in +let get_size ctx = let (_, (n, _), lctx, _) = ctx in assert (n = M.length lctx); n
-(* Extract the lexp context from the context used during elaboration. *) +let ectx_to_grm (ectx : elab_context) : Grammar.grammar = + let (grm,_, _, _) = ectx in grm + + (* Extract the lexp context from the context used during elaboration. *) let ectx_to_lctx (ectx : elab_context) : lexp_context = - let (_, lctx, _) = ectx in lctx + let (_,_, lctx, _) = ectx in lctx
-let ectx_to_scope_level ((_, _, (sl, _)) : elab_context) : scope_level = sl +let ectx_to_scope_level ((_, _, _, (sl, _)) : elab_context) : scope_level = sl
-let ectx_local_scope_size (((n, _), _, (_, slen)) as ectx: elab_context) : int +let ectx_local_scope_size ((_, (n, _), _, (_, slen)) as ectx: elab_context) : int = get_size ectx - slen
(* internal definitions @@ -132,11 +136,12 @@ let _make_myers = M.nil (* Public methods: DO USE * ---------------------------------- *)
-let empty_elab_context : elab_context = (_make_senv_type, _make_myers, (0, 0)) +let empty_elab_context : elab_context + = (Grammar.default_grammar, _make_senv_type, _make_myers, (0, 0))
(* return its current DeBruijn index *) let rec senv_lookup (name: string) (ctx: elab_context): int = - let ((n, map), _, _) = ctx in + let (_, (n, map), _, _) = ctx in n - (SMap.find name map) - 1
let lexp_ctx_cons (ctx : lexp_context) offset d v t = @@ -156,9 +161,9 @@ let lctx_extend (ctx : lexp_context) (def: vname option) (v: varbind) (t: lexp)
let env_extend_rec r (ctx: elab_context) (def: vname) (v: varbind) (t: lexp) = let (loc, name) = def in - let ((n, map), env, sl) = ctx in + let (grm, (n, map), env, sl) = ctx in let nmap = SMap.add name n map in - ((n + 1, nmap), + (grm, (n + 1, nmap), lexp_ctx_cons env r (Some def) v t, sl)
@@ -167,8 +172,8 @@ let env_extend (ctx: elab_context) (def: vname) (v: varbind) (t: lexp) = env_ext let ectx_extend (ectx: elab_context) (def: vname option) (v: varbind) (t: lexp) : elab_context = match def with - | None -> let ((n, map), lctx, sl) = ectx in - ((n + 1, map), lexp_ctx_cons lctx 0 None v t, sl) + | None -> let (grm, (n, map), lctx, sl) = ectx in + (grm, (n + 1, map), lexp_ctx_cons lctx 0 None v t, sl) | Some def -> env_extend ectx def v t
let lctx_extend_rec (ctx : lexp_context) (defs: (vname * lexp * ltype) list) = @@ -181,19 +186,19 @@ let lctx_extend_rec (ctx : lexp_context) (defs: (vname * lexp * ltype) list) = ctx
let ectx_extend_rec (ctx: elab_context) (defs: (vname * lexp * ltype) list) = - let ((n, senv), lctx, sl) = ctx in + let (grm, (n, senv), lctx, sl) = ctx in let senv', _ = List.fold_left (fun (senv, i) ((_, vname), _, _) -> SMap.add vname i senv, i + 1) (senv, n) defs in - ((n + List.length defs, senv'), lctx_extend_rec lctx defs, sl) + (grm, (n + List.length defs, senv'), lctx_extend_rec lctx defs, sl)
let ectx_new_scope ectx : elab_context = - let (senv, lctx, (scope, _)) = ectx in - (senv, lctx, (scope + 1, Myers.length lctx)) + let (grm, senv, lctx, (scope, _)) = ectx in + (grm, senv, lctx, (scope + 1, Myers.length lctx))
let ectx_get_scope (ectx : elab_context) : (scope_level * lctx_length) = - let (_, _, sl) = ectx in sl + let (_, _, _, sl) = ectx in sl
let env_lookup_by_index index (ctx: lexp_context): env_elem = Myers.nth index ctx
===================================== src/elab.ml ===================================== --- a/src/elab.ml +++ b/src/elab.ml @@ -251,6 +251,20 @@ let mkDummy_infer ctx loc = let t = newMetatype (ectx_to_lctx ctx) dummy_scope_level loc in (mkDummy_check ctx loc t, t)
+let sdform_define_operator (ctx : elab_context) loc sargs _ot : elab_context = + match sargs with + | [Symbol (_, name); l; r] + -> let level s = match s with + | Symbol (_, "") -> None + | Integer (_, n) -> Some n + | _ -> sexp_error (sexp_location s) "Expecting an integer or ()"; None in + let (grm, a, b, c) = ctx in + (SMap.add name (level l, level r) grm, a, b, c) + | [o; _; _] + -> sexp_error (sexp_location o) "Expecting a symbol"; ctx + | _ + -> sexp_error loc "define-operator expects 3 argument"; ctx + let elab_varref ctx ((loc, name) as id) = let idx = senv_lookup name ctx in let lxp = make_var name idx loc in @@ -267,11 +281,8 @@ let rec elaborate ctx se ot = (* Break the inf-recursion! *) else elab_varref ctx id
- (* Rewrite BLOCK to `typer-block BLOCK`. *) - | Block (l,_,_) -> elaborate ctx (Node (Symbol (l, "typer-block"), [se])) ot - (* Rewrite IMM to `typer-immediate IMM`. *) - | (Integer _ | Float _ | String _) + | (Integer _ | Float _ | String _ | Block _) -> let l = sexp_location se in elaborate ctx (Node (Symbol (l, "typer-immediate"), [se])) ot
@@ -756,7 +767,6 @@ and lexp_expand_macro loc macro_funct sargs ctx (ot : ltype option) let macro = lexp_eval ctx macro_funct in let args = [macro; BI.o2v_list sargs] in
- (* FIXME: Don't `mkCall + eval` but use eval_call instead! *) (* FIXME: Make a proper `Var`. *) EV.eval_call loc (EL.Var ((DB.dloc, "expand_macro"), 0)) ([], []) macro_expand args @@ -784,6 +794,10 @@ and lexp_check_decls (ectx : elab_context) (* External context. *) (nctx : elab_context) (* Context with type declarations. *) (defs : (vname * sexp) list) : (vname * lexp * ltype) list * elab_context = + (* Preserve the new operators added to nctx. *) + let ectx = let (_, a, b, c) = ectx in + let (grm, _, _, _) = nctx in + (grm, a, b, c) in let (declmap, nctx) = List.fold_right (fun ((_, vname) as v, pexp) (map, nctx) -> @@ -793,9 +807,9 @@ and lexp_check_decls (ectx : elab_context) (* External context. *) | (o, v', ForwardRef, t) -> let adjusted_t = push_susp t (S.shift (i + 1)) in let e = check pexp adjusted_t nctx in - let (ec, lc, sl) = nctx in + let (grm, ec, lc, sl) = nctx in (IMap.add i (v, e, t) map, - (ec, Myers.set_nth i (o, v', LetDef e, t) lc, sl)) + (grm, ec, Myers.set_nth i (o, v', LetDef e, t) lc, sl)) | _ -> U.internal_error "Defining same slot!") defs (IMap.empty, nctx) in let decls = List.rev (List.map (fun (_, d) -> d) (IMap.bindings declmap)) in @@ -863,7 +877,8 @@ and lexp_decls_1 | [Symbol ((l, vname) as v); sexp] when SMap.is_empty pending_decls -> assert (pending_defs == []); - assert (ectx == nctx); + (* Used to be true before we added define-operator. *) + (* assert (ectx == nctx); *) let (lexp, ltp) = infer sexp (ectx_new_scope nctx) in (* Lexp decls are always recursive, so we have to shift by 1 to * account for the extra var (ourselves). *) @@ -897,17 +912,22 @@ and lexp_decls_1 | _ -> error l "Invalid definition syntax"; lexp_decls_1 sdecls ectx nctx pending_decls pending_defs)
+ | Node (Symbol (l, "define-operator"), args) :: sdecls + (* FIXME: Move this to a "special form"! *) + -> lexp_decls_1 sdecls ectx (sdform_define_operator nctx l args None) + pending_decls pending_defs + | Node (Symbol ((l, _) as v), sargs) :: sdecls - -> (* expand macro and get the generated declarations *) - let sdecl' = lexp_decls_macro v sargs nctx in - lexp_decls_1 (sdecl' :: sdecls) ectx nctx - pending_decls pending_defs + -> (* expand macro and get the generated declarations *) + let sdecl' = lexp_decls_macro v sargs nctx in + lexp_decls_1 (sdecl' :: sdecls) ectx nctx + pending_decls pending_defs
| sexp :: sdecls -> error (sexp_location sexp) "Invalid declaration syntax"; lexp_decls_1 sdecls ectx nctx pending_decls pending_defs
-and lexp_p_decls (sdecls : sexp list) ctx +and lexp_p_decls (sdecls : sexp list) (ctx : elab_context) : ((vname * lexp * ltype) list list * elab_context) = match sdecls with | [] -> [], ctx @@ -1109,6 +1129,11 @@ let sform_immediate ctx loc sargs ot = | [(String _) as se] -> mkImm (se), Inferred DB.type_string | [(Integer _) as se] -> mkImm (se), Inferred DB.type_int | [(Float _) as se] -> mkImm (se), Inferred DB.type_float + | [Block (sl, pts, el)] + -> let (grm, _, _, _) = ctx in + let tokens = lex default_stt pts in + let (se, _) = sexp_parse_all grm tokens None in + elaborate ctx se ot | [se] -> (sexp_error loc ("Non-immediate passed to ##typer-immediate"); sform_dummy_ret ctx loc)
===================================== src/grammar.ml ===================================== --- a/src/grammar.ml +++ b/src/grammar.ml @@ -3,7 +3,7 @@ * * --------------------------------------------------------------------------- * - * Copyright (C) 2011-2016 Free Software Foundation, Inc. + * Copyright (C) 2011-2017 Free Software Foundation, Inc. * * Author: Stefan Monnier monnier@iro.umontreal.ca * Keywords: languages, lisp, dependent types. @@ -82,13 +82,13 @@ let default_grammar : grammar = (",", Some 41, Some 41); ("::", Some 167, Some 17); (":::", Some 168, Some 16); - ("then", Some 2, Some 1); + (* ("then", Some 2, Some 1); *) (";", Some 14, Some 14); ("type", None, Some 30); ("=", Some 28, Some 29); (":=", Some 170, Some 15); ("in", Some 3, Some 67); - ("else", Some 1, Some 66); + (* ("else", Some 1, Some 66); *) ("|", Some 54, Some 54); (")", Some 0, None); ("->", Some 118, Some 99); @@ -98,6 +98,6 @@ let default_grammar : grammar = (":", Some 79, Some 79); ("lambda", None, Some 118); ("case", None, Some 42); - ("if", None, Some 2); + (* ("if", None, Some 2); *) ("(", None, Some 0) ]
===================================== src/sexp.ml ===================================== --- a/src/sexp.ml +++ b/src/sexp.ml @@ -36,6 +36,7 @@ type sexp = (* Syntactic expression, kind of like Lisp. *) | Integer of location * integer | Float of location * float | Node of sexp * sexp list +type token = sexp
let epsilon l = Symbol (l, "") let dummy_epsilon = epsilon dummy_location @@ -191,7 +192,7 @@ let rec sexp_parse (g : grammar) (rest : sexp list) largs rargs false, [])
-let sexp_parse_all grm tokens limit = +let sexp_parse_all grm tokens limit : sexp * token list = let level = match limit with | None -> min_int | Some token -> @@ -224,7 +225,7 @@ let sexp_u_list (ss : sexp list) : sexp = | (s :: ss) -> Node (s, ss)
(* Parse all the Sexp *) -let sexp_parse_all_to_list grm tokens limit = +let sexp_parse_all_to_list grm tokens limit : sexp list = let rec sexp_parse_impl grm tokens limit acc = match tokens with (* We are done parsing *)
===================================== tests/eval_test.ml ===================================== --- a/tests/eval_test.ml +++ b/tests/eval_test.ml @@ -400,6 +400,27 @@ let _ = test_eval_eqv_named "2;"
let _ = test_eval_eqv_named + "Block" + + "a = 2" + + "a + 1;" + "{a + 1};" + +let _ = test_eval_eqv_named + "define-operator" + + "define-operator IF () 2; + define-operator THEN 2 1; + define-operator ELSE 1 66; + IF_THEN_ELSE_ = if_then_else_;" + + "{IF true THEN 2 ELSE 3};" + (* FIXME: the new grammar is not used at top-level yet! *) + (* "if true then 2 else 3;" *) + "{if true then 2 else 3};" + +let _ = test_eval_eqv_named "Type Alias" "ListInt = List Int;" "" (* == *) ""
(* run all tests *)
===================================== tests/sexp_test.ml ===================================== --- a/tests/sexp_test.ml +++ b/tests/sexp_test.ml @@ -37,7 +37,6 @@ let test_sexp_eqv dcode1 dcode2 = let _ = test_sexp_eqv "((a) ((1.00)))" "a 1.0" let _ = test_sexp_eqv "(x + y)" "_+_ x y" let _ = test_sexp_eqv "(x := y)" "_:=_ x y" -let _ = test_sexp_eqv "if A then B else C -> D" "if A then B else (C -> D)" let _ = test_sexp_eqv "A : B -> C" "A : (B -> C)" let _ = test_sexp_eqv "f __\; y" "(f (__\;) y)" let _ = test_sexp_eqv "case e | p1 => e1 | p2 => e2"
View it on GitLab: https://gitlab.com/monnier/typer/commit/e5ac4157d46d7d915a1f32c9953aaf10c7b0...
--- View it on GitLab: https://gitlab.com/monnier/typer/commit/e5ac4157d46d7d915a1f32c9953aaf10c7b0... You're receiving this email because of your account on gitlab.com.
Afficher les réponses par date