src/Tools/Code/code_thingol.ML
author haftmann
Mon, 04 Jan 2010 14:09:56 +0100
changeset 34244 03f8dcab55f3
parent 34173 458ced35abb8
child 34251 cd642bb91f64
permissions -rw-r--r--
code cache without copy; tuned
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     1
(*  Title:      Tools/code/code_thingol.ML
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     4
Intermediate language ("Thin-gol") representing executable code.
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
     5
Representation and translation.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
infix 8 `%%;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
infix 4 `$;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    10
infix 4 `$$;
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    11
infixr 3 `|=>;
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    12
infixr 3 `|==>;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    13
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    14
signature BASIC_CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    15
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    16
  type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    17
  datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    18
      DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    19
    | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    20
  datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    21
      `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
    | ITyVar of vname;
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    23
  type const = string * ((itype list * dict list list) * itype list (*types of arguments*))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    24
  datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    25
      IConst of const
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
    26
    | IVar of vname option
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    27
    | `$ of iterm * iterm
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
    28
    | `|=> of (vname option * itype) * iterm
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
    | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    30
        (*((term, type), [(selector pattern, body term )]), primitive term)*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
  val `$$ : iterm * iterm list -> iterm;
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
    32
  val `|==> : (vname option * itype) list * iterm -> iterm;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    33
  type typscheme = (vname * sort) list * itype;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    36
signature CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
sig
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    38
  include BASIC_CODE_THINGOL
34084
05cb31ca48ae explicit name for function space
haftmann
parents: 34013
diff changeset
    39
  val fun_tyco: string
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    40
  val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    41
  val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    42
  val unfold_fun: itype -> itype list * itype
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    43
  val unfold_app: iterm -> iterm * iterm list
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
    44
  val unfold_abs: iterm -> (vname option * itype) list * iterm
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    45
  val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    46
  val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
    47
  val split_pat_abs: iterm -> ((iterm * itype) * iterm) option
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
    48
  val unfold_pat_abs: iterm -> (iterm * itype) list * iterm
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    49
  val unfold_const_app: iterm -> (const * iterm list) option
32909
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
    50
  val is_IVar: iterm -> bool
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    51
  val eta_expand: int -> const * iterm list -> iterm
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    52
  val contains_dictvar: iterm -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    53
  val locally_monomorphic: iterm -> bool
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
    54
  val add_constnames: iterm -> string list -> string list
32917
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
    55
  val add_tyconames: iterm -> string list -> string list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    56
  val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    57
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    58
  type naming
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
    59
  val empty_naming: naming
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    60
  val lookup_class: naming -> class -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    61
  val lookup_classrel: naming -> class * class -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    62
  val lookup_tyco: naming -> string -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    63
  val lookup_instance: naming -> class * string -> string option
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    64
  val lookup_const: naming -> string -> string option
31054
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
    65
  val ensure_declared_const: theory -> string -> naming -> string * naming
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    67
  datatype stmt =
27024
fcab2dd46872 various code streamlining
haftmann
parents: 26972
diff changeset
    68
      NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    69
    | Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    70
    | Datatype of string * ((vname * sort) list * (string * itype list) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    71
    | Datatypecons of string * string
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    72
    | Class of class * (vname * ((class * string) list * (string * itype) list))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
    | Classrel of class * class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    74
    | Classparam of string * class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    75
    | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    76
          * ((class * (string * (string * dict list list))) list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    77
        * ((string * const) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    78
  type program = stmt Graph.T
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    79
  val empty_funs: program -> string list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    80
  val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    81
  val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    82
  val is_cons: program -> string -> bool
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    83
  val contr_classparam_typs: program -> string -> itype option list
32895
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
    84
  val labelled_name: theory -> program -> string -> string
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
    85
  val group_stmts: theory -> program
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
    86
    -> ((string * stmt) list * (string * stmt) list
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
    87
      * ((string * stmt) list * (string * stmt) list)) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    88
32358
98c00ee9e786 proper eta expansion in recfun_codegen.ML; no eta expansion at all in code_thingol.ML
haftmann
parents: 32353
diff changeset
    89
  val expand_eta: theory -> int -> thm -> thm
32928
6bcc35f7ff6d more explicit notion of canonized code equations
haftmann
parents: 32917
diff changeset
    90
  val canonize_thms: theory -> thm list -> thm list
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
    91
  val read_const_exprs: theory -> string list -> string list * string list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    92
  val consts_program: theory -> string list -> string list * (naming * program)
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 31962
diff changeset
    93
  val eval_conv: theory
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
    94
    -> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> cterm -> thm)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    95
    -> cterm -> thm
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 31962
diff changeset
    96
  val eval: theory -> ((term -> term) -> 'a -> 'a)
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
    97
    -> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> 'a)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    98
    -> term -> 'a
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    99
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   100
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   101
structure Code_Thingol: CODE_THINGOL =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   102
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   103
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   104
(** auxiliary **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   105
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   106
fun unfoldl dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   107
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   108
   of NONE => (x, [])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   109
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   110
        let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   111
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   112
fun unfoldr dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   113
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   114
   of NONE => ([], x)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   115
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   116
        let val (xs', x') = unfoldr dest x2 in (x1::xs', x') end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   117
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   118
29962
bd4dc7fa742d tuned comments, stripped ID, deleted superfluous code
haftmann
parents: 29952
diff changeset
   119
(** language core - types, terms **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   120
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   121
type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   122
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   123
datatype dict =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   124
    DictConst of string * dict list list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   125
  | DictVar of string list * (vname * (int * int));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   126
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   127
datatype itype =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   128
    `%% of string * itype list
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   129
  | ITyVar of vname;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   130
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
   131
type const = string * ((itype list * dict list list) * itype list (*types of arguments*))
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   132
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   133
datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   134
    IConst of const
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   135
  | IVar of vname option
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
  | `$ of iterm * iterm
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
   137
  | `|=> of (vname option * itype) * iterm
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
  | ICase of ((iterm * itype) * (iterm * iterm) list) * iterm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   139
    (*see also signature*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   140
32909
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
   141
fun is_IVar (IVar _) = true
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
   142
  | is_IVar _ = false;
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
   143
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
val op `$$ = Library.foldl (op `$);
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   145
val op `|==> = Library.foldr (op `|=>);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   146
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   147
val unfold_app = unfoldl
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   148
  (fn op `$ t => SOME t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   149
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   150
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   151
val unfold_abs = unfoldr
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   152
  (fn op `|=> t => SOME t
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   153
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   154
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   155
val split_let = 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   156
  (fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   157
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   158
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   159
val unfold_let = unfoldr split_let;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
fun unfold_const_app t =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
 case unfold_app t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
  of (IConst c, ts) => SOME (c, ts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
   | _ => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
32917
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   166
fun fold_constexprs f =
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   167
  let
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   168
    fun fold' (IConst c) = f c
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   169
      | fold' (IVar _) = I
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   170
      | fold' (t1 `$ t2) = fold' t1 #> fold' t2
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   171
      | fold' (_ `|=> t) = fold' t
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   172
      | fold' (ICase (((t, _), ds), _)) = fold' t
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   173
          #> fold (fn (pat, body) => fold' pat #> fold' body) ds
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   174
  in fold' end;
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   175
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   176
val add_constnames = fold_constexprs (fn (c, _) => insert (op =) c);
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   177
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   178
fun add_tycos (tyco `%% tys) = insert (op =) tyco #> fold add_tycos tys
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   179
  | add_tycos (ITyVar _) = I;
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   180
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   181
val add_tyconames = fold_constexprs (fn (_, ((tys, _), _)) => fold add_tycos tys);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   182
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   183
fun fold_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   184
  let
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   185
    fun fold_aux add f =
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   186
      let
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   187
        fun fold_term _ (IConst _) = I
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   188
          | fold_term vs (IVar (SOME v)) = if member (op =) vs v then I else f v
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   189
          | fold_term _ (IVar NONE) = I
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   190
          | fold_term vs (t1 `$ t2) = fold_term vs t1 #> fold_term vs t2
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   191
          | fold_term vs ((SOME v, _) `|=> t) = fold_term (insert (op =) v vs) t
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   192
          | fold_term vs ((NONE, _) `|=> t) = fold_term vs t
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   193
          | fold_term vs (ICase (((t, _), ds), _)) = fold_term vs t #> fold (fold_case vs) ds
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   194
        and fold_case vs (p, t) = fold_term (add p vs) t;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   195
      in fold_term [] end;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   196
    fun add t = fold_aux add (insert (op =)) t;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   197
  in fold_aux add f end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   199
fun exists_var t v = fold_varnames (fn w => fn b => v = w orelse b) t false;
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   200
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   201
fun split_pat_abs ((NONE, ty) `|=> t) = SOME ((IVar NONE, ty), t)
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
   202
  | split_pat_abs ((SOME v, ty) `|=> t) = SOME (case t
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   203
     of ICase (((IVar (SOME w), _), [(p, t')]), _) =>
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
   204
          if v = w andalso (exists_var p v orelse not (exists_var t' v))
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   205
          then ((p, ty), t')
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   206
          else ((IVar (SOME v), ty), t)
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   207
      | _ => ((IVar (SOME v), ty), t))
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
   208
  | split_pat_abs _ = NONE;
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   209
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   210
val unfold_pat_abs = unfoldr split_pat_abs;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   211
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   212
fun unfold_abs_eta [] t = ([], t)
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   213
  | unfold_abs_eta (_ :: tys) (v_ty `|=> t) =
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   214
      let
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   215
        val (vs_tys, t') = unfold_abs_eta tys t;
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   216
      in (v_ty :: vs_tys, t') end
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   217
  | unfold_abs_eta tys t =
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   218
      let
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   219
        val ctxt = fold_varnames Name.declare t Name.context;
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   220
        val vs_tys = (map o apfst) SOME (Name.names ctxt "a" tys);
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   221
      in (vs_tys, t `$$ map (IVar o fst) vs_tys) end;
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   222
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   223
fun eta_expand k (c as (_, (_, tys)), ts) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   224
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   225
    val j = length ts;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   226
    val l = k - j;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   227
    val ctxt = (fold o fold_varnames) Name.declare ts Name.context;
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   228
    val vs_tys = (map o apfst) SOME
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   229
      (Name.names ctxt "a" ((take l o drop j) tys));
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   230
  in vs_tys `|==> IConst c `$$ ts @ map (IVar o fst) vs_tys end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   231
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   232
fun contains_dictvar t =
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   233
  let
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   234
    fun cont_dict (DictConst (_, dss)) = (exists o exists) cont_dict dss
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   235
      | cont_dict (DictVar _) = true;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   236
    fun cont_term (IConst (_, ((_, dss), _))) = (exists o exists) cont_dict dss
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   237
      | cont_term (IVar _) = false
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   238
      | cont_term (t1 `$ t2) = cont_term t1 orelse cont_term t2
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   239
      | cont_term (_ `|=> t) = cont_term t
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   240
      | cont_term (ICase (_, t)) = cont_term t;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   241
  in cont_term t end;
24662
f79f6061525c more precise treatment of free dictionary parameters for evaluation
haftmann
parents: 24591
diff changeset
   242
  
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   243
fun locally_monomorphic (IConst _) = false
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   244
  | locally_monomorphic (IVar _) = true
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   245
  | locally_monomorphic (t `$ _) = locally_monomorphic t
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   246
  | locally_monomorphic (_ `|=> t) = locally_monomorphic t
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   247
  | locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   248
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   249
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   250
(** namings **)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   251
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   252
(* policies *)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   253
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   254
local
33172
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   255
  fun thyname_of_class thy = #theory_name o Name_Space.the_entry (Sign.class_space thy);
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   256
  fun thyname_of_instance thy inst = case AxClass.thynames_of_arity thy inst
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   257
   of [] => error ("No such instance: " ^ quote (snd inst ^ " :: " ^ fst inst))
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   258
    | thyname :: _ => thyname;
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   259
  fun thyname_of_const thy c = case AxClass.class_of_param thy c
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   260
   of SOME class => thyname_of_class thy class
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   261
    | NONE => (case Code.get_datatype_of_constr thy c
33172
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   262
       of SOME dtco => Codegen.thyname_of_type thy dtco
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   263
        | NONE => Codegen.thyname_of_const thy c);
33420
17b7095ad463 pretty name for ==>
haftmann
parents: 33187
diff changeset
   264
  fun purify_base "==>" = "follows"
17b7095ad463 pretty name for ==>
haftmann
parents: 33187
diff changeset
   265
    | purify_base "op &" = "and"
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   266
    | purify_base "op |" = "or"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   267
    | purify_base "op -->" = "implies"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   268
    | purify_base "op :" = "member"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   269
    | purify_base "op =" = "eq"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   270
    | purify_base "*" = "product"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   271
    | purify_base "+" = "sum"
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   272
    | purify_base s = Name.desymbolize false s;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   273
  fun namify thy get_basename get_thyname name =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   274
    let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   275
      val prefix = get_thyname thy name;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   276
      val base = (purify_base o get_basename) name;
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   277
    in Long_Name.append prefix base end;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   278
in
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   279
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   280
fun namify_class thy = namify thy Long_Name.base_name thyname_of_class;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   281
fun namify_classrel thy = namify thy (fn (class1, class2) => 
33172
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   282
    Long_Name.base_name class2 ^ "_" ^ Long_Name.base_name class1)
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   283
  (fn thy => thyname_of_class thy o fst);
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   284
  (*order fits nicely with composed projections*)
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   285
fun namify_tyco thy "fun" = "Pure.fun"
33172
61ee96bc9895 maintain theory name via name space, not tags;
wenzelm
parents: 33029
diff changeset
   286
  | namify_tyco thy tyco = namify thy Long_Name.base_name Codegen.thyname_of_type tyco;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   287
fun namify_instance thy = namify thy (fn (class, tyco) => 
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   288
  Long_Name.base_name class ^ "_" ^ Long_Name.base_name tyco) thyname_of_instance;
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   289
fun namify_const thy = namify thy Long_Name.base_name thyname_of_const;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   290
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   291
end; (* local *)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   292
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   293
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   294
(* data *)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   295
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   296
datatype naming = Naming of {
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   297
  class: class Symtab.table * Name.context,
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   298
  classrel: string Symreltab.table * Name.context,
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   299
  tyco: string Symtab.table * Name.context,
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   300
  instance: string Symreltab.table * Name.context,
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   301
  const: string Symtab.table * Name.context
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   302
}
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   303
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   304
fun dest_Naming (Naming naming) = naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   305
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   306
val empty_naming = Naming {
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   307
  class = (Symtab.empty, Name.context),
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   308
  classrel = (Symreltab.empty, Name.context),
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   309
  tyco = (Symtab.empty, Name.context),
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   310
  instance = (Symreltab.empty, Name.context),
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   311
  const = (Symtab.empty, Name.context)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   312
};
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   313
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   314
local
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   315
  fun mk_naming (class, classrel, tyco, instance, const) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   316
    Naming { class = class, classrel = classrel,
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   317
      tyco = tyco, instance = instance, const = const };
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   318
  fun map_naming f (Naming { class, classrel, tyco, instance, const }) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   319
    mk_naming (f (class, classrel, tyco, instance, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   320
in
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   321
  fun map_class f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   322
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   323
      (f class, classrel, tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   324
  fun map_classrel f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   325
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   326
      (class, f classrel, tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   327
  fun map_tyco f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   328
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   329
      (class, classrel, f tyco, inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   330
  fun map_instance f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   331
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   332
      (class, classrel, tyco, f inst, const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   333
  fun map_const f = map_naming
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   334
    (fn (class, classrel, tyco, inst, const) =>
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   335
      (class, classrel, tyco, inst, f const));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   336
end; (*local*)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   337
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   338
fun add_variant update (thing, name) (tab, used) =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   339
  let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   340
    val (name', used') = yield_singleton Name.variants name used;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   341
    val tab' = update (thing, name') tab;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   342
  in (tab', used') end;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   343
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   344
fun declare thy mapp lookup update namify thing =
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   345
  mapp (add_variant update (thing, namify thy thing))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   346
  #> `(fn naming => the (lookup naming thing));
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   347
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   348
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   349
(* lookup and declare *)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   350
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   351
local
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   352
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   353
val suffix_class = "class";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   354
val suffix_classrel = "classrel"
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   355
val suffix_tyco = "tyco";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   356
val suffix_instance = "inst";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   357
val suffix_const = "const";
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   358
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   359
fun add_suffix nsp NONE = NONE
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
   360
  | add_suffix nsp (SOME name) = SOME (Long_Name.append name nsp);
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   361
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   362
in
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   363
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   364
val lookup_class = add_suffix suffix_class
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   365
  oo Symtab.lookup o fst o #class o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   366
val lookup_classrel = add_suffix suffix_classrel
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   367
  oo Symreltab.lookup o fst o #classrel o dest_Naming;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   368
val lookup_tyco = add_suffix suffix_tyco
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   369
  oo Symtab.lookup o fst o #tyco o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   370
val lookup_instance = add_suffix suffix_instance
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   371
  oo Symreltab.lookup o fst o #instance o dest_Naming;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   372
val lookup_const = add_suffix suffix_const
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   373
  oo Symtab.lookup o fst o #const o dest_Naming;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   374
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   375
fun declare_class thy = declare thy map_class
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   376
  lookup_class Symtab.update_new namify_class;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   377
fun declare_classrel thy = declare thy map_classrel
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   378
  lookup_classrel Symreltab.update_new namify_classrel;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   379
fun declare_tyco thy = declare thy map_tyco
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   380
  lookup_tyco Symtab.update_new namify_tyco;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   381
fun declare_instance thy = declare thy map_instance
30648
17365ef082f3 clarified relationship of modules Code_Name and Code_Printer
haftmann
parents: 30364
diff changeset
   382
  lookup_instance Symreltab.update_new namify_instance;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   383
fun declare_const thy = declare thy map_const
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   384
  lookup_const Symtab.update_new namify_const;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   385
31054
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   386
fun ensure_declared_const thy const naming =
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   387
  case lookup_const naming const
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   388
   of SOME const' => (const', naming)
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   389
    | NONE => declare_const thy const naming;
841c9f67f9e7 explicit type arguments in constants
haftmann
parents: 31049
diff changeset
   390
34084
05cb31ca48ae explicit name for function space
haftmann
parents: 34013
diff changeset
   391
val fun_tyco = "Pure.fun.tyco" (*depends on suffix_tyco and namify_tyco!*);
05cb31ca48ae explicit name for function space
haftmann
parents: 34013
diff changeset
   392
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   393
val unfold_fun = unfoldr
34084
05cb31ca48ae explicit name for function space
haftmann
parents: 34013
diff changeset
   394
  (fn tyco `%% [ty1, ty2] => if tyco = fun_tyco then SOME (ty1, ty2) else NONE
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   395
    | _ => NONE); (*depends on suffix_tyco and namify_tyco!*)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   396
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   397
end; (* local *)
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   398
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   399
32353
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   400
(** technical transformations of code equations **)
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   401
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   402
fun expand_eta thy k thm =
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   403
  let
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   404
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm;
33187
haftmann
parents: 33172
diff changeset
   405
    val (_, args) = strip_comb lhs;
32353
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   406
    val l = if k = ~1
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   407
      then (length o fst o strip_abs) rhs
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   408
      else Int.max (0, k - length args);
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   409
    val (raw_vars, _) = Term.strip_abs_eta l rhs;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   410
    val vars = burrow_fst (Name.variant_list (map (fst o fst) (Term.add_vars lhs [])))
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   411
      raw_vars;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   412
    fun expand (v, ty) thm = Drule.fun_cong_rule thm
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   413
      (Thm.cterm_of thy (Var ((v, 0), ty)));
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   414
  in
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   415
    thm
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   416
    |> fold expand vars
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   417
    |> Conv.fconv_rule Drule.beta_eta_conversion
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   418
  end;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   419
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   420
fun same_arity thy thms =
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   421
  let
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   422
    val num_args_of = length o snd o strip_comb o fst o Logic.dest_equals;
33029
2fefe039edf1 uniform use of Integer.min/max;
wenzelm
parents: 32929
diff changeset
   423
    val k = fold (Integer.max o num_args_of o Thm.prop_of) thms 0;
32353
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   424
  in map (expand_eta thy k) thms end;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   425
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   426
fun mk_desymbolization pre post mk vs =
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   427
  let
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   428
    val names = map (pre o fst o fst) vs
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   429
      |> map (Name.desymbolize false)
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   430
      |> Name.variant_list []
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   431
      |> map post;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   432
  in map_filter (fn (((v, i), x), v') =>
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   433
    if v = v' andalso i = 0 then NONE
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   434
    else SOME (((v, i), x), mk ((v', 0), x))) (vs ~~ names)
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   435
  end;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   436
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   437
fun desymbolize_tvars thy thms =
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   438
  let
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   439
    val tvs = fold (Term.add_tvars o Thm.prop_of) thms [];
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   440
    val tvar_subst = mk_desymbolization (unprefix "'") (prefix "'") TVar tvs;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   441
  in map (Thm.certify_instantiate (tvar_subst, [])) thms end;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   442
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   443
fun desymbolize_vars thy thm =
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   444
  let
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   445
    val vs = Term.add_vars (Thm.prop_of thm) [];
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   446
    val var_subst = mk_desymbolization I I Var vs;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   447
  in Thm.certify_instantiate ([], var_subst) thm end;
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   448
32928
6bcc35f7ff6d more explicit notion of canonized code equations
haftmann
parents: 32917
diff changeset
   449
fun canonize_thms thy = map (Thm.transfer thy)
32929
0e9e13ac06d7 sharpened name
haftmann
parents: 32928
diff changeset
   450
  #> Code.standard_typscheme thy #> desymbolize_tvars thy
32928
6bcc35f7ff6d more explicit notion of canonized code equations
haftmann
parents: 32917
diff changeset
   451
  #> same_arity thy #> map (desymbolize_vars thy);
32353
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   452
0ac26087464b moved all technical processing of code equations to code_thingol.ML
haftmann
parents: 32350
diff changeset
   453
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   454
(** statements, abstract programs **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   455
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   456
type typscheme = (vname * sort) list * itype;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   457
datatype stmt =
27024
fcab2dd46872 various code streamlining
haftmann
parents: 26972
diff changeset
   458
    NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   459
  | Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   460
  | Datatype of string * ((vname * sort) list * (string * itype list) list)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   461
  | Datatypecons of string * string
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   462
  | Class of class * (vname * ((class * string) list * (string * itype) list))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   463
  | Classrel of class * class
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   464
  | Classparam of string * class
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   465
  | Classinst of (class * (string * (vname * sort) list))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   466
        * ((class * (string * (string * dict list list))) list
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   467
      * ((string * const) * (thm * bool)) list);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   468
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   469
type program = stmt Graph.T;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   470
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   471
fun empty_funs program =
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   472
  Graph.fold (fn (name, (Fun (c, (_, [])), _)) => cons c
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   473
               | _ => I) program [];
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   474
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   475
fun map_terms_bottom_up f (t as IConst _) = f t
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   476
  | map_terms_bottom_up f (t as IVar _) = f t
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   477
  | map_terms_bottom_up f (t1 `$ t2) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   478
      (map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2)
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   479
  | map_terms_bottom_up f ((v, ty) `|=> t) = f
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
   480
      ((v, ty) `|=> map_terms_bottom_up f t)
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   481
  | map_terms_bottom_up f (ICase (((t, ty), ps), t0)) = f
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   482
      (ICase (((map_terms_bottom_up f t, ty), (map o pairself)
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   483
        (map_terms_bottom_up f) ps), map_terms_bottom_up f t0));
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   484
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   485
fun map_terms_stmt f NoStmt = NoStmt
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   486
  | map_terms_stmt f (Fun (c, (tysm, eqs))) = Fun (c, (tysm, (map o apfst)
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   487
      (fn (ts, t) => (map f ts, f t)) eqs))
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   488
  | map_terms_stmt f (stmt as Datatype _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   489
  | map_terms_stmt f (stmt as Datatypecons _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   490
  | map_terms_stmt f (stmt as Class _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   491
  | map_terms_stmt f (stmt as Classrel _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   492
  | map_terms_stmt f (stmt as Classparam _) = stmt
33990
febc68c02b63 avoid misleading name "superarities"
haftmann
parents: 33420
diff changeset
   493
  | map_terms_stmt f (Classinst (arity, (superinsts, classparams))) =
febc68c02b63 avoid misleading name "superarities"
haftmann
parents: 33420
diff changeset
   494
      Classinst (arity, (superinsts, (map o apfst o apsnd) (fn const =>
febc68c02b63 avoid misleading name "superarities"
haftmann
parents: 33420
diff changeset
   495
        case f (IConst const) of IConst const' => const') classparams));
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   496
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   497
fun is_cons program name = case Graph.get_node program name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   498
 of Datatypecons _ => true
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   499
  | _ => false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   500
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   501
fun contr_classparam_typs program name = case Graph.get_node program name
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   502
 of Classparam (_, class) => let
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   503
        val Class (_, (_, (_, params))) = Graph.get_node program class;
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   504
        val SOME ty = AList.lookup (op =) params name;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   505
        val (tys, res_ty) = unfold_fun ty;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   506
        fun no_tyvar (_ `%% tys) = forall no_tyvar tys
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   507
          | no_tyvar (ITyVar _) = false;
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   508
      in if no_tyvar res_ty
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   509
        then map (fn ty => if no_tyvar ty then NONE else SOME ty) tys
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   510
        else []
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   511
      end
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   512
  | _ => [];
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   513
32895
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   514
fun labelled_name thy program name = case Graph.get_node program name
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   515
 of Fun (c, _) => quote (Code.string_of_const thy c)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   516
  | Datatype (tyco, _) => "type " ^ quote (Sign.extern_type thy tyco)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   517
  | Datatypecons (c, _) => quote (Code.string_of_const thy c)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   518
  | Class (class, _) => "class " ^ quote (Sign.extern_class thy class)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   519
  | Classrel (sub, super) => let
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   520
        val Class (sub, _) = Graph.get_node program sub
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   521
        val Class (super, _) = Graph.get_node program super
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   522
      in quote (Sign.extern_class thy sub ^ " < " ^ Sign.extern_class thy super) end
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   523
  | Classparam (c, _) => quote (Code.string_of_const thy c)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   524
  | Classinst ((class, (tyco, _)), _) => let
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   525
        val Class (class, _) = Graph.get_node program class
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   526
        val Datatype (tyco, _) = Graph.get_node program tyco
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   527
      in quote (Sign.extern_type thy tyco ^ " :: " ^ Sign.extern_class thy class) end
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   528
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   529
fun group_stmts thy program =
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   530
  let
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   531
    fun is_fun (_, Fun _) = true | is_fun _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   532
    fun is_datatypecons (_, Datatypecons _) = true | is_datatypecons _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   533
    fun is_datatype (_, Datatype _) = true | is_datatype _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   534
    fun is_class (_, Class _) = true | is_class _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   535
    fun is_classrel (_, Classrel _) = true | is_classrel _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   536
    fun is_classparam (_, Classparam _) = true | is_classparam _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   537
    fun is_classinst (_, Classinst _) = true | is_classinst _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   538
    fun group stmts =
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   539
      if forall (is_datatypecons orf is_datatype) stmts
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   540
      then (filter is_datatype stmts, [], ([], []))
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   541
      else if forall (is_class orf is_classrel orf is_classparam) stmts
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   542
      then ([], filter is_class stmts, ([], []))
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   543
      else if forall (is_fun orf is_classinst) stmts
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   544
      then ([], [], List.partition is_fun stmts)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   545
      else error ("Illegal mutual dependencies: " ^
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   546
        (commas o map (labelled_name thy program o fst)) stmts)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   547
  in
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   548
    rev (Graph.strong_conn program)
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   549
    |> map (AList.make (Graph.get_node program))
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   550
    |> map group
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   551
  end;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   552
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   553
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   554
(** translation kernel **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   555
28724
haftmann
parents: 28708
diff changeset
   556
(* generic mechanisms *)
haftmann
parents: 28708
diff changeset
   557
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   558
fun ensure_stmt lookup declare generate thing (dep, (naming, program)) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   559
  let
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   560
    fun add_dep name = case dep of NONE => I
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   561
      | SOME dep => Graph.add_edge (dep, name);
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   562
    val (name, naming') = case lookup naming thing
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   563
     of SOME name => (name, naming)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   564
      | NONE => declare thing naming;
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   565
  in case try (Graph.get_node program) name
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   566
   of SOME stmt => program
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   567
        |> add_dep name
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   568
        |> pair naming'
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   569
        |> pair dep
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   570
        |> pair name
28706
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   571
    | NONE => program
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   572
        |> Graph.default_node (name, NoStmt)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   573
        |> add_dep name
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   574
        |> pair naming'
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   575
        |> curry generate (SOME name)
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   576
        ||> snd
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   577
        |-> (fn stmt => (apsnd o Graph.map_node name) (K stmt))
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   578
        |> pair dep
3fef773ae6b1 restored incremental code generation
haftmann
parents: 28688
diff changeset
   579
        |> pair name
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   580
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   581
26972
haftmann
parents: 26939
diff changeset
   582
fun not_wellsorted thy thm ty sort e =
haftmann
parents: 26939
diff changeset
   583
  let
haftmann
parents: 26939
diff changeset
   584
    val err_class = Sorts.class_error (Syntax.pp_global thy) e;
haftmann
parents: 26939
diff changeset
   585
    val err_thm = case thm
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 31962
diff changeset
   586
     of SOME thm => "\n(in code equation " ^ Display.string_of_thm_global thy thm ^ ")" | NONE => "";
26972
haftmann
parents: 26939
diff changeset
   587
    val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort "
haftmann
parents: 26939
diff changeset
   588
      ^ Syntax.string_of_sort_global thy sort;
haftmann
parents: 26939
diff changeset
   589
  in error ("Wellsortedness error" ^ err_thm ^ ":\n" ^ err_typ ^ "\n" ^ err_class) end;
haftmann
parents: 26939
diff changeset
   590
28724
haftmann
parents: 28708
diff changeset
   591
haftmann
parents: 28708
diff changeset
   592
(* translation *)
haftmann
parents: 28708
diff changeset
   593
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   594
fun ensure_tyco thy algbr eqngr tyco =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   595
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   596
    val stmt_datatype =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   597
      let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   598
        val (vs, cos) = Code.get_datatype thy tyco;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   599
      in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   600
        fold_map (translate_tyvar_sort thy algbr eqngr) vs
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   601
        ##>> fold_map (fn (c, tys) =>
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   602
          ensure_const thy algbr eqngr c
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   603
          ##>> fold_map (translate_typ thy algbr eqngr) tys) cos
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   604
        #>> (fn info => Datatype (tyco, info))
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   605
      end;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   606
  in ensure_stmt lookup_tyco (declare_tyco thy) stmt_datatype tyco end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   607
and ensure_const thy algbr eqngr c =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   608
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   609
    fun stmt_datatypecons tyco =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   610
      ensure_tyco thy algbr eqngr tyco
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   611
      #>> (fn tyco => Datatypecons (c, tyco));
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   612
    fun stmt_classparam class =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   613
      ensure_class thy algbr eqngr class
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   614
      #>> (fn class => Classparam (c, class));
32872
019201eb7e07 variables in type schemes must be renamed simultaneously with variables in equations
haftmann
parents: 32795
diff changeset
   615
    fun stmt_fun raw_eqns =
019201eb7e07 variables in type schemes must be renamed simultaneously with variables in equations
haftmann
parents: 32795
diff changeset
   616
      let
32928
6bcc35f7ff6d more explicit notion of canonized code equations
haftmann
parents: 32917
diff changeset
   617
        val eqns = burrow_fst (canonize_thms thy) raw_eqns;
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   618
        val (vs, ty) = Code.typscheme_eqns thy c (map fst eqns);
32872
019201eb7e07 variables in type schemes must be renamed simultaneously with variables in equations
haftmann
parents: 32795
diff changeset
   619
      in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   620
        fold_map (translate_tyvar_sort thy algbr eqngr) vs
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   621
        ##>> translate_typ thy algbr eqngr ty
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   622
        ##>> fold_map (translate_eqn thy algbr eqngr) eqns
32872
019201eb7e07 variables in type schemes must be renamed simultaneously with variables in equations
haftmann
parents: 32795
diff changeset
   623
        #>> (fn info => Fun (c, info))
019201eb7e07 variables in type schemes must be renamed simultaneously with variables in equations
haftmann
parents: 32795
diff changeset
   624
      end;
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   625
    val stmt_const = case Code.get_datatype_of_constr thy c
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   626
     of SOME tyco => stmt_datatypecons tyco
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   627
      | NONE => (case AxClass.class_of_param thy c
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   628
         of SOME class => stmt_classparam class
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   629
          | NONE => stmt_fun (Code_Preproc.eqns eqngr c))
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   630
  in ensure_stmt lookup_const (declare_const thy) stmt_const c end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   631
and ensure_class thy (algbr as (_, algebra)) eqngr class =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   632
  let
28924
5c8781b7d6a4 code_funcgr interface includes also sort algebra
haftmann
parents: 28724
diff changeset
   633
    val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   634
    val cs = #params (AxClass.get_info thy class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   635
    val stmt_class =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   636
      fold_map (fn superclass => ensure_class thy algbr eqngr superclass
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   637
        ##>> ensure_classrel thy algbr eqngr (class, superclass)) superclasses
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   638
      ##>> fold_map (fn (c, ty) => ensure_const thy algbr eqngr c
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   639
        ##>> translate_typ thy algbr eqngr ty) cs
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   640
      #>> (fn info => Class (class, (unprefix "'" Name.aT, info)))
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   641
  in ensure_stmt lookup_class (declare_class thy) stmt_class class end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   642
and ensure_classrel thy algbr eqngr (subclass, superclass) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   643
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   644
    val stmt_classrel =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   645
      ensure_class thy algbr eqngr subclass
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   646
      ##>> ensure_class thy algbr eqngr superclass
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   647
      #>> Classrel;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   648
  in ensure_stmt lookup_classrel (declare_classrel thy) stmt_classrel (subclass, superclass) end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   649
and ensure_inst thy (algbr as (_, algebra)) eqngr (class, tyco) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   650
  let
28924
5c8781b7d6a4 code_funcgr interface includes also sort algebra
haftmann
parents: 28724
diff changeset
   651
    val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
24969
b38527eefb3b removed obsolete AxClass.params_of_class;
wenzelm
parents: 24918
diff changeset
   652
    val classparams = these (try (#params o AxClass.get_info thy) class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   653
    val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   654
    val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   655
    val vs' = map2 (fn (v, sort1) => fn sort2 => (v,
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   656
      Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts';
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   657
    val arity_typ = Type (tyco, map TFree vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   658
    val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs');
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   659
    fun translate_superarity superclass =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   660
      ensure_class thy algbr eqngr superclass
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   661
      ##>> ensure_classrel thy algbr eqngr (class, superclass)
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   662
      ##>> translate_dicts thy algbr eqngr NONE (arity_typ, [superclass])
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   663
      #>> (fn ((superclass, classrel), [DictConst (inst, dss)]) =>
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   664
            (superclass, (classrel, (inst, dss))));
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   665
    fun translate_classparam_inst (c, ty) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   666
      let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   667
        val c_inst = Const (c, map_type_tfree (K arity_typ') ty);
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25485
diff changeset
   668
        val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy c_inst);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   669
        val c_ty = (apsnd Logic.unvarifyT o dest_Const o snd
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   670
          o Logic.dest_equals o Thm.prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   671
      in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   672
        ensure_const thy algbr eqngr c
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   673
        ##>> translate_const thy algbr eqngr (SOME thm) c_ty
28350
715163ec93c0 non left-linear equations for nbe
haftmann
parents: 28054
diff changeset
   674
        #>> (fn (c, IConst c_inst) => ((c, c_inst), (thm, true)))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   675
      end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   676
    val stmt_inst =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   677
      ensure_class thy algbr eqngr class
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   678
      ##>> ensure_tyco thy algbr eqngr tyco
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   679
      ##>> fold_map (translate_tyvar_sort thy algbr eqngr) vs
28688
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   680
      ##>> fold_map translate_superarity superclasses
1a9fabb515cd "fun" gained a more uniform status
haftmann
parents: 28663
diff changeset
   681
      ##>> fold_map translate_classparam_inst classparams
33990
febc68c02b63 avoid misleading name "superarities"
haftmann
parents: 33420
diff changeset
   682
      #>> (fn ((((class, tyco), arity), superinsts), classparams) =>
febc68c02b63 avoid misleading name "superarities"
haftmann
parents: 33420
diff changeset
   683
             Classinst ((class, (tyco, arity)), (superinsts, classparams)));
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   684
  in ensure_stmt lookup_instance (declare_instance thy) stmt_inst (class, tyco) end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   685
and translate_typ thy algbr eqngr (TFree (v, _)) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   686
      pair (ITyVar (unprefix "'" v))
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   687
  | translate_typ thy algbr eqngr (Type (tyco, tys)) =
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   688
      ensure_tyco thy algbr eqngr tyco
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   689
      ##>> fold_map (translate_typ thy algbr eqngr) tys
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   690
      #>> (fn (tyco, tys) => tyco `%% tys)
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   691
and translate_term thy algbr eqngr thm (Const (c, ty)) =
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   692
      translate_app thy algbr eqngr thm ((c, ty), [])
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   693
  | translate_term thy algbr eqngr thm (Free (v, _)) =
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   694
      pair (IVar (SOME v))
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   695
  | translate_term thy algbr eqngr thm (Abs (v, ty, t)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   696
      let
32273
3c395fc7ec5e abstractions: desymbolize name hint
haftmann
parents: 32131
diff changeset
   697
        val (v', t') = Syntax.variant_abs (Name.desymbolize false v, ty, t);
3c395fc7ec5e abstractions: desymbolize name hint
haftmann
parents: 32131
diff changeset
   698
        val v'' = if member (op =) (Term.add_free_names t' []) v'
3c395fc7ec5e abstractions: desymbolize name hint
haftmann
parents: 32131
diff changeset
   699
          then SOME v' else NONE
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   700
      in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   701
        translate_typ thy algbr eqngr ty
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   702
        ##>> translate_term thy algbr eqngr thm t'
32273
3c395fc7ec5e abstractions: desymbolize name hint
haftmann
parents: 32131
diff changeset
   703
        #>> (fn (ty, t) => (v'', ty) `|=> t)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   704
      end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   705
  | translate_term thy algbr eqngr thm (t as _ $ _) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   706
      case strip_comb t
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   707
       of (Const (c, ty), ts) =>
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   708
            translate_app thy algbr eqngr thm ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   709
        | (t', ts) =>
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   710
            translate_term thy algbr eqngr thm t'
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   711
            ##>> fold_map (translate_term thy algbr eqngr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   712
            #>> (fn (t, ts) => t `$$ ts)
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   713
and translate_eqn thy algbr eqngr (thm, proper) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   714
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   715
    val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals
33943
f31d645b4e00 subst_signatures
haftmann
parents: 33420
diff changeset
   716
      o Code.subst_signatures thy o Logic.unvarify o prop_of) thm;
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   717
  in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   718
    fold_map (translate_term thy algbr eqngr (SOME thm)) args
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   719
    ##>> translate_term thy algbr eqngr (SOME thm) rhs
31088
36a011423fcc clarified terminilogy concerning nbe equations
haftmann
parents: 31063
diff changeset
   720
    #>> rpair (thm, proper)
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   721
  end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   722
and translate_const thy algbr eqngr thm (c, ty) =
26972
haftmann
parents: 26939
diff changeset
   723
  let
haftmann
parents: 26939
diff changeset
   724
    val tys = Sign.const_typargs thy (c, ty);
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   725
    val sorts = Code_Preproc.sortargs eqngr c;
26972
haftmann
parents: 26939
diff changeset
   726
    val tys_args = (fst o Term.strip_type) ty;
haftmann
parents: 26939
diff changeset
   727
  in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   728
    ensure_const thy algbr eqngr c
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   729
    ##>> fold_map (translate_typ thy algbr eqngr) tys
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   730
    ##>> fold_map (translate_dicts thy algbr eqngr thm) (tys ~~ sorts)
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   731
    ##>> fold_map (translate_typ thy algbr eqngr) tys_args
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
   732
    #>> (fn (((c, tys), iss), tys_args) => IConst (c, ((tys, iss), tys_args)))
26972
haftmann
parents: 26939
diff changeset
   733
  end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   734
and translate_app_const thy algbr eqngr thm (c_ty, ts) =
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   735
  translate_const thy algbr eqngr thm c_ty
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   736
  ##>> fold_map (translate_term thy algbr eqngr thm) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   737
  #>> (fn (t, ts) => t `$$ ts)
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   738
and translate_case thy algbr eqngr thm (num_args, (t_pos, case_pats)) (c_ty, ts) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   739
  let
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   740
    fun arg_types num_args ty = (fst o chop num_args o fst o strip_type) ty;
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   741
    val tys = arg_types num_args (snd c_ty);
29952
9aed85067721 unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents: 29277
diff changeset
   742
    val ty = nth tys t_pos;
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31935
diff changeset
   743
    fun mk_constr c t = let val n = Code.args_number thy c
a9742afd403e tuned interface of structure Code
haftmann
parents: 31935
diff changeset
   744
      in ((c, arg_types n (fastype_of t) ---> ty), n) end;
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   745
    val constrs = if null case_pats then []
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   746
      else map2 mk_constr case_pats (nth_drop t_pos ts);
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   747
    fun casify naming constrs ty ts =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   748
      let
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   749
        val undefineds = map_filter (lookup_const naming) (Code.undefineds thy);
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   750
        fun collapse_clause vs_map ts body =
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   751
          let
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   752
          in case body
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   753
           of IConst (c, _) => if member (op =) undefineds c
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   754
                then []
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   755
                else [(ts, body)]
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   756
            | ICase (((IVar (SOME v), _), subclauses), _) =>
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   757
                if forall (fn (pat', body') => exists_var pat' v
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   758
                  orelse not (exists_var body' v)) subclauses
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   759
                then case AList.lookup (op =) vs_map v
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   760
                 of SOME i => maps (fn (pat', body') =>
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   761
                      collapse_clause (AList.delete (op =) v vs_map)
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   762
                        (nth_map i (K pat') ts) body') subclauses
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   763
                  | NONE => [(ts, body)]
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   764
                else [(ts, body)]
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   765
            | _ => [(ts, body)]
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   766
          end;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   767
        fun mk_clause mk tys t =
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   768
          let
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   769
            val (vs, body) = unfold_abs_eta tys t;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   770
            val vs_map = fold_index (fn (i, (SOME v, _)) => cons (v, i) | _ => I) vs [];
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   771
            val ts = map (IVar o fst) vs;
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   772
          in map mk (collapse_clause vs_map ts body) end;
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   773
        val t = nth ts t_pos;
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   774
        val ts_clause = nth_drop t_pos ts;
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   775
        val clauses = if null case_pats
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   776
          then mk_clause (fn ([t], body) => (t, body)) [ty] (the_single ts_clause)
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   777
          else maps (fn ((constr as IConst (_, (_, tys)), n), t) =>
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   778
            mk_clause (fn (ts, body) => (constr `$$ ts, body)) (take n tys) t)
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   779
              (constrs ~~ ts_clause);
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   780
      in ((t, ty), clauses) end;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   781
  in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   782
    translate_const thy algbr eqngr thm c_ty
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   783
    ##>> fold_map (fn (constr, n) => translate_const thy algbr eqngr thm constr #>> rpair n) constrs
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   784
    ##>> translate_typ thy algbr eqngr ty
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   785
    ##>> fold_map (translate_term thy algbr eqngr thm) ts
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   786
    #-> (fn (((t, constrs), ty), ts) =>
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   787
      `(fn (_, (naming, _)) => ICase (casify naming constrs ty ts, t `$$ ts)))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   788
  end
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   789
and translate_app_case thy algbr eqngr thm (case_scheme as (num_args, _)) ((c, ty), ts) =
29973
haftmann
parents: 29962
diff changeset
   790
  if length ts < num_args then
haftmann
parents: 29962
diff changeset
   791
    let
haftmann
parents: 29962
diff changeset
   792
      val k = length ts;
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   793
      val tys = (take (num_args - k) o drop k o fst o strip_type) ty;
29973
haftmann
parents: 29962
diff changeset
   794
      val ctxt = (fold o fold_aterms) Term.declare_term_frees ts Name.context;
haftmann
parents: 29962
diff changeset
   795
      val vs = Name.names ctxt "a" tys;
haftmann
parents: 29962
diff changeset
   796
    in
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   797
      fold_map (translate_typ thy algbr eqngr) tys
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   798
      ##>> translate_case thy algbr eqngr thm case_scheme ((c, ty), ts @ map Free vs)
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
   799
      #>> (fn (tys, t) => map2 (fn (v, _) => pair (SOME v)) vs tys `|==> t)
29973
haftmann
parents: 29962
diff changeset
   800
    end
haftmann
parents: 29962
diff changeset
   801
  else if length ts > num_args then
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   802
    translate_case thy algbr eqngr thm case_scheme ((c, ty), take num_args ts)
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   803
    ##>> fold_map (translate_term thy algbr eqngr thm) (drop num_args ts)
29973
haftmann
parents: 29962
diff changeset
   804
    #>> (fn (t, ts) => t `$$ ts)
haftmann
parents: 29962
diff changeset
   805
  else
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   806
    translate_case thy algbr eqngr thm case_scheme ((c, ty), ts)
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   807
and translate_app thy algbr eqngr thm (c_ty_ts as ((c, _), _)) =
29973
haftmann
parents: 29962
diff changeset
   808
  case Code.get_case_scheme thy c
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   809
   of SOME case_scheme => translate_app_case thy algbr eqngr thm case_scheme c_ty_ts
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   810
    | NONE => translate_app_const thy algbr eqngr thm c_ty_ts
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   811
and translate_tyvar_sort thy (algbr as (proj_sort, _)) eqngr (v, sort) =
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   812
  fold_map (ensure_class thy algbr eqngr) (proj_sort sort)
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   813
  #>> (fn sort => (unprefix "'" v, sort))
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   814
and translate_dicts thy (algbr as (proj_sort, algebra)) eqngr thm (ty, sort) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   815
  let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   816
    datatype typarg =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   817
        Global of (class * string) * typarg list list
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   818
      | Local of (class * class) list * (string * (int * sort));
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   819
    fun class_relation (Global ((_, tyco), yss), _) class =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   820
          Global ((class, tyco), yss)
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   821
      | class_relation (Local (classrels, v), subclass) superclass =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   822
          Local ((subclass, superclass) :: classrels, v);
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   823
    fun type_constructor tyco yss class =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   824
      Global ((class, tyco), (map o map) fst yss);
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   825
    fun type_variable (TFree (v, sort)) =
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   826
      let
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   827
        val sort' = proj_sort sort;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   828
      in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end;
32795
a0f38d8d633a Sorts.of_sort_derivation: no pp here;
wenzelm
parents: 32545
diff changeset
   829
    val typargs = Sorts.of_sort_derivation algebra
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   830
      {class_relation = class_relation, type_constructor = type_constructor,
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   831
       type_variable = type_variable} (ty, proj_sort sort)
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   832
      handle Sorts.CLASS_ERROR e => not_wellsorted thy thm ty sort e;
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   833
    fun mk_dict (Global (inst, yss)) =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   834
          ensure_inst thy algbr eqngr inst
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   835
          ##>> (fold_map o fold_map) mk_dict yss
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   836
          #>> (fn (inst, dss) => DictConst (inst, dss))
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   837
      | mk_dict (Local (classrels, (v, (n, sort)))) =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   838
          fold_map (ensure_classrel thy algbr eqngr) classrels
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   839
          #>> (fn classrels => DictVar (classrels, (unprefix "'" v, (n, length sort))))
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   840
  in fold_map mk_dict typargs end;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   841
25969
haftmann
parents: 25621
diff changeset
   842
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   843
(* store *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   844
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
   845
structure Program = Code_Data
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   846
(
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   847
  type T = naming * program;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   848
  val empty = (empty_naming, Graph.empty);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   849
);
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   850
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34173
diff changeset
   851
fun invoke_generation theory (algebra, eqngr) f name =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34173
diff changeset
   852
  Program.change_yield theory (fn thy => fn naming_program => (NONE, naming_program)
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   853
    |> f thy algebra eqngr name
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   854
    |-> (fn name => fn (_, naming_program) => (name, naming_program)));
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   855
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   856
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   857
(* program generation *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   858
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   859
fun consts_program thy cs =
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   860
  let
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   861
    fun project_consts cs (naming, program) =
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   862
      let
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   863
        val cs_all = Graph.all_succs program cs;
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   864
      in (cs, (naming, Graph.subgraph (member (op =) cs_all) program)) end;
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   865
    fun generate_consts thy algebra eqngr =
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   866
      fold_map (ensure_const thy algebra eqngr);
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   867
  in
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   868
    invoke_generation thy (Code_Preproc.obtain thy cs []) generate_consts cs
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   869
    |-> project_consts
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   870
  end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   871
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   872
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   873
(* value evaluation *)
25969
haftmann
parents: 25621
diff changeset
   874
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   875
fun ensure_value thy algbr eqngr t =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   876
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   877
    val ty = fastype_of t;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   878
    val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =)
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   879
      o dest_TFree))) t [];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   880
    val stmt_value =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   881
      fold_map (translate_tyvar_sort thy algbr eqngr) vs
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   882
      ##>> translate_typ thy algbr eqngr ty
33943
f31d645b4e00 subst_signatures
haftmann
parents: 33420
diff changeset
   883
      ##>> translate_term thy algbr eqngr NONE (Code.subst_signatures thy t)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   884
      #>> (fn ((vs, ty), t) => Fun
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   885
        (Term.dummy_patternN, ((vs, ty), [(([], t), (Drule.dummy_thm, true))])));
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   886
    fun term_value (dep, (naming, program1)) =
25969
haftmann
parents: 25621
diff changeset
   887
      let
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   888
        val Fun (_, (vs_ty, [(([], t), _)])) =
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   889
          Graph.get_node program1 Term.dummy_patternN;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   890
        val deps = Graph.imm_succs program1 Term.dummy_patternN;
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   891
        val program2 = Graph.del_nodes [Term.dummy_patternN] program1;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   892
        val deps_all = Graph.all_succs program2 deps;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   893
        val program3 = Graph.subgraph (member (op =) deps_all) program2;
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   894
      in (((naming, program3), ((vs_ty, t), deps)), (dep, (naming, program2))) end;
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   895
  in
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   896
    ensure_stmt ((K o K) NONE) pair stmt_value Term.dummy_patternN
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   897
    #> snd
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   898
    #> term_value
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   899
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   900
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   901
fun base_evaluator thy evaluator algebra eqngr vs t =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   902
  let
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   903
    val (((naming, program), (((vs', ty'), t'), deps)), _) =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   904
      invoke_generation thy (algebra, eqngr) ensure_value t;
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   905
    val vs'' = map (fn (v, _) => (v, (the o AList.lookup (op =) vs o prefix "'") v)) vs';
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   906
  in evaluator naming program ((vs'', (vs', ty')), t') deps end;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   907
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 31962
diff changeset
   908
fun eval_conv thy = Code_Preproc.eval_conv thy o base_evaluator thy;
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 31962
diff changeset
   909
fun eval thy postproc = Code_Preproc.eval thy postproc o base_evaluator thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   910
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   911
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   912
(** diagnostic commands **)
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   913
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   914
fun read_const_exprs thy =
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   915
  let
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   916
    fun consts_of some_thyname =
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   917
      let
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   918
        val thy' = case some_thyname
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   919
         of SOME thyname => ThyInfo.the_theory thyname thy
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   920
          | NONE => thy;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   921
        val cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I)
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   922
          ((snd o #constants o Consts.dest o #consts o Sign.rep_sg) thy') [];
34013
58ed621899db repaired read_const_expr, broken in 1e7ca47c6c3d
haftmann
parents: 33994
diff changeset
   923
        fun belongs_here c = forall
58ed621899db repaired read_const_expr, broken in 1e7ca47c6c3d
haftmann
parents: 33994
diff changeset
   924
          (fn thy'' => not (Sign.declared_const thy'' c)) (Theory.parents_of thy')
58ed621899db repaired read_const_expr, broken in 1e7ca47c6c3d
haftmann
parents: 33994
diff changeset
   925
      in if is_some some_thyname then filter belongs_here cs else cs end;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   926
    fun read_const_expr "*" = ([], consts_of NONE)
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   927
      | read_const_expr s = if String.isSuffix ".*" s
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   928
          then ([], consts_of (SOME (unsuffix ".*" s)))
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   929
          else ([Code.read_const thy s], []);
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   930
  in pairself flat o split_list o map read_const_expr end;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   931
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   932
fun code_depgr thy consts =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   933
  let
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   934
    val (_, eqngr) = Code_Preproc.obtain thy consts [];
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
   935
    val all_consts = Graph.all_succs eqngr consts;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   936
  in
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   937
    eqngr
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
   938
    |> Graph.subgraph (member (op =) all_consts) 
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   939
    |> Graph.map_nodes ((apsnd o map o apfst) (AxClass.overload thy))
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   940
  end;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   941
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31088
diff changeset
   942
fun code_thms thy = Pretty.writeln o Code_Preproc.pretty thy o code_depgr thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   943
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   944
fun code_deps thy consts =
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   945
  let
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   946
    val eqngr = code_depgr thy consts;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   947
    val constss = Graph.strong_conn eqngr;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   948
    val mapping = Symtab.empty |> fold (fn consts => fold (fn const =>
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   949
      Symtab.update (const, consts)) consts) constss;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   950
    fun succs consts = consts
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   951
      |> maps (Graph.imm_succs eqngr)
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   952
      |> subtract (op =) consts
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   953
      |> map (the o Symtab.lookup mapping)
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   954
      |> distinct (op =);
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   955
    val conn = [] |> fold (fn consts => cons (consts, succs consts)) constss;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   956
    fun namify consts = map (Code.string_of_const thy) consts
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   957
      |> commas;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   958
    val prgr = map (fn (consts, constss) =>
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   959
      { name = namify consts, ID = namify consts, dir = "", unfold = true,
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   960
        path = "", parents = map namify constss }) conn;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   961
  in Present.display_graph prgr end;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   962
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   963
local
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   964
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   965
structure P = OuterParse
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   966
and K = OuterKeyword
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   967
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   968
fun code_thms_cmd thy = code_thms thy o op @ o read_const_exprs thy;
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   969
fun code_deps_cmd thy = code_deps thy o op @ o read_const_exprs thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   970
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   971
in
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   972
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   973
val _ =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   974
  OuterSyntax.improper_command "code_thms" "print system of code equations for code" OuterKeyword.diag
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
   975
    (Scan.repeat1 P.term_group
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   976
      >> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   977
        o Toplevel.keep ((fn thy => code_thms_cmd thy cs) o Toplevel.theory_of)));
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   978
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   979
val _ =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   980
  OuterSyntax.improper_command "code_deps" "visualize dependencies of code equations for code" OuterKeyword.diag
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
   981
    (Scan.repeat1 P.term_group
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   982
      >> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   983
        o Toplevel.keep ((fn thy => code_deps_cmd thy cs) o Toplevel.theory_of)));
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   984
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   985
end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   986
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   987
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   988
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   989
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
   990
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol;