64699fd4a4a1f757dfa41b38ce07b1fff0104456
[coq-hetmet.git] / src / HaskCore.v
1 (*********************************************************************************************************************************)
2 (* HaskCore: basically GHC's CoreSyn.Expr imported into Coqland                                                                  *)
3 (*********************************************************************************************************************************)
4
5 Generalizable All Variables.
6 Require Import Preamble.
7 Require Import General.
8 Require Import Coq.Strings.String.
9 Require Import HaskGeneral.
10 Require Import HaskLiterals.
11 Require Import HaskCoreTypes.
12 Require Import HaskCoreVars.
13
14 (* this type must extract to EXACTLY match TypeRep.Type *)
15 Inductive CoreExpr {b:Type} :=
16 | CoreEVar   : CoreVar                          -> CoreExpr
17 | CoreELit   : HaskLiteral                      -> CoreExpr
18 | CoreEApp   : CoreExpr        ->  CoreExpr     -> CoreExpr
19 | CoreELam   : b               ->  CoreExpr     -> CoreExpr
20 | CoreELet   : CoreBind        ->  CoreExpr     -> CoreExpr
21 | CoreECase  : CoreExpr   -> b ->  CoreType     -> list (@triple AltCon (list b) CoreExpr) -> CoreExpr
22 | CoreECast  : CoreExpr        ->  CoreCoercion -> CoreExpr
23 | CoreENote  : Note            ->  CoreExpr     -> CoreExpr
24 | CoreEType  : CoreType                         -> CoreExpr
25 with      CoreBind {b:Type} :=
26 | CoreNonRec : b -> CoreExpr         -> CoreBind  
27 | CoreRec    : list (b * CoreExpr  ) -> CoreBind.
28 Extract Inductive CoreExpr =>
29    "CoreSyn.Expr" [
30       "CoreSyn.Var"
31       "CoreSyn.Lit"
32       "CoreSyn.App"
33       "CoreSyn.Lam"
34       "CoreSyn.Let"
35       "CoreSyn.Case"
36       "CoreSyn.Cast"
37       "CoreSyn.Note"
38       "CoreSyn.Type" ].
39 Extract Inductive CoreBind =>
40   "CoreSyn.Bind" [ "CoreSyn.NonRec" "CoreSyn.Rec" ].
41
42 (* extracts the Name from a CoreVar *)
43 Variable coreVarCoreName    : CoreVar -> CoreName.   Extract Inlined Constant coreVarCoreName  => "Var.varName".
44
45 Extract Constant ArrowTyCon           => "Type.funTyCon".     (* Figure 7, (->) *)
46 Extract Constant CoFunConst           => "TyCon.TyCon".                        Extraction Implicit CoFunConst [ 1 ].
47 Extract Constant TyFunConst           => "TyCon.TyCon".                        Extraction Implicit TyFunConst [ 1 ].
48
49 (*Extract Inlined Constant getDataCons => "TyCon.tyConDataCons".*)
50 Variable mkTyConApp : forall n, TyCon n -> list CoreType -> CoreType.
51   Extract Inlined Constant mkTyConApp => "Type.mkTyConApp".
52
53 (* the magic wired-in name for the modal type introduction form *)
54 Variable hetmet_brak_name   : CoreName.              Extract Inlined Constant hetmet_brak_name => "PrelNames.hetmet_brak_name".
55
56 (* the magic wired-in name for the modal type elimination form *)
57 Variable hetmet_esc_name    : CoreName.              Extract Inlined Constant hetmet_esc_name  => "PrelNames.hetmet_esc_name".
58
59