src/Tools/Code/code_target.ML
author haftmann
Sun, 23 Jun 2013 21:16:06 +0200
changeset 53571 cbb94074682b
parent 53514 afa72aaed518
child 53572 6646bb548c6b
permissions -rw-r--r--
more appropriate cutting of input syntax
     1 (*  Title:      Tools/Code/code_target.ML
     2     Author:     Florian Haftmann, TU Muenchen
     3 
     4 Generic infrastructure for target language data.
     5 *)
     6 
     7 signature CODE_TARGET =
     8 sig
     9   val cert_tyco: theory -> string -> string
    10   val read_tyco: theory -> string -> string
    11   val read_const_exprs: theory -> string list -> string list
    12 
    13   val export_code_for: theory -> Path.T option -> string -> int option -> string -> Token.T list
    14     -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
    15   val produce_code_for: theory -> string -> int option -> string -> Token.T list
    16     -> Code_Thingol.naming -> Code_Thingol.program -> string list -> (string * string) list * string option list
    17   val present_code_for: theory -> string -> int option -> string -> Token.T list
    18     -> Code_Thingol.naming -> Code_Thingol.program -> string list * string list -> string
    19   val check_code_for: theory -> string -> bool -> Token.T list
    20     -> Code_Thingol.naming -> Code_Thingol.program -> string list -> unit
    21 
    22   val export_code: theory -> string list
    23     -> (((string * string) * Path.T option) * Token.T list) list -> unit
    24   val produce_code: theory -> string list
    25     -> string -> int option -> string -> Token.T list -> (string * string) list * string option list
    26   val present_code: theory -> string list -> (Code_Thingol.naming -> string list)
    27     -> string -> int option -> string -> Token.T list -> string
    28   val check_code: theory -> string list
    29     -> ((string * bool) * Token.T list) list -> unit
    30 
    31   val generatedN: string
    32   val evaluator: theory -> string -> Code_Thingol.naming -> Code_Thingol.program
    33     -> string list -> ((string * class list) list * Code_Thingol.itype) * Code_Thingol.iterm
    34     -> (string * string) list * string
    35 
    36   type serializer
    37   type literals = Code_Printer.literals
    38   val add_target: string * { serializer: serializer, literals: literals,
    39     check: { env_var: string, make_destination: Path.T -> Path.T, make_command: string -> string } }
    40     -> theory -> theory
    41   val extend_target: string *
    42       (string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program))
    43     -> theory -> theory
    44   val assert_target: theory -> string -> string
    45   val the_literals: theory -> string -> literals
    46   type serialization
    47   val parse_args: 'a parser -> Token.T list -> 'a
    48   val serialization: (int -> Path.T option -> 'a -> unit)
    49     -> (string list -> int -> 'a -> (string * string) list * (string -> string option))
    50     -> 'a -> serialization
    51   val set_default_code_width: int -> theory -> theory
    52 
    53   type ('a, 'b, 'c, 'd, 'e, 'f) symbol_attr_decl
    54   type identifier_data
    55   val set_identifiers: (string, string, string, string, string, string) symbol_attr_decl
    56     -> theory -> theory
    57   type const_syntax = Code_Printer.const_syntax
    58   type tyco_syntax = Code_Printer.tyco_syntax
    59   val set_printings: (const_syntax, tyco_syntax, string, unit, unit, (string * string list)) symbol_attr_decl
    60     -> theory -> theory
    61   val add_const_syntax: string -> string -> const_syntax option -> theory -> theory
    62   val add_tyco_syntax: string -> string -> tyco_syntax option -> theory -> theory
    63   val add_class_syntax: string -> class -> string option -> theory -> theory
    64   val add_instance_syntax: string -> class * string -> unit option -> theory -> theory
    65   val add_reserved: string -> string -> theory -> theory
    66   val add_include: string -> string * (string * string list) option -> theory -> theory
    67   val allow_abort: string -> theory -> theory
    68 
    69   val codegen_tool: string (*theory name*) -> string (*export_code expr*) -> unit
    70 
    71   val setup: theory -> theory
    72 end;
    73 
    74 structure Code_Target : CODE_TARGET =
    75 struct
    76 
    77 open Basic_Code_Thingol;
    78 
    79 type literals = Code_Printer.literals;
    80 type ('a, 'b, 'c, 'd, 'e, 'f) symbol_attr_decl =
    81   (string * (string * 'a option) list, string * (string * 'b option) list,
    82     class * (string * 'c option) list, (class * class) * (string * 'd option) list,
    83     (class * string) * (string * 'e option) list,
    84     string * (string * 'f option) list) Code_Symbol.attr;
    85 type identifier_data = (string, string, string, string, string, string) Code_Symbol.data;
    86 
    87 type tyco_syntax = Code_Printer.tyco_syntax;
    88 type const_syntax = Code_Printer.const_syntax;
    89 
    90 
    91 (** checking and parsing of symbols **)
    92 
    93 fun cert_const thy const =
    94   let
    95     val _ = if Sign.declared_const thy const then ()
    96       else error ("No such constant: " ^ quote const);
    97   in const end;
    98 
    99 fun cert_tyco thy tyco =
   100   let
   101     val _ = if Sign.declared_tyname thy tyco then ()
   102       else error ("No such type constructor: " ^ quote tyco);
   103   in tyco end;
   104 
   105 fun read_tyco thy = #1 o dest_Type
   106   o Proof_Context.read_type_name_proper (Proof_Context.init_global thy) true;
   107 
   108 fun cert_class thy class =
   109   let
   110     val _ = Axclass.get_info thy class;
   111   in class end;
   112 
   113 fun read_class thy = Proof_Context.read_class (Proof_Context.init_global thy);
   114 
   115 val parse_classrel_ident = Parse.class --| @{keyword "<"} -- Parse.class;
   116 
   117 fun cert_inst thy (class, tyco) =
   118   (cert_class thy class, cert_tyco thy tyco);
   119 
   120 fun read_inst thy (raw_tyco, raw_class) =
   121   (read_class thy raw_class, read_tyco thy raw_tyco);
   122 
   123 val parse_inst_ident = Parse.xname --| @{keyword "::"} -- Parse.class;
   124 
   125 fun cert_syms thy =
   126   Code_Symbol.map_attr (apfst (cert_const thy)) (apfst (cert_tyco thy))
   127     (apfst (cert_class thy)) ((apfst o pairself) (cert_class thy)) (apfst (cert_inst thy)) I;
   128 
   129 fun read_syms thy =
   130   Code_Symbol.map_attr (apfst (Code.read_const thy)) (apfst (read_tyco thy))
   131     (apfst (read_class thy)) ((apfst o pairself) (read_class thy)) (apfst (read_inst thy)) I;
   132 
   133 fun check_name is_module s =
   134   let
   135     val _ = if s = "" then error "Bad empty code name" else ();
   136     val xs = Long_Name.explode s;
   137     val xs' = if is_module
   138         then map (Name.desymbolize true) xs
   139       else if length xs < 2
   140         then error ("Bad code name without module component: " ^ quote s)
   141       else
   142         let
   143           val (ys, y) = split_last xs;
   144           val ys' = map (Name.desymbolize true) ys;
   145           val y' = Name.desymbolize false y;
   146         in ys' @ [y'] end;
   147   in if xs' = xs
   148     then s
   149     else error ("Invalid code name: " ^ quote s ^ "\n"
   150       ^ "better try " ^ quote (Long_Name.implode xs'))
   151   end;
   152 
   153 
   154 (** serializations and serializer **)
   155 
   156 (* serialization: abstract nonsense to cover different destinies for generated code *)
   157 
   158 datatype destination = Export of Path.T option | Produce | Present of string list;
   159 type serialization = int -> destination -> ((string * string) list * (string -> string option)) option;
   160 
   161 fun serialization output _ content width (Export some_path) =
   162       (output width some_path content; NONE)
   163   | serialization _ string content width Produce =
   164       string [] width content |> SOME
   165   | serialization _ string content width (Present stmt_names) =
   166      string stmt_names width content
   167      |> (apfst o map o apsnd) (Pretty.output (SOME width) o Pretty.str)
   168      |> SOME;
   169 
   170 fun export some_path f = (f (Export some_path); ());
   171 fun produce f = the (f Produce);
   172 fun present stmt_names f = space_implode "\n\n" (map snd (fst (the (f (Present stmt_names)))));
   173 
   174 
   175 (* serializers: functions producing serializations *)
   176 
   177 type serializer = Token.T list
   178   -> Proof.context
   179   -> {
   180     symbol_of: string -> Code_Symbol.symbol,
   181     module_name: string,
   182     reserved_syms: string list,
   183     identifiers: identifier_data,
   184     includes: (string * Pretty.T) list,
   185     class_syntax: string -> string option,
   186     tyco_syntax: string -> Code_Printer.tyco_syntax option,
   187     const_syntax: string -> Code_Printer.activated_const_syntax option }
   188   -> Code_Thingol.program
   189   -> serialization;
   190 
   191 datatype description =
   192     Fundamental of { serializer: serializer,
   193       literals: literals,
   194       check: { env_var: string, make_destination: Path.T -> Path.T,
   195         make_command: string -> string } }
   196   | Extension of string *
   197       (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program);
   198 
   199 
   200 (** theory data **)
   201 
   202 datatype target = Target of {
   203   serial: serial,
   204   description: description,
   205   reserved: string list,
   206   identifiers: identifier_data,
   207   printings: (Code_Printer.const_syntax, Code_Printer.tyco_syntax, string, unit, unit,
   208     (Pretty.T * string list)) Code_Symbol.data
   209 };
   210 
   211 fun make_target ((serial, description), (reserved, (identifiers, printings))) =
   212   Target { serial = serial, description = description, reserved = reserved,
   213     identifiers = identifiers, printings = printings };
   214 fun map_target f (Target { serial, description, reserved, identifiers, printings }) =
   215   make_target (f ((serial, description), (reserved, (identifiers, printings))));
   216 fun merge_target strict target (Target { serial = serial1, description = description,
   217   reserved = reserved1, identifiers = identifiers1, printings = printings1 },
   218     Target { serial = serial2, description = _,
   219       reserved = reserved2, identifiers = identifiers2, printings = printings2 }) =
   220   if serial1 = serial2 orelse not strict then
   221     make_target ((serial1, description), (merge (op =) (reserved1, reserved2),
   222       (Code_Symbol.merge_data (identifiers1, identifiers2),
   223         Code_Symbol.merge_data (printings1, printings2))))
   224   else
   225     error ("Incompatible targets: " ^ quote target);
   226 
   227 fun the_description (Target { description, ... }) = description;
   228 fun the_reserved (Target { reserved, ... }) = reserved;
   229 fun the_identifiers (Target { identifiers , ... }) = identifiers;
   230 fun the_printings (Target { printings, ... }) = printings;
   231 
   232 structure Targets = Theory_Data
   233 (
   234   type T = (target Symtab.table * string list) * int;
   235   val empty = ((Symtab.empty, []), 80);
   236   val extend = I;
   237   fun merge (((target1, exc1), width1), ((target2, exc2), width2)) : T =
   238     ((Symtab.join (merge_target true) (target1, target2),
   239       Library.merge (op =) (exc1, exc2)), Int.max (width1, width2));
   240 );
   241 
   242 val abort_allowed = snd o fst o Targets.get;
   243 
   244 fun assert_target thy target = if Symtab.defined ((fst o fst) (Targets.get thy)) target
   245   then target
   246   else error ("Unknown code target language: " ^ quote target);
   247 
   248 fun put_target (target, seri) thy =
   249   let
   250     val lookup_target = Symtab.lookup ((fst o fst) (Targets.get thy));
   251     val _ = case seri
   252      of Extension (super, _) => if is_some (lookup_target super) then ()
   253           else error ("Unknown code target language: " ^ quote super)
   254       | _ => ();
   255     val overwriting = case (Option.map the_description o lookup_target) target
   256      of NONE => false
   257       | SOME (Extension _) => true
   258       | SOME (Fundamental _) => (case seri
   259          of Extension _ => error ("Will not overwrite existing target " ^ quote target)
   260           | _ => true);
   261     val _ = if overwriting
   262       then warning ("Overwriting existing target " ^ quote target)
   263       else ();
   264   in
   265     thy
   266     |> (Targets.map o apfst o apfst o Symtab.update)
   267         (target, make_target ((serial (), seri),
   268           ([], (Code_Symbol.empty_data, Code_Symbol.empty_data))))
   269   end;
   270 
   271 fun add_target (target, seri) = put_target (target, Fundamental seri);
   272 fun extend_target (target, (super, modify)) =
   273   put_target (target, Extension (super, modify));
   274 
   275 fun map_target_data target f thy =
   276   let
   277     val _ = assert_target thy target;
   278   in
   279     thy
   280     |> (Targets.map o apfst o apfst o Symtab.map_entry target o map_target o apsnd) f
   281   end;
   282 
   283 fun map_reserved target =
   284   map_target_data target o apfst;
   285 fun map_identifiers target =
   286   map_target_data target o apsnd o apfst;
   287 fun map_printings target =
   288   map_target_data target o apsnd o apsnd;
   289 
   290 fun set_default_code_width k = (Targets.map o apsnd) (K k);
   291 
   292 
   293 (** serializer usage **)
   294 
   295 (* montage *)
   296 
   297 fun the_fundamental thy =
   298   let
   299     val ((targets, _), _) = Targets.get thy;
   300     fun fundamental target = case Symtab.lookup targets target
   301      of SOME data => (case the_description data
   302          of Fundamental data => data
   303           | Extension (super, _) => fundamental super)
   304       | NONE => error ("Unknown code target language: " ^ quote target);
   305   in fundamental end;
   306 
   307 fun the_literals thy = #literals o the_fundamental thy;
   308 
   309 fun collapse_hierarchy thy =
   310   let
   311     val ((targets, _), _) = Targets.get thy;
   312     fun collapse target =
   313       let
   314         val data = case Symtab.lookup targets target
   315          of SOME data => data
   316           | NONE => error ("Unknown code target language: " ^ quote target);
   317       in case the_description data
   318        of Fundamental _ => (K I, data)
   319         | Extension (super, modify) => let
   320             val (modify', data') = collapse super
   321           in (fn naming => modify' naming #> modify naming, merge_target false target (data', data)) end
   322       end;
   323   in collapse end;
   324 
   325 local
   326 
   327 fun activate_target thy target =
   328   let
   329     val ((_, abortable), default_width) = Targets.get thy;
   330     val (modify, data) = collapse_hierarchy thy target;
   331   in (default_width, abortable, data, modify) end;
   332 
   333 fun activate_const_syntax thy literals cs_data naming =
   334   (Symtab.empty, naming)
   335   |> fold_map (fn (c, data) => fn (tab, naming) =>
   336       case Code_Thingol.lookup_const naming c
   337        of SOME name => let
   338               val (syn, naming') =
   339                 Code_Printer.activate_const_syntax thy literals c data naming
   340             in (SOME name, (Symtab.update_new (name, syn) tab, naming')) end
   341         | NONE => (NONE, (tab, naming))) cs_data
   342   |>> map_filter I;
   343 
   344 fun activate_syntax lookup_name things =
   345   Symtab.empty
   346   |> fold_map (fn (thing_identifier, data) => fn tab => case lookup_name thing_identifier
   347        of SOME name => (SOME name, Symtab.update_new (name, data) tab)
   348         | NONE => (NONE, tab)) things
   349   |>> map_filter I;
   350 
   351 fun activate_symbol_syntax thy literals naming printings =
   352   let
   353     val (names_const, (const_syntax, _)) =
   354       activate_const_syntax thy literals (Code_Symbol.dest_constant_data printings) naming;
   355     val (names_tyco, tyco_syntax) =
   356       activate_syntax (Code_Thingol.lookup_tyco naming) (Code_Symbol.dest_type_constructor_data printings);
   357     val (names_class, class_syntax) =
   358       activate_syntax (Code_Thingol.lookup_class naming) (Code_Symbol.dest_type_class_data printings);
   359     val names_inst = map_filter (Code_Thingol.lookup_instance naming o fst)
   360       (Code_Symbol.dest_class_instance_data printings);
   361   in
   362     (names_const @ names_tyco @ names_class @ names_inst,
   363       (const_syntax, tyco_syntax, class_syntax))
   364   end;
   365 
   366 fun project_program thy abortable names_hidden names1 program2 =
   367   let
   368     val ctxt = Proof_Context.init_global thy;
   369     val names2 = subtract (op =) names_hidden names1;
   370     val program3 = Graph.restrict (not o member (op =) names_hidden) program2;
   371     val names4 = Graph.all_succs program3 names2;
   372     val empty_funs = filter_out (member (op =) abortable)
   373       (Code_Thingol.empty_funs program3);
   374     val _ =
   375       if null empty_funs then ()
   376       else error ("No code equations for " ^
   377         commas (map (Proof_Context.extern_const ctxt) empty_funs));
   378     val program4 = Graph.restrict (member (op =) names4) program3;
   379   in (names4, program4) end;
   380 
   381 fun prepare_serializer thy abortable (serializer : serializer) literals reserved identifiers
   382     printings module_name args naming proto_program names =
   383   let
   384     val (names_hidden, (const_syntax, tyco_syntax, class_syntax)) =
   385       activate_symbol_syntax thy literals naming printings;
   386     val (names_all, program) = project_program thy abortable names_hidden names proto_program;
   387     fun select_include (name, (content, cs)) =
   388       if null cs orelse exists (fn c => case Code_Thingol.lookup_const naming c
   389        of SOME name => member (op =) names_all name
   390         | NONE => false) cs
   391       then SOME (name, content) else NONE;
   392     val includes = map_filter select_include (Code_Symbol.dest_module_data printings);
   393   in
   394     (serializer args (Proof_Context.init_global thy) {
   395       symbol_of = Code_Thingol.symbol_of proto_program,
   396       module_name = module_name,
   397       reserved_syms = reserved,
   398       identifiers = identifiers,
   399       includes = includes,
   400       const_syntax = Symtab.lookup const_syntax,
   401       tyco_syntax = Symtab.lookup tyco_syntax,
   402       class_syntax = Symtab.lookup class_syntax },
   403       program)
   404   end;
   405 
   406 fun mount_serializer thy target some_width module_name args naming program names =
   407   let
   408     val (default_width, abortable, data, modify) = activate_target thy target;
   409     val serializer = case the_description data
   410      of Fundamental seri => #serializer seri;
   411     val (prepared_serializer, prepared_program) =
   412       prepare_serializer thy abortable serializer (the_literals thy target)
   413         (the_reserved data) (the_identifiers data) (the_printings data)
   414         module_name args naming (modify naming program) names
   415     val width = the_default default_width some_width;
   416   in (fn program => prepared_serializer program width, prepared_program) end;
   417 
   418 fun invoke_serializer thy target some_width module_name args naming program names =
   419   let
   420     val (mounted_serializer, prepared_program) = mount_serializer thy
   421       target some_width module_name args naming program names;
   422   in mounted_serializer prepared_program end;
   423 
   424 fun assert_module_name "" = error "Empty module name not allowed here"
   425   | assert_module_name module_name = module_name;
   426 
   427 fun using_master_directory thy =
   428   Option.map (Path.append (File.pwd ()) o Path.append (Thy_Load.master_directory thy));
   429 
   430 in
   431 
   432 val generatedN = "Generated_Code";
   433 
   434 fun export_code_for thy some_path target some_width module_name args =
   435   export (using_master_directory thy some_path)
   436   ooo invoke_serializer thy target some_width module_name args;
   437 
   438 fun produce_code_for thy target some_width module_name args =
   439   let
   440     val serializer = invoke_serializer thy target some_width (assert_module_name module_name) args;
   441   in fn naming => fn program => fn names =>
   442     produce (serializer naming program names) |> apsnd (fn deresolve => map deresolve names)
   443   end;
   444 
   445 fun present_code_for thy target some_width module_name args =
   446   let
   447     val serializer = invoke_serializer thy target some_width (assert_module_name module_name) args;
   448   in fn naming => fn program => fn (names, selects) =>
   449     present selects (serializer naming program names)
   450   end;
   451 
   452 fun check_code_for thy target strict args naming program names_cs =
   453   let
   454     val { env_var, make_destination, make_command } =
   455       (#check o the_fundamental thy) target;
   456     fun ext_check p =
   457       let
   458         val destination = make_destination p;
   459         val _ = export (SOME destination) (invoke_serializer thy target (SOME 80)
   460           generatedN args naming program names_cs);
   461         val cmd = make_command generatedN;
   462       in
   463         if Isabelle_System.bash ("cd " ^ File.shell_path p ^ " && " ^ cmd ^ " 2>&1") <> 0
   464         then error ("Code check failed for " ^ target ^ ": " ^ cmd)
   465         else ()
   466       end;
   467   in
   468     if getenv env_var = ""
   469     then if strict
   470       then error (env_var ^ " not set; cannot check code for " ^ target)
   471       else warning (env_var ^ " not set; skipped checking code for " ^ target)
   472     else Isabelle_System.with_tmp_dir "Code_Test" ext_check
   473   end;
   474 
   475 fun evaluation mounted_serializer prepared_program consts ((vs, ty), t) =
   476   let
   477     val _ = if Code_Thingol.contains_dict_var t then
   478       error "Term to be evaluated contains free dictionaries" else ();
   479     val v' = singleton (Name.variant_list (map fst vs)) "a";
   480     val vs' = (v', []) :: vs;
   481     val ty' = Code_Thingol.fun_tyco `%% [ITyVar v', ty];
   482     val value_name = "Value.value.value"
   483     val program = prepared_program
   484       |> Graph.new_node (value_name,
   485           Code_Thingol.Fun (@{const_name dummy_pattern}, (((vs', ty'), [(([IVar NONE], t), (NONE, true))]), NONE)))
   486       |> fold (curry (perhaps o try o Graph.add_edge) value_name) consts;
   487     val (program_code, deresolve) = produce (mounted_serializer program);
   488     val value_name' = the (deresolve value_name);
   489   in (program_code, value_name') end;
   490 
   491 fun evaluator thy target naming program consts =
   492   let
   493     val (mounted_serializer, prepared_program) = mount_serializer thy
   494       target NONE generatedN [] naming program consts;
   495   in evaluation mounted_serializer prepared_program consts end;
   496 
   497 end; (* local *)
   498 
   499 
   500 (* code generation *)
   501 
   502 fun transitivly_non_empty_funs thy naming program =
   503   let
   504     val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program);
   505     val names = map_filter (Code_Thingol.lookup_const naming) cs;
   506   in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end;
   507 
   508 fun read_const_exprs thy cs =
   509   let
   510     val (cs1, cs2) = Code_Thingol.read_const_exprs thy cs;
   511     val (names2, (naming, program)) = Code_Thingol.consts_program thy true cs2;
   512     val names3 = transitivly_non_empty_funs thy naming program;
   513     val cs3 = map_filter (fn (c, name) =>
   514       if member (op =) names3 name then SOME c else NONE) (cs2 ~~ names2);
   515   in union (op =) cs3 cs1 end;
   516 
   517 fun prep_destination "" = NONE
   518   | prep_destination "-" = NONE
   519   | prep_destination s = SOME (Path.explode s);
   520 
   521 fun export_code thy cs seris =
   522   let
   523     val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
   524     val _ = map (fn (((target, module_name), some_path), args) =>
   525       export_code_for thy some_path target NONE module_name args naming program names_cs) seris;
   526   in () end;
   527 
   528 fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs)
   529   ((map o apfst o apsnd) prep_destination seris);
   530 
   531 fun produce_code thy cs target some_width some_module_name args =
   532   let
   533     val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
   534   in produce_code_for thy target some_width some_module_name args naming program names_cs end;
   535 
   536 fun present_code thy cs names_stmt target some_width some_module_name args =
   537   let
   538     val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
   539   in present_code_for thy target some_width some_module_name args naming program (names_cs, names_stmt naming) end;
   540 
   541 fun check_code thy cs seris =
   542   let
   543     val (names_cs, (naming, program)) = Code_Thingol.consts_program thy false cs;
   544     val _ = map (fn ((target, strict), args) =>
   545       check_code_for thy target strict args naming program names_cs) seris;
   546   in () end;
   547 
   548 fun check_code_cmd raw_cs seris thy = check_code thy (read_const_exprs thy raw_cs) seris;
   549 
   550 local
   551 
   552 val parse_const_terms = Scan.repeat1 Args.term
   553   >> (fn ts => fn thy => map (Code.check_const thy) ts);
   554 
   555 fun parse_names category parse internalize lookup =
   556   Scan.lift (Args.parens (Args.$$$ category)) |-- Scan.repeat1 parse
   557   >> (fn xs => fn thy => fn naming => map_filter (lookup naming o internalize thy) xs);
   558 
   559 val parse_consts = parse_names "consts" Args.term
   560   Code.check_const Code_Thingol.lookup_const;
   561 
   562 val parse_types = parse_names "types" (Scan.lift Args.name)
   563   Sign.intern_type Code_Thingol.lookup_tyco;
   564 
   565 val parse_classes = parse_names "classes" (Scan.lift Args.name)
   566   Sign.intern_class Code_Thingol.lookup_class;
   567 
   568 val parse_instances = parse_names "instances" (Scan.lift (Args.name --| Args.$$$ "::" -- Args.name))
   569   (fn thy => fn (raw_tyco, raw_class) => (Sign.intern_class thy raw_class, Sign.intern_type thy raw_tyco))
   570     Code_Thingol.lookup_instance;
   571 
   572 in
   573 
   574 val antiq_setup =
   575   Thy_Output.antiquotation @{binding code_stmts}
   576     (parse_const_terms --
   577       Scan.repeat (parse_consts || parse_types || parse_classes || parse_instances)
   578       -- Scan.lift (Args.parens (Args.name -- Scan.option Parse.int)))
   579     (fn {context = ctxt, ...} => fn ((mk_cs, mk_stmtss), (target, some_width)) =>
   580       let val thy = Proof_Context.theory_of ctxt in
   581         present_code thy (mk_cs thy)
   582           (fn naming => maps (fn f => f thy naming) mk_stmtss)
   583           target some_width "Example" []
   584       end);
   585 
   586 end;
   587 
   588 
   589 (** serializer configuration **)
   590 
   591 (* reserved symbol names *)
   592 
   593 fun add_reserved target sym thy =
   594   let
   595     val (_, data) = collapse_hierarchy thy target;
   596     val _ = if member (op =) (the_reserved data) sym
   597       then error ("Reserved symbol " ^ quote sym ^ " already declared")
   598       else ();
   599   in
   600     thy
   601     |> map_reserved target (insert (op =) sym)
   602   end;
   603 
   604 
   605 (* checking of syntax *)
   606 
   607 fun check_const_syntax thy c syn =
   608   if Code_Printer.requires_args syn > Code.args_number thy c
   609   then error ("Too many arguments in syntax for constant " ^ quote c)
   610   else syn;
   611 
   612 fun check_tyco_syntax thy tyco syn =
   613   if fst syn <> Sign.arity_number thy tyco
   614   then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
   615   else syn;
   616 
   617 
   618 (* custom symbol names *)
   619 
   620 fun arrange_name_decls x =
   621   let
   622     fun arrange is_module (sym, target_names) = map (fn (target, some_name) =>
   623       (target, (sym, Option.map (check_name is_module) some_name))) target_names;
   624   in
   625     Code_Symbol.maps_attr' (arrange false) (arrange false) (arrange false)
   626       (arrange false) (arrange false) (arrange true) x
   627   end;
   628 
   629 fun cert_name_decls thy = cert_syms thy #> arrange_name_decls;
   630 
   631 fun read_name_decls thy = read_syms thy #> arrange_name_decls;
   632 
   633 fun set_identifier (target, sym_name) = map_identifiers target (Code_Symbol.set_data sym_name);
   634 
   635 fun gen_set_identifiers prep_name_decl raw_name_decls thy =
   636   fold set_identifier (prep_name_decl thy raw_name_decls) thy;
   637 
   638 val set_identifiers = gen_set_identifiers cert_name_decls;
   639 val set_identifiers_cmd = gen_set_identifiers read_name_decls;
   640 
   641 fun add_module_alias_cmd target = fold (fn (sym, name) =>
   642   set_identifier (target, Code_Symbol.Module (sym, if name = "" then NONE else SOME (check_name true name))));
   643 
   644 
   645 (* custom printings *)
   646 
   647 fun arrange_printings prep_const thy =
   648   let
   649     fun arrange check (sym, target_syns) =
   650       map (fn (target, some_syn) => (target, (sym, Option.map (check thy sym) some_syn))) target_syns;
   651   in
   652     Code_Symbol.maps_attr'
   653       (arrange check_const_syntax) (arrange check_tyco_syntax)
   654         (arrange ((K o K) I)) (arrange ((K o K) I)) (arrange ((K o K) I))
   655         (arrange (fn thy => fn _ => fn (raw_content, raw_cs) =>
   656           (Code_Printer.str raw_content, map (prep_const thy) raw_cs)))
   657   end;
   658 
   659 fun cert_printings thy = cert_syms thy #> arrange_printings cert_const thy;
   660 
   661 fun read_printings thy = read_syms thy #> arrange_printings Code.read_const thy;
   662 
   663 fun set_printing (target, sym_syn) = map_printings target (Code_Symbol.set_data sym_syn);
   664 
   665 fun gen_set_printings prep_print_decl raw_print_decls thy =
   666   fold set_printing (prep_print_decl thy raw_print_decls) thy;
   667 
   668 val set_printings = gen_set_printings cert_printings;
   669 val set_printings_cmd = gen_set_printings read_printings;
   670 
   671 fun gen_add_syntax Symbol prep_x prep_syn target raw_x some_raw_syn thy =
   672   let
   673     val x = prep_x thy raw_x;
   674   in set_printing (target, Symbol (x, Option.map (prep_syn thy x) some_raw_syn)) thy end;
   675 
   676 fun gen_add_const_syntax prep_const =
   677   gen_add_syntax Code_Symbol.Constant prep_const check_const_syntax;
   678 
   679 fun gen_add_tyco_syntax prep_tyco =
   680   gen_add_syntax Code_Symbol.Type_Constructor prep_tyco check_tyco_syntax;
   681 
   682 fun gen_add_class_syntax prep_class =
   683   gen_add_syntax Code_Symbol.Type_Class prep_class ((K o K) I);
   684 
   685 fun gen_add_instance_syntax prep_inst =
   686   gen_add_syntax Code_Symbol.Class_Instance prep_inst ((K o K) I);
   687 
   688 fun gen_add_include prep_const target (name, some_content) thy =
   689   gen_add_syntax Code_Symbol.Module (K I)
   690     (fn thy => fn _ => fn (raw_content, raw_cs) => (Code_Printer.str raw_content, map (prep_const thy) raw_cs))
   691     target name some_content thy;
   692 
   693 
   694 (* abortable constants *)
   695 
   696 fun gen_allow_abort prep_const raw_c thy =
   697   let
   698     val c = prep_const thy raw_c;
   699   in thy |> (Targets.map o apfst o apsnd) (insert (op =) c) end;
   700 
   701 
   702 (* concrete syntax *)
   703 
   704 local
   705 
   706 fun zip_list (x :: xs) f g =
   707   f
   708   :|-- (fn y =>
   709     fold_map (fn x => g |-- f >> pair x) xs
   710     :|-- (fn xys => pair ((x, y) :: xys)));
   711 
   712 fun process_multi_syntax parse_thing parse_syntax change =
   713   (Parse.and_list1 parse_thing
   714   :|-- (fn things => Scan.repeat1 (@{keyword "("} |-- Parse.name --
   715         (zip_list things (Scan.option parse_syntax) @{keyword "and"}) --| @{keyword ")"})))
   716   >> (Toplevel.theory oo fold)
   717     (fn (target, syns) => fold (fn (raw_x, syn) => change target raw_x syn) syns);
   718 
   719 in
   720 
   721 val add_reserved = add_reserved;
   722 val add_const_syntax = gen_add_const_syntax (K I);
   723 val add_tyco_syntax = gen_add_tyco_syntax cert_tyco;
   724 val add_class_syntax = gen_add_class_syntax cert_class;
   725 val add_instance_syntax = gen_add_instance_syntax cert_inst;
   726 val add_include = gen_add_include (K I);
   727 val allow_abort = gen_allow_abort (K I);
   728 
   729 val add_const_syntax_cmd = gen_add_const_syntax Code.read_const;
   730 val add_tyco_syntax_cmd = gen_add_tyco_syntax read_tyco;
   731 val add_class_syntax_cmd = gen_add_class_syntax read_class;
   732 val add_instance_syntax_cmd = gen_add_instance_syntax read_inst;
   733 val add_include_cmd = gen_add_include Code.read_const;
   734 val allow_abort_cmd = gen_allow_abort Code.read_const;
   735 
   736 fun parse_args f args =
   737   case Scan.read Token.stopper f args
   738    of SOME x => x
   739     | NONE => error "Bad serializer arguments";
   740 
   741 
   742 (** Isar setup **)
   743 
   744 fun parse_single_symbol_pragma parse_keyword parse_isa parse_target =
   745   parse_keyword |-- Parse.!!! (parse_isa --| (@{keyword "\<rightharpoonup>"} || @{keyword "=>"})
   746     -- Parse.and_list1 (@{keyword "("} |-- (Parse.name --| @{keyword ")"} -- Scan.option parse_target)));
   747 
   748 fun parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
   749   parse_single_symbol_pragma @{keyword "constant"} Parse.term_group parse_const
   750     >> Code_Symbol.Constant
   751   || parse_single_symbol_pragma @{keyword "type_constructor"} Parse.type_const parse_tyco
   752     >> Code_Symbol.Type_Constructor
   753   || parse_single_symbol_pragma @{keyword "type_class"} Parse.class parse_class
   754     >> Code_Symbol.Type_Class
   755   || parse_single_symbol_pragma @{keyword "class_relation"} parse_classrel_ident parse_classrel
   756     >> Code_Symbol.Class_Relation
   757   || parse_single_symbol_pragma @{keyword "class_instance"} parse_inst_ident parse_inst
   758     >> Code_Symbol.Class_Instance
   759   || parse_single_symbol_pragma @{keyword "code_module"} Parse.name parse_module
   760     >> Code_Symbol.Module;
   761 
   762 fun parse_symbol_pragmas parse_const parse_tyco parse_class parse_classrel parse_inst parse_module =
   763   Parse.enum1 "|" (Parse.group (fn () => "code symbol pragma")
   764     (parse_symbol_pragma parse_const parse_tyco parse_class parse_classrel parse_inst parse_module));
   765 
   766 val code_expr_argsP = Scan.optional (@{keyword "("} |-- Args.parse --| @{keyword ")"}) [];
   767 
   768 fun code_expr_inP raw_cs =
   769   Scan.repeat (@{keyword "in"} |-- Parse.!!! (Parse.name
   770     -- Scan.optional (@{keyword "module_name"} |-- Parse.name) ""
   771     -- Scan.optional (@{keyword "file"} |-- Parse.name) ""
   772     -- code_expr_argsP))
   773       >> (fn seri_args => export_code_cmd raw_cs seri_args);
   774 
   775 fun code_expr_checkingP raw_cs =
   776   (@{keyword "checking"} |-- Parse.!!!
   777     (Scan.repeat (Parse.name -- ((@{keyword "?"} |-- Scan.succeed false) || Scan.succeed true)
   778     -- code_expr_argsP)))
   779       >> (fn seri_args => check_code_cmd raw_cs seri_args);
   780 
   781 val code_exprP = Scan.repeat1 Parse.term_group
   782   :|-- (fn raw_cs => (code_expr_checkingP raw_cs || code_expr_inP raw_cs));
   783 
   784 val _ =
   785   Outer_Syntax.command @{command_spec "code_reserved"}
   786     "declare words as reserved for target language"
   787     (Parse.name -- Scan.repeat1 Parse.name
   788       >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds));
   789 
   790 val _ =
   791   Outer_Syntax.command @{command_spec "code_identifier"} "declare mandatory names for code symbols"
   792     (parse_symbol_pragmas Parse.name Parse.name Parse.name Parse.name Parse.name Parse.name
   793       >> (Toplevel.theory o fold set_identifiers_cmd));
   794 
   795 val _ =
   796   Outer_Syntax.command @{command_spec "code_modulename"} "alias module to other name"
   797     (Parse.name -- Scan.repeat1 (Parse.name -- Parse.name)
   798       >> (fn (target, modlnames) => (Toplevel.theory o add_module_alias_cmd target) modlnames));
   799 
   800 val _ =
   801   Outer_Syntax.command @{command_spec "code_printing"} "declare dedicated printing for code symbols"
   802     (parse_symbol_pragmas (Code_Printer.parse_const_syntax) (Code_Printer.parse_tyco_syntax)
   803       Parse.string (Parse.minus >> K ()) (Parse.minus >> K ())
   804       (Parse.text -- Scan.optional (@{keyword "attach"} |-- Scan.repeat1 Parse.term) [])
   805       >> (Toplevel.theory o fold set_printings_cmd));
   806 
   807 val _ =
   808   Outer_Syntax.command @{command_spec "code_const"} "define code syntax for constant"
   809     (process_multi_syntax Parse.term_group Code_Printer.parse_const_syntax
   810       add_const_syntax_cmd);
   811 
   812 val _ =
   813   Outer_Syntax.command @{command_spec "code_type"} "define code syntax for type constructor"
   814     (process_multi_syntax Parse.type_const Code_Printer.parse_tyco_syntax
   815       add_tyco_syntax_cmd);
   816 
   817 val _ =
   818   Outer_Syntax.command @{command_spec "code_class"} "define code syntax for class"
   819     (process_multi_syntax Parse.class Parse.string
   820       add_class_syntax_cmd);
   821 
   822 val _ =
   823   Outer_Syntax.command @{command_spec "code_instance"} "define code syntax for instance"
   824     (process_multi_syntax parse_inst_ident (Parse.minus >> K ())
   825       add_instance_syntax_cmd);
   826 
   827 val _ =
   828   Outer_Syntax.command @{command_spec "code_include"}
   829     "declare piece of code to be included in generated code"
   830     (Parse.name -- Parse.name -- (Parse.text :|--
   831       (fn "-" => Scan.succeed NONE
   832         | s => Scan.optional (@{keyword "attach"} |-- Scan.repeat1 Parse.term) [] >> pair s >> SOME))
   833       >> (fn ((target, name), content_consts) =>
   834           (Toplevel.theory o add_include_cmd target) (name, content_consts)));
   835 
   836 val _ =
   837   Outer_Syntax.command @{command_spec "code_abort"}
   838     "permit constant to be implemented as program abort"
   839     (Scan.repeat1 Parse.term_group >> (Toplevel.theory o fold allow_abort_cmd));
   840 
   841 val _ =
   842   Outer_Syntax.command @{command_spec "export_code"} "generate executable code for constants"
   843     (Parse.!!! code_exprP >> (fn f => Toplevel.keep (f o Toplevel.theory_of)));
   844 
   845 end; (*local*)
   846 
   847 
   848 (** external entrance point -- for codegen tool **)
   849 
   850 fun codegen_tool thyname cmd_expr =
   851   let
   852     val thy = Thy_Info.get_theory thyname;
   853     val parse = Scan.read Token.stopper (Parse.!!! code_exprP) o
   854       (filter Token.is_proper o Outer_Syntax.scan Position.none);
   855   in case parse cmd_expr
   856    of SOME f => (writeln "Now generating code..."; f thy)
   857     | NONE => error ("Bad directive " ^ quote cmd_expr)
   858   end;
   859 
   860 
   861 (** theory setup **)
   862 
   863 val setup = antiq_setup;
   864 
   865 end; (*struct*)