src/Tools/code/code_funcgr.ML
author wenzelm
Sun, 18 May 2008 15:04:09 +0200
changeset 26939 1035c89b4c02
parent 26928 ca87aff1ad2d
child 26971 160117247294
permissions -rw-r--r--
moved global pretty/string_of functions from Sign to Syntax;
     1 (*  Title:      Tools/code/code_funcgr.ML
     2     ID:         $Id$
     3     Author:     Florian Haftmann, TU Muenchen
     4 
     5 Retrieving, normalizing and structuring defining equations in graph
     6 with explicit dependencies.
     7 *)
     8 
     9 signature CODE_FUNCGR =
    10 sig
    11   type T
    12   val timing: bool ref
    13   val funcs: T -> string -> thm list
    14   val typ: T -> string -> typ
    15   val all: T -> string list
    16   val pretty: theory -> T -> Pretty.T
    17   val make: theory -> string list -> T
    18   val make_consts: theory -> string list -> string list * T
    19   val eval_conv: theory -> (term -> term * (T -> term -> thm)) -> cterm -> thm
    20   val eval_term: theory -> (term -> term * (T -> term -> 'a)) -> term -> 'a
    21 end
    22 
    23 structure CodeFuncgr : CODE_FUNCGR =
    24 struct
    25 
    26 (** the graph type **)
    27 
    28 type T = (typ * thm list) Graph.T;
    29 
    30 fun funcs funcgr =
    31   these o Option.map snd o try (Graph.get_node funcgr);
    32 
    33 fun typ funcgr =
    34   fst o Graph.get_node funcgr;
    35 
    36 fun all funcgr = Graph.keys funcgr;
    37 
    38 fun pretty thy funcgr =
    39   AList.make (snd o Graph.get_node funcgr) (Graph.keys funcgr)
    40   |> (map o apfst) (CodeUnit.string_of_const thy)
    41   |> sort (string_ord o pairself fst)
    42   |> map (fn (s, thms) =>
    43        (Pretty.block o Pretty.fbreaks) (
    44          Pretty.str s
    45          :: map Display.pretty_thm thms
    46        ))
    47   |> Pretty.chunks;
    48 
    49 
    50 (** generic combinators **)
    51 
    52 fun fold_consts f thms =
    53   thms
    54   |> maps (op :: o swap o apfst (snd o strip_comb) o Logic.dest_equals o Thm.plain_prop_of)
    55   |> (fold o fold_aterms) (fn Const c => f c | _ => I);
    56 
    57 fun consts_of (const, []) = []
    58   | consts_of (const, thms as _ :: _) = 
    59       let
    60         fun the_const (c, _) = if c = const then I else insert (op =) c
    61       in fold_consts the_const thms [] end;
    62 
    63 fun insts_of thy algebra c ty_decl ty =
    64   let
    65     val tys_decl = Sign.const_typargs thy (c, ty_decl);
    66     val tys = Sign.const_typargs thy (c, ty);
    67     fun class_relation (x, _) _ = x;
    68     fun type_constructor tyco xs class =
    69       (tyco, class) :: maps (maps fst) xs;
    70     fun type_variable (TVar (_, sort)) = map (pair []) sort
    71       | type_variable (TFree (_, sort)) = map (pair []) sort;
    72     fun mk_inst ty (TVar (_, sort)) = cons (ty, sort)
    73       | mk_inst ty (TFree (_, sort)) = cons (ty, sort)
    74       | mk_inst (Type (_, tys1)) (Type (_, tys2)) = fold2 mk_inst tys1 tys2;
    75     fun of_sort_deriv (ty, sort) =
    76       Sorts.of_sort_derivation (Syntax.pp_global thy) algebra
    77         { class_relation = class_relation, type_constructor = type_constructor,
    78           type_variable = type_variable }
    79         (ty, sort) handle Sorts.CLASS_ERROR _ => [] (*permissive!*)
    80   in
    81     flat (maps of_sort_deriv (fold2 mk_inst tys tys_decl []))
    82   end;
    83 
    84 fun drop_classes thy tfrees thm =
    85   let
    86     val (_, thm') = Thm.varifyT' [] thm;
    87     val tvars = Term.add_tvars (Thm.prop_of thm') [];
    88     val unconstr = map (Thm.ctyp_of thy o TVar) tvars;
    89     val instmap = map2 (fn (v_i, _) => fn (v, sort) => pairself (Thm.ctyp_of thy)
    90       (TVar (v_i, []), TFree (v, sort))) tvars tfrees;
    91   in
    92     thm'
    93     |> fold Thm.unconstrainT unconstr
    94     |> Thm.instantiate (instmap, [])
    95     |> Tactic.rule_by_tactic ((REPEAT o CHANGED o ALLGOALS o Tactic.resolve_tac) (AxClass.class_intros thy))
    96   end;
    97 
    98 
    99 (** graph algorithm **)
   100 
   101 val timing = ref false;
   102 
   103 local
   104 
   105 exception CLASS_ERROR of string list * string;
   106 
   107 fun resort_thms algebra tap_typ [] = []
   108   | resort_thms algebra tap_typ (thms as thm :: _) =
   109       let
   110         val thy = Thm.theory_of_thm thm;
   111         val pp = Syntax.pp_global thy;
   112         val cs = fold_consts (insert (op =)) thms [];
   113         fun match_const c (ty, ty_decl) =
   114           let
   115             val tys = Sign.const_typargs thy (c, ty);
   116             val sorts = map (snd o dest_TVar) (Sign.const_typargs thy (c, ty_decl));
   117           in fn tab => fold2 (curry (Sorts.meet_sort algebra)) tys sorts tab
   118             handle Sorts.CLASS_ERROR e => raise CLASS_ERROR ([c], Sorts.class_error pp e ^ ",\n"
   119               ^ "for constant " ^ CodeUnit.string_of_const thy c
   120               ^ "\nin defining equations(s)\n"
   121               ^ (cat_lines o map Display.string_of_thm) thms)
   122             (*handle Sorts.CLASS_ERROR _ => tab (*permissive!*)*)
   123           end;
   124         fun match (c, ty) = case tap_typ c
   125            of SOME ty_decl => match_const c (ty, ty_decl)
   126             | NONE => I;
   127         val tvars = fold match cs Vartab.empty;
   128       in map (CodeUnit.inst_thm tvars) thms end;
   129 
   130 fun resort_funcss thy algebra funcgr =
   131   let
   132     val typ_funcgr = try (fst o Graph.get_node funcgr);
   133     val resort_dep = apsnd (resort_thms algebra typ_funcgr);
   134     fun resort_rec tap_typ (const, []) = (true, (const, []))
   135       | resort_rec tap_typ (const, thms as thm :: _) =
   136           let
   137             val (_, ty) = CodeUnit.head_func thm;
   138             val thms' as thm' :: _ = resort_thms algebra tap_typ thms
   139             val (_, ty') = CodeUnit.head_func thm';
   140           in (Sign.typ_equiv thy (ty, ty'), (const, thms')) end;
   141     fun resort_recs funcss =
   142       let
   143         fun tap_typ c =
   144           AList.lookup (op =) funcss c
   145           |> these
   146           |> try hd
   147           |> Option.map (snd o CodeUnit.head_func);
   148         val (unchangeds, funcss') = split_list (map (resort_rec tap_typ) funcss);
   149         val unchanged = fold (fn x => fn y => x andalso y) unchangeds true;
   150       in (unchanged, funcss') end;
   151     fun resort_rec_until funcss =
   152       let
   153         val (unchanged, funcss') = resort_recs funcss;
   154       in if unchanged then funcss' else resort_rec_until funcss' end;
   155   in map resort_dep #> resort_rec_until end;
   156 
   157 fun instances_of thy algebra insts =
   158   let
   159     val thy_classes = (#classes o Sorts.rep_algebra o Sign.classes_of) thy;
   160     fun all_classparams tyco class =
   161       these (try (#params o AxClass.get_info thy) class)
   162       |> map_filter (fn (c, _) => try (AxClass.param_of_inst thy) (c, tyco))
   163   in
   164     Symtab.empty
   165     |> fold (fn (tyco, class) =>
   166         Symtab.map_default (tyco, []) (insert (op =) class)) insts
   167     |> (fn tab => Symtab.fold (fn (tyco, classes) => append (maps (all_classparams tyco)
   168          (Graph.all_succs thy_classes classes))) tab [])
   169   end;
   170 
   171 fun instances_of_consts thy algebra funcgr consts =
   172   let
   173     fun inst (cexpr as (c, ty)) = insts_of thy algebra c
   174       ((fst o Graph.get_node funcgr) c) ty;
   175   in
   176     []
   177     |> fold (fold (insert (op =)) o inst) consts
   178     |> instances_of thy algebra
   179   end;
   180 
   181 fun ensure_const' thy algebra funcgr const auxgr =
   182   if can (Graph.get_node funcgr) const
   183     then (NONE, auxgr)
   184   else if can (Graph.get_node auxgr) const
   185     then (SOME const, auxgr)
   186   else if is_some (Code.get_datatype_of_constr thy const) then
   187     auxgr
   188     |> Graph.new_node (const, [])
   189     |> pair (SOME const)
   190   else let
   191     val thms = Code.these_funcs thy const
   192       |> CodeUnit.norm_args
   193       |> CodeUnit.norm_varnames CodeName.purify_tvar CodeName.purify_var;
   194     val rhs = consts_of (const, thms);
   195   in
   196     auxgr
   197     |> Graph.new_node (const, thms)
   198     |> fold_map (ensure_const thy algebra funcgr) rhs
   199     |-> (fn rhs' => fold (fn SOME const' => Graph.add_edge (const, const')
   200                            | NONE => I) rhs')
   201     |> pair (SOME const)
   202   end
   203 and ensure_const thy algebra funcgr const =
   204   let
   205     val timeap = if !timing
   206       then Output.timeap_msg ("time for " ^ CodeUnit.string_of_const thy const)
   207       else I;
   208   in timeap (ensure_const' thy algebra funcgr const) end;
   209 
   210 fun merge_funcss thy algebra raw_funcss funcgr =
   211   let
   212     val funcss = raw_funcss
   213       |> resort_funcss thy algebra funcgr
   214       |> filter_out (can (Graph.get_node funcgr) o fst);
   215     fun typ_func c [] = Code.default_typ thy c
   216       | typ_func c (thms as thm :: _) = case AxClass.inst_of_param thy c
   217          of SOME (c', tyco) => 
   218               let
   219                 val (_, ty) = CodeUnit.head_func thm;
   220                 val SOME class = AxClass.class_of_param thy c';
   221                 val sorts_decl = Sorts.mg_domain algebra tyco [class];
   222                 val tys = Sign.const_typargs thy (c, ty);
   223                 val sorts = map (snd o dest_TVar) tys;
   224               in if sorts = sorts_decl then ty
   225                 else raise CLASS_ERROR ([c], "Illegal instantation for class operation "
   226                   ^ CodeUnit.string_of_const thy c
   227                   ^ "\nin defining equations\n"
   228                   ^ (cat_lines o map (Display.string_of_thm o AxClass.overload thy)) thms)
   229               end
   230           | NONE => (snd o CodeUnit.head_func) thm;
   231     fun add_funcs (const, thms) =
   232       Graph.new_node (const, (typ_func const thms, thms));
   233     fun add_deps (funcs as (const, thms)) funcgr =
   234       let
   235         val deps = consts_of funcs;
   236         val insts = instances_of_consts thy algebra funcgr
   237           (fold_consts (insert (op =)) thms []);
   238       in
   239         funcgr
   240         |> ensure_consts' thy algebra insts
   241         |> fold (curry Graph.add_edge const) deps
   242         |> fold (curry Graph.add_edge const) insts
   243        end;
   244   in
   245     funcgr
   246     |> fold add_funcs funcss
   247     |> fold add_deps funcss
   248   end
   249 and ensure_consts' thy algebra cs funcgr =
   250   let
   251     val auxgr = Graph.empty
   252       |> fold (snd oo ensure_const thy algebra funcgr) cs;
   253   in
   254     funcgr
   255     |> fold (merge_funcss thy algebra)
   256          (map (AList.make (Graph.get_node auxgr))
   257          (rev (Graph.strong_conn auxgr)))
   258   end handle CLASS_ERROR (cs', msg)
   259     => raise CLASS_ERROR (fold (insert (op =)) cs' cs, msg);
   260 
   261 in
   262 
   263 (** retrieval interfaces **)
   264 
   265 fun ensure_consts thy algebra consts funcgr =
   266   ensure_consts' thy algebra consts funcgr
   267     handle CLASS_ERROR (cs', msg) => error (msg ^ ",\nwhile preprocessing equations for constant(s) "
   268     ^ commas (map (CodeUnit.string_of_const thy) cs'));
   269 
   270 fun check_consts thy consts funcgr =
   271   let
   272     val algebra = Code.coregular_algebra thy;
   273     fun try_const const funcgr =
   274       (SOME const, ensure_consts' thy algebra [const] funcgr)
   275       handle CLASS_ERROR (cs', msg) => (NONE, funcgr);
   276     val (consts', funcgr') = fold_map try_const consts funcgr;
   277   in (map_filter I consts', funcgr') end;
   278 
   279 fun proto_eval thy cterm_of evaluator_fr evaluator proto_ct funcgr =
   280   let
   281     val ct = cterm_of proto_ct;
   282     val _ = Sign.no_vars (Syntax.pp_global thy) (Thm.term_of ct);
   283     val _ = Term.fold_types (Type.no_tvars #> K I) (Thm.term_of ct) ();
   284     fun consts_of t = fold_aterms (fn Const c_ty => cons c_ty | _ => I)
   285       t [];
   286     val algebra = Code.coregular_algebra thy;
   287     val thm = Code.preprocess_conv ct;
   288     val ct' = Thm.rhs_of thm;
   289     val t' = Thm.term_of ct';
   290     val consts = map fst (consts_of t');
   291     val funcgr' = ensure_consts thy algebra consts funcgr;
   292     val (t'', evaluator') = apsnd evaluator_fr (evaluator t');
   293     val consts' = consts_of t'';
   294     val dicts = instances_of_consts thy algebra funcgr' consts';
   295     val funcgr'' = ensure_consts thy algebra dicts funcgr';
   296   in (evaluator' thm funcgr'' t'', funcgr'') end;
   297 
   298 fun proto_eval_conv thy =
   299   let
   300     fun evaluator evaluator' thm1 funcgr t =
   301       let
   302         val thm2 = evaluator' funcgr t;
   303         val thm3 = Code.postprocess_conv (Thm.rhs_of thm2);
   304       in
   305         Thm.transitive thm1 (Thm.transitive thm2 thm3) handle THM _ =>
   306           error ("could not construct evaluation proof (probably due to wellsortedness problem):\n"
   307           ^ (cat_lines o map Display.string_of_thm) [thm1, thm2, thm3])
   308       end;
   309   in proto_eval thy I evaluator end;
   310 
   311 fun proto_eval_term thy =
   312   let
   313     fun evaluator evaluator' _ funcgr t = evaluator' funcgr t;
   314   in proto_eval thy (Thm.cterm_of thy) evaluator end;
   315 
   316 end; (*local*)
   317 
   318 structure Funcgr = CodeDataFun
   319 (
   320   type T = T;
   321   val empty = Graph.empty;
   322   fun merge _ _ = Graph.empty;
   323   fun purge _ NONE _ = Graph.empty
   324     | purge _ (SOME cs) funcgr =
   325         Graph.del_nodes ((Graph.all_preds funcgr 
   326           o filter (can (Graph.get_node funcgr))) cs) funcgr;
   327 );
   328 
   329 fun make thy =
   330   Funcgr.change thy o ensure_consts thy (Code.coregular_algebra thy);
   331 
   332 fun make_consts thy =
   333   Funcgr.change_yield thy o check_consts thy;
   334 
   335 fun eval_conv thy f =
   336   fst o Funcgr.change_yield thy o proto_eval_conv thy f;
   337 
   338 fun eval_term thy f =
   339   fst o Funcgr.change_yield thy o proto_eval_term thy f;
   340 
   341 end; (*struct*)