src/HOL/SPARK/Tools/spark_vcs.ML
author wenzelm
Fri, 08 Jul 2011 15:17:40 +0200
changeset 44577 c37a1f29bbc0
parent 44208 47cf4bc789aa
child 44901 b63a6bc144cf
permissions -rw-r--r--
standardized String.concat towards implode;
     1 (*  Title:      HOL/SPARK/Tools/spark_vcs.ML
     2     Author:     Stefan Berghofer
     3     Copyright:  secunet Security Networks AG
     4 
     5 Store for verification conditions generated by SPARK/Ada.
     6 *)
     7 
     8 signature SPARK_VCS =
     9 sig
    10   val set_vcs: Fdl_Parser.decls -> Fdl_Parser.rules ->
    11     (string * string) * Fdl_Parser.vcs -> Path.T -> string -> theory -> theory
    12   val add_proof_fun: (typ option -> 'a -> term) ->
    13     string * ((string list * string) option * 'a) ->
    14     theory -> theory
    15   val add_type: string * typ -> theory -> theory
    16   val lookup_vc: theory -> string -> (Element.context_i list *
    17     (string * thm list option * Element.context_i * Element.statement_i)) option
    18   val get_vcs: theory ->
    19     Element.context_i list * (binding * thm) list * (string *
    20     (string * thm list option * Element.context_i * Element.statement_i)) list
    21   val mark_proved: string -> thm list -> theory -> theory
    22   val close: theory -> theory
    23   val is_closed: theory -> bool
    24 end;
    25 
    26 structure SPARK_VCs: SPARK_VCS =
    27 struct
    28 
    29 open Fdl_Parser;
    30 
    31 
    32 (** theory data **)
    33 
    34 fun err_unfinished () = error "An unfinished SPARK environment is still open."
    35 
    36 val strip_number = pairself implode o take_suffix Fdl_Lexer.is_digit o raw_explode;
    37 
    38 val name_ord = prod_ord string_ord (option_ord int_ord) o
    39   pairself (strip_number ##> Int.fromString);
    40 
    41 structure VCtab = Table(type key = string val ord = name_ord);
    42 
    43 structure VCs = Theory_Data
    44 (
    45   type T =
    46     {pfuns: ((string list * string) option * term) Symtab.table,
    47      type_map: typ Symtab.table,
    48      env:
    49        {ctxt: Element.context_i list,
    50         defs: (binding * thm) list,
    51         types: fdl_type tab,
    52         funs: (string list * string) tab,
    53         ids: (term * string) Symtab.table * Name.context,
    54         proving: bool,
    55         vcs: (string * thm list option *
    56           (string * expr) list * (string * expr) list) VCtab.table,
    57         path: Path.T,
    58         prefix: string} option}
    59   val empty : T = {pfuns = Symtab.empty, type_map = Symtab.empty, env = NONE}
    60   val extend = I
    61   fun merge ({pfuns = pfuns1, type_map = type_map1, env = NONE},
    62         {pfuns = pfuns2, type_map = type_map2, env = NONE}) =
    63         {pfuns = Symtab.merge (eq_pair (op =) (op aconv)) (pfuns1, pfuns2),
    64          type_map = Symtab.merge (op =) (type_map1, type_map2),
    65          env = NONE}
    66     | merge _ = err_unfinished ()
    67 )
    68 
    69 
    70 (** utilities **)
    71 
    72 val to_lower = raw_explode #> map Symbol.to_ascii_lower #> implode;
    73 
    74 val lcase_eq = (op =) o pairself (to_lower o Long_Name.base_name);
    75 
    76 fun lookup_prfx "" tab s = Symtab.lookup tab s
    77   | lookup_prfx prfx tab s = (case Symtab.lookup tab s of
    78         NONE => Symtab.lookup tab (prfx ^ "__" ^ s)
    79       | x => x);
    80 
    81 fun strip_prfx s =
    82   let
    83     fun strip ys [] = ("", implode ys)
    84       | strip ys ("_" :: "_" :: xs) = (implode (rev xs), implode ys)
    85       | strip ys (x :: xs) = strip (x :: ys) xs
    86   in strip [] (rev (raw_explode s)) end;
    87 
    88 fun mk_unop s t =
    89   let val T = fastype_of t
    90   in Const (s, T --> T) $ t end;
    91 
    92 fun mk_times (t, u) =
    93   let
    94     val setT = fastype_of t;
    95     val T = HOLogic.dest_setT setT;
    96     val U = HOLogic.dest_setT (fastype_of u)
    97   in
    98     Const (@{const_name Sigma}, setT --> (T --> HOLogic.mk_setT U) -->
    99       HOLogic.mk_setT (HOLogic.mk_prodT (T, U))) $ t $ Abs ("", T, u)
   100   end;
   101 
   102 fun get_type thy prfx ty =
   103   let val {type_map, ...} = VCs.get thy
   104   in lookup_prfx prfx type_map ty end;
   105 
   106 fun mk_type _ _ "integer" = HOLogic.intT
   107   | mk_type _ _ "boolean" = HOLogic.boolT
   108   | mk_type thy prfx ty =
   109       (case get_type thy prfx ty of
   110          NONE =>
   111            Syntax.check_typ (Proof_Context.init_global thy)
   112              (Type (Sign.full_name thy (Binding.name ty), []))
   113        | SOME T => T);
   114 
   115 val booleanN = "boolean";
   116 val integerN = "integer";
   117 
   118 fun define_overloaded (def_name, eq) lthy =
   119   let
   120     val ((c, _), rhs) = eq |> Syntax.check_term lthy |>
   121       Logic.dest_equals |>> dest_Free;
   122     val ((_, (_, thm)), lthy') = Local_Theory.define
   123       ((Binding.name c, NoSyn), ((Binding.name def_name, []), rhs)) lthy
   124     val ctxt_thy = Proof_Context.init_global (Proof_Context.theory_of lthy');
   125     val thm' = singleton (Proof_Context.export lthy' ctxt_thy) thm
   126   in (thm', lthy') end;
   127 
   128 fun strip_underscores s =
   129   strip_underscores (unsuffix "_" s) handle Fail _ => s;
   130 
   131 fun strip_tilde s =
   132   unsuffix "~" s ^ "_init" handle Fail _ => s;
   133 
   134 val mangle_name = strip_underscores #> strip_tilde;
   135 
   136 fun mk_variables thy prfx xs ty (tab, ctxt) =
   137   let
   138     val T = mk_type thy prfx ty;
   139     val (ys, ctxt') = fold_map Name.variant (map mangle_name xs) ctxt;
   140     val zs = map (Free o rpair T) ys;
   141   in (zs, (fold (Symtab.update o apsnd (rpair ty)) (xs ~~ zs) tab, ctxt')) end;
   142 
   143 fun get_record_info thy T = (case Record.dest_recTs T of
   144     [(tyname, [@{typ unit}])] =>
   145       Record.get_info thy (Long_Name.qualifier tyname)
   146   | _ => NONE);
   147 
   148 fun find_field fname = find_first (curry lcase_eq fname o fst);
   149 
   150 fun find_field' fname = get_first (fn (flds, fldty) =>
   151   if member (op =) flds fname then SOME fldty else NONE);
   152 
   153 fun assoc_ty_err thy T s msg =
   154   error ("Type " ^ Syntax.string_of_typ_global thy T ^
   155     " associated with SPARK type " ^ s ^ "\n" ^ msg);
   156 
   157 
   158 (** generate properties of enumeration types **)
   159 
   160 fun add_enum_type tyname tyname' thy =
   161   let
   162     val {case_name, ...} = the (Datatype_Data.get_info thy tyname');
   163     val cs = map Const (the (Datatype_Data.get_constrs thy tyname'));
   164     val k = length cs;
   165     val T = Type (tyname', []);
   166     val p = Const (@{const_name pos}, T --> HOLogic.intT);
   167     val v = Const (@{const_name val}, HOLogic.intT --> T);
   168     val card = Const (@{const_name card},
   169       HOLogic.mk_setT T --> HOLogic.natT) $ HOLogic.mk_UNIV T;
   170 
   171     fun mk_binrel_def s f = Logic.mk_equals
   172       (Const (s, T --> T --> HOLogic.boolT),
   173        Abs ("x", T, Abs ("y", T,
   174          Const (s, HOLogic.intT --> HOLogic.intT --> HOLogic.boolT) $
   175            (f $ Bound 1) $ (f $ Bound 0))));
   176 
   177     val (((def1, def2), def3), lthy) = thy |>
   178 
   179       Class.instantiation ([tyname'], [], @{sort spark_enum}) |>
   180 
   181       define_overloaded ("pos_" ^ tyname ^ "_def", Logic.mk_equals
   182         (p,
   183          list_comb (Const (case_name, replicate k HOLogic.intT @
   184              [T] ---> HOLogic.intT),
   185            map (HOLogic.mk_number HOLogic.intT) (0 upto k - 1)))) ||>>
   186 
   187       define_overloaded ("less_eq_" ^ tyname ^ "_def",
   188         mk_binrel_def @{const_name less_eq} p) ||>>
   189       define_overloaded ("less_" ^ tyname ^ "_def",
   190         mk_binrel_def @{const_name less} p);
   191 
   192     val UNIV_eq = Goal.prove lthy [] []
   193       (HOLogic.mk_Trueprop (HOLogic.mk_eq
   194          (HOLogic.mk_UNIV T, HOLogic.mk_set T cs)))
   195       (fn _ =>
   196          rtac @{thm subset_antisym} 1 THEN
   197          rtac @{thm subsetI} 1 THEN
   198          Datatype_Aux.exh_tac (K (#exhaust (Datatype_Data.the_info
   199            (Proof_Context.theory_of lthy) tyname'))) 1 THEN
   200          ALLGOALS (asm_full_simp_tac (simpset_of lthy)));
   201 
   202     val finite_UNIV = Goal.prove lthy [] []
   203       (HOLogic.mk_Trueprop (Const (@{const_name finite},
   204          HOLogic.mk_setT T --> HOLogic.boolT) $ HOLogic.mk_UNIV T))
   205       (fn _ => simp_tac (simpset_of lthy addsimps [UNIV_eq]) 1);
   206 
   207     val card_UNIV = Goal.prove lthy [] []
   208       (HOLogic.mk_Trueprop (HOLogic.mk_eq
   209          (card, HOLogic.mk_number HOLogic.natT k)))
   210       (fn _ => simp_tac (simpset_of lthy addsimps [UNIV_eq]) 1);
   211 
   212     val range_pos = Goal.prove lthy [] []
   213       (HOLogic.mk_Trueprop (HOLogic.mk_eq
   214          (Const (@{const_name image}, (T --> HOLogic.intT) -->
   215             HOLogic.mk_setT T --> HOLogic.mk_setT HOLogic.intT) $
   216               p $ HOLogic.mk_UNIV T,
   217           Const (@{const_name atLeastLessThan}, HOLogic.intT -->
   218             HOLogic.intT --> HOLogic.mk_setT HOLogic.intT) $
   219               HOLogic.mk_number HOLogic.intT 0 $
   220               (@{term int} $ card))))
   221       (fn _ =>
   222          simp_tac (simpset_of lthy addsimps [card_UNIV]) 1 THEN
   223          simp_tac (simpset_of lthy addsimps [UNIV_eq, def1]) 1 THEN
   224          rtac @{thm subset_antisym} 1 THEN
   225          simp_tac (simpset_of lthy) 1 THEN
   226          rtac @{thm subsetI} 1 THEN
   227          asm_full_simp_tac (simpset_of lthy addsimps @{thms interval_expand}
   228            delsimps @{thms atLeastLessThan_iff}) 1);
   229 
   230     val lthy' =
   231       Class.prove_instantiation_instance (fn _ =>
   232         Class.intro_classes_tac [] THEN
   233         rtac finite_UNIV 1 THEN
   234         rtac range_pos 1 THEN
   235         simp_tac (HOL_basic_ss addsimps [def3]) 1 THEN
   236         simp_tac (HOL_basic_ss addsimps [def2]) 1) lthy;
   237 
   238     val (pos_eqs, val_eqs) = split_list (map_index (fn (i, c) =>
   239       let
   240         val n = HOLogic.mk_number HOLogic.intT i;
   241         val th = Goal.prove lthy' [] []
   242           (HOLogic.mk_Trueprop (HOLogic.mk_eq (p $ c, n)))
   243           (fn _ => simp_tac (simpset_of lthy' addsimps [def1]) 1);
   244         val th' = Goal.prove lthy' [] []
   245           (HOLogic.mk_Trueprop (HOLogic.mk_eq (v $ n, c)))
   246           (fn _ =>
   247              rtac (@{thm inj_pos} RS @{thm injD}) 1 THEN
   248              simp_tac (simpset_of lthy' addsimps
   249                [@{thm pos_val}, range_pos, card_UNIV, th]) 1)
   250       in (th, th') end) cs);
   251 
   252     val first_el = Goal.prove lthy' [] []
   253       (HOLogic.mk_Trueprop (HOLogic.mk_eq
   254          (Const (@{const_name first_el}, T), hd cs)))
   255       (fn _ => simp_tac (simpset_of lthy' addsimps
   256          [@{thm first_el_def}, hd val_eqs]) 1);
   257 
   258     val last_el = Goal.prove lthy' [] []
   259       (HOLogic.mk_Trueprop (HOLogic.mk_eq
   260          (Const (@{const_name last_el}, T), List.last cs)))
   261       (fn _ => simp_tac (simpset_of lthy' addsimps
   262          [@{thm last_el_def}, List.last val_eqs, card_UNIV]) 1);
   263 
   264     val simp_att = [Attrib.internal (K Simplifier.simp_add)]
   265 
   266   in
   267     lthy' |>
   268     Local_Theory.note
   269       ((Binding.name (tyname ^ "_card"), simp_att), [card_UNIV]) ||>>
   270     Local_Theory.note
   271       ((Binding.name (tyname ^ "_pos"), simp_att), pos_eqs) ||>>
   272     Local_Theory.note
   273       ((Binding.name (tyname ^ "_val"), simp_att), val_eqs) ||>>
   274     Local_Theory.note
   275       ((Binding.name (tyname ^ "_first_el"), simp_att), [first_el]) ||>>
   276     Local_Theory.note
   277       ((Binding.name (tyname ^ "_last_el"), simp_att), [last_el]) |> snd |>
   278     Local_Theory.exit_global
   279   end;
   280 
   281 
   282 fun check_no_assoc thy prfx s = case get_type thy prfx s of
   283     NONE => ()
   284   | SOME _ => error ("Cannot associate a type with " ^ s ^
   285       "\nsince it is no record or enumeration type");
   286 
   287 fun check_enum [] [] = NONE 
   288   | check_enum els [] = SOME ("has no element(s) " ^ commas els)
   289   | check_enum [] cs = SOME ("has extra element(s) " ^
   290       commas (map (Long_Name.base_name o fst) cs))
   291   | check_enum (el :: els) ((cname, _) :: cs) =
   292       if lcase_eq (el, cname) then check_enum els cs
   293       else SOME ("either has no element " ^ el ^
   294         " or it is at the wrong position");
   295 
   296 fun add_type_def prfx (s, Basic_Type ty) (ids, thy) =
   297       (check_no_assoc thy prfx s;
   298        (ids,
   299         Typedecl.abbrev_global (Binding.name s, [], NoSyn)
   300           (mk_type thy prfx ty) thy |> snd))
   301 
   302   | add_type_def prfx (s, Enum_Type els) ((tab, ctxt), thy) =
   303       let
   304         val (thy', tyname) = (case get_type thy prfx s of
   305             NONE =>
   306               let
   307                 val tyb = Binding.name s;
   308                 val tyname = Sign.full_name thy tyb
   309               in
   310                 (thy |>
   311                  Datatype.add_datatype {strict = true, quiet = true} [s]
   312                    [([], tyb, NoSyn,
   313                      map (fn s => (Binding.name s, [], NoSyn)) els)] |> snd |>
   314                  add_enum_type s tyname,
   315                  tyname)
   316               end
   317           | SOME (T as Type (tyname, [])) =>
   318               (case Datatype_Data.get_constrs thy tyname of
   319                  NONE => assoc_ty_err thy T s "is not a datatype"
   320                | SOME cs =>
   321                    let
   322                      val (prfx', _) = strip_prfx s;
   323                      val els' =
   324                        if prfx' = "" then els
   325                        else map (unprefix (prfx' ^ "__")) els
   326                          handle Fail _ => error ("Bad enumeration type " ^ s)
   327                    in
   328                      case check_enum els' cs of
   329                        NONE => (thy, tyname)
   330                      | SOME msg => assoc_ty_err thy T s msg
   331                    end));
   332         val cs = map Const (the (Datatype_Data.get_constrs thy' tyname))
   333       in
   334         ((fold (Symtab.update_new o apsnd (rpair s)) (els ~~ cs) tab,
   335           fold Name.declare els ctxt),
   336          thy')
   337       end
   338 
   339   | add_type_def prfx (s, Array_Type (argtys, resty)) (ids, thy) =
   340       (check_no_assoc thy prfx s;
   341        (ids,
   342         Typedecl.abbrev_global (Binding.name s, [], NoSyn)
   343           (foldr1 HOLogic.mk_prodT (map (mk_type thy prfx) argtys) -->
   344              mk_type thy prfx resty) thy |> snd))
   345 
   346   | add_type_def prfx (s, Record_Type fldtys) (ids, thy) =
   347       (ids,
   348        let val fldTs = maps (fn (flds, ty) =>
   349          map (rpair (mk_type thy prfx ty)) flds) fldtys
   350        in case get_type thy prfx s of
   351            NONE =>
   352              Record.add_record true ([], Binding.name s) NONE
   353                (map (fn (fld, T) => (Binding.name fld, T, NoSyn)) fldTs) thy
   354          | SOME rT =>
   355              (case get_record_info thy rT of
   356                 NONE => assoc_ty_err thy rT s "is not a record type"
   357               | SOME {fields, ...} =>
   358                   (case subtract (lcase_eq o pairself fst) fldTs fields of
   359                      [] => ()
   360                    | flds => assoc_ty_err thy rT s ("has extra field(s) " ^
   361                        commas (map (Long_Name.base_name o fst) flds));
   362                    map (fn (fld, T) =>
   363                      case AList.lookup lcase_eq fields fld of
   364                        NONE => assoc_ty_err thy rT s ("has no field " ^ fld)
   365                      | SOME U => T = U orelse assoc_ty_err thy rT s
   366                          ("has field " ^
   367                           fld ^ " whose type\n" ^
   368                           Syntax.string_of_typ_global thy U ^
   369                           "\ndoes not match declared type\n" ^
   370                           Syntax.string_of_typ_global thy T)) fldTs;
   371                    thy))
   372        end)
   373 
   374   | add_type_def prfx (s, Pending_Type) (ids, thy) =
   375       (check_no_assoc thy prfx s;
   376        (ids, Typedecl.typedecl_global (Binding.name s, [], NoSyn) thy |> snd));
   377 
   378 
   379 fun term_of_expr thy prfx types pfuns =
   380   let
   381     fun tm_of vs (Funct ("->", [e, e'])) =
   382           (HOLogic.mk_imp (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   383 
   384       | tm_of vs (Funct ("<->", [e, e'])) =
   385           (HOLogic.mk_eq (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   386 
   387       | tm_of vs (Funct ("or", [e, e'])) =
   388           (HOLogic.mk_disj (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   389 
   390       | tm_of vs (Funct ("and", [e, e'])) =
   391           (HOLogic.mk_conj (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   392 
   393       | tm_of vs (Funct ("not", [e])) =
   394           (HOLogic.mk_not (fst (tm_of vs e)), booleanN)
   395 
   396       | tm_of vs (Funct ("=", [e, e'])) =
   397           (HOLogic.mk_eq (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   398 
   399       | tm_of vs (Funct ("<>", [e, e'])) = (HOLogic.mk_not
   400           (HOLogic.mk_eq (fst (tm_of vs e), fst (tm_of vs e'))), booleanN)
   401 
   402       | tm_of vs (Funct ("<", [e, e'])) = (HOLogic.mk_binrel @{const_name less}
   403           (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   404 
   405       | tm_of vs (Funct (">", [e, e'])) = (HOLogic.mk_binrel @{const_name less}
   406           (fst (tm_of vs e'), fst (tm_of vs e)), booleanN)
   407 
   408       | tm_of vs (Funct ("<=", [e, e'])) = (HOLogic.mk_binrel @{const_name less_eq}
   409           (fst (tm_of vs e), fst (tm_of vs e')), booleanN)
   410 
   411       | tm_of vs (Funct (">=", [e, e'])) = (HOLogic.mk_binrel @{const_name less_eq}
   412           (fst (tm_of vs e'), fst (tm_of vs e)), booleanN)
   413 
   414       | tm_of vs (Funct ("+", [e, e'])) = (HOLogic.mk_binop @{const_name plus}
   415           (fst (tm_of vs e), fst (tm_of vs e')), integerN)
   416 
   417       | tm_of vs (Funct ("-", [e, e'])) = (HOLogic.mk_binop @{const_name minus}
   418           (fst (tm_of vs e), fst (tm_of vs e')), integerN)
   419 
   420       | tm_of vs (Funct ("*", [e, e'])) = (HOLogic.mk_binop @{const_name times}
   421           (fst (tm_of vs e), fst (tm_of vs e')), integerN)
   422 
   423       | tm_of vs (Funct ("/", [e, e'])) = (HOLogic.mk_binop @{const_name divide}
   424           (fst (tm_of vs e), fst (tm_of vs e')), integerN)
   425 
   426       | tm_of vs (Funct ("div", [e, e'])) = (HOLogic.mk_binop @{const_name sdiv}
   427           (fst (tm_of vs e), fst (tm_of vs e')), integerN)
   428 
   429       | tm_of vs (Funct ("mod", [e, e'])) = (HOLogic.mk_binop @{const_name mod}
   430           (fst (tm_of vs e), fst (tm_of vs e')), integerN)
   431 
   432       | tm_of vs (Funct ("-", [e])) =
   433           (mk_unop @{const_name uminus} (fst (tm_of vs e)), integerN)
   434 
   435       | tm_of vs (Funct ("**", [e, e'])) =
   436           (Const (@{const_name power}, HOLogic.intT --> HOLogic.natT -->
   437              HOLogic.intT) $ fst (tm_of vs e) $
   438                (@{const nat} $ fst (tm_of vs e')), integerN)
   439 
   440       | tm_of (tab, _) (Ident s) =
   441           (case Symtab.lookup tab s of
   442              SOME t_ty => t_ty
   443            | NONE => (case lookup_prfx prfx pfuns s of
   444                SOME (SOME ([], resty), t) => (t, resty)
   445              | _ => error ("Undeclared identifier " ^ s)))
   446 
   447       | tm_of _ (Number i) = (HOLogic.mk_number HOLogic.intT i, integerN)
   448 
   449       | tm_of vs (Quantifier (s, xs, ty, e)) =
   450           let
   451             val (ys, vs') = mk_variables thy prfx xs ty vs;
   452             val q = (case s of
   453                 "for_all" => HOLogic.mk_all
   454               | "for_some" => HOLogic.mk_exists)
   455           in
   456             (fold_rev (fn Free (x, T) => fn t => q (x, T, t))
   457                ys (fst (tm_of vs' e)),
   458              booleanN)
   459           end
   460 
   461       | tm_of vs (Funct (s, es)) =
   462 
   463           (* record field selection *)
   464           (case try (unprefix "fld_") s of
   465              SOME fname => (case es of
   466                [e] =>
   467                  let
   468                    val (t, rcdty) = tm_of vs e;
   469                    val rT = mk_type thy prfx rcdty
   470                  in case (get_record_info thy rT, lookup types rcdty) of
   471                      (SOME {fields, ...}, SOME (Record_Type fldtys)) =>
   472                        (case (find_field fname fields,
   473                             find_field' fname fldtys) of
   474                           (SOME (fname', fT), SOME fldty) =>
   475                             (Const (fname', rT --> fT) $ t, fldty)
   476                         | _ => error ("Record " ^ rcdty ^
   477                             " has no field named " ^ fname))
   478                    | _ => error (rcdty ^ " is not a record type")
   479                  end
   480              | _ => error ("Function " ^ s ^ " expects one argument"))
   481            | NONE =>
   482 
   483           (* record field update *)
   484           (case try (unprefix "upf_") s of
   485              SOME fname => (case es of
   486                [e, e'] =>
   487                  let
   488                    val (t, rcdty) = tm_of vs e;
   489                    val rT = mk_type thy prfx rcdty;
   490                    val (u, fldty) = tm_of vs e';
   491                    val fT = mk_type thy prfx fldty
   492                  in case get_record_info thy rT of
   493                      SOME {fields, ...} =>
   494                        (case find_field fname fields of
   495                           SOME (fname', fU) =>
   496                             if fT = fU then
   497                               (Const (fname' ^ "_update",
   498                                  (fT --> fT) --> rT --> rT) $
   499                                    Abs ("x", fT, u) $ t,
   500                                rcdty)
   501                             else error ("Type\n" ^
   502                               Syntax.string_of_typ_global thy fT ^
   503                               "\ndoes not match type\n" ^
   504                               Syntax.string_of_typ_global thy fU ^
   505                               "\nof field " ^ fname)
   506                         | NONE => error ("Record " ^ rcdty ^
   507                             " has no field named " ^ fname))
   508                    | _ => error (rcdty ^ " is not a record type")
   509                  end
   510              | _ => error ("Function " ^ s ^ " expects two arguments"))
   511            | NONE =>
   512 
   513           (* enumeration type to integer *)
   514           (case try (unsuffix "__pos") s of
   515              SOME tyname => (case es of
   516                [e] => (Const (@{const_name pos},
   517                    mk_type thy prfx tyname --> HOLogic.intT) $ fst (tm_of vs e),
   518                  integerN)
   519              | _ => error ("Function " ^ s ^ " expects one argument"))
   520            | NONE =>
   521 
   522           (* integer to enumeration type *)
   523           (case try (unsuffix "__val") s of
   524              SOME tyname => (case es of
   525                [e] => (Const (@{const_name val},
   526                    HOLogic.intT --> mk_type thy prfx tyname) $ fst (tm_of vs e),
   527                  tyname)
   528              | _ => error ("Function " ^ s ^ " expects one argument"))
   529            | NONE =>
   530 
   531           (* successor / predecessor of enumeration type element *)
   532           if s = "succ" orelse s = "pred" then (case es of
   533               [e] =>
   534                 let
   535                   val (t, tyname) = tm_of vs e;
   536                   val T = mk_type thy prfx tyname
   537                 in (Const
   538                   (if s = "succ" then @{const_name succ}
   539                    else @{const_name pred}, T --> T) $ t, tyname)
   540                 end
   541             | _ => error ("Function " ^ s ^ " expects one argument"))
   542 
   543           (* user-defined proof function *)
   544           else
   545             (case lookup_prfx prfx pfuns s of
   546                SOME (SOME (_, resty), t) =>
   547                  (list_comb (t, map (fst o tm_of vs) es), resty)
   548              | _ => error ("Undeclared proof function " ^ s))))))
   549 
   550       | tm_of vs (Element (e, es)) =
   551           let val (t, ty) = tm_of vs e
   552           in case lookup types ty of
   553               SOME (Array_Type (_, elty)) =>
   554                 (t $ foldr1 HOLogic.mk_prod (map (fst o tm_of vs) es), elty)
   555             | _ => error (ty ^ " is not an array type")
   556           end
   557 
   558       | tm_of vs (Update (e, es, e')) =
   559           let val (t, ty) = tm_of vs e
   560           in case lookup types ty of
   561               SOME (Array_Type (idxtys, elty)) =>
   562                 let
   563                   val T = foldr1 HOLogic.mk_prodT
   564                     (map (mk_type thy prfx) idxtys);
   565                   val U = mk_type thy prfx elty;
   566                   val fT = T --> U
   567                 in
   568                   (Const (@{const_name fun_upd}, fT --> T --> U --> fT) $
   569                      t $ foldr1 HOLogic.mk_prod (map (fst o tm_of vs) es) $
   570                        fst (tm_of vs e'),
   571                    ty)
   572                 end
   573             | _ => error (ty ^ " is not an array type")
   574           end
   575 
   576       | tm_of vs (Record (s, flds)) =
   577           let
   578             val T = mk_type thy prfx s;
   579             val {extension = (ext_name, _), fields, ...} =
   580               (case get_record_info thy T of
   581                  NONE => error (s ^ " is not a record type")
   582                | SOME info => info);
   583             val flds' = map (apsnd (tm_of vs)) flds;
   584             val fnames = map (Long_Name.base_name o fst) fields;
   585             val fnames' = map fst flds;
   586             val (fvals, ftys) = split_list (map (fn s' =>
   587               case AList.lookup lcase_eq flds' s' of
   588                 SOME fval_ty => fval_ty
   589               | NONE => error ("Field " ^ s' ^ " missing in record " ^ s))
   590                   fnames);
   591             val _ = (case subtract lcase_eq fnames fnames' of
   592                 [] => ()
   593               | xs => error ("Extra field(s) " ^ commas xs ^
   594                   " in record " ^ s));
   595             val _ = (case duplicates (op =) fnames' of
   596                 [] => ()
   597               | xs => error ("Duplicate field(s) " ^ commas xs ^
   598                   " in record " ^ s))
   599           in
   600             (list_comb
   601                (Const (ext_name,
   602                   map (mk_type thy prfx) ftys @ [HOLogic.unitT] ---> T),
   603                 fvals @ [HOLogic.unit]),
   604              s)
   605           end
   606 
   607       | tm_of vs (Array (s, default, assocs)) =
   608           (case lookup types s of
   609              SOME (Array_Type (idxtys, elty)) =>
   610                let
   611                  val Ts = map (mk_type thy prfx) idxtys;
   612                  val T = foldr1 HOLogic.mk_prodT Ts;
   613                  val U = mk_type thy prfx elty;
   614                  fun mk_idx' T (e, NONE) = HOLogic.mk_set T [fst (tm_of vs e)]
   615                    | mk_idx' T (e, SOME e') = Const (@{const_name atLeastAtMost},
   616                        T --> T --> HOLogic.mk_setT T) $
   617                          fst (tm_of vs e) $ fst (tm_of vs e');
   618                  fun mk_idx idx =
   619                    if length Ts <> length idx then
   620                      error ("Arity mismatch in construction of array " ^ s)
   621                    else foldr1 mk_times (map2 mk_idx' Ts idx);
   622                  fun mk_upd (idxs, e) t =
   623                    if length idxs = 1 andalso forall (is_none o snd) (hd idxs)
   624                    then
   625                      Const (@{const_name fun_upd}, (T --> U) -->
   626                          T --> U --> T --> U) $ t $
   627                        foldl1 HOLogic.mk_prod
   628                          (map (fst o tm_of vs o fst) (hd idxs)) $
   629                        fst (tm_of vs e)
   630                    else
   631                      Const (@{const_name fun_upds}, (T --> U) -->
   632                          HOLogic.mk_setT T --> U --> T --> U) $ t $
   633                        foldl1 (HOLogic.mk_binop @{const_name sup})
   634                          (map mk_idx idxs) $
   635                        fst (tm_of vs e)
   636                in
   637                  (fold mk_upd assocs
   638                     (case default of
   639                        SOME e => Abs ("x", T, fst (tm_of vs e))
   640                      | NONE => Const (@{const_name undefined}, T --> U)),
   641                   s)
   642                end
   643            | _ => error (s ^ " is not an array type"))
   644 
   645   in tm_of end;
   646 
   647 
   648 fun term_of_rule thy prfx types pfuns ids rule =
   649   let val tm_of = fst o term_of_expr thy prfx types pfuns ids
   650   in case rule of
   651       Inference_Rule (es, e) => Logic.list_implies
   652         (map (HOLogic.mk_Trueprop o tm_of) es, HOLogic.mk_Trueprop (tm_of e))
   653     | Substitution_Rule (es, e, e') => Logic.list_implies
   654         (map (HOLogic.mk_Trueprop o tm_of) es,
   655          HOLogic.mk_Trueprop (HOLogic.mk_eq (tm_of e, tm_of e')))
   656   end;
   657 
   658 
   659 val builtin = Symtab.make (map (rpair ())
   660   ["->", "<->", "or", "and", "not", "=", "<>", "<", ">", "<=", ">=",
   661    "+", "-", "*", "/", "div", "mod", "**"]);
   662 
   663 fun complex_expr (Number _) = false
   664   | complex_expr (Ident _) = false 
   665   | complex_expr (Funct (s, es)) =
   666       not (Symtab.defined builtin s) orelse exists complex_expr es
   667   | complex_expr (Quantifier (_, _, _, e)) = complex_expr e
   668   | complex_expr _ = true;
   669 
   670 fun complex_rule (Inference_Rule (es, e)) =
   671       complex_expr e orelse exists complex_expr es
   672   | complex_rule (Substitution_Rule (es, e, e')) =
   673       complex_expr e orelse complex_expr e' orelse
   674       exists complex_expr es;
   675 
   676 val is_pfun =
   677   Symtab.defined builtin orf
   678   can (unprefix "fld_") orf can (unprefix "upf_") orf
   679   can (unsuffix "__pos") orf can (unsuffix "__val") orf
   680   equal "succ" orf equal "pred";
   681 
   682 fun fold_opt f = the_default I o Option.map f;
   683 fun fold_pair f g (x, y) = f x #> g y;
   684 
   685 fun fold_expr f g (Funct (s, es)) = f s #> fold (fold_expr f g) es
   686   | fold_expr f g (Ident s) = g s
   687   | fold_expr f g (Number _) = I
   688   | fold_expr f g (Quantifier (_, _, _, e)) = fold_expr f g e
   689   | fold_expr f g (Element (e, es)) =
   690       fold_expr f g e #> fold (fold_expr f g) es
   691   | fold_expr f g (Update (e, es, e')) =
   692       fold_expr f g e #> fold (fold_expr f g) es #> fold_expr f g e'
   693   | fold_expr f g (Record (_, flds)) = fold (fold_expr f g o snd) flds
   694   | fold_expr f g (Array (_, default, assocs)) =
   695       fold_opt (fold_expr f g) default #>
   696       fold (fold_pair
   697         (fold (fold (fold_pair
   698           (fold_expr f g) (fold_opt (fold_expr f g)))))
   699         (fold_expr f g)) assocs;
   700 
   701 fun add_expr_pfuns funs = fold_expr
   702   (fn s => if is_pfun s then I else insert (op =) s)
   703   (fn s => if is_none (lookup funs s) then I else insert (op =) s);
   704 
   705 val add_expr_idents = fold_expr (K I) (insert (op =));
   706 
   707 fun pfun_type thy prfx (argtys, resty) =
   708   map (mk_type thy prfx) argtys ---> mk_type thy prfx resty;
   709 
   710 fun check_pfun_type thy prfx s t optty1 optty2 =
   711   let
   712     val T = fastype_of t;
   713     fun check ty =
   714       let val U = pfun_type thy prfx ty
   715       in
   716         T = U orelse
   717         error ("Type\n" ^
   718           Syntax.string_of_typ_global thy T ^
   719           "\nof function " ^
   720           Syntax.string_of_term_global thy t ^
   721           " associated with proof function " ^ s ^
   722           "\ndoes not match declared type\n" ^
   723           Syntax.string_of_typ_global thy U)
   724       end
   725   in (Option.map check optty1; Option.map check optty2; ()) end;
   726 
   727 fun upd_option x y = if is_some x then x else y;
   728 
   729 fun check_pfuns_types thy prfx funs =
   730   Symtab.map (fn s => fn (optty, t) =>
   731    let val optty' = lookup funs
   732      (if prfx = "" then s
   733       else unprefix (prfx ^ "__") s handle Fail _ => s)
   734    in
   735      (check_pfun_type thy prfx s t optty optty';
   736       (NONE |> upd_option optty |> upd_option optty', t))
   737    end);
   738 
   739 
   740 (** the VC store **)
   741 
   742 fun err_vcs names = error (Pretty.string_of
   743   (Pretty.big_list "The following verification conditions have not been proved:"
   744     (map Pretty.str names)))
   745 
   746 fun set_env (env as {funs, prefix, ...}) thy = VCs.map (fn
   747     {pfuns, type_map, env = NONE} =>
   748       {pfuns = check_pfuns_types thy prefix funs pfuns,
   749        type_map = type_map,
   750        env = SOME env}
   751   | _ => err_unfinished ()) thy;
   752 
   753 fun mk_pat s = (case Int.fromString s of
   754     SOME i => [HOLogic.mk_Trueprop (Var (("C", i), HOLogic.boolT))]
   755   | NONE => error ("Bad conclusion identifier: C" ^ s));
   756 
   757 fun mk_vc thy prfx types pfuns ids (tr, proved, ps, cs) =
   758   let val prop_of =
   759     HOLogic.mk_Trueprop o fst o term_of_expr thy prfx types pfuns ids
   760   in
   761     (tr, proved,
   762      Element.Assumes (map (fn (s', e) =>
   763        ((Binding.name ("H" ^ s'), []), [(prop_of e, [])])) ps),
   764      Element.Shows (map (fn (s', e) =>
   765        (Attrib.empty_binding, [(prop_of e, mk_pat s')])) cs))
   766   end;
   767 
   768 fun fold_vcs f vcs =
   769   VCtab.fold (fn (_, (_, _, ps, cs)) => fold f ps #> fold f cs) vcs;
   770 
   771 fun pfuns_of_vcs prfx funs pfuns vcs =
   772   fold_vcs (add_expr_pfuns funs o snd) vcs [] |>
   773   filter (is_none o lookup_prfx prfx pfuns);
   774 
   775 fun declare_missing_pfuns thy prfx funs pfuns vcs (tab, ctxt) =
   776   let
   777     val (fs, (tys, Ts)) =
   778       pfuns_of_vcs prfx funs pfuns vcs |>
   779       map_filter (fn s => lookup funs s |>
   780         Option.map (fn ty => (s, (SOME ty, pfun_type thy prfx ty)))) |>
   781       split_list ||> split_list;
   782     val (fs', ctxt') = fold_map Name.variant fs ctxt
   783   in
   784     (fold Symtab.update_new (fs ~~ (tys ~~ map Free (fs' ~~ Ts))) pfuns,
   785      Element.Fixes (map2 (fn s => fn T =>
   786        (Binding.name s, SOME T, NoSyn)) fs' Ts),
   787      (tab, ctxt'))
   788   end;
   789 
   790 fun add_proof_fun prep (s, (optty, raw_t)) thy =
   791   VCs.map (fn
   792       {env = SOME {proving = true, ...}, ...} => err_unfinished ()
   793     | {pfuns, type_map, env} =>
   794         let
   795           val (optty', prfx) = (case env of
   796               SOME {funs, prefix, ...} => (lookup funs s, prefix)
   797             | NONE => (NONE, ""));
   798           val optty'' = NONE |> upd_option optty |> upd_option optty';
   799           val t = prep (Option.map (pfun_type thy prfx) optty'') raw_t;
   800           val _ = (case fold_aterms (fn u =>
   801               if is_Var u orelse is_Free u then insert (op =) u else I) t [] of
   802               [] => ()
   803             | ts => error ("Term\n" ^ Syntax.string_of_term_global thy t ^
   804                 "\nto be associated with proof function " ^ s ^
   805                 " contains free variable(s) " ^
   806                 commas (map (Syntax.string_of_term_global thy) ts)));
   807         in
   808           (check_pfun_type thy prfx s t optty optty';
   809            if is_some optty'' orelse is_none env then
   810              {pfuns = Symtab.update_new (s, (optty'', t)) pfuns,
   811               type_map = type_map,
   812               env = env}
   813                handle Symtab.DUP _ => error ("Proof function " ^ s ^
   814                  " already associated with function")
   815            else error ("Undeclared proof function " ^ s))
   816         end) thy;
   817 
   818 fun add_type (s, T as Type (tyname, Ts)) thy =
   819       thy |>
   820       VCs.map (fn
   821           {env = SOME _, ...} => err_unfinished ()
   822         | {pfuns, type_map, env} =>
   823             {pfuns = pfuns,
   824              type_map = Symtab.update_new (s, T) type_map,
   825              env = env}
   826               handle Symtab.DUP _ => error ("SPARK type " ^ s ^
   827                 " already associated with type")) |>
   828       (fn thy' =>
   829          case Datatype_Data.get_constrs thy' tyname of
   830            NONE => thy'
   831          | SOME cs =>
   832              if null Ts then
   833                (map
   834                   (fn (_, Type (_, [])) => ()
   835                     | (cname, _) => assoc_ty_err thy T s
   836                         ("has illegal constructor " ^
   837                          Long_Name.base_name cname)) cs;
   838                 add_enum_type s tyname thy')
   839              else assoc_ty_err thy T s "is illegal")
   840   | add_type (s, T) thy = assoc_ty_err thy T s "is illegal";
   841 
   842 val is_closed = is_none o #env o VCs.get;
   843 
   844 fun lookup_vc thy name =
   845   (case VCs.get thy of
   846     {env = SOME {vcs, types, funs, ids, ctxt, prefix, ...}, pfuns, ...} =>
   847       (case VCtab.lookup vcs name of
   848          SOME vc =>
   849            let val (pfuns', ctxt', ids') =
   850              declare_missing_pfuns thy prefix funs pfuns vcs ids
   851            in SOME (ctxt @ [ctxt'], mk_vc thy prefix types pfuns' ids' vc) end
   852        | NONE => NONE)
   853   | _ => NONE);
   854 
   855 fun get_vcs thy = (case VCs.get thy of
   856     {env = SOME {vcs, types, funs, ids, ctxt, defs, prefix, ...}, pfuns, ...} =>
   857       let val (pfuns', ctxt', ids') =
   858         declare_missing_pfuns thy prefix funs pfuns vcs ids
   859       in
   860         (ctxt @ [ctxt'], defs,
   861          VCtab.dest vcs |>
   862          map (apsnd (mk_vc thy prefix types pfuns' ids')))
   863       end
   864   | _ => ([], [], []));
   865 
   866 fun mark_proved name thms = VCs.map (fn
   867     {pfuns, type_map,
   868      env = SOME {ctxt, defs, types, funs, ids, vcs, path, prefix, ...}} =>
   869       {pfuns = pfuns,
   870        type_map = type_map,
   871        env = SOME {ctxt = ctxt, defs = defs,
   872          types = types, funs = funs, ids = ids,
   873          proving = true,
   874          vcs = VCtab.map_entry name (fn (trace, _, ps, cs) =>
   875            (trace, SOME thms, ps, cs)) vcs,
   876          path = path,
   877          prefix = prefix}}
   878   | x => x);
   879 
   880 fun close thy =
   881   thy |>
   882   VCs.map (fn
   883       {pfuns, type_map, env = SOME {vcs, path, ...}} =>
   884         (case VCtab.fold_rev (fn vc as (_, (_, p, _, _)) =>
   885              (if is_some p then apfst else apsnd) (cons vc)) vcs ([], []) of
   886            (proved, []) =>
   887              (Thm.join_proofs (maps (the o #2 o snd) proved);
   888               File.write (Path.ext "prv" path)
   889                 (implode (map (fn (s, _) => snd (strip_number s) ^
   890                    " -- proved by " ^ Distribution.version ^ "\n") proved));
   891               {pfuns = pfuns, type_map = type_map, env = NONE})
   892          | (_, unproved) => err_vcs (map fst unproved))
   893     | _ => error "No SPARK environment is currently open") |>
   894   Sign.parent_path;
   895 
   896 
   897 (** set up verification conditions **)
   898 
   899 fun partition_opt f =
   900   let
   901     fun part ys zs [] = (rev ys, rev zs)
   902       | part ys zs (x :: xs) = (case f x of
   903             SOME y => part (y :: ys) zs xs
   904           | NONE => part ys (x :: zs) xs)
   905   in part [] [] end;
   906 
   907 fun dest_def (id, (Substitution_Rule ([], Ident s, rhs))) = SOME (id, (s, rhs))
   908   | dest_def _ = NONE;
   909 
   910 fun mk_rulename (s, i) = Binding.name (s ^ string_of_int i);
   911 
   912 fun add_const prfx (s, ty) ((tab, ctxt), thy) =
   913   let
   914     val T = mk_type thy prfx ty;
   915     val b = Binding.name s;
   916     val c = Const (Sign.full_name thy b, T)
   917   in
   918     (c,
   919      ((Symtab.update (s, (c, ty)) tab, Name.declare s ctxt),
   920       Sign.add_consts_i [(b, T, NoSyn)] thy))
   921   end;
   922 
   923 fun add_def prfx types pfuns consts (id, (s, e)) (ids as (tab, ctxt), thy) =
   924   (case lookup consts s of
   925      SOME ty =>
   926        let
   927          val (t, ty') = term_of_expr thy prfx types pfuns ids e;
   928          val T = mk_type thy prfx ty;
   929          val T' = mk_type thy prfx ty';
   930          val _ = T = T' orelse
   931            error ("Declared type " ^ ty ^ " of " ^ s ^
   932              "\ndoes not match type " ^ ty' ^ " in definition");
   933          val id' = mk_rulename id;
   934          val lthy = Named_Target.theory_init thy;
   935          val ((t', (_, th)), lthy') = Specification.definition
   936            (NONE, ((id', []), HOLogic.mk_Trueprop (HOLogic.mk_eq
   937              (Free (s, T), t)))) lthy;
   938          val phi = Proof_Context.export_morphism lthy' lthy
   939        in
   940          ((id', Morphism.thm phi th),
   941           ((Symtab.update (s, (Morphism.term phi t', ty)) tab,
   942             Name.declare s ctxt),
   943            Local_Theory.exit_global lthy'))
   944        end
   945    | NONE => error ("Undeclared constant " ^ s));
   946 
   947 fun add_var prfx (s, ty) (ids, thy) =
   948   let val ([Free p], ids') = mk_variables thy prfx [s] ty ids
   949   in (p, (ids', thy)) end;
   950 
   951 fun add_init_vars prfx vcs (ids_thy as ((tab, _), _)) =
   952   fold_map (add_var prfx)
   953     (map_filter
   954        (fn s => case try (unsuffix "~") s of
   955           SOME s' => (case Symtab.lookup tab s' of
   956             SOME (_, ty) => SOME (s, ty)
   957           | NONE => error ("Undeclared identifier " ^ s'))
   958         | NONE => NONE)
   959        (fold_vcs (add_expr_idents o snd) vcs []))
   960     ids_thy;
   961 
   962 fun is_trivial_vc ([], [(_, Ident "true")]) = true
   963   | is_trivial_vc _ = false;
   964 
   965 fun rulenames rules = commas
   966   (map (fn ((s, i), _) => s ^ "(" ^ string_of_int i ^ ")") rules);
   967 
   968 (* sort definitions according to their dependency *)
   969 fun sort_defs _ _ _ _ [] sdefs = rev sdefs
   970   | sort_defs prfx funs pfuns consts defs sdefs =
   971       (case find_first (fn (_, (_, e)) =>
   972          forall (is_some o lookup_prfx prfx pfuns)
   973            (add_expr_pfuns funs e []) andalso
   974          forall (fn id =>
   975            member (fn (s, (_, (s', _))) => s = s') sdefs id orelse
   976            consts id)
   977              (add_expr_idents e [])) defs of
   978          SOME d => sort_defs prfx funs pfuns consts
   979            (remove (op =) d defs) (d :: sdefs)
   980        | NONE => error ("Bad definitions: " ^ rulenames defs));
   981 
   982 fun set_vcs ({types, vars, consts, funs} : decls)
   983       (rules, _) ((_, ident), vcs) path prfx thy =
   984   let
   985     val {pfuns, ...} = VCs.get thy;
   986     val (defs, rules') = partition_opt dest_def rules;
   987     val consts' =
   988       subtract (fn ((_, (s, _)), (s', _)) => s = s') defs (items consts);
   989     (* ignore all complex rules in rls files *)
   990     val (rules'', other_rules) =
   991       List.partition (complex_rule o snd) rules';
   992     val _ = if null rules'' then ()
   993       else warning ("Ignoring rules: " ^ rulenames rules'');
   994 
   995     val vcs' = VCtab.make (maps (fn (tr, vcs) =>
   996       map (fn (s, (ps, cs)) => (s, (tr, NONE, ps, cs)))
   997         (filter_out (is_trivial_vc o snd) vcs)) vcs);
   998 
   999     val _ = (case filter_out (is_some o lookup funs)
  1000         (pfuns_of_vcs prfx funs pfuns vcs') of
  1001         [] => ()
  1002       | fs => error ("Undeclared proof function(s) " ^ commas fs));
  1003 
  1004     val (((defs', vars''), ivars), (ids, thy')) =
  1005       ((Symtab.empty |>
  1006         Symtab.update ("false", (HOLogic.false_const, booleanN)) |>
  1007         Symtab.update ("true", (HOLogic.true_const, booleanN)),
  1008         Name.context),
  1009        thy |> Sign.add_path (Long_Name.base_name ident)) |>
  1010       fold (add_type_def prfx) (items types) |>
  1011       fold (snd oo add_const prfx) consts' |> (fn ids_thy as ((tab, _), _) =>
  1012         ids_thy |>
  1013         fold_map (add_def prfx types pfuns consts)
  1014           (sort_defs prfx funs pfuns (Symtab.defined tab) defs []) ||>>
  1015         fold_map (add_var prfx) (items vars) ||>>
  1016         add_init_vars prfx vcs');
  1017 
  1018     val ctxt =
  1019       [Element.Fixes (map (fn (s, T) =>
  1020          (Binding.name s, SOME T, NoSyn)) (vars'' @ ivars)),
  1021        Element.Assumes (map (fn (id, rl) =>
  1022          ((mk_rulename id, []),
  1023           [(term_of_rule thy' prfx types pfuns ids rl, [])]))
  1024            other_rules),
  1025        Element.Notes ("", [((Binding.name "defns", []), map (rpair [] o single o snd) defs')])]
  1026           
  1027   in
  1028     set_env {ctxt = ctxt, defs = defs', types = types, funs = funs,
  1029       ids = ids, proving = false, vcs = vcs', path = path, prefix = prfx} thy'
  1030   end;
  1031 
  1032 end;