src/Tools/Code/code_preproc.ML
author wenzelm
Mon, 03 May 2010 14:25:56 +0200
changeset 36610 bafd82950e24
parent 36102 a51d1d154c71
child 36960 01594f816e3a
permissions -rw-r--r--
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
     1
(*  Title:      Tools/code/code_preproc.ML
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
     3
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
     4
Preprocessing code equations into a well-sorted system
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
     5
in a graph with explicit dependencies.
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
     6
*)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
     7
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
     8
signature CODE_PREPROC =
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
     9
sig
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    10
  val map_pre: (simpset -> simpset) -> theory -> theory
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    11
  val map_post: (simpset -> simpset) -> theory -> theory
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    12
  val add_unfold: thm -> theory -> theory
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    13
  val add_functrans: string * (theory -> (thm * bool) list -> (thm * bool) list option) -> theory -> theory
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    14
  val del_functrans: string -> theory -> theory
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    15
  val simple_functrans: (theory -> thm list -> thm list option)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    16
    -> theory -> (thm * bool) list -> (thm * bool) list option
34893
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
    17
  val preprocess_functrans: theory -> (thm * bool) list -> (thm * bool) list
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    18
  val print_codeproc: theory -> unit
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    19
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    20
  type code_algebra
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    21
  type code_graph
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
    22
  val cert: code_graph -> string -> Code.cert
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
    23
  val sortargs: code_graph -> string -> sort list
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    24
  val all: code_graph -> string list
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    25
  val pretty: theory -> code_graph -> Pretty.T
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    26
  val obtain: theory -> string list -> term list -> code_algebra * code_graph
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 32072
diff changeset
    27
  val eval_conv: theory
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    28
    -> (code_algebra -> code_graph -> (string * sort) list -> term -> cterm -> thm) -> cterm -> thm
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 32072
diff changeset
    29
  val eval: theory -> ((term -> term) -> 'a -> 'a)
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
    30
    -> (code_algebra -> code_graph -> (string * sort) list -> term -> 'a) -> term -> 'a
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    31
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    32
  val setup: theory -> theory
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
    33
end
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
    34
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    35
structure Code_Preproc : CODE_PREPROC =
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
    36
struct
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
    37
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    38
(** preprocessor administration **)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    39
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    40
(* theory data *)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    41
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    42
datatype thmproc = Thmproc of {
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    43
  pre: simpset,
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    44
  post: simpset,
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    45
  functrans: (string * (serial * (theory -> (thm * bool) list -> (thm * bool) list option))) list
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    46
};
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    47
31599
97b4d289c646 tuned make/map/merge combinators
haftmann
parents: 31156
diff changeset
    48
fun make_thmproc ((pre, post), functrans) =
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    49
  Thmproc { pre = pre, post = post, functrans = functrans };
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    50
fun map_thmproc f (Thmproc { pre, post, functrans }) =
31599
97b4d289c646 tuned make/map/merge combinators
haftmann
parents: 31156
diff changeset
    51
  make_thmproc (f ((pre, post), functrans));
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    52
fun merge_thmproc (Thmproc { pre = pre1, post = post1, functrans = functrans1 },
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    53
  Thmproc { pre = pre2, post = post2, functrans = functrans2 }) =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    54
    let
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    55
      val pre = Simplifier.merge_ss (pre1, pre2);
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    56
      val post = Simplifier.merge_ss (post1, post2);
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
    57
      val functrans = AList.merge (op =) (eq_fst (op =)) (functrans1, functrans2)
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
    58
        handle AList.DUP => error ("Duplicate function transformer");
31599
97b4d289c646 tuned make/map/merge combinators
haftmann
parents: 31156
diff changeset
    59
    in make_thmproc ((pre, post), functrans) end;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    60
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33063
diff changeset
    61
structure Code_Preproc_Data = Theory_Data
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    62
(
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    63
  type T = thmproc;
31599
97b4d289c646 tuned make/map/merge combinators
haftmann
parents: 31156
diff changeset
    64
  val empty = make_thmproc ((Simplifier.empty_ss, Simplifier.empty_ss), []);
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33063
diff changeset
    65
  val extend = I;
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33063
diff changeset
    66
  val merge = merge_thmproc;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    67
);
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    68
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    69
fun the_thmproc thy = case Code_Preproc_Data.get thy
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    70
 of Thmproc x => x;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    71
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    72
fun delete_force msg key xs =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    73
  if AList.defined (op =) xs key then AList.delete (op =) key xs
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    74
  else error ("No such " ^ msg ^ ": " ^ quote key);
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    75
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32353
diff changeset
    76
fun map_data f = Code.purge_data
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32353
diff changeset
    77
  #> (Code_Preproc_Data.map o map_thmproc) f;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    78
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    79
val map_pre_post = map_data o apfst;
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    80
val map_pre = map_pre_post o apfst;
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    81
val map_post = map_pre_post o apsnd;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    82
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    83
val add_unfold = map_pre o MetaSimplifier.add_simp;
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    84
val del_unfold = map_pre o MetaSimplifier.del_simp;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    85
val add_post = map_post o MetaSimplifier.add_simp;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    86
val del_post = map_post o MetaSimplifier.del_simp;
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    87
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    88
fun add_unfold_post raw_thm thy =
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    89
  let
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36102
diff changeset
    90
    val thm = Local_Defs.meta_rewrite_rule (ProofContext.init_global thy) raw_thm;
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    91
    val thm_sym = Thm.symmetric thm;
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    92
  in
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    93
    thy |> map_pre_post (fn (pre, post) =>
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    94
      (pre |> MetaSimplifier.add_simp thm, post |> MetaSimplifier.del_simp thm_sym))
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    95
  end;
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
    96
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    97
fun add_functrans (name, f) = (map_data o apsnd)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    98
  (AList.update (op =) (name, (serial (), f)));
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
    99
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   100
fun del_functrans name = (map_data o apsnd)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   101
  (delete_force "function transformer" name);
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   102
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   103
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   104
(* post- and preprocessing *)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   105
33942
haftmann
parents: 33699
diff changeset
   106
fun trans_conv_rule conv thm = Thm.transitive thm ((conv o Thm.rhs_of) thm);
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   107
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   108
fun eqn_conv conv ct =
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   109
  let
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   110
    fun lhs_conv ct = if can Thm.dest_comb ct
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   111
      then Conv.combination_conv lhs_conv conv ct
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   112
      else Conv.all_conv ct;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   113
  in Conv.combination_conv (Conv.arg_conv lhs_conv) conv ct end;
31957
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   114
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   115
val rewrite_eqn = Conv.fconv_rule o eqn_conv o Simplifier.rewrite;
a9742afd403e tuned interface of structure Code
haftmann
parents: 31775
diff changeset
   116
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   117
fun term_of_conv thy f =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   118
  Thm.cterm_of thy
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   119
  #> f
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   120
  #> Thm.prop_of
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   121
  #> Logic.dest_equals
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   122
  #> snd;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   123
34893
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   124
fun preprocess_functrans thy = 
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   125
  let
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   126
    val functrans = (map (fn (_, (_, f)) => f thy) o #functrans
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   127
      o the_thmproc) thy;
34893
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   128
  in perhaps (perhaps_loop (perhaps_apply functrans)) end;
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   129
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   130
fun preprocess thy =
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   131
  let
35232
f588e1169c8b renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents: 34895
diff changeset
   132
    val pre = (Simplifier.global_context thy o #pre o the_thmproc) thy;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   133
  in
34893
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   134
    preprocess_functrans thy
ecdc526af73a function transformer preprocessor applies to both code generators
haftmann
parents: 34891
diff changeset
   135
    #> (map o apfst) (rewrite_eqn pre)
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   136
  end;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   137
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   138
fun preprocess_conv thy ct =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   139
  let
35232
f588e1169c8b renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents: 34895
diff changeset
   140
    val pre = (Simplifier.global_context thy o #pre o the_thmproc) thy;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   141
  in
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   142
    ct
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   143
    |> Simplifier.rewrite pre
33942
haftmann
parents: 33699
diff changeset
   144
    |> trans_conv_rule (AxClass.unoverload_conv thy)
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   145
  end;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   146
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   147
fun postprocess_conv thy ct =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   148
  let
35232
f588e1169c8b renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
wenzelm
parents: 34895
diff changeset
   149
    val post = (Simplifier.global_context thy o #post o the_thmproc) thy;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   150
  in
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   151
    ct
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   152
    |> AxClass.overload_conv thy
33942
haftmann
parents: 33699
diff changeset
   153
    |> trans_conv_rule (Simplifier.rewrite post)
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   154
  end;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   155
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32353
diff changeset
   156
fun postprocess_term thy = term_of_conv thy (postprocess_conv thy);
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   157
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   158
fun print_codeproc thy =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   159
  let
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36102
diff changeset
   160
    val ctxt = ProofContext.init_global thy;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   161
    val pre = (#pre o the_thmproc) thy;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   162
    val post = (#post o the_thmproc) thy;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   163
    val functrans = (map fst o #functrans o the_thmproc) thy;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   164
  in
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   165
    (Pretty.writeln o Pretty.chunks) [
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   166
      Pretty.block [
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   167
        Pretty.str "preprocessing simpset:",
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   168
        Pretty.fbrk,
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   169
        Simplifier.pretty_ss ctxt pre
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   170
      ],
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   171
      Pretty.block [
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   172
        Pretty.str "postprocessing simpset:",
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   173
        Pretty.fbrk,
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   174
        Simplifier.pretty_ss ctxt post
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   175
      ],
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   176
      Pretty.block (
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   177
        Pretty.str "function transformers:"
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   178
        :: Pretty.fbrk
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   179
        :: (Pretty.fbreaks o map Pretty.str) functrans
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   180
      )
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   181
    ]
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   182
  end;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   183
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   184
fun simple_functrans f thy eqns = case f thy (map fst eqns)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   185
 of SOME thms' => SOME (map (rpair (forall snd eqns)) thms')
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   186
  | NONE => NONE;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   187
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   188
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   189
(** sort algebra and code equation graph types **)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   190
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   191
type code_algebra = (sort -> sort) * Sorts.algebra;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   192
type code_graph = ((string * sort) list * Code.cert) Graph.T;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   193
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   194
fun cert eqngr = snd o Graph.get_node eqngr;
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   195
fun sortargs eqngr = map snd o fst o Graph.get_node eqngr;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   196
fun all eqngr = Graph.keys eqngr;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   197
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   198
fun pretty thy eqngr =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   199
  AList.make (snd o Graph.get_node eqngr) (Graph.keys eqngr)
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31125
diff changeset
   200
  |> (map o apfst) (Code.string_of_const thy)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   201
  |> sort (string_ord o pairself fst)
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34893
diff changeset
   202
  |> map (fn (s, cert) => (Pretty.block o Pretty.fbreaks) (Pretty.str s :: Code.pretty_cert thy cert))
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   203
  |> Pretty.chunks;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   204
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   205
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   206
(** the Waisenhaus algorithm **)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   207
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   208
(* auxiliary *)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   209
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   210
fun is_proper_class thy = can (AxClass.get_info thy);
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   211
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   212
fun complete_proper_sort thy =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   213
  Sign.complete_sort thy #> filter (is_proper_class thy);
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   214
30029
d14d0b4bf5b4 also consider superclasses properly
haftmann
parents: 30024
diff changeset
   215
fun inst_params thy tyco =
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   216
  map (fn (c, _) => AxClass.param_of_inst thy (c, tyco))
30029
d14d0b4bf5b4 also consider superclasses properly
haftmann
parents: 30024
diff changeset
   217
    o maps (#params o AxClass.get_info thy);
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   218
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   219
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   220
(* data structures *)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   221
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   222
datatype const = Fun of string | Inst of class * string;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   223
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   224
fun const_ord (Fun c1, Fun c2) = fast_string_ord (c1, c2)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   225
  | const_ord (Inst class_tyco1, Inst class_tyco2) =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   226
      prod_ord fast_string_ord fast_string_ord (class_tyco1, class_tyco2)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   227
  | const_ord (Fun _, Inst _) = LESS
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   228
  | const_ord (Inst _, Fun _) = GREATER;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   229
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   230
type var = const * int;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   231
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   232
structure Vargraph =
31971
8c1b845ed105 renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents: 31962
diff changeset
   233
  Graph(type key = var val ord = prod_ord const_ord int_ord);
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   234
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   235
datatype styp = Tyco of string * styp list | Var of var | Free;
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   236
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   237
fun styp_of c_lhs (Type (tyco, tys)) = Tyco (tyco, map (styp_of c_lhs) tys)
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   238
  | styp_of c_lhs (TFree (v, _)) = case c_lhs
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   239
     of SOME (c, lhs) => Var (Fun c, find_index (fn (v', _) => v = v') lhs)
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   240
      | NONE => Free;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   241
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   242
type vardeps_data = ((string * styp list) list * class list) Vargraph.T
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   243
  * (((string * sort) list * Code.cert) Symtab.table
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   244
    * (class * string) list);
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   245
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   246
val empty_vardeps_data : vardeps_data =
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   247
  (Vargraph.empty, (Symtab.empty, []));
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   248
30876
613c2eb8aef6 tuned whitespace
haftmann
parents: 30769
diff changeset
   249
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   250
(* retrieving equations and instances from the background context *)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   251
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   252
fun obtain_eqns thy eqngr c =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   253
  case try (Graph.get_node eqngr) c
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   254
   of SOME (lhs, cert) => ((lhs, []), cert)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   255
    | NONE => let
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   256
        val cert = Code.get_cert thy (preprocess thy) c;
35224
1c9866c5f6fb simplified
haftmann
parents: 34895
diff changeset
   257
        val (lhs, rhss) = Code.typargs_deps_of_cert thy cert;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   258
      in ((lhs, rhss), cert) end;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   259
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   260
fun obtain_instance thy arities (inst as (class, tyco)) =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   261
  case AList.lookup (op =) arities inst
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   262
   of SOME classess => (classess, ([], []))
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   263
    | NONE => let
30029
d14d0b4bf5b4 also consider superclasses properly
haftmann
parents: 30024
diff changeset
   264
        val all_classes = complete_proper_sort thy [class];
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   265
        val superclasses = remove (op =) class all_classes;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   266
        val classess = map (complete_proper_sort thy)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   267
          (Sign.arity_sorts thy tyco [class]);
30029
d14d0b4bf5b4 also consider superclasses properly
haftmann
parents: 30024
diff changeset
   268
        val inst_params = inst_params thy tyco all_classes;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   269
      in (classess, (superclasses, inst_params)) end;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   270
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   271
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   272
(* computing instantiations *)
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   273
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   274
fun add_classes thy arities eqngr c_k new_classes vardeps_data =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   275
  let
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   276
    val (styps, old_classes) = Vargraph.get_node (fst vardeps_data) c_k;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   277
    val diff_classes = new_classes |> subtract (op =) old_classes;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   278
  in if null diff_classes then vardeps_data
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   279
  else let
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   280
    val c_ks = Vargraph.imm_succs (fst vardeps_data) c_k |> insert (op =) c_k;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   281
  in
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   282
    vardeps_data
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   283
    |> (apfst o Vargraph.map_node c_k o apsnd) (append diff_classes)
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   284
    |> fold (fn styp => fold (ensure_typmatch_inst thy arities eqngr styp) new_classes) styps
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   285
    |> fold (fn c_k => add_classes thy arities eqngr c_k diff_classes) c_ks
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   286
  end end
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   287
and add_styp thy arities eqngr c_k tyco_styps vardeps_data =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   288
  let
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   289
    val (old_styps, classes) = Vargraph.get_node (fst vardeps_data) c_k;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   290
  in if member (op =) old_styps tyco_styps then vardeps_data
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   291
  else
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   292
    vardeps_data
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   293
    |> (apfst o Vargraph.map_node c_k o apfst) (cons tyco_styps)
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   294
    |> fold (ensure_typmatch_inst thy arities eqngr tyco_styps) classes
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   295
  end
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   296
and add_dep thy arities eqngr c_k c_k' vardeps_data =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   297
  let
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   298
    val (_, classes) = Vargraph.get_node (fst vardeps_data) c_k;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   299
  in
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   300
    vardeps_data
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   301
    |> add_classes thy arities eqngr c_k' classes
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   302
    |> apfst (Vargraph.add_edge (c_k, c_k'))
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   303
  end
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   304
and ensure_typmatch_inst thy arities eqngr (tyco, styps) class vardeps_data =
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   305
  if can (Sign.arity_sorts thy tyco) [class]
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   306
  then vardeps_data
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   307
    |> ensure_inst thy arities eqngr (class, tyco)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   308
    |> fold_index (fn (k, styp) =>
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   309
         ensure_typmatch thy arities eqngr styp (Inst (class, tyco), k)) styps
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   310
  else vardeps_data (*permissive!*)
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   311
and ensure_inst thy arities eqngr (inst as (class, tyco)) (vardeps_data as (_, (_, insts))) =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   312
  if member (op =) insts inst then vardeps_data
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   313
  else let
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   314
    val (classess, (superclasses, inst_params)) =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   315
      obtain_instance thy arities inst;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   316
  in
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   317
    vardeps_data
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   318
    |> (apsnd o apsnd) (insert (op =) inst)
30083
41a20af1fb77 robustified
haftmann
parents: 30075
diff changeset
   319
    |> fold_index (fn (k, _) =>
41a20af1fb77 robustified
haftmann
parents: 30075
diff changeset
   320
         apfst (Vargraph.new_node ((Inst (class, tyco), k), ([] ,[])))) classess
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   321
    |> fold (fn superclass => ensure_inst thy arities eqngr (superclass, tyco)) superclasses
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   322
    |> fold (ensure_fun thy arities eqngr) inst_params
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   323
    |> fold_index (fn (k, classes) =>
30075
ff5b4900d9a5 repaired order of variable node allocation
haftmann
parents: 30064
diff changeset
   324
         add_classes thy arities eqngr (Inst (class, tyco), k) classes
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   325
         #> fold (fn superclass =>
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   326
             add_dep thy arities eqngr (Inst (superclass, tyco), k)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   327
             (Inst (class, tyco), k)) superclasses
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   328
         #> fold (fn inst_param =>
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   329
             add_dep thy arities eqngr (Fun inst_param, k)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   330
             (Inst (class, tyco), k)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   331
             ) inst_params
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   332
         ) classess
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   333
  end
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   334
and ensure_typmatch thy arities eqngr (Tyco tyco_styps) c_k vardeps_data =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   335
      vardeps_data
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   336
      |> add_styp thy arities eqngr c_k tyco_styps
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   337
  | ensure_typmatch thy arities eqngr (Var c_k') c_k vardeps_data =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   338
      vardeps_data
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   339
      |> add_dep thy arities eqngr c_k c_k'
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   340
  | ensure_typmatch thy arities eqngr Free c_k vardeps_data =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   341
      vardeps_data
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   342
and ensure_rhs thy arities eqngr (c', styps) vardeps_data =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   343
  vardeps_data
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   344
  |> ensure_fun thy arities eqngr c'
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   345
  |> fold_index (fn (k, styp) =>
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   346
       ensure_typmatch thy arities eqngr styp (Fun c', k)) styps
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   347
and ensure_fun thy arities eqngr c (vardeps_data as (_, (eqntab, _))) =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   348
  if Symtab.defined eqntab c then vardeps_data
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   349
  else let
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   350
    val ((lhs, rhss), eqns) = obtain_eqns thy eqngr c;
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   351
    val rhss' = (map o apsnd o map) (styp_of (SOME (c, lhs))) rhss;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   352
  in
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   353
    vardeps_data
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   354
    |> (apsnd o apfst) (Symtab.update_new (c, (lhs, eqns)))
30083
41a20af1fb77 robustified
haftmann
parents: 30075
diff changeset
   355
    |> fold_index (fn (k, _) =>
41a20af1fb77 robustified
haftmann
parents: 30075
diff changeset
   356
         apfst (Vargraph.new_node ((Fun c, k), ([] ,[])))) lhs
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   357
    |> fold_index (fn (k, (_, sort)) =>
30083
41a20af1fb77 robustified
haftmann
parents: 30075
diff changeset
   358
         add_classes thy arities eqngr (Fun c, k) (complete_proper_sort thy sort)) lhs
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   359
    |> fold (ensure_rhs thy arities eqngr) rhss'
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   360
  end;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   361
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   362
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   363
(* applying instantiations *)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   364
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   365
fun dicts_of thy (proj_sort, algebra) (T, sort) =
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   366
  let
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   367
    fun class_relation (x, _) _ = x;
36102
a51d1d154c71 of_sort_derivation: pass-through full type information -- following the version by krauss/schropp;
wenzelm
parents: 35624
diff changeset
   368
    fun type_constructor (tyco, _) xs class =
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   369
      inst_params thy tyco (Sorts.complete_sort algebra [class])
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   370
        @ (maps o maps) fst xs;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   371
    fun type_variable (TFree (_, sort)) = map (pair []) (proj_sort sort);
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   372
  in
32795
a0f38d8d633a Sorts.of_sort_derivation: no pp here;
wenzelm
parents: 32544
diff changeset
   373
    flat (Sorts.of_sort_derivation algebra
36102
a51d1d154c71 of_sort_derivation: pass-through full type information -- following the version by krauss/schropp;
wenzelm
parents: 35624
diff changeset
   374
      { class_relation = K class_relation, type_constructor = type_constructor,
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   375
        type_variable = type_variable } (T, proj_sort sort)
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   376
       handle Sorts.CLASS_ERROR _ => [] (*permissive!*))
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   377
  end;
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   378
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   379
fun add_arity thy vardeps (class, tyco) =
33063
4d462963a7db map_range (and map_index) combinator
haftmann
parents: 32873
diff changeset
   380
  AList.default (op =) ((class, tyco),
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   381
    map_range (fn k => (snd o Vargraph.get_node vardeps) (Inst (class, tyco), k))
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   382
      (Sign.arity_number thy tyco));
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   383
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   384
fun add_cert thy vardeps (c, (proto_lhs, proto_cert)) (rhss, eqngr) =
30058
f84c2412e870 more liberality needed
haftmann
parents: 30054
diff changeset
   385
  if can (Graph.get_node eqngr) c then (rhss, eqngr)
f84c2412e870 more liberality needed
haftmann
parents: 30054
diff changeset
   386
  else let
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   387
    val lhs = map_index (fn (k, (v, _)) =>
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   388
      (v, snd (Vargraph.get_node vardeps (Fun c, k)))) proto_lhs;
34895
19fd499cddff explicit abstract type of code certificates
haftmann
parents: 34893
diff changeset
   389
    val cert = Code.constrain_cert thy (map snd lhs) proto_cert;
35224
1c9866c5f6fb simplified
haftmann
parents: 34895
diff changeset
   390
    val (vs, rhss') = Code.typargs_deps_of_cert thy cert;
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   391
    val eqngr' = Graph.new_node (c, (vs, cert)) eqngr;
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   392
  in (map (pair c) rhss' @ rhss, eqngr') end;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   393
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   394
fun extend_arities_eqngr thy cs ts (arities, (eqngr : code_graph)) =
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   395
  let
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   396
    val cs_rhss = (fold o fold_aterms) (fn Const (c_ty as (c, _)) =>
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   397
      insert (op =) (c, (map (styp_of NONE) o Sign.const_typargs thy) c_ty) | _ => I) ts [];
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   398
    val (vardeps, (eqntab, insts)) = empty_vardeps_data
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   399
      |> fold (ensure_fun thy arities eqngr) cs
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   400
      |> fold (ensure_rhs thy arities eqngr) cs_rhss;
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   401
    val arities' = fold (add_arity thy vardeps) insts arities;
30064
3cd19b113854 use canonical subalgebra projection
haftmann
parents: 30061
diff changeset
   402
    val pp = Syntax.pp_global thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   403
    val algebra = Sorts.subalgebra pp (is_proper_class thy)
30064
3cd19b113854 use canonical subalgebra projection
haftmann
parents: 30061
diff changeset
   404
      (AList.lookup (op =) arities') (Sign.classes_of thy);
34891
99b9a6290446 code certificates as integral part of code generation
haftmann
parents: 34251
diff changeset
   405
    val (rhss, eqngr') = Symtab.fold (add_cert thy vardeps) eqntab ([], eqngr);
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   406
    fun deps_of (c, rhs) = c :: maps (dicts_of thy algebra)
32873
333945c9ac6a tuned handling of type variable names further
haftmann
parents: 32872
diff changeset
   407
      (rhs ~~ sortargs eqngr' c);
30054
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   408
    val eqngr'' = fold (fn (c, rhs) => fold
36d7d337510e simplified evaluation
haftmann
parents: 30050
diff changeset
   409
      (curry Graph.add_edge c) (deps_of rhs)) rhss eqngr';
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   410
  in (algebra, (arities', eqngr'')) end;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   411
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   412
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   413
(** store for preprocessed arities and code equations **)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   414
34173
458ced35abb8 reduced code generator cache to the baremost minimum
haftmann
parents: 33942
diff changeset
   415
structure Wellsorted = Code_Data
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   416
(
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   417
  type T = ((string * class) * sort list) list * code_graph;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   418
  val empty = ([], Graph.empty);
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   419
);
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   420
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   421
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   422
(** retrieval and evaluation interfaces **)
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   423
34251
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   424
fun obtain thy cs ts = apsnd snd
cd642bb91f64 code cache only persists on equal theories
haftmann
parents: 34244
diff changeset
   425
  (Wellsorted.change_yield thy (extend_arities_eqngr thy cs ts));
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   426
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 32072
diff changeset
   427
fun gen_eval thy cterm_of conclude_evaluation evaluator proto_ct =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   428
  let
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31036
diff changeset
   429
    val pp = Syntax.pp_global thy;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   430
    val ct = cterm_of proto_ct;
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31036
diff changeset
   431
    val _ = (Sign.no_frees pp o map_types (K dummyT) o Sign.no_vars pp)
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   432
      (Thm.term_of ct);
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   433
    val thm = preprocess_conv thy ct;
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   434
    val ct' = Thm.rhs_of thm;
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   435
    val t' = Thm.term_of ct';
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   436
    val vs = Term.add_tfrees t' [];
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   437
    val consts = fold_aterms
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   438
      (fn Const (c, _) => insert (op =) c | _ => I) t' [];
32544
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32353
diff changeset
   439
    val (algebra', eqngr') = obtain thy consts [t'];
e129333b9df0 moved eq handling in nbe into separate oracle
haftmann
parents: 32353
diff changeset
   440
  in conclude_evaluation (evaluator algebra' eqngr' vs t' ct') thm end;
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   441
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   442
fun simple_evaluator evaluator algebra eqngr vs t ct =
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   443
  evaluator algebra eqngr vs t;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   444
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   445
fun eval_conv thy =
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   446
  let
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   447
    fun conclude_evaluation thm2 thm1 =
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   448
      let
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   449
        val thm3 = postprocess_conv thy (Thm.rhs_of thm2);
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   450
      in
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   451
        Thm.transitive thm1 (Thm.transitive thm2 thm3) handle THM _ =>
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   452
          error ("could not construct evaluation proof:\n"
32091
30e2ffbba718 proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents: 32072
diff changeset
   453
          ^ (cat_lines o map (Display.string_of_thm_global thy)) [thm1, thm2, thm3])
30942
1e246776f876 diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents: 30876
diff changeset
   454
      end;
30947
dd551284a300 re-engineering of evaluation conversions
haftmann
parents: 30942
diff changeset
   455
  in gen_eval thy I conclude_evaluation end;
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   456
32123
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 32072
diff changeset
   457
fun eval thy postproc evaluator = gen_eval thy (Thm.cterm_of thy)
8bac9ee4b28d integrated add_triv_classes into evaluation stack
haftmann
parents: 32072
diff changeset
   458
  (K o postproc (postprocess_term thy)) (simple_evaluator evaluator);
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   459
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   460
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   461
(** setup **)
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   462
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   463
val setup = 
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   464
  let
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   465
    fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I);
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   466
    fun add_del_attribute_parser add del =
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31977
diff changeset
   467
      Attrib.add_del (mk_attribute add) (mk_attribute del);
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   468
    fun both f g thm = f thm #> g thm;
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   469
  in
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   470
    Attrib.setup @{binding code_unfold} (add_del_attribute_parser 
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   471
       (both Codegen.add_unfold add_unfold) (both Codegen.del_unfold del_unfold))
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   472
        "preprocessing equations for code generators"
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   473
    #> Attrib.setup @{binding code_inline} (add_del_attribute_parser add_unfold del_unfold)
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31977
diff changeset
   474
        "preprocessing equations for code generator"
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   475
    #> Attrib.setup @{binding code_post} (add_del_attribute_parser add_post del_post)
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31977
diff changeset
   476
        "postprocessing equations for code generator"
32072
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   477
    #> Attrib.setup @{binding code_unfold_post} (Scan.succeed (mk_attribute add_unfold_post))
d4bff63bcbf1 added code_unfold_post attribute
haftmann
parents: 31998
diff changeset
   478
        "pre- and postprocessing equations for code generator"
31125
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   479
  end;
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   480
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   481
val _ =
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   482
  OuterSyntax.improper_command "print_codeproc" "print code preprocessor setup"
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   483
  OuterKeyword.diag (Scan.succeed
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   484
      (Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep
80218ee73167 transferred code generator preprocessor into separate module
haftmann
parents: 31089
diff changeset
   485
        (print_codeproc o Toplevel.theory_of)));
30010
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   486
862fc7751a15 tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff changeset
   487
end; (*struct*)