summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Campbell2018-10-22 18:29:18 +0100
committerBrian Campbell2018-10-22 18:29:18 +0100
commite489f2d37efa4c320004d35c3025c77e0a0c60d0 (patch)
treed3cba4f0f8a85958ddf1059ef9e058160164c4bc /src
parent104fd550bd99f2c22655f7d7aa173715054234fd (diff)
Coq: use function type more carefully in untupling
And update the RISC-V patch accordingly.
Diffstat (limited to 'src')
-rw-r--r--src/pretty_print_coq.ml29
1 files changed, 14 insertions, 15 deletions
diff --git a/src/pretty_print_coq.ml b/src/pretty_print_coq.ml
index 99d63b55..f1726ce4 100644
--- a/src/pretty_print_coq.ml
+++ b/src/pretty_print_coq.ml
@@ -1768,33 +1768,28 @@ let args_of_typ l env typs =
E_aux (E_id id, (l, mk_tannot env typ no_effect)) in
List.split (List.mapi arg typs)
-let rec untuple_args_pat typ (P_aux (paux, ((l, _) as annot)) as pat) =
+let rec untuple_args_pat typs (P_aux (paux, ((l, _) as annot)) as pat) =
let env = env_of_annot annot in
- let tup_typs = match typ with
- | Typ_aux (Typ_tup typs, _) -> Some typs
- | _ -> match Env.expand_synonyms env typ with
- | Typ_aux (Typ_tup typs, _) -> Some typs
- | _ -> None
- in
let identity = (fun body -> body) in
- match paux, tup_typs with
+ match paux, typs with
| P_tup [], _ ->
let annot = (l, mk_tannot Env.empty unit_typ no_effect) in
[P_aux (P_lit (mk_lit L_unit), annot), unit_typ], identity
- | P_tup pats, Some typs -> List.combine pats typs, identity
- | P_tup pats, _ -> raise (Reporting_basic.err_unreachable l __POS__ "Tuple pattern against non-tuple type")
- | P_wild, Some typs ->
+ | P_tup pats, _ -> List.combine pats typs, identity
+ | P_wild, _ ->
let wild typ = P_aux (P_wild, (l, mk_tannot env typ no_effect)), typ in
List.map wild typs, identity
- | P_typ (_, pat), _ -> untuple_args_pat typ pat
- | P_as _, Some typs | P_id _, Some typs ->
+ | P_typ (_, pat), _ -> untuple_args_pat typs pat
+ | P_as _, _::_::_ | P_id _, _::_::_ ->
let argpats, argexps = args_of_typ l env typs in
let argexp = E_aux (E_tuple argexps, annot) in
let bindargs (E_aux (_, bannot) as body) =
E_aux (E_let (LB_aux (LB_val (pat, argexp), annot), body), bannot) in
argpats, bindargs
- | _, _ ->
+ | _, [typ] ->
[pat,typ], identity
+ | _, _ ->
+ unreachable l __POS__ "Unexpected pattern/type combination"
let doc_rec (Rec_aux(r,_)) = match r with
| Rec_nonrec -> string "Definition"
@@ -1930,7 +1925,7 @@ let doc_funcl (FCL_aux(FCL_Funcl(id, pexp), annot)) =
let ids_to_avoid = all_ids pexp in
let bound_kids = tyvars_of_typquant tq in
let pat,guard,exp,(l,_) = destruct_pexp pexp in
- let pats, bind = untuple_args_pat (mk_typ (Typ_tup arg_typs)) pat in (* FIXME is this needed any more? *)
+ let pats, bind = untuple_args_pat arg_typs pat in (* FIXME is this needed any more? *)
let pats, binds = List.split (Util.list_mapi demote_as_pattern pats) in
let eliminated_kids, kid_to_arg_rename = merge_kids_atoms pats in
let kid_to_arg_rename, pats = merge_var_patterns kid_to_arg_rename pats in
@@ -1957,6 +1952,10 @@ let doc_funcl (FCL_aux(FCL_Funcl(id, pexp), annot)) =
let doc_binder (P_aux (p,ann) as pat, typ) =
let env = env_of_annot ann in
let exp_typ = Env.expand_synonyms env typ in
+ let () =
+ debug ctxt (lazy (" pattern " ^ string_of_pat pat));
+ debug ctxt (lazy (" with expanded type " ^ string_of_typ exp_typ))
+ in
match p with
| P_id id
| P_typ (_,P_aux (P_id id,_))