src/Tools/Code/code_thingol.ML
author wenzelm
Sun, 31 Dec 2023 22:04:41 +0100
changeset 79411 700d4f16b5f2
parent 78666 2ca78c955c97
child 81507 08574da77b4a
permissions -rw-r--r--
minor performance tuning: proper Same.operation; clarified modules;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37744
3daaf23b9ab4 tuned titles
haftmann
parents: 37705
diff changeset
     1
(*  Title:      Tools/Code/code_thingol.ML
24219
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 `$$;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    11
infixr 3 `->;
77231
haftmann
parents: 75399
diff changeset
    12
infixr 3 `-->;
31724
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    13
infixr 3 `|=>;
9b5a128cdb5c more appropriate syntax for IML abstraction
haftmann
parents: 31156
diff changeset
    14
infixr 3 `|==>;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    15
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    16
signature BASIC_CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    17
sig
77700
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    18
  type vname = string
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
    19
  datatype itype =
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
    20
      `%% of string * itype list
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
    21
    | ITyVar of vname
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
  datatype dict =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    23
      Dict of (class * class) list * plain_dict
41118
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
    24
  and plain_dict = 
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
    25
      Dict_Const of (string * class) * (itype * dict list) list
77700
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    26
    | Dict_Var of { var: vname, index: int, length: int, class: class, unique: bool }
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    27
  type const = { sym: Code_Symbol.T, typargs: itype list, dicts: dict list list,
77700
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    28
    dom: itype list, range: itype, annotation: itype option }
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
  datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
    30
      IConst of const
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
    31
    | IVar of vname option
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    32
    | `$ of iterm * iterm
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
    33
    | `|=> of (vname option * itype) * (iterm * itype)
77700
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    34
    | ICase of { term: iterm, typ: itype, clauses: (iterm * iterm) list, primitive: iterm }
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    35
  val `-> : itype * itype -> itype
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    36
  val `--> : itype list * itype -> itype
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    37
  val `$$ : iterm * iterm list -> iterm
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    38
  val `|==> : (vname option * itype) list * (iterm * itype) -> iterm
86b9a405b0cc Tuned semicolons.
haftmann
parents: 77233
diff changeset
    39
  type typscheme = (vname * sort) list * itype
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    40
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    41
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    42
signature CODE_THINGOL =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    43
sig
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    44
  include BASIC_CODE_THINGOL
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    45
  val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    46
  val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    47
  val unfold_fun: itype -> itype list * itype
37640
fc27be4c6b1c unfold_fun_n
haftmann
parents: 37448
diff changeset
    48
  val unfold_fun_n: int -> itype -> itype list * itype
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    49
  val unfold_app: iterm -> iterm * iterm list
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
    50
  val unfold_abs: iterm -> (vname option * itype) list * iterm
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
    51
  val unfold_abs_typed: iterm -> ((vname option * itype) list * (iterm * itype)) option
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    52
  val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option
65483
1cb9fd58d55e for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents: 64957
diff changeset
    53
  val split_let_no_pat: iterm -> (((string option * itype) * iterm) * iterm) option
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    54
  val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm
65483
1cb9fd58d55e for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents: 64957
diff changeset
    55
  val unfold_let_no_pat: iterm -> ((string option * itype) * iterm) list * iterm
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
    56
  val split_pat_abs: iterm -> ((iterm * itype) * iterm) option
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
    57
  val unfold_pat_abs: iterm -> (iterm * itype) list * iterm
31049
396d4d6a1594 explicit type arguments in constants
haftmann
parents: 31036
diff changeset
    58
  val unfold_const_app: iterm -> (const * iterm list) option
32909
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
    59
  val is_IVar: iterm -> bool
41782
ffcc3137b1ad added is_IAbs; tuned brackets and comments
haftmann
parents: 41365
diff changeset
    60
  val is_IAbs: iterm -> bool
77703
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
    61
  val satisfied_application: int -> const * iterm list
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
    62
    -> ((vname option * itype) list * (iterm list * itype)) * iterm list
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
    63
  val saturated_application: int -> const * iterm list -> iterm
41100
6c0940392fb4 dictionary constants must permit explicit weakening of classes;
haftmann
parents: 40844
diff changeset
    64
  val contains_dict_var: iterm -> bool
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
    65
  val unambiguous_dictss: dict list list -> bool
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    66
  val add_constsyms: iterm -> Code_Symbol.T list -> Code_Symbol.T list
32917
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
    67
  val add_tyconames: iterm -> string list -> string list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    68
  val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a
75356
fa014f31f208 modernized handling of variables
haftmann
parents: 75355
diff changeset
    69
  val add_varnames: iterm -> string list -> string list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    70
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
    71
  datatype stmt =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    72
      NoStmt
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    73
    | Fun of (typscheme * ((iterm list * iterm) * (thm option * bool)) list) * thm option
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    74
    | Datatype of vname list *
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    75
        ((string * vname list (*type argument wrt. canonical order*)) * itype list) list
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    76
    | Datatypecons of string
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    77
    | Class of vname * ((class * class) list * (string * itype) list)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    78
    | Classrel of class * class
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    79
    | Classparam of class
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
    80
    | Classinst of { class: string, tyco: string, vs: (vname * sort) list,
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
    81
        superinsts: (class * (itype * dict list) list) list,
52519
598addf65209 explicit hint for domain of class parameters in instance statements
haftmann
parents: 52161
diff changeset
    82
        inst_params: ((string * (const * int)) * (thm * bool)) list,
598addf65209 explicit hint for domain of class parameters in instance statements
haftmann
parents: 52161
diff changeset
    83
        superinst_params: ((string * (const * int)) * (thm * bool)) list };
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    84
  type program = stmt Code_Symbol.Graph.T
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
    85
  val unimplemented: program -> string list
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
    86
  val implemented_deps: program -> string list
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
    87
  val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    88
  val is_constr: program -> Code_Symbol.T -> bool
37440
a5d44161ba2a maintain cong rules for case combinators; more precise permissiveness
haftmann
parents: 37437
diff changeset
    89
  val is_case: stmt -> bool
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
    90
  val group_stmts: Proof.context -> program
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    91
    -> ((Code_Symbol.T * stmt) list * (Code_Symbol.T * stmt) list
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    92
      * ((Code_Symbol.T * stmt) list * (Code_Symbol.T * stmt) list)) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    93
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
    94
  val read_const_exprs: Proof.context -> string list -> string list
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
    95
  val consts_program: Proof.context -> string list -> program
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
    96
  val dynamic_conv: Proof.context -> (program
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
    97
    -> typscheme * iterm -> Code_Symbol.T list -> conv)
38672
f1f64375f662 preliminary versions of static_eval_conv(_simple)
haftmann
parents: 38669
diff changeset
    98
    -> conv
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
    99
  val dynamic_value: Proof.context -> ((term -> term) -> 'a -> 'a) -> (program
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   100
    -> term -> typscheme * iterm -> Code_Symbol.T list -> 'a)
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   101
    -> term -> 'a
63156
3cb84e4469a7 clarified names of variants
haftmann
parents: 63073
diff changeset
   102
  val static_conv_thingol: { ctxt: Proof.context, consts: string list }
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   103
    -> ({ program: program, deps: string list }
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   104
      -> Proof.context -> typscheme * iterm -> Code_Symbol.T list -> conv)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   105
    -> Proof.context -> conv
63156
3cb84e4469a7 clarified names of variants
haftmann
parents: 63073
diff changeset
   106
  val static_conv_isa: { ctxt: Proof.context, consts: string list }
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   107
    -> (program -> Proof.context -> term -> conv)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   108
    -> Proof.context -> conv
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   109
  val static_value: { ctxt: Proof.context, lift_postproc: ((term -> term) -> 'a -> 'a), consts: string list }
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   110
    -> ({ program: program, deps: string list }
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   111
      -> Proof.context -> term -> typscheme * iterm -> Code_Symbol.T list -> 'a)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   112
    -> Proof.context -> term -> 'a
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   113
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   114
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   115
structure Code_Thingol : CODE_THINGOL =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   116
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   117
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   118
open Basic_Code_Symbol;
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   119
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   120
(** auxiliary **)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   121
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   122
fun unfoldl dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   123
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   124
   of NONE => (x, [])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   125
    | SOME (x1, x2) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   126
        let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   127
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   128
fun unfoldr dest x =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   129
  case dest x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   130
   of NONE => ([], x)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   131
    | SOME (x1, x2) =>
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   132
        let val (xs', x') = unfoldr dest x2 in (x1 :: xs', x') end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   133
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   134
29962
bd4dc7fa742d tuned comments, stripped ID, deleted superfluous code
haftmann
parents: 29952
diff changeset
   135
(** language core - types, terms **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   137
type vname = string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   139
datatype itype =
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   140
    `%% of string * itype list
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   141
  | ITyVar of vname;
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   142
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   143
datatype dict =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   144
    Dict of (class * class) list * plain_dict
41118
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   145
and plain_dict = 
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   146
    Dict_Const of (string * class) * (itype * dict list) list
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   147
  | Dict_Var of { var: vname, index: int, length: int, class: class, unique: bool };
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   148
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   149
fun ty1 `-> ty2 = "fun" `%% [ty1, ty2];
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   150
77231
haftmann
parents: 75399
diff changeset
   151
val op `--> = Library.foldr (op `->);
haftmann
parents: 75399
diff changeset
   152
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   153
val unfold_fun = unfoldr
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   154
  (fn "fun" `%% [ty1, ty2] => SOME (ty1, ty2)
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   155
    | _ => NONE);
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   156
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   157
fun unfold_fun_n n ty =
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   158
  let
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   159
    val (tys1, ty1) = unfold_fun ty;
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   160
    val (tys3, tys2) = chop n tys1;
77231
haftmann
parents: 75399
diff changeset
   161
  in (tys3, tys2 `--> ty1) end;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   162
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   163
type const = { sym: Code_Symbol.T, typargs: itype list, dicts: dict list list,
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   164
  dom: itype list, range: itype, annotation: itype option };
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   165
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   166
datatype iterm =
24591
6509626eb2c9 added explicit theorems
haftmann
parents: 24381
diff changeset
   167
    IConst of const
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   168
  | IVar of vname option
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
  | `$ of iterm * iterm
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   170
  | `|=> of (vname option * itype) * (iterm * itype)
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   171
  | ICase of { term: iterm, typ: itype, clauses: (iterm * iterm) list, primitive: iterm };
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   172
    (*see also signature*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   173
32909
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
   174
fun is_IVar (IVar _) = true
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
   175
  | is_IVar _ = false;
bd72e72c3ee3 added is_IVar
haftmann
parents: 32895
diff changeset
   176
41782
ffcc3137b1ad added is_IAbs; tuned brackets and comments
haftmann
parents: 41365
diff changeset
   177
fun is_IAbs (_ `|=> _) = true
ffcc3137b1ad added is_IAbs; tuned brackets and comments
haftmann
parents: 41365
diff changeset
   178
  | is_IAbs _ = false;
ffcc3137b1ad added is_IAbs; tuned brackets and comments
haftmann
parents: 41365
diff changeset
   179
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   180
val op `$$ = Library.foldl (op `$);
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   181
fun vs_tys `|==> body = Library.foldr
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   182
  (fn (v_ty as (_, ty), body as (_, rty)) => (v_ty `|=> body, ty `-> rty)) (vs_tys, body)
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   183
  |> fst;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   184
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   185
val unfold_app = unfoldl
77231
haftmann
parents: 75399
diff changeset
   186
  (fn op `$ t_t => SOME t_t
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   187
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   188
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   189
val unfold_abs = unfoldr
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   190
  (fn (v `|=> (t, _)) => SOME (v, t)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   191
    | _ => NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   192
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   193
fun unfold_abs_typed (v_ty `|=> body) =
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   194
      unfoldr
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   195
        (fn (v_ty `|=> body, _) => SOME (v_ty, body)
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   196
          | _ => NONE) body
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   197
      |> apfst (cons v_ty)
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   198
      |> SOME
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   199
  | unfold_abs_typed _ = NONE
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   200
77231
haftmann
parents: 75399
diff changeset
   201
fun split_let (ICase { term = t, typ = ty, clauses = [(p, body)], ... }) =
haftmann
parents: 75399
diff changeset
   202
      SOME (((p, ty), t), body)
haftmann
parents: 75399
diff changeset
   203
  | split_let _ = NONE;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   204
77231
haftmann
parents: 75399
diff changeset
   205
fun split_let_no_pat (ICase { term = t, typ = ty, clauses = [(IVar v, body)], ... }) =
haftmann
parents: 75399
diff changeset
   206
      SOME (((v, ty), t), body)
haftmann
parents: 75399
diff changeset
   207
  | split_let_no_pat _ = NONE;
65483
1cb9fd58d55e for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents: 64957
diff changeset
   208
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   209
val unfold_let = unfoldr split_let;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   210
65483
1cb9fd58d55e for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents: 64957
diff changeset
   211
val unfold_let_no_pat = unfoldr split_let_no_pat;
1cb9fd58d55e for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents: 64957
diff changeset
   212
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   213
fun unfold_const_app t =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   214
 case unfold_app t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   215
  of (IConst c, ts) => SOME (c, ts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   216
   | _ => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   217
32917
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   218
fun fold_constexprs f =
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   219
  let
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   220
    fun fold' (IConst c) = f c
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   221
      | fold' (IVar _) = I
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   222
      | fold' (t1 `$ t2) = fold' t1 #> fold' t2
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   223
      | fold' (_ `|=> (t, _)) = fold' t
77231
haftmann
parents: 75399
diff changeset
   224
      | fold' (ICase { term = t, clauses = clauses, ... }) =
haftmann
parents: 75399
diff changeset
   225
          fold' t #> fold (fn (p, body) => fold' p #> fold' body) clauses
32917
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   226
  in fold' end;
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   227
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   228
val add_constsyms = fold_constexprs (fn { sym, ... } => insert (op =) sym);
32917
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   229
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   230
fun add_tycos (tyco `%% tys) = insert (op =) tyco #> fold add_tycos tys
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   231
  | add_tycos (ITyVar _) = I;
84a5c684a22e added add_tyconames; tuned
haftmann
parents: 32909
diff changeset
   232
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   233
val add_tyconames = fold_constexprs (fn { typargs = tys, ... } => fold add_tycos tys);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   234
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   235
fun fold_varnames f =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   236
  let
59541
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   237
    fun fold_aux add_vars f =
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   238
      let
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   239
        fun fold_term _ (IConst _) = I
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   240
          | 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
   241
          | fold_term _ (IVar NONE) = I
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   242
          | fold_term vs (t1 `$ t2) = fold_term vs t1 #> fold_term vs t2
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   243
          | fold_term vs ((SOME v, _) `|=> (t, _)) = fold_term (insert (op =) v vs) t
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   244
          | fold_term vs ((NONE, _) `|=> (t, _)) = fold_term vs t
59541
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   245
          | fold_term vs (ICase { term = t, clauses = clauses, ... }) =
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   246
              fold_term vs t #> fold (fold_clause vs) clauses
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   247
        and fold_clause vs (p, t) = fold_term (add_vars p vs) t;
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   248
      in fold_term [] end
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   249
    fun add_vars t = fold_aux add_vars (insert (op =)) t;
f5de6e207d1d clarified
haftmann
parents: 59210
diff changeset
   250
  in fold_aux add_vars f end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   251
75356
fa014f31f208 modernized handling of variables
haftmann
parents: 75355
diff changeset
   252
val add_varnames = fold_varnames (insert (op =));
fa014f31f208 modernized handling of variables
haftmann
parents: 75355
diff changeset
   253
fa014f31f208 modernized handling of variables
haftmann
parents: 75355
diff changeset
   254
val declare_varnames = fold_varnames Name.declare;
fa014f31f208 modernized handling of variables
haftmann
parents: 75355
diff changeset
   255
31935
3896169e6ff9 cleaned up fundamental iml term functions; nested patterns
haftmann
parents: 31892
diff changeset
   256
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
   257
77231
haftmann
parents: 75399
diff changeset
   258
fun invent_params used tys =
77704
4c5297aa18c8 more uniform approach towards satisfied applications
haftmann
parents: 77703
diff changeset
   259
  Name.invent_names (Name.build_context used) "a" tys;
77231
haftmann
parents: 75399
diff changeset
   260
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   261
fun split_pat_abs ((NONE, ty) `|=> (t, _)) = SOME ((IVar NONE, ty), t)
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   262
  | split_pat_abs ((SOME v, ty) `|=> (t, _)) = SOME (case t
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   263
     of ICase { term = IVar (SOME w), clauses = [(p, body)], ... } =>
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   264
          if v = w andalso (exists_var p v orelse not (exists_var body v))
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   265
          then ((p, ty), body)
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   266
          else ((IVar (SOME v), ty), t)
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   267
      | _ => ((IVar (SOME v), ty), t))
31888
626c075fd457 variable names in abstractions are optional
haftmann
parents: 31874
diff changeset
   268
  | split_pat_abs _ = NONE;
31874
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   269
f172346ba805 simplified binding concept
haftmann
parents: 31775
diff changeset
   270
val unfold_pat_abs = unfoldr split_pat_abs;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   271
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   272
fun unfold_abs_eta [] t = ([], t)
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   273
  | unfold_abs_eta (_ :: tys) ((v, _) `|=> (t, _)) =
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   274
      let
77231
haftmann
parents: 75399
diff changeset
   275
        val (vs, t') = unfold_abs_eta tys t;
haftmann
parents: 75399
diff changeset
   276
      in (v :: vs, t') end
31892
a2139b503981 improved treatment of case patterns
haftmann
parents: 31890
diff changeset
   277
  | unfold_abs_eta tys t =
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   278
      let
77704
4c5297aa18c8 more uniform approach towards satisfied applications
haftmann
parents: 77703
diff changeset
   279
        val vs = map (SOME o fst) (invent_params (declare_varnames t) tys);
77231
haftmann
parents: 75399
diff changeset
   280
      in (vs, t `$$ map IVar vs) end;
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31889
diff changeset
   281
77703
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   282
fun satisfied_application wanted ({ dom, range, ... }, ts) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   283
  let
77231
haftmann
parents: 75399
diff changeset
   284
    val given = length ts;
haftmann
parents: 75399
diff changeset
   285
    val delta = wanted - given;
78666
2ca78c955c97 Corrected type calculation.
haftmann
parents: 77927
diff changeset
   286
    val rty = drop wanted dom `--> range;
77703
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   287
  in
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   288
    if delta = 0 then
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   289
      (([], (ts, rty)), [])
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   290
    else if delta < 0 then
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   291
      let
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   292
        val (ts1, ts2) = chop wanted ts
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   293
      in (([], (ts1, rty)), ts2) end
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   294
    else
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   295
      let
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   296
        val vs_tys = invent_params (fold declare_varnames ts)
77704
4c5297aa18c8 more uniform approach towards satisfied applications
haftmann
parents: 77703
diff changeset
   297
          (((take delta o drop given) dom))
4c5297aa18c8 more uniform approach towards satisfied applications
haftmann
parents: 77703
diff changeset
   298
          |> (map o apfst) SOME;
77703
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   299
      in ((vs_tys, (ts @ map (IVar o fst) vs_tys, rty)), []) end
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   300
  end
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   301
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   302
fun saturated_application wanted (const, ts) =
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   303
  let
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   304
    val ((vs_tys, (ts', rty)), []) = satisfied_application wanted (const, ts)
0262155d2743 more uniform approach towards satisfied applications
haftmann
parents: 77702
diff changeset
   305
  in vs_tys `|==> (IConst const `$$ ts', rty) end
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   306
75318
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   307
fun map_terms_bottom_up f (t as IConst _) = f t
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   308
  | map_terms_bottom_up f (t as IVar _) = f t
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   309
  | map_terms_bottom_up f (t1 `$ t2) = f
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   310
      (map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2)
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   311
  | map_terms_bottom_up f ((v, ty) `|=> (t, rty)) = f
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   312
      ((v, ty) `|=> (map_terms_bottom_up f t, rty))
75318
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   313
  | map_terms_bottom_up f (ICase { term = t, typ = ty, clauses = clauses, primitive = t0 }) = f
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   314
      (ICase { term = map_terms_bottom_up f t, typ = ty,
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   315
        clauses = (map o apply2) (map_terms_bottom_up f) clauses,
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   316
        primitive = map_terms_bottom_up f t0 });
a2c5efb7298a disentangled
haftmann
parents: 74525
diff changeset
   317
75358
75c69cbffe5f separated treatment of undefined bodys
haftmann
parents: 75357
diff changeset
   318
fun distill_minimized_clause tys t =
75355
26206ade1a23 structurally tuned
haftmann
parents: 75354
diff changeset
   319
  let
75360
haftmann
parents: 75359
diff changeset
   320
    fun restrict_vars_to vs =
haftmann
parents: 75359
diff changeset
   321
      map_terms_bottom_up (fn IVar (SOME v) =>
haftmann
parents: 75359
diff changeset
   322
        IVar (if member (op =) vs v then SOME v else NONE) | t => t);
haftmann
parents: 75359
diff changeset
   323
    fun purge_unused_vars_in t =
haftmann
parents: 75359
diff changeset
   324
      restrict_vars_to (build (add_varnames t));
haftmann
parents: 75359
diff changeset
   325
    fun distill' vs_map pat_args v i clauses =
haftmann
parents: 75359
diff changeset
   326
      let
75391
haftmann
parents: 75361
diff changeset
   327
        val pat_vs = build (fold add_varnames (nth_drop i pat_args));
75360
haftmann
parents: 75359
diff changeset
   328
        fun varnames_disjunctive pat =
75391
haftmann
parents: 75361
diff changeset
   329
          null (inter (op =) pat_vs (build (add_varnames pat)));
75360
haftmann
parents: 75359
diff changeset
   330
      in
haftmann
parents: 75359
diff changeset
   331
        if forall (fn (pat', body') => varnames_disjunctive pat'
haftmann
parents: 75359
diff changeset
   332
            (*prevent mingled scopes resulting in duplicated variables in pattern arguments*)
haftmann
parents: 75359
diff changeset
   333
          andalso (exists_var pat' v (*reducible if shadowed by pattern*)
haftmann
parents: 75359
diff changeset
   334
          orelse not (exists_var body' v))) clauses (*reducible if absent in body*)
haftmann
parents: 75359
diff changeset
   335
        then clauses
haftmann
parents: 75359
diff changeset
   336
          |> maps (fn (pat', body') =>
haftmann
parents: 75359
diff changeset
   337
               distill vs_map
haftmann
parents: 75359
diff changeset
   338
                 (nth_map i (K pat') pat_args |> map (purge_unused_vars_in body'))
haftmann
parents: 75359
diff changeset
   339
                 body')
haftmann
parents: 75359
diff changeset
   340
          |> SOME
haftmann
parents: 75359
diff changeset
   341
        else NONE
haftmann
parents: 75359
diff changeset
   342
      end
haftmann
parents: 75359
diff changeset
   343
    and distill vs_map pat_args
75355
26206ade1a23 structurally tuned
haftmann
parents: 75354
diff changeset
   344
        (body as ICase { term = IVar (SOME v), clauses = clauses, ... }) =
75360
haftmann
parents: 75359
diff changeset
   345
          (case AList.lookup (op =) vs_map v
haftmann
parents: 75359
diff changeset
   346
           of SOME i => distill' (AList.delete (op =) v vs_map) pat_args v i clauses
haftmann
parents: 75359
diff changeset
   347
                |> the_default [(pat_args, body)]
haftmann
parents: 75359
diff changeset
   348
            | NONE => [(pat_args, body)])
75355
26206ade1a23 structurally tuned
haftmann
parents: 75354
diff changeset
   349
      | distill vs_map pat_args body = [(pat_args, body)];
77231
haftmann
parents: 75399
diff changeset
   350
    val (vs, body) = unfold_abs_eta tys t;
75355
26206ade1a23 structurally tuned
haftmann
parents: 75354
diff changeset
   351
    val vs_map =
75359
haftmann
parents: 75358
diff changeset
   352
      build (fold_index (fn (i, SOME v) => cons (v, i) | _ => I) vs);
haftmann
parents: 75358
diff changeset
   353
  in distill vs_map (map IVar vs) body end;
75325
96da582011ae separated case reduction
haftmann
parents: 75324
diff changeset
   354
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   355
fun exists_dict_var f (Dict (_, d)) = exists_plain_dict_var_pred f d
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   356
and exists_plain_dict_var_pred f (Dict_Const (_, dss)) = exists_dictss_var f (map snd dss)
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   357
  | exists_plain_dict_var_pred f (Dict_Var x) = f x
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   358
and exists_dictss_var f = (exists o exists) (exists_dict_var f);
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   359
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   360
fun contains_dict_var (IConst { dicts = dss, ... }) = exists_dictss_var (K true) dss
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   361
  | contains_dict_var (IVar _) = false
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   362
  | contains_dict_var (t1 `$ t2) = contains_dict_var t1 orelse contains_dict_var t2
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   363
  | contains_dict_var (_ `|=> (t, _)) = contains_dict_var t
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   364
  | contains_dict_var (ICase { primitive = t, ... }) = contains_dict_var t;
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   365
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   366
val unambiguous_dictss = not o exists_dictss_var (fn { unique, ... } => not unique);
25621
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   367
97ebdbdb0299 heutistics for type annotations in Haskell
haftmann
parents: 25597
diff changeset
   368
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   369
(** statements, abstract programs **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   370
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   371
type typscheme = (vname * sort) list * itype;
37447
ad3e04f289b6 transitive superclasses were also only a misunderstanding
haftmann
parents: 37446
diff changeset
   372
datatype stmt =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   373
    NoStmt
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   374
  | Fun of (typscheme * ((iterm list * iterm) * (thm option * bool)) list) * thm option
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   375
  | Datatype of vname list * ((string * vname list) * itype list) list
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   376
  | Datatypecons of string
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   377
  | Class of vname * ((class * class) list * (string * itype) list)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   378
  | Classrel of class * class
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   379
  | Classparam of class
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   380
  | Classinst of { class: string, tyco: string, vs: (vname * sort) list,
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   381
      superinsts: (class * (itype * dict list) list) list,
52519
598addf65209 explicit hint for domain of class parameters in instance statements
haftmann
parents: 52161
diff changeset
   382
      inst_params: ((string * (const * int)) * (thm * bool)) list,
598addf65209 explicit hint for domain of class parameters in instance statements
haftmann
parents: 52161
diff changeset
   383
      superinst_params: ((string * (const * int)) * (thm * bool)) list };
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   384
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   385
type program = stmt Code_Symbol.Graph.T;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   386
75353
05f7f5454cb6 prefer build combinator
haftmann
parents: 75352
diff changeset
   387
val unimplemented =
05f7f5454cb6 prefer build combinator
haftmann
parents: 75352
diff changeset
   388
  build o Code_Symbol.Graph.fold (fn (Constant c, (NoStmt, _)) => cons c | _ => I);
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   389
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   390
fun implemented_deps program =
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   391
  Code_Symbol.Graph.keys program
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   392
  |> subtract (op =) (Code_Symbol.Graph.all_preds program (map Constant (unimplemented program)))
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   393
  |> map_filter (fn Constant c => SOME c | _ => NONE);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   394
37448
3bd4b3809bee explicit type variable arguments for constructors
haftmann
parents: 37447
diff changeset
   395
fun map_classparam_instances_as_term f =
52519
598addf65209 explicit hint for domain of class parameters in instance statements
haftmann
parents: 52161
diff changeset
   396
  (map o apfst o apsnd o apfst) (fn const => case f (IConst const) of IConst const' => const')
37448
3bd4b3809bee explicit type variable arguments for constructors
haftmann
parents: 37447
diff changeset
   397
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   398
fun map_terms_stmt f NoStmt = NoStmt
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   399
  | map_terms_stmt f (Fun ((tysm, eqs), case_cong)) = Fun ((tysm, (map o apfst)
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   400
      (fn (ts, t) => (map f ts, f t)) eqs), case_cong)
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   401
  | map_terms_stmt f (stmt as Datatype _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   402
  | map_terms_stmt f (stmt as Datatypecons _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   403
  | map_terms_stmt f (stmt as Class _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   404
  | map_terms_stmt f (stmt as Classrel _) = stmt
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   405
  | map_terms_stmt f (stmt as Classparam _) = stmt
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   406
  | map_terms_stmt f (Classinst { class, tyco, vs, superinsts,
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   407
      inst_params, superinst_params }) =
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   408
        Classinst { class = class, tyco = tyco, vs = vs, superinsts = superinsts,
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   409
          inst_params = map_classparam_instances_as_term f inst_params,
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   410
          superinst_params = map_classparam_instances_as_term f superinst_params };
27711
5052736b8bcc simple lifters
haftmann
parents: 27609
diff changeset
   411
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   412
fun is_constr program sym = case Code_Symbol.Graph.get_node program sym
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   413
 of Datatypecons _ => true
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   414
  | _ => false;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   415
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   416
fun is_case (Fun (_, SOME _)) = true
37440
a5d44161ba2a maintain cong rules for case combinators; more precise permissiveness
haftmann
parents: 37437
diff changeset
   417
  | is_case _ = false;
a5d44161ba2a maintain cong rules for case combinators; more precise permissiveness
haftmann
parents: 37437
diff changeset
   418
a5d44161ba2a maintain cong rules for case combinators; more precise permissiveness
haftmann
parents: 37437
diff changeset
   419
fun linear_stmts program =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   420
  rev (Code_Symbol.Graph.strong_conn program)
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   421
  |> map (AList.make (Code_Symbol.Graph.get_node program));
37440
a5d44161ba2a maintain cong rules for case combinators; more precise permissiveness
haftmann
parents: 37437
diff changeset
   422
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   423
fun group_stmts ctxt program =
32895
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   424
  let
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   425
    fun is_fun (_, Fun _) = true | is_fun _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   426
    fun is_datatypecons (_, Datatypecons _) = true | is_datatypecons _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   427
    fun is_datatype (_, Datatype _) = true | is_datatype _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   428
    fun is_class (_, Class _) = true | is_class _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   429
    fun is_classrel (_, Classrel _) = true | is_classrel _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   430
    fun is_classparam (_, Classparam _) = true | is_classparam _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   431
    fun is_classinst (_, Classinst _) = true | is_classinst _ = false;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   432
    fun group stmts =
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   433
      if forall (is_datatypecons orf is_datatype) stmts
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   434
      then (filter is_datatype stmts, [], ([], []))
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   435
      else if forall (is_class orf is_classrel orf is_classparam) stmts
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   436
      then ([], filter is_class stmts, ([], []))
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   437
      else if forall (is_fun orf is_classinst) stmts
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   438
      then ([], [], List.partition is_fun stmts)
52138
e21426f244aa bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents: 51685
diff changeset
   439
      else error ("Illegal mutual dependencies: " ^ (commas
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   440
        o map (Code_Symbol.quote ctxt o fst)) stmts);
32895
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   441
  in
37440
a5d44161ba2a maintain cong rules for case combinators; more precise permissiveness
haftmann
parents: 37437
diff changeset
   442
    linear_stmts program
32895
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   443
    |> map group
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   444
  end;
6f3cdb4a9e11 added group_stmts
haftmann
parents: 32873
diff changeset
   445
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   446
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   447
(** translation kernel **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   448
28724
haftmann
parents: 28708
diff changeset
   449
(* generic mechanisms *)
haftmann
parents: 28708
diff changeset
   450
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   451
fun ensure_stmt symbolize generate x (deps, program) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   452
  let
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   453
    val sym = symbolize x;
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   454
    val add_dep = case deps of [] => I
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   455
      | dep :: _ => Code_Symbol.Graph.add_edge (dep, sym);
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   456
  in
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   457
    if can (Code_Symbol.Graph.get_node program) sym
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   458
    then
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   459
      program
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   460
      |> add_dep
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   461
      |> pair deps
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   462
      |> pair x
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   463
    else
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   464
      program
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   465
      |> Code_Symbol.Graph.default_node (sym, NoStmt)
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   466
      |> add_dep
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   467
      |> curry generate (sym :: deps)
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   468
      ||> snd
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   469
      |-> (fn stmt => (Code_Symbol.Graph.map_node sym) (K stmt))
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   470
      |> pair deps
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   471
      |> pair x
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   472
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   473
36272
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   474
exception PERMISSIVE of unit;
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   475
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   476
fun translation_error ctxt permissive some_thm deps msg sub_msg =
36272
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   477
  if permissive
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   478
  then raise PERMISSIVE ()
42385
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   479
  else
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   480
    let
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   481
      val thm_msg =
61268
abe08fb15a12 moved remaining display.ML to more_thm.ML;
wenzelm
parents: 61262
diff changeset
   482
        Option.map (fn thm => "in code equation " ^ Thm.string_of_thm ctxt thm) some_thm;
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   483
      val dep_msg = if null (tl deps) then NONE
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   484
        else SOME ("with dependency "
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   485
          ^ space_implode " -> " (map (Code_Symbol.quote ctxt) (rev deps)));
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   486
      val thm_dep_msg = case (thm_msg, dep_msg)
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   487
       of (SOME thm_msg, SOME dep_msg) => "\n(" ^ thm_msg ^ ",\n" ^ dep_msg ^ ")"
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   488
        | (SOME thm_msg, NONE) => "\n(" ^ thm_msg ^ ")"
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   489
        | (NONE, SOME dep_msg) => "\n(" ^ dep_msg ^ ")"
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   490
        | (NONE, NONE) => ""
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   491
    in error (msg ^ thm_dep_msg ^ ":\n" ^ sub_msg) end;
37698
e38abf437c20 reverted to verion from fc27be4c6b1c
haftmann
parents: 37697
diff changeset
   492
48074
c6d514717d7b clarified code translation code
haftmann
parents: 48072
diff changeset
   493
fun maybe_permissive f prgrm =
c6d514717d7b clarified code translation code
haftmann
parents: 48072
diff changeset
   494
  f prgrm |>> SOME handle PERMISSIVE () => (NONE, prgrm);
c6d514717d7b clarified code translation code
haftmann
parents: 48072
diff changeset
   495
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   496
fun not_wellsorted ctxt permissive some_thm deps ty sort e =
37698
e38abf437c20 reverted to verion from fc27be4c6b1c
haftmann
parents: 37697
diff changeset
   497
  let
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 60697
diff changeset
   498
    val err_class = Sorts.class_error (Context.Proof ctxt) e;
42385
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   499
    val err_typ =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   500
      "Type " ^ Syntax.string_of_typ ctxt ty ^ " not of sort " ^
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   501
        Syntax.string_of_sort ctxt sort;
42385
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   502
  in
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   503
    translation_error ctxt permissive some_thm deps
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   504
      "Wellsortedness error" (err_typ ^ "\n" ^ err_class)
42385
b46b47775cbe simplified Sorts.class_error: plain Proof.context;
wenzelm
parents: 42383
diff changeset
   505
  end;
26972
haftmann
parents: 26939
diff changeset
   506
47555
haftmann
parents: 47437
diff changeset
   507
44790
c13fdf710a40 adding type inference for disambiguation annotations in code equation
bulwahn
parents: 44789
diff changeset
   508
(* inference of type annotations for disambiguation with type classes *)
c13fdf710a40 adding type inference for disambiguation annotations in code equation
bulwahn
parents: 44789
diff changeset
   509
45000
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   510
fun mk_tagged_type (true, T) = Type ("", [T])
47555
haftmann
parents: 47437
diff changeset
   511
  | mk_tagged_type (false, T) = T;
45000
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   512
44998
f12ef61ea76e determining the fastype of a case-pattern but ignoring dummy type constructors that were added as markers for type annotations
bulwahn
parents: 44997
diff changeset
   513
fun dest_tagged_type (Type ("", [T])) = (true, T)
47555
haftmann
parents: 47437
diff changeset
   514
  | dest_tagged_type T = (false, T);
44998
f12ef61ea76e determining the fastype of a case-pattern but ignoring dummy type constructors that were added as markers for type annotations
bulwahn
parents: 44997
diff changeset
   515
75399
cdf84288d93c pass constructor arity as part of case certficiate
haftmann
parents: 75397
diff changeset
   516
val fastype_of_tagged_term = fastype_of o map_types (snd o dest_tagged_type);
44998
f12ef61ea76e determining the fastype of a case-pattern but ignoring dummy type constructors that were added as markers for type annotations
bulwahn
parents: 44997
diff changeset
   517
45000
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   518
fun tag_term (proj_sort, _) eqngr =
44997
e534939f880d only annotating constants with sort constraints
bulwahn
parents: 44996
diff changeset
   519
  let
47555
haftmann
parents: 47437
diff changeset
   520
    val has_sort_constraints = exists (not o null) o map proj_sort o Code_Preproc.sortargs eqngr;
47576
b32aae03e3d6 dropped dead code;
haftmann
parents: 47574
diff changeset
   521
    fun tag (Const (_, T')) (Const (c, T)) =
45000
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   522
        Const (c,
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   523
          mk_tagged_type (not (null (Term.add_tvarsT T' [])) andalso has_sort_constraints c, T))
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   524
      | tag (t1 $ u1) (t $ u) = tag t1 t $ tag u1 u
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   525
      | tag (Abs (_, _, t1)) (Abs (x, T, t)) = Abs (x, T, tag t1 t)
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   526
      | tag (Free _) (t as Free _) = t
0febe2089425 adding abstraction layer; more precise function names
bulwahn
parents: 44999
diff changeset
   527
      | tag (Var _) (t as Var _) = t
47555
haftmann
parents: 47437
diff changeset
   528
      | tag (Bound _) (t as Bound _) = t;
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   529
  in tag end
44790
c13fdf710a40 adding type inference for disambiguation annotations in code equation
bulwahn
parents: 44789
diff changeset
   530
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   531
fun annotate ctxt algbr eqngr (c, ty) args rhs =
44790
c13fdf710a40 adding type inference for disambiguation annotations in code equation
bulwahn
parents: 44789
diff changeset
   532
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   533
    val erase = map_types (fn _ => Type_Infer.anyT []);
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   534
    val reinfer = singleton (Type_Infer_Context.infer_types ctxt);
79411
700d4f16b5f2 minor performance tuning: proper Same.operation;
wenzelm
parents: 78666
diff changeset
   535
    val lhs = list_comb (Const (c, ty), map (Term.strip_sorts o snd) args);
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   536
    val reinferred_rhs = snd (Logic.dest_equals (reinfer (Logic.mk_equals (lhs, erase rhs))));
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   537
  in tag_term algbr eqngr reinferred_rhs rhs end
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   538
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   539
fun annotate_eqns ctxt algbr eqngr (c, ty) eqns =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   540
  let
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   541
    val ctxt' = ctxt |> Proof_Context.theory_of |> Proof_Context.init_global
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   542
      |> Config.put Type_Infer_Context.const_sorts false;
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   543
      (*avoid spurious fixed variables: there is no eigen context for equations*)
44790
c13fdf710a40 adding type inference for disambiguation annotations in code equation
bulwahn
parents: 44789
diff changeset
   544
  in
77702
haftmann
parents: 77701
diff changeset
   545
    map (apfst (fn (args, (some_abs, rhs)) => (args,
haftmann
parents: 77701
diff changeset
   546
      (some_abs, annotate ctxt' algbr eqngr (c, ty) args rhs)))) eqns
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   547
  end;
47555
haftmann
parents: 47437
diff changeset
   548
75324
21897aad78ad separated selector function entirely
haftmann
parents: 75323
diff changeset
   549
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   550
(* abstract dictionary construction *)
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   551
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   552
datatype typarg_witness =
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   553
    Weakening of (class * class) list * plain_typarg_witness
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   554
and plain_typarg_witness =
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   555
    Global of (string * class) * (typ * typarg_witness list) list
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   556
  | Local of { var: string, index: int, sort: sort, unique: bool };
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   557
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   558
fun brand_unique unique (w as Global _) = w
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   559
  | brand_unique unique (Local { var, index, sort, unique = _ }) =
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   560
      Local { var = var, index = index, sort = sort, unique = unique };
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   561
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   562
fun construct_dictionaries ctxt (proj_sort, algebra) permissive some_thm (ty, sort) (deps, program) =
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   563
  let
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   564
    fun class_relation unique (Weakening (classrels, x), sub_class) super_class =
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   565
      Weakening ((sub_class, super_class) :: classrels, brand_unique unique x);
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   566
    fun type_constructor (tyco, typs) dss class =
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   567
      Weakening ([], Global ((tyco, class), typs ~~ (map o map) fst dss));
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   568
    fun type_variable (TFree (v, sort)) =
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   569
      let
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   570
        val sort' = proj_sort sort;
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   571
      in map_index (fn (n, class) => (Weakening ([], Local
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   572
        { var = v, index = n, sort = sort', unique = true }), class)) sort'
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   573
      end;
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   574
    val typarg_witnesses = Sorts.of_sort_derivation algebra
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   575
      {class_relation = fn _ => fn unique =>
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   576
         Sorts.classrel_derivation algebra (class_relation unique),
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   577
       type_constructor = type_constructor,
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   578
       type_variable = type_variable} (ty, proj_sort sort)
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   579
      handle Sorts.CLASS_ERROR e => not_wellsorted ctxt permissive some_thm deps ty sort e;
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   580
  in (typarg_witnesses, (deps, program)) end;
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   581
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   582
28724
haftmann
parents: 28708
diff changeset
   583
(* translation *)
haftmann
parents: 28708
diff changeset
   584
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   585
fun is_undefined_clause ctxt (_, IConst { sym = Constant c, ... }) =
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   586
      Code.is_undefined (Proof_Context.theory_of ctxt) c
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   587
  | is_undefined_clause ctxt _ =
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   588
      false;
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   589
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   590
fun ensure_tyco ctxt algbr eqngr permissive tyco =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   591
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   592
    val thy = Proof_Context.theory_of ctxt;
40726
16dcfedc4eb7 keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents: 40711
diff changeset
   593
    val ((vs, cos), _) = Code.get_type thy tyco;
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   594
    val stmt_datatype =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   595
      fold_map (translate_tyvar_sort ctxt algbr eqngr permissive) vs
48003
1d11af40b106 dropped sort constraints on datatype specifications
haftmann
parents: 47576
diff changeset
   596
      #>> map fst
40726
16dcfedc4eb7 keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents: 40711
diff changeset
   597
      ##>> fold_map (fn (c, (vs, tys)) =>
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   598
        ensure_const ctxt algbr eqngr permissive c
40726
16dcfedc4eb7 keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents: 40711
diff changeset
   599
        ##>> pair (map (unprefix "'" o fst) vs)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   600
        ##>> fold_map (translate_typ ctxt algbr eqngr permissive) tys) cos
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   601
      #>> Datatype;
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   602
  in ensure_stmt Type_Constructor stmt_datatype tyco end
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   603
and ensure_const ctxt algbr eqngr permissive c =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   604
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   605
    val thy = Proof_Context.theory_of ctxt;
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   606
    fun stmt_datatypecons tyco =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   607
      ensure_tyco ctxt algbr eqngr permissive tyco
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   608
      #>> Datatypecons;
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   609
    fun stmt_classparam class =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   610
      ensure_class ctxt algbr eqngr permissive class
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   611
      #>> Classparam;
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   612
    fun stmt_fun cert = case Code.equations_of_cert thy cert
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   613
     of (_, NONE) => pair NoStmt
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   614
      | ((vs, ty), SOME eqns) =>
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   615
          let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   616
            val eqns' = annotate_eqns ctxt algbr eqngr (c, ty) eqns
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   617
            val some_case_cong = Code.get_case_cong thy c;
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   618
          in
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   619
            fold_map (translate_tyvar_sort ctxt algbr eqngr permissive) vs
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   620
            ##>> translate_typ ctxt algbr eqngr permissive ty
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   621
            ##>> translate_eqns ctxt algbr eqngr permissive eqns'
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   622
            #>>
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   623
             (fn (_, NONE) => NoStmt
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   624
               | (tyscm, SOME eqns) => Fun ((tyscm, eqns), some_case_cong))
54889
4121d64fde90 explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents: 52801
diff changeset
   625
          end;
35299
4f4d5bf4ea08 proper distinction of code datatypes and abstypes
haftmann
parents: 35226
diff changeset
   626
    val stmt_const = case Code.get_type_of_constr_or_abstr thy c
35226
b987b803616d a simple concept for datatype invariants
haftmann
parents: 34895
diff changeset
   627
     of SOME (tyco, _) => stmt_datatypecons tyco
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51658
diff changeset
   628
      | NONE => (case Axclass.class_of_param thy c
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   629
         of SOME class => stmt_classparam class
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   630
          | NONE => stmt_fun (Code_Preproc.cert eqngr c))
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   631
  in ensure_stmt Constant stmt_const c end
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   632
and ensure_class ctxt (algbr as (_, algebra)) eqngr permissive class =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   633
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   634
    val thy = Proof_Context.theory_of ctxt;
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   635
    val super_classes = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51658
diff changeset
   636
    val cs = #params (Axclass.get_info thy class);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   637
    val stmt_class =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   638
      fold_map (fn super_class =>
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   639
        ensure_classrel ctxt algbr eqngr permissive (class, super_class)) super_classes
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   640
      ##>> fold_map (fn (c, ty) => ensure_const ctxt algbr eqngr permissive c
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   641
        ##>> translate_typ ctxt algbr eqngr permissive ty) cs
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   642
      #>> (fn info => Class (unprefix "'" Name.aT, info))
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   643
  in ensure_stmt Type_Class stmt_class class end
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   644
and ensure_classrel ctxt algbr eqngr permissive (sub_class, super_class) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   645
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   646
    val stmt_classrel =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   647
      ensure_class ctxt algbr eqngr permissive sub_class
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   648
      ##>> ensure_class ctxt algbr eqngr permissive super_class
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   649
      #>> Classrel;
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   650
  in ensure_stmt Class_Relation stmt_classrel (sub_class, super_class) end
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   651
and ensure_inst ctxt (algbr as (_, algebra)) eqngr permissive (tyco, class) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   652
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   653
    val thy = Proof_Context.theory_of ctxt;
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   654
    val super_classes = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class;
51685
385ef6706252 more standard module name Axclass (according to file name);
wenzelm
parents: 51658
diff changeset
   655
    val these_class_params = these o try (#params o Axclass.get_info thy);
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   656
    val class_params = these_class_params class;
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   657
    val superclass_params = maps these_class_params
37448
3bd4b3809bee explicit type variable arguments for constructors
haftmann
parents: 37447
diff changeset
   658
      ((Sorts.complete_sort algebra o Sorts.super_classes algebra) class);
77701
haftmann
parents: 77700
diff changeset
   659
    val vs = Name.invent_names Name.context Name.aT (Sorts.mg_domain algebra tyco [class]);
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   660
    val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class];
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   661
    val vs' = map2 (fn (v, sort1) => fn sort2 => (v,
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   662
      Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts';
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   663
    val arity_typ = Type (tyco, map TFree vs);
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   664
    val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs');
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   665
    fun translate_super_instance super_class =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   666
      ensure_class ctxt algbr eqngr permissive super_class
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   667
      ##>> translate_dicts ctxt algbr eqngr permissive NONE (arity_typ, [super_class])
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   668
      #>> (fn (super_class, [Dict ([], Dict_Const (_, dss))]) => (super_class, dss));
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   669
    fun translate_classparam_instance (c, ty) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   670
      let
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   671
        val raw_const = Const (c, map_type_tfree (K arity_typ') ty);
77231
haftmann
parents: 75399
diff changeset
   672
        val dom_length = length (binder_types ty);
63073
413184c7a2a2 clarified context, notably for internal use of Simplifier;
wenzelm
parents: 62539
diff changeset
   673
        val thm = Axclass.unoverload_conv ctxt (Thm.cterm_of ctxt raw_const);
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   674
        val const = (apsnd Logic.unvarifyT_global o dest_Const o snd
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   675
          o Logic.dest_equals o Thm.prop_of) thm;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   676
      in
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   677
        ensure_const ctxt algbr eqngr permissive c
77702
haftmann
parents: 77701
diff changeset
   678
        ##>> translate_const ctxt algbr eqngr permissive (SOME thm) NONE const
77706
haftmann
parents: 77705
diff changeset
   679
        #>> (fn (c, const') => ((c, (const', dom_length)), (thm, true)))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   680
      end;
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   681
    val stmt_inst =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   682
      ensure_class ctxt algbr eqngr permissive class
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   683
      ##>> ensure_tyco ctxt algbr eqngr permissive tyco
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   684
      ##>> fold_map (translate_tyvar_sort ctxt algbr eqngr permissive) vs
37384
5aba26803073 more consistent naming aroud type classes and instances
haftmann
parents: 37216
diff changeset
   685
      ##>> fold_map translate_super_instance super_classes
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   686
      ##>> fold_map translate_classparam_instance class_params
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   687
      ##>> fold_map translate_classparam_instance superclass_params
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   688
      #>> (fn (((((class, tyco), vs), superinsts), inst_params), superinst_params) =>
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   689
          Classinst { class = class, tyco = tyco, vs = vs,
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   690
            superinsts = superinsts, inst_params = inst_params, superinst_params = superinst_params });
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   691
  in ensure_stmt Class_Instance stmt_inst (tyco, class) end
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   692
and translate_typ ctxt algbr eqngr permissive (TFree (v, _)) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   693
      pair (ITyVar (unprefix "'" v))
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   694
  | translate_typ ctxt algbr eqngr permissive (Type (tyco, tys)) =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   695
      ensure_tyco ctxt algbr eqngr permissive tyco
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   696
      ##>> fold_map (translate_typ ctxt algbr eqngr permissive) tys
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   697
      #>> (fn (tyco, tys) => tyco `%% tys)
77702
haftmann
parents: 77701
diff changeset
   698
and translate_term ctxt algbr eqngr permissive some_thm some_abs (Const (c, ty)) =
haftmann
parents: 77701
diff changeset
   699
      translate_app ctxt algbr eqngr permissive some_thm some_abs ((c, ty), [])
haftmann
parents: 77701
diff changeset
   700
  | translate_term ctxt algbr eqngr permissive some_thm some_abs (Free (v, _)) =
31889
fb2c8a687529 all variable names are optional
haftmann
parents: 31888
diff changeset
   701
      pair (IVar (SOME v))
77702
haftmann
parents: 77701
diff changeset
   702
  | translate_term ctxt algbr eqngr permissive some_thm some_abs (Abs (v, ty, t)) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   703
      let
74525
c960bfcb91db discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents: 74447
diff changeset
   704
        val ((v', _), t') = Term.dest_abs_global (Abs (Name.desymbolize (SOME false) v, ty, t));
74446
wenzelm
parents: 74411
diff changeset
   705
        val v'' = if Term.used_free v' t' then SOME v' else NONE
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   706
        val rty = fastype_of_tagged_term t'
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   707
      in
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   708
        translate_typ ctxt algbr eqngr permissive ty
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   709
        ##>> translate_typ ctxt algbr eqngr permissive rty
77702
haftmann
parents: 77701
diff changeset
   710
        ##>> translate_term ctxt algbr eqngr permissive some_thm some_abs t'
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   711
        #>> (fn ((ty, rty), t) => (v'', ty) `|=> (t, rty))
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   712
      end
77702
haftmann
parents: 77701
diff changeset
   713
  | translate_term ctxt algbr eqngr permissive some_thm some_abs (t as _ $ _) =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   714
      case strip_comb t
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   715
       of (Const (c, ty), ts) =>
77702
haftmann
parents: 77701
diff changeset
   716
            translate_app ctxt algbr eqngr permissive some_thm some_abs ((c, ty), ts)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   717
        | (t', ts) =>
77702
haftmann
parents: 77701
diff changeset
   718
            translate_term ctxt algbr eqngr permissive some_thm some_abs t'
haftmann
parents: 77701
diff changeset
   719
            ##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm NONE) ts
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   720
            #>> (fn (t, ts) => t `$$ ts)
77702
haftmann
parents: 77701
diff changeset
   721
and translate_eqn ctxt algbr eqngr permissive ((args, (some_abs, rhs)), (some_thm, proper)) =
haftmann
parents: 77701
diff changeset
   722
  fold_map (uncurry (translate_term ctxt algbr eqngr permissive some_thm)) args
haftmann
parents: 77701
diff changeset
   723
  ##>> translate_term ctxt algbr eqngr permissive some_thm some_abs rhs
35226
b987b803616d a simple concept for datatype invariants
haftmann
parents: 34895
diff changeset
   724
  #>> rpair (some_thm, proper)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   725
and translate_eqns ctxt algbr eqngr permissive eqns =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   726
  maybe_permissive (fold_map (translate_eqn ctxt algbr eqngr permissive) eqns)
77702
haftmann
parents: 77701
diff changeset
   727
and translate_const ctxt algbr eqngr permissive some_thm some_abs (c, ty) (deps, program) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   728
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   729
    val thy = Proof_Context.theory_of ctxt;
37698
e38abf437c20 reverted to verion from fc27be4c6b1c
haftmann
parents: 37697
diff changeset
   730
    val _ = if (case some_abs of NONE => true | SOME abs => not (c = abs))
35226
b987b803616d a simple concept for datatype invariants
haftmann
parents: 34895
diff changeset
   731
        andalso Code.is_abstr thy c
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   732
        then translation_error ctxt permissive some_thm deps
37698
e38abf437c20 reverted to verion from fc27be4c6b1c
haftmann
parents: 37697
diff changeset
   733
          "Abstraction violation" ("constant " ^ Code.string_of_const thy c)
e38abf437c20 reverted to verion from fc27be4c6b1c
haftmann
parents: 37697
diff changeset
   734
      else ()
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   735
    val (annotate, ty') = dest_tagged_type ty;
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   736
    val typargs = Sign.const_typargs thy (c, ty');
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   737
    val sorts = Code_Preproc.sortargs eqngr c;
48072
ace701efe203 prefer records with speaking labels over deeply nested tuples
haftmann
parents: 48003
diff changeset
   738
    val (dom, range) = Term.strip_type ty';
26972
haftmann
parents: 26939
diff changeset
   739
  in
77927
haftmann
parents: 77926
diff changeset
   740
    (deps, program)
haftmann
parents: 77926
diff changeset
   741
    |> ensure_const ctxt algbr eqngr permissive c
haftmann
parents: 77926
diff changeset
   742
    ||>> fold_map (translate_typ ctxt algbr eqngr permissive) typargs
haftmann
parents: 77926
diff changeset
   743
    ||>> fold_map (translate_dicts ctxt algbr eqngr permissive some_thm) (typargs ~~ sorts)
haftmann
parents: 77926
diff changeset
   744
    ||>> fold_map (translate_typ ctxt algbr eqngr permissive) (range :: dom)
haftmann
parents: 77926
diff changeset
   745
    |>> (fn (((c, typargs), dss), range :: dom) =>
77706
haftmann
parents: 77705
diff changeset
   746
      { sym = Constant c, typargs = typargs, dicts = dss,
77233
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   747
        dom = dom, range = range, annotation =
6bdd125d932b explicit range types in abstractions
stuebinm <stuebinm@disroot.org>
parents: 77232
diff changeset
   748
          if annotate then SOME (dom `--> range) else NONE })
26972
haftmann
parents: 26939
diff changeset
   749
  end
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   750
and translate_case ctxt algbr eqngr permissive some_thm (t_pos, []) _ (const as { dom, ... }, ts) =
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   751
      let
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   752
        fun project_term xs = nth xs t_pos;
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   753
        val project_clause = the_single o nth_drop t_pos;
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   754
        val ty_case = project_term dom;
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   755
        fun distill_clauses t =
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   756
          map (fn ([pat], body) => (pat, body)) (distill_minimized_clause [ty_case] t)
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   757
      in
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   758
        pair (ICase { term = project_term ts, typ = ty_case,
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   759
          clauses = (filter_out (is_undefined_clause ctxt) o distill_clauses o project_clause) ts,
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   760
          primitive = IConst const `$$ ts })
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   761
      end
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   762
  | translate_case ctxt algbr eqngr permissive some_thm (t_pos, case_pats) ty (const as { dom, ... }, ts) =
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   763
      let
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   764
        fun project_term xs = nth xs t_pos;
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   765
        fun project_cases xs =
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   766
          xs
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   767
          |> nth_drop t_pos
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   768
          |> curry (op ~~) case_pats
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   769
          |> map_filter (fn (NONE, _) => NONE | (SOME _, x) => SOME x);
77927
haftmann
parents: 77926
diff changeset
   770
        val tys = take (length case_pats + 1) (binder_types ty);
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   771
        val ty_case = project_term tys;
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   772
        val ty_case' = project_term dom;
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   773
        val constrs = map_filter I case_pats ~~ project_cases tys
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   774
          |> map (fn ((c, n), ty) =>
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   775
            ((c, (take n o binder_types) ty ---> ty_case), n));
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   776
        fun distill_clauses constrs ts_clause =
77706
haftmann
parents: 77705
diff changeset
   777
          maps (fn ((constr as { dom = tys, ... }, n), t) =>
haftmann
parents: 77705
diff changeset
   778
            map (fn (pat_args, body) => (IConst constr `$$ pat_args, body))
75392
haftmann
parents: 75391
diff changeset
   779
              (distill_minimized_clause (take n tys) t))
haftmann
parents: 75391
diff changeset
   780
                (constrs ~~ ts_clause);
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   781
      in
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   782
        fold_map (fn (c_ty, n) =>
77702
haftmann
parents: 77701
diff changeset
   783
          translate_const ctxt algbr eqngr permissive some_thm NONE c_ty #>> rpair n) constrs
77926
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   784
        #>> (fn constrs =>
b41c8fce442d case translation in intermediate language eliminates semantic clone
haftmann
parents: 77924
diff changeset
   785
            ICase { term = project_term ts, typ = ty_case',
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   786
              clauses = (filter_out (is_undefined_clause ctxt) o distill_clauses constrs o project_cases) ts,
77706
haftmann
parents: 77705
diff changeset
   787
              primitive = IConst const `$$ ts })
75397
e852c776a455 tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents: 75392
diff changeset
   788
      end
77704
4c5297aa18c8 more uniform approach towards satisfied applications
haftmann
parents: 77703
diff changeset
   789
and translate_app ctxt algbr eqngr permissive some_thm some_abs (c_ty as (c, ty), ts) =
77927
haftmann
parents: 77926
diff changeset
   790
  translate_const ctxt algbr eqngr permissive some_thm some_abs c_ty
haftmann
parents: 77926
diff changeset
   791
  ##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm NONE) ts
haftmann
parents: 77926
diff changeset
   792
  #-> (fn (const, ts) => case Code.get_case_schema (Proof_Context.theory_of ctxt) c of
haftmann
parents: 77926
diff changeset
   793
      SOME (wanted, pattern_schema) =>
haftmann
parents: 77926
diff changeset
   794
        let
haftmann
parents: 77926
diff changeset
   795
          val ((vs_tys, (ts1, rty)), ts2) = satisfied_application wanted (const, ts);
haftmann
parents: 77926
diff changeset
   796
          val (_, ty') = dest_tagged_type ty;
haftmann
parents: 77926
diff changeset
   797
        in
haftmann
parents: 77926
diff changeset
   798
          translate_case ctxt algbr eqngr permissive some_thm pattern_schema ty' (const, ts1)
haftmann
parents: 77926
diff changeset
   799
          #>> (fn t => (vs_tys `|==> (t, rty)) `$$ ts2)
haftmann
parents: 77926
diff changeset
   800
        end
haftmann
parents: 77926
diff changeset
   801
    | NONE =>
haftmann
parents: 77926
diff changeset
   802
        pair (IConst const `$$ ts))
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   803
and translate_tyvar_sort ctxt (algbr as (proj_sort, _)) eqngr permissive (v, sort) =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   804
  fold_map (ensure_class ctxt algbr eqngr permissive) (proj_sort sort)
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   805
  #>> (fn sort => (unprefix "'" v, sort))
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   806
and translate_dicts ctxt algbr eqngr permissive some_thm (ty, sort) =
30932
35f255987e18 tuned order of functions
haftmann
parents: 30648
diff changeset
   807
  let
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   808
    fun translate_dict (Weakening (classrels, d)) =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   809
          fold_map (ensure_classrel ctxt algbr eqngr permissive) classrels
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   810
          ##>> translate_plain_dict d
41118
b290841cd3b0 separated dictionary weakning into separate type
haftmann
parents: 41100
diff changeset
   811
          #>> Dict 
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   812
    and translate_plain_dict (Global (inst, dss)) =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   813
          ensure_inst ctxt algbr eqngr permissive inst
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   814
          ##>> fold_map (fn (ty, ds) =>
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   815
            translate_typ ctxt algbr eqngr permissive ty
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   816
            ##>> fold_map translate_dict ds) dss
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   817
          #>> Dict_Const
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   818
      | translate_plain_dict (Local { var, index, sort, unique }) =
63303
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   819
          ensure_class ctxt algbr eqngr permissive (nth sort index)
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   820
          #>> (fn class => Dict_Var { var = unprefix "'" var, index = index,
7cffe366d333 explicit resolution of ambiguous dictionaries
haftmann
parents: 63175
diff changeset
   821
            length = length sort, class = class, unique = unique })
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   822
  in
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   823
    construct_dictionaries ctxt algbr permissive some_thm (ty, sort)
77707
a6a81f848135 More explicit type information in dictionary arguments.
haftmann
parents: 77706
diff changeset
   824
    #-> (fn typarg_witnesses => fold_map translate_dict typarg_witnesses)
55189
2f829a3cf9bc more abstract dictionary construction
haftmann
parents: 55188
diff changeset
   825
  end;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   826
25969
haftmann
parents: 25621
diff changeset
   827
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   828
(* store *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   829
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
   830
structure Program = Code_Data
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   831
(
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   832
  type T = program;
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   833
  val empty = Code_Symbol.Graph.empty;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   834
);
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   835
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   836
fun invoke_generation ignore_cache ctxt generate thing =
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   837
  Program.change_yield
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   838
    (if ignore_cache then NONE else SOME (Proof_Context.theory_of ctxt))
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   839
    (fn program => ([], program)
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   840
      |> generate thing
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   841
      |-> (fn thing => fn (_, program) => (thing, program)));
36272
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   842
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   843
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   844
(* program generation *)
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   845
63175
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   846
fun check_abstract_constructors thy consts =
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   847
  case filter (Code.is_abstr thy) consts of
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   848
    [] => ()
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   849
  | abstrs => error ("Cannot export abstract constructor(s): "
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   850
      ^ commas (map (Code.string_of_const thy) abstrs));
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   851
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   852
fun invoke_generation_for_consts ctxt { ignore_cache, permissive } { algebra, eqngr } consts =
63175
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   853
  let
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   854
    val thy = Proof_Context.theory_of ctxt;
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   855
    val _ = if permissive then ()
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   856
      else check_abstract_constructors thy consts;
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   857
  in
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   858
    Code_Preproc.timed "translating program" #ctxt
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   859
    (fn { ctxt, algebra, eqngr, consts } => invoke_generation ignore_cache ctxt
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   860
      (fold_map (ensure_const ctxt algebra eqngr permissive)) consts)
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   861
      { ctxt = ctxt, algebra = algebra, eqngr = eqngr, consts = consts }
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   862
  end;
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   863
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   864
fun invoke_generation_for_consts' ctxt ignore_cache_and_permissive consts =
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   865
  invoke_generation_for_consts ctxt
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   866
    { ignore_cache = ignore_cache_and_permissive, permissive = ignore_cache_and_permissive }
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   867
    (Code_Preproc.obtain ignore_cache_and_permissive
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   868
      { ctxt = ctxt, consts = consts, terms = []}) consts
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   869
  |> snd;
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   870
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   871
fun invoke_generation_for_consts'' ctxt algebra_eqngr =
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   872
  invoke_generation_for_consts ctxt
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   873
    { ignore_cache = true, permissive = false }
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   874
    algebra_eqngr
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   875
  #> (fn (deps, program) => { deps = deps, program = program });
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   876
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   877
fun consts_program_permissive ctxt =
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   878
  invoke_generation_for_consts' ctxt true;
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   879
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   880
fun consts_program ctxt consts =
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   881
  let
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   882
    fun project program = Code_Symbol.Graph.restrict
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   883
      (member (op =) (Code_Symbol.Graph.all_succs program
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   884
        (map Constant consts))) program;
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   885
  in
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   886
    invoke_generation_for_consts' ctxt false consts
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   887
    |> project
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   888
  end;
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   889
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   890
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
   891
(* value evaluation *)
25969
haftmann
parents: 25621
diff changeset
   892
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   893
fun ensure_value ctxt algbr eqngr t =
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   894
  let
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   895
    val ty = fastype_of t;
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   896
    val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =)
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   897
      o dest_TFree))) t [];
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68482
diff changeset
   898
    val t' = annotate ctxt algbr eqngr (\<^const_name>\<open>Pure.dummy_pattern\<close>, ty) [] t;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68482
diff changeset
   899
    val dummy_constant = Constant \<^const_name>\<open>Pure.dummy_pattern\<close>;
24918
22013215eece moved translation kernel to CodeThingol
haftmann
parents: 24837
diff changeset
   900
    val stmt_value =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   901
      fold_map (translate_tyvar_sort ctxt algbr eqngr false) vs
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   902
      ##>> translate_typ ctxt algbr eqngr false ty
77702
haftmann
parents: 77701
diff changeset
   903
      ##>> translate_term ctxt algbr eqngr false NONE NONE t'
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28423
diff changeset
   904
      #>> (fn ((vs, ty), t) => Fun
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   905
        (((vs, ty), [(([], t), (NONE, true))]), NONE));
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56811
diff changeset
   906
    fun term_value (_, program1) =
25969
haftmann
parents: 25621
diff changeset
   907
      let
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   908
        val Fun ((vs_ty, [(([], t), _)]), _) =
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   909
          Code_Symbol.Graph.get_node program1 dummy_constant;
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   910
        val deps' = Code_Symbol.Graph.immediate_succs program1 dummy_constant;
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   911
        val program2 = Code_Symbol.Graph.del_node dummy_constant program1;
55190
81070502914c dependency reporting for code generation errors
haftmann
parents: 55189
diff changeset
   912
        val deps_all = Code_Symbol.Graph.all_succs program2 deps';
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 54932
diff changeset
   913
        val program3 = Code_Symbol.Graph.restrict (member (op =) deps_all) program2;
77705
e6ee7af8184c tuned whitespace
haftmann
parents: 77704
diff changeset
   914
      in ((program3, ((vs_ty, t), deps')), (deps', program2)) end;
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   915
  in
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68482
diff changeset
   916
    ensure_stmt Constant stmt_value \<^const_name>\<open>Pure.dummy_pattern\<close>
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   917
    #> snd
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
   918
    #> term_value
26011
d55224947082 cleaned up evaluation interfaces
haftmann
parents: 25969
diff changeset
   919
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   920
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 63303
diff changeset
   921
fun dynamic_evaluation comp ctxt algebra eqngr t =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   922
  let
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   923
    val ((program, (vs_ty_t', deps)), _) =
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   924
      Code_Preproc.timed "translating term" #ctxt
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   925
      (fn { ctxt, algebra, eqngr, t } =>
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   926
        invoke_generation false ctxt (ensure_value ctxt algebra eqngr) t)
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   927
        { ctxt = ctxt, algebra = algebra, eqngr = eqngr, t = t };
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 63303
diff changeset
   928
  in comp program t vs_ty_t' deps end;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   929
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   930
fun dynamic_conv ctxt conv =
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   931
  Code_Preproc.dynamic_conv ctxt
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   932
    (dynamic_evaluation (fn program => fn _ => conv program) ctxt);
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   933
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   934
fun dynamic_value ctxt postproc comp =
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   935
  Code_Preproc.dynamic_value ctxt postproc
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   936
    (dynamic_evaluation comp ctxt);
41365
54dfe5c584e8 proper static closures
haftmann
parents: 41346
diff changeset
   937
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   938
fun static_evaluation ctxt consts algebra_eqngr static_eval =
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   939
  static_eval (invoke_generation_for_consts'' ctxt algebra_eqngr consts);
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   940
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   941
fun static_evaluation_thingol ctxt consts (algebra_eqngr as { algebra, eqngr }) static_eval =
41365
54dfe5c584e8 proper static closures
haftmann
parents: 41346
diff changeset
   942
  let
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   943
    fun evaluation program dynamic_eval ctxt t =
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   944
      let
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   945
        val ((_, ((vs_ty', t'), deps)), _) =
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   946
          Code_Preproc.timed "translating term" #ctxt
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   947
          (fn { ctxt, t } =>
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   948
            ensure_value ctxt algebra eqngr t ([], program))
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
   949
            { ctxt = ctxt, t = t };
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   950
      in dynamic_eval ctxt t (vs_ty', t') deps end;
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   951
  in
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   952
    static_evaluation ctxt consts algebra_eqngr (fn program_deps =>
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   953
      evaluation (#program program_deps) (static_eval program_deps))
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   954
  end;
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   955
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   956
fun static_evaluation_isa ctxt consts algebra_eqngr static_eval =
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   957
  static_evaluation ctxt consts algebra_eqngr (fn program_deps =>
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   958
    (static_eval (#program program_deps)));
39487
80b2cf3b0779 proper closures for static evaluation; no need for FIXMEs any longer
haftmann
parents: 39475
diff changeset
   959
63156
3cb84e4469a7 clarified names of variants
haftmann
parents: 63073
diff changeset
   960
fun static_conv_thingol (ctxt_consts as { ctxt, consts }) conv =
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   961
  Code_Preproc.static_conv ctxt_consts (fn algebra_eqngr =>
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   962
    static_evaluation_thingol ctxt consts algebra_eqngr
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   963
      (fn program_deps =>
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   964
        let
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   965
          val static_conv = conv program_deps;
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   966
        in 
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   967
          fn ctxt => fn _ => fn vs_ty => fn deps => static_conv ctxt vs_ty deps
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   968
        end));
38672
f1f64375f662 preliminary versions of static_eval_conv(_simple)
haftmann
parents: 38669
diff changeset
   969
63156
3cb84e4469a7 clarified names of variants
haftmann
parents: 63073
diff changeset
   970
fun static_conv_isa (ctxt_consts as { ctxt, consts }) conv =
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   971
  Code_Preproc.static_conv ctxt_consts (fn algebra_eqngr =>
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   972
    static_evaluation_isa ctxt consts algebra_eqngr conv);
38672
f1f64375f662 preliminary versions of static_eval_conv(_simple)
haftmann
parents: 38669
diff changeset
   973
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   974
fun static_value (ctxt_postproc_consts as { ctxt, consts, ... }) comp =
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   975
  Code_Preproc.static_value ctxt_postproc_consts (fn algebra_eqngr =>
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   976
    static_evaluation_thingol ctxt consts algebra_eqngr comp);
39487
80b2cf3b0779 proper closures for static evaluation; no need for FIXMEs any longer
haftmann
parents: 39475
diff changeset
   977
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   978
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
   979
(** constant expressions **)
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
   980
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   981
fun read_const_exprs_internal ctxt =
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
   982
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
   983
    val thy = Proof_Context.theory_of ctxt;
68482
cb84beb84ca9 clarified signature;
wenzelm
parents: 66189
diff changeset
   984
    fun this_theory name =
77889
5db014c36f42 clarified signature: explicitly distinguish theory_base_name vs. theory_long_name;
wenzelm
parents: 77707
diff changeset
   985
      if Context.theory_base_name thy = name then thy
68482
cb84beb84ca9 clarified signature;
wenzelm
parents: 66189
diff changeset
   986
      else Context.get_theory {long = false} thy name;
cb84beb84ca9 clarified signature;
wenzelm
parents: 66189
diff changeset
   987
56062
8ae2965ddc80 tuned signature;
wenzelm
parents: 56025
diff changeset
   988
    fun consts_of thy' =
8ae2965ddc80 tuned signature;
wenzelm
parents: 56025
diff changeset
   989
      fold (fn (c, (_, NONE)) => cons c | _ => I)
63175
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   990
        (#constants (Consts.dest (Sign.consts_of thy'))) []
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
   991
      |> filter_out (Code.is_abstr thy);
36272
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   992
    fun belongs_here thy' c = forall
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   993
      (fn thy'' => not (Sign.declared_const thy'' c)) (Theory.parents_of thy');
4d358c582ffb optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents: 36210
diff changeset
   994
    fun consts_of_select thy' = filter (belongs_here thy') (consts_of thy');
52801
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52519
diff changeset
   995
    fun read_const_expr str =
59795
d453c69596cc clarified input source;
wenzelm
parents: 59633
diff changeset
   996
      (case Syntax.parse_input ctxt (K NONE) (K Markup.empty) (SOME o Symbol_Pos.implode o #1) str of
52801
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52519
diff changeset
   997
        SOME "_" => ([], consts_of thy)
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52519
diff changeset
   998
      | SOME s =>
69645
wenzelm
parents: 69593
diff changeset
   999
          (case try (unsuffix "._") s of
wenzelm
parents: 69593
diff changeset
  1000
            SOME name => ([], consts_of_select (this_theory name))
wenzelm
parents: 69593
diff changeset
  1001
          | NONE => ([Code.read_const thy str], []))
52801
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52519
diff changeset
  1002
      | NONE => ([Code.read_const thy str], []));
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58893
diff changeset
  1003
  in apply2 flat o split_list o map read_const_expr end;
31036
64ff53fc0c0c removed code_name module
haftmann
parents: 30970
diff changeset
  1004
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1005
fun read_const_exprs_all ctxt = op @ o read_const_exprs_internal ctxt;
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1006
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1007
fun read_const_exprs ctxt const_exprs =
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1008
  let
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
  1009
    val (consts, consts_permissive) =
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
  1010
      read_const_exprs_internal ctxt const_exprs;
63175
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
  1011
    val consts' = 
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
  1012
      consts_program_permissive ctxt consts_permissive
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
  1013
      |> implemented_deps
d191892b1c23 explicit check that abstract constructors cannot be part of official interface
haftmann
parents: 63164
diff changeset
  1014
      |> filter_out (Code.is_abstr (Proof_Context.theory_of ctxt));
55188
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1015
  in union (op =) consts' consts end;
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1016
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1017
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1018
(** diagnostic commands **)
7ca0204ece66 reduced prominence of "permissive code generation"
haftmann
parents: 55150
diff changeset
  1019
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1020
fun code_depgr ctxt consts =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1021
  let
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
  1022
    val { eqngr, ... } = Code_Preproc.obtain true
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63160
diff changeset
  1023
      { ctxt = ctxt, consts = consts, terms = [] };
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 34084
diff changeset
  1024
    val all_consts = Graph.all_succs eqngr consts;
46614
165886a4fe64 clarified Graph.restrict (formerly Graph.subgraph) based on public graph operations;
wenzelm
parents: 45987
diff changeset
  1025
  in Graph.restrict (member (op =) all_consts) eqngr end;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1026
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1027
fun code_thms ctxt = Pretty.writeln o Code_Preproc.pretty ctxt o code_depgr ctxt;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1028
60203
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1029
fun coalesce_strong_conn gr =
59208
2486d625878b for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents: 59207
diff changeset
  1030
  let
2486d625878b for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents: 59207
diff changeset
  1031
    val xss = Graph.strong_conn gr;
60203
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1032
    val xss_ys = map (fn xs => (xs, commas xs)) xss;
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1033
    val y_for = the o AList.lookup (op =) (maps (fn (xs, y) => map (fn x => (x, y)) xs) xss_ys);
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1034
    fun coalesced_succs_for xs = maps (Graph.immediate_succs gr) xs
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1035
      |> subtract (op =) xs
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1036
      |> map y_for
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1037
      |> distinct (op =);
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1038
    val succs = map (fn (xs, _) => (xs, coalesced_succs_for xs)) xss_ys;
59208
2486d625878b for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents: 59207
diff changeset
  1039
  in
60204
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1040
    map (fn (xs, y) => ((y, xs), (maps (Graph.get_node gr) xs, (the o AList.lookup (op =) succs) xs))) xss_ys
59208
2486d625878b for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents: 59207
diff changeset
  1041
  end;
2486d625878b for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents: 59207
diff changeset
  1042
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1043
fun code_deps ctxt consts =
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
  1044
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1045
    val thy = Proof_Context.theory_of ctxt;
60204
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1046
    fun mk_entry ((name, consts), (ps, deps)) =
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1047
      let
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1048
        val label = commas (map (Code.string_of_const thy) consts);
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1049
      in ((name, Graph_Display.content_node label (Pretty.str label :: ps)), deps) end;
59210
8658b4290aed clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents: 59208
diff changeset
  1050
  in
8658b4290aed clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents: 59208
diff changeset
  1051
    code_depgr ctxt consts
60204
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1052
    |> Graph.map (K (Code.pretty_cert thy o snd))
60203
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1053
    |> coalesce_strong_conn
60204
137b3fc46bb3 code equations as displayable content in code dependency graph
wenzelm
parents: 60203
diff changeset
  1054
    |> map mk_entry
60203
add72fdadd0b filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents: 60097
diff changeset
  1055
    |> Graph_Display.display_graph
59210
8658b4290aed clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents: 59208
diff changeset
  1056
  end;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1057
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1058
local
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
  1059
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1060
fun code_thms_cmd ctxt = code_thms ctxt o read_const_exprs_all ctxt;
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55190
diff changeset
  1061
fun code_deps_cmd ctxt = code_deps ctxt o read_const_exprs_all ctxt;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1062
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1063
in
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1064
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1065
val _ =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68482
diff changeset
  1066
  Outer_Syntax.command \<^command_keyword>\<open>code_thms\<close>
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46665
diff changeset
  1067
    "print system of code equations for code"
52801
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52519
diff changeset
  1068
    (Scan.repeat1 Parse.term >> (fn cs =>
60097
d20ca79d50e4 discontinued pointless warnings: commands are only defined inside a theory context;
wenzelm
parents: 60089
diff changeset
  1069
      Toplevel.keep (fn st => code_thms_cmd (Toplevel.context_of st) cs)));
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1070
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1071
val _ =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 68482
diff changeset
  1072
  Outer_Syntax.command \<^command_keyword>\<open>code_deps\<close>
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46665
diff changeset
  1073
    "visualize dependencies of code equations for code"
52801
6f88e379aa3e proper PIDE markup for codegen arguments;
wenzelm
parents: 52519
diff changeset
  1074
    (Scan.repeat1 Parse.term >> (fn cs =>
59210
8658b4290aed clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents: 59208
diff changeset
  1075
      Toplevel.keep (fn st => code_deps_cmd (Toplevel.context_of st) cs)));
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1076
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30932
diff changeset
  1077
end;
27103
d8549f4d900b major refactorings in code generator modules
haftmann
parents: 27024
diff changeset
  1078
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
  1079
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
  1080
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
  1081
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents: 27711
diff changeset
  1082
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol;