src/Tools/code/code_target.ML
author blanchet
Wed, 04 Mar 2009 11:05:29 +0100
changeset 30242 aea5d7fa7ef5
parent 30240 5b25fee0362c
parent 30161 c26e515f1c29
child 30492 c150e6fa4e0d
permissions -rw-r--r--
Merge.
     1 (*  Title:      Tools/code/code_target.ML
     2     Author:     Florian Haftmann, TU Muenchen
     3 
     4 Serializer from intermediate language ("Thin-gol") to target languages.
     5 *)
     6 
     7 signature CODE_TARGET =
     8 sig
     9   include CODE_PRINTER
    10 
    11   type serializer
    12   val add_target: string * (serializer * literals) -> theory -> theory
    13   val extend_target: string *
    14       (string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program))
    15     -> theory -> theory
    16   val assert_target: theory -> string -> string
    17 
    18   type destination
    19   type serialization
    20   val parse_args: (OuterLex.token list -> 'a * OuterLex.token list)
    21     -> OuterLex.token list -> 'a
    22   val stmt_names_of_destination: destination -> string list
    23   val code_of_pretty: Pretty.T -> string
    24   val code_writeln: Pretty.T -> unit
    25   val mk_serialization: string -> ('a -> unit) option
    26     -> (Path.T option -> 'a -> unit)
    27     -> ('a -> string * string option list)
    28     -> 'a -> serialization
    29   val serialize: theory -> string -> string option -> Args.T list
    30     -> Code_Thingol.naming -> Code_Thingol.program -> string list -> serialization
    31   val serialize_custom: theory -> string * (serializer * literals)
    32     -> Code_Thingol.naming -> Code_Thingol.program -> string list -> string * string option list
    33   val the_literals: theory -> string -> literals
    34   val compile: serialization -> unit
    35   val export: serialization -> unit
    36   val file: Path.T -> serialization -> unit
    37   val string: string list -> serialization -> string
    38   val code_of: theory -> string -> string
    39     -> string list -> (Code_Thingol.naming -> string list) -> string
    40   val code_width: int ref
    41 
    42   val allow_abort: string -> theory -> theory
    43   val add_syntax_class: string -> class -> string option -> theory -> theory
    44   val add_syntax_inst: string -> string * class -> bool -> theory -> theory
    45   val add_syntax_tyco: string -> string -> tyco_syntax option -> theory -> theory
    46   val add_syntax_const: string -> string -> const_syntax option -> theory -> theory
    47   val add_reserved: string -> string -> theory -> theory
    48 end;
    49 
    50 structure Code_Target : CODE_TARGET =
    51 struct
    52 
    53 open Basic_Code_Thingol;
    54 open Code_Printer;
    55 
    56 (** basics **)
    57 
    58 datatype destination = Compile | Export | File of Path.T | String of string list;
    59 type serialization = destination -> (string * string option list) option;
    60 
    61 val code_width = ref 80; (*FIXME after Pretty module no longer depends on print mode*)
    62 fun code_setmp f = PrintMode.setmp [] (Pretty.setmp_margin (!code_width) f);
    63 fun code_of_pretty p = code_setmp Pretty.string_of p ^ "\n";
    64 fun code_writeln p = Pretty.setmp_margin (!code_width) Pretty.writeln p;
    65 
    66 (*FIXME why another code_setmp?*)
    67 fun compile f = (code_setmp f Compile; ());
    68 fun export f = (code_setmp f Export; ());
    69 fun file p f = (code_setmp f (File p); ());
    70 fun string cs f = fst (the (code_setmp f (String cs)));
    71 
    72 fun stmt_names_of_destination (String stmts) = stmts
    73   | stmt_names_of_destination _ = [];
    74 
    75 fun mk_serialization target (SOME comp) _ _ code Compile = (comp code; NONE)
    76   | mk_serialization target NONE _ _ _ Compile = error (target ^ ": no internal compilation")
    77   | mk_serialization target _ output _ code Export = (output NONE code ; NONE)
    78   | mk_serialization target _ output _ code (File file) = (output (SOME file) code; NONE)
    79   | mk_serialization target _ _ string code (String _) = SOME (string code);
    80 
    81 
    82 (** theory data **)
    83 
    84 structure StringPairTab = Code_Name.StringPairTab;
    85 
    86 datatype name_syntax_table = NameSyntaxTable of {
    87   class: string Symtab.table,
    88   instance: unit StringPairTab.table,
    89   tyco: tyco_syntax Symtab.table,
    90   const: const_syntax Symtab.table
    91 };
    92 
    93 fun mk_name_syntax_table ((class, instance), (tyco, const)) =
    94   NameSyntaxTable { class = class, instance = instance, tyco = tyco, const = const };
    95 fun map_name_syntax_table f (NameSyntaxTable { class, instance, tyco, const }) =
    96   mk_name_syntax_table (f ((class, instance), (tyco, const)));
    97 fun merge_name_syntax_table (NameSyntaxTable { class = class1, instance = instance1, tyco = tyco1, const = const1 },
    98     NameSyntaxTable { class = class2, instance = instance2, tyco = tyco2, const = const2 }) =
    99   mk_name_syntax_table (
   100     (Symtab.join (K snd) (class1, class2),
   101        StringPairTab.join (K snd) (instance1, instance2)),
   102     (Symtab.join (K snd) (tyco1, tyco2),
   103        Symtab.join (K snd) (const1, const2))
   104   );
   105 
   106 type serializer =
   107   string option                         (*module name*)
   108   -> Args.T list                        (*arguments*)
   109   -> (string -> string)                 (*labelled_name*)
   110   -> string list                        (*reserved symbols*)
   111   -> (string * Pretty.T) list           (*includes*)
   112   -> (string -> string option)          (*module aliasses*)
   113   -> (string -> string option)          (*class syntax*)
   114   -> (string -> tyco_syntax option)
   115   -> (string -> const_syntax option)
   116   -> Code_Thingol.naming
   117   -> Code_Thingol.program
   118   -> string list                        (*selected statements*)
   119   -> serialization;
   120 
   121 datatype serializer_entry = Serializer of serializer * literals
   122   | Extends of string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program);
   123 
   124 datatype target = Target of {
   125   serial: serial,
   126   serializer: serializer_entry,
   127   reserved: string list,
   128   includes: (Pretty.T * string list) Symtab.table,
   129   name_syntax_table: name_syntax_table,
   130   module_alias: string Symtab.table
   131 };
   132 
   133 fun mk_target ((serial, serializer), ((reserved, includes), (name_syntax_table, module_alias))) =
   134   Target { serial = serial, serializer = serializer, reserved = reserved, 
   135     includes = includes, name_syntax_table = name_syntax_table, module_alias = module_alias };
   136 fun map_target f ( Target { serial, serializer, reserved, includes, name_syntax_table, module_alias } ) =
   137   mk_target (f ((serial, serializer), ((reserved, includes), (name_syntax_table, module_alias))));
   138 fun merge_target strict target (Target { serial = serial1, serializer = serializer,
   139   reserved = reserved1, includes = includes1,
   140   name_syntax_table = name_syntax_table1, module_alias = module_alias1 },
   141     Target { serial = serial2, serializer = _,
   142       reserved = reserved2, includes = includes2,
   143       name_syntax_table = name_syntax_table2, module_alias = module_alias2 }) =
   144   if serial1 = serial2 orelse not strict then
   145     mk_target ((serial1, serializer),
   146       ((merge (op =) (reserved1, reserved2), Symtab.merge (op =) (includes1, includes2)),
   147         (merge_name_syntax_table (name_syntax_table1, name_syntax_table2),
   148           Symtab.join (K snd) (module_alias1, module_alias2))
   149     ))
   150   else
   151     error ("Incompatible serializers: " ^ quote target);
   152 
   153 structure CodeTargetData = TheoryDataFun
   154 (
   155   type T = target Symtab.table * string list;
   156   val empty = (Symtab.empty, []);
   157   val copy = I;
   158   val extend = I;
   159   fun merge _ ((target1, exc1) : T, (target2, exc2)) =
   160     (Symtab.join (merge_target true) (target1, target2), Library.merge (op =) (exc1, exc2));
   161 );
   162 
   163 fun the_serializer (Target { serializer, ... }) = serializer;
   164 fun the_reserved (Target { reserved, ... }) = reserved;
   165 fun the_includes (Target { includes, ... }) = includes;
   166 fun the_name_syntax (Target { name_syntax_table = NameSyntaxTable x, ... }) = x;
   167 fun the_module_alias (Target { module_alias , ... }) = module_alias;
   168 
   169 val abort_allowed = snd o CodeTargetData.get;
   170 
   171 fun assert_target thy target =
   172   case Symtab.lookup (fst (CodeTargetData.get thy)) target
   173    of SOME data => target
   174     | NONE => error ("Unknown code target language: " ^ quote target);
   175 
   176 fun put_target (target, seri) thy =
   177   let
   178     val lookup_target = Symtab.lookup (fst (CodeTargetData.get thy));
   179     val _ = case seri
   180      of Extends (super, _) => if is_some (lookup_target super) then ()
   181           else error ("Unknown code target language: " ^ quote super)
   182       | _ => ();
   183     val overwriting = case (Option.map the_serializer o lookup_target) target
   184      of NONE => false
   185       | SOME (Extends _) => true
   186       | SOME (Serializer _) => (case seri
   187          of Extends _ => error ("Will not overwrite existing target " ^ quote target)
   188           | _ => true);
   189     val _ = if overwriting
   190       then warning ("Overwriting existing target " ^ quote target)
   191       else (); 
   192   in
   193     thy
   194     |> (CodeTargetData.map o apfst oo Symtab.map_default)
   195           (target, mk_target ((serial (), seri), (([], Symtab.empty),
   196             (mk_name_syntax_table ((Symtab.empty, StringPairTab.empty), (Symtab.empty, Symtab.empty)),
   197               Symtab.empty))))
   198           ((map_target o apfst o apsnd o K) seri)
   199   end;
   200 
   201 fun add_target (target, seri) = put_target (target, Serializer seri);
   202 fun extend_target (target, (super, modify)) =
   203   put_target (target, Extends (super, modify));
   204 
   205 fun map_target_data target f thy =
   206   let
   207     val _ = assert_target thy target;
   208   in
   209     thy
   210     |> (CodeTargetData.map o apfst o Symtab.map_entry target o map_target) f
   211   end;
   212 
   213 fun map_reserved target =
   214   map_target_data target o apsnd o apfst o apfst;
   215 fun map_includes target =
   216   map_target_data target o apsnd o apfst o apsnd;
   217 fun map_name_syntax target =
   218   map_target_data target o apsnd o apsnd o apfst o map_name_syntax_table;
   219 fun map_module_alias target =
   220   map_target_data target o apsnd o apsnd o apsnd;
   221 
   222 
   223 (** serializer configuration **)
   224 
   225 (* data access *)
   226 
   227 local
   228 
   229 fun cert_class thy class =
   230   let
   231     val _ = AxClass.get_info thy class;
   232   in class end;
   233 
   234 fun read_class thy = cert_class thy o Sign.intern_class thy;
   235 
   236 fun cert_tyco thy tyco =
   237   let
   238     val _ = if Sign.declared_tyname thy tyco then ()
   239       else error ("No such type constructor: " ^ quote tyco);
   240   in tyco end;
   241 
   242 fun read_tyco thy = cert_tyco thy o Sign.intern_type thy;
   243 
   244 fun gen_add_syntax_class prep_class prep_const target raw_class raw_syn thy =
   245   let
   246     val class = prep_class thy raw_class;
   247   in case raw_syn
   248    of SOME syntax =>
   249       thy
   250       |> (map_name_syntax target o apfst o apfst)
   251            (Symtab.update (class, syntax))
   252     | NONE =>
   253       thy
   254       |> (map_name_syntax target o apfst o apfst)
   255            (Symtab.delete_safe class)
   256   end;
   257 
   258 fun gen_add_syntax_inst prep_class prep_tyco target (raw_tyco, raw_class) add_del thy =
   259   let
   260     val inst = (prep_class thy raw_class, prep_tyco thy raw_tyco);
   261   in if add_del then
   262     thy
   263     |> (map_name_syntax target o apfst o apsnd)
   264         (StringPairTab.update (inst, ()))
   265   else
   266     thy
   267     |> (map_name_syntax target o apfst o apsnd)
   268         (StringPairTab.delete_safe inst)
   269   end;
   270 
   271 fun gen_add_syntax_tyco prep_tyco target raw_tyco raw_syn thy =
   272   let
   273     val tyco = prep_tyco thy raw_tyco;
   274     fun check_args (syntax as (n, _)) = if n <> Sign.arity_number thy tyco
   275       then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco)
   276       else syntax
   277   in case raw_syn
   278    of SOME syntax =>
   279       thy
   280       |> (map_name_syntax target o apsnd o apfst)
   281            (Symtab.update (tyco, check_args syntax))
   282     | NONE =>
   283       thy
   284       |> (map_name_syntax target o apsnd o apfst)
   285            (Symtab.delete_safe tyco)
   286   end;
   287 
   288 fun gen_add_syntax_const prep_const target raw_c raw_syn thy =
   289   let
   290     val c = prep_const thy raw_c;
   291     fun check_args (syntax as (n, _)) = if n > Code_Unit.no_args thy c
   292       then error ("Too many arguments in syntax for constant " ^ quote c)
   293       else syntax;
   294   in case raw_syn
   295    of SOME syntax =>
   296       thy
   297       |> (map_name_syntax target o apsnd o apsnd)
   298            (Symtab.update (c, check_args syntax))
   299     | NONE =>
   300       thy
   301       |> (map_name_syntax target o apsnd o apsnd)
   302            (Symtab.delete_safe c)
   303   end;
   304 
   305 fun add_reserved target =
   306   let
   307     fun add sym syms = if member (op =) syms sym
   308       then error ("Reserved symbol " ^ quote sym ^ " already declared")
   309       else insert (op =) sym syms
   310   in map_reserved target o add end;
   311 
   312 fun gen_add_include read_const target args thy =
   313   let
   314     fun add (name, SOME (content, raw_cs)) incls =
   315           let
   316             val _ = if Symtab.defined incls name
   317               then warning ("Overwriting existing include " ^ name)
   318               else ();
   319             val cs = map (read_const thy) raw_cs;
   320           in Symtab.update (name, (str content, cs)) incls end
   321       | add (name, NONE) incls = Symtab.delete name incls;
   322   in map_includes target (add args) thy end;
   323 
   324 val add_include = gen_add_include Code_Unit.check_const;
   325 val add_include_cmd = gen_add_include Code_Unit.read_const;
   326 
   327 fun add_module_alias target =
   328   map_module_alias target o Symtab.update o apsnd Code_Name.check_modulename;
   329 
   330 fun gen_allow_abort prep_const raw_c thy =
   331   let
   332     val c = prep_const thy raw_c;
   333   in thy |> (CodeTargetData.map o apsnd) (insert (op =) c) end;
   334 
   335 fun zip_list (x::xs) f g =
   336   f
   337   #-> (fn y =>
   338     fold_map (fn x => g |-- f >> pair x) xs
   339     #-> (fn xys => pair ((x, y) :: xys)));
   340 
   341 
   342 (* concrete syntax *)
   343 
   344 structure P = OuterParse
   345 and K = OuterKeyword
   346 
   347 fun parse_multi_syntax parse_thing parse_syntax =
   348   P.and_list1 parse_thing
   349   #-> (fn things => Scan.repeat1 (P.$$$ "(" |-- P.name --
   350         (zip_list things parse_syntax (P.$$$ "and")) --| P.$$$ ")"));
   351 
   352 in
   353 
   354 val add_syntax_class = gen_add_syntax_class cert_class (K I);
   355 val add_syntax_inst = gen_add_syntax_inst cert_class cert_tyco;
   356 val add_syntax_tyco = gen_add_syntax_tyco cert_tyco;
   357 val add_syntax_const = gen_add_syntax_const (K I);
   358 val allow_abort = gen_allow_abort (K I);
   359 val add_reserved = add_reserved;
   360 
   361 val add_syntax_class_cmd = gen_add_syntax_class read_class Code_Unit.read_const;
   362 val add_syntax_inst_cmd = gen_add_syntax_inst read_class read_tyco;
   363 val add_syntax_tyco_cmd = gen_add_syntax_tyco read_tyco;
   364 val add_syntax_const_cmd = gen_add_syntax_const Code_Unit.read_const;
   365 val allow_abort_cmd = gen_allow_abort Code_Unit.read_const;
   366 
   367 fun the_literals thy =
   368   let
   369     val (targets, _) = CodeTargetData.get thy;
   370     fun literals target = case Symtab.lookup targets target
   371      of SOME data => (case the_serializer data
   372          of Serializer (_, literals) => literals
   373           | Extends (super, _) => literals super)
   374       | NONE => error ("Unknown code target language: " ^ quote target);
   375   in literals end;
   376 
   377 
   378 (** serializer usage **)
   379 
   380 (* montage *)
   381 
   382 local
   383 
   384 fun labelled_name thy program name = case Graph.get_node program name
   385  of Code_Thingol.Fun (c, _) => quote (Code_Unit.string_of_const thy c)
   386   | Code_Thingol.Datatype (tyco, _) => "type " ^ quote (Sign.extern_type thy tyco)
   387   | Code_Thingol.Datatypecons (c, _) => quote (Code_Unit.string_of_const thy c)
   388   | Code_Thingol.Class (class, _) => "class " ^ quote (Sign.extern_class thy class)
   389   | Code_Thingol.Classrel (sub, super) => let
   390         val Code_Thingol.Class (sub, _) = Graph.get_node program sub
   391         val Code_Thingol.Class (super, _) = Graph.get_node program super
   392       in quote (Sign.extern_class thy sub ^ " < " ^ Sign.extern_class thy super) end
   393   | Code_Thingol.Classparam (c, _) => quote (Code_Unit.string_of_const thy c)
   394   | Code_Thingol.Classinst ((class, (tyco, _)), _) => let
   395         val Code_Thingol.Class (class, _) = Graph.get_node program class
   396         val Code_Thingol.Datatype (tyco, _) = Graph.get_node program tyco
   397       in quote (Sign.extern_type thy tyco ^ " :: " ^ Sign.extern_class thy class) end
   398 
   399 fun invoke_serializer thy abortable serializer reserved abs_includes 
   400     module_alias class instance tyco const module args naming program2 names1 =
   401   let
   402     fun distill_names lookup_name src_tab = Symtab.empty
   403       |> fold_map (fn thing_identifier => fn tab => case lookup_name naming thing_identifier
   404            of SOME name => (SOME name, Symtab.update_new (name, the (Symtab.lookup src_tab thing_identifier)) tab)
   405             | NONE => (NONE, tab)) (Symtab.keys src_tab)
   406       |>> map_filter I;
   407     val (names_class, class') = distill_names Code_Thingol.lookup_class class;
   408     val names_inst = map_filter (Code_Thingol.lookup_instance naming)
   409       (StringPairTab.keys instance);
   410     val (names_tyco, tyco') = distill_names Code_Thingol.lookup_tyco tyco;
   411     val (names_const, const') = distill_names Code_Thingol.lookup_const const;
   412     val names_hidden = names_class @ names_inst @ names_tyco @ names_const;
   413     val names2 = subtract (op =) names_hidden names1;
   414     val program3 = Graph.subgraph (not o member (op =) names_hidden) program2;
   415     val names_all = Graph.all_succs program2 names2;
   416     val includes = abs_includes names_all;
   417     val program4 = Graph.subgraph (member (op =) names_all) program3;
   418     val empty_funs = filter_out (member (op =) abortable)
   419       (Code_Thingol.empty_funs program3);
   420     val _ = if null empty_funs then () else error ("No code equations for "
   421       ^ commas (map (Sign.extern_const thy) empty_funs));
   422   in
   423     serializer module args (labelled_name thy program2) reserved includes
   424       (Symtab.lookup module_alias) (Symtab.lookup class')
   425       (Symtab.lookup tyco') (Symtab.lookup const')
   426       naming program4 names2
   427   end;
   428 
   429 fun mount_serializer thy alt_serializer target module args naming program names =
   430   let
   431     val (targets, abortable) = CodeTargetData.get thy;
   432     fun collapse_hierarchy target =
   433       let
   434         val data = case Symtab.lookup targets target
   435          of SOME data => data
   436           | NONE => error ("Unknown code target language: " ^ quote target);
   437       in case the_serializer data
   438        of Serializer _ => (I, data)
   439         | Extends (super, modify) => let
   440             val (modify', data') = collapse_hierarchy super
   441           in (modify' #> modify naming, merge_target false target (data', data)) end
   442       end;
   443     val (modify, data) = collapse_hierarchy target;
   444     val (serializer, _) = the_default (case the_serializer data
   445      of Serializer seri => seri) alt_serializer;
   446     val reserved = the_reserved data;
   447     fun select_include names_all (name, (content, cs)) =
   448       if null cs then SOME (name, content)
   449       else if exists (fn c => case Code_Thingol.lookup_const naming c
   450        of SOME name => member (op =) names_all name
   451         | NONE => false) cs
   452       then SOME (name, content) else NONE;
   453     fun includes names_all = map_filter (select_include names_all)
   454       ((Symtab.dest o the_includes) data);
   455     val module_alias = the_module_alias data;
   456     val { class, instance, tyco, const } = the_name_syntax data;
   457   in
   458     invoke_serializer thy abortable serializer reserved
   459       includes module_alias class instance tyco const module args naming (modify program) names
   460   end;
   461 
   462 in
   463 
   464 fun serialize thy = mount_serializer thy NONE;
   465 
   466 fun serialize_custom thy (target_name, seri) naming program names =
   467   mount_serializer thy (SOME seri) target_name NONE [] naming program names (String [])
   468   |> the;
   469 
   470 end; (* local *)
   471 
   472 fun parse_args f args =
   473   case Scan.read OuterLex.stopper f args
   474    of SOME x => x
   475     | NONE => error "Bad serializer arguments";
   476 
   477 
   478 (* code presentation *)
   479 
   480 fun code_of thy target module_name cs names_stmt =
   481   let
   482     val (names_cs, (naming, program)) = Code_Thingol.consts_program thy cs;
   483   in
   484     string (names_stmt naming) (serialize thy target (SOME module_name) []
   485       naming program names_cs)
   486   end;
   487 
   488 
   489 (* code generation *)
   490 
   491 fun transitivly_non_empty_funs thy naming program =
   492   let
   493     val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program);
   494     val names = map_filter (Code_Thingol.lookup_const naming) cs;
   495   in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end;
   496 
   497 fun read_const_exprs thy cs =
   498   let
   499     val (cs1, cs2) = Code_Name.read_const_exprs thy cs;
   500     val (names3, (naming, program)) = Code_Thingol.consts_program thy cs2;
   501     val names4 = transitivly_non_empty_funs thy naming program;
   502     val cs5 = map_filter
   503       (fn (c, name) => if member (op =) names4 name then SOME c else NONE) (cs2 ~~ names3);
   504   in fold (insert (op =)) cs5 cs1 end;
   505 
   506 fun cached_program thy = 
   507   let
   508     val (naming, program) = Code_Thingol.cached_program thy;
   509   in (transitivly_non_empty_funs thy naming program, (naming, program)) end
   510 
   511 fun export_code thy cs seris =
   512   let
   513     val (cs', (naming, program)) = if null cs then cached_program thy
   514       else Code_Thingol.consts_program thy cs;
   515     fun mk_seri_dest dest = case dest
   516      of NONE => compile
   517       | SOME "-" => export
   518       | SOME f => file (Path.explode f)
   519     val _ = map (fn (((target, module), dest), args) =>
   520       (mk_seri_dest dest (serialize thy target module args naming program cs'))) seris;
   521   in () end;
   522 
   523 fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs) seris;
   524 
   525 
   526 (** Isar setup **)
   527 
   528 val (inK, module_nameK, fileK) = ("in", "module_name", "file");
   529 
   530 fun code_exprP cmd =
   531   (Scan.repeat P.term_group
   532   -- Scan.repeat (P.$$$ inK |-- P.name
   533      -- Scan.option (P.$$$ module_nameK |-- P.name)
   534      -- Scan.option (P.$$$ fileK |-- P.name)
   535      -- Scan.optional (P.$$$ "(" |-- Args.parse --| P.$$$ ")") []
   536   ) >> (fn (raw_cs, seris) => cmd raw_cs seris));
   537 
   538 val _ = List.app OuterKeyword.keyword [inK, module_nameK, fileK];
   539 
   540 val _ =
   541   OuterSyntax.command "code_class" "define code syntax for class" K.thy_decl (
   542     parse_multi_syntax P.xname (Scan.option P.string)
   543     >> (Toplevel.theory oo fold) (fn (target, syns) =>
   544           fold (fn (raw_class, syn) => add_syntax_class_cmd target raw_class syn) syns)
   545   );
   546 
   547 val _ =
   548   OuterSyntax.command "code_instance" "define code syntax for instance" K.thy_decl (
   549     parse_multi_syntax (P.xname --| P.$$$ "::" -- P.xname)
   550       ((P.minus >> K true) || Scan.succeed false)
   551     >> (Toplevel.theory oo fold) (fn (target, syns) =>
   552           fold (fn (raw_inst, add_del) => add_syntax_inst_cmd target raw_inst add_del) syns)
   553   );
   554 
   555 val _ =
   556   OuterSyntax.command "code_type" "define code syntax for type constructor" K.thy_decl (
   557     parse_multi_syntax P.xname (parse_syntax I)
   558     >> (Toplevel.theory oo fold) (fn (target, syns) =>
   559           fold (fn (raw_tyco, syn) => add_syntax_tyco_cmd target raw_tyco syn) syns)
   560   );
   561 
   562 val _ =
   563   OuterSyntax.command "code_const" "define code syntax for constant" K.thy_decl (
   564     parse_multi_syntax P.term_group (parse_syntax fst)
   565     >> (Toplevel.theory oo fold) (fn (target, syns) =>
   566       fold (fn (raw_const, syn) => add_syntax_const_cmd target raw_const
   567         (Code_Printer.simple_const_syntax syn)) syns)
   568   );
   569 
   570 val _ =
   571   OuterSyntax.command "code_reserved" "declare words as reserved for target language" K.thy_decl (
   572     P.name -- Scan.repeat1 P.name
   573     >> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds)
   574   );
   575 
   576 val _ =
   577   OuterSyntax.command "code_include" "declare piece of code to be included in generated code" K.thy_decl (
   578     P.name -- P.name -- (P.text :|-- (fn "-" => Scan.succeed NONE
   579       | s => Scan.optional (P.$$$ "attach" |-- Scan.repeat1 P.term) [] >> pair s >> SOME))
   580     >> (fn ((target, name), content_consts) =>
   581         (Toplevel.theory o add_include_cmd target) (name, content_consts))
   582   );
   583 
   584 val _ =
   585   OuterSyntax.command "code_modulename" "alias module to other name" K.thy_decl (
   586     P.name -- Scan.repeat1 (P.name -- P.name)
   587     >> (fn (target, modlnames) => (Toplevel.theory o fold (add_module_alias target)) modlnames)
   588   );
   589 
   590 val _ =
   591   OuterSyntax.command "code_abort" "permit constant to be implemented as program abort" K.thy_decl (
   592     Scan.repeat1 P.term_group >> (Toplevel.theory o fold allow_abort_cmd)
   593   );
   594 
   595 val _ =
   596   OuterSyntax.command "export_code" "generate executable code for constants"
   597     K.diag (P.!!! (code_exprP export_code_cmd) >> (fn f => Toplevel.keep (f o Toplevel.theory_of)));
   598 
   599 end; (*local*)
   600 
   601 end; (*struct*)