src/Pure/Isar/code.ML
author haftmann
Mon, 10 Aug 2009 12:25:30 +0200
changeset 32354 bb40e900e1f3
parent 32347 36017d1ea1b3
child 32544 e129333b9df0
permissions -rw-r--r--
same_typscheme replaces ugly common_typ_eqns
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     1
(*  Title:      Pure/Isar/code.ML
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
     4
Abstract executable code of theory.  Management of data dependent on
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
     5
executable code.  Cache assumes non-concurrent processing of a single theory.
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
signature CODE =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
sig
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    10
  (*constants*)
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    11
  val check_const: theory -> term -> string
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    12
  val read_bare_const: theory -> string -> string * typ
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    13
  val read_const: theory -> string -> string
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    14
  val string_of_const: theory -> string -> string
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    15
  val args_number: theory -> string -> int
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    16
  val typscheme: theory -> string * typ -> (string * sort) list * typ
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    17
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    18
  (*constructor sets*)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    19
  val constrset_of_consts: theory -> (string * typ) list
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    20
    -> string * ((string * sort) list * (string * typ list) list)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    21
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    22
  (*constant aliasses*)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    23
  val add_const_alias: thm -> theory -> theory
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    24
  val triv_classes: theory -> class list
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    25
  val resubst_alias: theory -> string -> string
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    26
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    27
  (*code equations*)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    28
  val mk_eqn: theory -> thm * bool -> thm * bool
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    29
  val mk_eqn_warning: theory -> thm -> (thm * bool) option
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    30
  val mk_eqn_liberal: theory -> thm -> (thm * bool) option
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    31
  val assert_eqn: theory -> thm * bool -> thm * bool
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    32
  val assert_eqns_const: theory -> string
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    33
    -> (thm * bool) list -> (thm * bool) list
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    34
  val const_typ_eqn: theory -> thm -> string * typ
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    35
  val typscheme_eqn: theory -> thm -> (string * sort) list * typ
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    36
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    37
  (*executable code*)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    38
  val add_datatype: (string * typ) list -> theory -> theory
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    39
  val add_datatype_cmd: string list -> theory -> theory
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    40
  val type_interpretation:
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    41
    (string * ((string * sort) list * (string * typ list) list)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    42
      -> theory -> theory) -> theory -> theory
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    43
  val add_eqn: thm -> theory -> theory
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    44
  val add_eqnl: string * (thm * bool) list lazy -> theory -> theory
31088
36a011423fcc clarified terminilogy concerning nbe equations
haftmann
parents: 30928
diff changeset
    45
  val add_nbe_eqn: thm -> theory -> theory
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    46
  val add_default_eqn: thm -> theory -> theory
28703
aef727ef30e5 cleanup code default attribute
haftmann
parents: 28695
diff changeset
    47
  val add_default_eqn_attribute: attribute
aef727ef30e5 cleanup code default attribute
haftmann
parents: 28695
diff changeset
    48
  val add_default_eqn_attrib: Attrib.src
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    49
  val del_eqn: thm -> theory -> theory
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    50
  val del_eqns: string -> theory -> theory
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
    51
  val add_case: thm -> theory -> theory
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
    52
  val add_undefined: string -> theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    53
  val get_datatype: theory -> string -> ((string * sort) list * (string * typ list) list)
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
    54
  val get_datatype_of_constr: theory -> string -> string option
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    55
  val these_eqns: theory -> string -> (thm * bool) list
31642
ce68241f711f permissive code attribute; all_eqns
haftmann
parents: 31599
diff changeset
    56
  val all_eqns: theory -> (thm * bool) list
30023
55954f726043 permissive check for pattern discipline in case schemes
haftmann
parents: 29970
diff changeset
    57
  val get_case_scheme: theory -> string -> (int * (int * string list)) option
31890
e943b039f0ac an intermediate step towards a refined translation of cases
haftmann
parents: 31642
diff changeset
    58
  val undefineds: theory -> string list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    59
  val print_codesetup: theory -> unit
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    60
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    61
  (*infrastructure*)
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
    62
  val set_code_target_attr: (string -> thm -> theory -> theory) -> theory -> theory
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    63
  val purge_data: theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    64
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    65
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
signature CODE_DATA_ARGS =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    67
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    68
  type T
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    69
  val empty: T
27609
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27582
diff changeset
    70
  val purge: theory -> string list -> T -> T
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    71
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    72
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
signature CODE_DATA =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    74
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    75
  type T
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    76
  val get: theory -> T
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    77
  val change: theory -> (T -> T) -> T
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    78
  val change_yield: theory -> (T -> 'a * T) -> 'a * T
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    79
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    80
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
signature PRIVATE_CODE =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    82
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    83
  include CODE
27609
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27582
diff changeset
    84
  val declare_data: Object.T -> (theory -> string list -> Object.T -> Object.T)
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27582
diff changeset
    85
    -> serial
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    86
  val get_data: serial * ('a -> Object.T) * (Object.T -> 'a)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    87
    -> theory -> 'a
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    88
  val change_data: serial * ('a -> Object.T) * (Object.T -> 'a)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    89
    -> theory -> ('a -> 'a) -> 'a
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    90
  val change_yield_data: serial * ('a -> Object.T) * (Object.T -> 'a)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    91
    -> theory -> ('a -> 'b * 'a) -> 'b * 'a
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    92
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    93
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    94
structure Code : PRIVATE_CODE =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    97
(** auxiliary **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    98
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    99
(* printing *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   100
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   101
fun string_of_typ thy = setmp show_sorts true (Syntax.string_of_typ_global thy);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   102
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   103
fun string_of_const thy c = case AxClass.inst_of_param thy c
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   104
 of SOME (c, tyco) => Sign.extern_const thy c ^ " " ^ enclose "[" "]" (Sign.extern_type thy tyco)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   105
  | NONE => Sign.extern_const thy c;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   106
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   107
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   108
(* constants *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   109
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   110
fun check_bare_const thy t = case try dest_Const t
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   111
 of SOME c_ty => c_ty
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   112
  | NONE => error ("Not a constant: " ^ Syntax.string_of_term_global thy t);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   113
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   114
fun check_const thy = AxClass.unoverload_const thy o check_bare_const thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   115
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   116
fun read_bare_const thy = check_bare_const thy o Syntax.read_term_global thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   117
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   118
fun read_const thy = AxClass.unoverload_const thy o read_bare_const thy;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   119
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   120
fun typscheme thy (c, ty) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   121
  let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   122
    val ty' = Logic.unvarifyT ty;
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   123
  in (map dest_TFree (Sign.const_typargs thy (c, ty')), Type.strip_sorts ty') end;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   124
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   125
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   126
(** data store **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   127
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   128
(* code equations *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   129
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   130
type eqns = bool * (thm * bool) list lazy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   131
  (*default flag, theorems with proper flag (perhaps lazy)*)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   132
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   133
fun pretty_lthms ctxt r = case Lazy.peek r
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   134
 of SOME thms => map (Display.pretty_thm ctxt o fst) (Exn.release thms)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   135
  | NONE => [Pretty.str "[...]"];
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   136
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   137
fun certificate thy f r =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   138
  case Lazy.peek r
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   139
   of SOME thms => (Lazy.value o f thy) (Exn.release thms)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   140
    | NONE => let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   141
        val thy_ref = Theory.check_thy thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   142
      in Lazy.lazy (fn () => (f (Theory.deref thy_ref) o Lazy.force) r) end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   143
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   144
fun add_drop_redundant thy (thm, proper) thms =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   145
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   146
    val args_of = snd o strip_comb o map_types Type.strip_sorts
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   147
      o fst o Logic.dest_equals o Thm.plain_prop_of;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   148
    val args = args_of thm;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   149
    val incr_idx = Logic.incr_indexes ([], Thm.maxidx_of thm + 1);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   150
    fun matches_args args' = length args <= length args' andalso
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   151
      Pattern.matchess thy (args, (map incr_idx o curry Library.take (length args)) args');
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   152
    fun drop (thm', proper') = if (proper orelse not proper')
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   153
      andalso matches_args (args_of thm') then 
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   154
        (warning ("Code generator: dropping redundant code equation\n" ^
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   155
            Display.string_of_thm_global thy thm'); true)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   156
      else false;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   157
  in (thm, proper) :: filter_out drop thms end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   158
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   159
fun add_thm thy _ thm (false, thms) = (false, Lazy.map_force (add_drop_redundant thy thm) thms)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   160
  | add_thm thy true thm (true, thms) = (true, Lazy.map_force (fn thms => thms @ [thm]) thms)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   161
  | add_thm thy false thm (true, thms) = (false, Lazy.value [thm]);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   162
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   163
fun add_lthms lthms _ = (false, lthms);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   164
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   165
fun del_thm thm = (apsnd o Lazy.map_force) (remove (eq_fst Thm.eq_thm_prop) (thm, true));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   166
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   167
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   168
(* executable code data *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   169
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   170
datatype spec = Spec of {
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   171
  history_concluded: bool,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   172
  aliasses: ((string * string) * thm) list * class list,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   173
  eqns: ((bool * eqns) * (serial * eqns) list) Symtab.table
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   174
    (*with explicit history*),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   175
  dtyps: ((serial * ((string * sort) list * (string * typ list) list)) list) Symtab.table
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   176
    (*with explicit history*),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   177
  cases: (int * (int * string list)) Symtab.table * unit Symtab.table
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   178
};
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   179
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   180
fun make_spec ((history_concluded, aliasses), (eqns, (dtyps, cases))) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   181
  Spec { history_concluded = history_concluded, aliasses = aliasses,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   182
    eqns = eqns, dtyps = dtyps, cases = cases };
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   183
fun map_spec f (Spec { history_concluded = history_concluded, aliasses = aliasses, eqns = eqns,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   184
  dtyps = dtyps, cases = cases }) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   185
  make_spec (f ((history_concluded, aliasses), (eqns, (dtyps, cases))));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   186
fun merge_spec (Spec { history_concluded = _, aliasses = aliasses1, eqns = eqns1,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   187
    dtyps = dtyps1, cases = (cases1, undefs1) },
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   188
  Spec { history_concluded = _, aliasses = aliasses2, eqns = eqns2,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   189
    dtyps = dtyps2, cases = (cases2, undefs2) }) =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   190
  let
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   191
    val aliasses = (Library.merge (eq_snd Thm.eq_thm_prop) (pairself fst (aliasses1, aliasses2)),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   192
      Library.merge (op =) (pairself snd (aliasses1, aliasses2)));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   193
    fun merge_eqns ((_, history1), (_, history2)) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   194
      let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   195
        val raw_history = AList.merge (op = : serial * serial -> bool)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   196
          (K true) (history1, history2)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   197
        val filtered_history = filter_out (fst o snd) raw_history
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   198
        val history = if null filtered_history
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   199
          then raw_history else filtered_history;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   200
      in ((false, (snd o hd) history), history) end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   201
    val eqns = Symtab.join (K merge_eqns) (eqns1, eqns2);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   202
    val dtyps = Symtab.join (K (AList.merge (op =) (K true))) (dtyps1, dtyps2);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   203
    val cases = (Symtab.merge (K true) (cases1, cases2),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   204
      Symtab.merge (K true) (undefs1, undefs2));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   205
  in make_spec ((false, aliasses), (eqns, (dtyps, cases))) end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   206
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   207
fun history_concluded (Spec { history_concluded, ... }) = history_concluded;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   208
fun the_aliasses (Spec { aliasses, ... }) = aliasses;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   209
fun the_eqns (Spec { eqns, ... }) = eqns;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   210
fun the_dtyps (Spec { dtyps, ... }) = dtyps;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   211
fun the_cases (Spec { cases, ... }) = cases;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   212
val map_history_concluded = map_spec o apfst o apfst;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   213
val map_aliasses = map_spec o apfst o apsnd;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   214
val map_eqns = map_spec o apsnd o apfst;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   215
val map_dtyps = map_spec o apsnd o apsnd o apfst;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   216
val map_cases = map_spec o apsnd o apsnd o apsnd;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   217
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   218
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   219
(* data slots dependent on executable code *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   220
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   221
(*private copy avoids potential conflict of table exceptions*)
31971
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31962
diff changeset
   222
structure Datatab = Table(type key = int val ord = int_ord);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   223
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   224
local
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   225
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   226
type kind = {
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   227
  empty: Object.T,
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   228
  purge: theory -> string list -> Object.T -> Object.T
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   229
};
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   230
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   231
val kinds = ref (Datatab.empty: kind Datatab.table);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   232
val kind_keys = ref ([]: serial list);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   233
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   234
fun invoke f k = case Datatab.lookup (! kinds) k
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   235
 of SOME kind => f kind
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   236
  | NONE => sys_error "Invalid code data identifier";
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   237
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   238
in
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   239
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   240
fun declare_data empty purge =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   241
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   242
    val k = serial ();
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   243
    val kind = {empty = empty, purge = purge};
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   244
    val _ = change kinds (Datatab.update (k, kind));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   245
    val _ = change kind_keys (cons k);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   246
  in k end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   247
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   248
fun invoke_init k = invoke (fn kind => #empty kind) k;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   249
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   250
fun invoke_purge_all thy cs =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   251
  fold (fn k => Datatab.map_entry k
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   252
    (invoke (fn kind => #purge kind thy cs) k)) (! kind_keys);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   253
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   254
end; (*local*)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   255
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   256
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   257
(* theory store *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   258
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   259
local
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   260
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   261
type data = Object.T Datatab.table;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   262
val empty_data = Datatab.empty : data;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   263
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   264
structure Code_Data = TheoryDataFun
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   265
(
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   266
  type T = spec * data ref;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   267
  val empty = (make_spec ((false, ([], [])),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   268
    (Symtab.empty, (Symtab.empty, (Symtab.empty, Symtab.empty)))), ref empty_data);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   269
  fun copy (spec, data) = (spec, ref (! data));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   270
  val extend = copy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   271
  fun merge pp ((spec1, data1), (spec2, data2)) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   272
    (merge_spec (spec1, spec2), ref empty_data);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   273
);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   274
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   275
fun thy_data f thy = f ((snd o Code_Data.get) thy);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   276
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   277
fun get_ensure_init kind data_ref =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   278
  case Datatab.lookup (! data_ref) kind
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   279
   of SOME x => x
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   280
    | NONE => let val y = invoke_init kind
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   281
        in (change data_ref (Datatab.update (kind, y)); y) end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   282
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   283
in
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   284
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   285
(* access to executable code *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   286
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   287
val the_exec = fst o Code_Data.get;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   288
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   289
fun complete_class_params thy cs =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   290
  fold (fn c => case AxClass.inst_of_param thy c
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   291
   of NONE => insert (op =) c
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   292
    | SOME (c', _) => insert (op =) c' #> insert (op =) c) cs [];
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   293
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   294
fun map_exec_purge touched f thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   295
  Code_Data.map (fn (exec, data) => (f exec, ref (case touched
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   296
   of SOME cs => invoke_purge_all thy (complete_class_params thy cs) (! data)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   297
    | NONE => empty_data))) thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   298
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   299
val purge_data = (Code_Data.map o apsnd) (K (ref empty_data));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   300
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   301
fun change_eqns delete c f = (map_exec_purge (SOME [c]) o map_eqns
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   302
  o (if delete then Symtab.map_entry c else Symtab.map_default (c, ((false, (true, Lazy.value [])), [])))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   303
    o apfst) (fn (_, eqns) => (true, f eqns));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   304
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   305
fun del_eqns c = change_eqns true c (K (false, Lazy.value []));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   306
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   307
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   308
(* tackling equation history *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   309
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   310
fun get_eqns thy c =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   311
  Symtab.lookup ((the_eqns o the_exec) thy) c
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   312
  |> Option.map (Lazy.force o snd o snd o fst)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   313
  |> these;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   314
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   315
fun continue_history thy = if (history_concluded o the_exec) thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   316
  then thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   317
    |> (Code_Data.map o apfst o map_history_concluded) (K false)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   318
    |> SOME
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   319
  else NONE;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   320
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   321
fun conclude_history thy = if (history_concluded o the_exec) thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   322
  then NONE
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   323
  else thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   324
    |> (Code_Data.map o apfst)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   325
        ((map_eqns o Symtab.map) (fn ((changed, current), history) =>
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   326
          ((false, current),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   327
            if changed then (serial (), current) :: history else history))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   328
        #> map_history_concluded (K true))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   329
    |> SOME;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   330
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   331
val _ = Context.>> (Context.map_theory (Code_Data.init
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   332
  #> Theory.at_begin continue_history
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   333
  #> Theory.at_end conclude_history));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   334
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   335
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   336
(* access to data dependent on abstract executable code *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   337
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   338
fun get_data (kind, _, dest) = thy_data (get_ensure_init kind #> dest);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   339
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   340
fun change_data (kind, mk, dest) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   341
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   342
    fun chnge data_ref f =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   343
      let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   344
        val data = get_ensure_init kind data_ref;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   345
        val data' = f (dest data);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   346
      in (change data_ref (Datatab.update (kind, mk data')); data') end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   347
  in thy_data chnge end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   348
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   349
fun change_yield_data (kind, mk, dest) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   350
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   351
    fun chnge data_ref f =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   352
      let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   353
        val data = get_ensure_init kind data_ref;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   354
        val (x, data') = f (dest data);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   355
      in (x, (change data_ref (Datatab.update (kind, mk data')); data')) end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   356
  in thy_data chnge end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   357
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   358
end; (*local*)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   359
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   360
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   361
(** retrieval interfaces **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   362
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   363
(* constant aliasses *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   364
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   365
fun resubst_alias thy =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   366
  let
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   367
    val alias = (fst o the_aliasses o the_exec) thy;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   368
    val subst_inst_param = Option.map fst o AxClass.inst_of_param thy;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   369
    fun subst_alias c =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   370
      get_first (fn ((c', c''), _) => if c = c'' then SOME c' else NONE) alias;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   371
  in
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   372
    perhaps subst_inst_param
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   373
    #> perhaps subst_alias
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   374
  end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   375
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   376
val triv_classes = snd o the_aliasses o the_exec;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   377
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   378
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   379
(** foundation **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   380
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   381
(* constants *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   382
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   383
fun args_number thy = length o fst o strip_type o Sign.the_const_type thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   384
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   385
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   386
(* datatypes *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   387
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   388
fun constrset_of_consts thy cs =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   389
  let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   390
    val _ = map (fn (c, _) => if (is_some o AxClass.class_of_param thy) c
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   391
      then error ("Is a class parameter: " ^ string_of_const thy c) else ()) cs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   392
    fun no_constr (c, ty) = error ("Not a datatype constructor: " ^ string_of_const thy c
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   393
      ^ " :: " ^ string_of_typ thy ty);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   394
    fun last_typ c_ty ty =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   395
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   396
        val frees = OldTerm.typ_tfrees ty;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   397
        val (tyco, vs) = ((apsnd o map) (dest_TFree) o dest_Type o snd o strip_type) ty
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   398
          handle TYPE _ => no_constr c_ty
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   399
        val _ = if has_duplicates (eq_fst (op =)) vs then no_constr c_ty else ();
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   400
        val _ = if length frees <> length vs then no_constr c_ty else ();
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   401
      in (tyco, vs) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   402
    fun ty_sorts (c, ty) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   403
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   404
        val ty_decl = (Logic.unvarifyT o Sign.the_const_type thy) c;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   405
        val (tyco, _) = last_typ (c, ty) ty_decl;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   406
        val (_, vs) = last_typ (c, ty) ty;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   407
      in ((tyco, map snd vs), (c, (map fst vs, ty))) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   408
    fun add ((tyco', sorts'), c) ((tyco, sorts), cs) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   409
      let
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   410
        val _ = if (tyco' : string) <> tyco
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   411
          then error "Different type constructors in constructor set"
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   412
          else ();
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   413
        val sorts'' = map2 (curry (Sorts.inter_sort (Sign.classes_of thy))) sorts' sorts
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   414
      in ((tyco, sorts), c :: cs) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   415
    fun inst vs' (c, (vs, ty)) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   416
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   417
        val the_v = the o AList.lookup (op =) (vs ~~ vs');
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   418
        val ty' = map_atyps (fn TFree (v, _) => TFree (the_v v)) ty;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   419
      in (c, (fst o strip_type) ty') end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   420
    val c' :: cs' = map ty_sorts cs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   421
    val ((tyco, sorts), cs'') = fold add cs' (apsnd single c');
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   422
    val vs = Name.names Name.context Name.aT sorts;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   423
    val cs''' = map (inst vs) cs'';
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   424
  in (tyco, (vs, rev cs''')) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   425
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   426
fun get_datatype thy tyco =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   427
  case these (Symtab.lookup ((the_dtyps o the_exec) thy) tyco)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   428
   of (_, spec) :: _ => spec
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   429
    | [] => Sign.arity_number thy tyco
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   430
        |> Name.invents Name.context Name.aT
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   431
        |> map (rpair [])
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   432
        |> rpair [];
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   433
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   434
fun get_datatype_of_constr thy c =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   435
  case (snd o strip_type o Sign.the_const_type thy) c
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   436
   of Type (tyco, _) => if member (op =) ((map fst o snd o get_datatype thy) tyco) c
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   437
       then SOME tyco else NONE
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   438
    | _ => NONE;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   439
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   440
fun is_constr thy = is_some o get_datatype_of_constr thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   441
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   442
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   443
(* code equations *)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   444
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   445
exception BAD_THM of string;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   446
fun bad_thm msg = raise BAD_THM msg;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   447
fun error_thm f thm = f thm handle BAD_THM msg => error msg;
31642
ce68241f711f permissive code attribute; all_eqns
haftmann
parents: 31599
diff changeset
   448
fun warning_thm f thm = SOME (f thm) handle BAD_THM msg => (warning msg; NONE)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   449
fun try_thm f thm = SOME (f thm) handle BAD_THM _ => NONE;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   450
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   451
fun is_linear thm =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   452
  let val (_, args) = (strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of) thm
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   453
  in not (has_duplicates (op =) ((fold o fold_aterms)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   454
    (fn Var (v, _) => cons v | _ => I) args [])) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   455
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   456
fun gen_assert_eqn thy is_constr_pat (thm, proper) =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   457
  let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   458
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   459
      handle TERM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm_global thy thm)
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   460
           | THM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm_global thy thm);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   461
    fun vars_of t = fold_aterms (fn Var (v, _) => insert (op =) v
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   462
      | Free _ => bad_thm ("Illegal free variable in equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   463
          ^ Display.string_of_thm_global thy thm)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   464
      | _ => I) t [];
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   465
    fun tvars_of t = fold_term_types (fn _ =>
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   466
      fold_atyps (fn TVar (v, _) => insert (op =) v
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   467
        | TFree _ => bad_thm 
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   468
      ("Illegal free type variable in equation\n" ^ Display.string_of_thm_global thy thm))) t [];
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   469
    val lhs_vs = vars_of lhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   470
    val rhs_vs = vars_of rhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   471
    val lhs_tvs = tvars_of lhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   472
    val rhs_tvs = tvars_of rhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   473
    val _ = if null (subtract (op =) lhs_vs rhs_vs)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   474
      then ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   475
      else bad_thm ("Free variables on right hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   476
        ^ Display.string_of_thm_global thy thm);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   477
    val _ = if null (subtract (op =) lhs_tvs rhs_tvs)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   478
      then ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   479
      else bad_thm ("Free type variables on right hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   480
        ^ Display.string_of_thm_global thy thm)
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   481
    val (head, args) = (strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of) thm;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   482
    val (c, ty) = case head
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   483
     of Const (c_ty as (_, ty)) => (AxClass.unoverload_const thy c_ty, ty)
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   484
      | _ => bad_thm ("Equation not headed by constant\n" ^ Display.string_of_thm_global thy thm);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   485
    fun check _ (Abs _) = bad_thm
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   486
          ("Abstraction on left hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   487
            ^ Display.string_of_thm_global thy thm)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   488
      | check 0 (Var _) = ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   489
      | check _ (Var _) = bad_thm
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   490
          ("Variable with application on left hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   491
            ^ Display.string_of_thm_global thy thm)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   492
      | check n (t1 $ t2) = (check (n+1) t1; check 0 t2)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   493
      | check n (Const (c_ty as (c, ty))) = if n = (length o fst o strip_type) ty
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   494
          then if not proper orelse is_constr_pat (AxClass.unoverload_const thy c_ty)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   495
            then ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   496
            else bad_thm (quote c ^ " is not a constructor, on left hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   497
              ^ Display.string_of_thm_global thy thm)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   498
          else bad_thm
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   499
            ("Partially applied constant " ^ quote c ^ " on left hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   500
               ^ Display.string_of_thm_global thy thm);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   501
    val _ = map (check 0) args;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   502
    val _ = if not proper orelse is_linear thm then ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   503
      else bad_thm ("Duplicate variables on left hand side of equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   504
        ^ Display.string_of_thm_global thy thm);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   505
    val _ = if (is_none o AxClass.class_of_param thy) c
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   506
      then ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   507
      else bad_thm ("Polymorphic constant as head in equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   508
        ^ Display.string_of_thm_global thy thm)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   509
    val _ = if not (is_constr thy c)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   510
      then ()
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   511
      else bad_thm ("Constructor as head in equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   512
        ^ Display.string_of_thm_global thy thm)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   513
    val ty_decl = Sign.the_const_type thy c;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   514
    val _ = if Sign.typ_equiv thy (Type.strip_sorts ty_decl, Type.strip_sorts ty)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   515
      then () else bad_thm ("Type\n" ^ string_of_typ thy ty
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   516
           ^ "\nof equation\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   517
           ^ Display.string_of_thm_global thy thm
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   518
           ^ "\nis incompatible with declared function type\n"
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   519
           ^ string_of_typ thy ty_decl)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   520
  in (thm, proper) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   521
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   522
fun assert_eqn thy = error_thm (gen_assert_eqn thy (is_constr thy));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   523
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   524
fun meta_rewrite thy = LocalDefs.meta_rewrite_rule (ProofContext.init thy);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   525
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   526
fun mk_eqn thy = error_thm (gen_assert_eqn thy (K true)) o
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   527
  apfst (meta_rewrite thy);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   528
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   529
fun mk_eqn_warning thy = Option.map (fn (thm, _) => (thm, is_linear thm))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   530
  o warning_thm (gen_assert_eqn thy (K true)) o rpair false o meta_rewrite thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   531
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   532
fun mk_eqn_liberal thy = Option.map (fn (thm, _) => (thm, is_linear thm))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   533
  o try_thm (gen_assert_eqn thy (K true)) o rpair false o meta_rewrite thy;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   534
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   535
(*those following are permissive wrt. to overloaded constants!*)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   536
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   537
fun const_typ_eqn thy thm =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   538
  let
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   539
    val (c, ty) = (dest_Const o fst o strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of) thm;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   540
    val c' = AxClass.unoverload_const thy (c, ty);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   541
  in (c', ty) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   542
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   543
fun typscheme_eqn thy = typscheme thy o const_typ_eqn thy;
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   544
fun const_eqn thy = fst o const_typ_eqn thy;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   545
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   546
fun assert_eqns_const thy c eqns =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   547
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   548
    fun cert (eqn as (thm, _)) = if c = const_eqn thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   549
      then eqn else error ("Wrong head of code equation,\nexpected constant "
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   550
        ^ string_of_const thy c ^ "\n" ^ Display.string_of_thm_global thy thm)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   551
  in map (cert o assert_eqn thy) eqns end;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   552
32354
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   553
fun same_typscheme thy thms =
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   554
  let
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   555
    fun tvars_of t = rev (Term.add_tvars t []);
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   556
    val vss = map (tvars_of o Thm.prop_of) thms;
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   557
    fun inter_sorts vs =
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   558
      fold (curry (Sorts.inter_sort (Sign.classes_of thy)) o snd) vs [];
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   559
    val sorts = map_transpose inter_sorts vss;
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   560
    val vts = Name.names Name.context Name.aT sorts
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   561
      |> map (fn (v, sort) => TVar ((v, 0), sort));
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   562
  in map2 (fn vs => Thm.certify_instantiate (vs ~~ vts, [])) vss thms end;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   563
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   564
fun these_eqns thy c =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   565
  get_eqns thy c
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   566
  |> (map o apfst) (Thm.transfer thy)
32354
bb40e900e1f3 same_typscheme replaces ugly common_typ_eqns
haftmann
parents: 32347
diff changeset
   567
  |> burrow_fst (same_typscheme thy);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   568
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   569
fun all_eqns thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   570
  Symtab.dest ((the_eqns o the_exec) thy)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   571
  |> maps (Lazy.force o snd o snd o fst o snd);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   572
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   573
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   574
(* cases *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   575
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   576
fun case_certificate thm =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   577
  let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   578
    val ((head, raw_case_expr), cases) = (apfst Logic.dest_equals
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   579
      o apsnd Logic.dest_conjunctions o Logic.dest_implies o Thm.prop_of) thm;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   580
    val _ = case head of Free _ => true
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   581
      | Var _ => true
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   582
      | _ => raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   583
    val ([(case_var, _)], case_expr) = Term.strip_abs_eta 1 raw_case_expr;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   584
    val (Const (case_const, _), raw_params) = strip_comb case_expr;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   585
    val n = find_index (fn Free (v, _) => v = case_var | _ => false) raw_params;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   586
    val _ = if n = ~1 then raise TERM ("case_cert", []) else ();
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   587
    val params = map (fst o dest_Var) (nth_drop n raw_params);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   588
    fun dest_case t =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   589
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   590
        val (head' $ t_co, rhs) = Logic.dest_equals t;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   591
        val _ = if head' = head then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   592
        val (Const (co, _), args) = strip_comb t_co;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   593
        val (Var (param, _), args') = strip_comb rhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   594
        val _ = if args' = args then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   595
      in (param, co) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   596
    fun analyze_cases cases =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   597
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   598
        val co_list = fold (AList.update (op =) o dest_case) cases [];
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   599
      in map (the o AList.lookup (op =) co_list) params end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   600
    fun analyze_let t =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   601
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   602
        val (head' $ arg, Var (param', _) $ arg') = Logic.dest_equals t;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   603
        val _ = if head' = head then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   604
        val _ = if arg' = arg then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   605
        val _ = if [param'] = params then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   606
      in [] end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   607
    fun analyze (cases as [let_case]) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   608
          (analyze_cases cases handle Bind => analyze_let let_case)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   609
      | analyze cases = analyze_cases cases;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   610
  in (case_const, (n, analyze cases)) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   611
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   612
fun case_cert thm = case_certificate thm
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   613
  handle Bind => error "bad case certificate"
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   614
       | TERM _ => error "bad case certificate";
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   615
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   616
fun get_case_scheme thy = Symtab.lookup ((fst o the_cases o the_exec) thy);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   617
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   618
val undefineds = Symtab.keys o snd o the_cases o the_exec;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   619
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   620
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   621
(* diagnostic *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   622
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   623
fun print_codesetup thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   624
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   625
    val ctxt = ProofContext.init thy;
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   626
    val exec = the_exec thy;
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
   627
    fun pretty_eqn (s, (_, lthms)) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   628
      (Pretty.block o Pretty.fbreaks) (
28143
e5c6c4aac52c different bookkeeping for code equations
haftmann
parents: 28054
diff changeset
   629
        Pretty.str s :: pretty_lthms ctxt lthms
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   630
      );
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   631
    fun pretty_dtyp (s, []) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   632
          Pretty.str s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   633
      | pretty_dtyp (s, cos) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   634
          (Pretty.block o Pretty.breaks) (
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   635
            Pretty.str s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   636
            :: Pretty.str "="
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   637
            :: separate (Pretty.str "|") (map (fn (c, []) => Pretty.str (string_of_const thy c)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   638
                 | (c, tys) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   639
                     (Pretty.block o Pretty.breaks)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   640
                        (Pretty.str (string_of_const thy c)
26947
133905a0c493 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26928
diff changeset
   641
                          :: Pretty.str "of"
133905a0c493 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26928
diff changeset
   642
                          :: map (Pretty.quote o Syntax.pretty_typ_global thy) tys)) cos)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   643
          );
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
   644
    val eqns = the_eqns exec
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
   645
      |> Symtab.dest
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   646
      |> (map o apfst) (string_of_const thy)
28695
f7a06d7284c8 explicit history for equations; tuned
haftmann
parents: 28673
diff changeset
   647
      |> (map o apsnd) (snd o fst)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   648
      |> sort (string_ord o pairself fst);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   649
    val dtyps = the_dtyps exec
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   650
      |> Symtab.dest
28695
f7a06d7284c8 explicit history for equations; tuned
haftmann
parents: 28673
diff changeset
   651
      |> map (fn (dtco, (_, (vs, cos)) :: _) =>
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   652
          (string_of_typ thy (Type (dtco, map TFree vs)), cos))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   653
      |> sort (string_ord o pairself fst)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   654
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   655
    (Pretty.writeln o Pretty.chunks) [
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   656
      Pretty.block (
30023
55954f726043 permissive check for pattern discipline in case schemes
haftmann
parents: 29970
diff changeset
   657
        Pretty.str "code equations:"
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   658
        :: Pretty.fbrk
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
   659
        :: (Pretty.fbreaks o map pretty_eqn) eqns
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   660
      ),
25968
66cfe1d00be0 print postprocessor equations
haftmann
parents: 25597
diff changeset
   661
      Pretty.block (
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   662
        Pretty.str "datatypes:"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   663
        :: Pretty.fbrk
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   664
        :: (Pretty.fbreaks o map pretty_dtyp) dtyps
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   665
      )
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   666
    ]
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   667
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   668
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   669
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   670
(** declaring executable ingredients **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   671
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   672
(* constant aliasses *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   673
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   674
fun add_const_alias thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   675
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   676
    val (ofclass, eqn) = case try Logic.dest_equals (Thm.prop_of thm)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   677
     of SOME ofclass_eq => ofclass_eq
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   678
      | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   679
    val (T, class) = case try Logic.dest_of_class ofclass
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   680
     of SOME T_class => T_class
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   681
      | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   682
    val tvar = case try Term.dest_TVar T
32122
4ee1c1aebbcc more accurate check of judgment type
haftmann
parents: 32070
diff changeset
   683
     of SOME (tvar as (_, sort)) => if null (filter (can (AxClass.get_info thy)) sort)
4ee1c1aebbcc more accurate check of judgment type
haftmann
parents: 32070
diff changeset
   684
          then tvar
32131
7913823f14e3 merged, resolving trivial conflict;
wenzelm
parents: 32122 32091
diff changeset
   685
          else error ("Bad sort: " ^ Display.string_of_thm_global thy thm)
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   686
      | _ => error ("Bad type: " ^ Display.string_of_thm_global thy thm);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   687
    val _ = if Term.add_tvars eqn [] = [tvar] then ()
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   688
      else error ("Inconsistent type: " ^ Display.string_of_thm_global thy thm);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   689
    val lhs_rhs = case try Logic.dest_equals eqn
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   690
     of SOME lhs_rhs => lhs_rhs
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   691
      | _ => error ("Not an equation: " ^ Syntax.string_of_term_global thy eqn);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   692
    val c_c' = case try (pairself (check_const thy)) lhs_rhs
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   693
     of SOME c_c' => c_c'
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   694
      | _ => error ("Not an equation with two constants: "
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   695
          ^ Syntax.string_of_term_global thy eqn);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   696
    val _ = if the_list (AxClass.class_of_param thy (snd c_c')) = [class] then ()
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32070
diff changeset
   697
      else error ("Inconsistent class: " ^ Display.string_of_thm_global thy thm);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   698
  in thy |>
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   699
    (map_exec_purge NONE o map_aliasses) (fn (alias, classes) =>
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   700
      ((c_c', thm) :: alias, insert (op =) class classes))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   701
  end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   702
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   703
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   704
(* datatypes *)
31090
3be41b271023 clarified matter of "proper" flag in code equations
haftmann
parents: 31088
diff changeset
   705
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   706
structure Type_Interpretation = InterpretationFun(type T = string * serial val eq = eq_snd (op =) : T * T -> bool);
25462
dad0291cb76a rudimentary instantiation target
haftmann
parents: 25312
diff changeset
   707
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
   708
fun add_datatype raw_cs thy =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   709
  let
25597
34860182b250 moved instance parameter management from class.ML to axclass.ML
haftmann
parents: 25501
diff changeset
   710
    val cs = map (fn c_ty as (_, ty) => (AxClass.unoverload_const thy c_ty, ty)) raw_cs;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   711
    val (tyco, vs_cos) = constrset_of_consts thy cs;
30076
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   712
    val old_cs = (map fst o snd o get_datatype thy) tyco;
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   713
    fun drop_outdated_cases cases = fold Symtab.delete_safe
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   714
      (Symtab.fold (fn (c, (_, (_, cos))) =>
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   715
        if exists (member (op =) old_cs) cos
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   716
          then insert (op =) c else I) cases []) cases;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   717
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   718
    thy
31091
8316d22f10f5 corrected deletetion of code equations for constructors
haftmann
parents: 31090
diff changeset
   719
    |> fold (del_eqns o fst) cs
28703
aef727ef30e5 cleanup code default attribute
haftmann
parents: 28695
diff changeset
   720
    |> map_exec_purge NONE
28695
f7a06d7284c8 explicit history for equations; tuned
haftmann
parents: 28673
diff changeset
   721
        ((map_dtyps o Symtab.map_default (tyco, [])) (cons (serial (), vs_cos))
30076
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   722
        #> (map_cases o apfst) drop_outdated_cases)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   723
    |> Type_Interpretation.data (tyco, serial ())
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   724
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   725
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   726
fun type_interpretation f =  Type_Interpretation.interpretation
25485
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   727
  (fn (tyco, _) => fn thy => f (tyco, get_datatype thy tyco) thy);
33840a854e63 tuned interfaces of class module
haftmann
parents: 25462
diff changeset
   728
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
   729
fun add_datatype_cmd raw_cs thy =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
   730
  let
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   731
    val cs = map (read_bare_const thy) raw_cs;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
   732
  in add_datatype cs thy end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   733
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   734
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   735
(* code equations *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   736
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   737
fun gen_add_eqn default (eqn as (thm, _)) thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   738
  let val c = const_eqn thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   739
  in change_eqns false c (add_thm thy default eqn) thy end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   740
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   741
fun add_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   742
  gen_add_eqn false (mk_eqn thy (thm, true)) thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   743
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   744
fun add_warning_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   745
  case mk_eqn_warning thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   746
   of SOME eqn => gen_add_eqn false eqn thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   747
    | NONE => thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   748
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   749
fun add_default_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   750
  case mk_eqn_liberal thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   751
   of SOME eqn => gen_add_eqn true eqn thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   752
    | NONE => thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   753
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   754
fun add_nbe_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   755
  gen_add_eqn false (mk_eqn thy (thm, false)) thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   756
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   757
fun add_eqnl (c, lthms) thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   758
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   759
    val lthms' = certificate thy (fn thy => assert_eqns_const thy c) lthms;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   760
  in change_eqns false c (add_lthms lthms') thy end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   761
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   762
val add_default_eqn_attribute = Thm.declaration_attribute
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   763
  (fn thm => Context.mapping (add_default_eqn thm) I);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   764
val add_default_eqn_attrib = Attrib.internal (K add_default_eqn_attribute);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   765
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   766
fun del_eqn thm thy = case mk_eqn_liberal thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   767
 of SOME (thm, _) => change_eqns true (const_eqn thy thm) (del_thm thm) thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   768
  | NONE => thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   769
32070
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   770
(* c.f. src/HOL/Tools/recfun_codegen.ML *)
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   771
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   772
structure Code_Target_Attr = TheoryDataFun (
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   773
  type T = (string -> thm -> theory -> theory) option;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   774
  val empty = NONE;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   775
  val copy = I;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   776
  val extend = I;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   777
  fun merge _ (NONE, f2) = f2
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   778
    | merge _ (f1, _) = f1;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   779
);
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   780
32070
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   781
fun set_code_target_attr f = Code_Target_Attr.map (K (SOME f));
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   782
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   783
fun code_target_attr prefix thm thy =
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   784
  let
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   785
    val attr = the_default ((K o K) I) (Code_Target_Attr.get thy);
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   786
  in thy |> add_warning_eqn thm |> attr prefix thm end;
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   787
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   788
(* setup *)
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   789
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   790
val _ = Context.>> (Context.map_theory
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   791
  (let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   792
    fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I);
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   793
    val code_attribute_parser =
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   794
      Args.del |-- Scan.succeed (mk_attribute del_eqn)
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   795
      || Args.$$$ "nbe" |-- Scan.succeed (mk_attribute add_nbe_eqn)
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   796
      || (Args.$$$ "target" |-- Args.colon |-- Args.name >>
32070
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   797
           (mk_attribute o code_target_attr))
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   798
      || Scan.succeed (mk_attribute add_warning_eqn);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   799
  in
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   800
    Type_Interpretation.init
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   801
    #> Attrib.setup (Binding.name "code") (Scan.lift code_attribute_parser)
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   802
        "declare theorems for code generation"
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   803
  end));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   804
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   805
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   806
(* cases *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   807
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   808
fun add_case thm thy =
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   809
  let
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   810
    val (c, (k, case_pats)) = case_cert thm;
31088
36a011423fcc clarified terminilogy concerning nbe equations
haftmann
parents: 30928
diff changeset
   811
    val _ = case filter_out (is_constr thy) case_pats
30076
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   812
     of [] => ()
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   813
      | cs => error ("Non-constructor(s) in case certificate: " ^ commas (map quote cs));
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   814
    val entry = (1 + Int.max (1, length case_pats), (k, case_pats))
f3043dafef5f improved treatment of case certificates
haftmann
parents: 30060
diff changeset
   815
  in (map_exec_purge (SOME [c]) o map_cases o apfst) (Symtab.update (c, entry)) thy end;
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   816
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   817
fun add_undefined c thy =
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   818
  (map_exec_purge (SOME [c]) o map_cases o apsnd) (Symtab.update (c, ())) thy;
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   819
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   820
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   821
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   822
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   823
(** type-safe interfaces for data depedent on executable code **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   824
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   825
functor Code_Data_Fun(Data: CODE_DATA_ARGS): CODE_DATA =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   826
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   827
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   828
type T = Data.T;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   829
exception Data of T;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   830
fun dest (Data x) = x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   831
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   832
val kind = Code.declare_data (Data Data.empty)
27609
b23c9ad0fe7d tuned code theorem bookkeeping
haftmann
parents: 27582
diff changeset
   833
  (fn thy => fn cs => fn Data x => Data (Data.purge thy cs x));
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   834
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   835
val data_op = (kind, Data, dest);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   836
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   837
val get = Code.get_data data_op;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   838
val change = Code.change_data data_op;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   839
fun change_yield thy = Code.change_yield_data data_op thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   840
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   841
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   842
28143
e5c6c4aac52c different bookkeeping for code equations
haftmann
parents: 28054
diff changeset
   843
structure Code : CODE = struct open Code; end;