aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/Framework/ArithmeticSynthesis/Ladderstep.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Specific/Framework/ArithmeticSynthesis/Ladderstep.v')
-rw-r--r--src/Specific/Framework/ArithmeticSynthesis/Ladderstep.v67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/Specific/Framework/ArithmeticSynthesis/Ladderstep.v b/src/Specific/Framework/ArithmeticSynthesis/Ladderstep.v
new file mode 100644
index 000000000..ba3fd9078
--- /dev/null
+++ b/src/Specific/Framework/ArithmeticSynthesis/Ladderstep.v
@@ -0,0 +1,67 @@
+Require Import Coq.ZArith.BinIntDef.
+Require Import Crypto.Arithmetic.Core.
+Require Import Crypto.Arithmetic.PrimeFieldTheorems.
+Require Import Crypto.Curves.Montgomery.XZ.
+Require Import Crypto.Util.Tuple.
+Require Import Crypto.Util.LetIn.
+Require Import Crypto.Util.Notations.
+Require Import Crypto.Util.Tactics.PoseTermWithName.
+Require Import Crypto.Util.Tactics.CacheTerm.
+
+(** TODO(jadep,andreser): Move to NewBaseSystemTest? *)
+Definition FMxzladderstep {m} := @M.donnaladderstep (F m) F.add F.sub F.mul.
+
+Section with_notations.
+ Context sz (add sub mul : tuple Z sz -> tuple Z sz -> tuple Z sz)
+ (square carry : tuple Z sz -> tuple Z sz).
+ Local Infix "+" := add.
+ Local Notation "a * b" := (carry (mul a b)).
+ Local Notation "x ^ 2" := (carry (square x)).
+ Local Infix "-" := sub.
+ Definition Mxzladderstep a24 x1 Q Q'
+ := match Q, Q' with
+ | (x, z), (x', z') =>
+ dlet origx := x in
+ dlet x := x + z in
+ dlet z := origx - z in
+ dlet origx' := x' in
+ dlet x' := x' + z' in
+ dlet z' := origx' - z' in
+ dlet xx' := x' * z in
+ dlet zz' := x * z' in
+ dlet origx' := xx' in
+ dlet xx' := xx' + zz' in
+ dlet zz' := origx' - zz' in
+ dlet x3 := xx'^2 in
+ dlet zzz' := zz'^2 in
+ dlet z3 := zzz' * x1 in
+ dlet xx := x^2 in
+ dlet zz := z^2 in
+ dlet x2 := xx * zz in
+ dlet zz := xx - zz in
+ dlet zzz := zz * a24 in
+ dlet zzz := zzz + xx in
+ dlet z2 := zz * zzz in
+ ((x2, z2), (x3, z3))%core
+ end.
+End with_notations.
+
+Ltac pose_Mxzladderstep_sig sz wt m add_sig sub_sig mul_sig square_sig carry_sig Mxzladderstep_sig :=
+ cache_term_with_type_by
+ { xzladderstep : tuple Z sz -> tuple Z sz -> tuple Z sz * tuple Z sz -> tuple Z sz * tuple Z sz -> tuple Z sz * tuple Z sz * (tuple Z sz * tuple Z sz)
+ | forall a24 x1 Q Q', let eval := B.Positional.Fdecode wt in Tuple.map (n:=2) (Tuple.map (n:=2) eval) (xzladderstep a24 x1 Q Q') = FMxzladderstep (m:=m) (eval a24) (eval x1) (Tuple.map (n:=2) eval Q) (Tuple.map (n:=2) eval Q') }
+ ltac:((exists (Mxzladderstep sz (proj1_sig add_sig) (proj1_sig sub_sig) (proj1_sig mul_sig) (proj1_sig square_sig) (proj1_sig carry_sig)));
+ let a24 := fresh "a24" in
+ let x1 := fresh "x1" in
+ let Q := fresh "Q" in
+ let Q' := fresh "Q'" in
+ let eval := fresh "eval" in
+ intros a24 x1 Q Q' eval;
+ cbv [Mxzladderstep FMxzladderstep M.donnaladderstep];
+ destruct Q, Q'; cbv [map map' fst snd Let_In eval];
+ repeat match goal with
+ | [ |- context[@proj1_sig ?a ?b ?s] ]
+ => rewrite !(@proj2_sig a b s)
+ end;
+ reflexivity)
+ Mxzladderstep_sig.