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