src/Pure/Tools/codegen_funcgr.ML
author haftmann
Fri, 30 Mar 2007 16:19:03 +0200
changeset 22554 d1499fff65d8
parent 22507 3572bc633d9a
child 22570 f166a5416b3f
permissions -rw-r--r--
simplified constant representation in code generator
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     1
(*  Title:      Pure/Tools/codegen_funcgr.ML
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     2
    ID:         $Id$
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     4
22185
haftmann
parents: 22039
diff changeset
     5
Retrieving, normalizing and structuring defining equations
20855
9f60d493c8fe clarified header comments
haftmann
parents: 20835
diff changeset
     6
in graph with explicit dependencies.
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     7
*)
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     8
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
     9
signature CODEGEN_FUNCGR =
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    10
sig
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    11
  type T
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    12
  val timing: bool ref
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
    13
  val funcs: T -> CodegenConsts.const -> thm list
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
    14
  val typ: T -> CodegenConsts.const -> typ
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
    15
  val deps: T -> CodegenConsts.const list -> CodegenConsts.const list list
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
    16
  val all: T -> CodegenConsts.const list
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    17
  val pretty: theory -> T -> Pretty.T
22507
haftmann
parents: 22401
diff changeset
    18
  structure Constgraph : GRAPH
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    19
end
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    20
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    21
signature CODEGEN_FUNCGR_RETRIEVAL =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    22
sig
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    23
  type T (* = CODEGEN_FUNCGR.T *)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    24
  val make: theory -> CodegenConsts.const list -> T
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    25
  val make_consts: theory -> CodegenConsts.const list -> CodegenConsts.const list * T
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    26
  val make_term: theory -> (T -> (thm -> thm) -> cterm -> thm -> 'a) -> cterm -> 'a * T
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    27
  val init: theory -> theory
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    28
end;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    29
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    30
structure CodegenFuncgr = (*signature is added later*)
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    31
struct
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    32
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    33
(** the graph type **)
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    34
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    35
structure Constgraph = GraphFun (
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    36
  type key = CodegenConsts.const;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    37
  val ord = CodegenConsts.const_ord;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    38
);
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    39
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    40
type T = (typ * thm list) Constgraph.T;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    41
22185
haftmann
parents: 22039
diff changeset
    42
fun funcs funcgr =
haftmann
parents: 22039
diff changeset
    43
  these o Option.map snd o try (Constgraph.get_node funcgr);
haftmann
parents: 22039
diff changeset
    44
haftmann
parents: 22039
diff changeset
    45
fun typ funcgr =
haftmann
parents: 22039
diff changeset
    46
  fst o Constgraph.get_node funcgr;
haftmann
parents: 22039
diff changeset
    47
haftmann
parents: 22039
diff changeset
    48
fun deps funcgr cs =
haftmann
parents: 22039
diff changeset
    49
  let
haftmann
parents: 22039
diff changeset
    50
    val conn = Constgraph.strong_conn funcgr;
haftmann
parents: 22039
diff changeset
    51
    val order = rev conn;
haftmann
parents: 22039
diff changeset
    52
  in
haftmann
parents: 22039
diff changeset
    53
    (map o filter) (member (op =) (Constgraph.all_succs funcgr cs)) order
haftmann
parents: 22039
diff changeset
    54
    |> filter_out null
haftmann
parents: 22039
diff changeset
    55
  end;
haftmann
parents: 22039
diff changeset
    56
haftmann
parents: 22039
diff changeset
    57
fun all funcgr = Constgraph.keys funcgr;
haftmann
parents: 22039
diff changeset
    58
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    59
fun pretty thy funcgr =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    60
  AList.make (snd o Constgraph.get_node funcgr) (Constgraph.keys funcgr)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    61
  |> (map o apfst) (CodegenConsts.string_of_const thy)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    62
  |> sort (string_ord o pairself fst)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    63
  |> map (fn (s, thms) =>
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    64
       (Pretty.block o Pretty.fbreaks) (
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    65
         Pretty.str s
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    66
         :: map Display.pretty_thm thms
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    67
       ))
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
    68
  |> Pretty.chunks;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    69
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    70
22185
haftmann
parents: 22039
diff changeset
    71
(** generic combinators **)
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    72
22185
haftmann
parents: 22039
diff changeset
    73
fun fold_consts f thms =
haftmann
parents: 22039
diff changeset
    74
  thms
haftmann
parents: 22039
diff changeset
    75
  |> maps (op :: o swap o apfst (snd o strip_comb) o Logic.dest_equals o Drule.plain_prop_of)
haftmann
parents: 22039
diff changeset
    76
  |> (fold o fold_aterms) (fn Const c => f c | _ => I);
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    77
22185
haftmann
parents: 22039
diff changeset
    78
fun consts_of (const, []) = []
haftmann
parents: 22039
diff changeset
    79
  | consts_of (const, thms as thm :: _) = 
haftmann
parents: 22039
diff changeset
    80
      let
haftmann
parents: 22039
diff changeset
    81
        val thy = Thm.theory_of_thm thm;
haftmann
parents: 22039
diff changeset
    82
        val is_refl = curry CodegenConsts.eq_const const;
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
    83
        fun the_const c = case try (CodegenConsts.const_of_cexpr thy) c
22185
haftmann
parents: 22039
diff changeset
    84
         of SOME const => if is_refl const then I else insert CodegenConsts.eq_const const
haftmann
parents: 22039
diff changeset
    85
          | NONE => I
haftmann
parents: 22039
diff changeset
    86
      in fold_consts the_const thms [] end;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    87
22185
haftmann
parents: 22039
diff changeset
    88
fun insts_of thy algebra c ty_decl ty =
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    89
  let
22185
haftmann
parents: 22039
diff changeset
    90
    val tys_decl = Sign.const_typargs thy (c, ty_decl);
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    91
    val tys = Sign.const_typargs thy (c, ty);
22185
haftmann
parents: 22039
diff changeset
    92
    fun classrel (x, _) _ = x;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    93
    fun constructor tyco xs class =
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    94
      (tyco, class) :: maps (maps fst) xs;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    95
    fun variable (TVar (_, sort)) = map (pair []) sort
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    96
      | variable (TFree (_, sort)) = map (pair []) sort;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    97
    fun mk_inst ty (TVar (_, sort)) = cons (ty, sort)
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
    98
      | mk_inst ty (TFree (_, sort)) = cons (ty, sort)
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
    99
      | mk_inst (Type (_, tys1)) (Type (_, tys2)) = fold2 mk_inst tys1 tys2;
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   100
    fun of_sort_deriv (ty, sort) =
22185
haftmann
parents: 22039
diff changeset
   101
      Sorts.of_sort_derivation (Sign.pp thy) algebra
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   102
        { classrel = classrel, constructor = constructor, variable = variable }
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   103
        (ty, sort)
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   104
  in
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   105
    flat (maps of_sort_deriv (fold2 mk_inst tys tys_decl []))
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   106
  end;
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   107
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   108
fun drop_classes thy tfrees thm =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   109
  let
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   110
    val (_, thm') = Thm.varifyT' [] thm;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   111
    val tvars = Term.add_tvars (Thm.prop_of thm') [];
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   112
    val unconstr = map (Thm.ctyp_of thy o TVar) tvars;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   113
    val instmap = map2 (fn (v_i, _) => fn (v, sort) => pairself (Thm.ctyp_of thy)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   114
      (TVar (v_i, []), TFree (v, sort))) tvars tfrees;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   115
  in
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   116
    thm'
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   117
    |> fold Thm.unconstrainT unconstr
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   118
    |> Thm.instantiate (instmap, [])
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   119
    |> Tactic.rule_by_tactic ((REPEAT o CHANGED o ALLGOALS o Tactic.resolve_tac) (AxClass.class_intros thy))
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   120
  end;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   121
22039
9bc8058250a7 slight cleanups
haftmann
parents: 22021
diff changeset
   122
22185
haftmann
parents: 22039
diff changeset
   123
(** graph algorithm **)
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   124
22185
haftmann
parents: 22039
diff changeset
   125
val timing = ref false;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   126
22185
haftmann
parents: 22039
diff changeset
   127
local
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   128
22185
haftmann
parents: 22039
diff changeset
   129
exception INVALID of CodegenConsts.const list * string;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   130
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   131
fun resort_thms algebra tap_typ [] = []
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   132
  | resort_thms algebra tap_typ (thms as thm :: _) =
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   133
      let
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   134
        val thy = Thm.theory_of_thm thm;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   135
        val cs = fold_consts (insert (op =)) thms [];
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   136
        fun match_const c (ty, ty_decl) =
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   137
          let
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   138
            val tys = CodegenConsts.typargs thy (c, ty);
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   139
            val sorts = map (snd o dest_TVar) (CodegenConsts.typargs thy (c, ty_decl));
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   140
          in fold2 (curry (CodegenConsts.typ_sort_inst algebra)) tys sorts end;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   141
        fun match (c_ty as (c, ty)) =
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   142
          case tap_typ c_ty
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   143
           of SOME ty_decl => match_const c (ty, ty_decl)
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   144
            | NONE => I;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   145
        val tvars = fold match cs Vartab.empty;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   146
      in map (CodegenFunc.inst_thm tvars) thms end;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   147
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   148
fun resort_funcss thy algebra funcgr =
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   149
  let
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   150
    val typ_funcgr = try (fst o Constgraph.get_node funcgr o CodegenConsts.const_of_cexpr thy);
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   151
    fun resort_dep (const, thms) = (const, resort_thms algebra typ_funcgr thms)
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   152
      handle Sorts.CLASS_ERROR e => raise INVALID ([const], Sorts.msg_class_error (Sign.pp thy) e
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   153
                    ^ ",\nfor constant " ^ CodegenConsts.string_of_const thy const
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   154
                    ^ "\nin defining equations\n"
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   155
                    ^ (cat_lines o map string_of_thm) thms)
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   156
    fun resort_rec tap_typ (const, []) = (true, (const, []))
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   157
      | resort_rec tap_typ (const, thms as thm :: _) =
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   158
          let
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   159
            val ty = CodegenFunc.typ_func thm;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   160
            val thms' as thm' :: _ = resort_thms algebra tap_typ thms
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   161
            val ty' = CodegenFunc.typ_func thm';
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   162
          in (Sign.typ_equiv thy (ty, ty'), (const, thms')) end;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   163
    fun resort_recs funcss =
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   164
      let
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   165
        fun tap_typ c_ty = case try (CodegenConsts.const_of_cexpr thy) c_ty
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   166
         of SOME const => AList.lookup (CodegenConsts.eq_const) funcss const
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   167
              |> these
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   168
              |> try hd
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   169
              |> Option.map CodegenFunc.typ_func
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   170
          | NONE => NONE;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   171
        val (unchangeds, funcss') = split_list (map (resort_rec tap_typ) funcss);
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   172
        val unchanged = fold (fn x => fn y => x andalso y) unchangeds true;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   173
      in (unchanged, funcss') end;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   174
    fun resort_rec_until funcss =
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   175
      let
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   176
        val (unchanged, funcss') = resort_recs funcss;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   177
      in if unchanged then funcss' else resort_rec_until funcss' end;
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   178
  in map resort_dep #> resort_rec_until end;
22039
9bc8058250a7 slight cleanups
haftmann
parents: 22021
diff changeset
   179
22185
haftmann
parents: 22039
diff changeset
   180
fun instances_of thy algebra insts =
haftmann
parents: 22039
diff changeset
   181
  let
haftmann
parents: 22039
diff changeset
   182
    val thy_classes = (#classes o Sorts.rep_algebra o Sign.classes_of) thy;
haftmann
parents: 22039
diff changeset
   183
    fun all_classops tyco class =
haftmann
parents: 22039
diff changeset
   184
      try (AxClass.params_of_class thy) class
haftmann
parents: 22039
diff changeset
   185
      |> Option.map snd
haftmann
parents: 22039
diff changeset
   186
      |> these
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   187
      |> map (fn (c, _) => (c, SOME tyco))
22185
haftmann
parents: 22039
diff changeset
   188
  in
haftmann
parents: 22039
diff changeset
   189
    Symtab.empty
haftmann
parents: 22039
diff changeset
   190
    |> fold (fn (tyco, class) =>
haftmann
parents: 22039
diff changeset
   191
        Symtab.map_default (tyco, []) (insert (op =) class)) insts
haftmann
parents: 22039
diff changeset
   192
    |> (fn tab => Symtab.fold (fn (tyco, classes) => append (maps (all_classops tyco)
haftmann
parents: 22039
diff changeset
   193
         (Graph.all_succs thy_classes classes))) tab [])
haftmann
parents: 22039
diff changeset
   194
  end;
haftmann
parents: 22039
diff changeset
   195
haftmann
parents: 22039
diff changeset
   196
fun instances_of_consts thy algebra funcgr consts =
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   197
  let
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   198
    fun inst (cexpr as (c, ty)) = insts_of thy algebra c
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   199
      ((fst o Constgraph.get_node funcgr o CodegenConsts.const_of_cexpr thy) cexpr)
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   200
      ty handle CLASS_ERROR => [];
22185
haftmann
parents: 22039
diff changeset
   201
  in
haftmann
parents: 22039
diff changeset
   202
    []
haftmann
parents: 22039
diff changeset
   203
    |> fold (fold (insert (op =)) o inst) consts
haftmann
parents: 22039
diff changeset
   204
    |> instances_of thy algebra
haftmann
parents: 22039
diff changeset
   205
  end;
haftmann
parents: 22039
diff changeset
   206
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   207
fun ensure_const' rewrites thy algebra funcgr const auxgr =
22185
haftmann
parents: 22039
diff changeset
   208
  if can (Constgraph.get_node funcgr) const
haftmann
parents: 22039
diff changeset
   209
    then (NONE, auxgr)
haftmann
parents: 22039
diff changeset
   210
  else if can (Constgraph.get_node auxgr) const
haftmann
parents: 22039
diff changeset
   211
    then (SOME const, auxgr)
haftmann
parents: 22039
diff changeset
   212
  else if is_some (CodegenData.get_datatype_of_constr thy const) then
haftmann
parents: 22039
diff changeset
   213
    auxgr
haftmann
parents: 22039
diff changeset
   214
    |> Constgraph.new_node (const, [])
haftmann
parents: 22039
diff changeset
   215
    |> pair (SOME const)
haftmann
parents: 22039
diff changeset
   216
  else let
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   217
    val thms = CodegenData.these_funcs thy const
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   218
      |> map (CodegenFunc.rewrite_func (rewrites thy))
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   219
      |> CodegenFunc.norm_args
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   220
      |> CodegenFunc.norm_varnames CodegenNames.purify_tvar CodegenNames.purify_var;
22185
haftmann
parents: 22039
diff changeset
   221
    val rhs = consts_of (const, thms);
haftmann
parents: 22039
diff changeset
   222
  in
haftmann
parents: 22039
diff changeset
   223
    auxgr
haftmann
parents: 22039
diff changeset
   224
    |> Constgraph.new_node (const, thms)
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   225
    |> fold_map (ensure_const rewrites thy algebra funcgr) rhs
22185
haftmann
parents: 22039
diff changeset
   226
    |-> (fn rhs' => fold (fn SOME const' => Constgraph.add_edge (const, const')
haftmann
parents: 22039
diff changeset
   227
                           | NONE => I) rhs')
haftmann
parents: 22039
diff changeset
   228
    |> pair (SOME const)
haftmann
parents: 22039
diff changeset
   229
  end
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   230
and ensure_const rewrites thy algebra funcgr const =
22185
haftmann
parents: 22039
diff changeset
   231
  let
haftmann
parents: 22039
diff changeset
   232
    val timeap = if !timing
haftmann
parents: 22039
diff changeset
   233
      then Output.timeap_msg ("time for " ^ CodegenConsts.string_of_const thy const)
haftmann
parents: 22039
diff changeset
   234
      else I;
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   235
  in timeap (ensure_const' rewrites thy algebra funcgr const) end;
22185
haftmann
parents: 22039
diff changeset
   236
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   237
fun merge_funcss rewrites thy algebra raw_funcss funcgr =
22185
haftmann
parents: 22039
diff changeset
   238
  let
22401
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   239
    val funcss = raw_funcss
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   240
      |> resort_funcss thy algebra funcgr
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   241
      |> filter_out (can (Constgraph.get_node funcgr) o fst);
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   242
    fun typ_func const [] = CodegenData.default_typ thy const
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   243
      | typ_func (_, NONE) (thm :: _) = CodegenFunc.typ_func thm
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   244
      | typ_func (const as (c, SOME tyco)) (thms as (thm :: _)) =
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   245
          let
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   246
            val ty = CodegenFunc.typ_func thm;
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   247
            val SOME class = AxClass.class_of_param thy c;
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   248
            val sorts_decl = Sorts.mg_domain algebra tyco [class];
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   249
            val tys = CodegenConsts.typargs thy (c, ty);
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   250
            val sorts = map (snd o dest_TVar) tys;
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   251
          in if sorts = sorts_decl then ty
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   252
            else raise INVALID ([const], "Illegal instantation for class operation "
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   253
              ^ CodegenConsts.string_of_const thy const
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   254
              ^ "\nin defining equations\n"
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   255
              ^ (cat_lines o map string_of_thm) thms)
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   256
          end;
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   257
    fun add_funcs (const, thms) =
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   258
      Constgraph.new_node (const, (typ_func const thms, thms));
22185
haftmann
parents: 22039
diff changeset
   259
    fun add_deps (funcs as (const, thms)) funcgr =
haftmann
parents: 22039
diff changeset
   260
      let
haftmann
parents: 22039
diff changeset
   261
        val deps = consts_of funcs;
haftmann
parents: 22039
diff changeset
   262
        val insts = instances_of_consts thy algebra funcgr
haftmann
parents: 22039
diff changeset
   263
          (fold_consts (insert (op =)) thms []);
haftmann
parents: 22039
diff changeset
   264
      in
haftmann
parents: 22039
diff changeset
   265
        funcgr
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   266
        |> ensure_consts' rewrites thy algebra insts
22185
haftmann
parents: 22039
diff changeset
   267
        |> fold (curry Constgraph.add_edge const) deps
haftmann
parents: 22039
diff changeset
   268
        |> fold (curry Constgraph.add_edge const) insts
haftmann
parents: 22039
diff changeset
   269
       end;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   270
  in
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   271
    funcgr
22185
haftmann
parents: 22039
diff changeset
   272
    |> fold add_funcs funcss
haftmann
parents: 22039
diff changeset
   273
    |> fold add_deps funcss
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   274
  end
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   275
and ensure_consts' rewrites thy algebra cs funcgr =
22401
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   276
  let
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   277
    val auxgr = Constgraph.empty
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   278
      |> fold (snd oo ensure_const rewrites thy algebra funcgr) cs;
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   279
  in
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   280
    funcgr
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   281
    |> fold (merge_funcss rewrites thy algebra)
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   282
         (map (AList.make (Constgraph.get_node auxgr))
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   283
         (rev (Constgraph.strong_conn auxgr)))
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   284
  end handle INVALID (cs', msg)
51997956e7d1 clarified code
haftmann
parents: 22223
diff changeset
   285
    => raise INVALID (fold (insert CodegenConsts.eq_const) cs' cs, msg);
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   286
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   287
fun ensure_consts rewrites thy consts funcgr =
22185
haftmann
parents: 22039
diff changeset
   288
  let
haftmann
parents: 22039
diff changeset
   289
    val algebra = CodegenData.coregular_algebra thy
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   290
  in ensure_consts' rewrites thy algebra consts funcgr
22185
haftmann
parents: 22039
diff changeset
   291
    handle INVALID (cs', msg) => error (msg ^ ",\nwhile preprocessing equations for constant(s) "
haftmann
parents: 22039
diff changeset
   292
    ^ commas (map (CodegenConsts.string_of_const thy) cs'))
haftmann
parents: 22039
diff changeset
   293
  end;
haftmann
parents: 22039
diff changeset
   294
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   295
in
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   296
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   297
(** retrieval interfaces **)
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   298
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   299
val ensure_consts = ensure_consts;
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   300
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   301
fun check_consts rewrites thy consts funcgr =
22185
haftmann
parents: 22039
diff changeset
   302
  let
haftmann
parents: 22039
diff changeset
   303
    val algebra = CodegenData.coregular_algebra thy;
haftmann
parents: 22039
diff changeset
   304
    fun try_const const funcgr =
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   305
      (SOME const, ensure_consts' rewrites thy algebra [const] funcgr)
22185
haftmann
parents: 22039
diff changeset
   306
      handle INVALID (cs', msg) => (NONE, funcgr);
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   307
    val (consts', funcgr') = fold_map try_const consts funcgr;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   308
  in (map_filter I consts', funcgr') end;
22185
haftmann
parents: 22039
diff changeset
   309
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   310
fun ensure_consts_term rewrites thy f ct funcgr =
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   311
  let
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   312
    fun consts_of thy t =
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   313
      fold_aterms (fn Const c => cons (CodegenConsts.const_of_cexpr thy c) | _ => I) t []
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   314
    fun rhs_conv conv thm =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   315
      let
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   316
        val thm' = (conv o snd o Drule.dest_equals o Thm.cprop_of) thm;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   317
      in Thm.transitive thm thm' end
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   318
    val _ = Sign.no_vars (Sign.pp thy) (Thm.term_of ct);
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   319
    val _ = Term.fold_types (Type.no_tvars #> K I) (Thm.term_of ct) ();
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   320
    val thm1 = CodegenData.preprocess_cterm ct
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   321
      |> fold (rhs_conv o MetaSimplifier.rewrite false o single) (rewrites thy);
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   322
    val ct' = Drule.dest_equals_rhs (Thm.cprop_of thm1);
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   323
    val consts = consts_of thy (Thm.term_of ct');
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   324
    val funcgr' = ensure_consts rewrites thy consts funcgr;
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   325
    val algebra = CodegenData.coregular_algebra thy;
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   326
    val (_, thm2) = Thm.varifyT' [] thm1;
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   327
    val thm3 = Thm.reflexive (Drule.dest_equals_rhs (Thm.cprop_of thm2));
22554
d1499fff65d8 simplified constant representation in code generator
haftmann
parents: 22507
diff changeset
   328
    val typ_funcgr = try (fst o Constgraph.get_node funcgr' o CodegenConsts.const_of_cexpr thy);
22198
226d29db8e0a refined algorithm
haftmann
parents: 22185
diff changeset
   329
    val [thm4] = resort_thms algebra typ_funcgr [thm3];
21120
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   330
    val tfrees = Term.add_tfrees (Thm.prop_of thm1) [];
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   331
    fun inst thm =
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   332
      let
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   333
        val tvars = Term.add_tvars (Thm.prop_of thm) [];
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   334
        val instmap = map2 (fn (v_i, sort) => fn (v, _) => pairself (Thm.ctyp_of thy)
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   335
          (TVar (v_i, sort), TFree (v, sort))) tvars tfrees;
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   336
      in Thm.instantiate (instmap, []) thm end;
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   337
    val thm5 = inst thm2;
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   338
    val thm6 = inst thm4;
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   339
    val ct'' = Drule.dest_equals_rhs (Thm.cprop_of thm6);
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   340
    val cs = fold_aterms (fn Const c => cons c | _ => I) (Thm.term_of ct'') [];
e333c844b057 refined algorithm
haftmann
parents: 20938
diff changeset
   341
    val drop = drop_classes thy tfrees;
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   342
    val instdefs = instances_of_consts thy algebra funcgr' cs;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   343
    val funcgr'' = ensure_consts rewrites thy instdefs funcgr';
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   344
  in (f funcgr'' drop ct'' thm5, funcgr'') end;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   345
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   346
end; (*local*)
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   347
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   348
end; (*struct*)
22185
haftmann
parents: 22039
diff changeset
   349
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   350
functor CodegenFuncgrRetrieval (val name: string; val rewrites: theory -> thm list) : CODEGEN_FUNCGR_RETRIEVAL =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   351
struct
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   352
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   353
(** code data **)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   354
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   355
type T = CodegenFuncgr.T;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   356
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   357
structure Funcgr = CodeDataFun
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   358
(struct
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   359
  val name = name;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   360
  type T = T;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   361
  val empty = CodegenFuncgr.Constgraph.empty;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   362
  fun merge _ _ = CodegenFuncgr.Constgraph.empty;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   363
  fun purge _ NONE _ = CodegenFuncgr.Constgraph.empty
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   364
    | purge _ (SOME cs) funcgr =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   365
        CodegenFuncgr.Constgraph.del_nodes ((CodegenFuncgr.Constgraph.all_preds funcgr 
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   366
          o filter (can (CodegenFuncgr.Constgraph.get_node funcgr))) cs) funcgr;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   367
end);
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   368
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   369
fun make thy =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   370
  Funcgr.change thy o CodegenFuncgr.ensure_consts rewrites thy;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   371
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   372
fun make_consts thy =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   373
  Funcgr.change_yield thy o CodegenFuncgr.check_consts rewrites thy;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   374
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   375
fun make_term thy f =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   376
  Funcgr.change_yield thy o CodegenFuncgr.ensure_consts_term rewrites thy f;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   377
22212
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   378
val init = Funcgr.init;
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   379
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   380
end; (*functor*)
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   381
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   382
structure CodegenFuncgr : CODEGEN_FUNCGR =
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   383
struct
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   384
079de24eee65 added interface for plugging in preprocessors
haftmann
parents: 22198
diff changeset
   385
open CodegenFuncgr;
20600
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   386
6d75e02ed285 added codegen_data
haftmann
parents:
diff changeset
   387
end; (*struct*)