src/Pure/Isar/code.ML
author haftmann
Wed, 13 Jan 2010 12:20:37 +0100
changeset 34895 19fd499cddff
parent 34894 fadbdd350dd1
child 34901 0d6a2ae86525
permissions -rw-r--r--
explicit abstract type of code certificates
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
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
     4
Abstract executable ingredients of theory.  Management of data
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
     5
dependent on executable ingredients as synchronized cache; purged
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
     6
on any change of underlying executable ingredients.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
signature CODE =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    10
sig
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    11
  (*constants*)
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    12
  val check_const: theory -> term -> string
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    13
  val read_bare_const: theory -> string -> string * typ
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    14
  val read_const: theory -> string -> string
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    15
  val string_of_const: theory -> string -> string
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    16
  val cert_signature: theory -> typ -> typ
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    17
  val read_signature: theory -> string -> typ
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    18
  val const_typ: theory -> string -> typ
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    19
  val subst_signatures: theory -> term -> term
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    20
  val args_number: theory -> string -> int
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    21
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    22
  (*constructor sets*)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    23
  val constrset_of_consts: theory -> (string * typ) list
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    24
    -> string * ((string * sort) list * (string * typ list) list)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    25
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
    26
  (*code equations and certificates*)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    27
  val mk_eqn: theory -> thm * bool -> thm * bool
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    28
  val mk_eqn_warning: theory -> thm -> (thm * bool) option
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    29
  val mk_eqn_liberal: theory -> thm -> (thm * bool) option
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    30
  val assert_eqn: theory -> thm * bool -> thm * bool
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    31
  val const_typ_eqn: theory -> thm -> string * typ
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
    32
  val expand_eta: theory -> int -> thm -> thm
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
    33
  type cert
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
    34
  val empty_cert: theory -> string -> cert
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
    35
  val cert_of_eqns: theory -> string -> (thm * bool) list -> cert
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
    36
  val constrain_cert: theory -> sort list -> cert -> cert
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
    37
  val typscheme_cert: theory -> cert -> (string * sort) list * typ
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
    38
  val equations_cert: theory -> cert -> ((string * sort) list * typ) * (term list * term) list
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
    39
  val equations_thms_cert: theory -> cert -> ((string * sort) list * typ) * ((term list * term) * (thm * bool)) list
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
    40
  val pretty_cert: theory -> cert -> Pretty.T list
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    41
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    42
  (*executable code*)
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    43
  val add_type: string -> theory -> theory
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    44
  val add_type_cmd: string -> theory -> theory
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    45
  val add_signature: string * typ -> theory -> theory
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
    46
  val add_signature_cmd: string * string -> theory -> theory
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    47
  val add_datatype: (string * typ) list -> theory -> theory
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    48
  val add_datatype_cmd: string list -> theory -> theory
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    49
  val type_interpretation:
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    50
    (string * ((string * sort) list * (string * typ list) list)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
    51
      -> theory -> theory) -> theory -> theory
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    52
  val add_eqn: thm -> theory -> theory
31088
36a011423fcc clarified terminilogy concerning nbe equations
haftmann
parents: 30928
diff changeset
    53
  val add_nbe_eqn: thm -> theory -> theory
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    54
  val add_default_eqn: thm -> theory -> theory
28703
aef727ef30e5 cleanup code default attribute
haftmann
parents: 28695
diff changeset
    55
  val add_default_eqn_attribute: attribute
aef727ef30e5 cleanup code default attribute
haftmann
parents: 28695
diff changeset
    56
  val add_default_eqn_attrib: Attrib.src
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    57
  val del_eqn: thm -> theory -> theory
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
    58
  val del_eqns: string -> theory -> theory
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
    59
  val add_case: thm -> theory -> theory
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
    60
  val add_undefined: string -> theory -> theory
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    61
  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
    62
  val get_datatype_of_constr: theory -> string -> string option
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
    63
  val get_cert: theory -> ((thm * bool) list -> (thm * bool) list) -> string -> cert
30023
55954f726043 permissive check for pattern discipline in case schemes
haftmann
parents: 29970
diff changeset
    64
  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
    65
  val undefineds: theory -> string list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
  val print_codesetup: theory -> unit
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    67
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    68
  (*infrastructure*)
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
    69
  val set_code_target_attr: (string -> thm -> theory -> theory) -> theory -> theory
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
    70
  val purge_data: theory -> theory
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_ARGS =
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 empty: T
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    77
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    78
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    79
signature CODE_DATA =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    80
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
  type T
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
    82
  val change: theory -> (T -> T) -> T
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
    83
  val change_yield: theory -> (T -> 'a * T) -> 'a * T
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    84
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    85
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    86
signature PRIVATE_CODE =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    87
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    88
  include CODE
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
    89
  val declare_data: Object.T -> serial
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    90
  val change_data: serial * ('a -> Object.T) * (Object.T -> 'a)
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
    91
    -> theory -> ('a -> 'a) -> 'a
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    92
  val change_yield_data: serial * ('a -> Object.T) * (Object.T -> 'a)
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
    93
    -> theory -> ('a -> 'b * 'a) -> 'b * 'a
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    94
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
structure Code : PRIVATE_CODE =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    97
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    98
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
    99
(** auxiliary **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   100
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   101
(* printing *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   102
32966
5b21661fe618 indicate CRITICAL nature of various setmp combinators;
wenzelm
parents: 32929
diff changeset
   103
fun string_of_typ thy = setmp_CRITICAL show_sorts true (Syntax.string_of_typ_global thy);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   104
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   105
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
   106
 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
   107
  | NONE => Sign.extern_const thy c;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   108
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   109
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   110
(* constants *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   111
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   112
fun typ_equiv tys = Type.raw_instance tys andalso Type.raw_instance (swap tys);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   113
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   114
fun check_bare_const thy t = case try dest_Const t
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   115
 of SOME c_ty => c_ty
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   116
  | 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
   117
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   118
fun check_const thy = AxClass.unoverload_const thy o check_bare_const thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   119
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   120
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
   121
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   122
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
   123
32872
019201eb7e07 variables in type schemes must be renamed simultaneously with variables in equations
haftmann
parents: 32738
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
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   130
type eqns = bool * (thm * bool) list;
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   131
  (*default flag, theorems with proper flag *)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   132
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   133
fun add_drop_redundant thy (thm, proper) thms =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   134
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   135
    val args_of = snd o strip_comb o map_types Type.strip_sorts
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   136
      o fst o Logic.dest_equals o Thm.plain_prop_of;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   137
    val args = args_of thm;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   138
    val incr_idx = Logic.incr_indexes ([], Thm.maxidx_of thm + 1);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   139
    fun matches_args args' = length args <= length args' andalso
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
   140
      Pattern.matchess thy (args, (map incr_idx o take (length args)) args');
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   141
    fun drop (thm', proper') = if (proper orelse not proper')
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   142
      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
   143
        (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
   144
            Display.string_of_thm_global thy thm'); true)
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   145
      else false;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   146
  in (thm, proper) :: filter_out drop thms end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   147
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   148
fun add_thm thy _ thm (false, thms) = (false, add_drop_redundant thy thm thms)
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   149
  | add_thm thy true thm (true, thms) = (true, thms @ [thm])
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   150
  | add_thm thy false thm (true, thms) = (false, [thm]);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   151
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   152
fun del_thm thm = apsnd (remove (eq_fst Thm.eq_thm_prop) (thm, true));
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   153
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   154
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   155
(* executable code data *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   156
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   157
datatype spec = Spec of {
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   158
  history_concluded: bool,
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   159
  signatures: int Symtab.table * typ Symtab.table,
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   160
  eqns: ((bool * eqns) * (serial * eqns) list) Symtab.table
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   161
    (*with explicit history*),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   162
  dtyps: ((serial * ((string * sort) list * (string * typ list) list)) list) Symtab.table
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   163
    (*with explicit history*),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   164
  cases: (int * (int * string list)) Symtab.table * unit Symtab.table
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   165
};
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   166
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   167
fun make_spec (history_concluded, ((signatures, eqns), (dtyps, cases))) =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   168
  Spec { history_concluded = history_concluded,
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   169
    signatures = signatures, eqns = eqns, dtyps = dtyps, cases = cases };
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   170
fun map_spec f (Spec { history_concluded = history_concluded, signatures = signatures,
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   171
  eqns = eqns, dtyps = dtyps, cases = cases }) =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   172
  make_spec (f (history_concluded, ((signatures, eqns), (dtyps, cases))));
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   173
fun merge_spec (Spec { history_concluded = _, signatures = (tycos1, sigs1), eqns = eqns1,
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   174
    dtyps = dtyps1, cases = (cases1, undefs1) },
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   175
  Spec { history_concluded = _, signatures = (tycos2, sigs2), eqns = eqns2,
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   176
    dtyps = dtyps2, cases = (cases2, undefs2) }) =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   177
  let
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   178
    val signatures = (Symtab.merge (op =) (tycos1, tycos2),
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   179
      Symtab.merge typ_equiv (sigs1, sigs2));
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   180
    fun merge_eqns ((_, history1), (_, history2)) =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   181
      let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   182
        val raw_history = AList.merge (op = : serial * serial -> bool)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   183
          (K true) (history1, history2)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   184
        val filtered_history = filter_out (fst o snd) raw_history
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   185
        val history = if null filtered_history
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   186
          then raw_history else filtered_history;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   187
      in ((false, (snd o hd) history), history) end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   188
    val eqns = Symtab.join (K merge_eqns) (eqns1, eqns2);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   189
    val dtyps = Symtab.join (K (AList.merge (op =) (K true))) (dtyps1, dtyps2);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   190
    val cases = (Symtab.merge (K true) (cases1, cases2),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   191
      Symtab.merge (K true) (undefs1, undefs2));
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   192
  in make_spec (false, ((signatures, eqns), (dtyps, cases))) end;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   193
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   194
fun history_concluded (Spec { history_concluded, ... }) = history_concluded;
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   195
fun the_signatures (Spec { signatures, ... }) = signatures;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   196
fun the_eqns (Spec { eqns, ... }) = eqns;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   197
fun the_dtyps (Spec { dtyps, ... }) = dtyps;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   198
fun the_cases (Spec { cases, ... }) = cases;
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32354
diff changeset
   199
val map_history_concluded = map_spec o apfst;
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   200
val map_signatures = map_spec o apsnd o apfst o apfst;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   201
val map_eqns = map_spec o apsnd o apfst o apsnd;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   202
val map_dtyps = map_spec o apsnd o apsnd o apfst;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   203
val map_cases = map_spec o apsnd o apsnd o apsnd;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   204
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   205
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   206
(* data slots dependent on executable code *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   207
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   208
(*private copy avoids potential conflict of table exceptions*)
31971
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31962
diff changeset
   209
structure Datatab = Table(type key = int val ord = int_ord);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   210
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   211
local
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   212
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   213
type kind = { empty: Object.T };
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   214
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32662
diff changeset
   215
val kinds = Unsynchronized.ref (Datatab.empty: kind Datatab.table);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   216
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   217
fun invoke f k = case Datatab.lookup (! kinds) k
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   218
 of SOME kind => f kind
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   219
  | NONE => sys_error "Invalid code data identifier";
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   220
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   221
in
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   222
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   223
fun declare_data empty =
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   224
  let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   225
    val k = serial ();
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   226
    val kind = { empty = empty };
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   227
    val _ = CRITICAL (fn () => Unsynchronized.change kinds (Datatab.update (k, kind)));
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   228
  in k end;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   229
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   230
fun invoke_init k = invoke (fn kind => #empty kind) k;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   231
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   232
end; (*local*)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   233
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   234
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   235
(* theory store *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   236
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   237
local
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   238
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   239
type data = Object.T Datatab.table;
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   240
fun empty_dataref () = Synchronized.var "code data" (NONE : (data * theory_ref) option);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   241
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   242
structure Code_Data = Theory_Data
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   243
(
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   244
  type T = spec * (data * theory_ref) option Synchronized.var;
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   245
  val empty = (make_spec (false, (((Symtab.empty, Symtab.empty), Symtab.empty),
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   246
    (Symtab.empty, (Symtab.empty, Symtab.empty)))), empty_dataref ());
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   247
  val extend = I
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   248
  fun merge ((spec1, _), (spec2, _)) =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   249
    (merge_spec (spec1, spec2), empty_dataref ());
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   250
);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   251
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   252
in
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   253
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   254
(* access to executable code *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   255
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   256
val the_exec = fst o Code_Data.get;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   257
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   258
fun map_exec_purge f = Code_Data.map (fn (exec, _) => (f exec, empty_dataref ()));
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   259
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   260
val purge_data = (Code_Data.map o apsnd) (fn _ => empty_dataref ());
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   261
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   262
fun change_eqns delete c f = (map_exec_purge o map_eqns
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   263
  o (if delete then Symtab.map_entry c else Symtab.map_default (c, ((false, (true, [])), [])))
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   264
    o apfst) (fn (_, eqns) => (true, f eqns));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   265
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   266
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   267
(* tackling equation history *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   268
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   269
fun continue_history thy = if (history_concluded o the_exec) thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   270
  then thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   271
    |> (Code_Data.map o apfst o map_history_concluded) (K false)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   272
    |> SOME
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   273
  else NONE;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   274
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   275
fun conclude_history thy = if (history_concluded o the_exec) thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   276
  then NONE
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   277
  else thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   278
    |> (Code_Data.map o apfst)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   279
        ((map_eqns o Symtab.map) (fn ((changed, current), history) =>
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   280
          ((false, current),
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   281
            if changed then (serial (), current) :: history else history))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   282
        #> map_history_concluded (K true))
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   283
    |> SOME;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   284
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   285
val _ = Context.>> (Context.map_theory (Theory.at_begin continue_history #> Theory.at_end conclude_history));
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   286
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   287
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   288
(* access to data dependent on abstract executable code *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   289
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   290
fun change_yield_data (kind, mk, dest) theory f =
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   291
  let
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   292
    val dataref = (snd o Code_Data.get) theory;
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   293
    val (datatab, thy_ref) = case Synchronized.value dataref
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   294
     of SOME (datatab, thy_ref) => if Theory.eq_thy (theory, Theory.deref thy_ref)
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   295
          then (datatab, thy_ref)
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   296
          else (Datatab.empty, Theory.check_thy theory)
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   297
      | NONE => (Datatab.empty, Theory.check_thy theory)
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   298
    val data = case Datatab.lookup datatab kind
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   299
     of SOME data => data
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   300
      | NONE => invoke_init kind;
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   301
    val result as (x, data') = f (dest data);
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   302
    val _ = Synchronized.change dataref
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   303
      ((K o SOME) (Datatab.update (kind, mk data') datatab, thy_ref));
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   304
  in result end;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   305
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   306
fun change_data ops theory f = change_yield_data ops theory (f #> pair ()) |> snd;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   307
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   308
end; (*local*)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   309
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   310
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   311
(** foundation **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   312
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   313
(* constants *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   314
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   315
fun arity_number thy tyco = case Symtab.lookup ((fst o the_signatures o the_exec) thy) tyco
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   316
 of SOME n => n
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   317
  | NONE => Sign.arity_number thy tyco;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   318
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   319
fun build_tsig thy =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   320
  let
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   321
    val (tycos, _) = (the_signatures o the_exec) thy;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   322
    val decls = (#types o Type.rep_tsig o Sign.tsig_of) thy
34272
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   323
      |> snd 
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   324
      |> Symtab.fold (fn (tyco, n) =>
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   325
          Symtab.update (tyco, Type.LogicalType n)) tycos;
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   326
  in
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   327
    Type.empty_tsig
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   328
    |> Symtab.fold (fn (tyco, Type.LogicalType n) => Type.add_type Name_Space.default_naming
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   329
        (Binding.qualified_name tyco, n) | _ => I) decls
95df5e6dd41c avoid exporting Type.build_tsig
haftmann
parents: 34251
diff changeset
   330
  end;
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   331
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   332
fun cert_signature thy = Logic.varifyT o Type.cert_typ (build_tsig thy) o Type.no_tvars;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   333
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   334
fun read_signature thy = cert_signature thy o Type.strip_sorts
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   335
  o Syntax.parse_typ (ProofContext.init thy);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   336
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   337
fun expand_signature thy = Type.cert_typ_mode Type.mode_syntax (Sign.tsig_of thy);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   338
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   339
fun lookup_typ thy = Symtab.lookup ((snd o the_signatures o the_exec) thy);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   340
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   341
fun const_typ thy c = case lookup_typ thy c
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   342
 of SOME ty => ty
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   343
  | NONE => (Type.strip_sorts o Sign.the_const_type thy) c;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   344
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   345
fun subst_signature thy c ty =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   346
  let
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   347
    fun mk_subst (Type (tyco, tys1)) (ty2 as Type (tyco2, tys2)) =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   348
          fold2 mk_subst tys1 tys2
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   349
      | mk_subst ty (TVar (v, sort)) = Vartab.update (v, ([], ty))
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   350
  in case lookup_typ thy c
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   351
   of SOME ty' => Envir.subst_type (mk_subst ty (expand_signature thy ty') Vartab.empty) ty'
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   352
    | NONE => ty
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   353
  end;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   354
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   355
fun subst_signatures thy = map_aterms (fn Const (c, ty) => Const (c, subst_signature thy c ty) | t => t);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   356
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   357
fun args_number thy = length o fst o strip_type o const_typ thy;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   358
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   359
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   360
(* datatypes *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   361
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   362
fun constrset_of_consts thy cs =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   363
  let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   364
    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
   365
      then error ("Is a class parameter: " ^ string_of_const thy c) else ()) cs;
33531
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   366
    fun no_constr s (c, ty) = error ("Not a datatype constructor:\n" ^ string_of_const thy c
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   367
      ^ " :: " ^ string_of_typ thy ty ^ "\n" ^ enclose "(" ")" s);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   368
    fun last_typ c_ty ty =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   369
      let
33531
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   370
        val tfrees = Term.add_tfreesT ty [];
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   371
        val (tyco, vs) = ((apsnd o map) (dest_TFree) o dest_Type o snd o strip_type) ty
33531
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   372
          handle TYPE _ => no_constr "bad type" c_ty
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   373
        val _ = if has_duplicates (eq_fst (op =)) vs
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   374
          then no_constr "duplicate type variables in datatype" c_ty else ();
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   375
        val _ = if length tfrees <> length vs
2c0a4adbcf13 tuned error messages; tuned code
haftmann
parents: 33522
diff changeset
   376
          then no_constr "type variables missing in datatype" c_ty else ();
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   377
      in (tyco, vs) end;
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   378
    fun ty_sorts (c, raw_ty) =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   379
      let
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   380
        val ty = subst_signature thy c raw_ty;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   381
        val ty_decl = (Logic.unvarifyT o const_typ thy) c;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   382
        val (tyco, _) = last_typ (c, ty) ty_decl;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   383
        val (_, vs) = last_typ (c, ty) ty;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   384
      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
   385
    fun add ((tyco', sorts'), c) ((tyco, sorts), cs) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   386
      let
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   387
        val _ = if (tyco' : string) <> tyco
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   388
          then error "Different type constructors in constructor set"
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   389
          else ();
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   390
        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
   391
      in ((tyco, sorts), c :: cs) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   392
    fun inst vs' (c, (vs, ty)) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   393
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   394
        val the_v = the o AList.lookup (op =) (vs ~~ vs');
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   395
        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
   396
      in (c, (fst o strip_type) ty') end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   397
    val c' :: cs' = map ty_sorts cs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   398
    val ((tyco, sorts), cs'') = fold add cs' (apsnd single c');
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   399
    val vs = Name.names Name.context Name.aT sorts;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   400
    val cs''' = map (inst vs) cs'';
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   401
  in (tyco, (vs, rev cs''')) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   402
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   403
fun get_datatype thy tyco =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   404
  case these (Symtab.lookup ((the_dtyps o the_exec) thy) tyco)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   405
   of (_, spec) :: _ => spec
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   406
    | [] => arity_number thy tyco
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   407
        |> Name.invents Name.context Name.aT
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   408
        |> map (rpair [])
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   409
        |> rpair [];
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   410
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   411
fun get_datatype_of_constr thy c =
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   412
  case (snd o strip_type o const_typ thy) c
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   413
   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
   414
       then SOME tyco else NONE
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   415
    | _ => NONE;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   416
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   417
fun is_constr thy = is_some o get_datatype_of_constr thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   418
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   419
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   420
(* bare code equations *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   421
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   422
exception BAD_THM of string;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   423
fun bad_thm msg = raise BAD_THM msg;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   424
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
   425
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
   426
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
   427
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   428
fun is_linear thm =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   429
  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
   430
  in not (has_duplicates (op =) ((fold o fold_aterms)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   431
    (fn Var (v, _) => cons v | _ => I) args [])) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   432
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   433
fun gen_assert_eqn thy check_patterns (thm, proper) =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   434
  let
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   435
    fun bad s = bad_thm (s ^ ":\n" ^ Display.string_of_thm_global thy thm);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   436
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   437
      handle TERM _ => bad "Not an equation"
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   438
           | THM _ => bad "Not an equation";
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   439
    fun vars_of t = fold_aterms (fn Var (v, _) => insert (op =) v
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   440
      | Free _ => bad "Illegal free variable in equation"
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   441
      | _ => I) t [];
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   442
    fun tvars_of t = fold_term_types (fn _ =>
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   443
      fold_atyps (fn TVar (v, _) => insert (op =) v
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   444
        | TFree _ => bad "Illegal free type variable in equation")) t [];
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   445
    val lhs_vs = vars_of lhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   446
    val rhs_vs = vars_of rhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   447
    val lhs_tvs = tvars_of lhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   448
    val rhs_tvs = tvars_of rhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   449
    val _ = if null (subtract (op =) lhs_vs rhs_vs)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   450
      then ()
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   451
      else bad "Free variables on right hand side of equation";
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   452
    val _ = if null (subtract (op =) lhs_tvs rhs_tvs)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   453
      then ()
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   454
      else bad "Free type variables on right hand side of equation";
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   455
    val (head, args) = strip_comb lhs;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   456
    val (c, ty) = case head
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   457
     of Const (c_ty as (_, ty)) => (AxClass.unoverload_const thy c_ty, ty)
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   458
      | _ => bad "Equation not headed by constant";
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   459
    fun check _ (Abs _) = bad "Abstraction on left hand side of equation"
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   460
      | check 0 (Var _) = ()
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   461
      | check _ (Var _) = bad "Variable with application on left hand side of equation"
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   462
      | check n (t1 $ t2) = (check (n+1) t1; check 0 t2)
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   463
      | check n (Const (c_ty as (c, ty))) =
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   464
          let
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   465
            val c' = AxClass.unoverload_const thy c_ty
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   466
          in if n = (length o fst o strip_type o subst_signature thy c') ty
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   467
            then if not proper orelse not check_patterns orelse is_constr thy c'
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   468
              then ()
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   469
              else bad (quote c ^ " is not a constructor, on left hand side of equation")
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   470
            else bad ("Partially applied constant " ^ quote c ^ " on left hand side of equation")
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   471
          end;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   472
    val _ = map (check 0) args;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   473
    val _ = if not proper orelse is_linear thm then ()
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   474
      else bad "Duplicate variables on left hand side of equation";
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   475
    val _ = if (is_none o AxClass.class_of_param thy) c then ()
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   476
      else bad "Overloaded constant as head in equation";
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   477
    val _ = if not (is_constr thy c) then ()
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   478
      else bad "Constructor as head in equation";
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   479
    val ty_decl = Sign.the_const_type thy c;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   480
    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
   481
      then () else bad_thm ("Type\n" ^ string_of_typ thy ty
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   482
        ^ "\nof equation\n"
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   483
        ^ Display.string_of_thm_global thy thm
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   484
        ^ "\nis incompatible with declared function type\n"
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   485
        ^ string_of_typ thy ty_decl)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   486
  in (thm, proper) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   487
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   488
fun assert_eqn thy = error_thm (gen_assert_eqn thy true);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   489
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   490
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
   491
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   492
fun mk_eqn thy = error_thm (gen_assert_eqn thy false) o
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   493
  apfst (meta_rewrite thy);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   494
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   495
fun mk_eqn_warning thy = Option.map (fn (thm, _) => (thm, is_linear thm))
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   496
  o warning_thm (gen_assert_eqn thy false) o rpair false o meta_rewrite thy;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   497
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   498
fun mk_eqn_liberal thy = Option.map (fn (thm, _) => (thm, is_linear thm))
34894
fadbdd350dd1 corrected error messages; tuned
haftmann
parents: 34891
diff changeset
   499
  o try_thm (gen_assert_eqn thy false) o rpair false o meta_rewrite thy;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   500
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   501
val head_eqn = dest_Const o fst o strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   502
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   503
fun const_typ_eqn thy thm =
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   504
  let
32640
ba6531df2c64 corrected order of type variables in code equations; more precise certificate for cases
haftmann
parents: 32544
diff changeset
   505
    val (c, ty) = head_eqn thm;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   506
    val c' = AxClass.unoverload_const thy (c, ty);
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   507
      (*permissive wrt. to overloaded constants!*)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   508
  in (c', ty) end;
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   509
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   510
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
   511
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   512
fun logical_typscheme thy (c, ty) =
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   513
  (map dest_TFree (Sign.const_typargs thy (c, ty)), Type.strip_sorts ty);
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   514
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   515
fun typscheme thy (c, ty) = logical_typscheme thy (c, subst_signature thy c ty);
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   516
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   517
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   518
(* technical transformations of code equations *)
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   519
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   520
fun expand_eta thy k thm =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   521
  let
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   522
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   523
    val (_, args) = strip_comb lhs;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   524
    val l = if k = ~1
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   525
      then (length o fst o strip_abs) rhs
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   526
      else Int.max (0, k - length args);
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   527
    val (raw_vars, _) = Term.strip_abs_eta l rhs;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   528
    val vars = burrow_fst (Name.variant_list (map (fst o fst) (Term.add_vars lhs [])))
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   529
      raw_vars;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   530
    fun expand (v, ty) thm = Drule.fun_cong_rule thm
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   531
      (Thm.cterm_of thy (Var ((v, 0), ty)));
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   532
  in
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   533
    thm
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   534
    |> fold expand vars
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   535
    |> Conv.fconv_rule Drule.beta_eta_conversion
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   536
  end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   537
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   538
fun same_arity thy thms =
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   539
  let
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   540
    val num_args_of = length o snd o strip_comb o fst o Logic.dest_equals;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   541
    val k = fold (Integer.max o num_args_of o Thm.prop_of) thms 0;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   542
  in map (expand_eta thy k) thms end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   543
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   544
fun mk_desymbolization pre post mk vs =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   545
  let
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   546
    val names = map (pre o fst o fst) vs
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   547
      |> map (Name.desymbolize false)
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   548
      |> Name.variant_list []
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   549
      |> map post;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   550
  in map_filter (fn (((v, i), x), v') =>
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   551
    if v = v' andalso i = 0 then NONE
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   552
    else SOME (((v, i), x), mk ((v', 0), x))) (vs ~~ names)
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   553
  end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   554
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   555
fun desymbolize_tvars thy thms =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   556
  let
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   557
    val tvs = fold (Term.add_tvars o Thm.prop_of) thms [];
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   558
    val tvar_subst = mk_desymbolization (unprefix "'") (prefix "'") TVar tvs;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   559
  in map (Thm.certify_instantiate (tvar_subst, [])) thms end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   560
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   561
fun desymbolize_vars thy thm =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   562
  let
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   563
    val vs = Term.add_vars (Thm.prop_of thm) [];
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   564
    val var_subst = mk_desymbolization I I Var vs;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   565
  in Thm.certify_instantiate ([], var_subst) thm end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   566
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   567
fun canonize_thms thy = desymbolize_tvars thy #> same_arity thy #> map (desymbolize_vars thy);
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   568
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   569
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   570
(* code equation certificates *)
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   571
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   572
fun build_head thy (c, ty) =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   573
  Thm.cterm_of thy (Logic.mk_equals (Free ("HEAD", ty), Const (c, ty)));
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   574
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   575
fun get_head thy cert_thm =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   576
  let
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   577
    val [head] = (#hyps o Thm.crep_thm) cert_thm;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   578
    val (_, Const (c, ty)) = (Logic.dest_equals o Thm.term_of) head;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   579
  in (typscheme thy (c, ty), head) end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   580
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   581
abstype cert = Cert of thm * bool list with
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   582
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   583
fun empty_cert thy c = 
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   584
  let
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   585
    val raw_ty = const_typ thy c;
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   586
    val tvars = Term.add_tvar_namesT raw_ty [];
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   587
    val tvars' = case AxClass.class_of_param thy c
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   588
     of SOME class => [TFree (Name.aT, [class])]
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   589
      | NONE => Name.invent_list [] Name.aT (length tvars)
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   590
          |> map (fn v => TFree (v, []));
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   591
    val ty = typ_subst_TVars (tvars ~~ tvars') raw_ty;
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   592
    val chead = build_head thy (c, ty);
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   593
  in Cert (Thm.weaken chead Drule.dummy_thm, []) end;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   594
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   595
fun cert_of_eqns thy c [] = empty_cert thy c
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   596
  | cert_of_eqns thy c raw_eqns = 
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   597
      let
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   598
        val eqns = burrow_fst (canonize_thms thy) raw_eqns;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   599
        val _ = map (assert_eqn thy) eqns;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   600
        val (thms, propers) = split_list eqns;
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   601
        val _ = map (fn thm => if c = const_eqn thy thm then ()
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   602
          else error ("Wrong head of code equation,\nexpected constant "
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   603
            ^ string_of_const thy c ^ "\n" ^ Display.string_of_thm_global thy thm)) thms;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   604
        fun tvars_of T = rev (Term.add_tvarsT T []);
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   605
        val vss = map (tvars_of o snd o head_eqn) thms;
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   606
        fun inter_sorts vs =
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   607
          fold (curry (Sorts.inter_sort (Sign.classes_of thy)) o snd) vs [];
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   608
        val sorts = map_transpose inter_sorts vss;
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   609
        val vts = Name.names Name.context Name.aT sorts;
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   610
        val thms as thm :: _ =
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   611
          map2 (fn vs => Thm.certify_instantiate (vs ~~ map TFree vts, [])) vss thms;
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   612
        val head_thm = Thm.symmetric (Thm.assume (build_head thy (head_eqn (hd thms))));
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   613
        fun head_conv ct = if can Thm.dest_comb ct
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   614
          then Conv.fun_conv head_conv ct
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   615
          else Conv.rewr_conv head_thm ct;
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   616
        val rewrite_head = Conv.fconv_rule (Conv.arg1_conv head_conv);
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   617
        val cert_thm = Conjunction.intr_balanced (map rewrite_head thms);
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   618
      in Cert (cert_thm, propers) end;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   619
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   620
fun constrain_cert thy sorts (Cert (cert_thm, propers)) =
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   621
  let
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   622
    val ((vs, _), head) = get_head thy cert_thm;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   623
    val subst = map2 (fn (v, sort) => fn sort' =>
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   624
      (v, Sorts.inter_sort (Sign.classes_of thy) (sort, sort'))) vs sorts;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   625
    val head' = Thm.term_of head
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   626
      |> (map_types o map_atyps)
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   627
          (fn TFree (v, _) => TFree (v, the (AList.lookup (op =) subst v)))
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   628
      |> Thm.cterm_of thy;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   629
    val inst = map2 (fn (v, sort) => fn (_, sort') =>
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   630
      (((v, 0), sort), TFree (v, sort'))) vs subst;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   631
    val cert_thm' = cert_thm
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   632
      |> Thm.implies_intr head
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   633
      |> Thm.varifyT
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   634
      |> Thm.certify_instantiate (inst, [])
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   635
      |> Thm.elim_implies (Thm.assume head');
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   636
  in (Cert (cert_thm', propers)) end;
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   637
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   638
fun typscheme_cert thy (Cert (cert_thm, _)) =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   639
  fst (get_head thy cert_thm);
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   640
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   641
fun equations_cert thy (cert as Cert (cert_thm, propers)) =
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   642
  let
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   643
    val tyscm = typscheme_cert thy cert;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   644
    val equations = if null propers then [] else
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   645
      Thm.prop_of cert_thm
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   646
      |> Logic.dest_conjunction_balanced (length propers)
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   647
      |> map Logic.dest_equals
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   648
      |> (map o apfst) (snd o strip_comb)
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   649
  in (tyscm, equations) end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   650
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   651
fun equations_thms_cert thy (cert as Cert (cert_thm, propers)) =
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   652
  let
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   653
    val (tyscm, equations) = equations_cert thy cert;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   654
    val thms = if null propers then [] else
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   655
      cert_thm
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   656
      |> LocalDefs.expand [snd (get_head thy cert_thm)]
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   657
      |> Thm.varifyT
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   658
      |> Conjunction.elim_balanced (length propers)
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   659
  in (tyscm, equations ~~ (thms ~~ propers)) end;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   660
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   661
fun pretty_cert thy = map (Display.pretty_thm_global thy o AxClass.overload thy o fst o snd)
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   662
  o snd o equations_thms_cert thy;
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   663
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34894
diff changeset
   664
end;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   665
34874
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   666
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   667
(* code equation access *)
89c230bf8feb added code certificates
haftmann
parents: 34272
diff changeset
   668
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   669
fun get_cert thy f c =
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   670
  Symtab.lookup ((the_eqns o the_exec) thy) c
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   671
  |> Option.map (snd o snd o fst)
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   672
  |> these
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   673
  |> (map o apfst) (Thm.transfer thy)
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   674
  |> f
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   675
  |> (map o apfst) (AxClass.unoverload thy)
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34874
diff changeset
   676
  |> cert_of_eqns thy c;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   677
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   678
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   679
(* cases *)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   680
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   681
fun case_certificate thm =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   682
  let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   683
    val ((head, raw_case_expr), cases) = (apfst Logic.dest_equals
32640
ba6531df2c64 corrected order of type variables in code equations; more precise certificate for cases
haftmann
parents: 32544
diff changeset
   684
      o apsnd Logic.dest_conjunctions o Logic.dest_implies o Thm.plain_prop_of) thm;
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   685
    val _ = case head of Free _ => true
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   686
      | Var _ => true
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   687
      | _ => raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   688
    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
   689
    val (Const (case_const, _), raw_params) = strip_comb case_expr;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   690
    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
   691
    val _ = if n = ~1 then raise TERM ("case_cert", []) else ();
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   692
    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
   693
    fun dest_case t =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   694
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   695
        val (head' $ t_co, rhs) = Logic.dest_equals t;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   696
        val _ = if head' = head then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   697
        val (Const (co, _), args) = strip_comb t_co;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   698
        val (Var (param, _), args') = strip_comb rhs;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   699
        val _ = if args' = args then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   700
      in (param, co) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   701
    fun analyze_cases cases =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   702
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   703
        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
   704
      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
   705
    fun analyze_let t =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   706
      let
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   707
        val (head' $ arg, Var (param', _) $ arg') = Logic.dest_equals t;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   708
        val _ = if head' = head then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   709
        val _ = if arg' = arg then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   710
        val _ = if [param'] = params then () else raise TERM ("case_cert", []);
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   711
      in [] end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   712
    fun analyze (cases as [let_case]) =
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   713
          (analyze_cases cases handle Bind => analyze_let let_case)
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   714
      | analyze cases = analyze_cases cases;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   715
  in (case_const, (n, analyze cases)) end;
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   716
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   717
fun case_cert thm = case_certificate thm
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   718
  handle Bind => error "bad case certificate"
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   719
       | TERM _ => error "bad case certificate";
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   720
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   721
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
   722
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   723
val undefineds = Symtab.keys o snd o the_cases o the_exec;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   724
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   725
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   726
(* diagnostic *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   727
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   728
fun print_codesetup thy =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   729
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   730
    val ctxt = ProofContext.init thy;
24844
98c006a30218 certificates for code generator case expressions
haftmann
parents: 24837
diff changeset
   731
    val exec = the_exec thy;
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   732
    fun pretty_eqns (s, (_, eqns)) =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   733
      (Pretty.block o Pretty.fbreaks) (
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   734
        Pretty.str s :: map (Display.pretty_thm ctxt o fst) eqns
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   735
      );
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   736
    fun pretty_dtyp (s, []) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   737
          Pretty.str s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   738
      | pretty_dtyp (s, cos) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   739
          (Pretty.block o Pretty.breaks) (
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   740
            Pretty.str s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   741
            :: Pretty.str "="
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   742
            :: 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
   743
                 | (c, tys) =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   744
                     (Pretty.block o Pretty.breaks)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   745
                        (Pretty.str (string_of_const thy c)
26947
133905a0c493 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26928
diff changeset
   746
                          :: Pretty.str "of"
133905a0c493 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26928
diff changeset
   747
                          :: map (Pretty.quote o Syntax.pretty_typ_global thy) tys)) cos)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   748
          );
28368
8437fb395294 clarified function transformator interface
haftmann
parents: 28359
diff changeset
   749
    val eqns = the_eqns exec
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24283
diff changeset
   750
      |> Symtab.dest
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31152
diff changeset
   751
      |> (map o apfst) (string_of_const thy)
28695
f7a06d7284c8 explicit history for equations; tuned
haftmann
parents: 28673
diff changeset
   752
      |> (map o apsnd) (snd o fst)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   753
      |> sort (string_ord o pairself fst);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   754
    val dtyps = the_dtyps exec
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   755
      |> Symtab.dest
28695
f7a06d7284c8 explicit history for equations; tuned
haftmann
parents: 28673
diff changeset
   756
      |> map (fn (dtco, (_, (vs, cos)) :: _) =>
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31890
diff changeset
   757
          (string_of_typ thy (Type (dtco, map TFree vs)), cos))
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   758
      |> sort (string_ord o pairself fst)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   759
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   760
    (Pretty.writeln o Pretty.chunks) [
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   761
      Pretty.block (
30023
55954f726043 permissive check for pattern discipline in case schemes
haftmann
parents: 29970
diff changeset
   762
        Pretty.str "code equations:"
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   763
        :: Pretty.fbrk
33006
cda9a931a46b dropped lazy code equations
haftmann
parents: 32966
diff changeset
   764
        :: (Pretty.fbreaks o map pretty_eqns) eqns
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   765
      ),
25968
66cfe1d00be0 print postprocessor equations
haftmann
parents: 25597
diff changeset
   766
      Pretty.block (
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   767
        Pretty.str "datatypes:"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   768
        :: Pretty.fbrk
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   769
        :: (Pretty.fbreaks o map pretty_dtyp) dtyps
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   770
      )
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   771
    ]
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   772
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   773
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   774
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   775
(** declaring executable ingredients **)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   776
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   777
(* constant signatures *)
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   778
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   779
fun add_type tyco thy =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   780
  case Symtab.lookup ((snd o #types o Type.rep_tsig o Sign.tsig_of) thy) tyco
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   781
   of SOME (Type.Abbreviation (vs, _, _)) =>
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   782
          (map_exec_purge o map_signatures o apfst)
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   783
            (Symtab.update (tyco, length vs)) thy
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   784
    | _ => error ("No such type abbreviation: " ^ quote tyco);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   785
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   786
fun add_type_cmd s thy = add_type (Sign.intern_type thy s) thy;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   787
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   788
fun gen_add_signature prep_const prep_signature (raw_c, raw_ty) thy =
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   789
  let
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   790
    val c = prep_const thy raw_c;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   791
    val ty = prep_signature thy raw_ty;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   792
    val ty' = expand_signature thy ty;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   793
    val ty'' = Sign.the_const_type thy c;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   794
    val _ = if typ_equiv (ty', ty'') then () else
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   795
      error ("Illegal constant signature: " ^ Syntax.string_of_typ_global thy ty);
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   796
  in
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   797
    thy
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   798
    |> (map_exec_purge o map_signatures o apsnd) (Symtab.update (c, ty))
33940
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   799
  end;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   800
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   801
val add_signature = gen_add_signature (K I) cert_signature;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   802
val add_signature_cmd = gen_add_signature read_const read_signature;
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   803
317933ce3712 crude support for type aliasses and corresponding constant signatures
haftmann
parents: 33756
diff changeset
   804
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   805
(* code equations *)
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   806
33075
f654dafa021e close thm derivations explicitly
haftmann
parents: 33006
diff changeset
   807
fun gen_add_eqn default (thm, proper) thy =
f654dafa021e close thm derivations explicitly
haftmann
parents: 33006
diff changeset
   808
  let
f654dafa021e close thm derivations explicitly
haftmann
parents: 33006
diff changeset
   809
    val thm' = Thm.close_derivation thm;
f654dafa021e close thm derivations explicitly
haftmann
parents: 33006
diff changeset
   810
    val c = const_eqn thy thm';
f654dafa021e close thm derivations explicitly
haftmann
parents: 33006
diff changeset
   811
  in change_eqns false c (add_thm thy default (thm', proper)) thy end;
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   812
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   813
fun add_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   814
  gen_add_eqn false (mk_eqn thy (thm, true)) thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   815
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   816
fun add_warning_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   817
  case mk_eqn_warning thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   818
   of SOME eqn => gen_add_eqn false eqn thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   819
    | NONE => thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   820
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   821
fun add_default_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   822
  case mk_eqn_liberal thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   823
   of SOME eqn => gen_add_eqn true eqn thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   824
    | NONE => thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   825
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   826
fun add_nbe_eqn thm thy =
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   827
  gen_add_eqn false (mk_eqn thy (thm, false)) thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   828
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   829
val add_default_eqn_attribute = Thm.declaration_attribute
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   830
  (fn thm => Context.mapping (add_default_eqn thm) I);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   831
val add_default_eqn_attrib = Attrib.internal (K add_default_eqn_attribute);
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   832
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   833
fun del_eqn thm thy = case mk_eqn_liberal thy thm
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   834
 of SOME (thm, _) => change_eqns true (const_eqn thy thm) (del_thm thm) thy
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   835
  | NONE => thy;
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   836
34244
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   837
fun del_eqns c = change_eqns true c (K (false, []));
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   838
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   839
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   840
(* cases *)
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   841
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   842
fun add_case thm thy =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   843
  let
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   844
    val (c, (k, case_pats)) = case_cert thm;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   845
    val _ = case filter_out (is_constr thy) case_pats
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   846
     of [] => ()
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   847
      | cs => error ("Non-constructor(s) in case certificate: " ^ commas (map quote cs));
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   848
    val entry = (1 + Int.max (1, length case_pats), (k, case_pats))
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   849
  in (map_exec_purge o map_cases o apfst) (Symtab.update (c, entry)) thy end;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   850
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   851
fun add_undefined c thy =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   852
  (map_exec_purge o map_cases o apsnd) (Symtab.update (c, ())) thy;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   853
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   854
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   855
(* datatypes *)
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   856
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   857
structure Type_Interpretation =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   858
  Interpretation(type T = string * serial val eq = eq_snd (op =) : T * T -> bool);
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   859
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   860
fun add_datatype raw_cs thy =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   861
  let
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   862
    val cs = map (fn c_ty as (_, ty) => (AxClass.unoverload_const thy c_ty, ty)) raw_cs;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   863
    val (tyco, vs_cos) = constrset_of_consts thy cs;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   864
    val old_cs = (map fst o snd o get_datatype thy) tyco;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   865
    fun drop_outdated_cases cases = fold Symtab.delete_safe
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   866
      (Symtab.fold (fn (c, (_, (_, cos))) =>
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   867
        if exists (member (op =) old_cs) cos
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   868
          then insert (op =) c else I) cases []) cases;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   869
  in
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   870
    thy
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   871
    |> fold (del_eqns o fst) cs
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   872
    |> map_exec_purge
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   873
        ((map_dtyps o Symtab.map_default (tyco, [])) (cons (serial (), vs_cos))
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   874
        #> (map_cases o apfst) drop_outdated_cases)
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   875
    |> Type_Interpretation.data (tyco, serial ())
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   876
  end;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   877
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   878
fun type_interpretation f =  Type_Interpretation.interpretation
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   879
  (fn (tyco, _) => fn thy => f (tyco, get_datatype thy tyco) thy);
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   880
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   881
fun add_datatype_cmd raw_cs thy =
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   882
  let
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   883
    val cs = map (read_bare_const thy) raw_cs;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   884
  in add_datatype cs thy end;
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   885
03f8dcab55f3 code cache without copy; tuned
haftmann
parents: 34184
diff changeset
   886
32070
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   887
(* c.f. src/HOL/Tools/recfun_codegen.ML *)
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   888
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   889
structure Code_Target_Attr = Theory_Data
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   890
(
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   891
  type T = (string -> thm -> theory -> theory) option;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   892
  val empty = NONE;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   893
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33519
diff changeset
   894
  fun merge (f1, f2) = if is_some f1 then f1 else f2;
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   895
);
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   896
32070
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   897
fun set_code_target_attr f = Code_Target_Attr.map (K (SOME f));
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   898
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   899
fun code_target_attr prefix thm thy =
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   900
  let
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   901
    val attr = the_default ((K o K) I) (Code_Target_Attr.get thy);
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   902
  in thy |> add_warning_eqn thm |> attr prefix thm end;
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   903
(* setup *)
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   904
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   905
val _ = Context.>> (Context.map_theory
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   906
  (let
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   907
    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
   908
    val code_attribute_parser =
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   909
      Args.del |-- Scan.succeed (mk_attribute del_eqn)
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   910
      || Args.$$$ "nbe" |-- Scan.succeed (mk_attribute add_nbe_eqn)
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   911
      || (Args.$$$ "target" |-- Args.colon |-- Args.name >>
32070
c670a31c964c clarified code
haftmann
parents: 31998
diff changeset
   912
           (mk_attribute o code_target_attr))
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   913
      || Scan.succeed (mk_attribute add_warning_eqn);
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   914
  in
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   915
    Type_Interpretation.init
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   916
    #> Attrib.setup (Binding.name "code") (Scan.lift code_attribute_parser)
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31971
diff changeset
   917
        "declare theorems for code generation"
31962
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   918
  end));
baa8dce5bc45 tuned structure Code internally
haftmann
parents: 31957
diff changeset
   919
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   920
end; (*struct*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   921
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   922
32661
f4d179d91af2 experimenting to add some useful interface for definitions
bulwahn
parents: 32640
diff changeset
   923
(** type-safe interfaces for data dependent on executable code **)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   924
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   925
functor Code_Data(Data: CODE_DATA_ARGS): CODE_DATA =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   926
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   927
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   928
type T = Data.T;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   929
exception Data of T;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   930
fun dest (Data x) = x
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   931
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33977
diff changeset
   932
val kind = Code.declare_data (Data Data.empty);
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   933
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   934
val data_op = (kind, Data, dest);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   935
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   936
val change = Code.change_data data_op;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   937
fun change_yield thy = Code.change_yield_data data_op thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   938
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   939
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   940
28143
e5c6c4aac52c different bookkeeping for code equations
haftmann
parents: 28054
diff changeset
   941
structure Code : CODE = struct open Code; end;