aboutsummaryrefslogtreecommitdiff
path: root/src/Compilers/Conversion.v
diff options
context:
space:
mode:
authorGravatar Andres Erbsen <andreser@mit.edu>2017-04-06 22:53:07 -0400
committerGravatar Andres Erbsen <andreser@mit.edu>2017-04-06 22:53:07 -0400
commitc9fc5a3cdf1f5ea2d104c150c30d1b1a6ac64239 (patch)
treedb7187f6984acff324ca468e7b33d9285806a1eb /src/Compilers/Conversion.v
parent21198245dab432d3c0ba2bb8a02254e7d0594382 (diff)
rename-everything
Diffstat (limited to 'src/Compilers/Conversion.v')
-rw-r--r--src/Compilers/Conversion.v110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/Compilers/Conversion.v b/src/Compilers/Conversion.v
new file mode 100644
index 000000000..29874c96f
--- /dev/null
+++ b/src/Compilers/Conversion.v
@@ -0,0 +1,110 @@
+(** * Convert between interpretations of types *)
+Require Import Crypto.Compilers.Syntax.
+Require Import Crypto.Compilers.Map.
+Require Import Crypto.Util.Notations.
+Require Import Crypto.Util.Tactics.RewriteHyp.
+
+Local Open Scope expr_scope.
+
+Section language.
+ Context (base_type_code : Type).
+ Context (op : flat_type base_type_code -> flat_type base_type_code -> Type).
+ Section map.
+ Context {var1 var2 : base_type_code -> Type}.
+ Context (f_var12 : forall t, var1 t -> var2 t)
+ (f_var21 : forall t, var2 t -> var1 t).
+
+ Fixpoint mapf
+ {t}
+ (e : @exprf base_type_code op var1 t)
+ : @exprf base_type_code op var2 t
+ := match e in @exprf _ _ _ t return @exprf _ _ _ t with
+ | TT => TT
+ | Var _ x => Var (f_var12 _ x)
+ | Op _ _ op args => Op op (@mapf _ args)
+ | LetIn _ ex _ eC => LetIn (@mapf _ ex)
+ (fun x => @mapf _ (eC (mapf_interp_flat_type f_var21 x)))
+ | Pair _ ex _ ey => Pair (@mapf _ ex)
+ (@mapf _ ey)
+ end.
+
+ Definition map {t} (e : @expr base_type_code op var1 t)
+ : @expr base_type_code op var2 t
+ := match e with
+ | Abs _ _ f => Abs (fun x => mapf (f (mapf_interp_flat_type f_var21 x)))
+ end.
+ End map.
+
+ Section mapf_id.
+ Context (functional_extensionality : forall {A B} (f g : A -> B), (forall x, f x = g x) -> f = g)
+ {var : base_type_code -> Type}.
+
+ Lemma mapf_idmap_ext {t} e
+ : @mapf var var
+ (fun _ x => x) (fun _ x => x)
+ t e
+ = e.
+ Proof using functional_extensionality.
+ induction e;
+ repeat match goal with
+ | _ => reflexivity
+ | _ => progress simpl in *
+ | _ => rewrite_hyp !*
+ | _ => apply (f_equal2 (fun x f => LetIn x f))
+ | _ => solve [ eauto ]
+ | _ => apply functional_extensionality; intro
+ end.
+ clear e IHe H.
+ revert dependent tC; induction tx; simpl; [ reflexivity | reflexivity | ]; intros.
+ destruct x as [x0 x1]; simpl in *.
+ lazymatch goal with
+ | [ |- ?e0 (?x0', ?x1')%core = _ ]
+ => rewrite (IHtx1 x0 _ (fun x0'' => e0 (x0'', x1')%core)); cbv beta in *
+ end.
+ lazymatch goal with
+ | [ |- ?e0 (?x0', ?x1')%core = _ ]
+ => rewrite (IHtx2 x1 _ (fun x1'' => e0 (x0', x1'')%core)); cbv beta in *
+ end.
+ reflexivity.
+ Qed.
+ End mapf_id.
+
+ Section mapf_id_interp.
+ Context {interp_base_type : base_type_code -> Type}
+ (interp_op : forall src dst, op src dst -> interp_flat_type interp_base_type src -> interp_flat_type interp_base_type dst)
+ (f_var12 f_var21 : forall t, interp_base_type t -> interp_base_type t)
+ (f_var12_id : forall t x, f_var12 t x = x)
+ (f_var21_id : forall t x, f_var21 t x = x).
+
+ Lemma mapf_idmap {t} e
+ : interpf interp_op
+ (@mapf _ _
+ f_var12 f_var21
+ t e)
+ = interpf interp_op e.
+ Proof using f_var12_id f_var21_id.
+ induction e;
+ repeat match goal with
+ | _ => progress unfold LetIn.Let_In
+ | _ => reflexivity
+ | _ => progress simpl in *
+ | _ => rewrite_hyp !*
+ | _ => apply (f_equal2 (fun x f => LetIn x f))
+ | _ => solve [ eauto ]
+ end.
+ clear H IHe.
+ generalize (interpf interp_op e); intro x; clear e.
+ revert dependent tC; induction tx; simpl;
+ [ intros; rewrite_hyp ?*; reflexivity | reflexivity | ]; intros.
+ destruct x as [x0 x1]; simpl in *.
+ lazymatch goal with
+ | [ |- interpf _ (?e0 (?x0', ?x1')%core) = _ ]
+ => rewrite (IHtx1 x0 _ (fun x0'' => e0 (x0'', x1')%core)); cbv beta in *
+ end.
+ lazymatch goal with
+ | [ |- interpf _ (?e0 (?x0', ?x1')%core) = _ ]
+ => apply (IHtx2 x1 _ (fun x1'' => e0 (x0', x1'')%core)); cbv beta in *
+ end.
+ Qed.
+ End mapf_id_interp.
+End language.