aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-04-02 00:38:38 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-04-02 00:38:38 -0400
commit9aa5f21e5239c031cfa3b3dc3df8166e9153435d (patch)
treefb399b27df3ef231a1893014195049e5303b44b6 /src
parent5961b8fa1f00c01c9c2b84ae048cc1531ed6aab4 (diff)
Add Z.Bounds.MapCastByDeBruijn instantiation
Diffstat (limited to 'src')
-rw-r--r--src/Reflection/Z/Bounds/MapCastByDeBruijn.v27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Reflection/Z/Bounds/MapCastByDeBruijn.v b/src/Reflection/Z/Bounds/MapCastByDeBruijn.v
new file mode 100644
index 000000000..f3e501008
--- /dev/null
+++ b/src/Reflection/Z/Bounds/MapCastByDeBruijn.v
@@ -0,0 +1,27 @@
+Require Import Crypto.Reflection.Syntax.
+Require Import Crypto.Reflection.Z.MapCastByDeBruijn.
+Require Import Crypto.Reflection.Z.Syntax.
+Require Import Crypto.Reflection.Z.Syntax.Util.
+Require Import Crypto.Reflection.Z.Bounds.Interpretation.
+
+Section language.
+ Context (genericize_op : forall t tR (opc : op t tR)
+ (args_bs : interp_flat_type Bounds.interp_base_type t),
+ op (SmartMap.SmartFlatTypeMap (fun _ => Bounds.bounds_to_base_type) args_bs)
+ (SmartMap.SmartFlatTypeMap (fun _ => Bounds.bounds_to_base_type) (Bounds.interp_op opc args_bs))).
+ Context {t : type base_type}.
+
+ Definition MapCastCompile := @MapCastCompile t.
+ Definition MapCastDoCast
+ := @MapCastDoCast
+ (@Bounds.interp_base_type) (@Bounds.interp_op)
+ (fun _ => @Bounds.bounds_to_base_type)
+ (fun _ _ opc _ => @genericize_op _ _ opc _)
+ t.
+ Definition MapCastDoInterp
+ := @MapCastDoInterp
+ (@Bounds.interp_base_type) (fun _ => @Bounds.bounds_to_base_type)
+ t.
+ Definition MapCast e input_bounds
+ := MapCastDoInterp input_bounds (MapCastDoCast input_bounds (MapCastCompile e)).
+End language.