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