| author | wenzelm | 
| Sat, 09 Aug 2008 22:43:46 +0200 | |
| changeset 27809 | a1e409db516b | 
| parent 27758 | c1e60d8cba07 | 
| child 28054 | 2b84d34c5d02 | 
| permissions | -rw-r--r-- | 
| 11520 | 1 | (* Title: Pure/codegen.ML | 
| 2 | ID: $Id$ | |
| 11539 | 3 | Author: Stefan Berghofer, TU Muenchen | 
| 11520 | 4 | |
| 11539 | 5 | Generic code generator. | 
| 11520 | 6 | *) | 
| 7 | ||
| 8 | signature CODEGEN = | |
| 9 | sig | |
| 10 | val quiet_mode : bool ref | |
| 11 | val message : string -> unit | |
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 12 | val mode : string list ref | 
| 13886 
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
 berghofe parents: 
13753diff
changeset | 13 | val margin : int ref | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 14 | val string_of : Pretty.T -> string | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 15 | val str : string -> Pretty.T | 
| 11520 | 16 | |
| 12452 | 17 | datatype 'a mixfix = | 
| 11520 | 18 | Arg | 
| 19 | | Ignore | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 20 | | Module | 
| 11520 | 21 | | Pretty of Pretty.T | 
| 12452 | 22 | | Quote of 'a; | 
| 11520 | 23 | |
| 16649 | 24 | type deftab | 
| 17144 | 25 | type node | 
| 16649 | 26 | type codegr | 
| 12452 | 27 | type 'a codegen | 
| 28 | ||
| 29 | val add_codegen: string -> term codegen -> theory -> theory | |
| 30 | val add_tycodegen: string -> typ codegen -> theory -> theory | |
| 15261 | 31 | val add_preprocessor: (theory -> thm list -> thm list) -> theory -> theory | 
| 32 | val preprocess: theory -> thm list -> thm list | |
| 17549 | 33 | val preprocess_term: theory -> term -> term | 
| 11520 | 34 | val print_codegens: theory -> unit | 
| 17144 | 35 | val generate_code: theory -> string list -> string -> (string * string) list -> | 
| 36 | (string * string) list * codegr | |
| 37 | val generate_code_i: theory -> string list -> string -> (string * term) list -> | |
| 38 | (string * string) list * codegr | |
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 39 | val assoc_const: string * (term mixfix list * | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 40 | (string * string) list) -> theory -> theory | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 41 | val assoc_const_i: (string * typ) * (term mixfix list * | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 42 | (string * string) list) -> theory -> theory | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 43 | val assoc_type: xstring * (typ mixfix list * | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 44 | (string * string) list) -> theory -> theory | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 45 | val get_assoc_code: theory -> string * typ -> | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 46 | (term mixfix list * (string * string) list) option | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 47 | val get_assoc_type: theory -> string -> | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 48 | (typ mixfix list * (string * string) list) option | 
| 17144 | 49 | val codegen_error: codegr -> string -> string -> 'a | 
| 16649 | 50 | val invoke_codegen: theory -> deftab -> string -> string -> bool -> | 
| 51 | codegr * term -> codegr * Pretty.T | |
| 52 | val invoke_tycodegen: theory -> deftab -> string -> string -> bool -> | |
| 53 | codegr * typ -> codegr * Pretty.T | |
| 14858 | 54 | val mk_id: string -> string | 
| 17144 | 55 | val mk_qual_id: string -> string * string -> string | 
| 56 | val mk_const_id: string -> string -> codegr -> codegr * (string * string) | |
| 57 | val get_const_id: string -> codegr -> string * string | |
| 58 | val mk_type_id: string -> string -> codegr -> codegr * (string * string) | |
| 59 | val get_type_id: string -> codegr -> string * string | |
| 27398 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 60 | val thyname_of_type: theory -> string -> string | 
| 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 61 | val thyname_of_const: theory -> string -> string | 
| 16649 | 62 | val rename_terms: term list -> term list | 
| 11520 | 63 | val rename_term: term -> term | 
| 15398 | 64 | val new_names: term -> string list -> string list | 
| 65 | val new_name: term -> string -> string | |
| 17144 | 66 | val if_library: 'a -> 'a -> 'a | 
| 16649 | 67 | val get_defn: theory -> deftab -> string -> typ -> | 
| 68 | ((typ * (string * (term list * term))) * int option) option | |
| 24908 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 wenzelm parents: 
24867diff
changeset | 69 | val is_instance: typ -> typ -> bool | 
| 11520 | 70 | val parens: Pretty.T -> Pretty.T | 
| 71 | val mk_app: bool -> Pretty.T -> Pretty.T list -> Pretty.T | |
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 72 | val mk_tuple: Pretty.T list -> Pretty.T | 
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 73 | val mk_let: (Pretty.T * Pretty.T) list -> Pretty.T -> Pretty.T | 
| 11520 | 74 | val eta_expand: term -> term list -> int -> term | 
| 14105 | 75 | val strip_tname: string -> string | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 76 | val mk_type: bool -> typ -> Pretty.T | 
| 17144 | 77 | val mk_term_of: codegr -> string -> bool -> typ -> Pretty.T | 
| 78 | val mk_gen: codegr -> string -> bool -> string list -> string -> typ -> Pretty.T | |
| 14105 | 79 | val test_fn: (int -> (string * term) list option) ref | 
| 24456 | 80 | val test_term: theory -> bool -> int -> int -> term -> (string * term) list option | 
| 81 | val auto_quickcheck: bool ref | |
| 24805 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 82 | val auto_quickcheck_time_limit: int ref | 
| 24655 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 83 | val eval_result: (unit -> term) ref | 
| 17549 | 84 | val eval_term: theory -> term -> term | 
| 20599 | 85 | val evaluation_conv: cterm -> thm | 
| 12452 | 86 | val parse_mixfix: (string -> 'a) -> string -> 'a mixfix list | 
| 18102 | 87 | val quotes_of: 'a mixfix list -> 'a list | 
| 18281 | 88 | val num_args_of: 'a mixfix list -> int | 
| 18102 | 89 | val replace_quotes: 'b list -> 'a mixfix list -> 'b mixfix list | 
| 16649 | 90 | val mk_deftab: theory -> deftab | 
| 19341 
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
 haftmann parents: 
19299diff
changeset | 91 | val add_unfold: thm -> theory -> theory | 
| 17549 | 92 | |
| 17144 | 93 | val get_node: codegr -> string -> node | 
| 94 | val add_edge: string * string -> codegr -> codegr | |
| 95 | val add_edge_acyclic: string * string -> codegr -> codegr | |
| 96 | val del_nodes: string list -> codegr -> codegr | |
| 97 | val map_node: string -> (node -> node) -> codegr -> codegr | |
| 98 | val new_node: string * node -> codegr -> codegr | |
| 11520 | 99 | end; | 
| 100 | ||
| 101 | structure Codegen : CODEGEN = | |
| 102 | struct | |
| 103 | ||
| 104 | val quiet_mode = ref true; | |
| 105 | fun message s = if !quiet_mode then () else writeln s; | |
| 106 | ||
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 107 | val mode = ref ([] : string list); | 
| 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 108 | |
| 13886 
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
 berghofe parents: 
13753diff
changeset | 109 | val margin = ref 80; | 
| 
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
 berghofe parents: 
13753diff
changeset | 110 | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 111 | fun string_of p = (Pretty.string_of |> | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 112 | PrintMode.setmp [] |> | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 113 | Pretty.setmp_margin (!margin)) p; | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 114 | |
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 115 | val str = PrintMode.setmp [] Pretty.str; | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 116 | |
| 11520 | 117 | (**** Mixfix syntax ****) | 
| 118 | ||
| 12452 | 119 | datatype 'a mixfix = | 
| 11520 | 120 | Arg | 
| 121 | | Ignore | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 122 | | Module | 
| 11520 | 123 | | Pretty of Pretty.T | 
| 12452 | 124 | | Quote of 'a; | 
| 11520 | 125 | |
| 126 | fun is_arg Arg = true | |
| 127 | | is_arg Ignore = true | |
| 128 | | is_arg _ = false; | |
| 129 | ||
| 12452 | 130 | fun quotes_of [] = [] | 
| 131 | | quotes_of (Quote q :: ms) = q :: quotes_of ms | |
| 132 | | quotes_of (_ :: ms) = quotes_of ms; | |
| 133 | ||
| 134 | fun args_of [] xs = ([], xs) | |
| 135 | | args_of (Arg :: ms) (x :: xs) = apfst (cons x) (args_of ms xs) | |
| 136 | | args_of (Ignore :: ms) (_ :: xs) = args_of ms xs | |
| 137 | | args_of (_ :: ms) xs = args_of ms xs; | |
| 11520 | 138 | |
| 18281 | 139 | fun num_args_of x = length (List.filter is_arg x); | 
| 11520 | 140 | |
| 141 | ||
| 142 | (**** theory data ****) | |
| 143 | ||
| 16649 | 144 | (* preprocessed definition table *) | 
| 145 | ||
| 146 | type deftab = | |
| 147 | (typ * (* type of constant *) | |
| 148 | (string * (* name of theory containing definition of constant *) | |
| 149 | (term list * (* parameters *) | |
| 150 | term))) (* right-hand side *) | |
| 151 | list Symtab.table; | |
| 152 | ||
| 153 | (* code dependency graph *) | |
| 154 | ||
| 17144 | 155 | type nametab = (string * string) Symtab.table * unit Symtab.table; | 
| 156 | ||
| 157 | fun merge_nametabs ((tab, used), (tab', used')) = | |
| 158 | (Symtab.merge op = (tab, tab'), Symtab.merge op = (used, used')); | |
| 159 | ||
| 160 | type node = | |
| 16649 | 161 | (exn option * (* slot for arbitrary data *) | 
| 162 | string * (* name of structure containing piece of code *) | |
| 17144 | 163 | string); (* piece of code *) | 
| 164 | ||
| 165 | type codegr = | |
| 166 | node Graph.T * | |
| 167 | (nametab * (* table for assigned constant names *) | |
| 168 | nametab); (* table for assigned type names *) | |
| 169 | ||
| 170 | val emptygr : codegr = (Graph.empty, | |
| 171 | ((Symtab.empty, Symtab.empty), (Symtab.empty, Symtab.empty))); | |
| 16649 | 172 | |
| 14105 | 173 | (* type of code generators *) | 
| 11520 | 174 | |
| 16649 | 175 | type 'a codegen = | 
| 176 | theory -> (* theory in which generate_code was called *) | |
| 177 | deftab -> (* definition table (for efficiency) *) | |
| 178 | codegr -> (* code dependency graph *) | |
| 179 | string -> (* node name of caller (for recording dependencies) *) | |
| 17144 | 180 | string -> (* module name of caller (for modular code generation) *) | 
| 16649 | 181 | bool -> (* whether to parenthesize generated expression *) | 
| 182 | 'a -> (* item to generate code from *) | |
| 183 | (codegr * Pretty.T) option; | |
| 12452 | 184 | |
| 14105 | 185 | (* parameters for random testing *) | 
| 186 | ||
| 187 | type test_params = | |
| 188 |   {size: int, iterations: int, default_type: typ option};
 | |
| 189 | ||
| 190 | fun merge_test_params | |
| 191 |   {size = size1, iterations = iterations1, default_type = default_type1}
 | |
| 192 |   {size = size2, iterations = iterations2, default_type = default_type2} =
 | |
| 193 |   {size = Int.max (size1, size2),
 | |
| 194 | iterations = Int.max (iterations1, iterations2), | |
| 195 | default_type = case default_type1 of | |
| 15531 | 196 | NONE => default_type2 | 
| 14105 | 197 | | _ => default_type1}; | 
| 198 | ||
| 199 | val default_test_params : test_params = | |
| 15531 | 200 |   {size = 10, iterations = 100, default_type = NONE};
 | 
| 14105 | 201 | |
| 202 | fun set_size size ({iterations, default_type, ...} : test_params) =
 | |
| 203 |   {size = size, iterations = iterations, default_type = default_type};
 | |
| 204 | ||
| 205 | fun set_iterations iterations ({size, default_type, ...} : test_params) =
 | |
| 206 |   {size = size, iterations = iterations, default_type = default_type};
 | |
| 207 | ||
| 16458 | 208 | fun set_default_type s thy ({size, iterations, ...} : test_params) =
 | 
| 14105 | 209 |   {size = size, iterations = iterations,
 | 
| 24707 | 210 | default_type = SOME (Syntax.read_typ_global thy s)}; | 
| 14105 | 211 | |
| 22846 | 212 | |
| 213 | (* theory data *) | |
| 16458 | 214 | |
| 215 | structure CodegenData = TheoryDataFun | |
| 22846 | 216 | ( | 
| 11520 | 217 | type T = | 
| 12452 | 218 |     {codegens : (string * term codegen) list,
 | 
| 219 | tycodegens : (string * typ codegen) list, | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 220 | consts : ((string * typ) * (term mixfix list * (string * string) list)) list, | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 221 | types : (string * (typ mixfix list * (string * string) list)) list, | 
| 15261 | 222 | preprocs: (stamp * (theory -> thm list -> thm list)) list, | 
| 17144 | 223 | modules: codegr Symtab.table, | 
| 14105 | 224 | test_params: test_params}; | 
| 11520 | 225 | |
| 12555 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 berghofe parents: 
12490diff
changeset | 226 | val empty = | 
| 24219 | 227 |     {codegens = [], tycodegens = [], consts = [], types = [],
 | 
| 17144 | 228 | preprocs = [], modules = Symtab.empty, test_params = default_test_params}; | 
| 11520 | 229 | val copy = I; | 
| 16458 | 230 | val extend = I; | 
| 11520 | 231 | |
| 16458 | 232 | fun merge _ | 
| 12555 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 berghofe parents: 
12490diff
changeset | 233 |     ({codegens = codegens1, tycodegens = tycodegens1,
 | 
| 24219 | 234 | consts = consts1, types = types1, | 
| 17144 | 235 | preprocs = preprocs1, modules = modules1, test_params = test_params1}, | 
| 12555 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 berghofe parents: 
12490diff
changeset | 236 |      {codegens = codegens2, tycodegens = tycodegens2,
 | 
| 24219 | 237 | consts = consts2, types = types2, | 
| 17144 | 238 | preprocs = preprocs2, modules = modules2, test_params = test_params2}) = | 
| 19119 
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
 haftmann parents: 
19046diff
changeset | 239 |     {codegens = AList.merge (op =) (K true) (codegens1, codegens2),
 | 
| 
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
 haftmann parents: 
19046diff
changeset | 240 | tycodegens = AList.merge (op =) (K true) (tycodegens1, tycodegens2), | 
| 21098 
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
 haftmann parents: 
21056diff
changeset | 241 | consts = AList.merge (op =) (K true) (consts1, consts2), | 
| 
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
 haftmann parents: 
21056diff
changeset | 242 | types = AList.merge (op =) (K true) (types1, types2), | 
| 19119 
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
 haftmann parents: 
19046diff
changeset | 243 | preprocs = AList.merge (op =) (K true) (preprocs1, preprocs2), | 
| 17144 | 244 | modules = Symtab.merge (K true) (modules1, modules2), | 
| 14105 | 245 | test_params = merge_test_params test_params1 test_params2}; | 
| 22846 | 246 | ); | 
| 11520 | 247 | |
| 22846 | 248 | fun print_codegens thy = | 
| 249 |   let val {codegens, tycodegens, ...} = CodegenData.get thy in
 | |
| 12452 | 250 | Pretty.writeln (Pretty.chunks | 
| 251 |       [Pretty.strs ("term code generators:" :: map fst codegens),
 | |
| 22846 | 252 |        Pretty.strs ("type code generators:" :: map fst tycodegens)])
 | 
| 253 | end; | |
| 11520 | 254 | |
| 255 | ||
| 256 | ||
| 14105 | 257 | (**** access parameters for random testing ****) | 
| 258 | ||
| 259 | fun get_test_params thy = #test_params (CodegenData.get thy); | |
| 260 | ||
| 261 | fun map_test_params f thy = | |
| 24219 | 262 |   let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 263 | CodegenData.get thy; | 
| 264 |   in CodegenData.put {codegens = codegens, tycodegens = tycodegens,
 | |
| 24219 | 265 | consts = consts, types = types, preprocs = preprocs, | 
| 17144 | 266 | modules = modules, test_params = f test_params} thy | 
| 267 | end; | |
| 268 | ||
| 269 | ||
| 270 | (**** access modules ****) | |
| 271 | ||
| 272 | fun get_modules thy = #modules (CodegenData.get thy); | |
| 273 | ||
| 274 | fun map_modules f thy = | |
| 24219 | 275 |   let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 17144 | 276 | CodegenData.get thy; | 
| 277 |   in CodegenData.put {codegens = codegens, tycodegens = tycodegens,
 | |
| 24219 | 278 | consts = consts, types = types, preprocs = preprocs, | 
| 17144 | 279 | modules = f modules, test_params = test_params} thy | 
| 14105 | 280 | end; | 
| 281 | ||
| 282 | ||
| 12452 | 283 | (**** add new code generators to theory ****) | 
| 11520 | 284 | |
| 285 | fun add_codegen name f thy = | |
| 24219 | 286 |   let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 287 | CodegenData.get thy | 
| 17521 | 288 | in (case AList.lookup (op =) codegens name of | 
| 15531 | 289 |       NONE => CodegenData.put {codegens = (name, f) :: codegens,
 | 
| 12555 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 berghofe parents: 
12490diff
changeset | 290 | tycodegens = tycodegens, consts = consts, types = types, | 
| 24219 | 291 | preprocs = preprocs, modules = modules, | 
| 17144 | 292 | test_params = test_params} thy | 
| 15531 | 293 |     | SOME _ => error ("Code generator " ^ name ^ " already declared"))
 | 
| 12452 | 294 | end; | 
| 295 | ||
| 296 | fun add_tycodegen name f thy = | |
| 24219 | 297 |   let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 298 | CodegenData.get thy | 
| 17521 | 299 | in (case AList.lookup (op =) tycodegens name of | 
| 15531 | 300 |       NONE => CodegenData.put {tycodegens = (name, f) :: tycodegens,
 | 
| 12555 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 berghofe parents: 
12490diff
changeset | 301 | codegens = codegens, consts = consts, types = types, | 
| 24219 | 302 | preprocs = preprocs, modules = modules, | 
| 17144 | 303 | test_params = test_params} thy | 
| 15531 | 304 |     | SOME _ => error ("Code generator " ^ name ^ " already declared"))
 | 
| 11520 | 305 | end; | 
| 306 | ||
| 307 | ||
| 15261 | 308 | (**** preprocessors ****) | 
| 309 | ||
| 310 | fun add_preprocessor p thy = | |
| 24219 | 311 |   let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 15261 | 312 | CodegenData.get thy | 
| 313 |   in CodegenData.put {tycodegens = tycodegens,
 | |
| 314 | codegens = codegens, consts = consts, types = types, | |
| 24219 | 315 | preprocs = (stamp (), p) :: preprocs, | 
| 17144 | 316 | modules = modules, test_params = test_params} thy | 
| 15261 | 317 | end; | 
| 318 | ||
| 21836 | 319 | fun preprocess thy = | 
| 15261 | 320 |   let val {preprocs, ...} = CodegenData.get thy
 | 
| 21836 | 321 | in fold (fn (_, f) => f thy) preprocs end; | 
| 15261 | 322 | |
| 17549 | 323 | fun preprocess_term thy t = | 
| 324 | let | |
| 20071 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
19806diff
changeset | 325 | val x = Free (Name.variant (add_term_names (t, [])) "x", fastype_of t); | 
| 17549 | 326 | (* fake definition *) | 
| 327 | val eq = setmp quick_and_dirty true (SkipProof.make_thm thy) | |
| 328 | (Logic.mk_equals (x, t)); | |
| 329 | fun err () = error "preprocess_term: bad preprocessor" | |
| 330 | in case map prop_of (preprocess thy [eq]) of | |
| 331 |       [Const ("==", _) $ x' $ t'] => if x = x' then t' else err ()
 | |
| 332 | | _ => err () | |
| 333 | end; | |
| 18281 | 334 | |
| 19341 
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
 haftmann parents: 
19299diff
changeset | 335 | fun add_unfold eqn = | 
| 15261 | 336 | let | 
| 22749 | 337 | val thy = Thm.theory_of_thm eqn; | 
| 338 | val ctxt = ProofContext.init thy; | |
| 339 | val eqn' = LocalDefs.meta_rewrite_rule ctxt eqn; | |
| 340 | val names = term_consts (fst (Logic.dest_equals (prop_of eqn'))); | |
| 15261 | 341 | fun prep thy = map (fn th => | 
| 17666 | 342 | let val prop = prop_of th | 
| 343 | in | |
| 344 | if forall (fn name => exists_Const (equal name o fst) prop) names | |
| 22749 | 345 | then rewrite_rule [eqn'] (Thm.transfer thy th) | 
| 17666 | 346 | else th | 
| 347 | end) | |
| 19341 
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
 haftmann parents: 
19299diff
changeset | 348 | in add_preprocessor prep end; | 
| 15261 | 349 | |
| 26435 | 350 | val _ = Context.>> | 
| 24456 | 351 | (let | 
| 352 | fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I); | |
| 353 | in | |
| 26463 | 354 |     Context.map_theory (Code.add_attribute ("unfold", Scan.succeed (mk_attribute
 | 
| 355 | (fn thm => add_unfold thm #> Code.add_inline thm)))) | |
| 24456 | 356 | end); | 
| 22749 | 357 | |
| 15261 | 358 | |
| 11520 | 359 | (**** associate constants with target language code ****) | 
| 360 | ||
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 361 | fun gen_assoc_const prep_const (raw_const, syn) thy = | 
| 11520 | 362 | let | 
| 24219 | 363 |     val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 364 | CodegenData.get thy; | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 365 | val (cname, T) = prep_const thy raw_const; | 
| 11520 | 366 | in | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 367 | if num_args_of (fst syn) > length (binder_types T) then | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 368 |       error ("More arguments than in corresponding type of " ^ cname)
 | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 369 | else case AList.lookup (op =) consts (cname, T) of | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 370 |       NONE => CodegenData.put {codegens = codegens,
 | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 371 | tycodegens = tycodegens, | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 372 | consts = ((cname, T), syn) :: consts, | 
| 24219 | 373 | types = types, preprocs = preprocs, | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 374 | modules = modules, test_params = test_params} thy | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 375 |     | SOME _ => error ("Constant " ^ cname ^ " already associated with code")
 | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 376 | end; | 
| 11520 | 377 | |
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 378 | val assoc_const_i = gen_assoc_const (K I); | 
| 24219 | 379 | val assoc_const = gen_assoc_const CodeUnit.read_bare_const; | 
| 11520 | 380 | |
| 15801 | 381 | |
| 11520 | 382 | (**** associate types with target language types ****) | 
| 383 | ||
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 384 | fun assoc_type (s, syn) thy = | 
| 11520 | 385 | let | 
| 24219 | 386 |     val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 387 | CodegenData.get thy; | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 388 | val tc = Sign.intern_type thy s; | 
| 11520 | 389 | in | 
| 18320 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 390 | case Symtab.lookup (snd (#types (Type.rep_tsig (Sign.tsig_of thy)))) tc of | 
| 27302 | 391 | SOME ((Type.LogicalType i, _), _) => | 
| 18320 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 392 | if num_args_of (fst syn) > i then | 
| 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 393 |           error ("More arguments than corresponding type constructor " ^ s)
 | 
| 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 394 | else (case AList.lookup (op =) types tc of | 
| 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 395 |           NONE => CodegenData.put {codegens = codegens,
 | 
| 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 396 | tycodegens = tycodegens, consts = consts, | 
| 24219 | 397 | types = (tc, syn) :: types, | 
| 18320 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 398 | preprocs = preprocs, modules = modules, test_params = test_params} thy | 
| 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 399 |         | SOME _ => error ("Type " ^ tc ^ " already associated with code"))
 | 
| 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 berghofe parents: 
18281diff
changeset | 400 |     | _ => error ("Not a type constructor: " ^ s)
 | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 401 | end; | 
| 11520 | 402 | |
| 21098 
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
 haftmann parents: 
21056diff
changeset | 403 | fun get_assoc_type thy = AList.lookup (op =) ((#types o CodegenData.get) thy); | 
| 11546 | 404 | |
| 11520 | 405 | |
| 406 | (**** make valid ML identifiers ****) | |
| 407 | ||
| 14858 | 408 | fun is_ascii_letdig x = Symbol.is_ascii_letter x orelse | 
| 409 | Symbol.is_ascii_digit x orelse Symbol.is_ascii_quasi x; | |
| 410 | ||
| 411 | fun dest_sym s = (case split_last (snd (take_prefix (equal "\\") (explode s))) of | |
| 412 |     ("<" :: "^" :: xs, ">") => (true, implode xs)
 | |
| 413 |   | ("<" :: xs, ">") => (false, implode xs)
 | |
| 414 | | _ => sys_error "dest_sym"); | |
| 16458 | 415 | |
| 14858 | 416 | fun mk_id s = if s = "" then "" else | 
| 11520 | 417 | let | 
| 14858 | 418 | fun check_str [] = [] | 
| 419 | | check_str xs = (case take_prefix is_ascii_letdig xs of | |
| 420 | ([], " " :: zs) => check_str zs | |
| 421 | | ([], z :: zs) => | |
| 422 | if size z = 1 then string_of_int (ord z) :: check_str zs | |
| 423 | else (case dest_sym z of | |
| 424 | (true, "isub") => check_str zs | |
| 425 | | (true, "isup") => "" :: check_str zs | |
| 426 | | (ctrl, s') => (if ctrl then "ctrl_" ^ s' else s') :: check_str zs) | |
| 427 | | (ys, zs) => implode ys :: check_str zs); | |
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 428 | val s' = space_implode "_" (maps (check_str o Symbol.explode) (NameSpace.explode s)) | 
| 11520 | 429 | in | 
| 14858 | 430 | if Symbol.is_ascii_letter (hd (explode s')) then s' else "id_" ^ s' | 
| 11520 | 431 | end; | 
| 432 | ||
| 17144 | 433 | fun mk_long_id (p as (tab, used)) module s = | 
| 16649 | 434 | let | 
| 17144 | 435 | fun find_name [] = sys_error "mk_long_id" | 
| 436 | | find_name (ys :: yss) = | |
| 437 | let | |
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 438 | val s' = NameSpace.implode ys | 
| 17144 | 439 | val s'' = NameSpace.append module s' | 
| 17412 | 440 | in case Symtab.lookup used s'' of | 
| 17261 | 441 | NONE => ((module, s'), | 
| 17412 | 442 | (Symtab.update_new (s, (module, s')) tab, | 
| 443 | Symtab.update_new (s'', ()) used)) | |
| 17144 | 444 | | SOME _ => find_name yss | 
| 445 | end | |
| 17412 | 446 | in case Symtab.lookup tab s of | 
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 447 | NONE => find_name (Library.suffixes1 (NameSpace.explode s)) | 
| 17144 | 448 | | SOME name => (name, p) | 
| 16649 | 449 | end; | 
| 450 | ||
| 17144 | 451 | (* module: module name for caller *) | 
| 452 | (* module': module name for callee *) | |
| 453 | (* if caller and callee reside in different modules, use qualified access *) | |
| 16649 | 454 | |
| 17144 | 455 | fun mk_qual_id module (module', s) = | 
| 456 | if module = module' orelse module' = "" then s else module' ^ "." ^ s; | |
| 457 | ||
| 458 | fun mk_const_id module cname (gr, (tab1, tab2)) = | |
| 16649 | 459 | let | 
| 17144 | 460 | val ((module, s), tab1') = mk_long_id tab1 module cname | 
| 461 | val s' = mk_id s; | |
| 21478 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 wenzelm parents: 
21098diff
changeset | 462 | val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s' | 
| 17144 | 463 | in ((gr, (tab1', tab2)), (module, s'')) end; | 
| 13073 
cc9d7f403a4b
mk_const_id now checks for clashes with reserved ML identifiers.
 berghofe parents: 
13003diff
changeset | 464 | |
| 17144 | 465 | fun get_const_id cname (gr, (tab1, tab2)) = | 
| 17412 | 466 | case Symtab.lookup (fst tab1) cname of | 
| 17144 | 467 |     NONE => error ("get_const_id: no such constant: " ^ quote cname)
 | 
| 468 | | SOME (module, s) => | |
| 469 | let | |
| 470 | val s' = mk_id s; | |
| 21478 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 wenzelm parents: 
21098diff
changeset | 471 | val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s' | 
| 17144 | 472 | in (module, s'') end; | 
| 473 | ||
| 474 | fun mk_type_id module tyname (gr, (tab1, tab2)) = | |
| 16649 | 475 | let | 
| 17144 | 476 | val ((module, s), tab2') = mk_long_id tab2 module tyname | 
| 477 | val s' = mk_id s; | |
| 21478 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 wenzelm parents: 
21098diff
changeset | 478 | val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s' | 
| 17144 | 479 | in ((gr, (tab1, tab2')), (module, s'')) end; | 
| 16649 | 480 | |
| 17144 | 481 | fun get_type_id tyname (gr, (tab1, tab2)) = | 
| 17412 | 482 | case Symtab.lookup (fst tab2) tyname of | 
| 17144 | 483 |     NONE => error ("get_type_id: no such type: " ^ quote tyname)
 | 
| 484 | | SOME (module, s) => | |
| 485 | let | |
| 486 | val s' = mk_id s; | |
| 21478 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 wenzelm parents: 
21098diff
changeset | 487 | val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s' | 
| 17144 | 488 | in (module, s'') end; | 
| 489 | ||
| 490 | fun get_type_id' f tyname tab = apsnd f (get_type_id tyname tab); | |
| 491 | ||
| 492 | fun get_node (gr, x) k = Graph.get_node gr k; | |
| 493 | fun add_edge e (gr, x) = (Graph.add_edge e gr, x); | |
| 494 | fun add_edge_acyclic e (gr, x) = (Graph.add_edge_acyclic e gr, x); | |
| 495 | fun del_nodes ks (gr, x) = (Graph.del_nodes ks gr, x); | |
| 496 | fun map_node k f (gr, x) = (Graph.map_node k f gr, x); | |
| 497 | fun new_node p (gr, x) = (Graph.new_node p gr, x); | |
| 16649 | 498 | |
| 27398 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 499 | fun thyname_of thy f x = the (AList.lookup (op =) (f x) Markup.theory_nameN); | 
| 16649 | 500 | |
| 27398 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 501 | fun thyname_of_type thy = | 
| 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 502 | thyname_of thy (Type.the_tags (Sign.tsig_of thy)); | 
| 16649 | 503 | |
| 27398 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 504 | fun thyname_of_const thy = | 
| 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 505 | thyname_of thy (Consts.the_tags (Sign.consts_of thy)); | 
| 11520 | 506 | |
| 13731 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 507 | fun rename_terms ts = | 
| 11520 | 508 | let | 
| 23178 | 509 | val names = List.foldr add_term_names | 
| 20286 | 510 | (map (fst o fst) (rev (fold Term.add_vars ts []))) ts; | 
| 21478 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 wenzelm parents: 
21098diff
changeset | 511 | val reserved = filter ML_Syntax.is_reserved names; | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 512 | val (illegal, alt_names) = split_list (map_filter (fn s => | 
| 15531 | 513 | let val s' = mk_id s in if s = s' then NONE else SOME (s, s') end) names) | 
| 14858 | 514 | val ps = (reserved @ illegal) ~~ | 
| 20071 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
19806diff
changeset | 515 | Name.variant_list names (map (suffix "'") reserved @ alt_names); | 
| 11520 | 516 | |
| 17521 | 517 | fun rename_id s = AList.lookup (op =) ps s |> the_default s; | 
| 14858 | 518 | |
| 519 | fun rename (Var ((a, i), T)) = Var ((rename_id a, i), T) | |
| 520 | | rename (Free (a, T)) = Free (rename_id a, T) | |
| 11520 | 521 | | rename (Abs (s, T, t)) = Abs (s, T, rename t) | 
| 522 | | rename (t $ u) = rename t $ rename u | |
| 523 | | rename t = t; | |
| 524 | in | |
| 13731 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 525 | map rename ts | 
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 526 | end; | 
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 527 | |
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 528 | val rename_term = hd o rename_terms o single; | 
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 529 | |
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 530 | |
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 531 | (**** retrieve definition of constant ****) | 
| 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 532 | |
| 24908 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 wenzelm parents: 
24867diff
changeset | 533 | fun is_instance T1 T2 = | 
| 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 wenzelm parents: 
24867diff
changeset | 534 | Type.raw_instance (T1, Logic.legacy_varifyT T2); | 
| 13731 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 535 | |
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 536 | fun get_assoc_code thy (s, T) = Option.map snd (find_first (fn ((s', T'), _) => | 
| 24908 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 wenzelm parents: 
24867diff
changeset | 537 | s = s' andalso is_instance T T') (#consts (CodegenData.get thy))); | 
| 13731 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 538 | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 539 | fun get_aux_code xs = map_filter (fn (m, code) => | 
| 20665 | 540 | if m = "" orelse member (op =) (!mode) m then SOME code else NONE) xs; | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 541 | |
| 16649 | 542 | fun mk_deftab thy = | 
| 13731 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 543 | let | 
| 22680 
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
 wenzelm parents: 
22596diff
changeset | 544 | val axmss = map (fn thy' => (Context.theory_name thy', Theory.axiom_table thy')) | 
| 16649 | 545 | (thy :: Theory.ancestors_of thy); | 
| 15261 | 546 | fun prep_def def = (case preprocess thy [def] of | 
| 16649 | 547 | [def'] => prop_of def' | _ => error "mk_deftab: bad preprocessor"); | 
| 15261 | 548 | fun dest t = | 
| 549 | let | |
| 550 | val (lhs, rhs) = Logic.dest_equals t; | |
| 551 | val (c, args) = strip_comb lhs; | |
| 16649 | 552 | val (s, T) = dest_Const c | 
| 553 | in if forall is_Var args then SOME (s, (T, (args, rhs))) else NONE | |
| 15531 | 554 | end handle TERM _ => NONE; | 
| 21056 | 555 | fun add_def thyname (name, t) = (case dest t of | 
| 556 | NONE => I | |
| 24908 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 wenzelm parents: 
24867diff
changeset | 557 | | SOME _ => (case dest (prep_def (Thm.get_axiom_i thy name)) of | 
| 21056 | 558 | NONE => I | 
| 559 | | SOME (s, (T, (args, rhs))) => Symtab.map_default (s, []) | |
| 560 | (cons (T, (thyname, split_last (rename_terms (args @ [rhs]))))))) | |
| 13731 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 berghofe parents: 
13073diff
changeset | 561 | in | 
| 21056 | 562 | fold (fn (thyname, axms) => Symtab.fold (add_def thyname) axms) axmss Symtab.empty | 
| 11520 | 563 | end; | 
| 564 | ||
| 17412 | 565 | fun get_defn thy defs s T = (case Symtab.lookup defs s of | 
| 16649 | 566 | NONE => NONE | 
| 567 | | SOME ds => | |
| 24908 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 wenzelm parents: 
24867diff
changeset | 568 | let val i = find_index (is_instance T o fst) ds | 
| 16649 | 569 | in if i >= 0 then | 
| 570 | SOME (List.nth (ds, i), if length ds = 1 then NONE else SOME i) | |
| 571 | else NONE | |
| 572 | end); | |
| 573 | ||
| 11520 | 574 | |
| 12452 | 575 | (**** invoke suitable code generator for term / type ****) | 
| 11520 | 576 | |
| 17144 | 577 | fun codegen_error (gr, _) dep s = | 
| 578 | error (s ^ "\nrequired by:\n" ^ commas (Graph.all_succs gr [dep])); | |
| 579 | ||
| 580 | fun invoke_codegen thy defs dep module brack (gr, t) = (case get_first | |
| 581 | (fn (_, f) => f thy defs gr dep module brack t) (#codegens (CodegenData.get thy)) of | |
| 582 |       NONE => codegen_error gr dep ("Unable to generate code for term:\n" ^
 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26931diff
changeset | 583 | Syntax.string_of_term_global thy t) | 
| 15531 | 584 | | SOME x => x); | 
| 12452 | 585 | |
| 17144 | 586 | fun invoke_tycodegen thy defs dep module brack (gr, T) = (case get_first | 
| 587 | (fn (_, f) => f thy defs gr dep module brack T) (#tycodegens (CodegenData.get thy)) of | |
| 588 |       NONE => codegen_error gr dep ("Unable to generate code for type:\n" ^
 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26931diff
changeset | 589 | Syntax.string_of_typ_global thy T) | 
| 15531 | 590 | | SOME x => x); | 
| 11520 | 591 | |
| 592 | ||
| 593 | (**** code generator for mixfix expressions ****) | |
| 594 | ||
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 595 | fun parens p = Pretty.block [str "(", p, str ")"];
 | 
| 11520 | 596 | |
| 597 | fun pretty_fn [] p = [p] | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 598 |   | pretty_fn (x::xs) p = str ("fn " ^ x ^ " =>") ::
 | 
| 11520 | 599 | Pretty.brk 1 :: pretty_fn xs p; | 
| 600 | ||
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 601 | fun pretty_mixfix _ _ [] [] _ = [] | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 602 | | pretty_mixfix module module' (Arg :: ms) (p :: ps) qs = | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 603 | p :: pretty_mixfix module module' ms ps qs | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 604 | | pretty_mixfix module module' (Ignore :: ms) ps qs = | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 605 | pretty_mixfix module module' ms ps qs | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 606 | | pretty_mixfix module module' (Module :: ms) ps qs = | 
| 17144 | 607 | (if module <> module' | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 608 | then cons (str (module' ^ ".")) else I) | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 609 | (pretty_mixfix module module' ms ps qs) | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 610 | | pretty_mixfix module module' (Pretty p :: ms) ps qs = | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 611 | p :: pretty_mixfix module module' ms ps qs | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 612 | | pretty_mixfix module module' (Quote _ :: ms) ps (q :: qs) = | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 613 | q :: pretty_mixfix module module' ms ps qs; | 
| 11520 | 614 | |
| 18102 | 615 | fun replace_quotes [] [] = [] | 
| 616 | | replace_quotes xs (Arg :: ms) = | |
| 617 | Arg :: replace_quotes xs ms | |
| 618 | | replace_quotes xs (Ignore :: ms) = | |
| 619 | Ignore :: replace_quotes xs ms | |
| 620 | | replace_quotes xs (Module :: ms) = | |
| 621 | Module :: replace_quotes xs ms | |
| 622 | | replace_quotes xs (Pretty p :: ms) = | |
| 623 | Pretty p :: replace_quotes xs ms | |
| 624 | | replace_quotes (x::xs) (Quote _ :: ms) = | |
| 625 | Quote x :: replace_quotes xs ms; | |
| 626 | ||
| 11520 | 627 | |
| 12452 | 628 | (**** default code generators ****) | 
| 11520 | 629 | |
| 630 | fun eta_expand t ts i = | |
| 631 | let | |
| 24456 | 632 | val k = length ts; | 
| 633 | val Ts = Library.drop (k, binder_types (fastype_of t)); | |
| 634 | val j = i - k | |
| 11520 | 635 | in | 
| 23178 | 636 |     List.foldr (fn (T, t) => Abs ("x", T, t))
 | 
| 15574 
b1d1b5bfc464
Removed practically all references to Library.foldr.
 skalberg parents: 
15570diff
changeset | 637 | (list_comb (t, ts @ map Bound (j-1 downto 0))) (Library.take (j, Ts)) | 
| 11520 | 638 | end; | 
| 639 | ||
| 640 | fun mk_app _ p [] = p | |
| 641 | | mk_app brack p ps = if brack then | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 642 |        Pretty.block (str "(" ::
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 643 | separate (Pretty.brk 1) (p :: ps) @ [str ")"]) | 
| 11520 | 644 | else Pretty.block (separate (Pretty.brk 1) (p :: ps)); | 
| 645 | ||
| 20071 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
19806diff
changeset | 646 | fun new_names t xs = Name.variant_list | 
| 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
19806diff
changeset | 647 | (map (fst o fst o dest_Var) (term_vars t) union | 
| 21719 | 648 | add_term_names (t, ML_Syntax.reserved_names)) (map mk_id xs); | 
| 11520 | 649 | |
| 650 | fun new_name t x = hd (new_names t [x]); | |
| 651 | ||
| 20665 | 652 | fun if_library x y = if member (op =) (!mode) "library" then x else y; | 
| 17144 | 653 | |
| 654 | fun default_codegen thy defs gr dep module brack t = | |
| 11520 | 655 | let | 
| 656 | val (u, ts) = strip_comb t; | |
| 17144 | 657 | fun codegens brack = foldl_map (invoke_codegen thy defs dep module brack) | 
| 11520 | 658 | in (case u of | 
| 14105 | 659 | Var ((s, i), T) => | 
| 660 | let | |
| 661 | val (gr', ps) = codegens true (gr, ts); | |
| 17144 | 662 | val (gr'', _) = invoke_tycodegen thy defs dep module false (gr', T) | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 663 | in SOME (gr'', mk_app brack (str (s ^ | 
| 11520 | 664 | (if i=0 then "" else string_of_int i))) ps) | 
| 665 | end | |
| 666 | ||
| 14105 | 667 | | Free (s, T) => | 
| 668 | let | |
| 669 | val (gr', ps) = codegens true (gr, ts); | |
| 17144 | 670 | val (gr'', _) = invoke_tycodegen thy defs dep module false (gr', T) | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 671 | in SOME (gr'', mk_app brack (str s) ps) end | 
| 11520 | 672 | |
| 673 | | Const (s, T) => | |
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 674 | (case get_assoc_code thy (s, T) of | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 675 | SOME (ms, aux) => | 
| 18281 | 676 | let val i = num_args_of ms | 
| 11520 | 677 | in if length ts < i then | 
| 17144 | 678 | default_codegen thy defs gr dep module brack (eta_expand u ts i) | 
| 11520 | 679 | else | 
| 680 | let | |
| 12452 | 681 | val (ts1, ts2) = args_of ms ts; | 
| 682 | val (gr1, ps1) = codegens false (gr, ts1); | |
| 683 | val (gr2, ps2) = codegens true (gr1, ts2); | |
| 27758 
c1e60d8cba07
Reverted last change, since it caused incompatibilities.
 berghofe parents: 
27724diff
changeset | 684 | val (gr3, ps3) = codegens false (gr2, quotes_of ms); | 
| 17549 | 685 | val (gr4, _) = invoke_tycodegen thy defs dep module false | 
| 686 | (gr3, funpow (length ts) (hd o tl o snd o dest_Type) T); | |
| 17144 | 687 | val (module', suffix) = (case get_defn thy defs s T of | 
| 27398 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 688 | NONE => (if_library (thyname_of_const thy s) module, "") | 
| 17144 | 689 | | SOME ((U, (module', _)), NONE) => | 
| 690 | (if_library module' module, "") | |
| 691 | | SOME ((U, (module', _)), SOME i) => | |
| 692 | (if_library module' module, " def" ^ string_of_int i)); | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 693 | val node_id = s ^ suffix; | 
| 17144 | 694 | fun p module' = mk_app brack (Pretty.block | 
| 695 | (pretty_mixfix module module' ms ps1 ps3)) ps2 | |
| 17549 | 696 | in SOME (case try (get_node gr4) node_id of | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 697 | NONE => (case get_aux_code aux of | 
| 17549 | 698 | [] => (gr4, p module) | 
| 17144 | 699 | | xs => (add_edge (node_id, dep) (new_node | 
| 26931 | 700 | (node_id, (NONE, module', cat_lines xs ^ "\n")) gr4), | 
| 17144 | 701 | p module')) | 
| 702 | | SOME (_, module'', _) => | |
| 17549 | 703 | (add_edge (node_id, dep) gr4, p module'')) | 
| 11520 | 704 | end | 
| 705 | end | |
| 16649 | 706 | | NONE => (case get_defn thy defs s T of | 
| 15531 | 707 | NONE => NONE | 
| 17144 | 708 | | SOME ((U, (thyname, (args, rhs))), k) => | 
| 11520 | 709 | let | 
| 17144 | 710 | val module' = if_library thyname module; | 
| 711 | val suffix = (case k of NONE => "" | SOME i => " def" ^ string_of_int i); | |
| 16649 | 712 | val node_id = s ^ suffix; | 
| 17144 | 713 | val (gr', (ps, def_id)) = codegens true (gr, ts) |>>> | 
| 714 | mk_const_id module' (s ^ suffix); | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 715 | val p = mk_app brack (str (mk_qual_id module def_id)) ps | 
| 17144 | 716 | in SOME (case try (get_node gr') node_id of | 
| 717 | NONE => | |
| 718 | let | |
| 719 |                      val _ = message ("expanding definition of " ^ s);
 | |
| 18788 
4f4ed2a01152
Fixed bug in code generator for primitive definitions that
 berghofe parents: 
18728diff
changeset | 720 | val (Ts, _) = strip_type U; | 
| 17144 | 721 | val (args', rhs') = | 
| 722 | if not (null args) orelse null Ts then (args, rhs) else | |
| 723 | let val v = Free (new_name rhs "x", hd Ts) | |
| 724 | in ([v], betapply (rhs, v)) end; | |
| 725 | val (gr1, p') = invoke_codegen thy defs node_id module' false | |
| 726 | (add_edge (node_id, dep) | |
| 727 | (new_node (node_id, (NONE, "", "")) gr'), rhs'); | |
| 728 | val (gr2, xs) = codegens false (gr1, args'); | |
| 729 | val (gr3, _) = invoke_tycodegen thy defs dep module false (gr2, T); | |
| 730 | val (gr4, ty) = invoke_tycodegen thy defs node_id module' false (gr3, U); | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 731 | in (map_node node_id (K (NONE, module', string_of | 
| 17144 | 732 | (Pretty.block (separate (Pretty.brk 1) | 
| 733 | (if null args' then | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 734 |                             [str ("val " ^ snd def_id ^ " :"), ty]
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 735 |                           else str ("fun " ^ snd def_id) :: xs) @
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 736 | [str " =", Pretty.brk 1, p', str ";"])) ^ "\n\n")) gr4, | 
| 17144 | 737 | p) | 
| 738 | end | |
| 739 | | SOME _ => (add_edge (node_id, dep) gr', p)) | |
| 11520 | 740 | end)) | 
| 741 | ||
| 742 | | Abs _ => | |
| 743 | let | |
| 744 | val (bs, Ts) = ListPair.unzip (strip_abs_vars u); | |
| 745 | val t = strip_abs_body u | |
| 746 | val bs' = new_names t bs; | |
| 12452 | 747 | val (gr1, ps) = codegens true (gr, ts); | 
| 17144 | 748 | val (gr2, p) = invoke_codegen thy defs dep module false | 
| 12452 | 749 | (gr1, subst_bounds (map Free (rev (bs' ~~ Ts)), t)); | 
| 11520 | 750 | in | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 751 |         SOME (gr2, mk_app brack (Pretty.block (str "(" :: pretty_fn bs' p @
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 752 | [str ")"])) ps) | 
| 11520 | 753 | end | 
| 754 | ||
| 15531 | 755 | | _ => NONE) | 
| 11520 | 756 | end; | 
| 757 | ||
| 17144 | 758 | fun default_tycodegen thy defs gr dep module brack (TVar ((s, i), _)) = | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 759 | SOME (gr, str (s ^ (if i = 0 then "" else string_of_int i))) | 
| 17144 | 760 | | default_tycodegen thy defs gr dep module brack (TFree (s, _)) = | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 761 | SOME (gr, str s) | 
| 17144 | 762 | | default_tycodegen thy defs gr dep module brack (Type (s, Ts)) = | 
| 17521 | 763 | (case AList.lookup (op =) ((#types o CodegenData.get) thy) s of | 
| 15531 | 764 | NONE => NONE | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 765 | | SOME (ms, aux) => | 
| 12452 | 766 | let | 
| 767 | val (gr', ps) = foldl_map | |
| 17144 | 768 | (invoke_tycodegen thy defs dep module false) | 
| 16649 | 769 | (gr, fst (args_of ms Ts)); | 
| 12452 | 770 | val (gr'', qs) = foldl_map | 
| 17144 | 771 | (invoke_tycodegen thy defs dep module false) | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 772 | (gr', quotes_of ms); | 
| 27398 
768da1da59d6
simplified retrieval of theory names of consts and types
 haftmann parents: 
27353diff
changeset | 773 | val module' = if_library (thyname_of_type thy s) module; | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 774 | val node_id = s ^ " (type)"; | 
| 17144 | 775 | fun p module' = Pretty.block (pretty_mixfix module module' ms ps qs) | 
| 776 | in SOME (case try (get_node gr'') node_id of | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 777 | NONE => (case get_aux_code aux of | 
| 17144 | 778 | [] => (gr'', p module') | 
| 779 | | xs => (fst (mk_type_id module' s | |
| 780 | (add_edge (node_id, dep) (new_node (node_id, | |
| 26931 | 781 | (NONE, module', cat_lines xs ^ "\n")) gr''))), | 
| 17144 | 782 | p module')) | 
| 783 | | SOME (_, module'', _) => | |
| 784 | (add_edge (node_id, dep) gr'', p module'')) | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 785 | end); | 
| 12452 | 786 | |
| 26463 | 787 | val _ = Context.>> (Context.map_theory | 
| 24456 | 788 | (add_codegen "default" default_codegen #> | 
| 26463 | 789 | add_tycodegen "default" default_tycodegen)); | 
| 24456 | 790 | |
| 791 | ||
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 792 | fun mk_tuple [p] = p | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 793 |   | mk_tuple ps = Pretty.block (str "(" ::
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 794 | List.concat (separate [str ",", Pretty.brk 1] (map single ps)) @ | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 795 | [str ")"]); | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 796 | |
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 797 | fun mk_let bindings body = | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 798 | Pretty.blk (0, [str "let", Pretty.brk 1, | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 799 | Pretty.blk (0, separate Pretty.fbrk (map (fn (pat, rhs) => | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 800 | Pretty.block [str "val ", pat, str " =", Pretty.brk 1, | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 801 | rhs, str ";"]) bindings)), | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 802 | Pretty.brk 1, str "in", Pretty.brk 1, body, | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 803 | Pretty.brk 1, str "end"]); | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 804 | |
| 16649 | 805 | fun mk_struct name s = "structure " ^ name ^ " =\nstruct\n\n" ^ s ^ "end;\n"; | 
| 806 | ||
| 17521 | 807 | fun add_to_module name s = AList.map_entry (op =) name (suffix s); | 
| 16649 | 808 | |
| 17144 | 809 | fun output_code gr module xs = | 
| 16649 | 810 | let | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 811 | val code = map_filter (fn s => | 
| 17144 | 812 | let val c as (_, module', _) = Graph.get_node gr s | 
| 813 | in if module = "" orelse module = module' then SOME (s, c) else NONE end) | |
| 814 | (rev (Graph.all_preds gr xs)); | |
| 16649 | 815 | fun string_of_cycle (a :: b :: cs) = | 
| 816 | let val SOME (x, y) = get_first (fn (x, (_, a', _)) => | |
| 817 | if a = a' then Option.map (pair x) | |
| 21056 | 818 | (find_first (equal b o #2 o Graph.get_node gr) | 
| 16649 | 819 | (Graph.imm_succs gr x)) | 
| 820 | else NONE) code | |
| 821 | in x ^ " called by " ^ y ^ "\n" ^ string_of_cycle (b :: cs) end | |
| 822 | | string_of_cycle _ = "" | |
| 823 | in | |
| 17144 | 824 | if module = "" then | 
| 16649 | 825 | let | 
| 19046 
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
 wenzelm parents: 
18977diff
changeset | 826 | val modules = distinct (op =) (map (#2 o snd) code); | 
| 23178 | 827 | val mod_gr = fold_rev Graph.add_edge_acyclic | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 828 | (maps (fn (s, (_, module, _)) => map (pair module) | 
| 17144 | 829 | (filter_out (equal module) (map (#2 o Graph.get_node gr) | 
| 23178 | 830 | (Graph.imm_succs gr s)))) code) | 
| 831 | (fold_rev (Graph.new_node o rpair ()) modules Graph.empty); | |
| 16649 | 832 | val modules' = | 
| 833 | rev (Graph.all_preds mod_gr (map (#2 o Graph.get_node gr) xs)) | |
| 834 | in | |
| 23178 | 835 | List.foldl (fn ((_, (_, module, s)), ms) => add_to_module module s ms) | 
| 16649 | 836 | (map (rpair "") modules') code | 
| 837 | end handle Graph.CYCLES (cs :: _) => | |
| 838 |         error ("Cyclic dependency of modules:\n" ^ commas cs ^
 | |
| 839 | "\n" ^ string_of_cycle cs) | |
| 17144 | 840 | else [(module, implode (map (#3 o snd) code))] | 
| 16649 | 841 | end; | 
| 11520 | 842 | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 843 | fun gen_generate_code prep_term thy modules module xs = | 
| 11520 | 844 | let | 
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 845 | val _ = (module <> "" orelse | 
| 20665 | 846 | member (op =) (!mode) "library" andalso forall (equal "" o fst) xs) | 
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 847 | orelse error "missing module name"; | 
| 17144 | 848 | val graphs = get_modules thy; | 
| 16649 | 849 | val defs = mk_deftab thy; | 
| 17144 | 850 |     val gr = new_node ("<Top>", (NONE, module, ""))
 | 
| 23178 | 851 | (List.foldl (fn ((gr, (tab1, tab2)), (gr', (tab1', tab2'))) => | 
| 17144 | 852 | (Graph.merge (fn ((_, module, _), (_, module', _)) => | 
| 853 | module = module') (gr, gr'), | |
| 854 | (merge_nametabs (tab1, tab1'), merge_nametabs (tab2, tab2')))) emptygr | |
| 17412 | 855 | (map (fn s => case Symtab.lookup graphs s of | 
| 17144 | 856 |                 NONE => error ("Undefined code module: " ^ s)
 | 
| 857 | | SOME gr => gr) modules)) | |
| 23655 
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
 wenzelm parents: 
23178diff
changeset | 858 |       handle Graph.DUP k => error ("Duplicate code for " ^ k);
 | 
| 16649 | 859 | fun expand (t as Abs _) = t | 
| 860 | | expand t = (case fastype_of t of | |
| 861 |           Type ("fun", [T, U]) => Abs ("x", T, t $ Bound 0) | _ => t);
 | |
| 11520 | 862 | val (gr', ps) = foldl_map (fn (gr, (s, t)) => apsnd (pair s) | 
| 17144 | 863 | (invoke_codegen thy defs "<Top>" module false (gr, t))) | 
| 17549 | 864 | (gr, map (apsnd (expand o preprocess_term thy o prep_term thy)) xs); | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 865 | val code = map_filter | 
| 17144 | 866 |       (fn ("", _) => NONE
 | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 867 | | (s', p) => SOME (string_of (Pretty.block | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 868 |           [str ("val " ^ s' ^ " ="), Pretty.brk 1, p, str ";"]))) ps;
 | 
| 17144 | 869 | val code' = space_implode "\n\n" code ^ "\n\n"; | 
| 870 | val code'' = | |
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 871 | map_filter (fn (name, s) => | 
| 20665 | 872 | if member (op =) (!mode) "library" andalso name = module andalso null code | 
| 17144 | 873 | then NONE | 
| 874 | else SOME (name, mk_struct name s)) | |
| 875 | ((if null code then I | |
| 876 | else add_to_module module code') | |
| 877 | (output_code (fst gr') (if_library "" module) ["<Top>"])) | |
| 16649 | 878 | in | 
| 17144 | 879 | (code'', del_nodes ["<Top>"] gr') | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 880 | end; | 
| 11520 | 881 | |
| 22680 
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
 wenzelm parents: 
22596diff
changeset | 882 | val generate_code_i = gen_generate_code Sign.cert_term; | 
| 27251 | 883 | val generate_code = gen_generate_code OldGoals.read_term; | 
| 11520 | 884 | |
| 12452 | 885 | |
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 886 | (**** Reflection ****) | 
| 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 887 | |
| 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 888 | val strip_tname = implode o tl o explode; | 
| 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 889 | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 890 | fun pretty_list xs = Pretty.block (str "[" :: | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 891 | flat (separate [str ",", Pretty.brk 1] (map single xs)) @ | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 892 | [str "]"]); | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 893 | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 894 | fun mk_type p (TVar ((s, i), _)) = str | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 895 | (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "T") | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 896 | | mk_type p (TFree (s, _)) = str (strip_tname s ^ "T") | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 897 | | mk_type p (Type (s, Ts)) = (if p then parens else I) (Pretty.block | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 898 |       [str "Type", Pretty.brk 1, str ("(\"" ^ s ^ "\","),
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 899 | Pretty.brk 1, pretty_list (map (mk_type false) Ts), str ")"]); | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 900 | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 901 | fun mk_term_of gr module p (TVar ((s, i), _)) = str | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 902 | (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "F") | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 903 | | mk_term_of gr module p (TFree (s, _)) = str (strip_tname s ^ "F") | 
| 17144 | 904 | | mk_term_of gr module p (Type (s, Ts)) = (if p then parens else I) | 
| 16649 | 905 | (Pretty.block (separate (Pretty.brk 1) | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 906 | (str (mk_qual_id module | 
| 17144 | 907 | (get_type_id' (fn s' => "term_of_" ^ s') s gr)) :: | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 908 | maps (fn T => | 
| 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19473diff
changeset | 909 | [mk_term_of gr module true T, mk_type true T]) Ts))); | 
| 13753 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 910 | |
| 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 berghofe parents: 
13731diff
changeset | 911 | |
| 14105 | 912 | (**** Test data generators ****) | 
| 913 | ||
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 914 | fun mk_gen gr module p xs a (TVar ((s, i), _)) = str | 
| 14105 | 915 | (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "G") | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 916 | | mk_gen gr module p xs a (TFree (s, _)) = str (strip_tname s ^ "G") | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 917 | | mk_gen gr module p xs a (Type (tyc as (s, Ts))) = (if p then parens else I) | 
| 16649 | 918 | (Pretty.block (separate (Pretty.brk 1) | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 919 | (str (mk_qual_id module (get_type_id' (fn s' => "gen_" ^ s') s gr) ^ | 
| 20665 | 920 | (if member (op =) xs s then "'" else "")) :: | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 921 | (case tyc of | 
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 922 |             ("fun", [T, U]) =>
 | 
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 923 | [mk_term_of gr module true T, mk_type true T, | 
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 924 | mk_gen gr module true xs a U, mk_type true U] | 
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 925 | | _ => maps (fn T => | 
| 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 926 | [mk_gen gr module true xs a T, mk_type true T]) Ts) @ | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 927 | (if member (op =) xs s then [str a] else [])))); | 
| 14105 | 928 | |
| 15531 | 929 | val test_fn : (int -> (string * term) list option) ref = ref (fn _ => NONE); | 
| 14105 | 930 | |
| 24456 | 931 | fun test_term thy quiet sz i t = | 
| 14105 | 932 | let | 
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 933 | val _ = (null (term_tvars t) andalso null (term_tfrees t)) orelse | 
| 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 934 | error "Term to be tested contains type variables"; | 
| 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 935 | val _ = null (term_vars t) orelse | 
| 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 936 | error "Term to be tested contains schematic variables"; | 
| 14105 | 937 | val frees = map dest_Free (term_frees t); | 
| 17549 | 938 | val frees' = frees ~~ | 
| 939 | map (fn i => "arg" ^ string_of_int i) (1 upto length frees); | |
| 17144 | 940 | val (code, gr) = setmp mode ["term_of", "test"] | 
| 941 |       (generate_code_i thy [] "Generated") [("testf", list_abs_free (frees, t))];
 | |
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 942 | val s = "structure TestTerm =\nstruct\n\n" ^ | 
| 26931 | 943 | cat_lines (map snd code) ^ | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 944 | "\nopen Generated;\n\n" ^ string_of | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 945 | (Pretty.block [str "val () = Codegen.test_fn :=", | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 946 |           Pretty.brk 1, str ("(fn i =>"), Pretty.brk 1,
 | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 947 | mk_let (map (fn ((s, T), s') => | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 948 | (mk_tuple [str s', str (s' ^ "_t")], | 
| 25892 
3ff9d646a66a
Test data generation and conversion to terms are now more closely
 berghofe parents: 
25400diff
changeset | 949 | Pretty.block [mk_gen gr "Generated" false [] "" T, Pretty.brk 1, | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 950 | str "i"])) frees') | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 951 | (Pretty.block [str "if ", | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 952 | mk_app false (str "testf") (map (str o snd) frees'), | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 953 | Pretty.brk 1, str "then NONE", | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 954 | Pretty.brk 1, str "else ", | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 955 | Pretty.block [str "SOME ", Pretty.block (str "[" :: | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 956 | flat (separate [str ",", Pretty.brk 1] | 
| 17549 | 957 | (map (fn ((s, T), s') => [Pretty.block | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 958 |                     [str ("(" ^ quote (Symbol.escape s) ^ ","), Pretty.brk 1,
 | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 959 | str (s' ^ "_t ())")]]) frees')) @ | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 960 | [str "]"])]]), | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 961 | str ");"]) ^ | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 962 | "\n\nend;\n"; | 
| 26455 | 963 | val _ = ML_Context.eval_in (SOME (Context.Theory thy)) false Position.none s; | 
| 15531 | 964 | fun iter f k = if k > i then NONE | 
| 14135 
f8a25218b423
test_term now handles Match exception raised in generated code.
 berghofe parents: 
14110diff
changeset | 965 | else (case (f () handle Match => | 
| 24456 | 966 | (if quiet then () | 
| 967 | else warning "Exception Match raised in generated code"; NONE)) of | |
| 15531 | 968 | NONE => iter f (k+1) | SOME x => SOME x); | 
| 969 | fun test k = if k > sz then NONE | |
| 24456 | 970 |       else (if quiet then () else priority ("Test data size: " ^ string_of_int k);
 | 
| 14105 | 971 | case iter (fn () => !test_fn k) 1 of | 
| 15531 | 972 | NONE => test (k+1) | SOME x => SOME x); | 
| 17638 | 973 | in test 0 end; | 
| 14105 | 974 | |
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 975 | fun test_goal quiet ({size, iterations, default_type}, tvinsts) i assms state =
 | 
| 14105 | 976 | let | 
| 24456 | 977 | val thy = Proof.theory_of state; | 
| 14105 | 978 |     fun strip (Const ("all", _) $ Abs (_, _, t)) = strip t
 | 
| 979 | | strip t = t; | |
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 980 | val (_, (_, st)) = Proof.get_goal state; | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 981 | val (gi, frees) = Logic.goal_params (prop_of st) i; | 
| 20548 
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
 wenzelm parents: 
20286diff
changeset | 982 | val gi' = ObjectLogic.atomize_term thy (map_types | 
| 24655 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 983 | (map_type_tfree (fn p as (s, S) => | 
| 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 984 | let val T = the_default (the_default (TFree p) default_type) | 
| 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 985 | (AList.lookup (op =) tvinsts s) | 
| 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 986 | in if Sign.of_sort thy (T, S) then T | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26931diff
changeset | 987 |           else error ("Type " ^ Syntax.string_of_typ_global thy T ^
 | 
| 24655 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 988 | " to be substituted for variable " ^ | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26931diff
changeset | 989 | Syntax.string_of_typ_global thy (TFree p) ^ "\ndoes not have sort " ^ | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26931diff
changeset | 990 | Syntax.string_of_sort_global thy S) | 
| 24655 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 991 | end)) | 
| 24456 | 992 | (Logic.list_implies (assms, subst_bounds (frees, strip gi)))); | 
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 993 | in test_term thy quiet size iterations gi' end; | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 994 | |
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 995 | fun pretty_counterex ctxt NONE = Pretty.str "No counterexamples found." | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 996 | | pretty_counterex ctxt (SOME cex) = | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 997 | Pretty.chunks (Pretty.str "Counterexample found:\n" :: | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 998 | map (fn (s, t) => | 
| 24920 | 999 | Pretty.block [Pretty.str (s ^ " ="), Pretty.brk 1, Syntax.pretty_term ctxt t]) cex); | 
| 24456 | 1000 | |
| 25376 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1001 | val auto_quickcheck = ref false; | 
| 24805 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 1002 | val auto_quickcheck_time_limit = ref 5000; | 
| 24456 | 1003 | |
| 1004 | fun test_goal' int state = | |
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1005 | let | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1006 | val ctxt = Proof.context_of state; | 
| 25376 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1007 | val assms = map term_of (Assumption.assms_of ctxt); | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1008 | val params = get_test_params (Proof.theory_of state); | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1009 | fun test () = | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1010 | let | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1011 | val res = TimeLimit.timeLimit (Time.fromMilliseconds (!auto_quickcheck_time_limit)) | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1012 | (try (test_goal true (params, []) 1 assms)) state; | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1013 | in | 
| 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1014 | case res of | 
| 25400 | 1015 | NONE => state | 
| 1016 | | SOME NONE => state | |
| 25376 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1017 | | SOME cex => Proof.goal_message (fn () => Pretty.chunks [Pretty.str "", | 
| 26700 | 1018 | Pretty.mark Markup.hilite (pretty_counterex ctxt cex)]) state | 
| 25400 | 1019 | end handle TimeLimit.TimeOut => (warning "Auto quickcheck: timeout."; state); | 
| 24456 | 1020 | in | 
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1021 | if int andalso !auto_quickcheck andalso not (!Toplevel.quiet) | 
| 25376 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1022 | then test () | 
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1023 | else state | 
| 24805 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 1024 | end; | 
| 24456 | 1025 | |
| 26463 | 1026 | val _ = Context.>> (Specification.add_theorem_hook test_goal'); | 
| 24456 | 1027 | |
| 14105 | 1028 | |
| 17549 | 1029 | (**** Evaluator for terms ****) | 
| 1030 | ||
| 24655 
24b630fd008f
- eval_term no longer computes result during compile time
 berghofe parents: 
24634diff
changeset | 1031 | val eval_result = ref (fn () => Bound 0); | 
| 17549 | 1032 | |
| 25009 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1033 | fun eval_term thy t = | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 1034 | let val e = | 
| 25009 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1035 | let | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1036 | val _ = (null (term_tvars t) andalso null (term_tfrees t)) orelse | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1037 | error "Term to be evaluated contains type variables"; | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1038 | val _ = (null (term_vars t) andalso null (term_frees t)) orelse | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1039 | error "Term to be evaluated contains variables"; | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1040 | val (code, gr) = setmp mode ["term_of"] | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1041 | (generate_code_i thy [] "Generated") | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1042 |         [("result", Abs ("x", TFree ("'a", []), t))];
 | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1043 | val s = "structure EvalTerm =\nstruct\n\n" ^ | 
| 26931 | 1044 | cat_lines (map snd code) ^ | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 1045 | "\nopen Generated;\n\n" ^ string_of | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 1046 | (Pretty.block [str "val () = Codegen.eval_result := (fn () =>", | 
| 25009 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1047 | Pretty.brk 1, | 
| 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1048 | mk_app false (mk_term_of gr "Generated" false (fastype_of t)) | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 1049 | [str "(result ())"], | 
| 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 1050 | str ");"]) ^ | 
| 25009 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1051 | "\n\nend;\n"; | 
| 26455 | 1052 | val _ = ML_Context.eval_in (SOME (Context.Theory thy)) false Position.none s; | 
| 26974 
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
 berghofe parents: 
26939diff
changeset | 1053 | in !eval_result end; | 
| 25009 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 wenzelm parents: 
24920diff
changeset | 1054 | in e () end; | 
| 17549 | 1055 | |
| 1056 | fun print_evaluated_term s = Toplevel.keep (fn state => | |
| 1057 | let | |
| 21506 | 1058 | val ctxt = Toplevel.context_of state; | 
| 21002 | 1059 | val thy = ProofContext.theory_of ctxt; | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24469diff
changeset | 1060 | val t = eval_term thy (Syntax.read_term ctxt s); | 
| 17549 | 1061 | val T = Term.type_of t; | 
| 1062 | in | |
| 24585 | 1063 | Pretty.writeln | 
| 24920 | 1064 | (Pretty.block [Pretty.quote (Syntax.pretty_term ctxt t), Pretty.fbrk, | 
| 1065 | Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt T)]) | |
| 17549 | 1066 | end); | 
| 1067 | ||
| 20599 | 1068 | exception Evaluation of term; | 
| 1069 | ||
| 1070 | fun evaluation_oracle (thy, Evaluation t) = | |
| 1071 | Logic.mk_equals (t, eval_term thy t); | |
| 1072 | ||
| 1073 | fun evaluation_conv ct = | |
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26463diff
changeset | 1074 | let val thy = Thm.theory_of_cterm ct | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26463diff
changeset | 1075 | in Thm.invoke_oracle_i thy "Pure.evaluation" (thy, Evaluation (Thm.term_of ct)) end; | 
| 24456 | 1076 | |
| 26463 | 1077 | val _ = Context.>> (Context.map_theory | 
| 1078 |   (Theory.add_oracle ("evaluation", evaluation_oracle)));
 | |
| 20599 | 1079 | |
| 17549 | 1080 | |
| 12452 | 1081 | (**** Interface ****) | 
| 1082 | ||
| 11520 | 1083 | fun parse_mixfix rd s = | 
| 1084 | (case Scan.finite Symbol.stopper (Scan.repeat | |
| 1085 | ( $$ "_" >> K Arg | |
| 1086 | || $$ "?" >> K Ignore | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1087 | || $$ "\\<module>" >> K Module | 
| 11520 | 1088 | || $$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length) | 
| 1089 |       || $$ "{" |-- $$ "*" |-- Scan.repeat1
 | |
| 23784 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 wenzelm parents: 
23655diff
changeset | 1090 | ( $$ "'" |-- Scan.one Symbol.is_regular | 
| 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 wenzelm parents: 
23655diff
changeset | 1091 | || Scan.unless ($$ "*" -- $$ "}") (Scan.one Symbol.is_regular)) --| | 
| 12452 | 1092 | $$ "*" --| $$ "}" >> (Quote o rd o implode) | 
| 11520 | 1093 | || Scan.repeat1 | 
| 23784 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 wenzelm parents: 
23655diff
changeset | 1094 | ( $$ "'" |-- Scan.one Symbol.is_regular | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1095 |             || Scan.unless ($$ "_" || $$ "?" || $$ "\\<module>" || $$ "/" || $$ "{" |-- $$ "*")
 | 
| 23784 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 wenzelm parents: 
23655diff
changeset | 1096 | (Scan.one Symbol.is_regular)) >> (Pretty o str o implode))) | 
| 11520 | 1097 | (Symbol.explode s) of | 
| 1098 | (p, []) => p | |
| 1099 |    | _ => error ("Malformed annotation: " ^ quote s));
 | |
| 1100 | ||
| 15801 | 1101 | |
| 17057 | 1102 | structure P = OuterParse and K = OuterKeyword; | 
| 11520 | 1103 | |
| 27353 
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
 wenzelm parents: 
27302diff
changeset | 1104 | val _ = List.app OuterKeyword.keyword ["attach", "file", "contains"]; | 
| 24867 | 1105 | |
| 17144 | 1106 | fun strip_whitespace s = implode (fst (take_suffix (equal "\n" orf equal " ") | 
| 1107 | (snd (take_prefix (equal "\n" orf equal " ") (explode s))))) ^ "\n"; | |
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1108 | |
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1109 | val parse_attach = Scan.repeat (P.$$$ "attach" |-- | 
| 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1110 |   Scan.optional (P.$$$ "(" |-- P.xname --| P.$$$ ")") "" --
 | 
| 17144 | 1111 | (P.verbatim >> strip_whitespace)); | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1112 | |
| 24867 | 1113 | val _ = | 
| 11520 | 1114 | OuterSyntax.command "types_code" | 
| 11546 | 1115 | "associate types with target language types" K.thy_decl | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1116 |     (Scan.repeat1 (P.xname --| P.$$$ "(" -- P.string --| P.$$$ ")" -- parse_attach) >>
 | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 1117 | (fn xs => Toplevel.theory (fn thy => fold (assoc_type o | 
| 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 1118 | (fn ((name, mfx), aux) => (name, (parse_mixfix | 
| 24707 | 1119 | (Syntax.read_typ_global thy) mfx, aux)))) xs thy))); | 
| 11520 | 1120 | |
| 24867 | 1121 | val _ = | 
| 11520 | 1122 | OuterSyntax.command "consts_code" | 
| 11546 | 1123 | "associate constants with target language code" K.thy_decl | 
| 11520 | 1124 | (Scan.repeat1 | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 1125 | (P.term --| | 
| 16769 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 berghofe parents: 
16649diff
changeset | 1126 |         P.$$$ "(" -- P.string --| P.$$$ ")" -- parse_attach) >>
 | 
| 25376 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 wenzelm parents: 
25367diff
changeset | 1127 | (fn xs => Toplevel.theory (fn thy => fold (assoc_const o | 
| 22921 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 haftmann parents: 
22846diff
changeset | 1128 | (fn ((const, mfx), aux) => | 
| 27251 | 1129 | (const, (parse_mixfix (OldGoals.read_term thy) mfx, aux)))) xs thy))); | 
| 11520 | 1130 | |
| 17144 | 1131 | fun parse_code lib = | 
| 1132 |   Scan.optional (P.$$$ "(" |-- P.enum "," P.xname --| P.$$$ ")") (!mode) --
 | |
| 1133 | (if lib then Scan.optional P.name "" else P.name) -- | |
| 1134 | Scan.option (P.$$$ "file" |-- P.name) -- | |
| 1135 | (if lib then Scan.succeed [] | |
| 1136 | else Scan.optional (P.$$$ "imports" |-- Scan.repeat1 P.name) []) --| | |
| 1137 | P.$$$ "contains" -- | |
| 1138 | ( Scan.repeat1 (P.name --| P.$$$ "=" -- P.term) | |
| 1139 | || Scan.repeat1 (P.term >> pair "")) >> | |
| 1140 | (fn ((((mode', module), opt_fname), modules), xs) => Toplevel.theory (fn thy => | |
| 1141 | let | |
| 19299 | 1142 | val mode'' = (if lib then insert (op =) "library" else I) (remove (op =) "library" mode'); | 
| 17144 | 1143 | val (code, gr) = setmp mode mode'' (generate_code thy modules module) xs | 
| 1144 | in ((case opt_fname of | |
| 26455 | 1145 | NONE => | 
| 1146 | ML_Context.eval_in (SOME (Context.Theory thy)) false Position.none | |
| 26931 | 1147 | (cat_lines (map snd code)) | 
| 17144 | 1148 | | SOME fname => | 
| 1149 | if lib then | |
| 1150 | app (fn (name, s) => File.write | |
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 1151 | (Path.append (Path.explode fname) (Path.basic (name ^ ".ML"))) s) | 
| 17144 | 1152 |                (("ROOT", implode (map (fn (name, _) =>
 | 
| 1153 | "use \"" ^ name ^ ".ML\";\n") code)) :: code) | |
| 21858 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 wenzelm parents: 
21836diff
changeset | 1154 | else File.write (Path.explode fname) (snd (hd code))); | 
| 17144 | 1155 | if lib then thy | 
| 17412 | 1156 | else map_modules (Symtab.update (module, gr)) thy) | 
| 17144 | 1157 | end)); | 
| 1158 | ||
| 24867 | 1159 | val _ = | 
| 17144 | 1160 | OuterSyntax.command "code_library" | 
| 1161 | "generates code for terms (one structure for each theory)" K.thy_decl | |
| 1162 | (parse_code true); | |
| 1163 | ||
| 24867 | 1164 | val _ = | 
| 17144 | 1165 | OuterSyntax.command "code_module" | 
| 1166 | "generates code for terms (single structure, incremental)" K.thy_decl | |
| 1167 | (parse_code false); | |
| 11520 | 1168 | |
| 14105 | 1169 | val params = | 
| 1170 |   [("size", P.nat >> (K o set_size)),
 | |
| 1171 |    ("iterations", P.nat >> (K o set_iterations)),
 | |
| 1172 |    ("default_type", P.typ >> set_default_type)];
 | |
| 1173 | ||
| 24022 | 1174 | val parse_test_params = P.short_ident :|-- (fn s => | 
| 1175 | P.$$$ "=" |-- (AList.lookup (op =) params s |> the_default Scan.fail)); | |
| 14105 | 1176 | |
| 1177 | fun parse_tyinst xs = | |
| 16458 | 1178 | (P.type_ident --| P.$$$ "=" -- P.typ >> (fn (v, s) => fn thy => | 
| 24707 | 1179 | fn (x, ys) => (x, (v, Syntax.read_typ_global thy s) :: ys))) xs; | 
| 14105 | 1180 | |
| 24867 | 1181 | val _ = | 
| 14105 | 1182 | OuterSyntax.command "quickcheck_params" "set parameters for random testing" K.thy_decl | 
| 1183 | (P.$$$ "[" |-- P.list1 parse_test_params --| P.$$$ "]" >> | |
| 1184 | (fn fs => Toplevel.theory (fn thy => | |
| 24456 | 1185 | map_test_params (Library.apply (map (fn f => f thy) fs)) thy))); | 
| 14105 | 1186 | |
| 24867 | 1187 | val _ = | 
| 14105 | 1188 | OuterSyntax.command "quickcheck" "try to find counterexample for subgoal" K.diag | 
| 1189 | (Scan.option (P.$$$ "[" |-- P.list1 | |
| 16458 | 1190 | ( parse_test_params >> (fn f => fn thy => apfst (f thy)) | 
| 14105 | 1191 | || parse_tyinst) --| P.$$$ "]") -- Scan.optional P.nat 1 >> | 
| 24565 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1192 | (fn (ps, g) => Toplevel.keep (fn st => Toplevel.proof_of st |> | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1193 | test_goal false (Library.apply (the_default [] | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1194 | (Option.map (map (fn f => f (Toplevel.theory_of st))) ps)) | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1195 | (get_test_params (Toplevel.theory_of st), [])) g [] |> | 
| 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 berghofe parents: 
24508diff
changeset | 1196 | pretty_counterex (Toplevel.context_of st) |> Pretty.writeln))); | 
| 14105 | 1197 | |
| 24867 | 1198 | val _ = | 
| 17549 | 1199 | OuterSyntax.improper_command "value" "read, evaluate and print term" K.diag | 
| 1200 | (P.term >> (Toplevel.no_timing oo print_evaluated_term)); | |
| 1201 | ||
| 11520 | 1202 | end; | 
| 24805 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 1203 | |
| 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 1204 | val auto_quickcheck = Codegen.auto_quickcheck; | 
| 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 1205 | val auto_quickcheck_time_limit = Codegen.auto_quickcheck_time_limit; | 
| 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 wenzelm parents: 
24707diff
changeset | 1206 |