src/Pure/codegen.ML
author bulwahn
Mon, 25 Jul 2011 10:40:52 +0200
changeset 44827 4611af362cd0
parent 44826 efc6f0a81c36
child 44923 00f0c8782a51
permissions -rw-r--r--
added legacy warning to old code generation evaluation
berghofe@11520
     1
(*  Title:      Pure/codegen.ML
wenzelm@11539
     2
    Author:     Stefan Berghofer, TU Muenchen
berghofe@11520
     3
wenzelm@11539
     4
Generic code generator.
berghofe@11520
     5
*)
berghofe@11520
     6
berghofe@11520
     7
signature CODEGEN =
berghofe@11520
     8
sig
wenzelm@32738
     9
  val quiet_mode : bool Unsynchronized.ref
berghofe@11520
    10
  val message : string -> unit
wenzelm@32738
    11
  val margin : int Unsynchronized.ref
berghofe@26974
    12
  val string_of : Pretty.T -> string
berghofe@26974
    13
  val str : string -> Pretty.T
berghofe@11520
    14
berghofe@12452
    15
  datatype 'a mixfix =
berghofe@11520
    16
      Arg
berghofe@11520
    17
    | Ignore
berghofe@16769
    18
    | Module
berghofe@11520
    19
    | Pretty of Pretty.T
berghofe@12452
    20
    | Quote of 'a;
berghofe@11520
    21
berghofe@16649
    22
  type deftab
berghofe@17144
    23
  type node
berghofe@16649
    24
  type codegr
berghofe@12452
    25
  type 'a codegen
berghofe@12452
    26
berghofe@12452
    27
  val add_codegen: string -> term codegen -> theory -> theory
berghofe@12452
    28
  val add_tycodegen: string -> typ codegen -> theory -> theory
berghofe@15261
    29
  val add_preprocessor: (theory -> thm list -> thm list) -> theory -> theory
berghofe@15261
    30
  val preprocess: theory -> thm list -> thm list
berghofe@17549
    31
  val preprocess_term: theory -> term -> term
berghofe@11520
    32
  val print_codegens: theory -> unit
wenzelm@43292
    33
  val generate_code: theory -> string list -> string list -> string -> (string * string) list ->
berghofe@17144
    34
    (string * string) list * codegr
wenzelm@43292
    35
  val generate_code_i: theory -> string list -> string list -> string -> (string * term) list ->
berghofe@17144
    36
    (string * string) list * codegr
haftmann@22921
    37
  val assoc_const: string * (term mixfix list *
haftmann@22921
    38
    (string * string) list) -> theory -> theory
haftmann@22921
    39
  val assoc_const_i: (string * typ) * (term mixfix list *
haftmann@22921
    40
    (string * string) list) -> theory -> theory
haftmann@22921
    41
  val assoc_type: xstring * (typ mixfix list *
haftmann@22921
    42
    (string * string) list) -> theory -> theory
haftmann@22921
    43
  val get_assoc_code: theory -> string * typ ->
berghofe@16769
    44
    (term mixfix list * (string * string) list) option
berghofe@16769
    45
  val get_assoc_type: theory -> string ->
berghofe@16769
    46
    (typ mixfix list * (string * string) list) option
berghofe@17144
    47
  val codegen_error: codegr -> string -> string -> 'a
wenzelm@43292
    48
  val invoke_codegen: theory -> string list -> deftab -> string -> string -> bool ->
haftmann@28537
    49
    term -> codegr -> Pretty.T * codegr
wenzelm@43292
    50
  val invoke_tycodegen: theory -> string list -> deftab -> string -> string -> bool ->
haftmann@28537
    51
    typ -> codegr -> Pretty.T * codegr
berghofe@14858
    52
  val mk_id: string -> string
berghofe@17144
    53
  val mk_qual_id: string -> string * string -> string
haftmann@28537
    54
  val mk_const_id: string -> string -> codegr -> (string * string) * codegr
haftmann@28537
    55
  val get_const_id: codegr -> string -> string * string
haftmann@28537
    56
  val mk_type_id: string -> string -> codegr -> (string * string) * codegr
haftmann@28537
    57
  val get_type_id: codegr -> string -> string * string
haftmann@27398
    58
  val thyname_of_type: theory -> string -> string
haftmann@27398
    59
  val thyname_of_const: theory -> string -> string
berghofe@16649
    60
  val rename_terms: term list -> term list
berghofe@11520
    61
  val rename_term: term -> term
berghofe@15398
    62
  val new_names: term -> string list -> string list
berghofe@15398
    63
  val new_name: term -> string -> string
wenzelm@43292
    64
  val if_library: string list -> 'a -> 'a -> 'a
berghofe@16649
    65
  val get_defn: theory -> deftab -> string -> typ ->
haftmann@32084
    66
    ((typ * (string * thm)) * int option) option
wenzelm@24908
    67
  val is_instance: typ -> typ -> bool
berghofe@11520
    68
  val parens: Pretty.T -> Pretty.T
berghofe@11520
    69
  val mk_app: bool -> Pretty.T -> Pretty.T list -> Pretty.T
berghofe@25892
    70
  val mk_tuple: Pretty.T list -> Pretty.T
berghofe@25892
    71
  val mk_let: (Pretty.T * Pretty.T) list -> Pretty.T -> Pretty.T
berghofe@11520
    72
  val eta_expand: term -> term list -> int -> term
berghofe@14105
    73
  val strip_tname: string -> string
berghofe@13753
    74
  val mk_type: bool -> typ -> Pretty.T
berghofe@17144
    75
  val mk_term_of: codegr -> string -> bool -> typ -> Pretty.T
berghofe@17144
    76
  val mk_gen: codegr -> string -> bool -> string list -> string -> typ -> Pretty.T
wenzelm@43306
    77
  val poke_test_fn: (int -> term list option) -> unit
wenzelm@43306
    78
  val poke_eval_fn: (unit -> term) -> unit
bulwahn@41163
    79
  val test_term: Proof.context -> term -> int -> term list option
wenzelm@43305
    80
  val eval_term: Proof.context -> term -> term
wenzelm@43305
    81
  val evaluation_conv: Proof.context -> conv
berghofe@12452
    82
  val parse_mixfix: (string -> 'a) -> string -> 'a mixfix list
haftmann@18102
    83
  val quotes_of: 'a mixfix list -> 'a list
haftmann@18281
    84
  val num_args_of: 'a mixfix list -> int
haftmann@18102
    85
  val replace_quotes: 'b list -> 'a mixfix list -> 'b mixfix list
berghofe@16649
    86
  val mk_deftab: theory -> deftab
haftmann@32063
    87
  val map_unfold: (simpset -> simpset) -> theory -> theory
haftmann@19341
    88
  val add_unfold: thm -> theory -> theory
haftmann@32063
    89
  val del_unfold: thm -> theory -> theory
berghofe@17549
    90
berghofe@17144
    91
  val get_node: codegr -> string -> node
berghofe@17144
    92
  val add_edge: string * string -> codegr -> codegr
berghofe@17144
    93
  val add_edge_acyclic: string * string -> codegr -> codegr
berghofe@17144
    94
  val del_nodes: string list -> codegr -> codegr
berghofe@17144
    95
  val map_node: string -> (node -> node) -> codegr -> codegr
berghofe@17144
    96
  val new_node: string * node -> codegr -> codegr
haftmann@28227
    97
haftmann@28227
    98
  val setup: theory -> theory
berghofe@11520
    99
end;
berghofe@11520
   100
berghofe@11520
   101
structure Codegen : CODEGEN =
berghofe@11520
   102
struct
berghofe@11520
   103
wenzelm@32738
   104
val quiet_mode = Unsynchronized.ref true;
berghofe@11520
   105
fun message s = if !quiet_mode then () else writeln s;
berghofe@11520
   106
wenzelm@32738
   107
val margin = Unsynchronized.ref 80;
berghofe@13886
   108
wenzelm@37154
   109
fun string_of p = Print_Mode.setmp [] (Pretty.string_of_margin (!margin)) p;
berghofe@26974
   110
wenzelm@37154
   111
val str = Print_Mode.setmp [] Pretty.str;
berghofe@26974
   112
berghofe@11520
   113
(**** Mixfix syntax ****)
berghofe@11520
   114
berghofe@12452
   115
datatype 'a mixfix =
berghofe@11520
   116
    Arg
berghofe@11520
   117
  | Ignore
berghofe@16769
   118
  | Module
berghofe@11520
   119
  | Pretty of Pretty.T
berghofe@12452
   120
  | Quote of 'a;
berghofe@11520
   121
berghofe@11520
   122
fun is_arg Arg = true
berghofe@11520
   123
  | is_arg Ignore = true
berghofe@11520
   124
  | is_arg _ = false;
berghofe@11520
   125
berghofe@12452
   126
fun quotes_of [] = []
berghofe@12452
   127
  | quotes_of (Quote q :: ms) = q :: quotes_of ms
berghofe@12452
   128
  | quotes_of (_ :: ms) = quotes_of ms;
berghofe@12452
   129
berghofe@12452
   130
fun args_of [] xs = ([], xs)
berghofe@12452
   131
  | args_of (Arg :: ms) (x :: xs) = apfst (cons x) (args_of ms xs)
berghofe@12452
   132
  | args_of (Ignore :: ms) (_ :: xs) = args_of ms xs
berghofe@12452
   133
  | args_of (_ :: ms) xs = args_of ms xs;
berghofe@11520
   134
wenzelm@33325
   135
fun num_args_of x = length (filter is_arg x);
berghofe@11520
   136
berghofe@11520
   137
berghofe@11520
   138
(**** theory data ****)
berghofe@11520
   139
berghofe@16649
   140
(* preprocessed definition table *)
berghofe@16649
   141
berghofe@16649
   142
type deftab =
berghofe@16649
   143
  (typ *              (* type of constant *)
berghofe@16649
   144
    (string *         (* name of theory containing definition of constant *)
haftmann@32084
   145
      thm))           (* definition theorem *)
berghofe@16649
   146
  list Symtab.table;
berghofe@16649
   147
berghofe@16649
   148
(* code dependency graph *)
berghofe@16649
   149
berghofe@17144
   150
type nametab = (string * string) Symtab.table * unit Symtab.table;
berghofe@17144
   151
haftmann@28227
   152
fun merge_nametabs ((tab, used) : nametab, (tab', used')) =
berghofe@17144
   153
  (Symtab.merge op = (tab, tab'), Symtab.merge op = (used, used'));
berghofe@17144
   154
berghofe@17144
   155
type node =
berghofe@16649
   156
  (exn option *    (* slot for arbitrary data *)
berghofe@16649
   157
   string *        (* name of structure containing piece of code *)
berghofe@17144
   158
   string);        (* piece of code *)
berghofe@17144
   159
berghofe@17144
   160
type codegr =
berghofe@17144
   161
  node Graph.T *
berghofe@17144
   162
  (nametab *       (* table for assigned constant names *)
berghofe@17144
   163
   nametab);       (* table for assigned type names *)
berghofe@17144
   164
berghofe@17144
   165
val emptygr : codegr = (Graph.empty,
berghofe@17144
   166
  ((Symtab.empty, Symtab.empty), (Symtab.empty, Symtab.empty)));
berghofe@16649
   167
berghofe@14105
   168
(* type of code generators *)
berghofe@11520
   169
berghofe@16649
   170
type 'a codegen =
wenzelm@43292
   171
  theory ->      (* theory in which generate_code was called *)
wenzelm@43292
   172
  string list -> (* mode *)
wenzelm@43292
   173
  deftab ->      (* definition table (for efficiency) *)
wenzelm@43292
   174
  string ->      (* node name of caller (for recording dependencies) *)
wenzelm@43292
   175
  string ->      (* module name of caller (for modular code generation) *)
wenzelm@43292
   176
  bool ->        (* whether to parenthesize generated expression *)
wenzelm@43292
   177
  'a ->          (* item to generate code from *)
wenzelm@43292
   178
  codegr ->      (* code dependency graph *)
haftmann@28537
   179
  (Pretty.T * codegr) option;
berghofe@12452
   180
wenzelm@22846
   181
wenzelm@22846
   182
(* theory data *)
wenzelm@16458
   183
wenzelm@33522
   184
structure CodegenData = Theory_Data
wenzelm@22846
   185
(
berghofe@11520
   186
  type T =
berghofe@12452
   187
    {codegens : (string * term codegen) list,
berghofe@12452
   188
     tycodegens : (string * typ codegen) list,
berghofe@16769
   189
     consts : ((string * typ) * (term mixfix list * (string * string) list)) list,
berghofe@16769
   190
     types : (string * (typ mixfix list * (string * string) list)) list,
berghofe@15261
   191
     preprocs: (stamp * (theory -> thm list -> thm list)) list,
berghofe@28640
   192
     modules: codegr Symtab.table};
berghofe@11520
   193
berghofe@12555
   194
  val empty =
haftmann@24219
   195
    {codegens = [], tycodegens = [], consts = [], types = [],
berghofe@28640
   196
     preprocs = [], modules = Symtab.empty};
wenzelm@16458
   197
  val extend = I;
berghofe@11520
   198
wenzelm@33522
   199
  fun merge
berghofe@12555
   200
    ({codegens = codegens1, tycodegens = tycodegens1,
haftmann@24219
   201
      consts = consts1, types = types1,
berghofe@28640
   202
      preprocs = preprocs1, modules = modules1} : T,
berghofe@12555
   203
     {codegens = codegens2, tycodegens = tycodegens2,
haftmann@24219
   204
      consts = consts2, types = types2,
wenzelm@33522
   205
      preprocs = preprocs2, modules = modules2}) : T =
haftmann@19119
   206
    {codegens = AList.merge (op =) (K true) (codegens1, codegens2),
haftmann@19119
   207
     tycodegens = AList.merge (op =) (K true) (tycodegens1, tycodegens2),
haftmann@21098
   208
     consts = AList.merge (op =) (K true) (consts1, consts2),
haftmann@21098
   209
     types = AList.merge (op =) (K true) (types1, types2),
haftmann@19119
   210
     preprocs = AList.merge (op =) (K true) (preprocs1, preprocs2),
berghofe@28640
   211
     modules = Symtab.merge (K true) (modules1, modules2)};
wenzelm@22846
   212
);
berghofe@11520
   213
wenzelm@22846
   214
fun print_codegens thy =
wenzelm@22846
   215
  let val {codegens, tycodegens, ...} = CodegenData.get thy in
berghofe@12452
   216
    Pretty.writeln (Pretty.chunks
berghofe@12452
   217
      [Pretty.strs ("term code generators:" :: map fst codegens),
wenzelm@22846
   218
       Pretty.strs ("type code generators:" :: map fst tycodegens)])
wenzelm@22846
   219
  end;
berghofe@11520
   220
berghofe@11520
   221
berghofe@11520
   222
berghofe@17144
   223
(**** access modules ****)
berghofe@17144
   224
berghofe@17144
   225
fun get_modules thy = #modules (CodegenData.get thy);
berghofe@17144
   226
berghofe@17144
   227
fun map_modules f thy =
berghofe@28640
   228
  let val {codegens, tycodegens, consts, types, preprocs, modules} =
berghofe@17144
   229
    CodegenData.get thy;
berghofe@17144
   230
  in CodegenData.put {codegens = codegens, tycodegens = tycodegens,
haftmann@24219
   231
    consts = consts, types = types, preprocs = preprocs,
berghofe@28640
   232
    modules = f modules} thy
berghofe@14105
   233
  end;
berghofe@14105
   234
berghofe@14105
   235
berghofe@12452
   236
(**** add new code generators to theory ****)
berghofe@11520
   237
berghofe@11520
   238
fun add_codegen name f thy =
berghofe@28640
   239
  let val {codegens, tycodegens, consts, types, preprocs, modules} =
berghofe@14105
   240
    CodegenData.get thy
haftmann@17521
   241
  in (case AList.lookup (op =) codegens name of
skalberg@15531
   242
      NONE => CodegenData.put {codegens = (name, f) :: codegens,
berghofe@12555
   243
        tycodegens = tycodegens, consts = consts, types = types,
berghofe@28640
   244
        preprocs = preprocs, modules = modules} thy
skalberg@15531
   245
    | SOME _ => error ("Code generator " ^ name ^ " already declared"))
berghofe@12452
   246
  end;
berghofe@12452
   247
berghofe@12452
   248
fun add_tycodegen name f thy =
berghofe@28640
   249
  let val {codegens, tycodegens, consts, types, preprocs, modules} =
berghofe@14105
   250
    CodegenData.get thy
haftmann@17521
   251
  in (case AList.lookup (op =) tycodegens name of
skalberg@15531
   252
      NONE => CodegenData.put {tycodegens = (name, f) :: tycodegens,
berghofe@12555
   253
        codegens = codegens, consts = consts, types = types,
berghofe@28640
   254
        preprocs = preprocs, modules = modules} thy
skalberg@15531
   255
    | SOME _ => error ("Code generator " ^ name ^ " already declared"))
berghofe@11520
   256
  end;
berghofe@11520
   257
berghofe@11520
   258
berghofe@15261
   259
(**** preprocessors ****)
berghofe@15261
   260
berghofe@15261
   261
fun add_preprocessor p thy =
berghofe@28640
   262
  let val {codegens, tycodegens, consts, types, preprocs, modules} =
berghofe@15261
   263
    CodegenData.get thy
berghofe@15261
   264
  in CodegenData.put {tycodegens = tycodegens,
berghofe@15261
   265
    codegens = codegens, consts = consts, types = types,
haftmann@24219
   266
    preprocs = (stamp (), p) :: preprocs,
berghofe@28640
   267
    modules = modules} thy
berghofe@15261
   268
  end;
berghofe@15261
   269
haftmann@21836
   270
fun preprocess thy =
berghofe@15261
   271
  let val {preprocs, ...} = CodegenData.get thy
haftmann@21836
   272
  in fold (fn (_, f) => f thy) preprocs end;
berghofe@15261
   273
berghofe@17549
   274
fun preprocess_term thy t =
berghofe@17549
   275
  let
wenzelm@44206
   276
    val x = Free (singleton (Name.variant_list (OldTerm.add_term_names (t, []))) "x", fastype_of t);
berghofe@17549
   277
    (* fake definition *)
wenzelm@32970
   278
    val eq = Skip_Proof.make_thm thy (Logic.mk_equals (x, t));
berghofe@17549
   279
    fun err () = error "preprocess_term: bad preprocessor"
berghofe@17549
   280
  in case map prop_of (preprocess thy [eq]) of
berghofe@17549
   281
      [Const ("==", _) $ x' $ t'] => if x = x' then t' else err ()
berghofe@17549
   282
    | _ => err ()
berghofe@17549
   283
  end;
haftmann@18281
   284
wenzelm@33522
   285
structure UnfoldData = Theory_Data
berghofe@28640
   286
(
berghofe@28640
   287
  type T = simpset;
berghofe@28640
   288
  val empty = empty_ss;
berghofe@28640
   289
  val extend = I;
wenzelm@33522
   290
  val merge = merge_ss;
berghofe@28640
   291
);
berghofe@28640
   292
haftmann@32063
   293
val map_unfold = UnfoldData.map;
wenzelm@41492
   294
val add_unfold = map_unfold o Simplifier.add_simp;
wenzelm@41492
   295
val del_unfold = map_unfold o Simplifier.del_simp;
berghofe@28640
   296
berghofe@28640
   297
fun unfold_preprocessor thy =
wenzelm@35232
   298
  let val ss = Simplifier.global_context thy (UnfoldData.get thy)
berghofe@28640
   299
  in map (Thm.transfer thy #> Simplifier.full_simplify ss) end;
berghofe@15261
   300
berghofe@15261
   301
berghofe@11520
   302
(**** associate constants with target language code ****)
berghofe@11520
   303
haftmann@22921
   304
fun gen_assoc_const prep_const (raw_const, syn) thy =
berghofe@11520
   305
  let
berghofe@28640
   306
    val {codegens, tycodegens, consts, types, preprocs, modules} =
berghofe@14105
   307
      CodegenData.get thy;
haftmann@22921
   308
    val (cname, T) = prep_const thy raw_const;
berghofe@11520
   309
  in
haftmann@22921
   310
    if num_args_of (fst syn) > length (binder_types T) then
haftmann@22921
   311
      error ("More arguments than in corresponding type of " ^ cname)
haftmann@22921
   312
    else case AList.lookup (op =) consts (cname, T) of
haftmann@22921
   313
      NONE => CodegenData.put {codegens = codegens,
haftmann@22921
   314
        tycodegens = tycodegens,
haftmann@22921
   315
        consts = ((cname, T), syn) :: consts,
haftmann@24219
   316
        types = types, preprocs = preprocs,
berghofe@28640
   317
        modules = modules} thy
haftmann@22921
   318
    | SOME _ => error ("Constant " ^ cname ^ " already associated with code")
haftmann@22921
   319
  end;
berghofe@11520
   320
haftmann@22921
   321
val assoc_const_i = gen_assoc_const (K I);
haftmann@31153
   322
val assoc_const = gen_assoc_const Code.read_bare_const;
berghofe@11520
   323
wenzelm@15801
   324
berghofe@11520
   325
(**** associate types with target language types ****)
berghofe@11520
   326
haftmann@22921
   327
fun assoc_type (s, syn) thy =
berghofe@11520
   328
  let
berghofe@28640
   329
    val {codegens, tycodegens, consts, types, preprocs, modules} =
berghofe@14105
   330
      CodegenData.get thy;
haftmann@22921
   331
    val tc = Sign.intern_type thy s;
berghofe@11520
   332
  in
berghofe@18320
   333
    case Symtab.lookup (snd (#types (Type.rep_tsig (Sign.tsig_of thy)))) tc of
wenzelm@33173
   334
      SOME (Type.LogicalType i) =>
berghofe@18320
   335
        if num_args_of (fst syn) > i then
berghofe@18320
   336
          error ("More arguments than corresponding type constructor " ^ s)
wenzelm@33097
   337
        else
wenzelm@33097
   338
          (case AList.lookup (op =) types tc of
wenzelm@33097
   339
            NONE => CodegenData.put {codegens = codegens,
wenzelm@33097
   340
              tycodegens = tycodegens, consts = consts,
wenzelm@33097
   341
              types = (tc, syn) :: types,
wenzelm@33097
   342
              preprocs = preprocs, modules = modules} thy
wenzelm@33097
   343
          | SOME _ => error ("Type " ^ tc ^ " already associated with code"))
berghofe@18320
   344
    | _ => error ("Not a type constructor: " ^ s)
haftmann@22921
   345
  end;
berghofe@11520
   346
haftmann@21098
   347
fun get_assoc_type thy = AList.lookup (op =) ((#types o CodegenData.get) thy);
wenzelm@11546
   348
berghofe@11520
   349
berghofe@11520
   350
(**** make valid ML identifiers ****)
berghofe@11520
   351
berghofe@14858
   352
fun is_ascii_letdig x = Symbol.is_ascii_letter x orelse
berghofe@14858
   353
  Symbol.is_ascii_digit x orelse Symbol.is_ascii_quasi x;
berghofe@14858
   354
wenzelm@40573
   355
fun dest_sym s =
wenzelm@40875
   356
  (case split_last (snd (take_prefix (fn c => c = "\\") (raw_explode s))) of
berghofe@14858
   357
    ("<" :: "^" :: xs, ">") => (true, implode xs)
berghofe@14858
   358
  | ("<" :: xs, ">") => (false, implode xs)
wenzelm@40573
   359
  | _ => raise Fail "dest_sym");
wenzelm@16458
   360
berghofe@14858
   361
fun mk_id s = if s = "" then "" else
berghofe@11520
   362
  let
berghofe@14858
   363
    fun check_str [] = []
berghofe@14858
   364
      | check_str xs = (case take_prefix is_ascii_letdig xs of
berghofe@14858
   365
          ([], " " :: zs) => check_str zs
berghofe@14858
   366
        | ([], z :: zs) =>
berghofe@14858
   367
          if size z = 1 then string_of_int (ord z) :: check_str zs
berghofe@14858
   368
          else (case dest_sym z of
berghofe@14858
   369
              (true, "isub") => check_str zs
berghofe@14858
   370
            | (true, "isup") => "" :: check_str zs
berghofe@14858
   371
            | (ctrl, s') => (if ctrl then "ctrl_" ^ s' else s') :: check_str zs)
berghofe@14858
   372
        | (ys, zs) => implode ys :: check_str zs);
wenzelm@30364
   373
    val s' = space_implode "_" (maps (check_str o Symbol.explode) (Long_Name.explode s))
berghofe@11520
   374
  in
wenzelm@40875
   375
    if Symbol.is_ascii_letter (hd (raw_explode s')) then s' else "id_" ^ s'
berghofe@11520
   376
  end;
berghofe@11520
   377
berghofe@17144
   378
fun mk_long_id (p as (tab, used)) module s =
berghofe@16649
   379
  let
wenzelm@40573
   380
    fun find_name [] = raise Fail "mk_long_id"
berghofe@17144
   381
      | find_name (ys :: yss) =
berghofe@17144
   382
          let
wenzelm@30364
   383
            val s' = Long_Name.implode ys
wenzelm@30364
   384
            val s'' = Long_Name.append module s'
wenzelm@17412
   385
          in case Symtab.lookup used s'' of
wenzelm@17261
   386
              NONE => ((module, s'),
wenzelm@17412
   387
                (Symtab.update_new (s, (module, s')) tab,
wenzelm@17412
   388
                 Symtab.update_new (s'', ()) used))
berghofe@17144
   389
            | SOME _ => find_name yss
berghofe@17144
   390
          end
wenzelm@17412
   391
  in case Symtab.lookup tab s of
wenzelm@30364
   392
      NONE => find_name (Library.suffixes1 (Long_Name.explode s))
berghofe@17144
   393
    | SOME name => (name, p)
berghofe@16649
   394
  end;
berghofe@13073
   395
berghofe@17144
   396
(* module:  module name for caller                                        *)
berghofe@17144
   397
(* module': module name for callee                                        *)
berghofe@17144
   398
(* if caller and callee reside in different modules, use qualified access *)
berghofe@16649
   399
berghofe@17144
   400
fun mk_qual_id module (module', s) =
berghofe@17144
   401
  if module = module' orelse module' = "" then s else module' ^ "." ^ s;
berghofe@17144
   402
berghofe@17144
   403
fun mk_const_id module cname (gr, (tab1, tab2)) =
berghofe@16649
   404
  let
berghofe@17144
   405
    val ((module, s), tab1') = mk_long_id tab1 module cname
berghofe@17144
   406
    val s' = mk_id s;
wenzelm@21478
   407
    val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s'
haftmann@28537
   408
  in (((module, s'')), (gr, (tab1', tab2))) end;
berghofe@16649
   409
haftmann@28537
   410
fun get_const_id (gr, (tab1, tab2)) cname =
wenzelm@17412
   411
  case Symtab.lookup (fst tab1) cname of
berghofe@17144
   412
    NONE => error ("get_const_id: no such constant: " ^ quote cname)
berghofe@17144
   413
  | SOME (module, s) =>
berghofe@17144
   414
      let
berghofe@17144
   415
        val s' = mk_id s;
wenzelm@21478
   416
        val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s'
berghofe@17144
   417
      in (module, s'') end;
berghofe@17144
   418
berghofe@17144
   419
fun mk_type_id module tyname (gr, (tab1, tab2)) =
berghofe@16649
   420
  let
berghofe@17144
   421
    val ((module, s), tab2') = mk_long_id tab2 module tyname
berghofe@17144
   422
    val s' = mk_id s;
wenzelm@21478
   423
    val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s'
haftmann@28537
   424
  in ((module, s''), (gr, (tab1, tab2'))) end;
berghofe@16649
   425
haftmann@28537
   426
fun get_type_id (gr, (tab1, tab2)) tyname =
wenzelm@17412
   427
  case Symtab.lookup (fst tab2) tyname of
berghofe@17144
   428
    NONE => error ("get_type_id: no such type: " ^ quote tyname)
berghofe@17144
   429
  | SOME (module, s) =>
berghofe@17144
   430
      let
berghofe@17144
   431
        val s' = mk_id s;
wenzelm@21478
   432
        val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s'
berghofe@17144
   433
      in (module, s'') end;
berghofe@17144
   434
haftmann@28537
   435
fun get_type_id' f tab tyname = apsnd f (get_type_id tab tyname);
berghofe@17144
   436
berghofe@17144
   437
fun get_node (gr, x) k = Graph.get_node gr k;
berghofe@17144
   438
fun add_edge e (gr, x) = (Graph.add_edge e gr, x);
berghofe@17144
   439
fun add_edge_acyclic e (gr, x) = (Graph.add_edge_acyclic e gr, x);
berghofe@17144
   440
fun del_nodes ks (gr, x) = (Graph.del_nodes ks gr, x);
berghofe@17144
   441
fun map_node k f (gr, x) = (Graph.map_node k f gr, x);
berghofe@17144
   442
fun new_node p (gr, x) = (Graph.new_node p gr, x);
berghofe@16649
   443
wenzelm@33172
   444
fun thyname_of_type thy = #theory_name o Name_Space.the_entry (Sign.type_space thy);
wenzelm@33172
   445
fun thyname_of_const thy = #theory_name o Name_Space.the_entry (Sign.const_space thy);
berghofe@11520
   446
berghofe@13731
   447
fun rename_terms ts =
berghofe@11520
   448
  let
wenzelm@29270
   449
    val names = List.foldr OldTerm.add_term_names
wenzelm@20286
   450
      (map (fst o fst) (rev (fold Term.add_vars ts []))) ts;
wenzelm@21478
   451
    val reserved = filter ML_Syntax.is_reserved names;
wenzelm@19482
   452
    val (illegal, alt_names) = split_list (map_filter (fn s =>
skalberg@15531
   453
      let val s' = mk_id s in if s = s' then NONE else SOME (s, s') end) names)
berghofe@14858
   454
    val ps = (reserved @ illegal) ~~
wenzelm@20071
   455
      Name.variant_list names (map (suffix "'") reserved @ alt_names);
berghofe@11520
   456
haftmann@17521
   457
    fun rename_id s = AList.lookup (op =) ps s |> the_default s;
berghofe@14858
   458
berghofe@14858
   459
    fun rename (Var ((a, i), T)) = Var ((rename_id a, i), T)
berghofe@14858
   460
      | rename (Free (a, T)) = Free (rename_id a, T)
berghofe@11520
   461
      | rename (Abs (s, T, t)) = Abs (s, T, rename t)
berghofe@11520
   462
      | rename (t $ u) = rename t $ rename u
berghofe@11520
   463
      | rename t = t;
berghofe@11520
   464
  in
berghofe@13731
   465
    map rename ts
berghofe@13731
   466
  end;
berghofe@13731
   467
berghofe@13731
   468
val rename_term = hd o rename_terms o single;
berghofe@13731
   469
berghofe@13731
   470
berghofe@13731
   471
(**** retrieve definition of constant ****)
berghofe@13731
   472
wenzelm@24908
   473
fun is_instance T1 T2 =
wenzelm@35845
   474
  Type.raw_instance (T1, if null (OldTerm.typ_tfrees T2) then T2 else Logic.varifyT_global T2);
berghofe@13731
   475
haftmann@22921
   476
fun get_assoc_code thy (s, T) = Option.map snd (find_first (fn ((s', T'), _) =>
wenzelm@24908
   477
  s = s' andalso is_instance T T') (#consts (CodegenData.get thy)));
berghofe@13731
   478
wenzelm@43292
   479
fun get_aux_code mode xs = map_filter (fn (m, code) =>
wenzelm@43292
   480
  if m = "" orelse member (op =) mode m then SOME code else NONE) xs;
berghofe@16769
   481
haftmann@32084
   482
fun dest_prim_def t =
haftmann@32084
   483
  let
haftmann@32084
   484
    val (lhs, rhs) = Logic.dest_equals t;
haftmann@32084
   485
    val (c, args) = strip_comb lhs;
haftmann@32084
   486
    val (s, T) = dest_Const c
haftmann@32084
   487
  in if forall is_Var args then SOME (s, (T, (args, rhs))) else NONE
haftmann@32084
   488
  end handle TERM _ => NONE;
haftmann@32084
   489
berghofe@16649
   490
fun mk_deftab thy =
berghofe@13731
   491
  let
wenzelm@43304
   492
    val axmss =
wenzelm@43304
   493
      map (fn thy' => (Context.theory_name thy', Theory.axiom_table thy'))
wenzelm@43304
   494
        (Theory.nodes_of thy);
wenzelm@43304
   495
    fun add_def thyname (name, t) =
wenzelm@43304
   496
      (case dest_prim_def t of
haftmann@21056
   497
        NONE => I
haftmann@32084
   498
      | SOME (s, (T, _)) => Symtab.map_default (s, [])
haftmann@32084
   499
          (cons (T, (thyname, Thm.axiom thy name))));
berghofe@13731
   500
  in
haftmann@21056
   501
    fold (fn (thyname, axms) => Symtab.fold (add_def thyname) axms) axmss Symtab.empty
berghofe@11520
   502
  end;
berghofe@11520
   503
haftmann@32084
   504
fun prep_prim_def thy thm =
haftmann@32084
   505
  let
haftmann@32084
   506
    val prop = case preprocess thy [thm]
haftmann@32084
   507
     of [thm'] => Thm.prop_of thm'
haftmann@32084
   508
      | _ => error "mk_deftab: bad preprocessor"
haftmann@32084
   509
  in ((Option.map o apsnd o apsnd)
haftmann@32084
   510
    (fn (args, rhs) => split_last (rename_terms (args @ [rhs]))) o dest_prim_def) prop
haftmann@32084
   511
  end;
haftmann@32084
   512
wenzelm@17412
   513
fun get_defn thy defs s T = (case Symtab.lookup defs s of
berghofe@16649
   514
    NONE => NONE
berghofe@16649
   515
  | SOME ds =>
wenzelm@24908
   516
      let val i = find_index (is_instance T o fst) ds
berghofe@16649
   517
      in if i >= 0 then
haftmann@32084
   518
          SOME (nth ds i, if length ds = 1 then NONE else SOME i)
berghofe@16649
   519
        else NONE
berghofe@16649
   520
      end);
berghofe@16649
   521
berghofe@11520
   522
berghofe@12452
   523
(**** invoke suitable code generator for term / type ****)
berghofe@11520
   524
berghofe@17144
   525
fun codegen_error (gr, _) dep s =
berghofe@17144
   526
  error (s ^ "\nrequired by:\n" ^ commas (Graph.all_succs gr [dep]));
berghofe@17144
   527
wenzelm@43292
   528
fun invoke_codegen thy mode defs dep module brack t gr = (case get_first
wenzelm@43292
   529
   (fn (_, f) => f thy mode defs dep module brack t gr) (#codegens (CodegenData.get thy)) of
berghofe@17144
   530
      NONE => codegen_error gr dep ("Unable to generate code for term:\n" ^
wenzelm@26939
   531
        Syntax.string_of_term_global thy t)
skalberg@15531
   532
    | SOME x => x);
berghofe@12452
   533
wenzelm@43292
   534
fun invoke_tycodegen thy mode defs dep module brack T gr = (case get_first
wenzelm@43292
   535
   (fn (_, f) => f thy mode defs dep module brack T gr ) (#tycodegens (CodegenData.get thy)) of
berghofe@17144
   536
      NONE => codegen_error gr dep ("Unable to generate code for type:\n" ^
wenzelm@26939
   537
        Syntax.string_of_typ_global thy T)
skalberg@15531
   538
    | SOME x => x);
berghofe@11520
   539
berghofe@11520
   540
berghofe@11520
   541
(**** code generator for mixfix expressions ****)
berghofe@11520
   542
berghofe@26974
   543
fun parens p = Pretty.block [str "(", p, str ")"];
berghofe@11520
   544
berghofe@11520
   545
fun pretty_fn [] p = [p]
berghofe@26974
   546
  | pretty_fn (x::xs) p = str ("fn " ^ x ^ " =>") ::
berghofe@11520
   547
      Pretty.brk 1 :: pretty_fn xs p;
berghofe@11520
   548
berghofe@16769
   549
fun pretty_mixfix _ _ [] [] _ = []
berghofe@16769
   550
  | pretty_mixfix module module' (Arg :: ms) (p :: ps) qs =
berghofe@16769
   551
      p :: pretty_mixfix module module' ms ps qs
berghofe@16769
   552
  | pretty_mixfix module module' (Ignore :: ms) ps qs =
berghofe@16769
   553
      pretty_mixfix module module' ms ps qs
berghofe@16769
   554
  | pretty_mixfix module module' (Module :: ms) ps qs =
berghofe@17144
   555
      (if module <> module'
berghofe@26974
   556
       then cons (str (module' ^ ".")) else I)
berghofe@16769
   557
      (pretty_mixfix module module' ms ps qs)
berghofe@16769
   558
  | pretty_mixfix module module' (Pretty p :: ms) ps qs =
berghofe@16769
   559
      p :: pretty_mixfix module module' ms ps qs
berghofe@16769
   560
  | pretty_mixfix module module' (Quote _ :: ms) ps (q :: qs) =
berghofe@16769
   561
      q :: pretty_mixfix module module' ms ps qs;
berghofe@11520
   562
haftmann@18102
   563
fun replace_quotes [] [] = []
haftmann@18102
   564
  | replace_quotes xs (Arg :: ms) =
haftmann@18102
   565
      Arg :: replace_quotes xs ms
haftmann@18102
   566
  | replace_quotes xs (Ignore :: ms) =
haftmann@18102
   567
      Ignore :: replace_quotes xs ms
haftmann@18102
   568
  | replace_quotes xs (Module :: ms) =
haftmann@18102
   569
      Module :: replace_quotes xs ms
haftmann@18102
   570
  | replace_quotes xs (Pretty p :: ms) =
haftmann@18102
   571
      Pretty p :: replace_quotes xs ms
haftmann@18102
   572
  | replace_quotes (x::xs) (Quote _ :: ms) =
haftmann@18102
   573
      Quote x :: replace_quotes xs ms;
haftmann@18102
   574
berghofe@11520
   575
berghofe@12452
   576
(**** default code generators ****)
berghofe@11520
   577
berghofe@11520
   578
fun eta_expand t ts i =
berghofe@11520
   579
  let
berghofe@24456
   580
    val k = length ts;
haftmann@33956
   581
    val Ts = drop k (binder_types (fastype_of t));
berghofe@24456
   582
    val j = i - k
berghofe@11520
   583
  in
wenzelm@23178
   584
    List.foldr (fn (T, t) => Abs ("x", T, t))
haftmann@33956
   585
      (list_comb (t, ts @ map Bound (j-1 downto 0))) (take j Ts)
berghofe@11520
   586
  end;
berghofe@11520
   587
berghofe@11520
   588
fun mk_app _ p [] = p
berghofe@11520
   589
  | mk_app brack p ps = if brack then
berghofe@26974
   590
       Pretty.block (str "(" ::
berghofe@26974
   591
         separate (Pretty.brk 1) (p :: ps) @ [str ")"])
berghofe@11520
   592
     else Pretty.block (separate (Pretty.brk 1) (p :: ps));
berghofe@11520
   593
wenzelm@20071
   594
fun new_names t xs = Name.variant_list
haftmann@33042
   595
  (union (op =) (map (fst o fst o dest_Var) (OldTerm.term_vars t))
haftmann@33042
   596
    (OldTerm.add_term_names (t, ML_Syntax.reserved_names))) (map mk_id xs);
berghofe@11520
   597
berghofe@11520
   598
fun new_name t x = hd (new_names t [x]);
berghofe@11520
   599
wenzelm@43292
   600
fun if_library mode x y = if member (op =) mode "library" then x else y;
berghofe@17144
   601
wenzelm@43292
   602
fun default_codegen thy mode defs dep module brack t gr =
berghofe@11520
   603
  let
berghofe@11520
   604
    val (u, ts) = strip_comb t;
wenzelm@43292
   605
    fun codegens brack = fold_map (invoke_codegen thy mode defs dep module brack)
berghofe@11520
   606
  in (case u of
berghofe@14105
   607
      Var ((s, i), T) =>
berghofe@14105
   608
        let
haftmann@28537
   609
          val (ps, gr') = codegens true ts gr;
wenzelm@43292
   610
          val (_, gr'') = invoke_tycodegen thy mode defs dep module false T gr'
haftmann@28537
   611
        in SOME (mk_app brack (str (s ^
haftmann@28537
   612
           (if i=0 then "" else string_of_int i))) ps, gr'')
berghofe@11520
   613
        end
berghofe@11520
   614
berghofe@14105
   615
    | Free (s, T) =>
berghofe@14105
   616
        let
haftmann@28537
   617
          val (ps, gr') = codegens true ts gr;
wenzelm@43292
   618
          val (_, gr'') = invoke_tycodegen thy mode defs dep module false T gr'
haftmann@28537
   619
        in SOME (mk_app brack (str s) ps, gr'') end
berghofe@11520
   620
berghofe@11520
   621
    | Const (s, T) =>
haftmann@22921
   622
      (case get_assoc_code thy (s, T) of
berghofe@16769
   623
         SOME (ms, aux) =>
haftmann@18281
   624
           let val i = num_args_of ms
berghofe@11520
   625
           in if length ts < i then
wenzelm@43292
   626
               default_codegen thy mode defs dep module brack (eta_expand u ts i) gr 
berghofe@11520
   627
             else
berghofe@11520
   628
               let
berghofe@12452
   629
                 val (ts1, ts2) = args_of ms ts;
haftmann@28537
   630
                 val (ps1, gr1) = codegens false ts1 gr;
haftmann@28537
   631
                 val (ps2, gr2) = codegens true ts2 gr1;
haftmann@28537
   632
                 val (ps3, gr3) = codegens false (quotes_of ms) gr2;
wenzelm@43292
   633
                 val (_, gr4) = invoke_tycodegen thy mode defs dep module false
haftmann@28537
   634
                   (funpow (length ts) (hd o tl o snd o dest_Type) T) gr3;
berghofe@17144
   635
                 val (module', suffix) = (case get_defn thy defs s T of
wenzelm@43292
   636
                     NONE => (if_library mode (thyname_of_const thy s) module, "")
berghofe@17144
   637
                   | SOME ((U, (module', _)), NONE) =>
wenzelm@43292
   638
                       (if_library mode module' module, "")
berghofe@17144
   639
                   | SOME ((U, (module', _)), SOME i) =>
wenzelm@43292
   640
                       (if_library mode module' module, " def" ^ string_of_int i));
berghofe@16769
   641
                 val node_id = s ^ suffix;
berghofe@17144
   642
                 fun p module' = mk_app brack (Pretty.block
berghofe@17144
   643
                   (pretty_mixfix module module' ms ps1 ps3)) ps2
berghofe@17549
   644
               in SOME (case try (get_node gr4) node_id of
wenzelm@43292
   645
                   NONE => (case get_aux_code mode aux of
haftmann@28537
   646
                       [] => (p module, gr4)
haftmann@28537
   647
                     | xs => (p module', add_edge (node_id, dep) (new_node
haftmann@28537
   648
                         (node_id, (NONE, module', cat_lines xs ^ "\n")) gr4)))
berghofe@17144
   649
                 | SOME (_, module'', _) =>
haftmann@28537
   650
                     (p module'', add_edge (node_id, dep) gr4))
berghofe@11520
   651
               end
berghofe@11520
   652
           end
berghofe@16649
   653
       | NONE => (case get_defn thy defs s T of
skalberg@15531
   654
           NONE => NONE
haftmann@32084
   655
         | SOME ((U, (thyname, thm)), k) => (case prep_prim_def thy thm
haftmann@32084
   656
            of SOME (_, (_, (args, rhs))) => let
wenzelm@43292
   657
               val module' = if_library mode thyname module;
berghofe@17144
   658
               val suffix = (case k of NONE => "" | SOME i => " def" ^ string_of_int i);
berghofe@16649
   659
               val node_id = s ^ suffix;
haftmann@28537
   660
               val ((ps, def_id), gr') = gr |> codegens true ts
haftmann@28537
   661
                 ||>> mk_const_id module' (s ^ suffix);
berghofe@26974
   662
               val p = mk_app brack (str (mk_qual_id module def_id)) ps
berghofe@17144
   663
             in SOME (case try (get_node gr') node_id of
berghofe@17144
   664
                 NONE =>
berghofe@17144
   665
                   let
berghofe@17144
   666
                     val _ = message ("expanding definition of " ^ s);
wenzelm@41093
   667
                     val Ts = binder_types U;
berghofe@17144
   668
                     val (args', rhs') =
berghofe@17144
   669
                       if not (null args) orelse null Ts then (args, rhs) else
berghofe@17144
   670
                         let val v = Free (new_name rhs "x", hd Ts)
berghofe@17144
   671
                         in ([v], betapply (rhs, v)) end;
wenzelm@43292
   672
                     val (p', gr1) = invoke_codegen thy mode defs node_id module' false
haftmann@28537
   673
                       rhs' (add_edge (node_id, dep)
haftmann@28537
   674
                          (new_node (node_id, (NONE, "", "")) gr'));
haftmann@28537
   675
                     val (xs, gr2) = codegens false args' gr1;
wenzelm@43292
   676
                     val (_, gr3) = invoke_tycodegen thy mode defs dep module false T gr2;
wenzelm@43292
   677
                     val (ty, gr4) = invoke_tycodegen thy mode defs node_id module' false U gr3;
haftmann@28537
   678
                   in (p, map_node node_id (K (NONE, module', string_of
berghofe@17144
   679
                       (Pretty.block (separate (Pretty.brk 1)
berghofe@17144
   680
                         (if null args' then
berghofe@26974
   681
                            [str ("val " ^ snd def_id ^ " :"), ty]
berghofe@26974
   682
                          else str ("fun " ^ snd def_id) :: xs) @
haftmann@28537
   683
                        [str " =", Pretty.brk 1, p', str ";"])) ^ "\n\n")) gr4)
berghofe@17144
   684
                   end
haftmann@28537
   685
               | SOME _ => (p, add_edge (node_id, dep) gr'))
haftmann@32084
   686
             end
haftmann@32084
   687
             | NONE => NONE)))
berghofe@11520
   688
berghofe@11520
   689
    | Abs _ =>
berghofe@11520
   690
      let
berghofe@11520
   691
        val (bs, Ts) = ListPair.unzip (strip_abs_vars u);
berghofe@11520
   692
        val t = strip_abs_body u
berghofe@11520
   693
        val bs' = new_names t bs;
haftmann@28537
   694
        val (ps, gr1) = codegens true ts gr;
wenzelm@43292
   695
        val (p, gr2) = invoke_codegen thy mode defs dep module false
haftmann@28537
   696
          (subst_bounds (map Free (rev (bs' ~~ Ts)), t)) gr1;
berghofe@11520
   697
      in
haftmann@28537
   698
        SOME (mk_app brack (Pretty.block (str "(" :: pretty_fn bs' p @
haftmann@28537
   699
          [str ")"])) ps, gr2)
berghofe@11520
   700
      end
berghofe@11520
   701
skalberg@15531
   702
    | _ => NONE)
berghofe@11520
   703
  end;
berghofe@11520
   704
wenzelm@43292
   705
fun default_tycodegen thy mode defs dep module brack (TVar ((s, i), _)) gr =
haftmann@28537
   706
      SOME (str (s ^ (if i = 0 then "" else string_of_int i)), gr)
wenzelm@43292
   707
  | default_tycodegen thy mode defs dep module brack (TFree (s, _)) gr =
haftmann@28537
   708
      SOME (str s, gr)
wenzelm@43292
   709
  | default_tycodegen thy mode defs dep module brack (Type (s, Ts)) gr =
haftmann@17521
   710
      (case AList.lookup (op =) ((#types o CodegenData.get) thy) s of
skalberg@15531
   711
         NONE => NONE
berghofe@16769
   712
       | SOME (ms, aux) =>
berghofe@12452
   713
           let
haftmann@28537
   714
             val (ps, gr') = fold_map
wenzelm@43292
   715
               (invoke_tycodegen thy mode defs dep module false)
haftmann@28537
   716
               (fst (args_of ms Ts)) gr;
haftmann@28537
   717
             val (qs, gr'') = fold_map
wenzelm@43292
   718
               (invoke_tycodegen thy mode defs dep module false)
haftmann@28537
   719
               (quotes_of ms) gr';
wenzelm@43292
   720
             val module' = if_library mode (thyname_of_type thy s) module;
berghofe@16769
   721
             val node_id = s ^ " (type)";
berghofe@17144
   722
             fun p module' = Pretty.block (pretty_mixfix module module' ms ps qs)
berghofe@17144
   723
           in SOME (case try (get_node gr'') node_id of
wenzelm@43292
   724
               NONE => (case get_aux_code mode aux of
haftmann@28537
   725
                   [] => (p module', gr'')
haftmann@28537
   726
                 | xs => (p module', snd (mk_type_id module' s
berghofe@17144
   727
                       (add_edge (node_id, dep) (new_node (node_id,
haftmann@28537
   728
                         (NONE, module', cat_lines xs ^ "\n")) gr'')))))
berghofe@17144
   729
             | SOME (_, module'', _) =>
haftmann@28537
   730
                 (p module'', add_edge (node_id, dep) gr''))
berghofe@16769
   731
           end);
berghofe@12452
   732
berghofe@25892
   733
fun mk_tuple [p] = p
berghofe@26974
   734
  | mk_tuple ps = Pretty.block (str "(" ::
wenzelm@32952
   735
      flat (separate [str ",", Pretty.brk 1] (map single ps)) @ [str ")"]);
berghofe@25892
   736
berghofe@25892
   737
fun mk_let bindings body =
berghofe@26974
   738
  Pretty.blk (0, [str "let", Pretty.brk 1,
berghofe@25892
   739
    Pretty.blk (0, separate Pretty.fbrk (map (fn (pat, rhs) =>
berghofe@26974
   740
      Pretty.block [str "val ", pat, str " =", Pretty.brk 1,
berghofe@26974
   741
      rhs, str ";"]) bindings)),
berghofe@26974
   742
    Pretty.brk 1, str "in", Pretty.brk 1, body,
berghofe@26974
   743
    Pretty.brk 1, str "end"]);
berghofe@25892
   744
berghofe@16649
   745
fun mk_struct name s = "structure " ^ name ^ " =\nstruct\n\n" ^ s ^ "end;\n";
berghofe@16649
   746
haftmann@28227
   747
fun add_to_module name s = AList.map_entry (op =) (name : string) (suffix s);
berghofe@16649
   748
berghofe@17144
   749
fun output_code gr module xs =
berghofe@16649
   750
  let
wenzelm@19482
   751
    val code = map_filter (fn s =>
berghofe@17144
   752
      let val c as (_, module', _) = Graph.get_node gr s
berghofe@17144
   753
      in if module = "" orelse module = module' then SOME (s, c) else NONE end)
berghofe@17144
   754
        (rev (Graph.all_preds gr xs));
berghofe@16649
   755
    fun string_of_cycle (a :: b :: cs) =
berghofe@16649
   756
          let val SOME (x, y) = get_first (fn (x, (_, a', _)) =>
berghofe@16649
   757
            if a = a' then Option.map (pair x)
wenzelm@28375
   758
              (find_first ((fn (_, b', _) => b' = b) o Graph.get_node gr)
berghofe@16649
   759
                (Graph.imm_succs gr x))
berghofe@16649
   760
            else NONE) code
berghofe@16649
   761
          in x ^ " called by " ^ y ^ "\n" ^ string_of_cycle (b :: cs) end
berghofe@16649
   762
      | string_of_cycle _ = ""
berghofe@16649
   763
  in
berghofe@17144
   764
    if module = "" then
berghofe@16649
   765
      let
wenzelm@19046
   766
        val modules = distinct (op =) (map (#2 o snd) code);
wenzelm@23178
   767
        val mod_gr = fold_rev Graph.add_edge_acyclic
wenzelm@19482
   768
          (maps (fn (s, (_, module, _)) => map (pair module)
wenzelm@28375
   769
            (filter_out (fn s => s = module) (map (#2 o Graph.get_node gr)
wenzelm@23178
   770
              (Graph.imm_succs gr s)))) code)
wenzelm@23178
   771
          (fold_rev (Graph.new_node o rpair ()) modules Graph.empty);
berghofe@16649
   772
        val modules' =
berghofe@16649
   773
          rev (Graph.all_preds mod_gr (map (#2 o Graph.get_node gr) xs))
berghofe@16649
   774
      in
wenzelm@23178
   775
        List.foldl (fn ((_, (_, module, s)), ms) => add_to_module module s ms)
berghofe@16649
   776
          (map (rpair "") modules') code
berghofe@16649
   777
      end handle Graph.CYCLES (cs :: _) =>
berghofe@16649
   778
        error ("Cyclic dependency of modules:\n" ^ commas cs ^
berghofe@16649
   779
          "\n" ^ string_of_cycle cs)
berghofe@17144
   780
    else [(module, implode (map (#3 o snd) code))]
berghofe@16649
   781
  end;
berghofe@11520
   782
wenzelm@43292
   783
fun gen_generate_code prep_term thy mode modules module xs =
berghofe@11520
   784
  let
wenzelm@21858
   785
    val _ = (module <> "" orelse
wenzelm@43292
   786
        member (op =) mode "library" andalso forall (fn (s, _) => s = "") xs)
wenzelm@21858
   787
      orelse error "missing module name";
berghofe@17144
   788
    val graphs = get_modules thy;
berghofe@16649
   789
    val defs = mk_deftab thy;
berghofe@17144
   790
    val gr = new_node ("<Top>", (NONE, module, ""))
wenzelm@23178
   791
      (List.foldl (fn ((gr, (tab1, tab2)), (gr', (tab1', tab2'))) =>
berghofe@17144
   792
        (Graph.merge (fn ((_, module, _), (_, module', _)) =>
berghofe@17144
   793
           module = module') (gr, gr'),
berghofe@17144
   794
         (merge_nametabs (tab1, tab1'), merge_nametabs (tab2, tab2')))) emptygr
wenzelm@17412
   795
           (map (fn s => case Symtab.lookup graphs s of
berghofe@17144
   796
                NONE => error ("Undefined code module: " ^ s)
berghofe@17144
   797
              | SOME gr => gr) modules))
wenzelm@23655
   798
      handle Graph.DUP k => error ("Duplicate code for " ^ k);
berghofe@16649
   799
    fun expand (t as Abs _) = t
berghofe@16649
   800
      | expand t = (case fastype_of t of
berghofe@16649
   801
          Type ("fun", [T, U]) => Abs ("x", T, t $ Bound 0) | _ => t);
haftmann@28537
   802
    val (ps, gr') = fold_map (fn (s, t) => fn gr => apfst (pair s)
wenzelm@43292
   803
      (invoke_codegen thy mode defs "<Top>" module false t gr))
haftmann@28537
   804
        (map (apsnd (expand o preprocess_term thy o prep_term thy)) xs) gr;
wenzelm@19482
   805
    val code = map_filter
berghofe@17144
   806
      (fn ("", _) => NONE
berghofe@26974
   807
        | (s', p) => SOME (string_of (Pretty.block
berghofe@26974
   808
          [str ("val " ^ s' ^ " ="), Pretty.brk 1, p, str ";"]))) ps;
berghofe@17144
   809
    val code' = space_implode "\n\n" code ^ "\n\n";
berghofe@17144
   810
    val code'' =
wenzelm@19482
   811
      map_filter (fn (name, s) =>
wenzelm@43292
   812
          if member (op =) mode "library" andalso name = module andalso null code
berghofe@17144
   813
          then NONE
berghofe@17144
   814
          else SOME (name, mk_struct name s))
berghofe@17144
   815
        ((if null code then I
berghofe@17144
   816
          else add_to_module module code')
wenzelm@43292
   817
           (output_code (fst gr') (if_library mode "" module) ["<Top>"]))
berghofe@16649
   818
  in
berghofe@17144
   819
    (code'', del_nodes ["<Top>"] gr')
berghofe@26974
   820
  end;
berghofe@11520
   821
wenzelm@22680
   822
val generate_code_i = gen_generate_code Sign.cert_term;
wenzelm@32182
   823
val generate_code =
wenzelm@43231
   824
  gen_generate_code (Syntax.read_term o Proof_Context.allow_dummies o Proof_Context.init_global);
berghofe@11520
   825
berghofe@12452
   826
berghofe@13753
   827
(**** Reflection ****)
berghofe@13753
   828
wenzelm@40875
   829
val strip_tname = implode o tl o raw_explode;
berghofe@13753
   830
berghofe@26974
   831
fun pretty_list xs = Pretty.block (str "[" ::
berghofe@26974
   832
  flat (separate [str ",", Pretty.brk 1] (map single xs)) @
berghofe@26974
   833
  [str "]"]);
berghofe@13753
   834
berghofe@26974
   835
fun mk_type p (TVar ((s, i), _)) = str
berghofe@13753
   836
      (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "T")
berghofe@26974
   837
  | mk_type p (TFree (s, _)) = str (strip_tname s ^ "T")
berghofe@13753
   838
  | mk_type p (Type (s, Ts)) = (if p then parens else I) (Pretty.block
berghofe@26974
   839
      [str "Type", Pretty.brk 1, str ("(\"" ^ s ^ "\","),
berghofe@26974
   840
       Pretty.brk 1, pretty_list (map (mk_type false) Ts), str ")"]);
berghofe@13753
   841
berghofe@26974
   842
fun mk_term_of gr module p (TVar ((s, i), _)) = str
berghofe@13753
   843
      (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "F")
berghofe@26974
   844
  | mk_term_of gr module p (TFree (s, _)) = str (strip_tname s ^ "F")
berghofe@17144
   845
  | mk_term_of gr module p (Type (s, Ts)) = (if p then parens else I)
berghofe@16649
   846
      (Pretty.block (separate (Pretty.brk 1)
berghofe@26974
   847
        (str (mk_qual_id module
haftmann@28537
   848
          (get_type_id' (fn s' => "term_of_" ^ s') gr s)) ::
wenzelm@19482
   849
        maps (fn T =>
wenzelm@19482
   850
          [mk_term_of gr module true T, mk_type true T]) Ts)));
berghofe@13753
   851
berghofe@13753
   852
wenzelm@43306
   853
(**** Implicit results ****)
wenzelm@43306
   854
wenzelm@43306
   855
structure Result = Proof_Data
wenzelm@43306
   856
(
wenzelm@43306
   857
  type T = (int -> term list option) * (unit -> term);
wenzelm@43306
   858
  fun init _ = (fn _ => NONE, fn () => Bound 0);
wenzelm@43306
   859
);
wenzelm@43306
   860
wenzelm@43306
   861
val get_test_fn = #1 o Result.get;
wenzelm@43306
   862
val get_eval_fn = #2 o Result.get;
wenzelm@43306
   863
wenzelm@43306
   864
fun poke_test_fn f = Context.>> (Context.map_proof (Result.map (fn (_, g) => (f, g))));
wenzelm@43306
   865
fun poke_eval_fn g = Context.>> (Context.map_proof (Result.map (fn (f, _) => (f, g))));
wenzelm@43306
   866
wenzelm@43306
   867
berghofe@14105
   868
(**** Test data generators ****)
berghofe@14105
   869
berghofe@26974
   870
fun mk_gen gr module p xs a (TVar ((s, i), _)) = str
berghofe@14105
   871
      (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "G")
berghofe@26974
   872
  | mk_gen gr module p xs a (TFree (s, _)) = str (strip_tname s ^ "G")
berghofe@25892
   873
  | mk_gen gr module p xs a (Type (tyc as (s, Ts))) = (if p then parens else I)
berghofe@16649
   874
      (Pretty.block (separate (Pretty.brk 1)
haftmann@28537
   875
        (str (mk_qual_id module (get_type_id' (fn s' => "gen_" ^ s') gr s) ^
wenzelm@20665
   876
          (if member (op =) xs s then "'" else "")) ::
berghofe@25892
   877
         (case tyc of
berghofe@25892
   878
            ("fun", [T, U]) =>
berghofe@25892
   879
              [mk_term_of gr module true T, mk_type true T,
berghofe@25892
   880
               mk_gen gr module true xs a U, mk_type true U]
berghofe@25892
   881
          | _ => maps (fn T =>
berghofe@25892
   882
              [mk_gen gr module true xs a T, mk_type true T]) Ts) @
berghofe@26974
   883
         (if member (op =) xs s then [str a] else []))));
berghofe@14105
   884
bulwahn@39480
   885
fun test_term ctxt t =
haftmann@28309
   886
  let
wenzelm@43231
   887
    val thy = Proof_Context.theory_of ctxt;
wenzelm@43292
   888
    val (code, gr) = generate_code_i thy ["term_of", "test"] [] "Generated" [("testf", t)];
berghofe@31145
   889
    val Ts = map snd (fst (strip_abs t));
berghofe@31145
   890
    val args = map_index (fn (i, T) => ("arg" ^ string_of_int i, T)) Ts;
wenzelm@43306
   891
    val s = "structure Test_Term =\nstruct\n\n" ^
haftmann@28309
   892
      cat_lines (map snd code) ^
haftmann@28309
   893
      "\nopen Generated;\n\n" ^ string_of
wenzelm@43306
   894
        (Pretty.block [str "val () = Codegen.poke_test_fn",
haftmann@28309
   895
          Pretty.brk 1, str ("(fn i =>"), Pretty.brk 1,
berghofe@31145
   896
          mk_let (map (fn (s, T) =>
berghofe@31145
   897
              (mk_tuple [str s, str (s ^ "_t")],
haftmann@28309
   898
               Pretty.block [mk_gen gr "Generated" false [] "" T, Pretty.brk 1,
berghofe@31145
   899
                 str "i"])) args)
haftmann@28309
   900
            (Pretty.block [str "if ",
berghofe@31145
   901
              mk_app false (str "testf") (map (str o fst) args),
haftmann@28309
   902
              Pretty.brk 1, str "then NONE",
haftmann@28309
   903
              Pretty.brk 1, str "else ",
wenzelm@38588
   904
              Pretty.block [str "SOME ",
wenzelm@38588
   905
                Pretty.enum "," "[" "]" (map (fn (s, _) => str (s ^ "_t ()")) args)]]),
haftmann@28309
   906
          str ");"]) ^
haftmann@28309
   907
      "\n\nend;\n";
wenzelm@43306
   908
  in
wenzelm@43306
   909
    ctxt
wenzelm@43306
   910
    |> Context.proof_map (ML_Context.exec (fn () => ML_Context.eval_text false Position.none s))
wenzelm@43306
   911
    |> get_test_fn
wenzelm@43306
   912
  end;
berghofe@24456
   913
berghofe@14105
   914
berghofe@17549
   915
(**** Evaluator for terms ****)
berghofe@17549
   916
wenzelm@43305
   917
fun eval_term ctxt t =
wenzelm@28271
   918
  let
bulwahn@44827
   919
    val _ = legacy_feature "Old evaluation mechanism -- use evaluator 'code' or method eval instead";
wenzelm@43306
   920
    val thy = Proof_Context.theory_of ctxt;
wenzelm@43306
   921
    val _ = (null (Term.add_tvars t []) andalso null (Term.add_tfrees t [])) orelse
wenzelm@43306
   922
      error "Term to be evaluated contains type variables";
wenzelm@43306
   923
    val _ = (null (Term.add_vars t []) andalso null (Term.add_frees t [])) orelse
wenzelm@43306
   924
      error "Term to be evaluated contains variables";
wenzelm@43306
   925
    val (code, gr) =
wenzelm@43306
   926
      generate_code_i thy ["term_of"] [] "Generated"
wenzelm@43306
   927
        [("result", Abs ("x", TFree ("'a", []), t))];
wenzelm@43306
   928
    val s = "structure Eval_Term =\nstruct\n\n" ^
wenzelm@43306
   929
      cat_lines (map snd code) ^
wenzelm@43306
   930
      "\nopen Generated;\n\n" ^ string_of
wenzelm@43306
   931
        (Pretty.block [str "val () = Codegen.poke_eval_fn (fn () =>",
wenzelm@43306
   932
          Pretty.brk 1,
wenzelm@43306
   933
          mk_app false (mk_term_of gr "Generated" false (fastype_of t))
wenzelm@43306
   934
            [str "(result ())"],
wenzelm@43306
   935
          str ");"]) ^
wenzelm@43306
   936
      "\n\nend;\n";
wenzelm@43306
   937
    val eval_fn =
wenzelm@43306
   938
      ctxt
wenzelm@43306
   939
      |> Context.proof_map (ML_Context.exec (fn () => ML_Context.eval_text false Position.none s))
wenzelm@43306
   940
      |> get_eval_fn;
wenzelm@43306
   941
  in eval_fn () end;
berghofe@17549
   942
wenzelm@43305
   943
val (_, evaluation_oracle) = Context.>>> (Context.map_theory_result
wenzelm@43305
   944
  (Thm.add_oracle (Binding.name "evaluation", fn (ctxt, ct) =>
wenzelm@28293
   945
    let
wenzelm@43305
   946
      val thy = Proof_Context.theory_of ctxt;
wenzelm@28293
   947
      val t = Thm.term_of ct;
wenzelm@43305
   948
    in
wenzelm@43305
   949
      if Theory.subthy (Thm.theory_of_cterm ct, thy) then
wenzelm@43305
   950
        Thm.cterm_of thy (Logic.mk_equals (t, eval_term ctxt t))
wenzelm@43305
   951
      else raise CTERM ("evaluation_oracle: bad theory", [ct])
wenzelm@43305
   952
    end)));
wenzelm@43305
   953
wenzelm@43305
   954
fun evaluation_conv ctxt ct = evaluation_oracle (ctxt, ct);
haftmann@20599
   955
berghofe@17549
   956
berghofe@12452
   957
(**** Interface ****)
berghofe@12452
   958
berghofe@11520
   959
fun parse_mixfix rd s =
berghofe@11520
   960
  (case Scan.finite Symbol.stopper (Scan.repeat
berghofe@11520
   961
     (   $$ "_" >> K Arg
berghofe@11520
   962
      || $$ "?" >> K Ignore
berghofe@16769
   963
      || $$ "\\<module>" >> K Module
berghofe@11520
   964
      || $$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length)
berghofe@11520
   965
      || $$ "{" |-- $$ "*" |-- Scan.repeat1
wenzelm@23784
   966
           (   $$ "'" |-- Scan.one Symbol.is_regular
wenzelm@23784
   967
            || Scan.unless ($$ "*" -- $$ "}") (Scan.one Symbol.is_regular)) --|
berghofe@12452
   968
         $$ "*" --| $$ "}" >> (Quote o rd o implode)
berghofe@11520
   969
      || Scan.repeat1
wenzelm@23784
   970
           (   $$ "'" |-- Scan.one Symbol.is_regular
berghofe@16769
   971
            || Scan.unless ($$ "_" || $$ "?" || $$ "\\<module>" || $$ "/" || $$ "{" |-- $$ "*")
wenzelm@23784
   972
                 (Scan.one Symbol.is_regular)) >> (Pretty o str o implode)))
berghofe@11520
   973
       (Symbol.explode s) of
berghofe@11520
   974
     (p, []) => p
berghofe@11520
   975
   | _ => error ("Malformed annotation: " ^ quote s));
berghofe@11520
   976
wenzelm@15801
   977
wenzelm@36950
   978
val _ = List.app Keyword.keyword ["attach", "file", "contains"];
wenzelm@24867
   979
wenzelm@28375
   980
fun strip_whitespace s = implode (fst (take_suffix (fn c => c = "\n" orelse c = " ")
wenzelm@40875
   981
  (snd (take_prefix (fn c => c = "\n" orelse c = " ") (raw_explode s))))) ^ "\n";
berghofe@16769
   982
wenzelm@36950
   983
val parse_attach = Scan.repeat (Parse.$$$ "attach" |--
wenzelm@36950
   984
  Scan.optional (Parse.$$$ "(" |-- Parse.xname --| Parse.$$$ ")") "" --
wenzelm@36950
   985
    (Parse.verbatim >> strip_whitespace));
berghofe@16769
   986
wenzelm@24867
   987
val _ =
wenzelm@36953
   988
  Outer_Syntax.command "types_code"
wenzelm@36950
   989
  "associate types with target language types" Keyword.thy_decl
wenzelm@36950
   990
    (Scan.repeat1 (Parse.xname --| Parse.$$$ "(" -- Parse.string --| Parse.$$$ ")" -- parse_attach) >>
haftmann@22921
   991
     (fn xs => Toplevel.theory (fn thy => fold (assoc_type o
haftmann@22921
   992
       (fn ((name, mfx), aux) => (name, (parse_mixfix
wenzelm@24707
   993
         (Syntax.read_typ_global thy) mfx, aux)))) xs thy)));
berghofe@11520
   994
wenzelm@24867
   995
val _ =
wenzelm@36953
   996
  Outer_Syntax.command "consts_code"
wenzelm@36950
   997
  "associate constants with target language code" Keyword.thy_decl
berghofe@11520
   998
    (Scan.repeat1
wenzelm@36950
   999
       (Parse.term --|
wenzelm@36950
  1000
        Parse.$$$ "(" -- Parse.string --| Parse.$$$ ")" -- parse_attach) >>
wenzelm@25376
  1001
     (fn xs => Toplevel.theory (fn thy => fold (assoc_const o
haftmann@22921
  1002
       (fn ((const, mfx), aux) =>
berghofe@28640
  1003
         (const, (parse_mixfix (Syntax.read_term_global thy) mfx, aux)))) xs thy)));
berghofe@11520
  1004
berghofe@17144
  1005
fun parse_code lib =
wenzelm@43292
  1006
  Scan.optional (Parse.$$$ "(" |-- Parse.enum "," Parse.xname --| Parse.$$$ ")") [] --
wenzelm@36950
  1007
  (if lib then Scan.optional Parse.name "" else Parse.name) --
wenzelm@36950
  1008
  Scan.option (Parse.$$$ "file" |-- Parse.name) --
berghofe@17144
  1009
  (if lib then Scan.succeed []
wenzelm@36950
  1010
   else Scan.optional (Parse.$$$ "imports" |-- Scan.repeat1 Parse.name) []) --|
wenzelm@36950
  1011
  Parse.$$$ "contains" --
wenzelm@36950
  1012
  (   Scan.repeat1 (Parse.name --| Parse.$$$ "=" -- Parse.term)
wenzelm@36950
  1013
   || Scan.repeat1 (Parse.term >> pair "")) >>
wenzelm@43292
  1014
  (fn ((((mode, module), opt_fname), modules), xs) => Toplevel.theory (fn thy =>
wenzelm@28271
  1015
    let
bulwahn@44826
  1016
      val _ = legacy_feature "Old code generation command -- use export_code instead";
wenzelm@43292
  1017
      val mode' = (if lib then insert (op =) "library" else I) (remove (op =) "library" mode);
wenzelm@43292
  1018
      val (code, gr) = generate_code thy mode' modules module xs;
wenzelm@28271
  1019
      val thy' = thy |> Context.theory_map (ML_Context.exec (fn () =>
wenzelm@28271
  1020
        (case opt_fname of
wenzelm@37199
  1021
          NONE => ML_Context.eval_text false Position.none (cat_lines (map snd code))
wenzelm@28271
  1022
        | SOME fname =>
wenzelm@28271
  1023
            if lib then app (fn (name, s) => File.write
wenzelm@28271
  1024
                (Path.append (Path.explode fname) (Path.basic (name ^ ".ML"))) s)
wenzelm@28271
  1025
              (("ROOT", implode (map (fn (name, _) =>
wenzelm@28271
  1026
                  "use \"" ^ name ^ ".ML\";\n") code)) :: code)
wenzelm@28271
  1027
            else File.write (Path.explode fname) (snd (hd code)))));
wenzelm@28271
  1028
    in
wenzelm@28271
  1029
      if lib then thy'
wenzelm@28271
  1030
      else map_modules (Symtab.update (module, gr)) thy'
wenzelm@28271
  1031
    end));
berghofe@17144
  1032
haftmann@28227
  1033
val setup = add_codegen "default" default_codegen
haftmann@28227
  1034
  #> add_tycodegen "default" default_tycodegen
berghofe@28640
  1035
  #> add_preprocessor unfold_preprocessor;
haftmann@28227
  1036
wenzelm@24867
  1037
val _ =
wenzelm@36953
  1038
  Outer_Syntax.command "code_library"
wenzelm@38193
  1039
    "generate code for terms (one structure for each theory)" Keyword.thy_decl
berghofe@17144
  1040
    (parse_code true);
berghofe@17144
  1041
wenzelm@24867
  1042
val _ =
wenzelm@36953
  1043
  Outer_Syntax.command "code_module"
wenzelm@38193
  1044
    "generate code for terms (single structure, incremental)" Keyword.thy_decl
berghofe@17144
  1045
    (parse_code false);
berghofe@11520
  1046
berghofe@11520
  1047
end;